15362 lines
922 KiB
SQL
15362 lines
922 KiB
SQL
-- --------------------------------------------------------
|
|
-- Host: 127.0.0.1
|
|
-- Server version: 8.0.29 - MySQL Community Server - GPL
|
|
-- Server OS: Win64
|
|
-- HeidiSQL Version: 12.0.0.6468
|
|
-- --------------------------------------------------------
|
|
|
|
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
|
|
/*!40101 SET NAMES utf8 */;
|
|
/*!50503 SET NAMES utf8mb4 */;
|
|
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
|
|
/*!40103 SET TIME_ZONE='+00:00' */;
|
|
/*!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' */;
|
|
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
|
|
|
|
-- Dumping structure for table acore_world.reference_loot_template
|
|
DROP TABLE IF EXISTS `reference_loot_template`;
|
|
CREATE TABLE IF NOT EXISTS `reference_loot_template` (
|
|
`Entry` int unsigned NOT NULL DEFAULT '0',
|
|
`Item` int unsigned NOT NULL DEFAULT '0',
|
|
`Reference` int NOT NULL DEFAULT '0',
|
|
`Chance` float NOT NULL DEFAULT '100',
|
|
`QuestRequired` tinyint NOT NULL DEFAULT '0',
|
|
`LootMode` smallint unsigned NOT NULL DEFAULT '1',
|
|
`GroupId` tinyint unsigned NOT NULL DEFAULT '0',
|
|
`MinCount` tinyint unsigned NOT NULL DEFAULT '1',
|
|
`MaxCount` tinyint unsigned NOT NULL DEFAULT '1',
|
|
`Comment` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
|
|
PRIMARY KEY (`Entry`,`Item`)
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='Loot System';
|
|
|
|
-- Dumping data for table acore_world.reference_loot_template: ~14,621 rows (approximately)
|
|
DELETE FROM `reference_loot_template`;
|
|
INSERT INTO `reference_loot_template` (`Entry`, `Item`, `Reference`, `Chance`, `QuestRequired`, `LootMode`, `GroupId`, `MinCount`, `MaxCount`, `Comment`) VALUES
|
|
(1000, 21929, 0, 16, 0, 1, 1, 1, 2, 'Flame Spessarite'),
|
|
(1000, 23077, 0, 16, 0, 1, 1, 1, 2, 'Blood Garnet'),
|
|
(1000, 23079, 0, 16, 0, 1, 1, 1, 2, 'Deep Peridot'),
|
|
(1000, 23107, 0, 16, 0, 1, 1, 1, 2, 'Shadow Draenite'),
|
|
(1000, 23112, 0, 15, 0, 1, 1, 1, 2, 'Golden Draenite'),
|
|
(1000, 23117, 0, 15, 0, 1, 1, 1, 2, 'Azure Moonstone'),
|
|
(1000, 23436, 0, 1, 0, 1, 1, 1, 1, 'Living Ruby'),
|
|
(1000, 23437, 0, 1, 0, 1, 1, 1, 1, 'Talasite'),
|
|
(1000, 23438, 0, 1, 0, 1, 1, 1, 1, 'Star of Elune'),
|
|
(1000, 23439, 0, 1, 0, 1, 1, 1, 1, 'Noble Topaz'),
|
|
(1000, 23440, 0, 1, 0, 1, 1, 1, 1, 'Dawnstone'),
|
|
(1000, 23441, 0, 1, 0, 1, 1, 1, 1, 'Nightseye'),
|
|
(1001, 36917, 0, 16, 0, 1, 1, 1, 2, 'Bloodstone'),
|
|
(1001, 36918, 0, 1, 0, 1, 1, 1, 2, 'Scarlet Ruby'),
|
|
(1001, 36920, 0, 16, 0, 1, 1, 1, 2, 'Sun Crystal'),
|
|
(1001, 36921, 0, 1, 0, 1, 1, 1, 2, 'Autumn\'s Glow'),
|
|
(1001, 36923, 0, 16, 0, 1, 1, 1, 2, 'Chalcedony'),
|
|
(1001, 36924, 0, 1, 0, 1, 1, 1, 2, 'Sky Sapphire'),
|
|
(1001, 36926, 0, 16, 0, 1, 1, 1, 2, 'Shadow Crystal'),
|
|
(1001, 36927, 0, 1, 0, 1, 1, 1, 2, 'Twilight Opal'),
|
|
(1001, 36929, 0, 15, 0, 1, 1, 1, 2, 'Huge Citrine'),
|
|
(1001, 36930, 0, 1, 0, 1, 1, 1, 2, 'Monarch Topaz'),
|
|
(1001, 36932, 0, 15, 0, 1, 1, 1, 2, 'Dark Jade'),
|
|
(1001, 36933, 0, 1, 0, 1, 1, 1, 2, 'Forest Emerald'),
|
|
(1002, 36917, 0, 12.5, 0, 1, 1, 1, 2, 'Bloodstone'),
|
|
(1002, 36918, 0, 5, 0, 1, 1, 1, 2, 'Scarlet Ruby'),
|
|
(1002, 36920, 0, 12.5, 0, 1, 1, 1, 2, 'Sun Crystal'),
|
|
(1002, 36921, 0, 4, 0, 1, 1, 1, 2, 'Autumn\'s Glow'),
|
|
(1002, 36923, 0, 12.5, 0, 1, 1, 1, 2, 'Chalcedony'),
|
|
(1002, 36924, 0, 4, 0, 1, 1, 1, 2, 'Sky Sapphire'),
|
|
(1002, 36926, 0, 12.5, 0, 1, 1, 1, 2, 'Shadow Crystal'),
|
|
(1002, 36927, 0, 4, 0, 1, 1, 1, 2, 'Twilight Opal'),
|
|
(1002, 36929, 0, 12.5, 0, 1, 1, 1, 2, 'Huge Citrine'),
|
|
(1002, 36930, 0, 4, 0, 1, 1, 1, 2, 'Monarch Topaz'),
|
|
(1002, 36932, 0, 12.5, 0, 1, 1, 1, 2, 'Dark Jade'),
|
|
(1002, 36933, 0, 4, 0, 1, 1, 1, 2, 'Forest Emerald'),
|
|
(1003, 36917, 0, 0, 0, 1, 1, 1, 2, 'Bloodstone'),
|
|
(1003, 36920, 0, 0, 0, 1, 1, 1, 2, 'Sun Crystal'),
|
|
(1003, 36923, 0, 0, 0, 1, 1, 1, 2, 'Chalcedony'),
|
|
(1003, 36926, 0, 0, 0, 1, 1, 1, 2, 'Shadow Crystal'),
|
|
(1003, 36929, 0, 0, 0, 1, 1, 1, 2, 'Huge Citrine'),
|
|
(1003, 36932, 0, 0, 0, 1, 1, 1, 2, 'Dark Jade'),
|
|
(1004, 36917, 0, 15, 0, 1, 1, 1, 2, 'Bloodstone'),
|
|
(1004, 36918, 0, 3, 0, 1, 1, 1, 2, 'Scarlet Ruby'),
|
|
(1004, 36920, 0, 15, 0, 1, 1, 1, 2, 'Sun Crystal'),
|
|
(1004, 36921, 0, 3, 0, 1, 1, 1, 2, 'Autumn\'s Glow'),
|
|
(1004, 36923, 0, 14, 0, 1, 1, 1, 2, 'Chalcedony'),
|
|
(1004, 36924, 0, 2, 0, 1, 1, 1, 2, 'Sky Sapphire'),
|
|
(1004, 36926, 0, 14, 0, 1, 1, 1, 2, 'Shadow Crystal'),
|
|
(1004, 36927, 0, 2, 0, 1, 1, 1, 2, 'Twilight Opal'),
|
|
(1004, 36929, 0, 14, 0, 1, 1, 1, 2, 'Huge Citrine'),
|
|
(1004, 36930, 0, 2, 0, 1, 1, 1, 2, 'Monarch Topaz'),
|
|
(1004, 36932, 0, 14, 0, 1, 1, 1, 2, 'Dark Jade'),
|
|
(1004, 36933, 0, 2, 0, 1, 1, 1, 2, 'Forest Emerald'),
|
|
(1052, 3951, 0, 0, 0, 1, 1, 1, 1, 'Twill Vest'),
|
|
(1052, 3976, 0, 0, 0, 1, 1, 1, 1, 'Smooth Leather Armor'),
|
|
(1052, 3995, 0, 0, 0, 1, 1, 1, 1, 'Laminated Scale Cloak'),
|
|
(1052, 8081, 0, 0, 0, 1, 1, 1, 1, 'Light Plate Belt'),
|
|
(1052, 8753, 0, 0, 0, 1, 1, 1, 1, 'Smooth Leather Helmet'),
|
|
(1052, 9186, 0, 0, 0, 1, 1, 1, 1, 'Mind-numbing Poison III'),
|
|
(1052, 13821, 0, 0, 0, 1, 1, 1, 1, 'Bulky Maul'),
|
|
(1052, 13825, 0, 0, 0, 1, 1, 1, 1, 'Primed Musket'),
|
|
(1053, 3948, 0, 0, 0, 1, 1, 1, 1, 'Twill Gloves'),
|
|
(1053, 3973, 0, 0, 0, 1, 1, 1, 1, 'Smooth Leather Gloves'),
|
|
(1053, 3994, 0, 0, 0, 1, 1, 1, 1, 'Laminated Scale Bracers'),
|
|
(1053, 8080, 0, 0, 0, 1, 1, 1, 1, 'Light Plate Chestpiece'),
|
|
(1053, 13817, 0, 0, 0, 1, 1, 1, 1, 'Tapered Greatsword'),
|
|
(4000, 24576, 0, 0, 0, 1, 1, 1, 1, 'Loosely Threaded Belt'),
|
|
(4000, 24577, 0, 0, 0, 1, 1, 1, 1, 'Loosely Threaded Boots'),
|
|
(4000, 24578, 0, 0, 0, 1, 1, 1, 1, 'Loosely Threaded Bracers'),
|
|
(4000, 24580, 0, 0, 0, 1, 1, 1, 1, 'Loosely Threaded Hat'),
|
|
(4000, 24782, 0, 0, 0, 1, 1, 1, 1, 'Loosely Threaded Gloves'),
|
|
(4000, 25338, 0, 0, 0, 1, 1, 1, 1, 'Loosely Threaded Pants'),
|
|
(4000, 25339, 0, 0, 0, 1, 1, 1, 1, 'Loosely Threaded Shoulderpads'),
|
|
(4000, 25340, 0, 0, 0, 1, 1, 1, 1, 'Loosely Threaded Vest'),
|
|
(4000, 25349, 0, 0, 0, 1, 1, 1, 1, 'Moldy Leather Armor'),
|
|
(4000, 25350, 0, 0, 0, 1, 1, 1, 1, 'Moldy Leather Belt'),
|
|
(4000, 25351, 0, 0, 0, 1, 1, 1, 1, 'Moldy Leather Boots'),
|
|
(4000, 25352, 0, 0, 0, 1, 1, 1, 1, 'Moldy Leather Bracers'),
|
|
(4000, 25353, 0, 0, 0, 1, 1, 1, 1, 'Moldy Leather Gloves'),
|
|
(4000, 25354, 0, 0, 0, 1, 1, 1, 1, 'Moldy Leather Helmet'),
|
|
(4000, 25355, 0, 0, 0, 1, 1, 1, 1, 'Moldy Leather Pants'),
|
|
(4000, 25356, 0, 0, 0, 1, 1, 1, 1, 'Moldy Leather Shoulderpads'),
|
|
(4000, 25365, 0, 0, 0, 1, 1, 1, 1, 'Eroded Mail Armor'),
|
|
(4000, 25366, 0, 0, 0, 1, 1, 1, 1, 'Eroded Mail Belt'),
|
|
(4000, 25367, 0, 0, 0, 1, 1, 1, 1, 'Eroded Mail Boots'),
|
|
(4000, 25368, 0, 0, 0, 1, 1, 1, 1, 'Eroded Mail Bracers'),
|
|
(4000, 25369, 0, 0, 0, 1, 1, 1, 1, 'Eroded Mail Circlet'),
|
|
(4000, 25370, 0, 0, 0, 1, 1, 1, 1, 'Eroded Mail Gloves'),
|
|
(4000, 25371, 0, 0, 0, 1, 1, 1, 1, 'Eroded Mail Pants'),
|
|
(4000, 25372, 0, 0, 0, 1, 1, 1, 1, 'Eroded Mail Shoulderpads'),
|
|
(4000, 25381, 0, 0, 0, 1, 1, 1, 1, 'Tarnished Plate Belt'),
|
|
(4000, 25382, 0, 0, 0, 1, 1, 1, 1, 'Tarnished Plate Boots'),
|
|
(4000, 25383, 0, 0, 0, 1, 1, 1, 1, 'Tarnished Plate Bracers'),
|
|
(4000, 25384, 0, 0, 0, 1, 1, 1, 1, 'Tarnished Plate Chestpiece'),
|
|
(4000, 25385, 0, 0, 0, 1, 1, 1, 1, 'Tarnished Plate Gloves'),
|
|
(4000, 25386, 0, 0, 0, 1, 1, 1, 1, 'Tarnished Plate Helmet'),
|
|
(4000, 25387, 0, 0, 0, 1, 1, 1, 1, 'Tarnished Plate Pants'),
|
|
(4000, 25388, 0, 0, 0, 1, 1, 1, 1, 'Tarnished Plate Shoulderpads'),
|
|
(4001, 25397, 0, 0, 0, 1, 1, 1, 1, 'Eroded Axe'),
|
|
(4001, 25398, 0, 0, 0, 1, 1, 1, 1, 'Stone Reaper'),
|
|
(4001, 25399, 0, 0, 0, 1, 1, 1, 1, 'Deteriorating Blade'),
|
|
(4001, 25400, 0, 0, 0, 1, 1, 1, 1, 'Tarnished Claymore'),
|
|
(4001, 25401, 0, 0, 0, 1, 1, 1, 1, 'Corroded Mace'),
|
|
(4001, 25402, 0, 0, 0, 1, 1, 1, 1, 'The Stoppable Force'),
|
|
(4001, 25403, 0, 0, 0, 1, 1, 1, 1, 'Sharpened Stilleto'),
|
|
(4001, 25404, 0, 0, 0, 1, 1, 1, 1, 'Dense War Staff'),
|
|
(4001, 25405, 0, 0, 0, 1, 1, 1, 1, 'Rusted Musket'),
|
|
(4001, 25406, 0, 0, 0, 1, 1, 1, 1, 'Broken Longbow'),
|
|
(4002, 25341, 0, 0, 0, 1, 1, 1, 1, 'Dilapidated Cloth Belt'),
|
|
(4002, 25342, 0, 0, 0, 1, 1, 1, 1, 'Dilapidated Cloth Boots'),
|
|
(4002, 25343, 0, 0, 0, 1, 1, 1, 1, 'Dilapidated Cloth Bracers'),
|
|
(4002, 25344, 0, 0, 0, 1, 1, 1, 1, 'Dilapidated Cloth Gloves'),
|
|
(4002, 25345, 0, 0, 0, 1, 1, 1, 1, 'Dilapidated Cloth Hat'),
|
|
(4002, 25346, 0, 0, 0, 1, 1, 1, 1, 'Dilapidated Cloth Pants'),
|
|
(4002, 25347, 0, 0, 0, 1, 1, 1, 1, 'Dilapidated Cloth Shoulderpads'),
|
|
(4002, 25348, 0, 0, 0, 1, 1, 1, 1, 'Dilapidated Cloth Vest'),
|
|
(4002, 25357, 0, 0, 0, 1, 1, 1, 1, 'Decaying Leather Armor'),
|
|
(4002, 25358, 0, 0, 0, 1, 1, 1, 1, 'Decaying Leather Belt'),
|
|
(4002, 25359, 0, 0, 0, 1, 1, 1, 1, 'Decaying Leather Boots'),
|
|
(4002, 25360, 0, 0, 0, 1, 1, 1, 1, 'Decaying Leather Bracers'),
|
|
(4002, 25361, 0, 0, 0, 1, 1, 1, 1, 'Decaying Leather Gloves'),
|
|
(4002, 25362, 0, 0, 0, 1, 1, 1, 1, 'Decaying Leather Helmet'),
|
|
(4002, 25363, 0, 0, 0, 1, 1, 1, 1, 'Decaying Leather Pants'),
|
|
(4002, 25364, 0, 0, 0, 1, 1, 1, 1, 'Decaying Leather Shoulderpads'),
|
|
(4002, 25373, 0, 0, 0, 1, 1, 1, 1, 'Corroded Mail Armor'),
|
|
(4002, 25374, 0, 0, 0, 1, 1, 1, 1, 'Corroded Mail Belt'),
|
|
(4002, 25375, 0, 0, 0, 1, 1, 1, 1, 'Corroded Mail Boots'),
|
|
(4002, 25376, 0, 0, 0, 1, 1, 1, 1, 'Corroded Mail Bracers'),
|
|
(4002, 25377, 0, 0, 0, 1, 1, 1, 1, 'Corroded Mail Circlet'),
|
|
(4002, 25378, 0, 0, 0, 1, 1, 1, 1, 'Corroded Mail Gloves'),
|
|
(4002, 25379, 0, 0, 0, 1, 1, 1, 1, 'Corroded Mail Pants'),
|
|
(4002, 25380, 0, 0, 0, 1, 1, 1, 1, 'Corroded Mail Shoulderpads'),
|
|
(4002, 25389, 0, 0, 0, 1, 1, 1, 1, 'Deteriorating Plate Belt'),
|
|
(4002, 25390, 0, 0, 0, 1, 1, 1, 1, 'Deteriorating Plate Boots'),
|
|
(4002, 25391, 0, 0, 0, 1, 1, 1, 1, 'Deteriorating Plate Bracers'),
|
|
(4002, 25392, 0, 0, 0, 1, 1, 1, 1, 'Deteriorating Plate Chestpiece'),
|
|
(4002, 25393, 0, 0, 0, 1, 1, 1, 1, 'Deteriorating Plate Gloves'),
|
|
(4002, 25394, 0, 0, 0, 1, 1, 1, 1, 'Deteriorating Plate Helmet'),
|
|
(4002, 25395, 0, 0, 0, 1, 1, 1, 1, 'Deteriorating Plate Pants'),
|
|
(4002, 25396, 0, 0, 0, 1, 1, 1, 1, 'Deteriorating Plate Shoulderpads'),
|
|
(4100, 24575, 0, 0, 0, 1, 1, 1, 1, 'Outlander\'s Girdle'),
|
|
(4100, 24582, 0, 0, 0, 1, 1, 1, 1, 'Outlander\'s Boots'),
|
|
(4100, 24583, 0, 0, 0, 1, 1, 1, 1, 'Outlander\'s Tunic'),
|
|
(4100, 24584, 0, 0, 0, 1, 1, 1, 1, 'Outlander\'s Gloves'),
|
|
(4100, 24585, 0, 0, 0, 1, 1, 1, 1, 'Outlander\'s Facewrap'),
|
|
(4100, 24586, 0, 0, 0, 1, 1, 1, 1, 'Outlander\'s Leggings'),
|
|
(4100, 24587, 0, 0, 0, 1, 1, 1, 1, 'Outlander\'s Pauldrons'),
|
|
(4100, 24588, 0, 0, 0, 1, 1, 1, 1, 'Outlander\'s Bracers'),
|
|
(4100, 24693, 0, 0, 0, 1, 1, 1, 1, 'Bonechewer Pelt-Girdle'),
|
|
(4100, 24694, 0, 0, 0, 1, 1, 1, 1, 'Bonechewer Shredboots'),
|
|
(4100, 24695, 0, 0, 0, 1, 1, 1, 1, 'Bonechewer Chestpiece'),
|
|
(4100, 24696, 0, 0, 0, 1, 1, 1, 1, 'Bonechewer Spikegloves'),
|
|
(4100, 24697, 0, 0, 0, 1, 1, 1, 1, 'Bonechewer Skincloak'),
|
|
(4100, 24698, 0, 0, 0, 1, 1, 1, 1, 'Bonechewer Ripleggings'),
|
|
(4100, 24699, 0, 0, 0, 1, 1, 1, 1, 'Bonechewer Shoulderguards'),
|
|
(4100, 24700, 0, 0, 0, 1, 1, 1, 1, 'Bonechewer Bands'),
|
|
(4100, 24806, 0, 0, 0, 1, 1, 1, 1, 'Unyielding Waistband'),
|
|
(4100, 24807, 0, 0, 0, 1, 1, 1, 1, 'Unyielding Footwraps'),
|
|
(4100, 24808, 0, 0, 0, 1, 1, 1, 1, 'Unyielding Chain Vest'),
|
|
(4100, 24809, 0, 0, 0, 1, 1, 1, 1, 'Unyielding Fists'),
|
|
(4100, 24810, 0, 0, 0, 1, 1, 1, 1, 'Unyielding Helm'),
|
|
(4100, 24811, 0, 0, 0, 1, 1, 1, 1, 'Unyielding Leggings'),
|
|
(4100, 24812, 0, 0, 0, 1, 1, 1, 1, 'Unyielding Spaulders'),
|
|
(4100, 24813, 0, 0, 0, 1, 1, 1, 1, 'Unyielding Bindings'),
|
|
(4100, 24918, 0, 0, 0, 1, 1, 1, 1, 'Grimscale Belt'),
|
|
(4100, 24919, 0, 0, 0, 1, 1, 1, 1, 'Grimscale Sabatons'),
|
|
(4100, 24920, 0, 0, 0, 1, 1, 1, 1, 'Grimscale Armor'),
|
|
(4100, 24921, 0, 0, 0, 1, 1, 1, 1, 'Grimscale Gauntlets'),
|
|
(4100, 24922, 0, 0, 0, 1, 1, 1, 1, 'Grimscale Helm'),
|
|
(4100, 24923, 0, 0, 0, 1, 1, 1, 1, 'Grimscale Legguards'),
|
|
(4100, 24924, 0, 0, 0, 1, 1, 1, 1, 'Grimscale Pauldrons'),
|
|
(4100, 24925, 0, 0, 0, 1, 1, 1, 1, 'Grimscale Vambraces'),
|
|
(4100, 25030, 0, 0, 0, 1, 1, 1, 1, 'Silky Velvet Cloak'),
|
|
(4100, 25044, 0, 0, 0, 1, 1, 1, 1, 'Rubellite Ring'),
|
|
(4100, 25058, 0, 0, 0, 1, 1, 1, 1, 'Anglesite Choker'),
|
|
(4100, 25072, 0, 0, 0, 1, 1, 1, 1, 'Northman\'s Shield'),
|
|
(4100, 25086, 0, 0, 0, 1, 1, 1, 1, 'Dreamseeker Dandelion'),
|
|
(4100, 25100, 0, 0, 0, 1, 1, 1, 1, 'Liege Blade'),
|
|
(4100, 25114, 0, 0, 0, 1, 1, 1, 1, 'Doomsayer\'s Mace'),
|
|
(4100, 25128, 0, 0, 0, 1, 1, 1, 1, 'Shining Mace'),
|
|
(4100, 25142, 0, 0, 0, 1, 1, 1, 1, 'Telaari Longblade'),
|
|
(4100, 25156, 0, 0, 0, 1, 1, 1, 1, 'Royal Crusader Sword'),
|
|
(4100, 25170, 0, 0, 0, 1, 1, 1, 1, 'Rattan Bo Staff'),
|
|
(4100, 25184, 0, 0, 0, 1, 1, 1, 1, 'Ravager Claws'),
|
|
(4100, 25198, 0, 0, 0, 1, 1, 1, 1, 'Karaborian Battle Axe'),
|
|
(4100, 25212, 0, 0, 0, 1, 1, 1, 1, 'Lucky Strike Axe'),
|
|
(4100, 25226, 0, 0, 0, 1, 1, 1, 1, 'War Scythe'),
|
|
(4100, 25240, 0, 0, 0, 1, 1, 1, 1, 'Azerothian Longbow'),
|
|
(4100, 25254, 0, 0, 0, 1, 1, 1, 1, 'Tower Crossbow'),
|
|
(4100, 25268, 0, 0, 0, 1, 1, 1, 1, 'Lead-Slug Shotgun'),
|
|
(4100, 25282, 0, 0, 0, 1, 1, 1, 1, 'Mahogany Wand'),
|
|
(4100, 25296, 0, 0, 0, 1, 1, 1, 1, 'Absorption Dagger'),
|
|
(4100, 25310, 0, 0, 0, 1, 1, 1, 1, 'Naaru Lightmace'),
|
|
(4100, 25324, 0, 0, 0, 1, 1, 1, 1, 'Angerstaff'),
|
|
(4100, 28531, 0, 0, 0, 1, 1, 1, 1, 'Barbed Shrike'),
|
|
(4101, 24589, 0, 0, 0, 1, 1, 1, 1, 'Fireheart Girdle'),
|
|
(4101, 24590, 0, 0, 0, 1, 1, 1, 1, 'Fireheart Boots'),
|
|
(4101, 24591, 0, 0, 0, 1, 1, 1, 1, 'Fireheart Chestpiece'),
|
|
(4101, 24592, 0, 0, 0, 1, 1, 1, 1, 'Fireheart Gloves'),
|
|
(4101, 24593, 0, 0, 0, 1, 1, 1, 1, 'Fireheart Skullcap'),
|
|
(4101, 24594, 0, 0, 0, 1, 1, 1, 1, 'Fireheart Leggings'),
|
|
(4101, 24595, 0, 0, 0, 1, 1, 1, 1, 'Fireheart Shoulderpads'),
|
|
(4101, 24596, 0, 0, 0, 1, 1, 1, 1, 'Fireheart Bracers'),
|
|
(4101, 24701, 0, 0, 0, 1, 1, 1, 1, 'Haal\'eshi Cord'),
|
|
(4101, 24702, 0, 0, 0, 1, 1, 1, 1, 'Haal\'eshi Boots'),
|
|
(4101, 24703, 0, 0, 0, 1, 1, 1, 1, 'Haal\'eshi Jerkin'),
|
|
(4101, 24704, 0, 0, 0, 1, 1, 1, 1, 'Haal\'eshi Gloves'),
|
|
(4101, 24705, 0, 0, 0, 1, 1, 1, 1, 'Haal\'eshi Hat'),
|
|
(4101, 24706, 0, 0, 0, 1, 1, 1, 1, 'Haal\'eshi Leggings'),
|
|
(4101, 24707, 0, 0, 0, 1, 1, 1, 1, 'Haal\'eshi Pauldrons'),
|
|
(4101, 24708, 0, 0, 0, 1, 1, 1, 1, 'Haal\'eshi Bindings'),
|
|
(4101, 24814, 0, 0, 0, 1, 1, 1, 1, 'Felstone Waistband'),
|
|
(4101, 24815, 0, 0, 0, 1, 1, 1, 1, 'Felstone Greaves'),
|
|
(4101, 24816, 0, 0, 0, 1, 1, 1, 1, 'Felstone Chain Vest'),
|
|
(4101, 24817, 0, 0, 0, 1, 1, 1, 1, 'Felstone Gauntlets'),
|
|
(4101, 24818, 0, 0, 0, 1, 1, 1, 1, 'Felstone Helm'),
|
|
(4101, 24819, 0, 0, 0, 1, 1, 1, 1, 'Felstone Leggings'),
|
|
(4101, 24820, 0, 0, 0, 1, 1, 1, 1, 'Felstone Spaulders'),
|
|
(4101, 24821, 0, 0, 0, 1, 1, 1, 1, 'Felstone Bindings'),
|
|
(4101, 24926, 0, 0, 0, 1, 1, 1, 1, 'Ango\'rosh Belt'),
|
|
(4101, 24927, 0, 0, 0, 1, 1, 1, 1, 'Ango\'rosh Sabatons'),
|
|
(4101, 24928, 0, 0, 0, 1, 1, 1, 1, 'Ango\'rosh Breastplate'),
|
|
(4101, 24929, 0, 0, 0, 1, 1, 1, 1, 'Ango\'rosh Gauntlets'),
|
|
(4101, 24930, 0, 0, 0, 1, 1, 1, 1, 'Ango\'rosh Helm'),
|
|
(4101, 24931, 0, 0, 0, 1, 1, 1, 1, 'Ango\'rosh Legguards'),
|
|
(4101, 24932, 0, 0, 0, 1, 1, 1, 1, 'Ango\'rosh Pauldrons'),
|
|
(4101, 24933, 0, 0, 0, 1, 1, 1, 1, 'Ango\'rosh Vambraces'),
|
|
(4101, 25031, 0, 0, 0, 1, 1, 1, 1, 'Silvermoon Royal Cloak'),
|
|
(4101, 25045, 0, 0, 0, 1, 1, 1, 1, 'Azurite Ring'),
|
|
(4101, 25059, 0, 0, 0, 1, 1, 1, 1, 'Fire Opal Collar'),
|
|
(4101, 25073, 0, 0, 0, 1, 1, 1, 1, 'Emperor Shield'),
|
|
(4101, 25087, 0, 0, 0, 1, 1, 1, 1, 'Bleeding Eye'),
|
|
(4101, 25101, 0, 0, 0, 1, 1, 1, 1, 'Cross Pommel Dagger'),
|
|
(4101, 25115, 0, 0, 0, 1, 1, 1, 1, 'Riversong Mace'),
|
|
(4101, 25129, 0, 0, 0, 1, 1, 1, 1, 'Giant\'s Leg Bone'),
|
|
(4101, 25143, 0, 0, 0, 1, 1, 1, 1, 'Silver Hand Blade'),
|
|
(4101, 25157, 0, 0, 0, 1, 1, 1, 1, 'Serpentlord Claymore'),
|
|
(4101, 25171, 0, 0, 0, 1, 1, 1, 1, 'Straight Hardwood Staff'),
|
|
(4101, 25185, 0, 0, 0, 1, 1, 1, 1, 'Thrasher Blades'),
|
|
(4101, 25199, 0, 0, 0, 1, 1, 1, 1, 'Knight\'s War Axe'),
|
|
(4101, 25213, 0, 0, 0, 1, 1, 1, 1, 'Fel-Touched Axe'),
|
|
(4101, 25227, 0, 0, 0, 1, 1, 1, 1, 'Sha\'tari Longspear'),
|
|
(4101, 25241, 0, 0, 0, 1, 1, 1, 1, 'Ashenvale Longbow'),
|
|
(4101, 25255, 0, 0, 0, 1, 1, 1, 1, 'Ram\'s Head Crossbow'),
|
|
(4101, 25269, 0, 0, 0, 1, 1, 1, 1, 'Longbeard Rifle'),
|
|
(4101, 25283, 0, 0, 0, 1, 1, 1, 1, 'Crystallized Ebony Wand'),
|
|
(4101, 25297, 0, 0, 0, 1, 1, 1, 1, 'Tuning Knife'),
|
|
(4101, 25311, 0, 0, 0, 1, 1, 1, 1, 'Revitalizing Hammer'),
|
|
(4101, 25325, 0, 0, 0, 1, 1, 1, 1, 'Brutal Scar-Limb'),
|
|
(4101, 28532, 0, 0, 0, 1, 1, 1, 1, 'Silver Throwing Knives'),
|
|
(4102, 24597, 0, 0, 0, 1, 1, 1, 1, 'Starfire Sash'),
|
|
(4102, 24598, 0, 0, 0, 1, 1, 1, 1, 'Starfire Sandals'),
|
|
(4102, 24599, 0, 0, 0, 1, 1, 1, 1, 'Starfire Vest'),
|
|
(4102, 24600, 0, 0, 0, 1, 1, 1, 1, 'Starfire Gloves'),
|
|
(4102, 24601, 0, 0, 0, 1, 1, 1, 1, 'Starfire Circlet'),
|
|
(4102, 24602, 0, 0, 0, 1, 1, 1, 1, 'Starfire Trousers'),
|
|
(4102, 24603, 0, 0, 0, 1, 1, 1, 1, 'Starfire Mantle'),
|
|
(4102, 24604, 0, 0, 0, 1, 1, 1, 1, 'Starfire Wristwraps'),
|
|
(4102, 24709, 0, 0, 0, 1, 1, 1, 1, 'Vengeance Belt'),
|
|
(4102, 24710, 0, 0, 0, 1, 1, 1, 1, 'Vengeance Boots'),
|
|
(4102, 24711, 0, 0, 0, 1, 1, 1, 1, 'Vengeance Chestpiece'),
|
|
(4102, 24712, 0, 0, 0, 1, 1, 1, 1, 'Vengeance Gloves'),
|
|
(4102, 24713, 0, 0, 0, 1, 1, 1, 1, 'Vengeance Helm'),
|
|
(4102, 24714, 0, 0, 0, 1, 1, 1, 1, 'Vengeance Legguards'),
|
|
(4102, 24715, 0, 0, 0, 1, 1, 1, 1, 'Vengeance Pauldrons'),
|
|
(4102, 24716, 0, 0, 0, 1, 1, 1, 1, 'Vengeance Bands'),
|
|
(4102, 24822, 0, 0, 0, 1, 1, 1, 1, 'Netherstalker Belt'),
|
|
(4102, 24823, 0, 0, 0, 1, 1, 1, 1, 'Netherstalker Greaves'),
|
|
(4102, 24824, 0, 0, 0, 1, 1, 1, 1, 'Netherstalker Armor'),
|
|
(4102, 24825, 0, 0, 0, 1, 1, 1, 1, 'Netherstalker Gloves'),
|
|
(4102, 24826, 0, 0, 0, 1, 1, 1, 1, 'Netherstalker Helmet'),
|
|
(4102, 24827, 0, 0, 0, 1, 1, 1, 1, 'Netherstalker Legguards'),
|
|
(4102, 24828, 0, 0, 0, 1, 1, 1, 1, 'Netherstalker Mantle'),
|
|
(4102, 24829, 0, 0, 0, 1, 1, 1, 1, 'Netherstalker Bracer'),
|
|
(4102, 24934, 0, 0, 0, 1, 1, 1, 1, 'Darkcrest Belt'),
|
|
(4102, 24935, 0, 0, 0, 1, 1, 1, 1, 'Darkcrest Sabatons'),
|
|
(4102, 24936, 0, 0, 0, 1, 1, 1, 1, 'Darkcrest Breastplate'),
|
|
(4102, 24937, 0, 0, 0, 1, 1, 1, 1, 'Darkcrest Gauntlets'),
|
|
(4102, 24938, 0, 0, 0, 1, 1, 1, 1, 'Darkcrest Helm'),
|
|
(4102, 24939, 0, 0, 0, 1, 1, 1, 1, 'Darkcrest Legguards'),
|
|
(4102, 24940, 0, 0, 0, 1, 1, 1, 1, 'Darkcrest Pauldrons'),
|
|
(4102, 24941, 0, 0, 0, 1, 1, 1, 1, 'Darkcrest Bracers'),
|
|
(4102, 25032, 0, 0, 0, 1, 1, 1, 1, 'Hellfire Cloak'),
|
|
(4102, 25046, 0, 0, 0, 1, 1, 1, 1, 'Spined Ring'),
|
|
(4102, 25060, 0, 0, 0, 1, 1, 1, 1, 'Sunstone Necklace'),
|
|
(4102, 25074, 0, 0, 0, 1, 1, 1, 1, 'Telaari Shield'),
|
|
(4102, 25088, 0, 0, 0, 1, 1, 1, 1, 'Laughing Skull Orb'),
|
|
(4102, 25102, 0, 0, 0, 1, 1, 1, 1, 'Jaedenis Dagger'),
|
|
(4102, 25116, 0, 0, 0, 1, 1, 1, 1, 'Pneumatic War Hammer'),
|
|
(4102, 25130, 0, 0, 0, 1, 1, 1, 1, 'Gronn-Bone Club'),
|
|
(4102, 25144, 0, 0, 0, 1, 1, 1, 1, 'Skettis Curved Blade'),
|
|
(4102, 25158, 0, 0, 0, 1, 1, 1, 1, 'Skeletal Broadsword'),
|
|
(4102, 25172, 0, 0, 0, 1, 1, 1, 1, 'Jinbali Warp-Staff'),
|
|
(4102, 25186, 0, 0, 0, 1, 1, 1, 1, 'Vampiric Handscythes'),
|
|
(4102, 25200, 0, 0, 0, 1, 1, 1, 1, 'Jagged Broadaxe'),
|
|
(4102, 25214, 0, 0, 0, 1, 1, 1, 1, 'Mok\'Nathal Battleaxe'),
|
|
(4102, 25228, 0, 0, 0, 1, 1, 1, 1, 'Halberd Polearm'),
|
|
(4102, 25242, 0, 0, 0, 1, 1, 1, 1, 'Telaari Longbow'),
|
|
(4102, 25256, 0, 0, 0, 1, 1, 1, 1, 'Stronghold Crossbow'),
|
|
(4102, 25270, 0, 0, 0, 1, 1, 1, 1, 'Gnomish Assault Rifle'),
|
|
(4102, 25284, 0, 0, 0, 1, 1, 1, 1, 'Purpleheart Wand'),
|
|
(4102, 25298, 0, 0, 0, 1, 1, 1, 1, 'Combustion Dagger'),
|
|
(4102, 25312, 0, 0, 0, 1, 1, 1, 1, 'Glorious Scepter'),
|
|
(4102, 25326, 0, 0, 0, 1, 1, 1, 1, 'Primal Lore-Staff'),
|
|
(4102, 28533, 0, 0, 0, 1, 1, 1, 1, 'Wooden Boomerang'),
|
|
(4103, 24605, 0, 0, 0, 1, 1, 1, 1, 'Laughing Skull Waistguard'),
|
|
(4103, 24606, 0, 0, 0, 1, 1, 1, 1, 'Laughing Skull Boot'),
|
|
(4103, 24607, 0, 0, 0, 1, 1, 1, 1, 'Laughing Skull Tunic'),
|
|
(4103, 24608, 0, 0, 0, 1, 1, 1, 1, 'Laughing Skull Gloves'),
|
|
(4103, 24609, 0, 0, 0, 1, 1, 1, 1, 'Laughing Skull Cap'),
|
|
(4103, 24610, 0, 0, 0, 1, 1, 1, 1, 'Laughing Skull Pants'),
|
|
(4103, 24611, 0, 0, 0, 1, 1, 1, 1, 'Laughing Skull Shoulderpads'),
|
|
(4103, 24612, 0, 0, 0, 1, 1, 1, 1, 'Laughing Skull Bracelets'),
|
|
(4103, 24717, 0, 0, 0, 1, 1, 1, 1, 'Dreghood Belt'),
|
|
(4103, 24718, 0, 0, 0, 1, 1, 1, 1, 'Dreghood Boots'),
|
|
(4103, 24719, 0, 0, 0, 1, 1, 1, 1, 'Dreghood Chestpiece'),
|
|
(4103, 24720, 0, 0, 0, 1, 1, 1, 1, 'Dreghood Gloves'),
|
|
(4103, 24721, 0, 0, 0, 1, 1, 1, 1, 'Dreghood Cowl'),
|
|
(4103, 24722, 0, 0, 0, 1, 1, 1, 1, 'Dreghood Trousers'),
|
|
(4103, 24723, 0, 0, 0, 1, 1, 1, 1, 'Dreghood Pauldrons'),
|
|
(4103, 24724, 0, 0, 0, 1, 1, 1, 1, 'Dreghood Bands'),
|
|
(4103, 24830, 0, 0, 0, 1, 1, 1, 1, 'Nexus-Strider Belt'),
|
|
(4103, 24831, 0, 0, 0, 1, 1, 1, 1, 'Nexus-Strider Greaves'),
|
|
(4103, 24832, 0, 0, 0, 1, 1, 1, 1, 'Nexus-Strider Breastplate'),
|
|
(4103, 24833, 0, 0, 0, 1, 1, 1, 1, 'Nexus-Strider Gloves'),
|
|
(4103, 24834, 0, 0, 0, 1, 1, 1, 1, 'Nexus-Strider Helmet'),
|
|
(4103, 24835, 0, 0, 0, 1, 1, 1, 1, 'Nexus-Strider Legwraps'),
|
|
(4103, 24836, 0, 0, 0, 1, 1, 1, 1, 'Nexus-Strider Mantle'),
|
|
(4103, 24837, 0, 0, 0, 1, 1, 1, 1, 'Nexus-Strider Bracer'),
|
|
(4103, 24942, 0, 0, 0, 1, 1, 1, 1, 'Bloodscale Belt'),
|
|
(4103, 24943, 0, 0, 0, 1, 1, 1, 1, 'Bloodscale Sabatons'),
|
|
(4103, 24944, 0, 0, 0, 1, 1, 1, 1, 'Bloodscale Breastplate'),
|
|
(4103, 24945, 0, 0, 0, 1, 1, 1, 1, 'Bloodscale Gauntlets'),
|
|
(4103, 24946, 0, 0, 0, 1, 1, 1, 1, 'Bloodscale Helm'),
|
|
(4103, 24947, 0, 0, 0, 1, 1, 1, 1, 'Bloodscale Legguards'),
|
|
(4103, 24948, 0, 0, 0, 1, 1, 1, 1, 'Bloodscale Pauldrons'),
|
|
(4103, 24949, 0, 0, 0, 1, 1, 1, 1, 'Bloodscale Bracers'),
|
|
(4103, 25033, 0, 0, 0, 1, 1, 1, 1, 'Scavenger\'s Cloak'),
|
|
(4103, 25047, 0, 0, 0, 1, 1, 1, 1, 'Tourmaline Loop'),
|
|
(4103, 25061, 0, 0, 0, 1, 1, 1, 1, 'Hiddenite Necklace'),
|
|
(4103, 25075, 0, 0, 0, 1, 1, 1, 1, 'Hardened Steel Shield'),
|
|
(4103, 25089, 0, 0, 0, 1, 1, 1, 1, 'Supplicant\'s Rod'),
|
|
(4103, 25103, 0, 0, 0, 1, 1, 1, 1, 'Nightstalker Dagger'),
|
|
(4103, 25117, 0, 0, 0, 1, 1, 1, 1, 'Flanged Battle Mace'),
|
|
(4103, 25131, 0, 0, 0, 1, 1, 1, 1, 'Hateful Bludgeon'),
|
|
(4103, 25187, 0, 0, 0, 1, 1, 1, 1, 'Shekketh Talons'),
|
|
(4103, 25201, 0, 0, 0, 1, 1, 1, 1, 'Reaver\'s Sickle'),
|
|
(4103, 25215, 0, 0, 0, 1, 1, 1, 1, 'Spiked Battle Axe'),
|
|
(4103, 25229, 0, 0, 0, 1, 1, 1, 1, 'Partisan Polearm'),
|
|
(4103, 25243, 0, 0, 0, 1, 1, 1, 1, 'Windtalker Bow'),
|
|
(4103, 25257, 0, 0, 0, 1, 1, 1, 1, 'Citadel Crossbow'),
|
|
(4103, 25271, 0, 0, 0, 1, 1, 1, 1, 'Croc-Hunter\'s Rifle'),
|
|
(4103, 25299, 0, 0, 0, 1, 1, 1, 1, 'Siphoning Dagger'),
|
|
(4103, 25313, 0, 0, 0, 1, 1, 1, 1, 'Cold-Iron Scepter'),
|
|
(4103, 25327, 0, 0, 0, 1, 1, 1, 1, 'Frenzied Staff'),
|
|
(4103, 28534, 0, 0, 0, 1, 1, 1, 1, 'Fel Tipped Dart'),
|
|
(4104, 24613, 0, 0, 0, 1, 1, 1, 1, 'Vindicator Belt'),
|
|
(4104, 24614, 0, 0, 0, 1, 1, 1, 1, 'Vindicator Boots'),
|
|
(4104, 24615, 0, 0, 0, 1, 1, 1, 1, 'Vindicator Tunic'),
|
|
(4104, 24616, 0, 0, 0, 1, 1, 1, 1, 'Vindicator Gloves'),
|
|
(4104, 24617, 0, 0, 0, 1, 1, 1, 1, 'Vindicator Cap'),
|
|
(4104, 24618, 0, 0, 0, 1, 1, 1, 1, 'Vindicator Pants'),
|
|
(4104, 24619, 0, 0, 0, 1, 1, 1, 1, 'Vindicator Shoulderpads'),
|
|
(4104, 24620, 0, 0, 0, 1, 1, 1, 1, 'Vindicator Bracers'),
|
|
(4104, 24725, 0, 0, 0, 1, 1, 1, 1, 'Dementia Cord'),
|
|
(4104, 24726, 0, 0, 0, 1, 1, 1, 1, 'Dementia Boots'),
|
|
(4104, 24727, 0, 0, 0, 1, 1, 1, 1, 'Dementia Vest'),
|
|
(4104, 24728, 0, 0, 0, 1, 1, 1, 1, 'Dementia Gloves'),
|
|
(4104, 24729, 0, 0, 0, 1, 1, 1, 1, 'Dementia Hood'),
|
|
(4104, 24730, 0, 0, 0, 1, 1, 1, 1, 'Dementia Trousers'),
|
|
(4104, 24731, 0, 0, 0, 1, 1, 1, 1, 'Dementia Shoulderguards'),
|
|
(4104, 24732, 0, 0, 0, 1, 1, 1, 1, 'Dementia Armguards'),
|
|
(4104, 24838, 0, 0, 0, 1, 1, 1, 1, 'Wrathfin Waistband'),
|
|
(4104, 24839, 0, 0, 0, 1, 1, 1, 1, 'Wrathfin Greaves'),
|
|
(4104, 24840, 0, 0, 0, 1, 1, 1, 1, 'Wrathfin Armor'),
|
|
(4104, 24841, 0, 0, 0, 1, 1, 1, 1, 'Wrathfin Gloves'),
|
|
(4104, 24842, 0, 0, 0, 1, 1, 1, 1, 'Wrathfin Helmet'),
|
|
(4104, 24843, 0, 0, 0, 1, 1, 1, 1, 'Wrathfin Legguards'),
|
|
(4104, 24844, 0, 0, 0, 1, 1, 1, 1, 'Wrathfin Mantle'),
|
|
(4104, 24845, 0, 0, 0, 1, 1, 1, 1, 'Wrathfin Bindings'),
|
|
(4104, 24950, 0, 0, 0, 1, 1, 1, 1, 'Bogslayer Belt'),
|
|
(4104, 24951, 0, 0, 0, 1, 1, 1, 1, 'Bogslayer Sabatons'),
|
|
(4104, 24952, 0, 0, 0, 1, 1, 1, 1, 'Bogslayer Breastplate'),
|
|
(4104, 24953, 0, 0, 0, 1, 1, 1, 1, 'Bogslayer Gauntlets'),
|
|
(4104, 24954, 0, 0, 0, 1, 1, 1, 1, 'Bogslayer Helm'),
|
|
(4104, 24955, 0, 0, 0, 1, 1, 1, 1, 'Bogslayer Legplates'),
|
|
(4104, 24956, 0, 0, 0, 1, 1, 1, 1, 'Bogslayer Pauldrons'),
|
|
(4104, 24957, 0, 0, 0, 1, 1, 1, 1, 'Bogslayer Bracers'),
|
|
(4104, 25034, 0, 0, 0, 1, 1, 1, 1, 'Elementalist Cloak'),
|
|
(4104, 25048, 0, 0, 0, 1, 1, 1, 1, 'Smoky Quartz Ring'),
|
|
(4104, 25062, 0, 0, 0, 1, 1, 1, 1, 'Zircon Amulet'),
|
|
(4104, 25076, 0, 0, 0, 1, 1, 1, 1, 'Screaming Shield'),
|
|
(4104, 25090, 0, 0, 0, 1, 1, 1, 1, 'Slavehandler Rod'),
|
|
(4104, 25104, 0, 0, 0, 1, 1, 1, 1, 'Anzac Dagger'),
|
|
(4104, 25118, 0, 0, 0, 1, 1, 1, 1, 'Battle Star'),
|
|
(4104, 25132, 0, 0, 0, 1, 1, 1, 1, 'Thrallmar War Hammer'),
|
|
(4104, 25146, 0, 0, 0, 1, 1, 1, 1, 'Light-Etched Longsword'),
|
|
(4104, 25160, 0, 0, 0, 1, 1, 1, 1, 'Vengeance Blade'),
|
|
(4104, 25174, 0, 0, 0, 1, 1, 1, 1, 'Hanbo Staff'),
|
|
(4104, 25188, 0, 0, 0, 1, 1, 1, 1, 'Spleenripper Claws'),
|
|
(4104, 25202, 0, 0, 0, 1, 1, 1, 1, 'Kingly Axe'),
|
|
(4104, 25216, 0, 0, 0, 1, 1, 1, 1, 'Ogre Splitting Axe'),
|
|
(4104, 25230, 0, 0, 0, 1, 1, 1, 1, 'Voulge Blade'),
|
|
(4104, 25244, 0, 0, 0, 1, 1, 1, 1, 'Viper Bow'),
|
|
(4104, 25258, 0, 0, 0, 1, 1, 1, 1, 'Repeater Crossbow'),
|
|
(4104, 25272, 0, 0, 0, 1, 1, 1, 1, 'PC-54 Shotgun'),
|
|
(4104, 25286, 0, 0, 0, 1, 1, 1, 1, 'Yew Wand'),
|
|
(4104, 25300, 0, 0, 0, 1, 1, 1, 1, 'Lightning Dagger'),
|
|
(4104, 25314, 0, 0, 0, 1, 1, 1, 1, 'Ceremonial Hammer'),
|
|
(4104, 25328, 0, 0, 0, 1, 1, 1, 1, 'Faerie-Kind Staff'),
|
|
(4104, 28535, 0, 0, 0, 1, 1, 1, 1, 'Amani Throwing Axe'),
|
|
(4105, 24621, 0, 0, 0, 1, 1, 1, 1, 'Slavehandler Belt'),
|
|
(4105, 24622, 0, 0, 0, 1, 1, 1, 1, 'Slavehandler Footpads'),
|
|
(4105, 24623, 0, 0, 0, 1, 1, 1, 1, 'Slavehandler Jerkin'),
|
|
(4105, 24624, 0, 0, 0, 1, 1, 1, 1, 'Slavehandler Handwraps'),
|
|
(4105, 24625, 0, 0, 0, 1, 1, 1, 1, 'Slavehandler Cap'),
|
|
(4105, 24626, 0, 0, 0, 1, 1, 1, 1, 'Slavehandler Pants'),
|
|
(4105, 24627, 0, 0, 0, 1, 1, 1, 1, 'Slavehandler Amice'),
|
|
(4105, 24628, 0, 0, 0, 1, 1, 1, 1, 'Slavehandler Wristguards'),
|
|
(4105, 24733, 0, 0, 0, 1, 1, 1, 1, 'Sunroc Waistband'),
|
|
(4105, 24734, 0, 0, 0, 1, 1, 1, 1, 'Sunroc Boots'),
|
|
(4105, 24735, 0, 0, 0, 1, 1, 1, 1, 'Sunroc Chestpiece'),
|
|
(4105, 24736, 0, 0, 0, 1, 1, 1, 1, 'Sunroc Gloves'),
|
|
(4105, 24737, 0, 0, 0, 1, 1, 1, 1, 'Sunroc Mask'),
|
|
(4105, 24738, 0, 0, 0, 1, 1, 1, 1, 'Sunroc Pants'),
|
|
(4105, 24739, 0, 0, 0, 1, 1, 1, 1, 'Sunroc Shoulderguards'),
|
|
(4105, 24740, 0, 0, 0, 1, 1, 1, 1, 'Sunroc Armguards'),
|
|
(4105, 24846, 0, 0, 0, 1, 1, 1, 1, 'Fenclaw Waistband'),
|
|
(4105, 24847, 0, 0, 0, 1, 1, 1, 1, 'Fenclaw Footwraps'),
|
|
(4105, 24848, 0, 0, 0, 1, 1, 1, 1, 'Fenclaw Armor'),
|
|
(4105, 24849, 0, 0, 0, 1, 1, 1, 1, 'Fenclaw Fists'),
|
|
(4105, 24850, 0, 0, 0, 1, 1, 1, 1, 'Fenclaw Helm'),
|
|
(4105, 24851, 0, 0, 0, 1, 1, 1, 1, 'Fenclaw Legguards'),
|
|
(4105, 24852, 0, 0, 0, 1, 1, 1, 1, 'Fenclaw Mantle'),
|
|
(4105, 24853, 0, 0, 0, 1, 1, 1, 1, 'Fenclaw Bindings'),
|
|
(4105, 24958, 0, 0, 0, 1, 1, 1, 1, 'Khan\'aish Girdle'),
|
|
(4105, 24959, 0, 0, 0, 1, 1, 1, 1, 'Khan\'aish Greaves'),
|
|
(4105, 24960, 0, 0, 0, 1, 1, 1, 1, 'Khan\'aish Breastplate'),
|
|
(4105, 24961, 0, 0, 0, 1, 1, 1, 1, 'Khan\'aish Gloves'),
|
|
(4105, 24962, 0, 0, 0, 1, 1, 1, 1, 'Khan\'aish Helmet'),
|
|
(4105, 24963, 0, 0, 0, 1, 1, 1, 1, 'Khan\'aish Legplates'),
|
|
(4105, 24964, 0, 0, 0, 1, 1, 1, 1, 'Khan\'aish Epaulets'),
|
|
(4105, 24965, 0, 0, 0, 1, 1, 1, 1, 'Khan\'aish Bracers'),
|
|
(4105, 25035, 0, 0, 0, 1, 1, 1, 1, 'Silver-Lined Cloak'),
|
|
(4105, 25049, 0, 0, 0, 1, 1, 1, 1, 'Scheelite Ring'),
|
|
(4105, 25063, 0, 0, 0, 1, 1, 1, 1, 'Multi-Colored Beads'),
|
|
(4105, 25077, 0, 0, 0, 1, 1, 1, 1, 'Modani War-Shield'),
|
|
(4105, 25091, 0, 0, 0, 1, 1, 1, 1, 'Mistyreed Torch'),
|
|
(4105, 25105, 0, 0, 0, 1, 1, 1, 1, 'Arachnid Dagger'),
|
|
(4105, 25119, 0, 0, 0, 1, 1, 1, 1, 'Silvermoon War-Mace'),
|
|
(4105, 25133, 0, 0, 0, 1, 1, 1, 1, 'Stormwind Maul'),
|
|
(4105, 25147, 0, 0, 0, 1, 1, 1, 1, 'Skystrider Katana'),
|
|
(4105, 25161, 0, 0, 0, 1, 1, 1, 1, 'Dragon Wing Blade'),
|
|
(4105, 25175, 0, 0, 0, 1, 1, 1, 1, 'Demoniac Longstaff'),
|
|
(4105, 25189, 0, 0, 0, 1, 1, 1, 1, 'Ironspine Point'),
|
|
(4105, 25203, 0, 0, 0, 1, 1, 1, 1, 'Chipped Woodchopper'),
|
|
(4105, 25217, 0, 0, 0, 1, 1, 1, 1, 'Sundering Axe'),
|
|
(4105, 25231, 0, 0, 0, 1, 1, 1, 1, 'Fel-Wrought Halberd'),
|
|
(4105, 25245, 0, 0, 0, 1, 1, 1, 1, 'Razorsong Bow'),
|
|
(4105, 25259, 0, 0, 0, 1, 1, 1, 1, 'Collapsible Crossbow'),
|
|
(4105, 25273, 0, 0, 0, 1, 1, 1, 1, 'Sawed-Off Shotgun'),
|
|
(4105, 25287, 0, 0, 0, 1, 1, 1, 1, 'Magician\'s Wand'),
|
|
(4105, 25301, 0, 0, 0, 1, 1, 1, 1, 'Shattering Dagger'),
|
|
(4105, 25315, 0, 0, 0, 1, 1, 1, 1, 'Restorative Mace'),
|
|
(4105, 25329, 0, 0, 0, 1, 1, 1, 1, 'Tranquility Staff'),
|
|
(4105, 28536, 0, 0, 0, 1, 1, 1, 1, 'Jagged Guillotine'),
|
|
(4106, 24629, 0, 0, 0, 1, 1, 1, 1, 'Feralfen Sash'),
|
|
(4106, 24630, 0, 0, 0, 1, 1, 1, 1, 'Feralfen Sandals'),
|
|
(4106, 24631, 0, 0, 0, 1, 1, 1, 1, 'Feralfen Jerkin'),
|
|
(4106, 24632, 0, 0, 0, 1, 1, 1, 1, 'Feralfen Hand'),
|
|
(4106, 24633, 0, 0, 0, 1, 1, 1, 1, 'Feralfen Hood'),
|
|
(4106, 24634, 0, 0, 0, 1, 1, 1, 1, 'Feralfen Pants'),
|
|
(4106, 24635, 0, 0, 0, 1, 1, 1, 1, 'Feralfen Amice'),
|
|
(4106, 24636, 0, 0, 0, 1, 1, 1, 1, 'Feralfen Cuffs'),
|
|
(4106, 24741, 0, 0, 0, 1, 1, 1, 1, 'Ranger Belt'),
|
|
(4106, 24742, 0, 0, 0, 1, 1, 1, 1, 'Ranger Boots'),
|
|
(4106, 24743, 0, 0, 0, 1, 1, 1, 1, 'Ranger Jerkin'),
|
|
(4106, 24744, 0, 0, 0, 1, 1, 1, 1, 'Ranger Gloves'),
|
|
(4106, 24745, 0, 0, 0, 1, 1, 1, 1, 'Ranger Hat'),
|
|
(4106, 24746, 0, 0, 0, 1, 1, 1, 1, 'Ranger Pants'),
|
|
(4106, 24747, 0, 0, 0, 1, 1, 1, 1, 'Ranger Pauldrons'),
|
|
(4106, 24748, 0, 0, 0, 1, 1, 1, 1, 'Ranger Armguards'),
|
|
(4106, 24854, 0, 0, 0, 1, 1, 1, 1, 'Marshcreeper Belt'),
|
|
(4106, 24855, 0, 0, 0, 1, 1, 1, 1, 'Marshcreeper Sludgeboots'),
|
|
(4106, 24856, 0, 0, 0, 1, 1, 1, 1, 'Marshcreeper Fen-Vest'),
|
|
(4106, 24857, 0, 0, 0, 1, 1, 1, 1, 'Marshcreeper Gloves'),
|
|
(4106, 24858, 0, 0, 0, 1, 1, 1, 1, 'Marshcreeper Helm'),
|
|
(4106, 24859, 0, 0, 0, 1, 1, 1, 1, 'Marshcreeper Leggings'),
|
|
(4106, 24860, 0, 0, 0, 1, 1, 1, 1, 'Marshcreeper Mantle'),
|
|
(4106, 24861, 0, 0, 0, 1, 1, 1, 1, 'Marshcreeper Bracelets'),
|
|
(4106, 24966, 0, 0, 0, 1, 1, 1, 1, 'Talonguard Girdle'),
|
|
(4106, 24967, 0, 0, 0, 1, 1, 1, 1, 'Talonguard Greaves'),
|
|
(4106, 24968, 0, 0, 0, 1, 1, 1, 1, 'Talonguard Armor'),
|
|
(4106, 24969, 0, 0, 0, 1, 1, 1, 1, 'Talonguard Gloves'),
|
|
(4106, 24970, 0, 0, 0, 1, 1, 1, 1, 'Talonguard Helmet'),
|
|
(4106, 24971, 0, 0, 0, 1, 1, 1, 1, 'Talonguard Legplates'),
|
|
(4106, 24972, 0, 0, 0, 1, 1, 1, 1, 'Talonguard Epaulets'),
|
|
(4106, 24973, 0, 0, 0, 1, 1, 1, 1, 'Talonguard Bracers'),
|
|
(4106, 25036, 0, 0, 0, 1, 1, 1, 1, 'Boulderfist Cloak'),
|
|
(4106, 25050, 0, 0, 0, 1, 1, 1, 1, 'Moldavite Ring'),
|
|
(4106, 25064, 0, 0, 0, 1, 1, 1, 1, 'Amethyst Pendant'),
|
|
(4106, 25078, 0, 0, 0, 1, 1, 1, 1, 'Zangari Shield'),
|
|
(4106, 25092, 0, 0, 0, 1, 1, 1, 1, 'Consortium Crystal'),
|
|
(4106, 25106, 0, 0, 0, 1, 1, 1, 1, 'Cobra Shortblade'),
|
|
(4106, 25120, 0, 0, 0, 1, 1, 1, 1, 'Rockshard Club'),
|
|
(4106, 25134, 0, 0, 0, 1, 1, 1, 1, 'Highmountain Hammer'),
|
|
(4106, 25148, 0, 0, 0, 1, 1, 1, 1, 'Bone Collector Sword'),
|
|
(4106, 25162, 0, 0, 0, 1, 1, 1, 1, 'Darkened Broadsword'),
|
|
(4106, 25176, 0, 0, 0, 1, 1, 1, 1, 'Taiji Quarterstaff'),
|
|
(4106, 25190, 0, 0, 0, 1, 1, 1, 1, 'Wight\'s Claws'),
|
|
(4106, 25204, 0, 0, 0, 1, 1, 1, 1, 'Colossal War Axe'),
|
|
(4106, 25218, 0, 0, 0, 1, 1, 1, 1, 'Silver-Edged Axe'),
|
|
(4106, 25232, 0, 0, 0, 1, 1, 1, 1, 'War Glaive'),
|
|
(4106, 25246, 0, 0, 0, 1, 1, 1, 1, 'Thalassian Compound Bow'),
|
|
(4106, 25260, 0, 0, 0, 1, 1, 1, 1, 'Archer\'s Crossbow'),
|
|
(4106, 25274, 0, 0, 0, 1, 1, 1, 1, 'Cliffjumper Shotgun'),
|
|
(4106, 25288, 0, 0, 0, 1, 1, 1, 1, 'Conjurer\'s Wand'),
|
|
(4106, 25302, 0, 0, 0, 1, 1, 1, 1, 'Soul-Drain Dagger'),
|
|
(4106, 25316, 0, 0, 0, 1, 1, 1, 1, 'Spirit-Clad Mace'),
|
|
(4106, 25330, 0, 0, 0, 1, 1, 1, 1, 'Starshine Staff'),
|
|
(4106, 28537, 0, 0, 0, 1, 1, 1, 1, 'Wildhammer Throwing Axe'),
|
|
(4110, 24661, 0, 0, 0, 1, 1, 1, 1, 'Shadow Council Chain'),
|
|
(4110, 24662, 0, 0, 0, 1, 1, 1, 1, 'Shadow Council Boots'),
|
|
(4110, 24663, 0, 0, 0, 1, 1, 1, 1, 'Shadow Council Tunic'),
|
|
(4110, 24664, 0, 0, 0, 1, 1, 1, 1, 'Shadow Council Gloves'),
|
|
(4110, 24665, 0, 0, 0, 1, 1, 1, 1, 'Shadow Council Cowl'),
|
|
(4110, 24666, 0, 0, 0, 1, 1, 1, 1, 'Shadow Council Pants'),
|
|
(4110, 24667, 0, 0, 0, 1, 1, 1, 1, 'Shadow Council Mantle'),
|
|
(4110, 24668, 0, 0, 0, 1, 1, 1, 1, 'Shadow Council Bracer'),
|
|
(4110, 24773, 0, 0, 0, 1, 1, 1, 1, 'Boneshredder Belt'),
|
|
(4110, 24774, 0, 0, 0, 1, 1, 1, 1, 'Boneshredder Boots'),
|
|
(4110, 24775, 0, 0, 0, 1, 1, 1, 1, 'Boneshredder Jerkin'),
|
|
(4110, 24776, 0, 0, 0, 1, 1, 1, 1, 'Boneshredder Gloves'),
|
|
(4110, 24777, 0, 0, 0, 1, 1, 1, 1, 'Boneshredder Skullcap'),
|
|
(4110, 24778, 0, 0, 0, 1, 1, 1, 1, 'Boneshredder Britches'),
|
|
(4110, 24779, 0, 0, 0, 1, 1, 1, 1, 'Boneshredder Shoulderguards'),
|
|
(4110, 24780, 0, 0, 0, 1, 1, 1, 1, 'Boneshredder Wristguards'),
|
|
(4110, 24886, 0, 0, 0, 1, 1, 1, 1, 'Skettis Belt'),
|
|
(4110, 24887, 0, 0, 0, 1, 1, 1, 1, 'Skettis Footwraps'),
|
|
(4110, 24888, 0, 0, 0, 1, 1, 1, 1, 'Skettis Chestpiece'),
|
|
(4110, 24889, 0, 0, 0, 1, 1, 1, 1, 'Skettis Gauntlets'),
|
|
(4110, 24890, 0, 0, 0, 1, 1, 1, 1, 'Skettis Helmet'),
|
|
(4110, 24891, 0, 0, 0, 1, 1, 1, 1, 'Skettis Legguards'),
|
|
(4110, 24892, 0, 0, 0, 1, 1, 1, 1, 'Skettis Spaulders'),
|
|
(4110, 24893, 0, 0, 0, 1, 1, 1, 1, 'Skettis Bracer'),
|
|
(4110, 24998, 0, 0, 0, 1, 1, 1, 1, 'Bloodfist Girdle'),
|
|
(4110, 24999, 0, 0, 0, 1, 1, 1, 1, 'Bloodfist Greaves'),
|
|
(4110, 25000, 0, 0, 0, 1, 1, 1, 1, 'Bloodfist Breastplate'),
|
|
(4110, 25001, 0, 0, 0, 1, 1, 1, 1, 'Bloodfist Gloves'),
|
|
(4110, 25002, 0, 0, 0, 1, 1, 1, 1, 'Bloodfist Helmet'),
|
|
(4110, 25003, 0, 0, 0, 1, 1, 1, 1, 'Bloodfist Legplates'),
|
|
(4110, 25004, 0, 0, 0, 1, 1, 1, 1, 'Bloodfist Epaulets'),
|
|
(4110, 25005, 0, 0, 0, 1, 1, 1, 1, 'Bloodfist Vambraces'),
|
|
(4110, 25040, 0, 0, 0, 1, 1, 1, 1, 'Murkblood Cape'),
|
|
(4110, 25054, 0, 0, 0, 1, 1, 1, 1, 'Sodalite Band'),
|
|
(4110, 25068, 0, 0, 0, 1, 1, 1, 1, 'Kunzite Necklace'),
|
|
(4110, 25082, 0, 0, 0, 1, 1, 1, 1, 'Fel-Iron Shield'),
|
|
(4110, 25096, 0, 0, 0, 1, 1, 1, 1, 'Elementalist Star'),
|
|
(4110, 25110, 0, 0, 0, 1, 1, 1, 1, 'Sharp Bowie Knife'),
|
|
(4110, 25124, 0, 0, 0, 1, 1, 1, 1, 'Footman Mace'),
|
|
(4110, 25138, 0, 0, 0, 1, 1, 1, 1, 'Blood Knight Maul'),
|
|
(4110, 25152, 0, 0, 0, 1, 1, 1, 1, 'Howling Sword'),
|
|
(4110, 25166, 0, 0, 0, 1, 1, 1, 1, 'Mok\'Nathal Warblade'),
|
|
(4110, 25180, 0, 0, 0, 1, 1, 1, 1, 'Calenda Fighting Stick'),
|
|
(4110, 25194, 0, 0, 0, 1, 1, 1, 1, 'Serpent\'s Fangs'),
|
|
(4110, 25208, 0, 0, 0, 1, 1, 1, 1, 'Bladespire Broadaxe'),
|
|
(4110, 25222, 0, 0, 0, 1, 1, 1, 1, 'Ceremonial Slayer\'s Axe'),
|
|
(4110, 25236, 0, 0, 0, 1, 1, 1, 1, 'Grim Scythe'),
|
|
(4110, 25250, 0, 0, 0, 1, 1, 1, 1, 'Rocslayer Longbow'),
|
|
(4110, 25264, 0, 0, 0, 1, 1, 1, 1, 'Pocket Ballista'),
|
|
(4110, 25278, 0, 0, 0, 1, 1, 1, 1, 'Nesingwary Longrifle'),
|
|
(4110, 25292, 0, 0, 0, 1, 1, 1, 1, 'Mechano-Wand'),
|
|
(4110, 25306, 0, 0, 0, 1, 1, 1, 1, 'Permafrost Dagger'),
|
|
(4110, 25320, 0, 0, 0, 1, 1, 1, 1, 'Queen\'s Insignia'),
|
|
(4110, 25334, 0, 0, 0, 1, 1, 1, 1, 'Intimidating Greatstaff'),
|
|
(4110, 28541, 0, 0, 0, 1, 1, 1, 1, 'Sawshrike'),
|
|
(4111, 24669, 0, 0, 0, 1, 1, 1, 1, 'Eldr\'naan Belt'),
|
|
(4111, 24670, 0, 0, 0, 1, 1, 1, 1, 'Eldr\'naan Boots'),
|
|
(4111, 24671, 0, 0, 0, 1, 1, 1, 1, 'Eldr\'naan Jerkin'),
|
|
(4111, 24672, 0, 0, 0, 1, 1, 1, 1, 'Eldr\'naan Gloves'),
|
|
(4111, 24673, 0, 0, 0, 1, 1, 1, 1, 'Eldr\'naan Hood'),
|
|
(4111, 24674, 0, 0, 0, 1, 1, 1, 1, 'Eldr\'naan Pants'),
|
|
(4111, 24675, 0, 0, 0, 1, 1, 1, 1, 'Eldr\'naan Shoulderpads'),
|
|
(4111, 24676, 0, 0, 0, 1, 1, 1, 1, 'Eldr\'naan Bracelets'),
|
|
(4111, 24781, 0, 0, 0, 1, 1, 1, 1, 'Murkblood Belt'),
|
|
(4111, 24783, 0, 0, 0, 1, 1, 1, 1, 'Murkblood Boots'),
|
|
(4111, 24784, 0, 0, 0, 1, 1, 1, 1, 'Murkblood Chestpiece'),
|
|
(4111, 24785, 0, 0, 0, 1, 1, 1, 1, 'Murkblood Gloves'),
|
|
(4111, 24786, 0, 0, 0, 1, 1, 1, 1, 'Murkblood Cover'),
|
|
(4111, 24787, 0, 0, 0, 1, 1, 1, 1, 'Murkblood Pants'),
|
|
(4111, 24788, 0, 0, 0, 1, 1, 1, 1, 'Murkblood Shoulderguards'),
|
|
(4111, 24789, 0, 0, 0, 1, 1, 1, 1, 'Murkblood Bracers'),
|
|
(4111, 24894, 0, 0, 0, 1, 1, 1, 1, 'Sundered Waistband'),
|
|
(4111, 24895, 0, 0, 0, 1, 1, 1, 1, 'Sundered Footwraps'),
|
|
(4111, 24896, 0, 0, 0, 1, 1, 1, 1, 'Sundered Chestpiece'),
|
|
(4111, 24897, 0, 0, 0, 1, 1, 1, 1, 'Sundered Gauntlets'),
|
|
(4111, 24898, 0, 0, 0, 1, 1, 1, 1, 'Sundered Helmet'),
|
|
(4111, 24899, 0, 0, 0, 1, 1, 1, 1, 'Sundered Legguards'),
|
|
(4111, 24900, 0, 0, 0, 1, 1, 1, 1, 'Sundered Spaulders'),
|
|
(4111, 24901, 0, 0, 0, 1, 1, 1, 1, 'Tortured Bracer'),
|
|
(4111, 25006, 0, 0, 0, 1, 1, 1, 1, 'Conqueror\'s Girdle'),
|
|
(4111, 25007, 0, 0, 0, 1, 1, 1, 1, 'Conqueror\'s Greaves'),
|
|
(4111, 25008, 0, 0, 0, 1, 1, 1, 1, 'Conqueror\'s Breastplate'),
|
|
(4111, 25009, 0, 0, 0, 1, 1, 1, 1, 'Conqueror\'s Gauntlets'),
|
|
(4111, 25010, 0, 0, 0, 1, 1, 1, 1, 'Conqueror\'s Helmet'),
|
|
(4111, 25011, 0, 0, 0, 1, 1, 1, 1, 'Conqueror\'s Legplates'),
|
|
(4111, 25012, 0, 0, 0, 1, 1, 1, 1, 'Conqueror\'s Epaulets'),
|
|
(4111, 25013, 0, 0, 0, 1, 1, 1, 1, 'Conqueror\'s Vambraces'),
|
|
(4111, 25041, 0, 0, 0, 1, 1, 1, 1, 'Ambusher\'s Cloak'),
|
|
(4111, 25055, 0, 0, 0, 1, 1, 1, 1, 'Alexandrite Ring'),
|
|
(4111, 25069, 0, 0, 0, 1, 1, 1, 1, 'Epidote Stone Necklace'),
|
|
(4111, 25083, 0, 0, 0, 1, 1, 1, 1, 'Smouldering Shield'),
|
|
(4111, 25097, 0, 0, 0, 1, 1, 1, 1, 'Astralaan Orb'),
|
|
(4111, 25111, 0, 0, 0, 1, 1, 1, 1, 'Lionhead Dagger'),
|
|
(4111, 25125, 0, 0, 0, 1, 1, 1, 1, 'Retro-Spike Club'),
|
|
(4111, 25139, 0, 0, 0, 1, 1, 1, 1, 'Algaz Battle Hammer'),
|
|
(4111, 25153, 0, 0, 0, 1, 1, 1, 1, 'Gladiator Greatblade'),
|
|
(4111, 25167, 0, 0, 0, 1, 1, 1, 1, 'Nethersteel Claymore'),
|
|
(4111, 25181, 0, 0, 0, 1, 1, 1, 1, 'Tapered Staff'),
|
|
(4111, 25195, 0, 0, 0, 1, 1, 1, 1, 'Diamond Tipped Claws'),
|
|
(4111, 25209, 0, 0, 0, 1, 1, 1, 1, 'Amani Tomahawk'),
|
|
(4111, 25223, 0, 0, 0, 1, 1, 1, 1, 'Windcaller Hatchet'),
|
|
(4111, 25237, 0, 0, 0, 1, 1, 1, 1, 'Nether Trident'),
|
|
(4111, 25251, 0, 0, 0, 1, 1, 1, 1, 'Orc Flatbow'),
|
|
(4111, 25265, 0, 0, 0, 1, 1, 1, 1, 'Barreled Crossbow'),
|
|
(4111, 25279, 0, 0, 0, 1, 1, 1, 1, 'Sen\'jin Longrifle'),
|
|
(4111, 25293, 0, 0, 0, 1, 1, 1, 1, 'Draenethyst Wand'),
|
|
(4111, 25307, 0, 0, 0, 1, 1, 1, 1, 'Shadow Dagger'),
|
|
(4111, 25321, 0, 0, 0, 1, 1, 1, 1, 'Divine Hammer'),
|
|
(4111, 25335, 0, 0, 0, 1, 1, 1, 1, 'Feral Warp-Staff'),
|
|
(4111, 28542, 0, 0, 0, 1, 1, 1, 1, 'Heartseeker Knives'),
|
|
(4112, 24677, 0, 0, 0, 1, 1, 1, 1, 'Archmage Belt'),
|
|
(4112, 24678, 0, 0, 0, 1, 1, 1, 1, 'Archmage Slippers'),
|
|
(4112, 24679, 0, 0, 0, 1, 1, 1, 1, 'Archmage Robe'),
|
|
(4112, 24680, 0, 0, 0, 1, 1, 1, 1, 'Archmage Gloves'),
|
|
(4112, 24681, 0, 0, 0, 1, 1, 1, 1, 'Archmage Headpiece'),
|
|
(4112, 24682, 0, 0, 0, 1, 1, 1, 1, 'Archmage Pants'),
|
|
(4112, 24683, 0, 0, 0, 1, 1, 1, 1, 'Archmage Mantle'),
|
|
(4112, 24684, 0, 0, 0, 1, 1, 1, 1, 'Archmage Bracelets'),
|
|
(4112, 24790, 0, 0, 0, 1, 1, 1, 1, 'Expedition Girdle'),
|
|
(4112, 24791, 0, 0, 0, 1, 1, 1, 1, 'Expedition Boots'),
|
|
(4112, 24792, 0, 0, 0, 1, 1, 1, 1, 'Expedition Tunic'),
|
|
(4112, 24793, 0, 0, 0, 1, 1, 1, 1, 'Expedition Gloves'),
|
|
(4112, 24794, 0, 0, 0, 1, 1, 1, 1, 'Expedition Hood'),
|
|
(4112, 24795, 0, 0, 0, 1, 1, 1, 1, 'Expedition Pants'),
|
|
(4112, 24796, 0, 0, 0, 1, 1, 1, 1, 'Expedition Shoulderguards'),
|
|
(4112, 24797, 0, 0, 0, 1, 1, 1, 1, 'Expedition Bracers'),
|
|
(4112, 24902, 0, 0, 0, 1, 1, 1, 1, 'Talhide Stitched-Belt'),
|
|
(4112, 24903, 0, 0, 0, 1, 1, 1, 1, 'Talhide Lined-Boots'),
|
|
(4112, 24904, 0, 0, 0, 1, 1, 1, 1, 'Talhide Chestpiece'),
|
|
(4112, 24905, 0, 0, 0, 1, 1, 1, 1, 'Talhide Lined-Gloves'),
|
|
(4112, 24906, 0, 0, 0, 1, 1, 1, 1, 'Talhide Helmet'),
|
|
(4112, 24907, 0, 0, 0, 1, 1, 1, 1, 'Talhide Lined-Leggings'),
|
|
(4112, 24908, 0, 0, 0, 1, 1, 1, 1, 'Talhide Shoulderguards'),
|
|
(4112, 24909, 0, 0, 0, 1, 1, 1, 1, 'Talhide Lined-Bracers'),
|
|
(4112, 25014, 0, 0, 0, 1, 1, 1, 1, 'Shattered Hand Belt'),
|
|
(4112, 25015, 0, 0, 0, 1, 1, 1, 1, 'Shattered Hand Sabatons'),
|
|
(4112, 25016, 0, 0, 0, 1, 1, 1, 1, 'Shattered Hand Breastplate'),
|
|
(4112, 25017, 0, 0, 0, 1, 1, 1, 1, 'Shattered Hand Gauntlets'),
|
|
(4112, 25018, 0, 0, 0, 1, 1, 1, 1, 'Shattered Hand Helmet'),
|
|
(4112, 25019, 0, 0, 0, 1, 1, 1, 1, 'Shattered Hand Legplates'),
|
|
(4112, 25020, 0, 0, 0, 1, 1, 1, 1, 'Shattered Hand Epaulets'),
|
|
(4112, 25021, 0, 0, 0, 1, 1, 1, 1, 'Shattered Hand Vambraces'),
|
|
(4112, 25042, 0, 0, 0, 1, 1, 1, 1, 'Nether Cloak'),
|
|
(4112, 25056, 0, 0, 0, 1, 1, 1, 1, 'Almandine Ring'),
|
|
(4112, 25070, 0, 0, 0, 1, 1, 1, 1, 'Coral Beads'),
|
|
(4112, 25084, 0, 0, 0, 1, 1, 1, 1, 'Zeth\'Gor Shield'),
|
|
(4112, 25098, 0, 0, 0, 1, 1, 1, 1, 'Tuurik Torch'),
|
|
(4112, 25112, 0, 0, 0, 1, 1, 1, 1, 'Fel Ripper'),
|
|
(4112, 25126, 0, 0, 0, 1, 1, 1, 1, 'Anvilmar Hammer'),
|
|
(4112, 25140, 0, 0, 0, 1, 1, 1, 1, 'Commanding Mallet'),
|
|
(4112, 25154, 0, 0, 0, 1, 1, 1, 1, 'Blood Groove Blade'),
|
|
(4112, 25168, 0, 0, 0, 1, 1, 1, 1, 'Sha\'tari Longsword'),
|
|
(4112, 25182, 0, 0, 0, 1, 1, 1, 1, 'Crystal-Etched Warstaff'),
|
|
(4112, 25196, 0, 0, 0, 1, 1, 1, 1, 'Boneshredder Claws'),
|
|
(4112, 25210, 0, 0, 0, 1, 1, 1, 1, 'Double-Bladed Axe'),
|
|
(4112, 25224, 0, 0, 0, 1, 1, 1, 1, 'Slavemaster Axe'),
|
|
(4112, 25238, 0, 0, 0, 1, 1, 1, 1, 'Hellfire War Spear'),
|
|
(4112, 25252, 0, 0, 0, 1, 1, 1, 1, 'Dream Catcher Bow'),
|
|
(4112, 25266, 0, 0, 0, 1, 1, 1, 1, 'Well-Balanced Crossbow'),
|
|
(4112, 25280, 0, 0, 0, 1, 1, 1, 1, 'Game Hunter Musket'),
|
|
(4112, 25294, 0, 0, 0, 1, 1, 1, 1, 'Dragonscale Wand'),
|
|
(4112, 25308, 0, 0, 0, 1, 1, 1, 1, 'Thunder Spike'),
|
|
(4112, 25322, 0, 0, 0, 1, 1, 1, 1, 'Lordly Scepter'),
|
|
(4112, 25336, 0, 0, 0, 1, 1, 1, 1, 'Splintering Greatstaff'),
|
|
(4112, 28543, 0, 0, 0, 1, 1, 1, 1, 'Dreghood Throwing Axe'),
|
|
(4113, 24685, 0, 0, 0, 1, 1, 1, 1, 'Elementalist Belt'),
|
|
(4113, 24686, 0, 0, 0, 1, 1, 1, 1, 'Elementalist Boots'),
|
|
(4113, 24687, 0, 0, 0, 1, 1, 1, 1, 'Elementalist Tunic'),
|
|
(4113, 24688, 0, 0, 0, 1, 1, 1, 1, 'Elementalist Gloves'),
|
|
(4113, 24689, 0, 0, 0, 1, 1, 1, 1, 'Elementalist Skullcap'),
|
|
(4113, 24690, 0, 0, 0, 1, 1, 1, 1, 'Elementalist Leggings'),
|
|
(4113, 24691, 0, 0, 0, 1, 1, 1, 1, 'Elementalist Mantle'),
|
|
(4113, 24692, 0, 0, 0, 1, 1, 1, 1, 'Elementalist Bracelets'),
|
|
(4113, 24798, 0, 0, 0, 1, 1, 1, 1, 'Dragonhawk Belt'),
|
|
(4113, 24799, 0, 0, 0, 1, 1, 1, 1, 'Dragonhawk Boots'),
|
|
(4113, 24800, 0, 0, 0, 1, 1, 1, 1, 'Dragonhawk Tunic'),
|
|
(4113, 24801, 0, 0, 0, 1, 1, 1, 1, 'Dragonhawk Gloves'),
|
|
(4113, 24802, 0, 0, 0, 1, 1, 1, 1, 'Dragonhawk Hat'),
|
|
(4113, 24803, 0, 0, 0, 1, 1, 1, 1, 'Dragonhawk Pants'),
|
|
(4113, 24804, 0, 0, 0, 1, 1, 1, 1, 'Dragonhawk Shoulderguards'),
|
|
(4113, 24805, 0, 0, 0, 1, 1, 1, 1, 'Dragonhawk Bands'),
|
|
(4113, 24910, 0, 0, 0, 1, 1, 1, 1, 'Netherstorm Belt'),
|
|
(4113, 24911, 0, 0, 0, 1, 1, 1, 1, 'Netherstorm Greaves'),
|
|
(4113, 24912, 0, 0, 0, 1, 1, 1, 1, 'Netherstorm Chestpiece'),
|
|
(4113, 24913, 0, 0, 0, 1, 1, 1, 1, 'Netherstorm Gauntlets'),
|
|
(4113, 24914, 0, 0, 0, 1, 1, 1, 1, 'Netherstorm Helm'),
|
|
(4113, 24915, 0, 0, 0, 1, 1, 1, 1, 'Netherstorm Legguards'),
|
|
(4113, 24916, 0, 0, 0, 1, 1, 1, 1, 'Netherstorm Shoulderguards'),
|
|
(4113, 24917, 0, 0, 0, 1, 1, 1, 1, 'Netherstorm Bracer'),
|
|
(4113, 25022, 0, 0, 0, 1, 1, 1, 1, 'Warlord\'s Iron-Girdle'),
|
|
(4113, 25023, 0, 0, 0, 1, 1, 1, 1, 'Warlord\'s Sabatons'),
|
|
(4113, 25024, 0, 0, 0, 1, 1, 1, 1, 'Warlord\'s Iron-Breastplate'),
|
|
(4113, 25025, 0, 0, 0, 1, 1, 1, 1, 'Warlord\'s Iron-Gauntlets'),
|
|
(4113, 25026, 0, 0, 0, 1, 1, 1, 1, 'Warlord\'s Iron-Helm'),
|
|
(4113, 25027, 0, 0, 0, 1, 1, 1, 1, 'Warlord\'s Iron-Legplates'),
|
|
(4113, 25028, 0, 0, 0, 1, 1, 1, 1, 'Warlord\'s Iron-Epaulets'),
|
|
(4113, 25029, 0, 0, 0, 1, 1, 1, 1, 'Warlord\'s Iron-Vambraces'),
|
|
(4113, 25043, 0, 0, 0, 1, 1, 1, 1, 'Amber Cape'),
|
|
(4113, 25057, 0, 0, 0, 1, 1, 1, 1, 'Amber Band'),
|
|
(4113, 25071, 0, 0, 0, 1, 1, 1, 1, 'Tanzanite Pendant'),
|
|
(4113, 25085, 0, 0, 0, 1, 1, 1, 1, 'Dragonscale Shield'),
|
|
(4113, 25099, 0, 0, 0, 1, 1, 1, 1, 'Draenei Crystal Rod'),
|
|
(4113, 25113, 0, 0, 0, 1, 1, 1, 1, 'Phantom Dagger'),
|
|
(4113, 25127, 0, 0, 0, 1, 1, 1, 1, 'Knight\'s War Hammer'),
|
|
(4113, 25141, 0, 0, 0, 1, 1, 1, 1, 'Halaani Hammer'),
|
|
(4113, 25155, 0, 0, 0, 1, 1, 1, 1, 'Iron Skull Sword'),
|
|
(4113, 25169, 0, 0, 0, 1, 1, 1, 1, 'Fel Orc Brute Sword'),
|
|
(4113, 25183, 0, 0, 0, 1, 1, 1, 1, 'Voodoo Hex-Staff'),
|
|
(4113, 25197, 0, 0, 0, 1, 1, 1, 1, 'Razor Scythes'),
|
|
(4113, 25211, 0, 0, 0, 1, 1, 1, 1, 'Rockbiter Cutter'),
|
|
(4113, 25225, 0, 0, 0, 1, 1, 1, 1, 'Deepforge Broadaxe'),
|
|
(4113, 25239, 0, 0, 0, 1, 1, 1, 1, 'Legend\'s Glaive'),
|
|
(4113, 25253, 0, 0, 0, 1, 1, 1, 1, 'Windspear Longbow'),
|
|
(4113, 25267, 0, 0, 0, 1, 1, 1, 1, 'Rampant Crossbow'),
|
|
(4113, 25281, 0, 0, 0, 1, 1, 1, 1, 'Big-Boar Battle Rifle'),
|
|
(4113, 25295, 0, 0, 0, 1, 1, 1, 1, 'Flawless Wand'),
|
|
(4113, 25309, 0, 0, 0, 1, 1, 1, 1, 'Warpdagger'),
|
|
(4113, 25323, 0, 0, 0, 1, 1, 1, 1, 'Ascendant\'s Scepter'),
|
|
(4113, 25337, 0, 0, 0, 1, 1, 1, 1, 'Swarming Sting-Staff'),
|
|
(4113, 28544, 0, 0, 0, 1, 1, 1, 1, 'Assassin\'s Shuriken'),
|
|
(4200, 31125, 0, 0, 0, 1, 1, 1, 1, 'Boots of the Decimator'),
|
|
(4200, 31126, 0, 0, 0, 1, 1, 1, 1, 'Gloves of Ferocity'),
|
|
(4200, 31127, 0, 0, 0, 1, 1, 1, 1, 'Hauberk of Totemic Rage'),
|
|
(4200, 31131, 0, 0, 0, 1, 1, 1, 1, 'Sash of Silent Blades'),
|
|
(4200, 31133, 0, 0, 0, 1, 1, 1, 1, 'Leggings of Concentrated Darkness'),
|
|
(4200, 31134, 0, 0, 0, 1, 1, 1, 1, 'Blade of Misfortune'),
|
|
(4201, 31136, 0, 0, 0, 1, 1, 1, 1, 'Breastplate of Blade Turning'),
|
|
(4201, 31137, 0, 0, 0, 1, 1, 1, 1, 'Gauntlets of Purification'),
|
|
(4201, 31138, 0, 0, 0, 1, 1, 1, 1, 'Storm Lord\'s Girdle'),
|
|
(4201, 31139, 0, 0, 0, 1, 1, 1, 1, 'Fist of Reckoning'),
|
|
(4201, 31140, 0, 0, 0, 1, 1, 1, 1, 'Cloak of Entropy'),
|
|
(4201, 31142, 0, 0, 0, 1, 1, 1, 1, 'Blade of Trapped Knowledge'),
|
|
(4202, 31143, 0, 0, 0, 1, 1, 1, 1, 'Shroud of Frenzy'),
|
|
(4202, 31145, 0, 0, 0, 1, 1, 1, 1, 'Headdress of the Sleeper'),
|
|
(4202, 31147, 0, 0, 0, 1, 1, 1, 1, 'Pendant of Cunning'),
|
|
(4202, 31148, 0, 0, 0, 1, 1, 1, 1, 'Demon Hide Spaulders'),
|
|
(4202, 31149, 0, 0, 0, 1, 1, 1, 1, 'Gloves of Pandemonium'),
|
|
(4202, 31150, 0, 0, 0, 1, 1, 1, 1, 'Gloves of Piety'),
|
|
(4203, 31151, 0, 0, 0, 1, 1, 1, 1, 'Girdle of Siege'),
|
|
(4203, 31152, 0, 0, 0, 1, 1, 1, 1, 'Chestguard of Illumination'),
|
|
(4203, 31153, 0, 0, 0, 1, 1, 1, 1, 'Axe of the Legion'),
|
|
(4203, 31173, 0, 0, 0, 1, 1, 1, 1, 'Boots of Savagery'),
|
|
(4203, 31175, 0, 0, 0, 1, 1, 1, 1, 'Blade Dancer\'s Wristguards'),
|
|
(4203, 31178, 0, 0, 0, 1, 1, 1, 1, 'Amulet of Unstable Power'),
|
|
(4204, 31180, 0, 0, 0, 1, 1, 1, 1, 'Gauntlets of the Skullsplitter'),
|
|
(4204, 31186, 0, 0, 0, 1, 1, 1, 1, 'Braxxis\' Staff of Slumber'),
|
|
(4204, 31187, 0, 0, 0, 1, 1, 1, 1, 'Boots of the Pathfinder'),
|
|
(4204, 31190, 0, 0, 0, 1, 1, 1, 1, 'The Dreamer\'s Shoulderpads'),
|
|
(4204, 31193, 0, 0, 0, 1, 1, 1, 1, 'Blade of Unquenched Thirst'),
|
|
(4204, 31196, 0, 0, 0, 1, 1, 1, 1, 'Amulet of Sanctification'),
|
|
(4205, 31200, 0, 0, 0, 1, 1, 1, 1, 'Shield of the Wayward Footman'),
|
|
(4205, 31202, 0, 0, 0, 1, 1, 1, 1, 'Girdle of Divine Blessing'),
|
|
(4205, 31204, 0, 0, 0, 1, 1, 1, 1, 'The Gunblade'),
|
|
(4205, 31222, 0, 0, 0, 1, 1, 1, 1, 'Headdress of Inner Rage'),
|
|
(4205, 31226, 0, 0, 0, 1, 1, 1, 1, 'Leggings of the Sly'),
|
|
(4205, 31230, 0, 0, 0, 1, 1, 1, 1, 'Abyss Walker\'s Boots'),
|
|
(4208, 31284, 0, 0, 0, 1, 1, 1, 1, 'Bracers of Recklessness'),
|
|
(4208, 31285, 0, 0, 0, 1, 1, 1, 1, 'Chestguard of the Talon'),
|
|
(4208, 31286, 0, 0, 0, 1, 1, 1, 1, 'Breastplate of Rapid Striking'),
|
|
(4208, 31287, 0, 0, 0, 1, 1, 1, 1, 'Draenei Honor Guard Shield'),
|
|
(4208, 31288, 0, 0, 0, 1, 1, 1, 1, 'The Master\'s Treads'),
|
|
(4208, 31289, 0, 0, 0, 1, 1, 1, 1, 'Staff of Divine Infusion'),
|
|
(4209, 31291, 0, 0, 0, 1, 1, 1, 1, 'Crystalforged War Axe'),
|
|
(4209, 31292, 0, 0, 0, 1, 1, 1, 1, 'Crystal Pulse Shield'),
|
|
(4209, 31293, 0, 0, 0, 1, 1, 1, 1, 'Girdle of Gale Force'),
|
|
(4209, 31294, 0, 0, 0, 1, 1, 1, 1, 'Pauldrons of Surging Mana'),
|
|
(4209, 31295, 0, 0, 0, 1, 1, 1, 1, 'Chestguard of the Dark Stalker'),
|
|
(4209, 31297, 0, 0, 0, 1, 1, 1, 1, 'Robe of the Crimson Order'),
|
|
(4210, 31298, 0, 0, 0, 1, 1, 1, 1, 'Legguards of the Shattered Hand'),
|
|
(4210, 31299, 0, 0, 0, 1, 1, 1, 1, 'The Oathkeeper'),
|
|
(4210, 31303, 0, 0, 0, 1, 1, 1, 1, 'Valanos\' Longbow'),
|
|
(4210, 31304, 0, 0, 0, 1, 1, 1, 1, 'The Essence Focuser'),
|
|
(4210, 31305, 0, 0, 0, 1, 1, 1, 1, 'Ced\'s Carver'),
|
|
(4210, 31306, 0, 0, 0, 1, 1, 1, 1, 'Leggings of the Sacred Crest'),
|
|
(4210, 31308, 0, 0, 0, 1, 1, 1, 1, 'The Bringer of Death'),
|
|
(6000, 1, 4000, 20, 0, 1, 0, 1, 1, '(ReferenceTable)'),
|
|
(6000, 2, 4001, 5, 0, 1, 0, 1, 1, '(ReferenceTable)'),
|
|
(6000, 3, 4100, 2, 0, 1, 0, 1, 1, '(ReferenceTable)'),
|
|
(6000, 4, 4101, 2, 0, 1, 0, 1, 1, '(ReferenceTable)'),
|
|
(6000, 5, 4102, 2, 0, 1, 0, 1, 1, '(ReferenceTable)'),
|
|
(6000, 6, 4103, 2, 0, 1, 0, 1, 1, '(ReferenceTable)'),
|
|
(6000, 7, 4104, 2, 0, 1, 0, 1, 1, '(ReferenceTable)'),
|
|
(6000, 8, 4105, 2, 0, 1, 0, 1, 1, '(ReferenceTable)'),
|
|
(6000, 9, 4200, 0.5, 0, 1, 0, 1, 1, '(ReferenceTable)'),
|
|
(6000, 10, 4201, 0.5, 0, 1, 0, 1, 1, '(ReferenceTable)'),
|
|
(6000, 11, 4202, 0.5, 0, 1, 0, 1, 1, '(ReferenceTable)'),
|
|
(6000, 12, 4203, 0.5, 0, 1, 0, 1, 1, '(ReferenceTable)'),
|
|
(6000, 13, 4204, 0.5, 0, 1, 0, 1, 1, '(ReferenceTable)'),
|
|
(6000, 3914, 0, 0.05, 0, 1, 0, 1, 1, 'Journeyman\'s Backpack'),
|
|
(6000, 4500, 0, 0.1, 0, 1, 0, 1, 1, 'Traveler\'s Backpack'),
|
|
(6001, 1, 4000, 20, 0, 1, 0, 1, 1, '(ReferenceTable)'),
|
|
(6001, 2, 4001, 5, 0, 1, 0, 1, 1, '(ReferenceTable)'),
|
|
(6001, 3, 4103, 2, 0, 1, 0, 1, 1, '(ReferenceTable)'),
|
|
(6001, 4, 4104, 2, 0, 1, 0, 1, 1, '(ReferenceTable)'),
|
|
(6001, 5, 4105, 2, 0, 1, 0, 1, 1, '(ReferenceTable)'),
|
|
(6001, 6, 4200, 0.5, 0, 1, 0, 1, 1, '(ReferenceTable)'),
|
|
(6001, 7, 4201, 0.5, 0, 1, 0, 1, 1, '(ReferenceTable)'),
|
|
(6001, 8, 4202, 0.5, 0, 1, 0, 1, 1, '(ReferenceTable)'),
|
|
(6001, 9, 4203, 0.5, 0, 1, 0, 1, 1, '(ReferenceTable)'),
|
|
(6001, 10, 4204, 0.5, 0, 1, 0, 1, 1, '(ReferenceTable)'),
|
|
(6002, 1, 4002, 30, 0, 1, 1, 1, 1, '(ReferenceTable)'),
|
|
(6002, 2, 4002, 30, 0, 1, 1, 1, 1, '(ReferenceTable)'),
|
|
(6002, 3, 4110, 2, 0, 1, 2, 1, 1, '(ReferenceTable)'),
|
|
(6002, 4, 4111, 2, 0, 1, 2, 1, 1, '(ReferenceTable)'),
|
|
(6002, 5, 4112, 2, 0, 1, 2, 1, 1, '(ReferenceTable)'),
|
|
(6002, 6, 4208, 0.5, 0, 1, 3, 1, 1, '(ReferenceTable)'),
|
|
(6002, 7, 4209, 0.5, 0, 1, 3, 1, 1, '(ReferenceTable)'),
|
|
(6002, 8, 4210, 0.5, 0, 1, 3, 1, 1, '(ReferenceTable)'),
|
|
(6003, 33457, 0, 0, 0, 1, 1, 1, 1, 'Scroll of Agility VI'),
|
|
(6003, 33458, 0, 0, 0, 1, 1, 1, 1, 'Scroll of Intellect VI'),
|
|
(6003, 33459, 0, 0, 0, 1, 1, 1, 1, 'Scroll of Protection VI'),
|
|
(6003, 33460, 0, 0, 0, 1, 1, 1, 1, 'Scroll of Spirit VI'),
|
|
(6003, 33461, 0, 0, 0, 1, 1, 1, 1, 'Scroll of Stamina VI'),
|
|
(6003, 33462, 0, 0, 0, 1, 1, 1, 1, 'Scroll of Strength VI'),
|
|
(6010, 1, 4000, 30, 0, 1, 0, 1, 1, '(ReferenceTable)'),
|
|
(6010, 2, 4001, 30, 0, 1, 0, 1, 1, '(ReferenceTable)'),
|
|
(6010, 3, 4103, 2, 0, 1, 0, 1, 1, '(ReferenceTable)'),
|
|
(6010, 4, 4104, 2, 0, 1, 0, 1, 1, '(ReferenceTable)'),
|
|
(6010, 5, 4105, 2, 0, 1, 0, 1, 1, '(ReferenceTable)'),
|
|
(6010, 6, 4106, 2, 0, 1, 0, 1, 1, '(ReferenceTable)'),
|
|
(6010, 7, 4203, 0.5, 0, 1, 0, 1, 1, '(ReferenceTable)'),
|
|
(6010, 8, 4204, 0.5, 0, 1, 0, 1, 1, '(ReferenceTable)'),
|
|
(6010, 9, 4205, 0.5, 0, 1, 0, 1, 1, '(ReferenceTable)'),
|
|
(6010, 5760, 0, 0.5, 0, 1, 0, 1, 1, 'Eternium Lockbox'),
|
|
(10001, 27498, 0, 0, 0, 1, 1, 1, 1, 'Scroll of Agility V'),
|
|
(10001, 27499, 0, 0, 0, 1, 1, 1, 1, 'Scroll of Intellect V'),
|
|
(10001, 27500, 0, 0, 0, 1, 1, 1, 1, 'Scroll of Protection V'),
|
|
(10001, 27501, 0, 0, 0, 1, 1, 1, 1, 'Scroll of Spirit V'),
|
|
(10001, 27502, 0, 0, 0, 1, 1, 1, 1, 'Scroll of Stamina V'),
|
|
(10001, 27503, 0, 0, 0, 1, 1, 1, 1, 'Scroll of Strength V'),
|
|
(10002, 24669, 0, 0, 0, 1, 1, 1, 1, 'Eldr\'naan Belt'),
|
|
(10002, 24670, 0, 0, 0, 1, 1, 1, 1, 'Eldr\'naan Boots'),
|
|
(10002, 24671, 0, 0, 0, 1, 1, 1, 1, 'Eldr\'naan Jerkin'),
|
|
(10002, 24672, 0, 0, 0, 1, 1, 1, 1, 'Eldr\'naan Gloves'),
|
|
(10002, 24673, 0, 0, 0, 1, 1, 1, 1, 'Eldr\'naan Hood'),
|
|
(10002, 24674, 0, 0, 0, 1, 1, 1, 1, 'Eldr\'naan Pants'),
|
|
(10002, 24675, 0, 0, 0, 1, 1, 1, 1, 'Eldr\'naan Shoulderpads'),
|
|
(10002, 24676, 0, 0, 0, 1, 1, 1, 1, 'Eldr\'naan Bracelets'),
|
|
(10002, 24677, 0, 0, 0, 1, 1, 1, 1, 'Archmage Belt'),
|
|
(10002, 24678, 0, 0, 0, 1, 1, 1, 1, 'Archmage Slippers'),
|
|
(10002, 24679, 0, 0, 0, 1, 1, 1, 1, 'Archmage Robe'),
|
|
(10002, 24680, 0, 0, 0, 1, 1, 1, 1, 'Archmage Gloves'),
|
|
(10002, 24681, 0, 0, 0, 1, 1, 1, 1, 'Archmage Headpiece'),
|
|
(10002, 24682, 0, 0, 0, 1, 1, 1, 1, 'Archmage Pants'),
|
|
(10002, 24683, 0, 0, 0, 1, 1, 1, 1, 'Archmage Mantle'),
|
|
(10002, 24684, 0, 0, 0, 1, 1, 1, 1, 'Archmage Bracelets'),
|
|
(10002, 24781, 0, 0, 0, 1, 1, 1, 1, 'Murkblood Belt'),
|
|
(10002, 24783, 0, 0, 0, 1, 1, 1, 1, 'Murkblood Boots'),
|
|
(10002, 24784, 0, 0, 0, 1, 1, 1, 1, 'Murkblood Chestpiece'),
|
|
(10002, 24785, 0, 0, 0, 1, 1, 1, 1, 'Murkblood Gloves'),
|
|
(10002, 24786, 0, 0, 0, 1, 1, 1, 1, 'Murkblood Cover'),
|
|
(10002, 24787, 0, 0, 0, 1, 1, 1, 1, 'Murkblood Pants'),
|
|
(10002, 24788, 0, 0, 0, 1, 1, 1, 1, 'Murkblood Shoulderguards'),
|
|
(10002, 24789, 0, 0, 0, 1, 1, 1, 1, 'Murkblood Bracers'),
|
|
(10002, 24790, 0, 0, 0, 1, 1, 1, 1, 'Expedition Girdle'),
|
|
(10002, 24791, 0, 0, 0, 1, 1, 1, 1, 'Expedition Boots'),
|
|
(10002, 24792, 0, 0, 0, 1, 1, 1, 1, 'Expedition Tunic'),
|
|
(10002, 24793, 0, 0, 0, 1, 1, 1, 1, 'Expedition Gloves'),
|
|
(10002, 24794, 0, 0, 0, 1, 1, 1, 1, 'Expedition Hood'),
|
|
(10002, 24795, 0, 0, 0, 1, 1, 1, 1, 'Expedition Pants'),
|
|
(10002, 24796, 0, 0, 0, 1, 1, 1, 1, 'Expedition Shoulderguards'),
|
|
(10002, 24797, 0, 0, 0, 1, 1, 1, 1, 'Expedition Bracers'),
|
|
(10002, 24894, 0, 0, 0, 1, 1, 1, 1, 'Sundered Waistband'),
|
|
(10002, 24895, 0, 0, 0, 1, 1, 1, 1, 'Sundered Footwraps'),
|
|
(10002, 24896, 0, 0, 0, 1, 1, 1, 1, 'Sundered Chestpiece'),
|
|
(10002, 24897, 0, 0, 0, 1, 1, 1, 1, 'Sundered Gauntlets'),
|
|
(10002, 24898, 0, 0, 0, 1, 1, 1, 1, 'Sundered Helmet'),
|
|
(10002, 24899, 0, 0, 0, 1, 1, 1, 1, 'Sundered Legguards'),
|
|
(10002, 24900, 0, 0, 0, 1, 1, 1, 1, 'Sundered Spaulders'),
|
|
(10002, 24901, 0, 0, 0, 1, 1, 1, 1, 'Tortured Bracer'),
|
|
(10002, 24902, 0, 0, 0, 1, 1, 1, 1, 'Talhide Stitched-Belt'),
|
|
(10002, 24903, 0, 0, 0, 1, 1, 1, 1, 'Talhide Lined-Boots'),
|
|
(10002, 24904, 0, 0, 0, 1, 1, 1, 1, 'Talhide Chestpiece'),
|
|
(10002, 24905, 0, 0, 0, 1, 1, 1, 1, 'Talhide Lined-Gloves'),
|
|
(10002, 24906, 0, 0, 0, 1, 1, 1, 1, 'Talhide Helmet'),
|
|
(10002, 24907, 0, 0, 0, 1, 1, 1, 1, 'Talhide Lined-Leggings'),
|
|
(10002, 24908, 0, 0, 0, 1, 1, 1, 1, 'Talhide Shoulderguards'),
|
|
(10002, 24909, 0, 0, 0, 1, 1, 1, 1, 'Talhide Lined-Bracers'),
|
|
(10002, 25006, 0, 0, 0, 1, 1, 1, 1, 'Conqueror\'s Girdle'),
|
|
(10002, 25007, 0, 0, 0, 1, 1, 1, 1, 'Conqueror\'s Greaves'),
|
|
(10002, 25008, 0, 0, 0, 1, 1, 1, 1, 'Conqueror\'s Breastplate'),
|
|
(10002, 25009, 0, 0, 0, 1, 1, 1, 1, 'Conqueror\'s Gauntlets'),
|
|
(10002, 25010, 0, 0, 0, 1, 1, 1, 1, 'Conqueror\'s Helmet'),
|
|
(10002, 25011, 0, 0, 0, 1, 1, 1, 1, 'Conqueror\'s Legplates'),
|
|
(10002, 25012, 0, 0, 0, 1, 1, 1, 1, 'Conqueror\'s Epaulets'),
|
|
(10002, 25013, 0, 0, 0, 1, 1, 1, 1, 'Conqueror\'s Vambraces'),
|
|
(10002, 25014, 0, 0, 0, 1, 1, 1, 1, 'Shattered Hand Belt'),
|
|
(10002, 25015, 0, 0, 0, 1, 1, 1, 1, 'Shattered Hand Sabatons'),
|
|
(10002, 25016, 0, 0, 0, 1, 1, 1, 1, 'Shattered Hand Breastplate'),
|
|
(10002, 25017, 0, 0, 0, 1, 1, 1, 1, 'Shattered Hand Gauntlets'),
|
|
(10002, 25018, 0, 0, 0, 1, 1, 1, 1, 'Shattered Hand Helmet'),
|
|
(10002, 25019, 0, 0, 0, 1, 1, 1, 1, 'Shattered Hand Legplates'),
|
|
(10002, 25020, 0, 0, 0, 1, 1, 1, 1, 'Shattered Hand Epaulets'),
|
|
(10002, 25021, 0, 0, 0, 1, 1, 1, 1, 'Shattered Hand Vambraces'),
|
|
(10002, 25041, 0, 0, 0, 1, 1, 1, 1, 'Ambusher\'s Cloak'),
|
|
(10002, 25042, 0, 0, 0, 1, 1, 1, 1, 'Nether Cloak'),
|
|
(10002, 25055, 0, 0, 0, 1, 1, 1, 1, 'Alexandrite Ring'),
|
|
(10002, 25056, 0, 0, 0, 1, 1, 1, 1, 'Almandine Ring'),
|
|
(10002, 25069, 0, 0, 0, 1, 1, 1, 1, 'Epidote Stone Necklace'),
|
|
(10002, 25070, 0, 0, 0, 1, 1, 1, 1, 'Coral Beads'),
|
|
(10002, 25083, 0, 0, 0, 1, 1, 1, 1, 'Smouldering Shield'),
|
|
(10002, 25084, 0, 0, 0, 1, 1, 1, 1, 'Zeth\'Gor Shield'),
|
|
(10002, 25097, 0, 0, 0, 1, 1, 1, 1, 'Astralaan Orb'),
|
|
(10002, 25098, 0, 0, 0, 1, 1, 1, 1, 'Tuurik Torch'),
|
|
(10002, 25111, 0, 0, 0, 1, 1, 1, 1, 'Lionhead Dagger'),
|
|
(10002, 25112, 0, 0, 0, 1, 1, 1, 1, 'Fel Ripper'),
|
|
(10002, 25125, 0, 0, 0, 1, 1, 1, 1, 'Retro-Spike Club'),
|
|
(10002, 25126, 0, 0, 0, 1, 1, 1, 1, 'Anvilmar Hammer'),
|
|
(10002, 25139, 0, 0, 0, 1, 1, 1, 1, 'Algaz Battle Hammer'),
|
|
(10002, 25140, 0, 0, 0, 1, 1, 1, 1, 'Commanding Mallet'),
|
|
(10002, 25153, 0, 0, 0, 1, 1, 1, 1, 'Gladiator Greatblade'),
|
|
(10002, 25154, 0, 0, 0, 1, 1, 1, 1, 'Blood Groove Blade'),
|
|
(10002, 25167, 0, 0, 0, 1, 1, 1, 1, 'Nethersteel Claymore'),
|
|
(10002, 25168, 0, 0, 0, 1, 1, 1, 1, 'Sha\'tari Longsword'),
|
|
(10002, 25181, 0, 0, 0, 1, 1, 1, 1, 'Tapered Staff'),
|
|
(10002, 25182, 0, 0, 0, 1, 1, 1, 1, 'Crystal-Etched Warstaff'),
|
|
(10002, 25195, 0, 0, 0, 1, 1, 1, 1, 'Diamond Tipped Claws'),
|
|
(10002, 25196, 0, 0, 0, 1, 1, 1, 1, 'Boneshredder Claws'),
|
|
(10002, 25209, 0, 0, 0, 1, 1, 1, 1, 'Amani Tomahawk'),
|
|
(10002, 25210, 0, 0, 0, 1, 1, 1, 1, 'Double-Bladed Axe'),
|
|
(10002, 25223, 0, 0, 0, 1, 1, 1, 1, 'Windcaller Hatchet'),
|
|
(10002, 25224, 0, 0, 0, 1, 1, 1, 1, 'Slavemaster Axe'),
|
|
(10002, 25237, 0, 0, 0, 1, 1, 1, 1, 'Nether Trident'),
|
|
(10002, 25238, 0, 0, 0, 1, 1, 1, 1, 'Hellfire War Spear'),
|
|
(10002, 25251, 0, 0, 0, 1, 1, 1, 1, 'Orc Flatbow'),
|
|
(10002, 25252, 0, 0, 0, 1, 1, 1, 1, 'Dream Catcher Bow'),
|
|
(10002, 25265, 0, 0, 0, 1, 1, 1, 1, 'Barreled Crossbow'),
|
|
(10002, 25266, 0, 0, 0, 1, 1, 1, 1, 'Well-Balanced Crossbow'),
|
|
(10002, 25279, 0, 0, 0, 1, 1, 1, 1, 'Sen\'jin Longrifle'),
|
|
(10002, 25280, 0, 0, 0, 1, 1, 1, 1, 'Game Hunter Musket'),
|
|
(10002, 25293, 0, 0, 0, 1, 1, 1, 1, 'Draenethyst Wand'),
|
|
(10002, 25294, 0, 0, 0, 1, 1, 1, 1, 'Dragonscale Wand'),
|
|
(10002, 25307, 0, 0, 0, 1, 1, 1, 1, 'Shadow Dagger'),
|
|
(10002, 25308, 0, 0, 0, 1, 1, 1, 1, 'Thunder Spike'),
|
|
(10002, 25321, 0, 0, 0, 1, 1, 1, 1, 'Divine Hammer'),
|
|
(10002, 25322, 0, 0, 0, 1, 1, 1, 1, 'Lordly Scepter'),
|
|
(10002, 25335, 0, 0, 0, 1, 1, 1, 1, 'Feral Warp-Staff'),
|
|
(10002, 25336, 0, 0, 0, 1, 1, 1, 1, 'Splintering Greatstaff'),
|
|
(10002, 28542, 0, 0, 0, 1, 1, 1, 1, 'Heartseeker Knives'),
|
|
(10002, 28543, 0, 0, 0, 1, 1, 1, 1, 'Dreghood Throwing Axe'),
|
|
(10003, 27425, 0, 0, 0, 1, 1, 4, 12, 'Spotted Feltail'),
|
|
(10003, 27429, 0, 0, 0, 1, 1, 4, 11, 'Zangarian Sporefish'),
|
|
(10003, 27435, 0, 0, 0, 1, 1, 4, 11, 'Figluster\'s Mudfish'),
|
|
(10003, 27438, 0, 0, 0, 1, 1, 4, 11, 'Golden Darter'),
|
|
(10003, 27439, 0, 0, 0, 1, 1, 4, 6, 'Furious Crawdad'),
|
|
(10004, 27671, 0, 0, 0, 1, 1, 5, 16, 'Buzzard Meat'),
|
|
(10004, 27677, 0, 0, 0, 1, 1, 5, 16, 'Chunk o\' Basilisk'),
|
|
(10004, 27678, 0, 0, 0, 1, 1, 5, 15, 'Clefthoof Meat'),
|
|
(10004, 27681, 0, 0, 0, 1, 1, 5, 16, 'Warped Flesh'),
|
|
(10004, 27682, 0, 0, 0, 1, 1, 5, 16, 'Talbuk Venison'),
|
|
(10004, 31670, 0, 0, 0, 1, 1, 5, 16, 'Raptor Ribs'),
|
|
(10004, 31671, 0, 0, 0, 1, 1, 5, 16, 'Serpent Flesh'),
|
|
(10005, 23436, 0, 0, 0, 1, 2, 1, 1, 'Living Ruby'),
|
|
(10005, 23437, 0, 0, 0, 1, 2, 1, 1, 'Talasite'),
|
|
(10005, 23438, 0, 0, 0, 1, 2, 1, 1, 'Star of Elune'),
|
|
(10005, 23439, 0, 0, 0, 1, 2, 1, 1, 'Noble Topaz'),
|
|
(10005, 23440, 0, 0, 0, 1, 2, 1, 1, 'Dawnstone'),
|
|
(10005, 23441, 0, 0, 0, 1, 2, 1, 1, 'Nightseye'),
|
|
(10005, 32227, 0, 0.8, 0, 1, 1, 1, 1, 'Crimson Spinel'),
|
|
(10005, 32228, 0, 0.8, 0, 1, 1, 1, 1, 'Empyrean Sapphire'),
|
|
(10005, 32229, 0, 0.8, 0, 1, 1, 1, 1, 'Lionseye'),
|
|
(10005, 32230, 0, 0.8, 0, 1, 1, 1, 1, 'Shadowsong Amethyst'),
|
|
(10005, 32231, 0, 0.8, 0, 1, 1, 1, 1, 'Pyrestone'),
|
|
(10005, 32249, 0, 0.8, 0, 1, 1, 1, 1, 'Seaspray Emerald'),
|
|
(10006, 16253, 0, 0, 0, 1, 1, 1, 1, 'Formula: Enchant Chest - Greater Stats'),
|
|
(10006, 22532, 0, 0, 0, 1, 1, 1, 1, 'Formula: Enchant Bracer - Restore Mana Prime'),
|
|
(10006, 22540, 0, 0, 0, 1, 1, 1, 1, 'Formula: Enchant Shield - Shield Block'),
|
|
(10006, 22541, 0, 0, 0, 1, 1, 1, 1, 'Formula: Enchant Shield - Resistance'),
|
|
(10006, 22542, 0, 0, 0, 1, 1, 1, 1, 'Formula: Enchant Boots - Vitality'),
|
|
(10006, 22548, 0, 0, 0, 1, 1, 1, 1, 'Formula: Enchant Cloak - Major Resistance'),
|
|
(10006, 22553, 0, 0, 0, 1, 1, 1, 1, 'Formula: Enchant Weapon - Potency'),
|
|
(10006, 22557, 0, 0, 0, 1, 1, 1, 1, 'Formula: Enchant Weapon - Battlemaster'),
|
|
(10006, 22558, 0, 0, 0, 1, 1, 1, 1, 'Formula: Enchant Weapon - Spellsurge'),
|
|
(10006, 22903, 0, 0, 0, 1, 1, 1, 1, 'Recipe: Insane Strength Potion'),
|
|
(10006, 22912, 0, 0, 0, 1, 1, 1, 1, 'Recipe: Heroic Potion'),
|
|
(10006, 22913, 0, 0, 0, 1, 1, 1, 1, 'Recipe: Haste Potion'),
|
|
(10006, 22919, 0, 0, 0, 1, 1, 1, 1, 'Recipe: Elixir of Major Mageblood'),
|
|
(10006, 22926, 0, 0, 0, 1, 1, 1, 1, 'Recipe: Elixir of Empowerment'),
|
|
(10006, 23620, 0, 0, 0, 1, 1, 1, 1, 'Plans: Felfury Gauntlets'),
|
|
(10006, 23621, 0, 0, 0, 1, 1, 1, 1, 'Plans: Gauntlets of the Iron Tower'),
|
|
(10006, 23622, 0, 0, 0, 1, 1, 1, 1, 'Plans: Steelgrip Gauntlets'),
|
|
(10006, 23623, 0, 0, 0, 1, 1, 1, 1, 'Plans: Storm Helm'),
|
|
(10006, 23625, 0, 0, 0, 1, 1, 1, 1, 'Plans: Oathkeeper\'s Helm'),
|
|
(10006, 23626, 0, 0, 0, 1, 1, 1, 1, 'Plans: Black Felsteel Bracers'),
|
|
(10006, 23627, 0, 0, 0, 1, 1, 1, 1, 'Plans: Bracers of the Green Fortress'),
|
|
(10006, 23628, 0, 0, 0, 1, 1, 1, 1, 'Plans: Blessed Bracers'),
|
|
(10006, 23629, 0, 0, 0, 1, 1, 1, 1, 'Plans: Felsteel Longblade'),
|
|
(10006, 23630, 0, 0, 0, 1, 1, 1, 1, 'Plans: Khorium Champion'),
|
|
(10006, 23631, 0, 0, 0, 1, 1, 1, 1, 'Plans: Fel Edged Battleaxe'),
|
|
(10006, 23632, 0, 0, 0, 1, 1, 1, 1, 'Plans: Felsteel Reaper'),
|
|
(10006, 23633, 0, 0, 0, 1, 1, 1, 1, 'Plans: Runic Hammer'),
|
|
(10006, 23634, 0, 0, 0, 1, 1, 1, 1, 'Plans: Fel Hardened Maul'),
|
|
(10006, 23635, 0, 0, 0, 1, 1, 1, 1, 'Plans: Eternium Runed Blade'),
|
|
(10006, 23636, 0, 0, 0, 1, 1, 1, 1, 'Plans: Dirge'),
|
|
(10006, 23802, 0, 0, 0, 1, 1, 1, 1, 'Schematic: Ornate Khorium Rifle'),
|
|
(10006, 23804, 0, 0, 0, 1, 1, 1, 1, 'Schematic: Power Amplification Goggles'),
|
|
(10006, 23810, 0, 0, 0, 1, 1, 1, 1, 'Schematic: Crashin\' Thrashin\' Robot'),
|
|
(10006, 23883, 0, 0, 0, 1, 1, 1, 1, 'Schematic: Healing Potion Injector'),
|
|
(10006, 23884, 0, 0, 0, 1, 1, 1, 1, 'Schematic: Mana Potion Injector'),
|
|
(10006, 24164, 0, 0, 0, 1, 1, 1, 1, 'Design: Delicate Eternium Ring'),
|
|
(10006, 24165, 0, 0, 0, 1, 1, 1, 1, 'Design: Blazing Eternium Band'),
|
|
(10006, 24166, 0, 0, 0, 1, 1, 1, 1, 'Design: Thick Felsteel Necklace'),
|
|
(10006, 24167, 0, 0, 0, 1, 1, 1, 1, 'Design: Living Ruby Pendant'),
|
|
(10006, 24168, 0, 0, 0, 1, 1, 1, 1, 'Design: Braided Eternium Chain'),
|
|
(10006, 24169, 0, 0, 0, 1, 1, 1, 1, 'Design: Eye of the Night'),
|
|
(10006, 24171, 0, 0, 0, 1, 1, 1, 1, 'Design: Chain of the Twilight Owl'),
|
|
(10006, 24296, 0, 0, 0, 1, 1, 1, 1, 'Pattern: Unyielding Bracers'),
|
|
(10006, 24297, 0, 0, 0, 1, 1, 1, 1, 'Pattern: Bracers of Havok'),
|
|
(10006, 24298, 0, 0, 0, 1, 1, 1, 1, 'Pattern: Blackstrike Bracers'),
|
|
(10006, 24299, 0, 0, 0, 1, 1, 1, 1, 'Pattern: Cloak of the Black Void'),
|
|
(10006, 24300, 0, 0, 0, 1, 1, 1, 1, 'Pattern: Cloak of Eternity'),
|
|
(10006, 24301, 0, 0, 0, 1, 1, 1, 1, 'Pattern: White Remedy Cape'),
|
|
(10006, 24302, 0, 0, 0, 1, 1, 1, 1, 'Pattern: Unyielding Girdle'),
|
|
(10006, 24303, 0, 0, 0, 1, 1, 1, 1, 'Pattern: Girdle of Ruination'),
|
|
(10006, 24305, 0, 0, 0, 1, 1, 1, 1, 'Pattern: Resolute Cape'),
|
|
(10006, 25887, 0, 0, 0, 1, 1, 1, 1, 'Schematic: Purple Smoke Flare'),
|
|
(10006, 28270, 0, 0, 0, 1, 1, 1, 1, 'Formula: Enchant Chest - Major Resilience'),
|
|
(10006, 28280, 0, 0, 0, 1, 1, 1, 1, 'Formula: Enchant Boots - Boar\'s Speed'),
|
|
(10006, 29723, 0, 0, 0, 1, 1, 1, 1, 'Pattern: Cobrascale Hood'),
|
|
(10006, 29724, 0, 0, 0, 1, 1, 1, 1, 'Pattern: Cobrascale Gloves'),
|
|
(10006, 29725, 0, 0, 0, 1, 1, 1, 1, 'Pattern: Windscale Hood'),
|
|
(10006, 29726, 0, 0, 0, 1, 1, 1, 1, 'Pattern: Hood of Primal Life'),
|
|
(10006, 29727, 0, 0, 0, 1, 1, 1, 1, 'Pattern: Gloves of the Living Touch'),
|
|
(10006, 29728, 0, 0, 0, 1, 1, 1, 1, 'Pattern: Windslayer Wraps'),
|
|
(10006, 29729, 0, 0, 0, 1, 1, 1, 1, 'Pattern: Living Dragonscale Helm'),
|
|
(10006, 29730, 0, 0, 0, 1, 1, 1, 1, 'Pattern: Earthen Netherscale Boots'),
|
|
(10006, 29731, 0, 0, 0, 1, 1, 1, 1, 'Pattern: Windstrike Gloves'),
|
|
(10006, 29732, 0, 0, 0, 1, 1, 1, 1, 'Pattern: Netherdrake Helm'),
|
|
(10006, 29733, 0, 0, 0, 1, 1, 1, 1, 'Pattern: Netherdrake Gloves'),
|
|
(10006, 29734, 0, 0, 0, 1, 1, 1, 1, 'Pattern: Thick Netherscale Breastplate'),
|
|
(10006, 31875, 0, 0, 0, 1, 1, 1, 1, 'Design: Great Dawnstone'),
|
|
(10006, 31876, 0, 0, 0, 1, 1, 1, 1, 'Design: Balanced Nightseye'),
|
|
(10006, 31877, 0, 0, 0, 1, 1, 1, 1, 'Design: Infused Nightseye'),
|
|
(10006, 33186, 0, 0, 0, 1, 1, 1, 1, 'Plans: Adamantite Weapon Chain'),
|
|
(10006, 33954, 0, 0, 0, 1, 1, 1, 1, 'Plans: Hammer of Righteous Might'),
|
|
(10007, 30319, 0, 0, 0, 1, 1, 200, 200, 'Nether Spike'),
|
|
(10008, 36919, 0, 0, 0, 1, 1, 1, 1, 'Cardinal Ruby'),
|
|
(10008, 36922, 0, 0, 0, 1, 1, 1, 1, 'King\'s Amber'),
|
|
(10008, 36925, 0, 0, 0, 1, 1, 1, 1, 'Majestic Zircon'),
|
|
(10008, 36928, 0, 0, 0, 1, 1, 1, 1, 'Dreadstone'),
|
|
(10008, 36931, 0, 0, 0, 1, 1, 1, 1, 'Ametrine'),
|
|
(10008, 36934, 0, 0, 0, 1, 1, 1, 1, 'Eye of Zul'),
|
|
(10009, 37759, 0, 0, 0, 1, 1, 1, 1, 'Rhie-ay\'s Clutching Gauntlets'),
|
|
(10009, 37760, 0, 0, 0, 1, 1, 1, 1, 'Cracklefire Wristguards'),
|
|
(10009, 37768, 0, 0, 0, 1, 1, 1, 1, 'Leggings of Violent Exsanguination'),
|
|
(10009, 37769, 0, 0, 0, 1, 1, 1, 1, 'Gnarled Shovelhorn Spaulders'),
|
|
(10009, 37770, 0, 0, 0, 1, 1, 1, 1, 'Bulge-Concealing Breastplate'),
|
|
(10009, 37780, 0, 0, 0, 1, 1, 1, 1, 'Condor-Bone Chestguard'),
|
|
(10009, 37790, 0, 0, 0, 1, 1, 1, 1, 'Belt of Crystalline Tears'),
|
|
(10009, 37792, 0, 0, 0, 1, 1, 1, 1, 'Agin\'s Crushing Carapace'),
|
|
(10009, 37793, 0, 0, 0, 1, 1, 1, 1, 'Skullcage of Eternal Terror'),
|
|
(10009, 37797, 0, 0, 0, 1, 1, 1, 1, 'Cloak of the Agile Mind'),
|
|
(10009, 37806, 0, 0, 0, 1, 1, 1, 1, 'Zabra\'s Misplaced Staff'),
|
|
(10009, 37808, 0, 0, 0, 1, 1, 1, 1, 'Dragonjaw Mauler'),
|
|
(10009, 37809, 0, 0, 0, 1, 1, 1, 1, 'Roc-Feather Longbow'),
|
|
(10009, 37822, 0, 0, 0, 1, 1, 1, 1, 'Twisted Puzzle-Ring'),
|
|
(10009, 37823, 0, 0, 0, 1, 1, 1, 1, 'Draconic Choker of Ferocity'),
|
|
(10009, 41777, 0, 0, 0, 1, 1, 1, 1, 'Design: Etched Monarch Topaz'),
|
|
(10009, 41778, 0, 0, 0, 1, 1, 1, 1, 'Design: Resolute Monarch Topaz'),
|
|
(10009, 41779, 0, 0, 0, 1, 1, 1, 1, 'Design: Stalwart Monarch Topaz'),
|
|
(10009, 41780, 0, 0, 0, 1, 1, 1, 1, 'Design: Champion\'s Monarch Topaz'),
|
|
(10009, 41781, 0, 0, 0, 1, 1, 1, 1, 'Design: Misty Forest Emerald'),
|
|
(10009, 41782, 0, 0, 0, 1, 1, 1, 1, 'Design: Shining Forest Emerald'),
|
|
(10009, 41783, 0, 0, 0, 1, 1, 1, 1, 'Design: Purified Twilight Opal'),
|
|
(10009, 41784, 0, 0, 0, 1, 1, 1, 1, 'Design: Sovereign Twilight Opal'),
|
|
(10009, 41785, 0, 0, 0, 1, 1, 1, 1, 'Design: Tenuous Twilight Opal'),
|
|
(10009, 41786, 0, 0, 0, 1, 1, 1, 1, 'Design: Destructive Skyflare Diamond'),
|
|
(10009, 41787, 0, 0, 0, 1, 1, 1, 1, 'Design: Thundering Skyflare Diamond'),
|
|
(10009, 41788, 0, 0, 0, 1, 1, 1, 1, 'Design: Beaming Earthsiege Diamond'),
|
|
(10009, 41789, 0, 0, 0, 1, 1, 1, 1, 'Design: Inscribed Monarch Topaz'),
|
|
(10009, 45912, 0, 0, 0, 1, 1, 1, 1, 'Book of Glyph Mastery'),
|
|
(10010, 36917, 0, 12, 0, 1, 1, 1, 1, 'Bloodstone'),
|
|
(10010, 36918, 0, 4, 0, 1, 1, 1, 1, 'Scarlet Ruby'),
|
|
(10010, 36920, 0, 12, 0, 1, 1, 1, 1, 'Sun Crystal'),
|
|
(10010, 36921, 0, 5, 0, 1, 1, 1, 1, 'Autumn\'s Glow'),
|
|
(10010, 36923, 0, 12, 0, 1, 1, 1, 1, 'Chalcedony'),
|
|
(10010, 36924, 0, 5, 0, 1, 1, 1, 1, 'Sky Sapphire'),
|
|
(10010, 36926, 0, 12, 0, 1, 1, 1, 1, 'Shadow Crystal'),
|
|
(10010, 36927, 0, 4, 0, 1, 1, 1, 1, 'Twilight Opal'),
|
|
(10010, 36929, 0, 12, 0, 1, 1, 1, 1, 'Huge Citrine'),
|
|
(10010, 36930, 0, 5, 0, 1, 1, 1, 1, 'Monarch Topaz'),
|
|
(10010, 36932, 0, 12, 0, 1, 1, 1, 1, 'Dark Jade'),
|
|
(10010, 36933, 0, 5, 0, 1, 1, 1, 1, 'Forest Emerald'),
|
|
(10011, 36019, 0, 0, 0, 1, 1, 1, 1, 'Aerie Belt'),
|
|
(10011, 36020, 0, 0, 0, 1, 1, 1, 1, 'Aerie Boots'),
|
|
(10011, 36021, 0, 0, 0, 1, 1, 1, 1, 'Aerie Robe'),
|
|
(10011, 36022, 0, 0, 0, 1, 1, 1, 1, 'Aerie Gloves'),
|
|
(10011, 36023, 0, 0, 0, 1, 1, 1, 1, 'Aerie Headpiece'),
|
|
(10011, 36024, 0, 0, 0, 1, 1, 1, 1, 'Aerie Pants'),
|
|
(10011, 36025, 0, 0, 0, 1, 1, 1, 1, 'Aerie Shoulderpads'),
|
|
(10011, 36026, 0, 0, 0, 1, 1, 1, 1, 'Aerie Bracers'),
|
|
(10011, 36027, 0, 0, 0, 1, 1, 1, 1, 'Oracle Belt'),
|
|
(10011, 36028, 0, 0, 0, 1, 1, 1, 1, 'Oracle Slippers'),
|
|
(10011, 36029, 0, 0, 0, 1, 1, 1, 1, 'Oracle Robe'),
|
|
(10011, 36030, 0, 0, 0, 1, 1, 1, 1, 'Oracle Gloves'),
|
|
(10011, 36031, 0, 0, 0, 1, 1, 1, 1, 'Oracle Circlet'),
|
|
(10011, 36032, 0, 0, 0, 1, 1, 1, 1, 'Oracle Leggings'),
|
|
(10011, 36033, 0, 0, 0, 1, 1, 1, 1, 'Oracle Mantle'),
|
|
(10011, 36034, 0, 0, 0, 1, 1, 1, 1, 'Oracle Bracelets'),
|
|
(10011, 36035, 0, 0, 0, 1, 1, 1, 1, 'Condor Belt'),
|
|
(10011, 36036, 0, 0, 0, 1, 1, 1, 1, 'Condor Sandals'),
|
|
(10011, 36037, 0, 0, 0, 1, 1, 1, 1, 'Condor Robe'),
|
|
(10011, 36038, 0, 0, 0, 1, 1, 1, 1, 'Condor Gloves'),
|
|
(10011, 36039, 0, 0, 0, 1, 1, 1, 1, 'Condor Headpiece'),
|
|
(10011, 36040, 0, 0, 0, 1, 1, 1, 1, 'Condor Pants'),
|
|
(10011, 36041, 0, 0, 0, 1, 1, 1, 1, 'Condor Shoulderpads'),
|
|
(10011, 36042, 0, 0, 0, 1, 1, 1, 1, 'Condor Bindings'),
|
|
(10011, 36131, 0, 0, 0, 1, 1, 1, 1, 'Wolverine Girdle'),
|
|
(10011, 36132, 0, 0, 0, 1, 1, 1, 1, 'Wolverine Boots'),
|
|
(10011, 36133, 0, 0, 0, 1, 1, 1, 1, 'Wolverine Jerkin'),
|
|
(10011, 36134, 0, 0, 0, 1, 1, 1, 1, 'Wolverine Gloves'),
|
|
(10011, 36135, 0, 0, 0, 1, 1, 1, 1, 'Wolverine Cap'),
|
|
(10011, 36136, 0, 0, 0, 1, 1, 1, 1, 'Wolverine Leggings'),
|
|
(10011, 36137, 0, 0, 0, 1, 1, 1, 1, 'Wolverine Shoulderguards'),
|
|
(10011, 36138, 0, 0, 0, 1, 1, 1, 1, 'Wolverine Armguards'),
|
|
(10011, 36139, 0, 0, 0, 1, 1, 1, 1, 'Ghrino Belt'),
|
|
(10011, 36140, 0, 0, 0, 1, 1, 1, 1, 'Ghrino Boots'),
|
|
(10011, 36141, 0, 0, 0, 1, 1, 1, 1, 'Ghrino Vest'),
|
|
(10011, 36142, 0, 0, 0, 1, 1, 1, 1, 'Ghrino Gloves'),
|
|
(10011, 36143, 0, 0, 0, 1, 1, 1, 1, 'Ghrino Cover'),
|
|
(10011, 36144, 0, 0, 0, 1, 1, 1, 1, 'Ghrino Britches'),
|
|
(10011, 36145, 0, 0, 0, 1, 1, 1, 1, 'Ghrino Pauldrons'),
|
|
(10011, 36146, 0, 0, 0, 1, 1, 1, 1, 'Ghrino Bracers'),
|
|
(10011, 36147, 0, 0, 0, 1, 1, 1, 1, 'Pygmy Belt'),
|
|
(10011, 36148, 0, 0, 0, 1, 1, 1, 1, 'Pygmy Boots'),
|
|
(10011, 36149, 0, 0, 0, 1, 1, 1, 1, 'Pygmy Tunic'),
|
|
(10011, 36150, 0, 0, 0, 1, 1, 1, 1, 'Pygmy Gloves'),
|
|
(10011, 36151, 0, 0, 0, 1, 1, 1, 1, 'Pygmy Helmet'),
|
|
(10011, 36152, 0, 0, 0, 1, 1, 1, 1, 'Pygmy Pants'),
|
|
(10011, 36153, 0, 0, 0, 1, 1, 1, 1, 'Pygmy Shoulders'),
|
|
(10011, 36154, 0, 0, 0, 1, 1, 1, 1, 'Pygmy Bindings'),
|
|
(10011, 36243, 0, 0, 0, 1, 1, 1, 1, 'Mammoth Girdle'),
|
|
(10011, 36244, 0, 0, 0, 1, 1, 1, 1, 'Mammoth Boots'),
|
|
(10011, 36245, 0, 0, 0, 1, 1, 1, 1, 'Mammoth Chestpiece'),
|
|
(10011, 36246, 0, 0, 0, 1, 1, 1, 1, 'Mammoth Fists'),
|
|
(10011, 36247, 0, 0, 0, 1, 1, 1, 1, 'Mammoth Helm'),
|
|
(10011, 36248, 0, 0, 0, 1, 1, 1, 1, 'Mammoth Legwraps'),
|
|
(10011, 36249, 0, 0, 0, 1, 1, 1, 1, 'Mammoth Spaulders'),
|
|
(10011, 36250, 0, 0, 0, 1, 1, 1, 1, 'Mammoth Bindings'),
|
|
(10011, 36251, 0, 0, 0, 1, 1, 1, 1, 'Wolvar Belt'),
|
|
(10011, 36252, 0, 0, 0, 1, 1, 1, 1, 'Wolvar Greaves'),
|
|
(10011, 36253, 0, 0, 0, 1, 1, 1, 1, 'Wolvar Armor'),
|
|
(10011, 36254, 0, 0, 0, 1, 1, 1, 1, 'Wolvar Fists'),
|
|
(10011, 36255, 0, 0, 0, 1, 1, 1, 1, 'Wolvar Helmet'),
|
|
(10011, 36256, 0, 0, 0, 1, 1, 1, 1, 'Wolvar Legguards'),
|
|
(10011, 36257, 0, 0, 0, 1, 1, 1, 1, 'Wolvar Shoulderguards'),
|
|
(10011, 36258, 0, 0, 0, 1, 1, 1, 1, 'Wolvar Bindings'),
|
|
(10011, 36259, 0, 0, 0, 1, 1, 1, 1, 'Cormorant Waistband'),
|
|
(10011, 36260, 0, 0, 0, 1, 1, 1, 1, 'Cormorant Footwraps'),
|
|
(10011, 36261, 0, 0, 0, 1, 1, 1, 1, 'Cormorant Chain Vest'),
|
|
(10011, 36262, 0, 0, 0, 1, 1, 1, 1, 'Cormorant Gloves'),
|
|
(10011, 36263, 0, 0, 0, 1, 1, 1, 1, 'Cormorant Helm'),
|
|
(10011, 36264, 0, 0, 0, 1, 1, 1, 1, 'Cormorant Leggings'),
|
|
(10011, 36265, 0, 0, 0, 1, 1, 1, 1, 'Cormorant Mantle'),
|
|
(10011, 36266, 0, 0, 0, 1, 1, 1, 1, 'Cormorant Bracelets'),
|
|
(10011, 36355, 0, 0, 0, 1, 1, 1, 1, 'Frostpaw Belt'),
|
|
(10011, 36356, 0, 0, 0, 1, 1, 1, 1, 'Frostpaw Greaves'),
|
|
(10011, 36357, 0, 0, 0, 1, 1, 1, 1, 'Frostpaw Armor'),
|
|
(10011, 36358, 0, 0, 0, 1, 1, 1, 1, 'Frostpaw Gauntlets'),
|
|
(10011, 36359, 0, 0, 0, 1, 1, 1, 1, 'Frostpaw Helmet'),
|
|
(10011, 36360, 0, 0, 0, 1, 1, 1, 1, 'Frostpaw Legguards'),
|
|
(10011, 36361, 0, 0, 0, 1, 1, 1, 1, 'Frostpaw Epaulets'),
|
|
(10011, 36362, 0, 0, 0, 1, 1, 1, 1, 'Frostpaw Vambraces'),
|
|
(10011, 36363, 0, 0, 0, 1, 1, 1, 1, 'Magnataur Girdle'),
|
|
(10011, 36364, 0, 0, 0, 1, 1, 1, 1, 'Magnataur Sabatons'),
|
|
(10011, 36365, 0, 0, 0, 1, 1, 1, 1, 'Magnataur Breastplate'),
|
|
(10011, 36366, 0, 0, 0, 1, 1, 1, 1, 'Magnataur Gauntlets'),
|
|
(10011, 36367, 0, 0, 0, 1, 1, 1, 1, 'Magnataur Helm'),
|
|
(10011, 36368, 0, 0, 0, 1, 1, 1, 1, 'Magnataur Legplates'),
|
|
(10011, 36369, 0, 0, 0, 1, 1, 1, 1, 'Magnataur Pauldrons'),
|
|
(10011, 36370, 0, 0, 0, 1, 1, 1, 1, 'Magnataur Bracers'),
|
|
(10011, 36371, 0, 0, 0, 1, 1, 1, 1, 'Kraken Girdle'),
|
|
(10011, 36372, 0, 0, 0, 1, 1, 1, 1, 'Kraken Greaves'),
|
|
(10011, 36373, 0, 0, 0, 1, 1, 1, 1, 'Kraken Breastplate'),
|
|
(10011, 36374, 0, 0, 0, 1, 1, 1, 1, 'Kraken Gauntlets'),
|
|
(10011, 36375, 0, 0, 0, 1, 1, 1, 1, 'Kraken Helm'),
|
|
(10011, 36376, 0, 0, 0, 1, 1, 1, 1, 'Kraken Legplates'),
|
|
(10011, 36377, 0, 0, 0, 1, 1, 1, 1, 'Kraken Epaulets'),
|
|
(10011, 36378, 0, 0, 0, 1, 1, 1, 1, 'Kraken Vambraces'),
|
|
(10011, 36411, 0, 0, 0, 1, 1, 1, 1, 'Brawler\'s Cape'),
|
|
(10011, 36412, 0, 0, 0, 1, 1, 1, 1, 'Fleece Cloak'),
|
|
(10011, 36425, 0, 0, 0, 1, 1, 1, 1, 'Gold Twisted Ring'),
|
|
(10011, 36426, 0, 0, 0, 1, 1, 1, 1, 'Stirrup Ring'),
|
|
(10011, 36427, 0, 0, 0, 1, 1, 1, 1, 'Engraved Ring'),
|
|
(10011, 36439, 0, 0, 0, 1, 1, 1, 1, 'Serpentine Chain'),
|
|
(10011, 36441, 0, 0, 0, 1, 1, 1, 1, 'Pearl Woven Choker'),
|
|
(10011, 36453, 0, 0, 0, 1, 1, 1, 1, 'Embossed Brazen Shield'),
|
|
(10011, 36455, 0, 0, 0, 1, 1, 1, 1, 'Plated Bulwark'),
|
|
(10011, 36524, 0, 0, 0, 1, 1, 1, 1, 'Primitive Scimitar'),
|
|
(10011, 36537, 0, 0, 0, 1, 1, 1, 1, 'Fur-Grip Broadsword'),
|
|
(10011, 36567, 0, 0, 0, 1, 1, 1, 1, 'Six-Fingered Claws'),
|
|
(10011, 36580, 0, 0, 0, 1, 1, 1, 1, 'Dire Axe'),
|
|
(10011, 36595, 0, 0, 0, 1, 1, 1, 1, 'Planate Broadaxe'),
|
|
(10011, 36663, 0, 0, 0, 1, 1, 1, 1, 'Ancient Wand'),
|
|
(10011, 36664, 0, 0, 0, 1, 1, 1, 1, 'Chilled Wand'),
|
|
(10011, 36677, 0, 0, 0, 1, 1, 1, 1, 'Levitating Dagger'),
|
|
(10011, 36678, 0, 0, 0, 1, 1, 1, 1, 'Runed Talon'),
|
|
(10011, 36679, 0, 0, 0, 1, 1, 1, 1, 'Singing Dagger'),
|
|
(10011, 36691, 0, 0, 0, 1, 1, 1, 1, 'Dignified Hammer'),
|
|
(10011, 36693, 0, 0, 0, 1, 1, 1, 1, 'Serene Hammer'),
|
|
(10011, 36720, 0, 0, 0, 1, 1, 1, 1, 'Flying Knives'),
|
|
(10012, 36918, 0, 0, 0, 1, 1, 1, 2, 'Scarlet Ruby'),
|
|
(10012, 36921, 0, 0, 0, 1, 1, 1, 2, 'Autumn\'s Glow'),
|
|
(10012, 36924, 0, 0, 0, 1, 1, 1, 1, 'Sky Sapphire'),
|
|
(10012, 36927, 0, 0, 0, 1, 1, 1, 1, 'Twilight Opal'),
|
|
(10012, 36930, 0, 0, 0, 1, 1, 1, 2, 'Monarch Topaz'),
|
|
(10012, 36933, 0, 0, 0, 1, 1, 1, 1, 'Forest Emerald'),
|
|
(10013, 45862, 0, 13, 0, 1, 1, 1, 1, 'Bold Stormjewel'),
|
|
(10013, 45879, 0, 19, 0, 1, 1, 1, 1, 'Delicate Stormjewel'),
|
|
(10013, 45880, 0, 19, 0, 1, 1, 1, 1, 'Solid Stormjewel'),
|
|
(10013, 45881, 0, 5, 0, 1, 1, 1, 1, 'Sparkling Stormjewel'),
|
|
(10013, 45882, 0, 6, 0, 1, 1, 1, 1, 'Brilliant Stormjewel'),
|
|
(10013, 45883, 0, 26, 0, 1, 1, 1, 1, 'Runed Stormjewel'),
|
|
(10013, 45987, 0, 12, 0, 1, 1, 1, 1, 'Rigid Stormjewel'),
|
|
(10014, 36428, 0, 11, 0, 1, 1, 1, 1, 'Bouquet Ring'),
|
|
(10014, 36429, 0, 11, 0, 1, 1, 1, 1, 'Spur Ring'),
|
|
(10014, 36430, 0, 13, 0, 1, 1, 1, 1, 'Puzzle Ring'),
|
|
(10014, 36442, 0, 7, 0, 1, 1, 1, 1, 'Silken Cord Amulet'),
|
|
(10014, 36443, 0, 5, 0, 1, 1, 1, 1, 'Platinum Medallion'),
|
|
(10014, 36444, 0, 5, 0, 1, 1, 1, 1, 'Ice Encrusted Amulet'),
|
|
(10014, 45859, 0, 3, 0, 1, 1, 1, 1, 'The 5 Ring'),
|
|
(10014, 45994, 0, 26, 0, 1, 1, 1, 1, 'Lost Ring'),
|
|
(10014, 45995, 0, 19, 0, 1, 1, 1, 1, 'Forgotten Necklace'),
|
|
(10015, 36919, 0, 0, 0, 1, 1, 1, 1, 'Cardinal Ruby'),
|
|
(10015, 36922, 0, 0, 0, 1, 1, 1, 1, 'King\'s Amber'),
|
|
(10015, 36925, 0, 0, 0, 1, 1, 1, 1, 'Majestic Zircon'),
|
|
(10015, 36928, 0, 0, 0, 1, 1, 1, 1, 'Dreadstone'),
|
|
(10015, 36931, 0, 0, 0, 1, 1, 1, 1, 'Ametrine'),
|
|
(10015, 36934, 0, 0, 0, 1, 1, 1, 1, 'Eye of Zul'),
|
|
(10016, 19971, 0, 0.25, 0, 1, 0, 1, 1, 'High Test Eternium Fishing Line'),
|
|
(10016, 33820, 0, 0.5, 0, 1, 0, 1, 1, 'Weather-Beaten Fishing Hat'),
|
|
(10016, 34834, 0, 0.35, 0, 1, 0, 1, 1, 'Recipe: Captain Rumsey\'s Lager'),
|
|
(10016, 36783, 0, 5, 0, 1, 1, 1, 3, 'Northsea Pearl'),
|
|
(10016, 36784, 0, 1.75, 0, 1, 0, 1, 1, 'Siren\'s Tear'),
|
|
(10016, 44983, 0, 0.5, 0, 1, 0, 1, 1, 'Strand Crawler'),
|
|
(10016, 45984, 0, 2.5, 0, 1, 1, 1, 1, 'Unusual Compass'),
|
|
(10016, 45986, 0, 0.1, 0, 1, 0, 1, 1, 'Tiny Titanium Lockbox'),
|
|
(10016, 45991, 0, 0.2, 0, 1, 0, 1, 1, 'Bone Fishing Pole'),
|
|
(10016, 45992, 0, 0.2, 0, 1, 0, 1, 1, 'Jeweled Fishing Pole'),
|
|
(10016, 46004, 0, 2.5, 0, 1, 1, 1, 1, 'Sealed Vial of Poison'),
|
|
(10016, 48679, 0, 1, 0, 1, 0, 1, 1, 'Waterlogged Recipe'),
|
|
(10017, 6522, 0, 27, 0, 1, 1, 2, 4, 'Deviate Fish'),
|
|
(10017, 8827, 0, 14.5, 0, 1, 1, 2, 3, 'Elixir of Water Walking'),
|
|
(10017, 33448, 0, 6.5, 0, 1, 1, 1, 2, 'Runic Mana Potion'),
|
|
(10017, 40195, 0, 25, 0, 1, 1, 3, 5, 'Pygmy Oil'),
|
|
(10017, 46006, 0, 14.5, 0, 1, 1, 1, 1, 'Glow Worm'),
|
|
(10018, 45861, 0, 4, 0, 1, 1, 1, 1, 'Diamond-tipped Cane'),
|
|
(10018, 45977, 0, 2, 0, 1, 1, 1, 1, 'Porcelain Bell'),
|
|
(10018, 45978, 0, 7, 0, 1, 1, 2, 5, 'Solid Gold Coin'),
|
|
(10018, 45979, 0, 3.5, 0, 1, 1, 1, 1, 'Tower Key'),
|
|
(10018, 45980, 0, 3.5, 0, 1, 1, 1, 1, 'Whale Statue'),
|
|
(10018, 45981, 0, 4, 0, 1, 1, 1, 1, 'New Age Painting'),
|
|
(10018, 45998, 0, 3.5, 0, 1, 1, 1, 1, 'Battered Jungle Hat'),
|
|
(10018, 45999, 0, 4.5, 0, 1, 1, 1, 3, 'Worthless Piece of White Glass'),
|
|
(10018, 46000, 0, 4.5, 0, 1, 1, 1, 3, 'Worthless Piece of Red Glass'),
|
|
(10018, 46001, 0, 4, 0, 1, 1, 1, 3, 'Worthless Piece of Green Glass'),
|
|
(10018, 46002, 0, 4.5, 0, 1, 1, 1, 3, 'Worthless Piece of Violet Glass'),
|
|
(10018, 46003, 0, 4, 0, 1, 1, 1, 3, 'Worthless Piece of Orange Glass'),
|
|
(10018, 46023, 0, 0.5, 0, 1, 1, 1, 3, 'A Steamy Romance Novel: Northern Exposure'),
|
|
(10018, 46359, 0, 4.5, 0, 1, 1, 1, 1, 'Velociraptor Skull'),
|
|
(10018, 46360, 0, 0.6, 0, 1, 1, 1, 3, 'Stuffed Shark Head'),
|
|
(10018, 46361, 0, 4, 0, 1, 1, 2, 2, 'Crafted Star'),
|
|
(10018, 54469, 0, 5, 0, 1, 3, 1, 1, 'Blank Slate'),
|
|
(10019, 45862, 0, 0, 0, 1, 1, 1, 1, 'Bold Stormjewel'),
|
|
(10019, 45879, 0, 0, 0, 1, 1, 1, 1, 'Delicate Stormjewel'),
|
|
(10019, 45880, 0, 0, 0, 1, 1, 1, 1, 'Solid Stormjewel'),
|
|
(10019, 45881, 0, 0, 0, 1, 1, 1, 1, 'Sparkling Stormjewel'),
|
|
(10019, 45882, 0, 0, 0, 1, 1, 1, 1, 'Brilliant Stormjewel'),
|
|
(10019, 45883, 0, 0, 0, 1, 1, 1, 1, 'Runed Stormjewel'),
|
|
(10019, 45987, 0, 0, 0, 1, 1, 1, 1, 'Rigid Stormjewel'),
|
|
(10020, 20388, 0, 0, 0, 1, 1, 4, 6, 'Lollipop'),
|
|
(10020, 20389, 0, 0, 0, 1, 1, 4, 6, 'Candy Corn'),
|
|
(10020, 20390, 0, 0, 0, 1, 1, 4, 6, 'Candy Bar'),
|
|
(10020, 20391, 0, 0, 0, 1, 1, 1, 1, 'Flimsy Male Gnome Mask'),
|
|
(10020, 20392, 0, 0, 0, 1, 1, 1, 1, 'Flimsy Female Gnome Mask'),
|
|
(10020, 20397, 0, 0, 0, 1, 1, 1, 1, 'Hallowed Wand - Pirate'),
|
|
(10020, 20398, 0, 0, 0, 1, 1, 1, 1, 'Hallowed Wand - Ninja'),
|
|
(10020, 20399, 0, 0, 0, 1, 1, 1, 1, 'Hallowed Wand - Leper Gnome'),
|
|
(10020, 20409, 0, 0, 0, 1, 1, 1, 1, 'Hallowed Wand - Ghost'),
|
|
(10020, 20410, 0, 0, 0, 1, 1, 1, 1, 'Hallowed Wand - Bat'),
|
|
(10020, 20411, 0, 0, 0, 1, 1, 1, 1, 'Hallowed Wand - Skeleton'),
|
|
(10020, 20413, 0, 0, 0, 1, 1, 1, 1, 'Hallowed Wand - Random'),
|
|
(10020, 20414, 0, 0, 0, 1, 1, 1, 1, 'Hallowed Wand - Wisp'),
|
|
(10020, 20561, 0, 0, 0, 1, 1, 1, 1, 'Flimsy Male Dwarf Mask'),
|
|
(10020, 20562, 0, 0, 0, 1, 1, 1, 1, 'Flimsy Female Dwarf Mask'),
|
|
(10020, 20563, 0, 0, 0, 1, 1, 1, 1, 'Flimsy Female Night Elf Mask'),
|
|
(10020, 20564, 0, 0, 0, 1, 1, 1, 1, 'Flimsy Male Night Elf Mask'),
|
|
(10020, 20565, 0, 0, 0, 1, 1, 1, 1, 'Flimsy Female Human Mask'),
|
|
(10020, 20566, 0, 0, 0, 1, 1, 1, 1, 'Flimsy Male Human Mask'),
|
|
(10020, 20567, 0, 0, 0, 1, 1, 1, 1, 'Flimsy Female Troll Mask'),
|
|
(10020, 20568, 0, 0, 0, 1, 1, 1, 1, 'Flimsy Male Troll Mask'),
|
|
(10020, 20569, 0, 0, 0, 1, 1, 1, 1, 'Flimsy Female Orc Mask'),
|
|
(10020, 20570, 0, 0, 0, 1, 1, 1, 1, 'Flimsy Male Orc Mask'),
|
|
(10020, 20571, 0, 0, 0, 1, 1, 1, 1, 'Flimsy Female Tauren Mask'),
|
|
(10020, 20572, 0, 0, 0, 1, 1, 1, 1, 'Flimsy Male Tauren Mask'),
|
|
(10020, 20573, 0, 0, 0, 1, 1, 1, 1, 'Flimsy Male Undead Mask'),
|
|
(10020, 20574, 0, 0, 0, 1, 1, 1, 1, 'Flimsy Female Undead Mask'),
|
|
(10020, 33154, 0, 0, 0, 1, 1, 1, 1, 'Sinister Squashling'),
|
|
(10020, 33292, 0, 0, 0, 1, 1, 1, 1, 'Hallowed Helm'),
|
|
(10020, 34000, 0, 0, 0, 1, 1, 1, 1, 'Flimsy Female Blood Elf Mask'),
|
|
(10020, 34001, 0, 0, 0, 1, 1, 1, 1, 'Flimsy Female Draenei Mask'),
|
|
(10020, 34002, 0, 0, 0, 1, 1, 1, 1, 'Flimsy Male Blood Elf Mask'),
|
|
(10020, 34003, 0, 0, 0, 1, 1, 1, 1, 'Flimsy Male Draenei Mask'),
|
|
(10020, 37582, 0, 0, 0, 1, 1, 4, 6, 'Pyroblast Cinnamon Ball'),
|
|
(10020, 37583, 0, 0, 0, 1, 1, 4, 6, 'G.N.E.R.D.S.'),
|
|
(10020, 37584, 0, 0, 0, 1, 1, 4, 6, 'Soothing Spearmint Candy'),
|
|
(10020, 37585, 0, 0, 0, 1, 1, 4, 6, 'Chewy Fel Taffy'),
|
|
(10020, 37604, 0, 0, 0, 1, 1, 10, 10, 'Tooth Pick'),
|
|
(10020, 37606, 0, 0, 0, 1, 1, 1, 1, 'Penny Pouch'),
|
|
(10022, 20518, 0, 0, 0, 1, 1, 1, 1, 'Scroll: Create Crest of Beckoning'),
|
|
(10022, 20526, 0, 0, 0, 1, 1, 1, 1, 'Scroll: Create Crest of Beckoning'),
|
|
(10022, 20527, 0, 0, 0, 1, 1, 1, 1, 'Scroll: Create Crest of Beckoning'),
|
|
(10022, 20528, 0, 0, 0, 1, 1, 1, 1, 'Scroll: Create Crest of Beckoning'),
|
|
(10023, 20531, 0, 0, 0, 1, 1, 1, 1, 'Scroll: Create Signet of Beckoning'),
|
|
(10023, 20532, 0, 0, 0, 1, 1, 1, 1, 'Scroll: Create Signet of Beckoning'),
|
|
(10023, 20533, 0, 0, 0, 1, 1, 1, 1, 'Scroll: Create Signet of Beckoning'),
|
|
(10023, 20535, 0, 0, 0, 1, 1, 1, 1, 'Scroll: Create Signet of Beckoning'),
|
|
(10024, 20540, 0, 0, 0, 1, 1, 1, 1, 'Scroll: Create Scepter of Beckoning'),
|
|
(10024, 20542, 0, 0, 0, 1, 1, 1, 1, 'Scroll: Create Scepter of Beckoning'),
|
|
(10024, 20543, 0, 0, 0, 1, 1, 1, 1, 'Scroll: Create Scepter of Beckoning'),
|
|
(10024, 20544, 0, 0, 0, 1, 1, 1, 1, 'Scroll: Create Scepter of Beckoning'),
|
|
(10025, 20541, 0, 0, 0, 1, 1, 1, 3, 'Decoded Twilight Text'),
|
|
(10025, 20545, 0, 0, 0, 1, 1, 1, 3, 'Decoded Twilight Text'),
|
|
(10025, 20552, 0, 0, 0, 1, 1, 1, 3, 'Decoded Twilight Text'),
|
|
(10025, 20676, 0, 0, 0, 1, 1, 1, 3, 'Decoded Twilight Text'),
|
|
(10025, 20677, 0, 0, 0, 1, 1, 1, 3, 'Decoded Twilight Text'),
|
|
(10025, 20678, 0, 0, 0, 1, 1, 1, 3, 'Decoded Twilight Text'),
|
|
(10025, 20679, 0, 0, 0, 1, 1, 1, 3, 'Decoded Twilight Text'),
|
|
(10026, 33447, 0, 25, 0, 1, 0, 1, 1, 'Runic Healing Potion'),
|
|
(10026, 35953, 0, 30, 0, 1, 0, 1, 1, 'Mead Basted Caribou'),
|
|
(10026, 38260, 0, 50, 0, 1, 0, 1, 1, 'Empty Tobacco Pouch'),
|
|
(10026, 43575, 0, 80, 0, 1, 0, 1, 1, 'Reinforced Junkbox'),
|
|
(10027, 36862, 0, 4, 0, 1, 0, 1, 1, 'Worn Troll Dice'),
|
|
(10027, 40202, 0, 20, 0, 1, 0, 1, 1, 'Sizzling Grizzly Flank'),
|
|
(10028, 33452, 0, 30, 0, 1, 0, 1, 1, 'Honey-Spiced Lichen'),
|
|
(10028, 38269, 0, 35, 0, 1, 0, 1, 1, 'Soggy Handkerchief'),
|
|
(10029, 33454, 0, 15, 0, 1, 0, 1, 1, 'Salted Venison'),
|
|
(10029, 38261, 0, 13, 0, 1, 0, 1, 1, 'Bent House Key'),
|
|
(10030, 38263, 0, 19, 0, 1, 0, 1, 1, 'Too-Small Armband'),
|
|
(10030, 38264, 0, 18, 0, 1, 0, 1, 1, 'A Very Pretty Rock'),
|
|
(10031, 29448, 0, 9, 0, 1, 0, 1, 1, 'Mag\'har Mild Cheese'),
|
|
(10031, 29450, 0, 13, 0, 1, 0, 1, 1, 'Telaari Grapes'),
|
|
(10031, 37467, 0, 40, 0, 1, 0, 1, 1, 'A Steamy Romance Novel: Forbidden Love'),
|
|
(10032, 35947, 0, 25, 0, 1, 0, 1, 1, 'Sparkling Frostcap'),
|
|
(10032, 38269, 0, 40, 0, 1, 0, 1, 1, 'Soggy Handkerchief'),
|
|
(10033, 33447, 0, 25, 0, 1, 0, 1, 1, 'Runic Healing Potion'),
|
|
(10033, 35947, 0, 25, 0, 1, 0, 1, 1, 'Sparkling Frostcap'),
|
|
(10033, 38269, 0, 40, 0, 1, 0, 1, 1, 'Soggy Handkerchief'),
|
|
(10033, 43575, 0, 80, 0, 1, 0, 1, 1, 'Reinforced Junkbox'),
|
|
(10034, 35948, 0, 11, 0, 1, 0, 1, 1, 'Savory Snowplum'),
|
|
(10034, 35950, 0, 9, 0, 1, 0, 1, 1, 'Sweet Potato Bread'),
|
|
(10034, 35952, 0, 8, 0, 1, 0, 1, 1, 'Briny Hardcheese'),
|
|
(10035, 33447, 0, 25, 0, 1, 0, 1, 1, 'Runic Healing Potion'),
|
|
(10035, 38260, 0, 50, 0, 1, 0, 1, 1, 'Empty Tobacco Pouch'),
|
|
(10035, 43575, 0, 80, 0, 1, 0, 1, 1, 'Reinforced Junkbox'),
|
|
(10036, 51968, 0, 0, 0, 1, 1, 1, 1, 'Enumerated Wrap'),
|
|
(10036, 51994, 0, 0, 0, 1, 1, 1, 1, 'Tumultuous Cloak'),
|
|
(10037, 51964, 0, 0, 0, 1, 2, 1, 1, 'Vigorous Belt'),
|
|
(10037, 51994, 0, 0, 0, 1, 2, 1, 1, 'Tumultuous Cloak'),
|
|
(10038, 51978, 0, 0, 0, 1, 3, 1, 1, 'Earthbound Girdle'),
|
|
(10038, 51994, 0, 0, 0, 1, 3, 1, 1, 'Tumultuous Cloak'),
|
|
(10039, 51973, 0, 0, 0, 1, 1, 1, 1, 'Enumerated Handwraps'),
|
|
(10039, 51996, 0, 0, 0, 1, 1, 1, 1, 'Tumultuous Necklace'),
|
|
(10040, 51965, 0, 0, 0, 1, 2, 1, 1, 'Vigorous Handguards'),
|
|
(10040, 51996, 0, 0, 0, 1, 2, 1, 1, 'Tumultuous Necklace'),
|
|
(10041, 51980, 0, 0, 0, 1, 3, 1, 1, 'Earthbound Handgrips'),
|
|
(10041, 51996, 0, 0, 0, 1, 3, 1, 1, 'Tumultuous Necklace'),
|
|
(10042, 51974, 0, 0, 0, 1, 1, 1, 1, 'Enumerated Shoulderpads'),
|
|
(10042, 51992, 0, 0, 0, 1, 1, 1, 1, 'Tumultuous Ring'),
|
|
(10043, 51966, 0, 0, 0, 1, 2, 1, 1, 'Vigorous Spaulders'),
|
|
(10043, 51992, 0, 0, 0, 1, 2, 1, 1, 'Tumultuous Ring'),
|
|
(10044, 51976, 0, 0, 0, 1, 3, 1, 1, 'Earthbound Shoulderguards'),
|
|
(10044, 51992, 0, 0, 0, 1, 3, 1, 1, 'Tumultuous Ring'),
|
|
(10045, 51984, 0, 0, 0, 1, 4, 1, 1, 'Stalwart Shoulderpads'),
|
|
(10045, 51992, 0, 0, 0, 1, 4, 1, 1, 'Tumultuous Ring'),
|
|
(10046, 51967, 0, 0, 0, 1, 1, 1, 1, 'Enumerated Sandals'),
|
|
(10046, 51972, 0, 0, 0, 1, 1, 1, 1, 'Enumerated Bracers'),
|
|
(10047, 51962, 0, 0, 0, 1, 2, 1, 1, 'Vigorous Bracers'),
|
|
(10047, 51963, 0, 0, 0, 1, 2, 1, 1, 'Vigorous Stompers'),
|
|
(10048, 51981, 0, 0, 0, 1, 3, 1, 1, 'Earthbound Wristguards'),
|
|
(10048, 51982, 0, 0, 0, 1, 3, 1, 1, 'Earthbound Boots'),
|
|
(10049, 51989, 0, 0, 0, 1, 4, 1, 1, 'Stalwart Bands'),
|
|
(10049, 51990, 0, 0, 0, 1, 4, 1, 1, 'Stalwart Treads'),
|
|
(10050, 51971, 0, 0, 0, 1, 1, 1, 1, 'Enumerated Belt'),
|
|
(10050, 51993, 0, 0, 0, 1, 1, 1, 1, 'Turbulent Cloak'),
|
|
(10051, 51959, 0, 0, 0, 1, 2, 1, 1, 'Vigorous Belt'),
|
|
(10051, 51993, 0, 0, 0, 1, 2, 1, 1, 'Turbulent Cloak'),
|
|
(10052, 51977, 0, 0, 0, 1, 3, 1, 1, 'Earthbound Girdle'),
|
|
(10052, 51993, 0, 0, 0, 1, 3, 1, 1, 'Turbulent Cloak'),
|
|
(10053, 51985, 0, 0, 0, 1, 4, 1, 1, 'Stalwart Belt'),
|
|
(10053, 51993, 0, 0, 0, 1, 4, 1, 1, 'Turbulent Cloak'),
|
|
(10054, 51970, 0, 0, 0, 1, 1, 1, 1, 'Enumerated Gloves'),
|
|
(10054, 51995, 0, 0, 0, 1, 1, 1, 1, 'Turbulent Necklace'),
|
|
(10055, 51960, 0, 0, 0, 1, 2, 1, 1, 'Vigorous Gloves'),
|
|
(10055, 51995, 0, 0, 0, 1, 2, 1, 1, 'Turbulent Necklace'),
|
|
(10056, 51979, 0, 0, 0, 1, 3, 1, 1, 'Earthbound Grips'),
|
|
(10056, 51995, 0, 0, 0, 1, 3, 1, 1, 'Turbulent Necklace'),
|
|
(10057, 51987, 0, 0, 0, 1, 4, 1, 1, 'Stalwart Grips'),
|
|
(10057, 51995, 0, 0, 0, 1, 4, 1, 1, 'Turbulent Necklace'),
|
|
(10058, 51961, 0, 0, 0, 1, 1, 1, 1, 'Vigorous Shoulderguards'),
|
|
(10058, 51991, 0, 0, 0, 1, 1, 1, 1, 'Turbulent Signet'),
|
|
(10059, 51969, 0, 0, 0, 1, 2, 1, 1, 'Enumerated Shoulders'),
|
|
(10059, 51991, 0, 0, 0, 1, 2, 1, 1, 'Turbulent Signet'),
|
|
(10060, 51975, 0, 0, 0, 1, 3, 1, 1, 'Earthbound Shoulders'),
|
|
(10060, 51991, 0, 0, 0, 1, 3, 1, 1, 'Turbulent Signet'),
|
|
(10061, 51983, 0, 0, 0, 1, 4, 1, 1, 'Stalwart Shoulderguards'),
|
|
(10061, 51991, 0, 0, 0, 1, 4, 1, 1, 'Turbulent Signet'),
|
|
(11000, 118, 0, 0.4, 0, 1, 1, 1, 1, 'Minor Healing Potion'),
|
|
(11000, 2455, 0, 0.4, 0, 1, 1, 1, 1, 'Minor Mana Potion'),
|
|
(11000, 6289, 0, 40, 0, 1, 1, 1, 1, 'Raw Longjaw Mud Snapper'),
|
|
(11000, 6291, 0, 0, 0, 1, 1, 1, 1, 'Raw Brilliant Smallfish'),
|
|
(11000, 6292, 0, 0.1, 0, 1, 1, 1, 1, '10 Pound Mud Snapper'),
|
|
(11000, 6294, 0, 0.07, 0, 1, 1, 1, 1, '12 Pound Mud Snapper'),
|
|
(11000, 6295, 0, 0.03, 0, 1, 1, 1, 1, '15 Pound Mud Snapper'),
|
|
(11000, 6643, 0, 0.2, 0, 1, 1, 1, 1, 'Bloated Smallfish'),
|
|
(11001, 6303, 0, 0, 0, 1, 1, 1, 1, 'Raw Slitherskin Mackerel'),
|
|
(11001, 6356, 0, 2, 0, 1, 1, 1, 1, 'Battered Chest'),
|
|
(11002, 858, 0, 0.5, 0, 1, 1, 1, 1, 'Lesser Healing Potion'),
|
|
(11002, 3385, 0, 0.5, 0, 1, 1, 1, 1, 'Lesser Mana Potion'),
|
|
(11002, 6289, 0, 0, 0, 1, 1, 1, 1, 'Raw Longjaw Mud Snapper'),
|
|
(11002, 6291, 0, 18, 0, 1, 1, 1, 1, 'Raw Brilliant Smallfish'),
|
|
(11002, 6308, 0, 30, 0, 1, 1, 1, 1, 'Raw Bristle Whisker Catfish'),
|
|
(11002, 6309, 0, 0.4, 0, 1, 1, 1, 1, '17 Pound Catfish'),
|
|
(11002, 6310, 0, 0.2, 0, 1, 1, 1, 1, '19 Pound Catfish'),
|
|
(11002, 6311, 0, 0.06, 0, 1, 1, 1, 1, '22 Pound Catfish'),
|
|
(11002, 6363, 0, 0.03, 0, 1, 1, 1, 1, '26 Pound Catfish'),
|
|
(11002, 6364, 0, 0.01, 0, 1, 1, 1, 1, '32 Pound Catfish'),
|
|
(11002, 6645, 0, 0.3, 0, 1, 1, 1, 1, 'Bloated Mud Snapper'),
|
|
(11002, 8350, 0, 0.05, 0, 1, 1, 1, 1, 'The 1 Ring'),
|
|
(11003, 6303, 0, 33.5, 0, 1, 1, 1, 1, 'Raw Slitherskin Mackerel'),
|
|
(11003, 6307, 0, 0.5, 0, 1, 1, 1, 1, 'Message in a Bottle'),
|
|
(11003, 6351, 0, 0.5, 0, 1, 1, 1, 1, 'Dented Crate'),
|
|
(11003, 6353, 0, 0.5, 0, 1, 1, 1, 1, 'Small Chest'),
|
|
(11003, 6358, 0, 15, 0, 1, 1, 1, 1, 'Oily Blackmouth'),
|
|
(11003, 6361, 0, 0, 0, 1, 1, 1, 1, 'Raw Rainbow Fin Albacore'),
|
|
(11004, 929, 0, 0.5, 0, 1, 1, 1, 1, 'Healing Potion'),
|
|
(11004, 3827, 0, 0.5, 0, 1, 1, 1, 1, 'Mana Potion'),
|
|
(11004, 6289, 0, 35, 0, 1, 1, 1, 1, 'Raw Longjaw Mud Snapper'),
|
|
(11004, 6308, 0, 0, 0, 1, 1, 1, 1, 'Raw Bristle Whisker Catfish'),
|
|
(11004, 6310, 0, 0.2, 0, 1, 1, 1, 1, '19 Pound Catfish'),
|
|
(11004, 6311, 0, 0.06, 0, 1, 1, 1, 1, '22 Pound Catfish'),
|
|
(11004, 6363, 0, 0.03, 0, 1, 1, 1, 1, '26 Pound Catfish'),
|
|
(11004, 6364, 0, 0.01, 0, 1, 1, 1, 1, '32 Pound Catfish'),
|
|
(11004, 6366, 0, 0.05, 0, 1, 1, 1, 1, 'Darkwood Fishing Pole'),
|
|
(11004, 6647, 0, 0.3, 0, 1, 1, 1, 1, 'Bloated Catfish'),
|
|
(11005, 6307, 0, 0.4, 0, 1, 1, 1, 1, 'Message in a Bottle'),
|
|
(11005, 6352, 0, 0.4, 0, 1, 1, 1, 1, 'Waterlogged Crate'),
|
|
(11005, 6354, 0, 0.4, 0, 1, 1, 1, 1, 'Small Locked Chest'),
|
|
(11005, 6358, 0, 25, 0, 1, 1, 1, 1, 'Oily Blackmouth'),
|
|
(11005, 6359, 0, 15, 0, 1, 1, 1, 1, 'Firefin Snapper'),
|
|
(11005, 6360, 0, 0.05, 0, 1, 1, 1, 1, 'Steelscale Crushfish'),
|
|
(11005, 6361, 0, 0, 0, 1, 1, 1, 1, 'Raw Rainbow Fin Albacore'),
|
|
(11006, 1710, 0, 0.3, 0, 1, 1, 1, 1, 'Greater Healing Potion'),
|
|
(11006, 3827, 0, 0.7, 0, 1, 1, 1, 1, 'Mana Potion'),
|
|
(11006, 6308, 0, 40, 0, 1, 1, 1, 1, 'Raw Bristle Whisker Catfish'),
|
|
(11006, 6310, 0, 0.2, 0, 1, 1, 1, 1, '19 Pound Catfish'),
|
|
(11006, 6311, 0, 0.06, 0, 1, 1, 1, 1, '22 Pound Catfish'),
|
|
(11006, 6363, 0, 0.03, 0, 1, 1, 1, 1, '26 Pound Catfish'),
|
|
(11006, 6364, 0, 0.01, 0, 1, 1, 1, 1, '32 Pound Catfish'),
|
|
(11006, 8365, 0, 0, 0, 1, 1, 1, 1, 'Raw Mithril Head Trout'),
|
|
(11006, 8366, 0, 0.3, 0, 1, 1, 1, 1, 'Bloated Trout'),
|
|
(11007, 4603, 0, 20, 0, 1, 1, 1, 1, 'Raw Spotted Yellowtail'),
|
|
(11007, 6355, 0, 0.4, 0, 1, 1, 1, 1, 'Sturdy Locked Chest'),
|
|
(11007, 6357, 0, 0.4, 0, 1, 1, 1, 1, 'Sealed Crate'),
|
|
(11007, 6358, 0, 12, 0, 1, 1, 1, 1, 'Oily Blackmouth'),
|
|
(11007, 6359, 0, 12, 0, 1, 1, 1, 1, 'Firefin Snapper'),
|
|
(11007, 6362, 0, 0, 0, 1, 1, 1, 1, 'Raw Rockscale Cod'),
|
|
(11008, 3928, 0, 0.3, 0, 1, 1, 1, 1, 'Superior Healing Potion'),
|
|
(11008, 6149, 0, 0.3, 0, 1, 1, 1, 1, 'Greater Mana Potion'),
|
|
(11008, 6358, 0, 10, 0, 1, 1, 1, 1, 'Oily Blackmouth'),
|
|
(11008, 8365, 0, 10, 0, 1, 1, 1, 1, 'Raw Mithril Head Trout'),
|
|
(11008, 13757, 0, 7, 0, 1, 1, 1, 1, 'Lightning Eel'),
|
|
(11008, 13758, 0, 0, 0, 1, 1, 1, 1, 'Raw Redgill'),
|
|
(11008, 13759, 0, 18, 0, 1, 1, 1, 1, 'Raw Nightfin Snapper'),
|
|
(11008, 13760, 0, 18, 0, 1, 1, 1, 1, 'Raw Sunscale Salmon'),
|
|
(11008, 13881, 0, 0.3, 0, 1, 1, 1, 1, 'Bloated Redgill'),
|
|
(11008, 13882, 0, 0.1, 0, 1, 1, 1, 1, '42 Pound Redgill'),
|
|
(11008, 13883, 0, 0.06, 0, 1, 1, 1, 1, '45 Pound Redgill'),
|
|
(11008, 13884, 0, 0.03, 0, 1, 1, 1, 1, '49 Pound Redgill'),
|
|
(11008, 13885, 0, 0.3, 0, 1, 1, 1, 1, '34 Pound Redgill'),
|
|
(11008, 13886, 0, 0.2, 0, 1, 1, 1, 1, '37 Pound Redgill'),
|
|
(11008, 13887, 0, 0.01, 0, 1, 1, 1, 1, '52 Pound Redgill'),
|
|
(11009, 4603, 0, 0, 0, 1, 1, 1, 1, 'Raw Spotted Yellowtail'),
|
|
(11009, 6359, 0, 10, 0, 1, 1, 1, 1, 'Firefin Snapper'),
|
|
(11009, 6362, 0, 10, 0, 1, 1, 1, 1, 'Raw Rockscale Cod'),
|
|
(11009, 7973, 0, 8, 0, 1, 1, 1, 1, 'Big-mouth Clam'),
|
|
(11009, 13422, 0, 15, 0, 1, 1, 1, 1, 'Stonescale Eel'),
|
|
(11009, 13754, 0, 15, 0, 1, 1, 1, 1, 'Raw Glossy Mightfish'),
|
|
(11009, 13755, 0, 15, 0, 1, 1, 1, 1, ''),
|
|
(11009, 13756, 0, 15, 0, 1, 1, 1, 1, 'Raw Summer Bass'),
|
|
(11009, 13874, 0, 0.5, 0, 1, 1, 1, 1, 'Heavy Crate'),
|
|
(11009, 13875, 0, 0.5, 0, 1, 1, 1, 1, 'Ironbound Locked Chest'),
|
|
(11009, 13876, 0, 0.4, 0, 1, 1, 1, 1, '40 Pound Grouper'),
|
|
(11009, 13877, 0, 0.2, 0, 1, 1, 1, 1, '47 Pound Grouper'),
|
|
(11009, 13878, 0, 0.06, 0, 1, 1, 1, 1, '53 Pound Grouper'),
|
|
(11009, 13879, 0, 0.03, 0, 1, 1, 1, 1, '59 Pound Grouper'),
|
|
(11009, 13880, 0, 0.01, 0, 1, 1, 1, 1, '68 Pound Grouper'),
|
|
(11010, 13443, 0, 0.3, 0, 1, 1, 1, 1, 'Superior Mana Potion'),
|
|
(11010, 13446, 0, 0.4, 0, 1, 1, 1, 1, 'Major Healing Potion'),
|
|
(11010, 13757, 0, 12, 0, 1, 1, 1, 1, 'Lightning Eel'),
|
|
(11010, 13758, 0, 5, 0, 1, 1, 1, 1, 'Raw Redgill'),
|
|
(11010, 13759, 0, 17, 0, 1, 1, 1, 1, 'Raw Nightfin Snapper'),
|
|
(11010, 13760, 0, 17, 0, 1, 1, 1, 1, 'Raw Sunscale Salmon'),
|
|
(11010, 13889, 0, 0, 0, 1, 1, 1, 1, 'Raw Whitescale Salmon'),
|
|
(11010, 13890, 0, 17, 0, 1, 1, 1, 1, 'Plated Armorfish'),
|
|
(11010, 13891, 0, 0.4, 0, 1, 1, 1, 1, 'Bloated Salmon'),
|
|
(11010, 13901, 0, 0.2, 0, 1, 1, 1, 1, '15 Pound Salmon'),
|
|
(11010, 13902, 0, 0.1, 0, 1, 1, 1, 1, '18 Pound Salmon'),
|
|
(11010, 13903, 0, 0.06, 0, 1, 1, 1, 1, '22 Pound Salmon'),
|
|
(11010, 13904, 0, 0.03, 0, 1, 1, 1, 1, '25 Pound Salmon'),
|
|
(11010, 13905, 0, 0.01, 0, 1, 1, 1, 1, '29 Pound Salmon'),
|
|
(11011, 27422, 0, 25, 0, 1, 1, 1, 1, 'Barbed Gill Trout'),
|
|
(11011, 27441, 0, 0, 0, 1, 1, 1, 1, 'Felblood Snapper'),
|
|
(11012, 22578, 0, 0.8, 0, 1, 1, 1, 2, 'Mote of Water'),
|
|
(11012, 27422, 0, 0, 0, 1, 1, 1, 1, 'Barbed Gill Trout'),
|
|
(11012, 27425, 0, 15, 0, 1, 1, 1, 1, 'Spotted Feltail'),
|
|
(11012, 27429, 0, 15, 0, 1, 1, 1, 1, 'Zangarian Sporefish'),
|
|
(11012, 27442, 0, 0.3, 0, 1, 1, 1, 1, 'Goldenscale Vendorfish'),
|
|
(11012, 27511, 0, 0.6, 0, 1, 1, 1, 1, 'Inscribed Scrollcase'),
|
|
(11012, 27513, 0, 0.6, 0, 1, 1, 1, 1, 'Curious Crate'),
|
|
(11012, 27515, 0, 0.6, 0, 1, 1, 1, 1, 'Huge Spotted Feltail'),
|
|
(11012, 27516, 0, 0.3, 0, 1, 1, 1, 1, 'Enormous Barbed Gill Trout'),
|
|
(11012, 35313, 0, 100, 0, 1, 0, 1, 1, 'Bloated Barbed Gill Trout'),
|
|
(11013, 22578, 0, 0.8, 0, 1, 1, 1, 2, 'Mote of Water'),
|
|
(11013, 27422, 0, 0, 0, 1, 1, 1, 1, 'Barbed Gill Trout'),
|
|
(11013, 27425, 0, 15, 0, 1, 1, 1, 1, 'Spotted Feltail'),
|
|
(11013, 27438, 0, 20, 0, 1, 1, 1, 1, 'Golden Darter'),
|
|
(11013, 27442, 0, 0.4, 0, 1, 1, 1, 1, 'Goldenscale Vendorfish'),
|
|
(11013, 27511, 0, 0.6, 0, 1, 1, 1, 1, 'Inscribed Scrollcase'),
|
|
(11013, 27513, 0, 0.6, 0, 1, 1, 1, 1, 'Curious Crate'),
|
|
(11013, 27515, 0, 0.7, 0, 1, 1, 1, 1, 'Huge Spotted Feltail'),
|
|
(11013, 27516, 0, 0.4, 0, 1, 1, 1, 1, 'Enormous Barbed Gill Trout'),
|
|
(11014, 22578, 0, 0.8, 0, 1, 1, 1, 2, 'Mote of Water'),
|
|
(11014, 27422, 0, 0, 0, 1, 1, 1, 1, 'Barbed Gill Trout'),
|
|
(11014, 27435, 0, 22, 0, 1, 1, 1, 1, 'Figluster\'s Mudfish'),
|
|
(11014, 27437, 0, 22, 0, 1, 1, 1, 1, 'Icefin Bluefish'),
|
|
(11014, 27442, 0, 0.5, 0, 1, 1, 1, 1, 'Goldenscale Vendorfish'),
|
|
(11014, 27511, 0, 0.6, 0, 1, 1, 1, 1, 'Inscribed Scrollcase'),
|
|
(11014, 27513, 0, 0.6, 0, 1, 1, 1, 1, 'Curious Crate'),
|
|
(11014, 27515, 0, 0.6, 0, 1, 1, 1, 1, 'Huge Spotted Feltail'),
|
|
(11014, 27516, 0, 0.5, 0, 1, 1, 1, 1, 'Enormous Barbed Gill Trout'),
|
|
(11015, 27441, 0, 100, 0, 1, 1, 1, 1, 'Felblood Snapper'),
|
|
(11016, 24476, 0, 15, 0, 1, 1, 1, 1, 'Jaggal Clam'),
|
|
(11016, 35285, 0, 0, 0, 1, 1, 1, 1, 'Giant Sunfish'),
|
|
(11016, 35286, 0, 5, 0, 1, 1, 1, 1, 'Bloated Giant Sunfish'),
|
|
(11017, 13757, 0, 7, 0, 1, 1, 1, 1, 'Lightning Eel'),
|
|
(11017, 27422, 0, 0, 0, 1, 1, 1, 1, 'Barbed Gill Trout'),
|
|
(11017, 33823, 0, 20, 0, 1, 1, 1, 1, 'Bloodfin Catfish'),
|
|
(11017, 33824, 0, 20, 0, 1, 1, 1, 1, 'Crescent-Tail Skullfish'),
|
|
(11018, 36781, 0, 10, 0, 1, 1, 1, 1, 'Darkwater Clam'),
|
|
(11018, 37705, 0, 1, 0, 1, 1, 1, 1, 'Crystallized Water'),
|
|
(11018, 41802, 0, 0, 0, 1, 1, 1, 1, 'Imperial Manta Ray'),
|
|
(11018, 41803, 0, 50, 0, 1, 1, 1, 1, 'Rockfin Grouper'),
|
|
(11018, 41805, 0, 0, 0, 1, 1, 1, 1, 'Borean Man O\' War'),
|
|
(11018, 44475, 0, 1, 0, 1, 1, 1, 1, 'Reinforced Crate'),
|
|
(11019, 37705, 0, 1, 0, 1, 1, 1, 1, 'Crystallized Water'),
|
|
(11019, 40199, 0, 10, 0, 1, 0, 1, 1, 'Pygmy Suckerfish'),
|
|
(11019, 41808, 0, 55, 0, 1, 1, 1, 1, 'Bonescale Snapper'),
|
|
(11019, 41809, 0, 0, 0, 1, 1, 1, 1, 'Glacial Salmon'),
|
|
(11019, 41810, 0, 0, 0, 1, 1, 1, 1, 'Fangtooth Herring'),
|
|
(11019, 44475, 0, 1, 0, 1, 1, 1, 1, 'Reinforced Crate'),
|
|
(11019, 44703, 0, 0.5, 0, 1, 1, 1, 1, 'Dark Herring'),
|
|
(11019, 50289, 0, 0.05, 0, 1, 1, 1, 1, 'Blacktip Shark'),
|
|
(11020, 37705, 0, 1, 0, 1, 1, 1, 1, 'Crystallized Water'),
|
|
(11020, 40199, 0, 10, 0, 1, 0, 1, 1, 'Pygmy Suckerfish'),
|
|
(11020, 41806, 0, 0, 0, 1, 1, 1, 1, 'Musselback Sculpin'),
|
|
(11020, 41807, 0, 0, 0, 1, 1, 1, 1, 'Dragonfin Angelfish'),
|
|
(11020, 41808, 0, 55, 0, 1, 1, 1, 1, 'Bonescale Snapper'),
|
|
(11020, 44475, 0, 1, 0, 1, 1, 1, 1, 'Reinforced Crate'),
|
|
(11020, 44703, 0, 0.5, 0, 1, 1, 1, 1, 'Dark Herring'),
|
|
(11020, 50289, 0, 0.05, 0, 1, 1, 1, 1, 'Blacktip Shark'),
|
|
(11021, 37705, 0, 2, 0, 1, 1, 1, 1, 'Crystallized Water'),
|
|
(11021, 40199, 0, 10, 0, 1, 0, 1, 1, 'Pygmy Suckerfish'),
|
|
(11021, 41808, 0, 0, 0, 1, 1, 1, 1, 'Bonescale Snapper'),
|
|
(11021, 41814, 0, 30, 0, 1, 1, 1, 1, 'Glassfin Minnow'),
|
|
(11021, 44475, 0, 2, 0, 1, 1, 1, 1, 'Reinforced Crate'),
|
|
(11021, 50289, 0, 0.05, 0, 1, 1, 1, 1, 'Blacktip Shark'),
|
|
(11022, 37705, 0, 2, 0, 1, 1, 1, 1, 'Crystallized Water'),
|
|
(11022, 40199, 0, 10, 0, 1, 0, 1, 1, 'Pygmy Suckerfish'),
|
|
(11022, 41812, 0, 0, 0, 1, 1, 1, 1, 'Barrelhead Goby'),
|
|
(11022, 41813, 0, 30, 0, 1, 1, 1, 1, 'Nettlefish'),
|
|
(11022, 44475, 0, 2, 0, 1, 1, 1, 1, 'Reinforced Crate'),
|
|
(11022, 50289, 0, 0.05, 0, 1, 1, 1, 1, 'Blacktip Shark'),
|
|
(11023, 37705, 0, 2, 0, 1, 1, 1, 1, 'Crystallized Water'),
|
|
(11023, 41800, 0, 0, 0, 1, 1, 1, 1, 'Deep Sea Monsterbelly'),
|
|
(11023, 41801, 0, 0, 0, 1, 1, 1, 1, 'Moonglow Cuttlefish'),
|
|
(11023, 41803, 0, 60, 0, 1, 1, 1, 1, 'Rockfin Grouper'),
|
|
(11023, 44475, 0, 2, 0, 1, 1, 1, 1, 'Reinforced Crate'),
|
|
(11024, 43647, 0, 55, 0, 1, 1, 1, 1, 'Shimmering Minnow'),
|
|
(11024, 43650, 0, 1, 0, 1, 1, 1, 1, 'Rusty Prison Key'),
|
|
(11024, 43652, 0, 25, 0, 1, 1, 1, 1, 'Slippery Eel'),
|
|
(11024, 43658, 0, 0, 0, 1, 1, 1, 1, 'Partially Rusted File'),
|
|
(11024, 43659, 0, 1, 0, 1, 1, 1, 1, 'Bloodied Prison Shank'),
|
|
(11024, 43695, 0, 0, 0, 1, 1, 1, 1, 'Half Full Bottle of Prison Moonshine'),
|
|
(11024, 43696, 0, 0, 0, 1, 1, 1, 1, 'Half Empty Bottle of Prison Moonshine'),
|
|
(11025, 43627, 0, 0.4, 0, 1, 1, 1, 1, 'Thrall\'s Gold Coin'),
|
|
(11025, 43628, 0, 0.4, 0, 1, 1, 1, 1, 'Lady Jaina Proudmoore\'s Gold Coin'),
|
|
(11025, 43629, 0, 0.4, 0, 1, 1, 1, 1, 'Uther Lightbringer\'s Gold Coin'),
|
|
(11025, 43630, 0, 0.4, 0, 1, 1, 1, 1, 'Tirion Fordring\'s Gold Coin'),
|
|
(11025, 43631, 0, 0.4, 0, 1, 1, 1, 1, 'Teron\'s Gold Coin'),
|
|
(11025, 43632, 0, 0.4, 0, 1, 1, 1, 1, 'Sylvanas Windrunner\'s Gold Coin'),
|
|
(11025, 43633, 0, 0.4, 0, 1, 1, 1, 1, 'Prince Kael\'thas Sunstrider\'s Gold Coin'),
|
|
(11025, 43634, 0, 0.4, 0, 1, 1, 1, 1, 'Lady Katrana Prestor\'s Gold Coin'),
|
|
(11025, 43635, 0, 0.4, 0, 1, 1, 1, 1, 'Kel\'Thuzad\'s Gold Coin'),
|
|
(11025, 43636, 0, 0.4, 0, 1, 1, 1, 1, 'Chromie\'s Gold Coin'),
|
|
(11025, 43637, 0, 0.4, 0, 1, 1, 1, 1, 'Brann Bronzebeard\'s Gold Coin'),
|
|
(11025, 43638, 0, 0.4, 0, 1, 1, 1, 1, 'Arugal\'s Gold Coin'),
|
|
(11025, 43639, 0, 0.4, 0, 1, 1, 1, 1, 'Arthas\' Gold Coin'),
|
|
(11025, 43640, 0, 0.4, 0, 1, 1, 1, 1, 'Archimonde\'s Gold Coin'),
|
|
(11025, 43641, 0, 0.4, 0, 1, 1, 1, 1, 'Anduin Wrynn\'s Gold Coin'),
|
|
(11025, 43643, 0, 0.6, 0, 1, 1, 1, 1, 'Prince Magni Bronzebeard\'s Silver Coin'),
|
|
(11025, 43644, 0, 0.6, 0, 1, 1, 1, 1, 'A Peasant\'s Silver Coin'),
|
|
(11025, 43645, 0, 5, 0, 1, 1, 1, 1, 'Bent Fishing Hook'),
|
|
(11025, 43646, 0, 0, 0, 1, 1, 1, 1, 'Fountain Goldfish'),
|
|
(11025, 43675, 0, 0.6, 0, 1, 1, 1, 1, 'Fandral Staghelm\'s Silver Coin'),
|
|
(11025, 43676, 0, 0.6, 0, 1, 1, 1, 1, 'Arcanist Doan\'s Silver Coin'),
|
|
(11025, 43677, 0, 0.6, 0, 1, 1, 1, 1, 'High Tinker Mekkatorque\'s Silver Coin'),
|
|
(11025, 43678, 0, 0.6, 0, 1, 1, 1, 1, 'Antonidas\' Silver Coin'),
|
|
(11025, 43679, 0, 0.6, 0, 1, 1, 1, 1, 'Muradin Bronzebeard\'s Silver Coin'),
|
|
(11025, 43680, 0, 0.6, 0, 1, 1, 1, 1, 'King Varian Wrynn\'s Silver Coin'),
|
|
(11025, 43681, 0, 0.6, 0, 1, 1, 1, 1, 'King Terenas Menethil\'s Silver Coin'),
|
|
(11025, 43682, 0, 0.6, 0, 1, 1, 1, 1, 'King Anasterian Sunstrider\'s Silver Coin'),
|
|
(11025, 43683, 0, 0.6, 0, 1, 1, 1, 1, 'Khadgar\'s Silver Coin'),
|
|
(11025, 43684, 0, 0.6, 0, 1, 1, 1, 1, 'Medivh\'s Silver Coin'),
|
|
(11025, 43685, 0, 0.6, 0, 1, 1, 1, 1, 'Maiev Shadowsong\'s Silver Coin'),
|
|
(11025, 43686, 0, 0.6, 0, 1, 1, 1, 1, 'Alleria\'s Silver Coin'),
|
|
(11025, 43687, 0, 0.6, 0, 1, 1, 1, 1, 'Aegwynn\'s Silver Coin'),
|
|
(11025, 43701, 0, 0.7, 0, 1, 1, 1, 1, 'A Footman\'s Copper Coin'),
|
|
(11025, 43702, 0, 0.7, 0, 1, 1, 1, 1, 'Alonsus Faol\'s Copper Coin'),
|
|
(11025, 43703, 0, 0.7, 0, 1, 1, 1, 1, 'Ansirem\'s Copper Coin'),
|
|
(11025, 43704, 0, 0.7, 0, 1, 1, 1, 1, 'Attumen\'s Copper Coin'),
|
|
(11025, 43705, 0, 0.7, 0, 1, 1, 1, 1, 'Danath\'s Copper Coin'),
|
|
(11025, 43706, 0, 0.7, 0, 1, 1, 1, 1, 'Dornaa\'s Shiny Copper Coin'),
|
|
(11025, 43707, 0, 0.7, 0, 1, 1, 1, 1, 'Eitrigg\'s Copper Coin'),
|
|
(11025, 43708, 0, 0.7, 0, 1, 1, 1, 1, 'Elling Trias\' Copper Coin'),
|
|
(11025, 43709, 0, 0.7, 0, 1, 1, 1, 1, 'Falstad Wildhammer\'s Copper Coin'),
|
|
(11025, 43710, 0, 0.7, 0, 1, 1, 1, 1, 'Genn\'s Copper Coin'),
|
|
(11025, 43711, 0, 0.7, 0, 1, 1, 1, 1, 'Inigo\'s Copper Coin'),
|
|
(11025, 43712, 0, 0.7, 0, 1, 1, 1, 1, 'Krasus\' Copper Coin'),
|
|
(11025, 43713, 0, 0.7, 0, 1, 1, 1, 1, 'Kryll\'s Copper Coin'),
|
|
(11025, 43714, 0, 0.7, 0, 1, 1, 1, 1, 'Landro Longshot\'s Copper Coin'),
|
|
(11025, 43715, 0, 0.7, 0, 1, 1, 1, 1, 'Molok\'s Copper Coin'),
|
|
(11025, 43716, 0, 0.7, 0, 1, 1, 1, 1, 'Murky\'s Copper Coin'),
|
|
(11025, 43717, 0, 0.7, 0, 1, 1, 1, 1, 'Princess Calia Menethil\'s Copper Coin'),
|
|
(11025, 43718, 0, 0.7, 0, 1, 1, 1, 1, 'Private Marcus Jonathan\'s Copper Coin'),
|
|
(11025, 43719, 0, 0.7, 0, 1, 1, 1, 1, 'Salandria\'s Shiny Copper Coin'),
|
|
(11025, 43720, 0, 0.7, 0, 1, 1, 1, 1, 'Squire Rowe\'s Copper Coin'),
|
|
(11025, 43721, 0, 0.7, 0, 1, 1, 1, 1, 'Stalvan\'s Copper Coin'),
|
|
(11025, 43722, 0, 0.7, 0, 1, 1, 1, 1, 'Vareesa\'s Copper Coin'),
|
|
(11025, 43723, 0, 0.7, 0, 1, 1, 1, 1, 'Vargoth\'s Copper Coin'),
|
|
(11026, 3371, 0, 9, 0, 1, 1, 1, 1, 'Empty Vial'),
|
|
(11026, 3372, 0, 3, 0, 1, 1, 1, 1, 'Leaded Vial'),
|
|
(11026, 8925, 0, 0.3, 0, 1, 1, 1, 1, 'Crystal Vial'),
|
|
(11026, 18256, 0, 0.3, 0, 1, 1, 1, 1, 'Imbued Vial'),
|
|
(11026, 40411, 0, 0.3, 0, 1, 1, 1, 1, 'Enchanted Vial'),
|
|
(11026, 43571, 0, 0, 0, 1, 1, 1, 1, 'Sewer Carp'),
|
|
(11026, 43572, 0, 25, 0, 1, 1, 1, 1, 'Magic Eater'),
|
|
(11026, 43653, 0, 7, 0, 1, 1, 1, 1, 'Partially Eaten Fish'),
|
|
(11026, 43694, 0, 5, 0, 1, 1, 1, 1, 'Drowned Rat'),
|
|
(11026, 43698, 0, 0.3, 0, 1, 1, 1, 1, 'Giant Sewer Rat'),
|
|
(11026, 45328, 0, 20, 1, 1, 1, 1, 1, 'Bloated Slippery Eel'),
|
|
(11026, 45903, 0, 10, 1, 1, 2, 1, 1, 'Corroded Jewelry'),
|
|
(11099, 118, 0, 0.4, 0, 1, 1, 1, 1, 'Minor Healing Potion'),
|
|
(11099, 2455, 0, 0.4, 0, 1, 1, 1, 1, 'Minor Mana Potion'),
|
|
(11099, 6289, 0, 30, 0, 1, 1, 1, 1, 'Raw Longjaw Mud Snapper'),
|
|
(11099, 6291, 0, 0, 0, 1, 1, 1, 1, 'Raw Brilliant Smallfish'),
|
|
(11099, 6292, 0, 0.1, 0, 1, 1, 1, 1, '10 Pound Mud Snapper'),
|
|
(11099, 6294, 0, 0.07, 0, 1, 1, 1, 1, '12 Pound Mud Snapper'),
|
|
(11099, 6295, 0, 0.03, 0, 1, 1, 1, 1, '15 Pound Mud Snapper'),
|
|
(11099, 6297, 0, 7, 0, 1, 1, 1, 1, 'Old Skull'),
|
|
(11099, 6299, 0, 15, 0, 1, 1, 1, 1, 'Sickly Looking Fish'),
|
|
(11099, 6301, 0, 1.8, 0, 1, 1, 1, 1, 'Old Teamster\'s Skull'),
|
|
(11099, 6643, 0, 0.2, 0, 1, 1, 1, 1, 'Bloated Smallfish'),
|
|
(11100, 858, 0, 0.5, 0, 1, 1, 1, 1, 'Lesser Healing Potion'),
|
|
(11100, 3385, 0, 0.5, 0, 1, 1, 1, 1, 'Lesser Mana Potion'),
|
|
(11100, 6289, 0, 0, 0, 1, 1, 1, 1, 'Raw Longjaw Mud Snapper'),
|
|
(11100, 6291, 0, 12.5, 0, 1, 1, 1, 1, 'Raw Brilliant Smallfish'),
|
|
(11100, 6297, 0, 15, 0, 1, 1, 1, 1, 'Old Skull'),
|
|
(11100, 6299, 0, 15, 0, 1, 1, 1, 1, 'Sickly Looking Fish'),
|
|
(11100, 6301, 0, 0.5, 0, 1, 1, 1, 1, 'Old Teamster\'s Skull'),
|
|
(11100, 6308, 0, 15, 0, 1, 1, 1, 1, 'Raw Bristle Whisker Catfish'),
|
|
(11100, 6309, 0, 0.4, 0, 1, 1, 1, 1, '17 Pound Catfish'),
|
|
(11100, 6310, 0, 0.2, 0, 1, 1, 1, 1, '19 Pound Catfish'),
|
|
(11100, 6311, 0, 0.06, 0, 1, 1, 1, 1, '22 Pound Catfish'),
|
|
(11100, 6363, 0, 0.03, 0, 1, 1, 1, 1, '26 Pound Catfish'),
|
|
(11100, 6364, 0, 0.01, 0, 1, 1, 1, 1, '32 Pound Catfish'),
|
|
(11100, 6645, 0, 0.3, 0, 1, 1, 1, 1, 'Bloated Mud Snapper'),
|
|
(11100, 8350, 0, 0.05, 0, 1, 1, 1, 1, 'The 1 Ring'),
|
|
(11101, 858, 0, 0.5, 0, 1, 1, 1, 1, 'Lesser Healing Potion'),
|
|
(11101, 3385, 0, 0.5, 0, 1, 1, 1, 1, 'Lesser Mana Potion'),
|
|
(11101, 6289, 0, 0, 0, 1, 1, 1, 1, 'Raw Longjaw Mud Snapper'),
|
|
(11101, 6291, 0, 7, 0, 1, 1, 1, 1, 'Raw Brilliant Smallfish'),
|
|
(11101, 6308, 0, 15, 0, 1, 1, 1, 1, 'Raw Bristle Whisker Catfish'),
|
|
(11101, 6309, 0, 0.4, 0, 1, 1, 1, 1, '17 Pound Catfish'),
|
|
(11101, 6310, 0, 0.2, 0, 1, 1, 1, 1, '19 Pound Catfish'),
|
|
(11101, 6311, 0, 0.06, 0, 1, 1, 1, 1, '22 Pound Catfish'),
|
|
(11101, 6363, 0, 0.03, 0, 1, 1, 1, 1, '26 Pound Catfish'),
|
|
(11101, 6364, 0, 0.01, 0, 1, 1, 1, 1, '32 Pound Catfish'),
|
|
(11101, 6455, 0, 10, 0, 1, 1, 1, 1, 'Old Wagonwheel'),
|
|
(11101, 6456, 0, 10, 0, 1, 1, 1, 1, 'Acidic Slime'),
|
|
(11101, 6457, 0, 10, 0, 1, 1, 1, 1, 'Rusted Engineering Parts'),
|
|
(11101, 6458, 0, 10, 0, 1, 1, 1, 1, 'Oil Covered Fish'),
|
|
(11101, 6645, 0, 0.3, 0, 1, 1, 1, 1, 'Bloated Mud Snapper'),
|
|
(11102, 858, 0, 0.5, 0, 1, 1, 1, 1, 'Lesser Healing Potion'),
|
|
(11102, 3385, 0, 0.5, 0, 1, 1, 1, 1, 'Lesser Mana Potion'),
|
|
(11102, 6289, 0, 0, 0, 1, 1, 1, 1, 'Raw Longjaw Mud Snapper'),
|
|
(11102, 6291, 0, 13, 0, 1, 1, 1, 1, 'Raw Brilliant Smallfish'),
|
|
(11102, 6308, 0, 15, 0, 1, 1, 1, 1, 'Raw Bristle Whisker Catfish'),
|
|
(11102, 6309, 0, 0.4, 0, 1, 1, 1, 1, '17 Pound Catfish'),
|
|
(11102, 6310, 0, 0.2, 0, 1, 1, 1, 1, '19 Pound Catfish'),
|
|
(11102, 6311, 0, 0.06, 0, 1, 1, 1, 1, '22 Pound Catfish'),
|
|
(11102, 6363, 0, 0.03, 0, 1, 1, 1, 1, '26 Pound Catfish'),
|
|
(11102, 6364, 0, 0.01, 0, 1, 1, 1, 1, '32 Pound Catfish'),
|
|
(11102, 6522, 0, 30, 0, 1, 1, 1, 1, 'Deviate Fish'),
|
|
(11102, 6645, 0, 0.3, 0, 1, 1, 1, 1, 'Bloated Mud Snapper'),
|
|
(11103, 858, 0, 0.5, 0, 1, 1, 1, 1, 'Lesser Healing Potion'),
|
|
(11103, 3385, 0, 0.5, 0, 1, 1, 1, 1, 'Lesser Mana Potion'),
|
|
(11103, 6289, 0, 0, 0, 1, 1, 1, 1, 'Raw Longjaw Mud Snapper'),
|
|
(11103, 6291, 0, 18, 0, 1, 1, 1, 1, 'Raw Brilliant Smallfish'),
|
|
(11103, 6308, 0, 15, 0, 1, 1, 1, 1, 'Raw Bristle Whisker Catfish'),
|
|
(11103, 6309, 0, 0.4, 0, 1, 1, 1, 1, '17 Pound Catfish'),
|
|
(11103, 6310, 0, 0.2, 0, 1, 1, 1, 1, '19 Pound Catfish'),
|
|
(11103, 6311, 0, 0.06, 0, 1, 1, 1, 1, '22 Pound Catfish'),
|
|
(11103, 6363, 0, 0.03, 0, 1, 1, 1, 1, '26 Pound Catfish'),
|
|
(11103, 6364, 0, 0.01, 0, 1, 1, 1, 1, '32 Pound Catfish'),
|
|
(11103, 6645, 0, 0.3, 0, 1, 1, 1, 1, 'Bloated Mud Snapper'),
|
|
(11103, 6718, 0, 25, 1, 1, 0, 1, 1, 'Electropeller'),
|
|
(11103, 12238, 0, 30, 0, 1, 1, 1, 1, 'Darkshore Grouper'),
|
|
(11104, 6303, 0, 18.5, 0, 1, 1, 1, 1, 'Raw Slitherskin Mackerel'),
|
|
(11104, 6307, 0, 0.5, 0, 1, 1, 1, 1, 'Message in a Bottle'),
|
|
(11104, 6351, 0, 0.5, 0, 1, 1, 1, 1, 'Dented Crate'),
|
|
(11104, 6353, 0, 0.5, 0, 1, 1, 1, 1, 'Small Chest'),
|
|
(11104, 6358, 0, 10, 0, 1, 1, 1, 1, 'Oily Blackmouth'),
|
|
(11104, 6361, 0, 0, 0, 1, 1, 1, 1, 'Raw Rainbow Fin Albacore'),
|
|
(11104, 6717, 0, 25, 1, 1, 1, 1, 1, 'Gaffer Jack'),
|
|
(11104, 12238, 0, 30, 0, 1, 1, 1, 1, 'Darkshore Grouper'),
|
|
(11105, 4603, 0, 5, 0, 1, 1, 1, 1, 'Raw Spotted Yellowtail'),
|
|
(11105, 7973, 0, 10, 0, 1, 1, 1, 1, 'Big-mouth Clam'),
|
|
(11105, 13422, 0, 18, 0, 1, 1, 1, 1, 'Stonescale Eel'),
|
|
(11105, 13755, 0, 20, 0, 1, 1, 1, 1, ''),
|
|
(11105, 13756, 0, 20, 0, 1, 1, 1, 1, 'Raw Summer Bass'),
|
|
(11105, 13874, 0, 0.6, 0, 1, 1, 1, 1, 'Heavy Crate'),
|
|
(11105, 13888, 0, 0, 0, 1, 1, 1, 1, 'Darkclaw Lobster'),
|
|
(11105, 13893, 0, 5, 0, 1, 1, 1, 1, 'Large Raw Mightfish'),
|
|
(11105, 13907, 0, 0.3, 0, 1, 1, 1, 1, '7 Pound Lobster'),
|
|
(11105, 13908, 0, 0.2, 0, 1, 1, 1, 1, '9 Pound Lobster'),
|
|
(11105, 13909, 0, 0.15, 0, 1, 1, 1, 1, '12 Pound Lobster'),
|
|
(11105, 13910, 0, 0.08, 0, 1, 1, 1, 1, '15 Pound Lobster'),
|
|
(11105, 13911, 0, 0.06, 0, 1, 1, 1, 1, '19 Pound Lobster'),
|
|
(11105, 13912, 0, 0.03, 0, 1, 1, 1, 1, '21 Pound Lobster'),
|
|
(11105, 13913, 0, 0.01, 0, 1, 1, 1, 1, '22 Pound Lobster'),
|
|
(11105, 13914, 0, 0.2, 0, 1, 1, 1, 1, '70 Pound Mightfish'),
|
|
(11105, 13915, 0, 0.06, 0, 1, 1, 1, 1, '85 Pound Mightfish'),
|
|
(11105, 13916, 0, 0.03, 0, 1, 1, 1, 1, '92 Pound Mightfish'),
|
|
(11105, 13917, 0, 0.01, 0, 1, 1, 1, 1, '103 Pound Mightfish'),
|
|
(11105, 13918, 0, 0.4, 0, 1, 1, 1, 1, 'Reinforced Locked Chest'),
|
|
(11106, 3857, 0, 20, 0, 1, 1, 1, 1, 'Coal'),
|
|
(11106, 6297, 0, 0, 0, 1, 1, 1, 1, 'Old Skull'),
|
|
(11107, 41806, 0, 32, 0, 1, 1, 1, 1, 'Musselback Sculpin'),
|
|
(11107, 41809, 0, 32, 0, 1, 1, 1, 1, 'Glacial Salmon'),
|
|
(11107, 41813, 0, 32, 0, 1, 1, 1, 1, 'Nettlefish'),
|
|
(11107, 45904, 0, 50, 1, 1, 2, 1, 1, 'Terrorfish'),
|
|
(11107, 45909, 0, 4, 0, 1, 1, 1, 1, 'Giant Darkwater Clam'),
|
|
(11111, 805, 0, 0, 0, 1, 1, 1, 1, 'Small Red Pouch'),
|
|
(11111, 828, 0, 0, 0, 1, 1, 1, 1, 'Small Blue Pouch'),
|
|
(11111, 4496, 0, 0, 0, 1, 1, 1, 1, 'Small Brown Pouch'),
|
|
(11111, 5571, 0, 0, 0, 1, 1, 1, 1, 'Small Black Pouch'),
|
|
(11111, 5572, 0, 0, 0, 1, 1, 1, 1, 'Small Green Pouch'),
|
|
(11113, 8827, 0, 25, 0, 1, 1, 2, 3, 'Elixir of Water Walking'),
|
|
(11113, 34861, 0, 75, 0, 1, 1, 4, 6, 'Sharpened Fish Hook'),
|
|
(11114, 33820, 0, 1, 0, 1, 1, 1, 1, 'Weather-Beaten Fishing Hat'),
|
|
(11114, 34831, 0, 0.9, 0, 1, 1, 1, 1, 'Eye of the Sea'),
|
|
(11114, 34834, 0, 1.7, 0, 1, 1, 1, 1, 'Recipe: Captain Rumsey\'s Lager'),
|
|
(11114, 34836, 0, 1.9, 0, 1, 1, 1, 1, 'Spun Truesilver Fishing Line'),
|
|
(11115, 22578, 0, 0, 0, 1, 1, 2, 4, 'Mote of Water'),
|
|
(11115, 24478, 0, 0, 0, 1, 1, 2, 3, 'Jaggal Pearl'),
|
|
(11115, 24479, 0, 3, 0, 1, 1, 1, 1, 'Shadow Pearl'),
|
|
(11115, 34822, 0, 1.2, 0, 1, 1, 1, 1, 'Ancient Coin'),
|
|
(11115, 34823, 0, 1.3, 0, 1, 1, 1, 1, 'Beautiful Glass Eye'),
|
|
(11115, 34824, 0, 1.2, 0, 1, 1, 1, 1, 'Silver Statuette'),
|
|
(11115, 34825, 0, 1.3, 0, 1, 1, 1, 1, 'Mithril Shaving Razor'),
|
|
(11115, 34826, 0, 1.3, 0, 1, 1, 1, 1, 'Gold Wedding Band'),
|
|
(11115, 34827, 0, 1.3, 0, 1, 1, 1, 1, 'Noble\'s Monocle'),
|
|
(11115, 34828, 0, 1.3, 0, 1, 1, 1, 1, 'Antique Silver Cufflinks'),
|
|
(11115, 34829, 0, 1.3, 0, 1, 1, 1, 1, 'Ornate Drinking Stein'),
|
|
(11115, 34837, 0, 0.05, 0, 1, 1, 1, 1, 'The 2 Ring'),
|
|
(11115, 34838, 0, 1.1, 0, 1, 1, 1, 1, 'Mariner\'s Log'),
|
|
(11115, 34839, 0, 0, 0, 1, 1, 1, 1, 'Piece of Polished Driftwood'),
|
|
(11115, 34840, 0, 0, 0, 1, 1, 1, 1, 'Broken Spyglass'),
|
|
(11115, 34841, 0, 0, 0, 1, 1, 2, 4, 'Salvaged Scrap Metal'),
|
|
(11115, 34843, 0, 0, 0, 1, 1, 1, 1, 'Giant Shark Tooth'),
|
|
(11115, 34859, 0, 0, 0, 1, 1, 1, 1, 'Razor Sharp Fillet Knife'),
|
|
(11115, 34860, 0, 0, 0, 1, 1, 1, 1, 'Rusted Lock'),
|
|
(11116, 33816, 0, 0, 0, 1, 1, 1, 1, 'Toothy\'s Bucket'),
|
|
(11116, 33818, 0, 0, 0, 1, 1, 1, 1, 'Muckbreath\'s Bucket'),
|
|
(11116, 35349, 0, 0, 0, 1, 1, 1, 1, 'Snarly\'s Bucket'),
|
|
(11116, 35350, 0, 0, 0, 1, 1, 1, 1, 'Chuck\'s Bucket'),
|
|
(11150, 19803, 0, 0.05, 0, 1, 1, 1, 1, 'Brownell\'s Blue Striped Racer'),
|
|
(11150, 19805, 0, 0.05, 0, 1, 1, 1, 1, 'Keefer\'s Angelfish'),
|
|
(11150, 19806, 0, 0.05, 0, 1, 1, 1, 1, 'Dezian Queenfish'),
|
|
(11150, 19807, 0, 33, 0, 1, 1, 1, 1, 'Speckled Tastyfish'),
|
|
(11150, 19808, 0, 0.01, 0, 1, 1, 1, 1, 'Rockhide Strongfish'),
|
|
(11799, 45190, 0, 15, 0, 32768, 1, 1, 1, 'Driftwood'),
|
|
(11799, 45191, 0, 2, 0, 32768, 1, 1, 1, 'Empty Clam'),
|
|
(11799, 45194, 0, 15, 0, 32768, 1, 1, 1, 'Tangled Fishing Line'),
|
|
(11799, 45195, 0, 5, 0, 32768, 1, 1, 1, 'Empty Rum Bottle'),
|
|
(11799, 45196, 0, 15, 0, 32768, 1, 1, 1, 'Tattered Cloth'),
|
|
(11799, 45197, 0, 5, 0, 32768, 1, 1, 1, 'Tree Branch'),
|
|
(11799, 45198, 0, 15, 0, 32768, 1, 1, 1, 'Weeds'),
|
|
(11799, 45199, 0, 5, 0, 32768, 1, 1, 1, 'Old Boot'),
|
|
(11799, 45200, 0, 15, 0, 32768, 1, 1, 1, 'Sickly Fish'),
|
|
(11799, 45201, 0, 3, 0, 32768, 1, 1, 1, 'Rock'),
|
|
(11799, 45202, 0, 5, 0, 32768, 1, 1, 1, 'Water Snail'),
|
|
(11800, 21929, 0, 0, 0, 1, 1, 1, 1, 'Flame Spessarite'),
|
|
(11800, 23077, 0, 0, 0, 1, 1, 1, 1, 'Blood Garnet'),
|
|
(11800, 23079, 0, 0, 0, 1, 1, 1, 1, 'Deep Peridot'),
|
|
(11800, 23107, 0, 0, 0, 1, 1, 1, 1, 'Shadow Draenite'),
|
|
(11800, 23112, 0, 0, 0, 1, 1, 1, 1, 'Golden Draenite'),
|
|
(11800, 23117, 0, 0, 0, 1, 1, 1, 1, 'Azure Moonstone'),
|
|
(11900, 39151, 0, 100, 0, 1, 0, 2, 4, 'Alabaster Pigment'),
|
|
(11901, 39334, 0, 100, 0, 1, 0, 2, 3, 'Dusky Pigment'),
|
|
(11901, 43103, 0, 25, 0, 1, 0, 1, 3, 'Verdant Pigment'),
|
|
(11902, 39334, 0, 100, 0, 1, 0, 2, 4, 'Dusky Pigment'),
|
|
(11902, 43103, 0, 25, 0, 1, 0, 1, 3, 'Verdant Pigment'),
|
|
(11903, 39334, 0, 100, 0, 1, 0, 2, 4, 'Dusky Pigment'),
|
|
(11903, 43103, 0, 50, 0, 1, 0, 1, 3, 'Verdant Pigment'),
|
|
(11904, 39338, 0, 100, 0, 1, 0, 2, 3, 'Golden Pigment'),
|
|
(11904, 43104, 0, 25, 0, 1, 0, 1, 3, 'Burnt Pigment'),
|
|
(11905, 39338, 0, 100, 0, 1, 0, 2, 4, 'Golden Pigment'),
|
|
(11905, 43104, 0, 50, 0, 1, 0, 1, 3, 'Burnt Pigment'),
|
|
(11906, 39339, 0, 100, 0, 1, 0, 2, 3, 'Emerald Pigment'),
|
|
(11906, 43105, 0, 25, 0, 1, 0, 1, 3, 'Indigo Pigment'),
|
|
(11907, 39339, 0, 100, 0, 1, 0, 2, 4, 'Emerald Pigment'),
|
|
(11907, 43105, 0, 50, 0, 1, 0, 1, 3, 'Indigo Pigment'),
|
|
(11908, 39340, 0, 100, 0, 1, 0, 2, 3, 'Violet Pigment'),
|
|
(11908, 43106, 0, 25, 0, 1, 0, 1, 3, 'Ruby Pigment'),
|
|
(11909, 39340, 0, 100, 0, 1, 0, 2, 4, 'Violet Pigment'),
|
|
(11909, 43106, 0, 50, 0, 1, 0, 1, 3, 'Ruby Pigment'),
|
|
(11910, 39341, 0, 100, 0, 1, 0, 2, 3, 'Silvery Pigment'),
|
|
(11910, 43107, 0, 25, 0, 1, 0, 1, 3, 'Sapphire Pigment'),
|
|
(11911, 39341, 0, 100, 0, 1, 0, 2, 4, 'Silvery Pigment'),
|
|
(11911, 43107, 0, 50, 0, 1, 0, 1, 3, 'Sapphire Pigment'),
|
|
(11912, 39342, 0, 100, 0, 1, 0, 2, 3, 'Nether Pigment'),
|
|
(11912, 43108, 0, 25, 0, 1, 0, 1, 3, 'Ebon Pigment'),
|
|
(11913, 39342, 0, 100, 0, 1, 0, 2, 4, 'Nether Pigment'),
|
|
(11913, 43108, 0, 25, 0, 1, 0, 1, 3, 'Ebon Pigment'),
|
|
(11914, 39342, 0, 100, 0, 1, 0, 2, 4, 'Nether Pigment'),
|
|
(11914, 43108, 0, 50, 0, 1, 0, 1, 3, 'Ebon Pigment'),
|
|
(11915, 39343, 0, 100, 0, 1, 0, 2, 3, 'Azure Pigment'),
|
|
(11915, 43109, 0, 25, 0, 1, 0, 1, 3, 'Icy Pigment'),
|
|
(11916, 39343, 0, 100, 0, 1, 0, 2, 4, 'Azure Pigment'),
|
|
(11916, 43109, 0, 25, 0, 1, 0, 1, 3, 'Icy Pigment'),
|
|
(11917, 39343, 0, 100, 0, 1, 0, 2, 4, 'Azure Pigment'),
|
|
(11917, 43109, 0, 50, 0, 1, 0, 1, 3, 'Icy Pigment'),
|
|
(11918, 39343, 0, 100, 0, 1, 0, 2, 4, 'Azure Pigment'),
|
|
(11918, 43109, 0, 50, 0, 1, 0, 1, 4, 'Icy Pigment'),
|
|
(12000, 18803, 0, 0, 0, 1, 2, 1, 1, NULL),
|
|
(12000, 18805, 0, 0, 0, 1, 2, 1, 1, NULL),
|
|
(12000, 18806, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(12000, 18808, 0, 0, 0, 1, 2, 1, 1, NULL),
|
|
(12000, 18809, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(12000, 18810, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(12000, 18811, 0, 0, 0, 1, 2, 1, 1, NULL),
|
|
(12000, 18812, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(12000, 19139, 0, 0, 0, 1, 2, 1, 1, NULL),
|
|
(12000, 19140, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(12001, 28745, 0, 8.33333, 0, 1, 1, 1, 1, 'Mithril Chain of Heroism'),
|
|
(12001, 28746, 0, 8.33333, 0, 1, 1, 1, 1, 'Fiend Slayer Boots'),
|
|
(12001, 28747, 0, 8.33333, 0, 1, 1, 1, 1, 'Battlescar Boots'),
|
|
(12001, 28748, 0, 8.33333, 0, 1, 1, 1, 1, 'Legplates of the Innocent'),
|
|
(12001, 28749, 0, 8.33333, 0, 1, 1, 1, 1, 'King\'s Defender'),
|
|
(12001, 28750, 0, 8.33333, 0, 1, 1, 1, 1, 'Girdle of Treachery'),
|
|
(12001, 28751, 0, 8.33333, 0, 1, 1, 1, 1, 'Heart-Flame Leggings'),
|
|
(12001, 28752, 0, 8.33333, 0, 1, 1, 1, 1, 'Forestlord Striders'),
|
|
(12001, 28753, 0, 8.33333, 0, 1, 1, 1, 1, 'Ring of Recurrence'),
|
|
(12001, 28754, 0, 8.33333, 0, 1, 1, 1, 1, 'Triptych Shield of the Ancients'),
|
|
(12001, 28755, 0, 8.33333, 0, 1, 1, 1, 1, 'Bladed Shoulderpads of the Merciless'),
|
|
(12001, 28756, 0, 8.33333, 0, 1, 1, 1, 1, 'Headdress of the High Potentate'),
|
|
(12002, 47242, 0, 100, 0, 1, 0, 1, 1, 'Trophy of the Crusade'),
|
|
(12003, 24044, 0, 0, 0, 1, 1, 1, 1, 'Hellreaver'),
|
|
(12003, 24045, 0, 0, 0, 1, 1, 1, 1, 'Band of Renewal'),
|
|
(12003, 24046, 0, 0, 0, 1, 1, 1, 1, 'Kilt of Rolling Thunders'),
|
|
(12003, 24063, 0, 0, 0, 1, 1, 1, 1, 'Shifting Sash of Midnight'),
|
|
(12003, 24064, 0, 0, 0, 1, 1, 1, 1, 'Ironsole Clompers'),
|
|
(12003, 24083, 0, 0, 0, 1, 1, 1, 1, 'Lifegiver Britches'),
|
|
(12003, 24150, 0, 0, 0, 1, 1, 1, 1, 'Mok\'Nathal Wildercloak'),
|
|
(12003, 24151, 0, 0, 0, 1, 1, 1, 1, 'Mok\'Nathal Clan Ring'),
|
|
(12003, 24154, 0, 0, 0, 1, 1, 1, 1, 'Witching Band'),
|
|
(12003, 24155, 0, 0, 0, 1, 1, 1, 1, 'Ursol\'s Claw'),
|
|
(12005, 11920, 0, 0, 0, 1, 1, 1, 1, 'Wraith Scythe'),
|
|
(12005, 11921, 0, 0, 0, 1, 1, 1, 1, 'Impervious Giant'),
|
|
(12005, 11922, 0, 0, 0, 1, 1, 1, 1, 'Blood-etched Blade'),
|
|
(12005, 11923, 0, 0, 0, 1, 1, 1, 1, 'The Hammer of Grace'),
|
|
(12005, 11925, 0, 0, 0, 1, 1, 1, 1, 'Ghostshroud'),
|
|
(12005, 11926, 0, 0, 0, 1, 1, 1, 1, 'Deathdealer Breastplate'),
|
|
(12005, 11927, 0, 0, 0, 1, 1, 1, 1, 'Legplates of the Eternal Guardian'),
|
|
(12005, 11929, 0, 0, 0, 1, 1, 1, 1, 'Haunting Specter Leggings'),
|
|
(12006, 4304, 0, 0, 0, 1, 1, 5, 10, 'Thick Leather'),
|
|
(12006, 4338, 0, 0, 0, 1, 1, 10, 15, 'Mageweave Cloth'),
|
|
(12006, 8150, 0, 0, 0, 1, 1, 2, 6, 'Deeprock Salt'),
|
|
(12006, 8153, 0, 0, 0, 1, 1, 1, 4, 'Wildvine'),
|
|
(12006, 8154, 0, 0, 0, 1, 1, 1, 6, 'Scorpid Scale'),
|
|
(12006, 8165, 0, 0, 0, 1, 1, 1, 5, 'Worn Dragonscale'),
|
|
(12006, 8170, 0, 0, 0, 1, 1, 5, 16, 'Rugged Leather'),
|
|
(12006, 14047, 0, 0, 0, 1, 1, 5, 17, 'Runecloth'),
|
|
(12006, 14256, 0, 0, 0, 1, 1, 2, 4, 'Felcloth'),
|
|
(12006, 15408, 0, 0, 0, 1, 1, 1, 4, 'Heavy Scorpid Scale'),
|
|
(12006, 15412, 0, 0, 0, 1, 1, 2, 4, 'Green Dragonscale'),
|
|
(12006, 15414, 0, 0, 0, 1, 1, 2, 8, 'Red Dragonscale'),
|
|
(12006, 15416, 0, 0, 0, 1, 1, 2, 4, 'Black Dragonscale'),
|
|
(12007, 18475, 0, 0, 0, 2, 1, 1, 1, 'Oddly Magical Belt'),
|
|
(12007, 18476, 0, 0, 0, 4, 1, 1, 1, 'Mud Stained Boots'),
|
|
(12007, 18477, 0, 0, 0, 2, 1, 1, 1, 'Shaggy Leggings'),
|
|
(12007, 18478, 0, 0, 0, 4, 1, 1, 1, 'Hyena Hide Jerkin'),
|
|
(12007, 18479, 0, 0, 0, 4, 1, 1, 1, 'Carrion Scorpid Helm'),
|
|
(12007, 18480, 0, 0, 0, 2, 1, 1, 1, 'Scarab Plate Helm'),
|
|
(12007, 18481, 0, 0, 0, 4, 1, 1, 1, 'Skullcracking Mace'),
|
|
(12007, 18482, 0, 0, 0, 2, 1, 1, 1, 'Ogre Toothpick Shooter'),
|
|
(12007, 18495, 0, 0, 0, 16, 1, 1, 1, 'Redoubt Cloak'),
|
|
(12007, 18499, 0, 0, 0, 8, 1, 1, 1, 'Barrier Shield'),
|
|
(12007, 18500, 0, 0, 0, 4, 1, 1, 1, 'Tarnished Elven Ring'),
|
|
(12007, 18528, 0, 0, 0, 4, 1, 1, 1, 'Cyclone Spaulders'),
|
|
(12007, 18529, 0, 0, 0, 4, 1, 1, 1, 'Elemental Plate Girdle'),
|
|
(12007, 18530, 0, 0, 0, 8, 1, 1, 1, 'Ogre Forged Hauberk'),
|
|
(12007, 18531, 0, 0, 0, 8, 1, 1, 1, 'Unyielding Maul'),
|
|
(12007, 18532, 0, 0, 0, 8, 1, 1, 1, 'Mindsurge Robe'),
|
|
(12007, 18533, 0, 0, 0, 16, 1, 1, 1, 'Gordok Bracers of Power'),
|
|
(12007, 18534, 0, 0, 0, 16, 1, 1, 1, 'Rod of the Ogre Magi'),
|
|
(12007, 18537, 0, 0, 0, 16, 1, 1, 1, 'Counterattack Lodestone'),
|
|
(12007, 18538, 0, 0.1, 0, 32, 1, 1, 1, 'Treant\'s Bane'),
|
|
(12007, 18655, 0, 0, 0, 8, 1, 1, 1, 'Schematic: Major Recombobulator'),
|
|
(12009, 36908, 0, 100, 0, 1, 0, 1, 1, 'Frost Lotus'),
|
|
(12018, 27743, 0, 0, 0, 1, 1, 1, 1, 'Girdle of Living Flame'),
|
|
(12018, 27744, 0, 0, 0, 1, 1, 1, 1, 'Idol of Ursoc'),
|
|
(12018, 27745, 0, 0, 0, 1, 1, 1, 1, 'Hungarhide Gauntlets'),
|
|
(12018, 27746, 0, 0, 0, 1, 1, 1, 1, 'Arcanium Signet Bands'),
|
|
(12018, 27747, 0, 0, 0, 1, 1, 1, 1, 'Boggspine Knuckles'),
|
|
(12018, 27748, 0, 0, 0, 1, 1, 1, 1, 'Cassock of the Loyal'),
|
|
(12023, 45570, 0, 0, 0, 1, 1, 1, 1, 'Skyforge Crossbow'),
|
|
(12023, 45587, 0, 0, 0, 1, 1, 1, 1, 'Bulwark of Algalon'),
|
|
(12023, 45594, 0, 0, 0, 1, 1, 1, 1, 'Legplates of the Endless Void'),
|
|
(12023, 45599, 0, 0, 0, 1, 1, 1, 1, 'Sabatons of Lifeless Night'),
|
|
(12023, 45607, 0, 0, 0, 1, 1, 1, 1, 'Fang of Oblivion'),
|
|
(12023, 45609, 0, 0, 0, 1, 1, 1, 1, 'Comet\'s Trail'),
|
|
(12023, 45610, 0, 0, 0, 1, 1, 1, 1, 'Boundless Gaze'),
|
|
(12023, 45611, 0, 0, 0, 1, 1, 1, 1, 'Solar Bindings'),
|
|
(12023, 45612, 0, 0, 0, 1, 1, 1, 1, 'Constellus'),
|
|
(12023, 45613, 0, 0, 0, 1, 1, 1, 1, 'Dreambinder'),
|
|
(12023, 45615, 0, 0, 0, 1, 1, 1, 1, 'Planewalker Treads'),
|
|
(12023, 45616, 0, 0, 0, 1, 1, 1, 1, 'Star-beaded Clutch'),
|
|
(12023, 45617, 0, 0, 0, 1, 1, 1, 1, 'Cosmos'),
|
|
(12023, 45619, 0, 0, 0, 1, 1, 1, 1, 'Starwatcher\'s Binding'),
|
|
(12023, 45620, 0, 0, 0, 1, 1, 1, 1, 'Starshard Edge'),
|
|
(12023, 45665, 0, 0, 0, 1, 1, 1, 1, 'Pharos Gloves'),
|
|
(12024, 43228, 0, 100, 0, 1, 0, 3, 3, 'Stone Keeper\'s Shard'),
|
|
(12024, 47176, 0, 0, 0, 1, 1, 1, 1, 'Breastplate of the Imperial Joust'),
|
|
(12024, 47177, 0, 0, 0, 1, 1, 1, 1, 'Gloves of the Argent Fanatic'),
|
|
(12024, 47178, 0, 0, 0, 1, 1, 1, 1, 'Carapace of Grim Visions'),
|
|
(12024, 47181, 0, 0, 0, 1, 1, 1, 1, 'Belt of the Churning Blaze'),
|
|
(12024, 47185, 0, 0, 0, 1, 1, 1, 1, 'Leggings of the Haggard Apprentice'),
|
|
(12024, 47213, 0, 0, 0, 1, 1, 1, 1, 'Abyssal Rune'),
|
|
(12025, 43228, 0, 100, 0, 1, 0, 4, 4, 'Stone Keeper\'s Shard'),
|
|
(12025, 44990, 0, 100, 0, 1, 0, 1, 1, 'Champion\'s Seal'),
|
|
(12025, 47494, 0, 0, 0, 1, 1, 1, 1, 'Ancient Pendant of Arathor'),
|
|
(12025, 47495, 0, 0, 0, 1, 1, 1, 1, 'Legplates of Relentless Onslaught'),
|
|
(12025, 47496, 0, 0, 0, 1, 1, 1, 1, 'Armbands of the Wary Lookout'),
|
|
(12025, 47497, 0, 0, 0, 1, 1, 1, 1, 'Helm of the Crestfallen Challenger'),
|
|
(12025, 47498, 0, 0, 0, 1, 1, 1, 1, 'Gloves of Dismal Fortune'),
|
|
(12025, 47500, 0, 0, 0, 1, 1, 1, 1, 'Peacekeeper Blade'),
|
|
(12026, 45644, 0, 0, 0, 1, 1, 1, 1, 'Gloves of the Wayward Conqueror'),
|
|
(12026, 45645, 0, 0, 0, 1, 1, 1, 1, 'Gloves of the Wayward Protector'),
|
|
(12026, 45646, 0, 0, 0, 1, 1, 1, 1, 'Gloves of the Wayward Vanquisher'),
|
|
(12027, 45653, 0, 0, 0, 1, 1, 1, 1, 'Legplates of the Wayward Conqueror'),
|
|
(12027, 45654, 0, 0, 0, 1, 1, 1, 1, 'Legplates of the Wayward Protector'),
|
|
(12027, 45655, 0, 0, 0, 1, 1, 1, 1, 'Legplates of the Wayward Vanquisher'),
|
|
(12028, 45650, 0, 0, 0, 1, 1, 1, 1, 'Leggings of the Wayward Conqueror'),
|
|
(12028, 45651, 0, 0, 0, 1, 1, 1, 1, 'Leggings of the Wayward Protector'),
|
|
(12028, 45652, 0, 0, 0, 1, 1, 1, 1, 'Leggings of the Wayward Vanquisher'),
|
|
(12029, 45632, 0, 0, 0, 1, 1, 1, 1, 'Breastplate of the Wayward Conqueror'),
|
|
(12029, 45633, 0, 0, 0, 1, 1, 1, 1, 'Breastplate of the Wayward Protector'),
|
|
(12029, 45634, 0, 0, 0, 1, 1, 1, 1, 'Breastplate of the Wayward Vanquisher'),
|
|
(12030, 45647, 0, 0, 0, 1, 1, 1, 1, 'Helm of the Wayward Conqueror'),
|
|
(12030, 45648, 0, 0, 0, 1, 1, 1, 1, 'Helm of the Wayward Protector'),
|
|
(12030, 45649, 0, 0, 0, 1, 1, 1, 1, 'Helm of the Wayward Vanquisher'),
|
|
(12031, 45641, 0, 0, 0, 1, 1, 1, 1, 'Gauntlets of the Wayward Conqueror'),
|
|
(12031, 45642, 0, 0, 0, 1, 1, 1, 1, 'Gauntlets of the Wayward Protector'),
|
|
(12031, 45643, 0, 0, 0, 1, 1, 1, 1, 'Gauntlets of the Wayward Vanquisher'),
|
|
(12032, 45659, 0, 0, 0, 1, 1, 1, 1, 'Spaulders of the Wayward Conqueror'),
|
|
(12032, 45660, 0, 0, 0, 1, 1, 1, 1, 'Spaulders of the Wayward Protector'),
|
|
(12032, 45661, 0, 0, 0, 1, 1, 1, 1, 'Spaulders of the Wayward Vanquisher'),
|
|
(12033, 45638, 0, 0, 0, 1, 1, 1, 1, 'Crown of the Wayward Conqueror'),
|
|
(12033, 45639, 0, 0, 0, 1, 1, 1, 1, 'Crown of the Wayward Protector'),
|
|
(12033, 45640, 0, 0, 0, 1, 1, 1, 1, 'Crown of the Wayward Vanquisher'),
|
|
(12034, 45635, 0, 0, 0, 1, 1, 1, 1, 'Chestguard of the Wayward Conqueror'),
|
|
(12034, 45636, 0, 0, 0, 1, 1, 1, 1, 'Chestguard of the Wayward Protector'),
|
|
(12034, 45637, 0, 0, 0, 1, 1, 1, 1, 'Chestguard of the Wayward Vanquisher'),
|
|
(12035, 45656, 0, 0, 0, 1, 1, 1, 1, 'Mantle of the Wayward Conqueror'),
|
|
(12035, 45657, 0, 0, 0, 1, 1, 1, 1, 'Mantle of the Wayward Protector'),
|
|
(12035, 45658, 0, 0, 0, 1, 1, 1, 1, 'Mantle of the Wayward Vanquisher'),
|
|
(12036, 50340, 0, 0, 0, 1, 1, 1, 1, 'Muradin\'s Spyglass'),
|
|
(12036, 50787, 0, 0, 0, 1, 1, 1, 1, 'Frost Giant\'s Cleaver'),
|
|
(12036, 50788, 0, 0, 0, 1, 1, 1, 1, 'Bone Drake\'s Enameled Boots'),
|
|
(12036, 50789, 0, 0, 0, 1, 1, 1, 1, 'Icecrown Rampart Bracers'),
|
|
(12036, 50790, 0, 0, 0, 1, 1, 1, 1, 'Abomination\'s Bloody Ring'),
|
|
(12036, 50791, 0, 0, 0, 1, 1, 1, 1, 'Saronite Gargoyle Cloak'),
|
|
(12036, 50792, 0, 0, 0, 1, 1, 1, 1, 'Pauldrons of Lost Hope'),
|
|
(12036, 50793, 0, 0, 0, 1, 1, 1, 1, 'Midnight Sun'),
|
|
(12036, 50794, 0, 0, 0, 1, 1, 1, 1, 'Neverending Winter'),
|
|
(12036, 50795, 0, 0, 0, 1, 1, 1, 1, 'Cord of Dark Suffering'),
|
|
(12036, 50796, 0, 0, 0, 1, 1, 1, 1, 'Bracers of Pale Illumination'),
|
|
(12036, 50797, 0, 0, 0, 1, 1, 1, 1, 'Ice-Reinforced Vrykul Helm'),
|
|
(12900, 7910, 0, 12, 0, 1, 1, 1, 1, 'Star Ruby'),
|
|
(12900, 12361, 0, 12, 0, 1, 1, 1, 1, 'Blue Sapphire'),
|
|
(12900, 12363, 0, 40, 0, 1, 1, 1, 1, 'Arcane Crystal'),
|
|
(12900, 12364, 0, 12, 0, 1, 1, 1, 1, 'Huge Emerald'),
|
|
(12900, 12799, 0, 12, 0, 1, 1, 1, 1, 'Large Opal'),
|
|
(12900, 12800, 0, 12, 0, 1, 1, 1, 1, 'Azerothian Diamond'),
|
|
(12901, 21929, 0, 0, 0, 1, 1, 1, 1, 'Flame Spessarite'),
|
|
(12901, 23077, 0, 0, 0, 1, 1, 1, 1, 'Blood Garnet'),
|
|
(12901, 23079, 0, 0, 0, 1, 1, 1, 1, 'Deep Peridot'),
|
|
(12901, 23107, 0, 0, 0, 1, 1, 1, 1, 'Shadow Draenite'),
|
|
(12901, 23112, 0, 0, 0, 1, 1, 1, 1, 'Golden Draenite'),
|
|
(12901, 23117, 0, 0, 0, 1, 1, 1, 1, 'Azure Moonstone'),
|
|
(12902, 23436, 0, 0, 0, 1, 1, 1, 1, 'Living Ruby'),
|
|
(12902, 23437, 0, 0, 0, 1, 1, 1, 1, 'Talasite'),
|
|
(12902, 23438, 0, 0, 0, 1, 1, 1, 1, 'Star of Elune'),
|
|
(12902, 23439, 0, 0, 0, 1, 1, 1, 1, 'Noble Topaz'),
|
|
(12902, 23440, 0, 0, 0, 1, 1, 1, 1, 'Dawnstone'),
|
|
(12902, 23441, 0, 0, 0, 1, 1, 1, 1, 'Nightseye'),
|
|
(12903, 32227, 0, 0, 0, 1, 1, 1, 2, 'Crimson Spinel'),
|
|
(12903, 32228, 0, 0, 0, 1, 1, 1, 2, 'Empyrean Sapphire'),
|
|
(12903, 32229, 0, 0, 0, 1, 1, 1, 2, 'Lionseye'),
|
|
(12903, 32230, 0, 0, 0, 1, 1, 1, 2, 'Shadowsong Amethyst'),
|
|
(12903, 32231, 0, 0, 0, 1, 1, 1, 2, 'Pyrestone'),
|
|
(12903, 32249, 0, 0, 0, 1, 1, 1, 2, 'Seaspray Emerald'),
|
|
(12904, 21929, 0, 0, 0, 1, 1, 1, 2, 'Flame Spessarite'),
|
|
(12904, 23077, 0, 0, 0, 1, 1, 1, 2, 'Blood Garnet'),
|
|
(12904, 23079, 0, 0, 0, 1, 1, 1, 2, 'Deep Peridot'),
|
|
(12904, 23107, 0, 0, 0, 1, 1, 1, 2, 'Shadow Draenite'),
|
|
(12904, 23112, 0, 0, 0, 1, 1, 1, 2, 'Golden Draenite'),
|
|
(12904, 23117, 0, 0, 0, 1, 1, 1, 2, 'Azure Moonstone'),
|
|
(12905, 36917, 0, 0, 0, 1, 1, 1, 1, 'Bloodstone'),
|
|
(12905, 36920, 0, 0, 0, 1, 1, 1, 1, 'Sun Crystal'),
|
|
(12905, 36923, 0, 0, 0, 1, 1, 1, 1, 'Chalcedony'),
|
|
(12905, 36926, 0, 0, 0, 1, 1, 1, 1, 'Shadow Crystal'),
|
|
(12905, 36929, 0, 0, 0, 1, 1, 1, 1, 'Huge Citrine'),
|
|
(12905, 36932, 0, 0, 0, 1, 1, 1, 1, 'Dark Jade'),
|
|
(12906, 36918, 0, 0, 0, 1, 1, 1, 1, 'Scarlet Ruby'),
|
|
(12906, 36921, 0, 0, 0, 1, 1, 1, 1, 'Autumn\'s Glow'),
|
|
(12906, 36924, 0, 0, 0, 1, 1, 1, 1, 'Sky Sapphire'),
|
|
(12906, 36927, 0, 0, 0, 1, 1, 1, 1, 'Twilight Opal'),
|
|
(12906, 36930, 0, 0, 0, 1, 1, 1, 1, 'Monarch Topaz'),
|
|
(12906, 36933, 0, 0, 0, 1, 1, 1, 1, 'Forest Emerald'),
|
|
(13000, 1529, 0, 0, 0, 1, 1, 1, 1, 'Jade'),
|
|
(13000, 3864, 0, 0, 0, 1, 1, 1, 1, 'Citrine'),
|
|
(13000, 7909, 0, 0, 0, 1, 1, 1, 1, 'Aquamarine'),
|
|
(13001, 21929, 0, 0, 0, 1, 1, 1, 2, 'Flame Spessarite'),
|
|
(13001, 23077, 0, 0, 0, 1, 1, 1, 2, 'Blood Garnet'),
|
|
(13001, 23079, 0, 0, 0, 1, 1, 1, 2, 'Deep Peridot'),
|
|
(13001, 23107, 0, 0, 0, 1, 1, 1, 2, 'Shadow Draenite'),
|
|
(13001, 23112, 0, 0, 0, 1, 1, 1, 2, 'Golden Draenite'),
|
|
(13001, 23117, 0, 0, 0, 1, 1, 1, 2, 'Azure Moonstone'),
|
|
(13002, 23436, 0, 0, 0, 1, 1, 1, 1, 'Living Ruby'),
|
|
(13002, 23437, 0, 0, 0, 1, 1, 1, 1, 'Talasite'),
|
|
(13002, 23438, 0, 0, 0, 1, 1, 1, 1, 'Star of Elune'),
|
|
(13002, 23439, 0, 0, 0, 1, 1, 1, 1, 'Noble Topaz'),
|
|
(13002, 23440, 0, 0, 0, 1, 1, 1, 1, 'Dawnstone'),
|
|
(13002, 23441, 0, 0, 0, 1, 1, 1, 1, 'Nightseye'),
|
|
(13005, 36919, 0, 0, 0, 1, 1, 1, 1, 'Cardinal Ruby'),
|
|
(13005, 36922, 0, 0, 0, 1, 1, 1, 1, 'King\'s Amber'),
|
|
(13005, 36925, 0, 0, 0, 1, 1, 1, 1, 'Majestic Zircon'),
|
|
(13005, 36928, 0, 0, 0, 1, 1, 1, 1, 'Dreadstone'),
|
|
(13005, 36931, 0, 0, 0, 1, 1, 1, 1, 'Ametrine'),
|
|
(13005, 36934, 0, 0, 0, 1, 1, 1, 1, 'Eye of Zul'),
|
|
(14001, 20866, 0, 0, 0, 1, 1, 1, 2, 'Azure Idol'),
|
|
(14001, 20867, 0, 0, 0, 1, 1, 1, 2, 'Onyx Idol'),
|
|
(14001, 20868, 0, 0, 0, 1, 1, 1, 2, 'Lambent Idol'),
|
|
(14001, 20869, 0, 0, 0, 1, 1, 1, 2, 'Amber Idol'),
|
|
(14001, 20870, 0, 0, 0, 1, 1, 1, 2, 'Jasper Idol'),
|
|
(14001, 20871, 0, 0, 0, 1, 1, 1, 2, 'Obsidian Idol'),
|
|
(14001, 20872, 0, 0, 0, 1, 1, 1, 2, 'Vermillion Idol'),
|
|
(14001, 20873, 0, 0, 0, 1, 1, 1, 2, 'Alabaster Idol'),
|
|
(14002, 33358, 0, 0, 0, 1, 1, 1, 1, 'Thread-Bare Cloth Belt'),
|
|
(14002, 33359, 0, 0, 0, 1, 1, 1, 1, 'Thread-Bare Cloth Boots'),
|
|
(14002, 33360, 0, 0, 0, 1, 1, 1, 1, 'Thread-Bare Cloth Bracers'),
|
|
(14002, 33361, 0, 0, 0, 1, 1, 1, 1, 'Thread-Bare Cloth Gloves'),
|
|
(14002, 33362, 0, 0, 0, 1, 1, 1, 1, 'Thread-Bare Cloth Pants'),
|
|
(14002, 33363, 0, 0, 0, 1, 1, 1, 1, 'Thread-Bare Cloth Shoulderpads'),
|
|
(14002, 33364, 0, 0, 0, 1, 1, 1, 1, 'Thread-Bare Cloth Vest'),
|
|
(14002, 33372, 0, 0, 0, 1, 1, 1, 1, 'Fur-Lined Armor'),
|
|
(14002, 33373, 0, 0, 0, 1, 1, 1, 1, 'Fur-Lined Belt'),
|
|
(14002, 33374, 0, 0, 0, 1, 1, 1, 1, 'Fur-Lined Boots'),
|
|
(14002, 33375, 0, 0, 0, 1, 1, 1, 1, 'Fur-Lined Bracers'),
|
|
(14002, 33376, 0, 0, 0, 1, 1, 1, 1, 'Fur-Lined Gloves'),
|
|
(14002, 33377, 0, 0, 0, 1, 1, 1, 1, 'Fur-Lined Pants'),
|
|
(14002, 33378, 0, 0, 0, 1, 1, 1, 1, 'Fur-Lined Shoulderpads'),
|
|
(14002, 33390, 0, 0, 0, 1, 1, 1, 1, 'Icy Mail Armor'),
|
|
(14002, 33391, 0, 0, 0, 1, 1, 1, 1, 'Icy Mail Belt'),
|
|
(14002, 33392, 0, 0, 0, 1, 1, 1, 1, 'Icy Mail Boots'),
|
|
(14002, 33393, 0, 0, 0, 1, 1, 1, 1, 'Icy Mail Bracers'),
|
|
(14002, 33394, 0, 0, 0, 1, 1, 1, 1, 'Icy Mail Gloves'),
|
|
(14002, 33395, 0, 0, 0, 1, 1, 1, 1, 'Icy Mail Pants'),
|
|
(14002, 33396, 0, 0, 0, 1, 1, 1, 1, 'Icy Mail Shoulderpads'),
|
|
(14002, 33404, 0, 0, 0, 1, 1, 1, 1, 'Ice-Bound Plate Belt'),
|
|
(14002, 33405, 0, 0, 0, 1, 1, 1, 1, 'Ice-Bound Plate Boots'),
|
|
(14002, 33406, 0, 0, 0, 1, 1, 1, 1, 'Ice-Bound Plate Bracers'),
|
|
(14002, 33407, 0, 0, 0, 1, 1, 1, 1, 'Ice-Bound Plate Chestpiece'),
|
|
(14002, 33408, 0, 0, 0, 1, 1, 1, 1, 'Ice-Bound Plate Gloves'),
|
|
(14002, 33409, 0, 0, 0, 1, 1, 1, 1, 'Ice-Bound Plate Pants'),
|
|
(14002, 33410, 0, 0, 0, 1, 1, 1, 1, 'Ice-Bound Plate Shoulderpads'),
|
|
(14002, 33437, 0, 0, 0, 1, 1, 1, 1, 'Icy Mail Circlet'),
|
|
(14002, 33438, 0, 0, 0, 1, 1, 1, 1, 'Thread-Bare Hat'),
|
|
(14002, 33439, 0, 0, 0, 1, 1, 1, 1, 'Fur-Lined Leather Helmet'),
|
|
(14002, 33440, 0, 0, 0, 1, 1, 1, 1, 'Ice-Bound Plate Helmet'),
|
|
(14003, 33365, 0, 0, 0, 1, 1, 1, 1, 'Frost-Rimed Cloth Belt'),
|
|
(14003, 33366, 0, 0, 0, 1, 1, 1, 1, 'Frost-Rimed Cloth Boots'),
|
|
(14003, 33367, 0, 0, 0, 1, 1, 1, 1, 'Frost-Rimed Cloth Bracers'),
|
|
(14003, 33368, 0, 0, 0, 1, 1, 1, 1, 'Frost-Rimed Cloth Gloves'),
|
|
(14003, 33369, 0, 0, 0, 1, 1, 1, 1, 'Frost-Rimed Cloth Pants'),
|
|
(14003, 33370, 0, 0, 0, 1, 1, 1, 1, 'Frost-Rimed Cloth Shoulderpads'),
|
|
(14003, 33371, 0, 0, 0, 1, 1, 1, 1, 'Frost-Rimed Cloth Vest'),
|
|
(14003, 33379, 0, 0, 0, 1, 1, 1, 1, 'Frozen Armor'),
|
|
(14003, 33380, 0, 0, 0, 1, 1, 1, 1, 'Frozen Belt'),
|
|
(14003, 33381, 0, 0, 0, 1, 1, 1, 1, 'Frozen Boots'),
|
|
(14003, 33382, 0, 0, 0, 1, 1, 1, 1, 'Frozen Bracers'),
|
|
(14003, 33383, 0, 0, 0, 1, 1, 1, 1, 'Frozen Gloves'),
|
|
(14003, 33384, 0, 0, 0, 1, 1, 1, 1, 'Frozen Pants'),
|
|
(14003, 33385, 0, 0, 0, 1, 1, 1, 1, 'Frozen Shoulderpads'),
|
|
(14003, 33397, 0, 0, 0, 1, 1, 1, 1, 'Frigid Mail Armor'),
|
|
(14003, 33398, 0, 0, 0, 1, 1, 1, 1, 'Frigid Mail Belt'),
|
|
(14003, 33399, 0, 0, 0, 1, 1, 1, 1, 'Frigid Mail Boots'),
|
|
(14003, 33400, 0, 0, 0, 1, 1, 1, 1, 'Frigid Mail Bracers'),
|
|
(14003, 33401, 0, 0, 0, 1, 1, 1, 1, 'Frigid Mail Gloves'),
|
|
(14003, 33402, 0, 0, 0, 1, 1, 1, 1, 'Frigid Mail Pants'),
|
|
(14003, 33403, 0, 0, 0, 1, 1, 1, 1, 'Frigid Mail Shoulderpads'),
|
|
(14003, 33412, 0, 0, 0, 1, 1, 1, 1, 'Frost-Worn Plate Belt'),
|
|
(14003, 33413, 0, 0, 0, 1, 1, 1, 1, 'Frost-Worn Plate Boots'),
|
|
(14003, 33414, 0, 0, 0, 1, 1, 1, 1, 'Frost-Worn Plate Bracers'),
|
|
(14003, 33415, 0, 0, 0, 1, 1, 1, 1, 'Frost-Worn Plate Chestpiece'),
|
|
(14003, 33416, 0, 0, 0, 1, 1, 1, 1, 'Frost-Worn Plate Gloves'),
|
|
(14003, 33417, 0, 0, 0, 1, 1, 1, 1, 'Frost-Worn Plate Pants'),
|
|
(14003, 33419, 0, 0, 0, 1, 1, 1, 1, 'Frost-Worn Plate Shoulderpads'),
|
|
(14003, 33433, 0, 0, 0, 1, 1, 1, 1, 'Frigid Mail Circlet'),
|
|
(14003, 33434, 0, 0, 0, 1, 1, 1, 1, 'Frozen Leather Helmet'),
|
|
(14003, 33435, 0, 0, 0, 1, 1, 1, 1, 'Frost-Worn Plate Helmet'),
|
|
(14003, 33436, 0, 0, 0, 1, 1, 1, 1, 'Frost-Rimed Cloth Hat'),
|
|
(14004, 33422, 0, 0, 0, 1, 1, 1, 1, 'Shattered Bow'),
|
|
(14004, 33423, 0, 0, 0, 1, 1, 1, 1, 'Rime-Covered Mace'),
|
|
(14004, 33424, 0, 0, 0, 1, 1, 1, 1, 'Cracked Iron Staff'),
|
|
(14004, 33425, 0, 0, 0, 1, 1, 1, 1, 'Ice-Pitted Blade'),
|
|
(14004, 33426, 0, 0, 0, 1, 1, 1, 1, 'Chipped Timber Axe'),
|
|
(14004, 33427, 0, 0, 0, 1, 1, 1, 1, 'Frost-Encrusted Rifle'),
|
|
(14004, 33428, 0, 0, 0, 1, 1, 1, 1, 'Dulled Shiv'),
|
|
(14004, 33429, 0, 0, 0, 1, 1, 1, 1, 'Ice Cleaver'),
|
|
(14004, 33430, 0, 0, 0, 1, 1, 1, 1, 'Abandoned Greatsword'),
|
|
(14004, 33431, 0, 0, 0, 1, 1, 1, 1, 'Icesmashing Mace'),
|
|
(14005, 35995, 0, 0, 0, 1, 1, 1, 1, 'Voldrune Sash'),
|
|
(14005, 35996, 0, 0, 0, 1, 1, 1, 1, 'Voldrune Slippers'),
|
|
(14005, 35997, 0, 0, 0, 1, 1, 1, 1, 'Voldrune Robe'),
|
|
(14005, 35998, 0, 0, 0, 1, 1, 1, 1, 'Voldrune Gloves'),
|
|
(14005, 35999, 0, 0, 0, 1, 1, 1, 1, 'Voldrune Crown'),
|
|
(14005, 36000, 0, 0, 0, 1, 1, 1, 1, 'Voldrune Legs'),
|
|
(14005, 36001, 0, 0, 0, 1, 1, 1, 1, 'Voldrune Mantle'),
|
|
(14005, 36002, 0, 0, 0, 1, 1, 1, 1, 'Voldrune Bracelets'),
|
|
(14005, 36107, 0, 0, 0, 1, 1, 1, 1, 'Vileprey Cord'),
|
|
(14005, 36108, 0, 0, 0, 1, 1, 1, 1, 'Vileprey Boots'),
|
|
(14005, 36109, 0, 0, 0, 1, 1, 1, 1, 'Vileprey Armor'),
|
|
(14005, 36110, 0, 0, 0, 1, 1, 1, 1, 'Vileprey Gloves'),
|
|
(14005, 36111, 0, 0, 0, 1, 1, 1, 1, 'Vileprey Hood'),
|
|
(14005, 36112, 0, 0, 0, 1, 1, 1, 1, 'Vileprey Leggings'),
|
|
(14005, 36113, 0, 0, 0, 1, 1, 1, 1, 'Vileprey Pauldrons'),
|
|
(14005, 36114, 0, 0, 0, 1, 1, 1, 1, 'Vileprey Bracers'),
|
|
(14005, 36219, 0, 0, 0, 1, 1, 1, 1, 'Amberpine Girdle'),
|
|
(14005, 36220, 0, 0, 0, 1, 1, 1, 1, 'Amberpine Greaves'),
|
|
(14005, 36221, 0, 0, 0, 1, 1, 1, 1, 'Amberpine Chain Vest'),
|
|
(14005, 36222, 0, 0, 0, 1, 1, 1, 1, 'Amberpine Gauntlets'),
|
|
(14005, 36223, 0, 0, 0, 1, 1, 1, 1, 'Amberpine Helmet'),
|
|
(14005, 36224, 0, 0, 0, 1, 1, 1, 1, 'Amberpine Legguards'),
|
|
(14005, 36225, 0, 0, 0, 1, 1, 1, 1, 'Amberpine Spaulders'),
|
|
(14005, 36226, 0, 0, 0, 1, 1, 1, 1, 'Amberpine Bracers'),
|
|
(14005, 36331, 0, 0, 0, 1, 1, 1, 1, 'Grizzlemaw Belt'),
|
|
(14005, 36332, 0, 0, 0, 1, 1, 1, 1, 'Grizzlemaw Sabatons'),
|
|
(14005, 36333, 0, 0, 0, 1, 1, 1, 1, 'Grizzlemaw Armor'),
|
|
(14005, 36334, 0, 0, 0, 1, 1, 1, 1, 'Grizzlemaw Gauntlets'),
|
|
(14005, 36335, 0, 0, 0, 1, 1, 1, 1, 'Grizzlemaw Helm'),
|
|
(14005, 36336, 0, 0, 0, 1, 1, 1, 1, 'Grizzlemaw Legplates'),
|
|
(14005, 36337, 0, 0, 0, 1, 1, 1, 1, 'Grizzlemaw Epaulets'),
|
|
(14005, 36338, 0, 0, 0, 1, 1, 1, 1, 'Grizzlemaw Vambraces'),
|
|
(14005, 36408, 0, 0, 0, 1, 1, 1, 1, 'Reversible Wool Cape'),
|
|
(14005, 36422, 0, 0, 0, 1, 1, 1, 1, 'Filigree Ring'),
|
|
(14005, 36436, 0, 0, 0, 1, 1, 1, 1, 'Jasper Bead Necklace'),
|
|
(14005, 36450, 0, 0, 0, 1, 1, 1, 1, 'Strapped Heater Shield'),
|
|
(14005, 36464, 0, 0, 0, 1, 1, 1, 1, 'Darkened Scepter'),
|
|
(14005, 36478, 0, 0, 0, 1, 1, 1, 1, 'Frosty Talon'),
|
|
(14005, 36492, 0, 0, 0, 1, 1, 1, 1, 'Peaked Club'),
|
|
(14005, 36506, 0, 0, 0, 1, 1, 1, 1, 'Vaulted Mace'),
|
|
(14005, 36520, 0, 0, 0, 1, 1, 1, 1, 'Chopping Wideblade'),
|
|
(14005, 36534, 0, 0, 0, 1, 1, 1, 1, 'Tempered-Steel Blade'),
|
|
(14005, 36548, 0, 0, 0, 1, 1, 1, 1, 'Promised Staff'),
|
|
(14005, 36562, 0, 0, 0, 1, 1, 1, 1, 'Blue-Nailed Claws'),
|
|
(14005, 36576, 0, 0, 0, 1, 1, 1, 1, 'Beaked Axe'),
|
|
(14005, 36590, 0, 0, 0, 1, 1, 1, 1, 'Bone Plate Axe'),
|
|
(14005, 36604, 0, 0, 0, 1, 1, 1, 1, 'Grizzly Glaive'),
|
|
(14005, 36618, 0, 0, 0, 1, 1, 1, 1, 'Twisted Longbow'),
|
|
(14005, 36632, 0, 0, 0, 1, 1, 1, 1, 'Slingshot Crossbow'),
|
|
(14005, 36646, 0, 0, 0, 1, 1, 1, 1, 'Haggard Gun'),
|
|
(14005, 36660, 0, 0, 0, 1, 1, 1, 1, 'Melted Wand'),
|
|
(14005, 36674, 0, 0, 0, 1, 1, 1, 1, 'Old Tooth'),
|
|
(14005, 36688, 0, 0, 0, 1, 1, 1, 1, 'Sacrosanct Mace'),
|
|
(14005, 36702, 0, 0, 0, 1, 1, 1, 1, 'Melting Icestaff'),
|
|
(14005, 36716, 0, 0, 0, 1, 1, 1, 1, 'Threatening Darts'),
|
|
(14006, 36004, 0, 0, 0, 1, 1, 1, 1, 'Icemist Slippers'),
|
|
(14006, 36005, 0, 0, 0, 1, 1, 1, 1, 'Icemist Robe'),
|
|
(14006, 36006, 0, 0, 0, 1, 1, 1, 1, 'Icemist Gloves'),
|
|
(14006, 36007, 0, 0, 0, 1, 1, 1, 1, 'Icemist Circlet'),
|
|
(14006, 36008, 0, 0, 0, 1, 1, 1, 1, 'Icemist Pants'),
|
|
(14006, 36009, 0, 0, 0, 1, 1, 1, 1, 'Icemist Mantle'),
|
|
(14006, 36010, 0, 0, 0, 1, 1, 1, 1, 'Icemist Bracelets'),
|
|
(14006, 36115, 0, 0, 0, 1, 1, 1, 1, 'Taunka Belt'),
|
|
(14006, 36116, 0, 0, 0, 1, 1, 1, 1, 'Taunka Boots'),
|
|
(14006, 36117, 0, 0, 0, 1, 1, 1, 1, 'Taunka Tunic'),
|
|
(14006, 36118, 0, 0, 0, 1, 1, 1, 1, 'Taunka Gloves'),
|
|
(14006, 36119, 0, 0, 0, 1, 1, 1, 1, 'Taunka Hat'),
|
|
(14006, 36120, 0, 0, 0, 1, 1, 1, 1, 'Taunka Legguards'),
|
|
(14006, 36121, 0, 0, 0, 1, 1, 1, 1, 'Taunka Spaulders'),
|
|
(14006, 36122, 0, 0, 0, 1, 1, 1, 1, 'Taunka Armguards'),
|
|
(14006, 36227, 0, 0, 0, 1, 1, 1, 1, 'Trapper Belt'),
|
|
(14006, 36228, 0, 0, 0, 1, 1, 1, 1, 'Trapper Footwraps'),
|
|
(14006, 36229, 0, 0, 0, 1, 1, 1, 1, 'Trapper Chain Vest'),
|
|
(14006, 36230, 0, 0, 0, 1, 1, 1, 1, 'Trapper Gloves'),
|
|
(14006, 36231, 0, 0, 0, 1, 1, 1, 1, 'Trapper Helm'),
|
|
(14006, 36232, 0, 0, 0, 1, 1, 1, 1, 'Trapper Leggings'),
|
|
(14006, 36233, 0, 0, 0, 1, 1, 1, 1, 'Trapper Shoulderguards'),
|
|
(14006, 36234, 0, 0, 0, 1, 1, 1, 1, 'Trapper Bracers'),
|
|
(14006, 36339, 0, 0, 0, 1, 1, 1, 1, 'Bloodmar Girdle'),
|
|
(14006, 36340, 0, 0, 0, 1, 1, 1, 1, 'Bloodmar Sabatons'),
|
|
(14006, 36341, 0, 0, 0, 1, 1, 1, 1, 'Bloodmar Breastplate'),
|
|
(14006, 36342, 0, 0, 0, 1, 1, 1, 1, 'Bloodmar Gauntlets'),
|
|
(14006, 36343, 0, 0, 0, 1, 1, 1, 1, 'Bloodmar Helm'),
|
|
(14006, 36344, 0, 0, 0, 1, 1, 1, 1, 'Bloodmar Legplates'),
|
|
(14006, 36345, 0, 0, 0, 1, 1, 1, 1, 'Bloodmar Pauldrons'),
|
|
(14006, 36346, 0, 0, 0, 1, 1, 1, 1, 'Bloodmar Vambraces'),
|
|
(14006, 36409, 0, 0, 0, 1, 1, 1, 1, 'Crushed Velvet Cloak'),
|
|
(14006, 36423, 0, 0, 0, 1, 1, 1, 1, 'Posy Ring'),
|
|
(14006, 36437, 0, 0, 0, 1, 1, 1, 1, 'Figaro Chain'),
|
|
(14006, 36451, 0, 0, 0, 1, 1, 1, 1, 'Kamagua Shield'),
|
|
(14006, 36465, 0, 0, 0, 1, 1, 1, 1, 'Evergreen Branch'),
|
|
(14006, 36479, 0, 0, 0, 1, 1, 1, 1, 'Snobold Ripper'),
|
|
(14006, 36493, 0, 0, 0, 1, 1, 1, 1, 'Furbolg Truncheon'),
|
|
(14006, 36507, 0, 0, 0, 1, 1, 1, 1, 'Iron-Molded Fist'),
|
|
(14006, 36521, 0, 0, 0, 1, 1, 1, 1, 'Shimmering Sabre'),
|
|
(14006, 36535, 0, 0, 0, 1, 1, 1, 1, 'Dragon\'s Rib Sword'),
|
|
(14006, 36549, 0, 0, 0, 1, 1, 1, 1, 'Pulsing Quarterstaff'),
|
|
(14006, 36563, 0, 0, 0, 1, 1, 1, 1, 'Gloved Talons'),
|
|
(14006, 36577, 0, 0, 0, 1, 1, 1, 1, 'Disk Axe'),
|
|
(14006, 36591, 0, 0, 0, 1, 1, 1, 1, 'Winged Axe'),
|
|
(14006, 36605, 0, 0, 0, 1, 1, 1, 1, 'Wind Scythe'),
|
|
(14006, 36619, 0, 0, 0, 1, 1, 1, 1, 'Astral Light Bow'),
|
|
(14006, 36633, 0, 0, 0, 1, 1, 1, 1, 'Palisade Crossbow'),
|
|
(14006, 36647, 0, 0, 0, 1, 1, 1, 1, 'Noisy Blaster'),
|
|
(14006, 36661, 0, 0, 0, 1, 1, 1, 1, 'Enigmatic Wand'),
|
|
(14006, 36675, 0, 0, 0, 1, 1, 1, 1, 'Sockeye Dagger'),
|
|
(14006, 36689, 0, 0, 0, 1, 1, 1, 1, 'Refreshing Hammer'),
|
|
(14006, 36703, 0, 0, 0, 1, 1, 1, 1, 'Tusked Greatstaff'),
|
|
(14006, 36717, 0, 0, 0, 1, 1, 1, 1, 'Venture Co. Throwing Axe'),
|
|
(14007, 36011, 0, 0, 0, 1, 1, 1, 1, 'Tethys Sash'),
|
|
(14007, 36012, 0, 0, 0, 1, 1, 1, 1, 'Tethys Slippers'),
|
|
(14007, 36013, 0, 0, 0, 1, 1, 1, 1, 'Tethys Robe'),
|
|
(14007, 36014, 0, 0, 0, 1, 1, 1, 1, 'Tethys Gloves'),
|
|
(14007, 36015, 0, 0, 0, 1, 1, 1, 1, 'Tethys Hood'),
|
|
(14007, 36016, 0, 0, 0, 1, 1, 1, 1, 'Tethys Leggings'),
|
|
(14007, 36017, 0, 0, 0, 1, 1, 1, 1, 'Tethys Mantle'),
|
|
(14007, 36018, 0, 0, 0, 1, 1, 1, 1, 'Tethys Bracelets'),
|
|
(14007, 36123, 0, 0, 0, 1, 1, 1, 1, 'Muradin Belt'),
|
|
(14007, 36124, 0, 0, 0, 1, 1, 1, 1, 'Muradin Boots'),
|
|
(14007, 36125, 0, 0, 0, 1, 1, 1, 1, 'Muradin Chestpiece'),
|
|
(14007, 36126, 0, 0, 0, 1, 1, 1, 1, 'Muradin Gloves'),
|
|
(14007, 36127, 0, 0, 0, 1, 1, 1, 1, 'Muradin Hood'),
|
|
(14007, 36128, 0, 0, 0, 1, 1, 1, 1, 'Muradin Pants'),
|
|
(14007, 36129, 0, 0, 0, 1, 1, 1, 1, 'Muradin Shoulders'),
|
|
(14007, 36130, 0, 0, 0, 1, 1, 1, 1, 'Muradin Bindings'),
|
|
(14007, 36235, 0, 0, 0, 1, 1, 1, 1, 'Shoveltusk Waistband'),
|
|
(14007, 36236, 0, 0, 0, 1, 1, 1, 1, 'Shoveltusk Greaves'),
|
|
(14007, 36237, 0, 0, 0, 1, 1, 1, 1, 'Shoveltusk Breastplate'),
|
|
(14007, 36238, 0, 0, 0, 1, 1, 1, 1, 'Shoveltusk Gauntlets'),
|
|
(14007, 36239, 0, 0, 0, 1, 1, 1, 1, 'Shoveltusk Helmet'),
|
|
(14007, 36240, 0, 0, 0, 1, 1, 1, 1, 'Shoveltusk Legguards'),
|
|
(14007, 36241, 0, 0, 0, 1, 1, 1, 1, 'Shoveltusk Mantle'),
|
|
(14007, 36242, 0, 0, 0, 1, 1, 1, 1, 'Shoveltusk Bindings'),
|
|
(14007, 36347, 0, 0, 0, 1, 1, 1, 1, 'Jormungar Girdle'),
|
|
(14007, 36348, 0, 0, 0, 1, 1, 1, 1, 'Jormungar Sabatons'),
|
|
(14007, 36349, 0, 0, 0, 1, 1, 1, 1, 'Jormungar Breastplate'),
|
|
(14007, 36350, 0, 0, 0, 1, 1, 1, 1, 'Jormungar Gauntlets'),
|
|
(14007, 36351, 0, 0, 0, 1, 1, 1, 1, 'Jormungar Helmet'),
|
|
(14007, 36352, 0, 0, 0, 1, 1, 1, 1, 'Jormungar Legplates'),
|
|
(14007, 36353, 0, 0, 0, 1, 1, 1, 1, 'Jormungar Pauldrons'),
|
|
(14007, 36354, 0, 0, 0, 1, 1, 1, 1, 'Jormungar Bracers'),
|
|
(14007, 36410, 0, 0, 0, 1, 1, 1, 1, 'Caribou Skin Cloak'),
|
|
(14007, 36424, 0, 0, 0, 1, 1, 1, 1, 'Cameo Ring'),
|
|
(14007, 36438, 0, 0, 0, 1, 1, 1, 1, 'Shark-Toothed Necklace'),
|
|
(14007, 36452, 0, 0, 0, 1, 1, 1, 1, 'Spoke Shield'),
|
|
(14007, 36466, 0, 0, 0, 1, 1, 1, 1, 'Facetted Orb'),
|
|
(14007, 36480, 0, 0, 0, 1, 1, 1, 1, 'Ebony Dagger'),
|
|
(14007, 36494, 0, 0, 0, 1, 1, 1, 1, 'Barbed Star'),
|
|
(14007, 36508, 0, 0, 0, 1, 1, 1, 1, 'Cumbersome Sledgehammer'),
|
|
(14007, 36522, 0, 0, 0, 1, 1, 1, 1, 'Scored Blade'),
|
|
(14007, 36536, 0, 0, 0, 1, 1, 1, 1, 'Inlaid Greatsword'),
|
|
(14007, 36550, 0, 0, 0, 1, 1, 1, 1, 'Refulgent Staff'),
|
|
(14007, 36564, 0, 0, 0, 1, 1, 1, 1, 'Spider Claw'),
|
|
(14007, 36578, 0, 0, 0, 1, 1, 1, 1, 'Troll Chopper'),
|
|
(14007, 36592, 0, 0, 0, 1, 1, 1, 1, 'Deforester Axe'),
|
|
(14007, 36606, 0, 0, 0, 1, 1, 1, 1, 'Rugged Polearm'),
|
|
(14007, 36620, 0, 0, 0, 1, 1, 1, 1, 'Tracking Bow'),
|
|
(14007, 36634, 0, 0, 0, 1, 1, 1, 1, 'Pain Repeater'),
|
|
(14007, 36648, 0, 0, 0, 1, 1, 1, 1, 'Trapper\'s Rifle'),
|
|
(14007, 36662, 0, 0, 0, 1, 1, 1, 1, 'Voodoo Wand'),
|
|
(14007, 36676, 0, 0, 0, 1, 1, 1, 1, 'Water Blade'),
|
|
(14007, 36690, 0, 0, 0, 1, 1, 1, 1, 'Unearthly Scepter'),
|
|
(14007, 36704, 0, 0, 0, 1, 1, 1, 1, 'Hive Comb Staff'),
|
|
(14007, 36718, 0, 0, 0, 1, 1, 1, 1, 'Nexus Shrike'),
|
|
(14008, 37756, 0, 0, 0, 1, 1, 1, 1, 'Zoe\'s Comforting Cape'),
|
|
(14008, 37765, 0, 0, 0, 1, 1, 1, 1, 'Leggings of the Water Moccasin'),
|
|
(14008, 37776, 0, 0, 0, 1, 1, 1, 1, 'Bracers of Accurate Fire'),
|
|
(14008, 37786, 0, 0, 0, 1, 1, 1, 1, 'Legguards of the Forlorn Seas'),
|
|
(14008, 37807, 0, 0, 0, 1, 1, 1, 1, 'Lydia\'s Sharpened Swordbreaker'),
|
|
(14008, 37821, 0, 0, 0, 1, 1, 1, 1, 'Raine\'s Signet of Blasting'),
|
|
(14009, 37757, 0, 0, 0, 1, 1, 1, 1, 'Charlotte\'s Chastizing Pauldrons'),
|
|
(14009, 37766, 0, 0, 0, 1, 1, 1, 1, 'Bracers of Unmitigated Larceny'),
|
|
(14009, 37777, 0, 0, 0, 1, 1, 1, 1, 'Bracers of Sizzling Heat'),
|
|
(14009, 37787, 0, 0, 0, 1, 1, 1, 1, 'Greathelm of the Unyielding Bull'),
|
|
(14009, 37805, 0, 0, 0, 1, 1, 1, 1, 'Melia\'s Magnificent Scepter'),
|
|
(14009, 37813, 0, 0, 0, 1, 1, 1, 1, 'Banner Slicer'),
|
|
(14010, 37758, 0, 0, 0, 1, 1, 1, 1, 'Raine\'s Choker of Combustion'),
|
|
(14010, 37767, 0, 0, 0, 1, 1, 1, 1, 'Ryft\'s Deathgaze'),
|
|
(14010, 37778, 0, 0, 0, 1, 1, 1, 1, 'Girdle of Unerring Flight'),
|
|
(14010, 37789, 0, 0, 0, 1, 1, 1, 1, 'Gauntlets of Disembowelment'),
|
|
(14010, 37804, 0, 0, 0, 1, 1, 1, 1, 'Bloodwood Greatstaff'),
|
|
(14010, 37810, 0, 0, 0, 1, 1, 1, 1, 'Blade-Binding Bulwark'),
|
|
(14010, 37812, 0, 0, 0, 1, 1, 1, 1, 'Petrified Ironwood Smasher'),
|
|
(14011, 37759, 0, 0, 0, 1, 1, 1, 1, 'Rhie-ay\'s Clutching Gauntlets'),
|
|
(14011, 37768, 0, 0, 0, 1, 1, 1, 1, 'Leggings of Violent Exsanguination'),
|
|
(14011, 37790, 0, 0, 0, 1, 1, 1, 1, 'Belt of Crystalline Tears'),
|
|
(14011, 37806, 0, 0, 0, 1, 1, 1, 1, 'Zabra\'s Misplaced Staff'),
|
|
(14011, 37808, 0, 0, 0, 1, 1, 1, 1, 'Dragonjaw Mauler'),
|
|
(14011, 37809, 0, 0, 0, 1, 1, 1, 1, 'Roc-Feather Longbow'),
|
|
(14012, 3014, 0, 70, 1, 1, 0, 1, 1, 'Battleworn Axe'),
|
|
(14012, 7906, 0, 8, 1, 1, 0, 1, 1, 'Horns of Nez\'ra'),
|
|
(14099, 32527, 0, 0, 0, 1, 1, 1, 1, 'Ring of Ancient Knowledge'),
|
|
(14099, 32528, 0, 0, 0, 1, 1, 1, 1, 'Blessed Band of Karabor'),
|
|
(14099, 32593, 0, 0, 0, 1, 1, 1, 1, 'Treads of the Den Mother'),
|
|
(14099, 32606, 0, 0, 0, 1, 1, 1, 1, 'Girdle of the Lightbearer'),
|
|
(14099, 32608, 0, 0, 0, 1, 1, 1, 1, 'Pillager\'s Gauntlets'),
|
|
(14099, 32943, 0, 0, 0, 1, 1, 1, 1, 'Swiftsteel Bludgeon'),
|
|
(14099, 34011, 0, 0, 0, 1, 1, 1, 1, 'Illidari Runeshield'),
|
|
(14099, 34012, 0, 0, 0, 1, 1, 1, 1, 'Shroud of the Final Stand'),
|
|
(14500, 24073, 24073, 5, 0, 1, 1, 1, 1, '(ReferenceTable)'),
|
|
(14501, 31557, 0, 0, 0, 1, 1, 1, 1, 'Windchanneller\'s Boots'),
|
|
(14501, 31565, 0, 0, 0, 1, 1, 1, 1, 'Skystalker\'s Boots'),
|
|
(14501, 31573, 0, 0, 0, 1, 1, 1, 1, 'Mistshroud Boots'),
|
|
(14501, 31581, 0, 0, 0, 1, 1, 1, 1, 'Slatesteel Boots'),
|
|
(14501, 31925, 0, 0, 0, 1, 1, 1, 1, 'Fiery Band'),
|
|
(14501, 31926, 0, 0, 0, 1, 1, 1, 1, 'Frigid Band'),
|
|
(14501, 31927, 0, 0, 0, 1, 1, 1, 1, 'Living Band'),
|
|
(14501, 31928, 0, 0, 0, 1, 1, 1, 1, 'Dark Band'),
|
|
(14501, 31929, 0, 0, 0, 1, 1, 1, 1, 'Enigmatic Band'),
|
|
(14501, 31935, 0, 0, 0, 1, 1, 1, 1, 'Frigid Cloak'),
|
|
(14501, 31936, 0, 0, 0, 1, 1, 1, 1, 'Fiery Cloak'),
|
|
(14501, 31937, 0, 0, 0, 1, 1, 1, 1, 'Living Cloak'),
|
|
(14501, 31938, 0, 0, 0, 1, 1, 1, 1, 'Enigmatic Cloak'),
|
|
(14501, 31939, 0, 0, 0, 1, 1, 1, 1, 'Dark Cloak'),
|
|
(14501, 31940, 0, 0, 0, 1, 1, 1, 1, 'Ethereum Torque'),
|
|
(14501, 31943, 0, 0, 0, 1, 1, 1, 1, 'Ethereum Band'),
|
|
(14501, 32520, 0, 0, 0, 1, 1, 1, 1, 'Manaforged Sphere'),
|
|
(14502, 20874, 0, 0, 0, 1, 1, 1, 3, 'Idol of the Sun'),
|
|
(14502, 20875, 0, 0, 0, 1, 1, 1, 3, 'Idol of Night'),
|
|
(14502, 20876, 0, 0, 0, 1, 1, 1, 3, 'Idol of Death'),
|
|
(14502, 20877, 0, 0, 0, 1, 1, 1, 3, 'Idol of the Sage'),
|
|
(14502, 20878, 0, 0, 0, 1, 1, 1, 3, 'Idol of Rebirth'),
|
|
(14502, 20879, 0, 0, 0, 1, 1, 1, 3, 'Idol of Life'),
|
|
(14502, 20881, 0, 0, 0, 1, 1, 1, 3, 'Idol of Strife'),
|
|
(14502, 20882, 0, 0, 0, 1, 1, 1, 3, 'Idol of War'),
|
|
(14503, 21156, 0, 0, 0, 1, 1, 1, 1, 'Scarab Bag'),
|
|
(20000, 1364, 0, 0, 0, 1, 1, 1, 1, 'Grey 1-5 EXP 0 : Ragged Leather Vest'),
|
|
(20000, 1366, 0, 0, 0, 1, 1, 1, 1, 'Grey 1-5 EXP 0 : Ragged Leather Pants'),
|
|
(20000, 1367, 0, 0, 0, 1, 1, 1, 1, 'Grey 1-5 EXP 0 : Ragged Leather Boots'),
|
|
(20000, 1368, 0, 0, 0, 1, 1, 1, 1, 'Grey 1-5 EXP 0 : Ragged Leather Gloves'),
|
|
(20000, 1369, 0, 0, 0, 1, 1, 1, 1, 'Grey 1-5 EXP 0 : Ragged Leather Belt'),
|
|
(20000, 1370, 0, 0, 0, 1, 1, 1, 1, 'Grey 1-5 EXP 0 : Ragged Leather Bracers'),
|
|
(20000, 1372, 0, 0, 0, 1, 1, 1, 1, 'Grey 1-5 EXP 0 : Ragged Cloak'),
|
|
(20000, 1374, 0, 0, 0, 1, 1, 1, 1, 'Grey 1-5 EXP 0 : Frayed Shoes'),
|
|
(20000, 1376, 0, 0, 0, 1, 1, 1, 1, 'Grey 1-5 EXP 0 : Frayed Cloak'),
|
|
(20000, 1377, 0, 0, 0, 1, 1, 1, 1, 'Grey 1-5 EXP 0 : Frayed Gloves'),
|
|
(20000, 1378, 0, 0, 0, 1, 1, 1, 1, 'Grey 1-5 EXP 0 : Frayed Pants'),
|
|
(20000, 1380, 0, 0, 0, 1, 1, 1, 1, 'Grey 1-5 EXP 0 : Frayed Robe'),
|
|
(20000, 2210, 0, 0, 0, 1, 1, 1, 1, 'Grey 1-5 EXP 0 : Battered Buckler'),
|
|
(20000, 2211, 0, 0, 0, 1, 1, 1, 1, 'Grey 1-5 EXP 0 : Bent Large Shield'),
|
|
(20000, 2649, 0, 0, 0, 1, 1, 1, 1, 'Grey 1-5 EXP 0 : Flimsy Chain Belt'),
|
|
(20000, 2650, 0, 0, 0, 1, 1, 1, 1, 'Grey 1-5 EXP 0 : Flimsy Chain Boots'),
|
|
(20000, 2651, 0, 0, 0, 1, 1, 1, 1, 'Grey 1-5 EXP 0 : Flimsy Chain Bracers'),
|
|
(20000, 2652, 0, 0, 0, 1, 1, 1, 1, 'Grey 1-5 EXP 0 : Flimsy Chain Cloak'),
|
|
(20000, 2653, 0, 0, 0, 1, 1, 1, 1, 'Grey 1-5 EXP 0 : Flimsy Chain Gloves'),
|
|
(20000, 2654, 0, 0, 0, 1, 1, 1, 1, 'Grey 1-5 EXP 0 : Flimsy Chain Pants'),
|
|
(20000, 2656, 0, 0, 0, 1, 1, 1, 1, 'Grey 1-5 EXP 0 : Flimsy Chain Vest'),
|
|
(20000, 3363, 0, 0, 0, 1, 1, 1, 1, 'Grey 1-5 EXP 0 : Frayed Belt'),
|
|
(20000, 3365, 0, 0, 0, 1, 1, 1, 1, 'Grey 1-5 EXP 0 : Frayed Bracers'),
|
|
(20001, 21002, 0, 0, 0, 1, 1, 1, 1, 'Grey 1-5 EXP 1 : Unkempt Belt'),
|
|
(20001, 21003, 0, 0, 0, 1, 1, 1, 1, 'Grey 1-5 EXP 1 : Unkempt Bracers'),
|
|
(20001, 21004, 0, 0, 0, 1, 1, 1, 1, 'Grey 1-5 EXP 1 : Unkempt Cloak'),
|
|
(20001, 21005, 0, 0, 0, 1, 1, 1, 1, 'Grey 1-5 EXP 1 : Unkempt Gloves'),
|
|
(20001, 21006, 0, 0, 0, 1, 1, 1, 1, 'Grey 1-5 EXP 1 : Unkempt Pants'),
|
|
(20001, 21007, 0, 0, 0, 1, 1, 1, 1, 'Grey 1-5 EXP 1 : Unkempt Robe'),
|
|
(20001, 21008, 0, 0, 0, 1, 1, 1, 1, 'Grey 1-5 EXP 1 : Unkempt Shoes'),
|
|
(20001, 21009, 0, 0, 0, 1, 1, 1, 1, 'Grey 1-5 EXP 1 : Scraggy Leather Belt'),
|
|
(20001, 21010, 0, 0, 0, 1, 1, 1, 1, 'Grey 1-5 EXP 1 : Scraggy Leather Boots'),
|
|
(20001, 21011, 0, 0, 0, 1, 1, 1, 1, 'Grey 1-5 EXP 1 : Scraggy Leather Bracers'),
|
|
(20001, 21012, 0, 0, 0, 1, 1, 1, 1, 'Grey 1-5 EXP 1 : Scraggy Leather Gloves'),
|
|
(20001, 21013, 0, 0, 0, 1, 1, 1, 1, 'Grey 1-5 EXP 1 : Scraggy Leather Pants'),
|
|
(20001, 21014, 0, 0, 0, 1, 1, 1, 1, 'Grey 1-5 EXP 1 : Scraggy Leather Vest'),
|
|
(20001, 21015, 0, 0, 0, 1, 1, 1, 1, 'Grey 1-5 EXP 1 : Shoddy Chain Belt'),
|
|
(20001, 21016, 0, 0, 0, 1, 1, 1, 1, 'Grey 1-5 EXP 1 : Shoddy Chain Vest'),
|
|
(20001, 21017, 0, 0, 0, 1, 1, 1, 1, 'Grey 1-5 EXP 1 : Shoddy Chain Pants'),
|
|
(20001, 21018, 0, 0, 0, 1, 1, 1, 1, 'Grey 1-5 EXP 1 : Shoddy Chain Gloves'),
|
|
(20001, 21019, 0, 0, 0, 1, 1, 1, 1, 'Grey 1-5 EXP 1 : Shoddy Chain Bracers'),
|
|
(20001, 21020, 0, 0, 0, 1, 1, 1, 1, 'Grey 1-5 EXP 1 : Shoddy Chain Boots'),
|
|
(20001, 21021, 0, 0, 0, 1, 1, 1, 1, 'Grey 1-5 EXP 1 : Battered Shield'),
|
|
(20001, 21022, 0, 0, 0, 1, 1, 1, 1, 'Grey 1-5 EXP 1 : Weather Beaten Buckler'),
|
|
(20002, 4865, 0, 40, 0, 1, 1, 1, 1, 'Beast 1-5 - Ruined Pelt'),
|
|
(20002, 7073, 0, 30, 0, 1, 1, 1, 1, 'Beast 1-5 - Broken Fang'),
|
|
(20002, 7074, 0, 30, 0, 1, 1, 1, 1, 'Beast 1-5 - Chipped Claw'),
|
|
(20003, 117, 0, 20, 0, 1, 1, 1, 1, 'Boar 1-5 - Tough Jerky'),
|
|
(20003, 4865, 0, 40, 0, 1, 1, 1, 1, 'Boar 1-5 - Ruined Pelt'),
|
|
(20003, 7098, 0, 40, 0, 1, 1, 1, 1, 'Boar 1-5 - Splintered Tusk'),
|
|
(20004, 1476, 0, 40, 0, 1, 1, 1, 1, 'Spider 1-5 - Snapped Spider Limb'),
|
|
(20004, 7100, 0, 30, 0, 1, 1, 1, 1, 'Spider 1-5 - Sticky Ichor'),
|
|
(20004, 7101, 0, 30, 0, 1, 1, 1, 1, 'Spider 1-5 - Bug Eye'),
|
|
(20005, 4757, 0, 30, 0, 1, 1, 1, 1, 'Bird 1-5 - Cracked Egg Shells'),
|
|
(20005, 7096, 0, 40, 0, 1, 1, 1, 1, 'Bird 1-5 - Plucked Feather'),
|
|
(20005, 7097, 0, 30, 0, 1, 1, 1, 1, 'Bird 1-5 - Leg Meat'),
|
|
(20006, 4867, 0, 40, 0, 1, 1, 1, 1, 'Scorpid 1-5 - Broken Scorpid Leg'),
|
|
(20006, 7099, 0, 30, 0, 1, 1, 1, 1, 'Scorpid 1-5 - Severed Pincer'),
|
|
(20006, 7101, 0, 30, 0, 1, 1, 1, 1, 'Scorpid 1-5 - Bug Eye'),
|
|
(20007, 25466, 0, 50, 0, 1, 1, 1, 1, 'Vale Moth 1-5 - Broken Antenna'),
|
|
(20007, 25467, 0, 50, 0, 1, 1, 1, 1, 'Vale Moth 1-5 - Torn Moth Wing'),
|
|
(20008, 7073, 0, 50, 0, 1, 1, 1, 1, 'Volatile Mutation 1-5 - Broken Fang'),
|
|
(20008, 7074, 0, 50, 0, 1, 1, 1, 1, 'Volatile Mutation 1-5 - Chipped Claw'),
|
|
(20009, 23331, 0, 50, 0, 1, 1, 1, 1, 'Mutated Root Lasher 1-5 - Broken Vine'),
|
|
(20009, 23332, 0, 50, 0, 1, 1, 1, 1, 'Mutated Root Lasher 1-5 - Withered Lasher Root'),
|
|
(20010, 20845, 0, 50, 0, 1, 1, 1, 1, 'Wyrm 1-5 - Torn Wyrm Scale'),
|
|
(20010, 20846, 0, 50, 0, 1, 1, 1, 1, 'Wyrm 1-5 - Faintly Glowing Eye'),
|
|
(20011, 20812, 0, 50, 0, 1, 1, 1, 1, 'Lynx 1-5 - Tattered Pelt'),
|
|
(20011, 20813, 0, 50, 0, 1, 1, 1, 1, 'Lynx 1-5 - Lynx Tooth'),
|
|
(20012, 20842, 0, 50, 0, 1, 1, 1, 1, 'Tender 1-5 - Frayed Tender Vine'),
|
|
(20012, 20843, 0, 50, 0, 1, 1, 1, 1, 'Tender 1-5 - Smashed Petal'),
|
|
(20013, 20847, 0, 50, 0, 1, 1, 1, 1, 'Wraith 1-5 - Wraith Fragment'),
|
|
(20013, 20848, 0, 50, 0, 1, 1, 1, 1, 'Wraith 1-5 - Sparkling Dust'),
|
|
(20014, 159, 0, 33, 0, 1, 1, 1, 1, 'Food 1-5 - Refreshing Spring Water'),
|
|
(20014, 4536, 0, 67, 0, 1, 1, 1, 1, 'Food 1-5 - Shiny Red Apple'),
|
|
(20015, 117, 0, 67, 0, 1, 1, 1, 1, 'Food 1-5 - Tough Jerky'),
|
|
(20015, 159, 0, 33, 0, 1, 1, 1, 1, 'Food 1-5 - Refreshing Spring Water'),
|
|
(20016, 159, 0, 33, 0, 1, 1, 1, 1, 'Food 1-5 - Refreshing Spring Water'),
|
|
(20016, 4604, 0, 67, 0, 1, 1, 1, 1, 'Food 1-5 - Forest Mushroom Cap'),
|
|
(20017, 159, 0, 33, 0, 1, 1, 1, 1, 'Food 1-5 - Refreshing Spring Water'),
|
|
(20017, 2070, 0, 67, 0, 1, 1, 1, 1, 'Food 1-5 - Darnassian Bleu'),
|
|
(20018, 159, 0, 33, 0, 1, 1, 1, 1, 'Food 1-5 - Refreshing Spring Water'),
|
|
(20018, 4540, 0, 67, 0, 1, 1, 1, 1, 'Food 1-5 - Tough Hunk of Bread'),
|
|
(21509, 954, 0, 0, 0, 1, 1, 1, 1, 'Ahn\'Qiraj War Effort Supplies - Scroll of Strength'),
|
|
(21509, 955, 0, 0, 0, 1, 1, 1, 1, 'Ahn\'Qiraj War Effort Supplies - Scroll of Intellect'),
|
|
(21509, 1180, 0, 0, 0, 1, 1, 1, 1, 'Ahn\'Qiraj War Effort Supplies - Scroll of Stamina'),
|
|
(21509, 1181, 0, 0, 0, 1, 1, 1, 1, 'Ahn\'Qiraj War Effort Supplies - Scroll of Spirit'),
|
|
(21509, 3012, 0, 0, 0, 1, 1, 1, 1, 'Ahn\'Qiraj War Effort Supplies - Scroll of Agility'),
|
|
(21509, 3013, 0, 0, 0, 1, 1, 1, 1, 'Ahn\'Qiraj War Effort Supplies - Scroll of Protection'),
|
|
(21510, 1477, 0, 0, 0, 1, 1, 1, 1, 'Ahn\'Qiraj War Effort Supplies - Scroll of Agility II'),
|
|
(21510, 1478, 0, 0, 0, 1, 1, 1, 1, 'Ahn\'Qiraj War Effort Supplies - Scroll of Protection II'),
|
|
(21510, 1711, 0, 0, 0, 1, 1, 1, 1, 'Ahn\'Qiraj War Effort Supplies - Scroll of Stamina II'),
|
|
(21510, 1712, 0, 0, 0, 1, 1, 1, 1, 'Ahn\'Qiraj War Effort Supplies - Scroll of Spirit II'),
|
|
(21510, 2289, 0, 0, 0, 1, 1, 1, 1, 'Ahn\'Qiraj War Effort Supplies - Scroll of Strength II'),
|
|
(21510, 2290, 0, 0, 0, 1, 1, 1, 1, 'Ahn\'Qiraj War Effort Supplies - Scroll of Intellect II'),
|
|
(21512, 4419, 0, 0, 0, 1, 1, 1, 2, 'Ahn\'Qiraj War Effort Supplies - Scroll of Intellect III'),
|
|
(21512, 4421, 0, 0, 0, 1, 1, 1, 1, 'Ahn\'Qiraj War Effort Supplies - Scroll of Protection III'),
|
|
(21512, 4422, 0, 0, 0, 1, 1, 1, 2, 'Ahn\'Qiraj War Effort Supplies - Scroll of Stamina III'),
|
|
(21512, 4424, 0, 0, 0, 1, 1, 1, 1, 'Ahn\'Qiraj War Effort Supplies - Scroll of Spirit III'),
|
|
(21512, 4425, 0, 0, 0, 1, 1, 1, 2, 'Ahn\'Qiraj War Effort Supplies - Scroll of Agility III'),
|
|
(21512, 4426, 0, 0, 0, 1, 1, 1, 2, 'Ahn\'Qiraj War Effort Supplies - Scroll of Strength III'),
|
|
(21513, 10305, 0, 0, 0, 1, 1, 1, 2, 'Ahn\'Qiraj War Effort Supplies - Scroll of Protection IV'),
|
|
(21513, 10306, 0, 0, 0, 1, 1, 1, 2, 'Ahn\'Qiraj War Effort Supplies - Scroll of Spirit IV'),
|
|
(21513, 10307, 0, 0, 0, 1, 1, 1, 2, 'Ahn\'Qiraj War Effort Supplies - Scroll of Stamina IV'),
|
|
(21513, 10308, 0, 0, 0, 1, 1, 1, 2, 'Ahn\'Qiraj War Effort Supplies - Scroll of Intellect IV'),
|
|
(21513, 10309, 0, 0, 0, 1, 1, 1, 2, 'Ahn\'Qiraj War Effort Supplies - Scroll of Agility IV'),
|
|
(21513, 10310, 0, 0, 0, 1, 1, 1, 2, 'Ahn\'Qiraj War Effort Supplies - Scroll of Strength IV'),
|
|
(21887, 21887, 0, 100, 0, 1, 0, 1, 1, 'Knothide Leather'),
|
|
(24000, 24576, 0, 0, 0, 1, 1, 1, 1, 'Loosely Threaded Belt'),
|
|
(24000, 24577, 0, 0, 0, 1, 1, 1, 1, 'Loosely Threaded Boots'),
|
|
(24000, 24578, 0, 0, 0, 1, 1, 1, 1, 'Loosely Threaded Bracers'),
|
|
(24000, 24580, 0, 0, 0, 1, 1, 1, 1, 'Loosely Threaded Hat'),
|
|
(24000, 24782, 0, 0, 0, 1, 1, 1, 1, 'Loosely Threaded Gloves'),
|
|
(24000, 25338, 0, 0, 0, 1, 1, 1, 1, 'Loosely Threaded Pants'),
|
|
(24000, 25339, 0, 0, 0, 1, 1, 1, 1, 'Loosely Threaded Shoulderpads'),
|
|
(24000, 25340, 0, 0, 0, 1, 1, 1, 1, 'Loosely Threaded Vest'),
|
|
(24000, 25349, 0, 0, 0, 1, 1, 1, 1, 'Moldy Leather Armor'),
|
|
(24000, 25350, 0, 0, 0, 1, 1, 1, 1, 'Moldy Leather Belt'),
|
|
(24000, 25351, 0, 0, 0, 1, 1, 1, 1, 'Moldy Leather Boots'),
|
|
(24000, 25352, 0, 0, 0, 1, 1, 1, 1, 'Moldy Leather Bracers'),
|
|
(24000, 25353, 0, 0, 0, 1, 1, 1, 1, 'Moldy Leather Gloves'),
|
|
(24000, 25354, 0, 0, 0, 1, 1, 1, 1, 'Moldy Leather Helmet'),
|
|
(24000, 25355, 0, 0, 0, 1, 1, 1, 1, 'Moldy Leather Pants'),
|
|
(24000, 25356, 0, 0, 0, 1, 1, 1, 1, 'Moldy Leather Shoulderpads'),
|
|
(24000, 25365, 0, 0, 0, 1, 1, 1, 1, 'Eroded Mail Armor'),
|
|
(24000, 25366, 0, 0, 0, 1, 1, 1, 1, 'Eroded Mail Belt'),
|
|
(24000, 25367, 0, 0, 0, 1, 1, 1, 1, 'Eroded Mail Boots'),
|
|
(24000, 25368, 0, 0, 0, 1, 1, 1, 1, 'Eroded Mail Bracers'),
|
|
(24000, 25369, 0, 0, 0, 1, 1, 1, 1, 'Eroded Mail Circlet'),
|
|
(24000, 25370, 0, 0, 0, 1, 1, 1, 1, 'Eroded Mail Gloves'),
|
|
(24000, 25371, 0, 0, 0, 1, 1, 1, 1, 'Eroded Mail Pants'),
|
|
(24000, 25372, 0, 0, 0, 1, 1, 1, 1, 'Eroded Mail Shoulderpads'),
|
|
(24000, 25381, 0, 0, 0, 1, 1, 1, 1, 'Tarnished Plate Belt'),
|
|
(24000, 25382, 0, 0, 0, 1, 1, 1, 1, 'Tarnished Plate Boots'),
|
|
(24000, 25383, 0, 0, 0, 1, 1, 1, 1, 'Tarnished Plate Bracers'),
|
|
(24000, 25384, 0, 0, 0, 1, 1, 1, 1, 'Tarnished Plate Chestpiece'),
|
|
(24000, 25385, 0, 0, 0, 1, 1, 1, 1, 'Tarnished Plate Gloves'),
|
|
(24000, 25386, 0, 0, 0, 1, 1, 1, 1, 'Tarnished Plate Helmet'),
|
|
(24000, 25387, 0, 0, 0, 1, 1, 1, 1, 'Tarnished Plate Pants'),
|
|
(24000, 25388, 0, 0, 0, 1, 1, 1, 1, 'Tarnished Plate Shoulderpads'),
|
|
(24001, 25397, 0, 0, 0, 1, 1, 1, 1, 'Eroded Axe'),
|
|
(24001, 25398, 0, 0, 0, 1, 1, 1, 1, 'Stone Reaper'),
|
|
(24001, 25399, 0, 0, 0, 1, 1, 1, 1, 'Deteriorating Blade'),
|
|
(24001, 25400, 0, 0, 0, 1, 1, 1, 1, 'Tarnished Claymore'),
|
|
(24001, 25401, 0, 0, 0, 1, 1, 1, 1, 'Corroded Mace'),
|
|
(24001, 25402, 0, 0, 0, 1, 1, 1, 1, 'The Stoppable Force'),
|
|
(24001, 25403, 0, 0, 0, 1, 1, 1, 1, 'Sharpened Stilleto'),
|
|
(24001, 25404, 0, 0, 0, 1, 1, 1, 1, 'Dense War Staff'),
|
|
(24001, 25405, 0, 0, 0, 1, 1, 1, 1, 'Rusted Musket'),
|
|
(24001, 25406, 0, 0, 0, 1, 1, 1, 1, 'Broken Longbow'),
|
|
(24002, 25341, 0, 0, 0, 1, 1, 1, 1, 'Dilapidated Cloth Belt'),
|
|
(24002, 25342, 0, 0, 0, 1, 1, 1, 1, 'Dilapidated Cloth Boots'),
|
|
(24002, 25343, 0, 0, 0, 1, 1, 1, 1, 'Dilapidated Cloth Bracers'),
|
|
(24002, 25344, 0, 0, 0, 1, 1, 1, 1, 'Dilapidated Cloth Gloves'),
|
|
(24002, 25345, 0, 0, 0, 1, 1, 1, 1, 'Dilapidated Cloth Hat'),
|
|
(24002, 25346, 0, 0, 0, 1, 1, 1, 1, 'Dilapidated Cloth Pants'),
|
|
(24002, 25347, 0, 0, 0, 1, 1, 1, 1, 'Dilapidated Cloth Shoulderpads'),
|
|
(24002, 25348, 0, 0, 0, 1, 1, 1, 1, 'Dilapidated Cloth Vest'),
|
|
(24002, 25357, 0, 0, 0, 1, 1, 1, 1, 'Decaying Leather Armor'),
|
|
(24002, 25358, 0, 0, 0, 1, 1, 1, 1, 'Decaying Leather Belt'),
|
|
(24002, 25359, 0, 0, 0, 1, 1, 1, 1, 'Decaying Leather Boots'),
|
|
(24002, 25360, 0, 0, 0, 1, 1, 1, 1, 'Decaying Leather Bracers'),
|
|
(24002, 25361, 0, 0, 0, 1, 1, 1, 1, 'Decaying Leather Gloves'),
|
|
(24002, 25362, 0, 0, 0, 1, 1, 1, 1, 'Decaying Leather Helmet'),
|
|
(24002, 25363, 0, 0, 0, 1, 1, 1, 1, 'Decaying Leather Pants'),
|
|
(24002, 25364, 0, 0, 0, 1, 1, 1, 1, 'Decaying Leather Shoulderpads'),
|
|
(24002, 25373, 0, 0, 0, 1, 1, 1, 1, 'Corroded Mail Armor'),
|
|
(24002, 25374, 0, 0, 0, 1, 1, 1, 1, 'Corroded Mail Belt'),
|
|
(24002, 25375, 0, 0, 0, 1, 1, 1, 1, 'Corroded Mail Boots'),
|
|
(24002, 25376, 0, 0, 0, 1, 1, 1, 1, 'Corroded Mail Bracers'),
|
|
(24002, 25377, 0, 0, 0, 1, 1, 1, 1, 'Corroded Mail Circlet'),
|
|
(24002, 25378, 0, 0, 0, 1, 1, 1, 1, 'Corroded Mail Gloves'),
|
|
(24002, 25379, 0, 0, 0, 1, 1, 1, 1, 'Corroded Mail Pants'),
|
|
(24002, 25380, 0, 0, 0, 1, 1, 1, 1, 'Corroded Mail Shoulderpads'),
|
|
(24002, 25389, 0, 0, 0, 1, 1, 1, 1, 'Deteriorating Plate Belt'),
|
|
(24002, 25390, 0, 0, 0, 1, 1, 1, 1, 'Deteriorating Plate Boots'),
|
|
(24002, 25391, 0, 0, 0, 1, 1, 1, 1, 'Deteriorating Plate Bracers'),
|
|
(24002, 25392, 0, 0, 0, 1, 1, 1, 1, 'Deteriorating Plate Chestpiece'),
|
|
(24002, 25393, 0, 0, 0, 1, 1, 1, 1, 'Deteriorating Plate Gloves'),
|
|
(24002, 25394, 0, 0, 0, 1, 1, 1, 1, 'Deteriorating Plate Helmet'),
|
|
(24002, 25395, 0, 0, 0, 1, 1, 1, 1, 'Deteriorating Plate Pants'),
|
|
(24002, 25396, 0, 0, 0, 1, 1, 1, 1, 'Deteriorating Plate Shoulderpads'),
|
|
(24003, 24605, 0, 0, 0, 1, 1, 1, 1, 'Laughing Skull Waistguard'),
|
|
(24003, 24606, 0, 0, 0, 1, 1, 1, 1, 'Laughing Skull Boot'),
|
|
(24003, 24607, 0, 0, 0, 1, 1, 1, 1, 'Laughing Skull Tunic'),
|
|
(24003, 24608, 0, 0, 0, 1, 1, 1, 1, 'Laughing Skull Gloves'),
|
|
(24003, 24609, 0, 0, 0, 1, 1, 1, 1, 'Laughing Skull Cap'),
|
|
(24003, 24610, 0, 0, 0, 1, 1, 1, 1, 'Laughing Skull Pants'),
|
|
(24003, 24611, 0, 0, 0, 1, 1, 1, 1, 'Laughing Skull Shoulderpads'),
|
|
(24003, 24612, 0, 0, 0, 1, 1, 1, 1, 'Laughing Skull Bracelets'),
|
|
(24003, 24613, 0, 0, 0, 1, 1, 1, 1, 'Vindicator Belt'),
|
|
(24003, 24614, 0, 0, 0, 1, 1, 1, 1, 'Vindicator Boots'),
|
|
(24003, 24615, 0, 0, 0, 1, 1, 1, 1, 'Vindicator Tunic'),
|
|
(24003, 24616, 0, 0, 0, 1, 1, 1, 1, 'Vindicator Gloves'),
|
|
(24003, 24617, 0, 0, 0, 1, 1, 1, 1, 'Vindicator Cap'),
|
|
(24003, 24618, 0, 0, 0, 1, 1, 1, 1, 'Vindicator Pants'),
|
|
(24003, 24619, 0, 0, 0, 1, 1, 1, 1, 'Vindicator Shoulderpads'),
|
|
(24003, 24620, 0, 0, 0, 1, 1, 1, 1, 'Vindicator Bracers'),
|
|
(24003, 24717, 0, 0, 0, 1, 1, 1, 1, 'Dreghood Belt'),
|
|
(24003, 24718, 0, 0, 0, 1, 1, 1, 1, 'Dreghood Boots'),
|
|
(24003, 24719, 0, 0, 0, 1, 1, 1, 1, 'Dreghood Chestpiece'),
|
|
(24003, 24720, 0, 0, 0, 1, 1, 1, 1, 'Dreghood Gloves'),
|
|
(24003, 24721, 0, 0, 0, 1, 1, 1, 1, 'Dreghood Cowl'),
|
|
(24003, 24722, 0, 0, 0, 1, 1, 1, 1, 'Dreghood Trousers'),
|
|
(24003, 24723, 0, 0, 0, 1, 1, 1, 1, 'Dreghood Pauldrons'),
|
|
(24003, 24724, 0, 0, 0, 1, 1, 1, 1, 'Dreghood Bands'),
|
|
(24003, 24725, 0, 0, 0, 1, 1, 1, 1, 'Dementia Cord'),
|
|
(24003, 24726, 0, 0, 0, 1, 1, 1, 1, 'Dementia Boots'),
|
|
(24003, 24727, 0, 0, 0, 1, 1, 1, 1, 'Dementia Vest'),
|
|
(24003, 24728, 0, 0, 0, 1, 1, 1, 1, 'Dementia Gloves'),
|
|
(24003, 24729, 0, 0, 0, 1, 1, 1, 1, 'Dementia Hood'),
|
|
(24003, 24730, 0, 0, 0, 1, 1, 1, 1, 'Dementia Trousers'),
|
|
(24003, 24731, 0, 0, 0, 1, 1, 1, 1, 'Dementia Shoulderguards'),
|
|
(24003, 24732, 0, 0, 0, 1, 1, 1, 1, 'Dementia Armguards'),
|
|
(24003, 24830, 0, 0, 0, 1, 1, 1, 1, 'Nexus-Strider Belt'),
|
|
(24003, 24831, 0, 0, 0, 1, 1, 1, 1, 'Nexus-Strider Greaves'),
|
|
(24003, 24832, 0, 0, 0, 1, 1, 1, 1, 'Nexus-Strider Breastplate'),
|
|
(24003, 24833, 0, 0, 0, 1, 1, 1, 1, 'Nexus-Strider Gloves'),
|
|
(24003, 24834, 0, 0, 0, 1, 1, 1, 1, 'Nexus-Strider Helmet'),
|
|
(24003, 24835, 0, 0, 0, 1, 1, 1, 1, 'Nexus-Strider Legwraps'),
|
|
(24003, 24836, 0, 0, 0, 1, 1, 1, 1, 'Nexus-Strider Mantle'),
|
|
(24003, 24837, 0, 0, 0, 1, 1, 1, 1, 'Nexus-Strider Bracer'),
|
|
(24003, 24838, 0, 0, 0, 1, 1, 1, 1, 'Wrathfin Waistband'),
|
|
(24003, 24839, 0, 0, 0, 1, 1, 1, 1, 'Wrathfin Greaves'),
|
|
(24003, 24840, 0, 0, 0, 1, 1, 1, 1, 'Wrathfin Armor'),
|
|
(24003, 24841, 0, 0, 0, 1, 1, 1, 1, 'Wrathfin Gloves'),
|
|
(24003, 24842, 0, 0, 0, 1, 1, 1, 1, 'Wrathfin Helmet'),
|
|
(24003, 24843, 0, 0, 0, 1, 1, 1, 1, 'Wrathfin Legguards'),
|
|
(24003, 24844, 0, 0, 0, 1, 1, 1, 1, 'Wrathfin Mantle'),
|
|
(24003, 24845, 0, 0, 0, 1, 1, 1, 1, 'Wrathfin Bindings'),
|
|
(24003, 24942, 0, 0, 0, 1, 1, 1, 1, 'Bloodscale Belt'),
|
|
(24003, 24943, 0, 0, 0, 1, 1, 1, 1, 'Bloodscale Sabatons'),
|
|
(24003, 24944, 0, 0, 0, 1, 1, 1, 1, 'Bloodscale Breastplate'),
|
|
(24003, 24945, 0, 0, 0, 1, 1, 1, 1, 'Bloodscale Gauntlets'),
|
|
(24003, 24946, 0, 0, 0, 1, 1, 1, 1, 'Bloodscale Helm'),
|
|
(24003, 24947, 0, 0, 0, 1, 1, 1, 1, 'Bloodscale Legguards'),
|
|
(24003, 24948, 0, 0, 0, 1, 1, 1, 1, 'Bloodscale Pauldrons'),
|
|
(24003, 24949, 0, 0, 0, 1, 1, 1, 1, 'Bloodscale Bracers'),
|
|
(24003, 24950, 0, 0, 0, 1, 1, 1, 1, 'Bogslayer Belt'),
|
|
(24003, 24951, 0, 0, 0, 1, 1, 1, 1, 'Bogslayer Sabatons'),
|
|
(24003, 24952, 0, 0, 0, 1, 1, 1, 1, 'Bogslayer Breastplate'),
|
|
(24003, 24953, 0, 0, 0, 1, 1, 1, 1, 'Bogslayer Gauntlets'),
|
|
(24003, 24954, 0, 0, 0, 1, 1, 1, 1, 'Bogslayer Helm'),
|
|
(24003, 24955, 0, 0, 0, 1, 1, 1, 1, 'Bogslayer Legplates'),
|
|
(24003, 24956, 0, 0, 0, 1, 1, 1, 1, 'Bogslayer Pauldrons'),
|
|
(24003, 24957, 0, 0, 0, 1, 1, 1, 1, 'Bogslayer Bracers'),
|
|
(24003, 25033, 0, 0, 0, 1, 1, 1, 1, 'Scavenger\'s Cloak'),
|
|
(24003, 25034, 0, 0, 0, 1, 1, 1, 1, 'Elementalist Cloak'),
|
|
(24003, 25047, 0, 0, 0, 1, 1, 1, 1, 'Tourmaline Loop'),
|
|
(24003, 25048, 0, 0, 0, 1, 1, 1, 1, 'Smoky Quartz Ring'),
|
|
(24003, 25061, 0, 0, 0, 1, 1, 1, 1, 'Hiddenite Necklace'),
|
|
(24003, 25062, 0, 0, 0, 1, 1, 1, 1, 'Zircon Amulet'),
|
|
(24003, 25075, 0, 0, 0, 1, 1, 1, 1, 'Hardened Steel Shield'),
|
|
(24003, 25076, 0, 0, 0, 1, 1, 1, 1, 'Screaming Shield'),
|
|
(24003, 25089, 0, 0, 0, 1, 1, 1, 1, 'Supplicant\'s Rod'),
|
|
(24003, 25090, 0, 0, 0, 1, 1, 1, 1, 'Slavehandler Rod'),
|
|
(24003, 25103, 0, 0, 0, 1, 1, 1, 1, 'Nightstalker Dagger'),
|
|
(24003, 25104, 0, 0, 0, 1, 1, 1, 1, 'Anzac Dagger'),
|
|
(24003, 25117, 0, 0, 0, 1, 1, 1, 1, 'Flanged Battle Mace'),
|
|
(24003, 25118, 0, 0, 0, 1, 1, 1, 1, 'Battle Star'),
|
|
(24003, 25131, 0, 0, 0, 1, 1, 1, 1, 'Hateful Bludgeon'),
|
|
(24003, 25132, 0, 0, 0, 1, 1, 1, 1, 'Thrallmar War Hammer'),
|
|
(24003, 25146, 0, 0, 0, 1, 1, 1, 1, 'Light-Etched Longsword'),
|
|
(24003, 25160, 0, 0, 0, 1, 1, 1, 1, 'Vengeance Blade'),
|
|
(24003, 25174, 0, 0, 0, 1, 1, 1, 1, 'Hanbo Staff'),
|
|
(24003, 25187, 0, 0, 0, 1, 1, 1, 1, 'Shekketh Talons'),
|
|
(24003, 25188, 0, 0, 0, 1, 1, 1, 1, 'Spleenripper Claws'),
|
|
(24003, 25201, 0, 0, 0, 1, 1, 1, 1, 'Reaver\'s Sickle'),
|
|
(24003, 25202, 0, 0, 0, 1, 1, 1, 1, 'Kingly Axe'),
|
|
(24003, 25215, 0, 0, 0, 1, 1, 1, 1, 'Spiked Battle Axe'),
|
|
(24003, 25216, 0, 0, 0, 1, 1, 1, 1, 'Ogre Splitting Axe'),
|
|
(24003, 25229, 0, 0, 0, 1, 1, 1, 1, 'Partisan Polearm'),
|
|
(24003, 25230, 0, 0, 0, 1, 1, 1, 1, 'Voulge Blade'),
|
|
(24003, 25243, 0, 0, 0, 1, 1, 1, 1, 'Windtalker Bow'),
|
|
(24003, 25244, 0, 0, 0, 1, 1, 1, 1, 'Viper Bow'),
|
|
(24003, 25257, 0, 0, 0, 1, 1, 1, 1, 'Citadel Crossbow'),
|
|
(24003, 25258, 0, 0, 0, 1, 1, 1, 1, 'Repeater Crossbow'),
|
|
(24003, 25271, 0, 0, 0, 1, 1, 1, 1, 'Croc-Hunter\'s Rifle'),
|
|
(24003, 25272, 0, 0, 0, 1, 1, 1, 1, 'PC-54 Shotgun'),
|
|
(24003, 25286, 0, 0, 0, 1, 1, 1, 1, 'Yew Wand'),
|
|
(24003, 25299, 0, 0, 0, 1, 1, 1, 1, 'Siphoning Dagger'),
|
|
(24003, 25300, 0, 0, 0, 1, 1, 1, 1, 'Lightning Dagger'),
|
|
(24003, 25313, 0, 0, 0, 1, 1, 1, 1, 'Cold-Iron Scepter'),
|
|
(24003, 25314, 0, 0, 0, 1, 1, 1, 1, 'Ceremonial Hammer'),
|
|
(24003, 25327, 0, 0, 0, 1, 1, 1, 1, 'Frenzied Staff'),
|
|
(24003, 25328, 0, 0, 0, 1, 1, 1, 1, 'Faerie-Kind Staff'),
|
|
(24003, 28534, 0, 0, 0, 1, 1, 1, 1, 'Fel Tipped Dart'),
|
|
(24003, 28535, 0, 0, 0, 1, 1, 1, 1, 'Amani Throwing Axe'),
|
|
(24004, 31125, 0, 0, 0, 1, 1, 1, 1, 'Boots of the Decimator'),
|
|
(24004, 31126, 0, 0, 0, 1, 1, 1, 1, 'Gloves of Ferocity'),
|
|
(24004, 31127, 0, 0, 0, 1, 1, 1, 1, 'Hauberk of Totemic Rage'),
|
|
(24004, 31131, 0, 0, 0, 1, 1, 1, 1, 'Sash of Silent Blades'),
|
|
(24004, 31133, 0, 0, 0, 1, 1, 1, 1, 'Leggings of Concentrated Darkness'),
|
|
(24004, 31134, 0, 0, 0, 1, 1, 1, 1, 'Blade of Misfortune'),
|
|
(24004, 31136, 0, 0, 0, 1, 1, 1, 1, 'Breastplate of Blade Turning'),
|
|
(24004, 31137, 0, 0, 0, 1, 1, 1, 1, 'Gauntlets of Purification'),
|
|
(24004, 31138, 0, 0, 0, 1, 1, 1, 1, 'Storm Lord\'s Girdle'),
|
|
(24004, 31139, 0, 0, 0, 1, 1, 1, 1, 'Fist of Reckoning'),
|
|
(24004, 31140, 0, 0, 0, 1, 1, 1, 1, 'Cloak of Entropy'),
|
|
(24004, 31142, 0, 0, 0, 1, 1, 1, 1, 'Blade of Trapped Knowledge'),
|
|
(24004, 31148, 0, 0, 0, 1, 1, 1, 1, 'Demon Hide Spaulders'),
|
|
(24005, 24621, 0, 0, 0, 1, 1, 1, 1, 'Slavehandler Belt'),
|
|
(24005, 24622, 0, 0, 0, 1, 1, 1, 1, 'Slavehandler Footpads'),
|
|
(24005, 24623, 0, 0, 0, 1, 1, 1, 1, 'Slavehandler Jerkin'),
|
|
(24005, 24624, 0, 0, 0, 1, 1, 1, 1, 'Slavehandler Handwraps'),
|
|
(24005, 24625, 0, 0, 0, 1, 1, 1, 1, 'Slavehandler Cap'),
|
|
(24005, 24626, 0, 0, 0, 1, 1, 1, 1, 'Slavehandler Pants'),
|
|
(24005, 24627, 0, 0, 0, 1, 1, 1, 1, 'Slavehandler Amice'),
|
|
(24005, 24628, 0, 0, 0, 1, 1, 1, 1, 'Slavehandler Wristguards'),
|
|
(24005, 24629, 0, 0, 0, 1, 1, 1, 1, 'Feralfen Sash'),
|
|
(24005, 24630, 0, 0, 0, 1, 1, 1, 1, 'Feralfen Sandals'),
|
|
(24005, 24631, 0, 0, 0, 1, 1, 1, 1, 'Feralfen Jerkin'),
|
|
(24005, 24632, 0, 0, 0, 1, 1, 1, 1, 'Feralfen Hand'),
|
|
(24005, 24633, 0, 0, 0, 1, 1, 1, 1, 'Feralfen Hood'),
|
|
(24005, 24634, 0, 0, 0, 1, 1, 1, 1, 'Feralfen Pants'),
|
|
(24005, 24635, 0, 0, 0, 1, 1, 1, 1, 'Feralfen Amice'),
|
|
(24005, 24636, 0, 0, 0, 1, 1, 1, 1, 'Feralfen Cuffs'),
|
|
(24005, 24733, 0, 0, 0, 1, 1, 1, 1, 'Sunroc Waistband'),
|
|
(24005, 24734, 0, 0, 0, 1, 1, 1, 1, 'Sunroc Boots'),
|
|
(24005, 24735, 0, 0, 0, 1, 1, 1, 1, 'Sunroc Chestpiece'),
|
|
(24005, 24736, 0, 0, 0, 1, 1, 1, 1, 'Sunroc Gloves'),
|
|
(24005, 24737, 0, 0, 0, 1, 1, 1, 1, 'Sunroc Mask'),
|
|
(24005, 24738, 0, 0, 0, 1, 1, 1, 1, 'Sunroc Pants'),
|
|
(24005, 24739, 0, 0, 0, 1, 1, 1, 1, 'Sunroc Shoulderguards'),
|
|
(24005, 24740, 0, 0, 0, 1, 1, 1, 1, 'Sunroc Armguards'),
|
|
(24005, 24741, 0, 0, 0, 1, 1, 1, 1, 'Ranger Belt'),
|
|
(24005, 24742, 0, 0, 0, 1, 1, 1, 1, 'Ranger Boots'),
|
|
(24005, 24743, 0, 0, 0, 1, 1, 1, 1, 'Ranger Jerkin'),
|
|
(24005, 24744, 0, 0, 0, 1, 1, 1, 1, 'Ranger Gloves'),
|
|
(24005, 24745, 0, 0, 0, 1, 1, 1, 1, 'Ranger Hat'),
|
|
(24005, 24746, 0, 0, 0, 1, 1, 1, 1, 'Ranger Pants'),
|
|
(24005, 24747, 0, 0, 0, 1, 1, 1, 1, 'Ranger Pauldrons'),
|
|
(24005, 24748, 0, 0, 0, 1, 1, 1, 1, 'Ranger Armguards'),
|
|
(24005, 24846, 0, 0, 0, 1, 1, 1, 1, 'Fenclaw Waistband'),
|
|
(24005, 24847, 0, 0, 0, 1, 1, 1, 1, 'Fenclaw Footwraps'),
|
|
(24005, 24848, 0, 0, 0, 1, 1, 1, 1, 'Fenclaw Armor'),
|
|
(24005, 24849, 0, 0, 0, 1, 1, 1, 1, 'Fenclaw Fists'),
|
|
(24005, 24850, 0, 0, 0, 1, 1, 1, 1, 'Fenclaw Helm'),
|
|
(24005, 24851, 0, 0, 0, 1, 1, 1, 1, 'Fenclaw Legguards'),
|
|
(24005, 24852, 0, 0, 0, 1, 1, 1, 1, 'Fenclaw Mantle'),
|
|
(24005, 24853, 0, 0, 0, 1, 1, 1, 1, 'Fenclaw Bindings'),
|
|
(24005, 24854, 0, 0, 0, 1, 1, 1, 1, 'Marshcreeper Belt'),
|
|
(24005, 24855, 0, 0, 0, 1, 1, 1, 1, 'Marshcreeper Sludgeboots'),
|
|
(24005, 24856, 0, 0, 0, 1, 1, 1, 1, 'Marshcreeper Fen-Vest'),
|
|
(24005, 24857, 0, 0, 0, 1, 1, 1, 1, 'Marshcreeper Gloves'),
|
|
(24005, 24858, 0, 0, 0, 1, 1, 1, 1, 'Marshcreeper Helm'),
|
|
(24005, 24859, 0, 0, 0, 1, 1, 1, 1, 'Marshcreeper Leggings'),
|
|
(24005, 24860, 0, 0, 0, 1, 1, 1, 1, 'Marshcreeper Mantle'),
|
|
(24005, 24861, 0, 0, 0, 1, 1, 1, 1, 'Marshcreeper Bracelets'),
|
|
(24005, 24958, 0, 0, 0, 1, 1, 1, 1, 'Khan\'aish Girdle'),
|
|
(24005, 24959, 0, 0, 0, 1, 1, 1, 1, 'Khan\'aish Greaves'),
|
|
(24005, 24960, 0, 0, 0, 1, 1, 1, 1, 'Khan\'aish Breastplate'),
|
|
(24005, 24961, 0, 0, 0, 1, 1, 1, 1, 'Khan\'aish Gloves'),
|
|
(24005, 24962, 0, 0, 0, 1, 1, 1, 1, 'Khan\'aish Helmet'),
|
|
(24005, 24963, 0, 0, 0, 1, 1, 1, 1, 'Khan\'aish Legplates'),
|
|
(24005, 24964, 0, 0, 0, 1, 1, 1, 1, 'Khan\'aish Epaulets'),
|
|
(24005, 24965, 0, 0, 0, 1, 1, 1, 1, 'Khan\'aish Bracers'),
|
|
(24005, 24966, 0, 0, 0, 1, 1, 1, 1, 'Talonguard Girdle'),
|
|
(24005, 24967, 0, 0, 0, 1, 1, 1, 1, 'Talonguard Greaves'),
|
|
(24005, 24968, 0, 0, 0, 1, 1, 1, 1, 'Talonguard Armor'),
|
|
(24005, 24969, 0, 0, 0, 1, 1, 1, 1, 'Talonguard Gloves'),
|
|
(24005, 24970, 0, 0, 0, 1, 1, 1, 1, 'Talonguard Helmet'),
|
|
(24005, 24971, 0, 0, 0, 1, 1, 1, 1, 'Talonguard Legplates'),
|
|
(24005, 24972, 0, 0, 0, 1, 1, 1, 1, 'Talonguard Epaulets'),
|
|
(24005, 24973, 0, 0, 0, 1, 1, 1, 1, 'Talonguard Bracers'),
|
|
(24005, 25035, 0, 0, 0, 1, 1, 1, 1, 'Silver-Lined Cloak'),
|
|
(24005, 25036, 0, 0, 0, 1, 1, 1, 1, 'Boulderfist Cloak'),
|
|
(24005, 25049, 0, 0, 0, 1, 1, 1, 1, 'Scheelite Ring'),
|
|
(24005, 25050, 0, 0, 0, 1, 1, 1, 1, 'Moldavite Ring'),
|
|
(24005, 25063, 0, 0, 0, 1, 1, 1, 1, 'Multi-Colored Beads'),
|
|
(24005, 25064, 0, 0, 0, 1, 1, 1, 1, 'Amethyst Pendant'),
|
|
(24005, 25077, 0, 0, 0, 1, 1, 1, 1, 'Modani War-Shield'),
|
|
(24005, 25078, 0, 0, 0, 1, 1, 1, 1, 'Zangari Shield'),
|
|
(24005, 25091, 0, 0, 0, 1, 1, 1, 1, 'Mistyreed Torch'),
|
|
(24005, 25092, 0, 0, 0, 1, 1, 1, 1, 'Consortium Crystal'),
|
|
(24005, 25105, 0, 0, 0, 1, 1, 1, 1, 'Arachnid Dagger'),
|
|
(24005, 25106, 0, 0, 0, 1, 1, 1, 1, 'Cobra Shortblade'),
|
|
(24005, 25119, 0, 0, 0, 1, 1, 1, 1, 'Silvermoon War-Mace'),
|
|
(24005, 25120, 0, 0, 0, 1, 1, 1, 1, 'Rockshard Club'),
|
|
(24005, 25133, 0, 0, 0, 1, 1, 1, 1, 'Stormwind Maul'),
|
|
(24005, 25134, 0, 0, 0, 1, 1, 1, 1, 'Highmountain Hammer'),
|
|
(24005, 25147, 0, 0, 0, 1, 1, 1, 1, 'Skystrider Katana'),
|
|
(24005, 25148, 0, 0, 0, 1, 1, 1, 1, 'Bone Collector Sword'),
|
|
(24005, 25161, 0, 0, 0, 1, 1, 1, 1, 'Dragon Wing Blade'),
|
|
(24005, 25162, 0, 0, 0, 1, 1, 1, 1, 'Darkened Broadsword'),
|
|
(24005, 25175, 0, 0, 0, 1, 1, 1, 1, 'Demoniac Longstaff'),
|
|
(24005, 25176, 0, 0, 0, 1, 1, 1, 1, 'Taiji Quarterstaff'),
|
|
(24005, 25189, 0, 0, 0, 1, 1, 1, 1, 'Ironspine Point'),
|
|
(24005, 25190, 0, 0, 0, 1, 1, 1, 1, 'Wight\'s Claws'),
|
|
(24005, 25203, 0, 0, 0, 1, 1, 1, 1, 'Chipped Woodchopper'),
|
|
(24005, 25204, 0, 0, 0, 1, 1, 1, 1, 'Colossal War Axe'),
|
|
(24005, 25218, 0, 0, 0, 1, 1, 1, 1, 'Silver-Edged Axe'),
|
|
(24005, 25231, 0, 0, 0, 1, 1, 1, 1, 'Fel-Wrought Halberd'),
|
|
(24005, 25232, 0, 0, 0, 1, 1, 1, 1, 'War Glaive'),
|
|
(24005, 25245, 0, 0, 0, 1, 1, 1, 1, 'Razorsong Bow'),
|
|
(24005, 25246, 0, 0, 0, 1, 1, 1, 1, 'Thalassian Compound Bow'),
|
|
(24005, 25259, 0, 0, 0, 1, 1, 1, 1, 'Collapsible Crossbow'),
|
|
(24005, 25260, 0, 0, 0, 1, 1, 1, 1, 'Archer\'s Crossbow'),
|
|
(24005, 25273, 0, 0, 0, 1, 1, 1, 1, 'Sawed-Off Shotgun'),
|
|
(24005, 25274, 0, 0, 0, 1, 1, 1, 1, 'Cliffjumper Shotgun'),
|
|
(24005, 25287, 0, 0, 0, 1, 1, 1, 1, 'Magician\'s Wand'),
|
|
(24005, 25288, 0, 0, 0, 1, 1, 1, 1, 'Conjurer\'s Wand'),
|
|
(24005, 25301, 0, 0, 0, 1, 1, 1, 1, 'Shattering Dagger'),
|
|
(24005, 25302, 0, 0, 0, 1, 1, 1, 1, 'Soul-Drain Dagger'),
|
|
(24005, 25315, 0, 0, 0, 1, 1, 1, 1, 'Restorative Mace'),
|
|
(24005, 25316, 0, 0, 0, 1, 1, 1, 1, 'Spirit-Clad Mace'),
|
|
(24005, 25329, 0, 0, 0, 1, 1, 1, 1, 'Tranquility Staff'),
|
|
(24005, 25330, 0, 0, 0, 1, 1, 1, 1, 'Starshine Staff'),
|
|
(24005, 28536, 0, 0, 0, 1, 1, 1, 1, 'Jagged Guillotine'),
|
|
(24005, 28537, 0, 0, 0, 1, 1, 1, 1, 'Wildhammer Throwing Axe'),
|
|
(24006, 31143, 0, 0, 0, 1, 1, 1, 1, 'Shroud of Frenzy'),
|
|
(24006, 31145, 0, 0, 0, 1, 1, 1, 1, 'Headdress of the Sleeper'),
|
|
(24006, 31147, 0, 0, 0, 1, 1, 1, 1, 'Pendant of Cunning'),
|
|
(24006, 31149, 0, 0, 0, 1, 1, 1, 1, 'Gloves of Pandemonium'),
|
|
(24006, 31150, 0, 0, 0, 1, 1, 1, 1, 'Gloves of Piety'),
|
|
(24006, 31151, 0, 0, 0, 1, 1, 1, 1, 'Girdle of Siege'),
|
|
(24006, 31152, 0, 0, 0, 1, 1, 1, 1, 'Chestguard of Illumination'),
|
|
(24006, 31153, 0, 0, 0, 1, 1, 1, 1, 'Axe of the Legion'),
|
|
(24006, 31173, 0, 0, 0, 1, 1, 1, 1, 'Boots of Savagery'),
|
|
(24006, 31175, 0, 0, 0, 1, 1, 1, 1, 'Blade Dancer\'s Wristguards'),
|
|
(24006, 31178, 0, 0, 0, 1, 1, 1, 1, 'Amulet of Unstable Power'),
|
|
(24007, 24637, 0, 0, 0, 1, 1, 1, 1, 'Mistyreed Belt'),
|
|
(24007, 24638, 0, 0, 0, 1, 1, 1, 1, 'Mistyreed Boots'),
|
|
(24007, 24639, 0, 0, 0, 1, 1, 1, 1, 'Mistyreed Tunic'),
|
|
(24007, 24640, 0, 0, 0, 1, 1, 1, 1, 'Mistyreed Gloves'),
|
|
(24007, 24641, 0, 0, 0, 1, 1, 1, 1, 'Mistyreed Hood'),
|
|
(24007, 24642, 0, 0, 0, 1, 1, 1, 1, 'Mistyreed Pants'),
|
|
(24007, 24643, 0, 0, 0, 1, 1, 1, 1, 'Mistyreed Shoulderpads'),
|
|
(24007, 24644, 0, 0, 0, 1, 1, 1, 1, 'Mistyreed Bracers'),
|
|
(24007, 24645, 0, 0, 0, 1, 1, 1, 1, 'Astralaan Belt'),
|
|
(24007, 24646, 0, 0, 0, 1, 1, 1, 1, 'Astralaan Boots'),
|
|
(24007, 24647, 0, 0, 0, 1, 1, 1, 1, 'Astralaan Robe'),
|
|
(24007, 24648, 0, 0, 0, 1, 1, 1, 1, 'Astralaan Gloves'),
|
|
(24007, 24649, 0, 0, 0, 1, 1, 1, 1, 'Astralaan Headdress'),
|
|
(24007, 24650, 0, 0, 0, 1, 1, 1, 1, 'Astralaan Pants'),
|
|
(24007, 24651, 0, 0, 0, 1, 1, 1, 1, 'Astralaan Shoulderpads'),
|
|
(24007, 24652, 0, 0, 0, 1, 1, 1, 1, 'Astralaan Bracer'),
|
|
(24007, 24749, 0, 0, 0, 1, 1, 1, 1, 'Daggerfen Belt'),
|
|
(24007, 24750, 0, 0, 0, 1, 1, 1, 1, 'Daggerfen Boots'),
|
|
(24007, 24751, 0, 0, 0, 1, 1, 1, 1, 'Daggerfen Battlevest'),
|
|
(24007, 24752, 0, 0, 0, 1, 1, 1, 1, 'Daggerfen Gloves'),
|
|
(24007, 24753, 0, 0, 0, 1, 1, 1, 1, 'Daggerfen Cowl'),
|
|
(24007, 24754, 0, 0, 0, 1, 1, 1, 1, 'Daggerfen Stitchpants'),
|
|
(24007, 24755, 0, 0, 0, 1, 1, 1, 1, 'Daggerfen Pauldrons'),
|
|
(24007, 24756, 0, 0, 0, 1, 1, 1, 1, 'Daggerfen Bindings'),
|
|
(24007, 24757, 0, 0, 0, 1, 1, 1, 1, 'Umbrafen Waistband'),
|
|
(24007, 24758, 0, 0, 0, 1, 1, 1, 1, 'Umbrafen Boots'),
|
|
(24007, 24759, 0, 0, 0, 1, 1, 1, 1, 'Umbrafen Tunic'),
|
|
(24007, 24760, 0, 0, 0, 1, 1, 1, 1, 'Umbrafen Gloves'),
|
|
(24007, 24761, 0, 0, 0, 1, 1, 1, 1, 'Umbrafen Cap'),
|
|
(24007, 24762, 0, 0, 0, 1, 1, 1, 1, 'Umbrafen Britches'),
|
|
(24007, 24763, 0, 0, 0, 1, 1, 1, 1, 'Umbrafen Shoulderguards'),
|
|
(24007, 24764, 0, 0, 0, 1, 1, 1, 1, 'Umbrafen Bindings'),
|
|
(24007, 24862, 0, 0, 0, 1, 1, 1, 1, 'Blood Knight Girdle'),
|
|
(24007, 24863, 0, 0, 0, 1, 1, 1, 1, 'Blood Knight Boots'),
|
|
(24007, 24864, 0, 0, 0, 1, 1, 1, 1, 'Blood Knight Breastplate'),
|
|
(24007, 24865, 0, 0, 0, 1, 1, 1, 1, 'Blood Knight Gauntlets'),
|
|
(24007, 24866, 0, 0, 0, 1, 1, 1, 1, 'Blood Knight Helm'),
|
|
(24007, 24867, 0, 0, 0, 1, 1, 1, 1, 'Blood Knight Greaves'),
|
|
(24007, 24868, 0, 0, 0, 1, 1, 1, 1, 'Blood Knight Pauldrons'),
|
|
(24007, 24869, 0, 0, 0, 1, 1, 1, 1, 'Blood Knight Bracers'),
|
|
(24007, 24870, 0, 0, 0, 1, 1, 1, 1, 'Ironspine Belt'),
|
|
(24007, 24871, 0, 0, 0, 1, 1, 1, 1, 'Ironspine Greaves'),
|
|
(24007, 24872, 0, 0, 0, 1, 1, 1, 1, 'Ironspine Chain Vest'),
|
|
(24007, 24873, 0, 0, 0, 1, 1, 1, 1, 'Ironspine Gloves'),
|
|
(24007, 24874, 0, 0, 0, 1, 1, 1, 1, 'Ironspine Helm'),
|
|
(24007, 24875, 0, 0, 0, 1, 1, 1, 1, 'Ironspine Legguards'),
|
|
(24007, 24876, 0, 0, 0, 1, 1, 1, 1, 'Ironspine Shoulderguards'),
|
|
(24007, 24877, 0, 0, 0, 1, 1, 1, 1, 'Ironspine Bracelets'),
|
|
(24007, 24974, 0, 0, 0, 1, 1, 1, 1, 'Reaver Girdle'),
|
|
(24007, 24975, 0, 0, 0, 1, 1, 1, 1, 'Reaver Greaves'),
|
|
(24007, 24976, 0, 0, 0, 1, 1, 1, 1, 'Reaver Armor'),
|
|
(24007, 24977, 0, 0, 0, 1, 1, 1, 1, 'Reaver Gloves'),
|
|
(24007, 24978, 0, 0, 0, 1, 1, 1, 1, 'Reaver Helmet'),
|
|
(24007, 24979, 0, 0, 0, 1, 1, 1, 1, 'Reaver Legplates'),
|
|
(24007, 24980, 0, 0, 0, 1, 1, 1, 1, 'Reaver Epaulets'),
|
|
(24007, 24981, 0, 0, 0, 1, 1, 1, 1, 'Reaver Bracers'),
|
|
(24007, 24982, 0, 0, 0, 1, 1, 1, 1, 'Boulderfist Belt'),
|
|
(24007, 24983, 0, 0, 0, 1, 1, 1, 1, 'Boulderfist Greaves'),
|
|
(24007, 24984, 0, 0, 0, 1, 1, 1, 1, 'Boulderfist Armor'),
|
|
(24007, 24985, 0, 0, 0, 1, 1, 1, 1, 'Boulderfist Gloves'),
|
|
(24007, 24986, 0, 0, 0, 1, 1, 1, 1, 'Boulderfist Helm'),
|
|
(24007, 24987, 0, 0, 0, 1, 1, 1, 1, 'Boulderfist Legplates'),
|
|
(24007, 24988, 0, 0, 0, 1, 1, 1, 1, 'Boulderfist Epaulets'),
|
|
(24007, 24989, 0, 0, 0, 1, 1, 1, 1, 'Boulderfist Bracers'),
|
|
(24007, 25037, 0, 0, 0, 1, 1, 1, 1, 'Patched Cape'),
|
|
(24007, 25038, 0, 0, 0, 1, 1, 1, 1, 'Forest Shroud'),
|
|
(24007, 25051, 0, 0, 0, 1, 1, 1, 1, 'Blue Topaz Band'),
|
|
(24007, 25052, 0, 0, 0, 1, 1, 1, 1, 'Hauyne Ring'),
|
|
(24007, 25065, 0, 0, 0, 1, 1, 1, 1, 'Turquoise Brooch'),
|
|
(24007, 25066, 0, 0, 0, 1, 1, 1, 1, 'Pink Sapphire Necklace'),
|
|
(24007, 25079, 0, 0, 0, 1, 1, 1, 1, 'Outland Shield'),
|
|
(24007, 25080, 0, 0, 0, 1, 1, 1, 1, 'Spell-Breaker Shield'),
|
|
(24007, 25093, 0, 0, 0, 1, 1, 1, 1, 'Shadow Council Orb'),
|
|
(24007, 25094, 0, 0, 0, 1, 1, 1, 1, 'Eldr\'naan Scepter'),
|
|
(24007, 25107, 0, 0, 0, 1, 1, 1, 1, 'Draconic Dagger'),
|
|
(24007, 25108, 0, 0, 0, 1, 1, 1, 1, 'Grave Keeper Knife'),
|
|
(24007, 25121, 0, 0, 0, 1, 1, 1, 1, 'Dreaded Mace'),
|
|
(24007, 25122, 0, 0, 0, 1, 1, 1, 1, 'Khorium Plated Bludgeon'),
|
|
(24007, 25135, 0, 0, 0, 1, 1, 1, 1, 'Clefthoof Mace'),
|
|
(24007, 25136, 0, 0, 0, 1, 1, 1, 1, 'Blood Stained Hammer'),
|
|
(24007, 25149, 0, 0, 0, 1, 1, 1, 1, 'Baron\'s Broadsword'),
|
|
(24007, 25150, 0, 0, 0, 1, 1, 1, 1, 'Honor Hold Saber'),
|
|
(24007, 25163, 0, 0, 0, 1, 1, 1, 1, 'Elexorien Blade'),
|
|
(24007, 25164, 0, 0, 0, 1, 1, 1, 1, 'Crude Umbrafen Blade'),
|
|
(24007, 25177, 0, 0, 0, 1, 1, 1, 1, 'Tanjo Staff'),
|
|
(24007, 25178, 0, 0, 0, 1, 1, 1, 1, 'Bata Staff'),
|
|
(24007, 25191, 0, 0, 0, 1, 1, 1, 1, 'Dread Fangs'),
|
|
(24007, 25192, 0, 0, 0, 1, 1, 1, 1, 'Gutrippers'),
|
|
(24007, 25205, 0, 0, 0, 1, 1, 1, 1, 'Silvermoon Crescent Axe'),
|
|
(24007, 25206, 0, 0, 0, 1, 1, 1, 1, 'Berserker Axe'),
|
|
(24007, 25219, 0, 0, 0, 1, 1, 1, 1, 'Rending Claw'),
|
|
(24007, 25220, 0, 0, 0, 1, 1, 1, 1, 'Glorious War-Axe'),
|
|
(24007, 25233, 0, 0, 0, 1, 1, 1, 1, 'Battle Scythe'),
|
|
(24007, 25234, 0, 0, 0, 1, 1, 1, 1, 'Telaari Polearm'),
|
|
(24007, 25247, 0, 0, 0, 1, 1, 1, 1, 'Expert\'s Bow'),
|
|
(24007, 25248, 0, 0, 0, 1, 1, 1, 1, 'Talbuk Hunting Bow'),
|
|
(24007, 25261, 0, 0, 0, 1, 1, 1, 1, 'Mighty Crossbow'),
|
|
(24007, 25262, 0, 0, 0, 1, 1, 1, 1, 'Battle Damaged Crossbow'),
|
|
(24007, 25275, 0, 0, 0, 1, 1, 1, 1, 'Dragonbreath Musket'),
|
|
(24007, 25276, 0, 0, 0, 1, 1, 1, 1, 'Tauren Runed Musket'),
|
|
(24007, 25289, 0, 0, 0, 1, 1, 1, 1, 'Majestic Wand'),
|
|
(24007, 25290, 0, 0, 0, 1, 1, 1, 1, 'Solitaire Wand'),
|
|
(24007, 25303, 0, 0, 0, 1, 1, 1, 1, 'Amplifying Blade'),
|
|
(24007, 25304, 0, 0, 0, 1, 1, 1, 1, 'Destructo-Blade'),
|
|
(24007, 25317, 0, 0, 0, 1, 1, 1, 1, 'Lesser Sledgemace'),
|
|
(24007, 25318, 0, 0, 0, 1, 1, 1, 1, 'Ancestral Hammer'),
|
|
(24007, 25331, 0, 0, 0, 1, 1, 1, 1, 'Vengeance Staff'),
|
|
(24007, 25332, 0, 0, 0, 1, 1, 1, 1, 'Reflective Staff'),
|
|
(24007, 28538, 0, 0, 0, 1, 1, 1, 1, 'Forked Shuriken'),
|
|
(24007, 28539, 0, 0, 0, 1, 1, 1, 1, 'Razor-Edged Boomerang'),
|
|
(24008, 31180, 0, 0, 0, 1, 1, 1, 1, 'Gauntlets of the Skullsplitter'),
|
|
(24008, 31186, 0, 0, 0, 1, 1, 1, 1, 'Braxxis\' Staff of Slumber'),
|
|
(24008, 31187, 0, 0, 0, 1, 1, 1, 1, 'Boots of the Pathfinder'),
|
|
(24008, 31193, 0, 0, 0, 1, 1, 1, 1, 'Blade of Unquenched Thirst'),
|
|
(24008, 31196, 0, 0, 0, 1, 1, 1, 1, 'Amulet of Sanctification'),
|
|
(24008, 31200, 0, 0, 0, 1, 1, 1, 1, 'Shield of the Wayward Footman'),
|
|
(24008, 31202, 0, 0, 0, 1, 1, 1, 1, 'Girdle of Divine Blessing'),
|
|
(24008, 31204, 0, 0, 0, 1, 1, 1, 1, 'The Gunblade'),
|
|
(24008, 31222, 0, 0, 0, 1, 1, 1, 1, 'Headdress of Inner Rage'),
|
|
(24008, 31226, 0, 0, 0, 1, 1, 1, 1, 'Leggings of the Sly'),
|
|
(24008, 31230, 0, 0, 0, 1, 1, 1, 1, 'Abyss Walker\'s Boots'),
|
|
(24009, 24653, 0, 0, 0, 1, 1, 1, 1, 'Consortium Sash'),
|
|
(24009, 24654, 0, 0, 0, 1, 1, 1, 1, 'Consortium Boot'),
|
|
(24009, 24655, 0, 0, 0, 1, 1, 1, 1, 'Consortium Robe'),
|
|
(24009, 24656, 0, 0, 0, 1, 1, 1, 1, 'Consortium Gloves'),
|
|
(24009, 24657, 0, 0, 0, 1, 1, 1, 1, 'Consortium Hood'),
|
|
(24009, 24658, 0, 0, 0, 1, 1, 1, 1, 'Consortium Pants'),
|
|
(24009, 24659, 0, 0, 0, 1, 1, 1, 1, 'Consortium Mantle'),
|
|
(24009, 24660, 0, 0, 0, 1, 1, 1, 1, 'Consortium Bracer'),
|
|
(24009, 24661, 0, 0, 0, 1, 1, 1, 1, 'Shadow Council Chain'),
|
|
(24009, 24662, 0, 0, 0, 1, 1, 1, 1, 'Shadow Council Boots'),
|
|
(24009, 24663, 0, 0, 0, 1, 1, 1, 1, 'Shadow Council Tunic'),
|
|
(24009, 24664, 0, 0, 0, 1, 1, 1, 1, 'Shadow Council Gloves'),
|
|
(24009, 24665, 0, 0, 0, 1, 1, 1, 1, 'Shadow Council Cowl'),
|
|
(24009, 24666, 0, 0, 0, 1, 1, 1, 1, 'Shadow Council Pants'),
|
|
(24009, 24667, 0, 0, 0, 1, 1, 1, 1, 'Shadow Council Mantle'),
|
|
(24009, 24668, 0, 0, 0, 1, 1, 1, 1, 'Shadow Council Bracer'),
|
|
(24009, 24765, 0, 0, 0, 1, 1, 1, 1, 'Clefthoof Belt'),
|
|
(24009, 24766, 0, 0, 0, 1, 1, 1, 1, 'Clefthoof Wanderboots'),
|
|
(24009, 24767, 0, 0, 0, 1, 1, 1, 1, 'Clefthoof Hidemantle'),
|
|
(24009, 24768, 0, 0, 0, 1, 1, 1, 1, 'Clefthoof Gloves'),
|
|
(24009, 24769, 0, 0, 0, 1, 1, 1, 1, 'Clefthoof Cover'),
|
|
(24009, 24770, 0, 0, 0, 1, 1, 1, 1, 'Clefthoof Britches'),
|
|
(24009, 24771, 0, 0, 0, 1, 1, 1, 1, 'Clefthoof Shoulderguards'),
|
|
(24009, 24772, 0, 0, 0, 1, 1, 1, 1, 'Clefthoof Bracers'),
|
|
(24009, 24773, 0, 0, 0, 1, 1, 1, 1, 'Boneshredder Belt'),
|
|
(24009, 24774, 0, 0, 0, 1, 1, 1, 1, 'Boneshredder Boots'),
|
|
(24009, 24775, 0, 0, 0, 1, 1, 1, 1, 'Boneshredder Jerkin'),
|
|
(24009, 24776, 0, 0, 0, 1, 1, 1, 1, 'Boneshredder Gloves'),
|
|
(24009, 24777, 0, 0, 0, 1, 1, 1, 1, 'Boneshredder Skullcap'),
|
|
(24009, 24778, 0, 0, 0, 1, 1, 1, 1, 'Boneshredder Britches'),
|
|
(24009, 24779, 0, 0, 0, 1, 1, 1, 1, 'Boneshredder Shoulderguards'),
|
|
(24009, 24780, 0, 0, 0, 1, 1, 1, 1, 'Boneshredder Wristguards'),
|
|
(24009, 24878, 0, 0, 0, 1, 1, 1, 1, 'Der\'izu Belt'),
|
|
(24009, 24879, 0, 0, 0, 1, 1, 1, 1, 'Der\'izu Greaves'),
|
|
(24009, 24880, 0, 0, 0, 1, 1, 1, 1, 'Der\'izu Chestpiece'),
|
|
(24009, 24881, 0, 0, 0, 1, 1, 1, 1, 'Der\'izu Fists'),
|
|
(24009, 24882, 0, 0, 0, 1, 1, 1, 1, 'Der\'izu Helm'),
|
|
(24009, 24883, 0, 0, 0, 1, 1, 1, 1, 'Der\'izu Legguards'),
|
|
(24009, 24884, 0, 0, 0, 1, 1, 1, 1, 'Der\'izu Spaulders'),
|
|
(24009, 24885, 0, 0, 0, 1, 1, 1, 1, 'Der\'izu Bracer'),
|
|
(24009, 24886, 0, 0, 0, 1, 1, 1, 1, 'Skettis Belt'),
|
|
(24009, 24887, 0, 0, 0, 1, 1, 1, 1, 'Skettis Footwraps'),
|
|
(24009, 24888, 0, 0, 0, 1, 1, 1, 1, 'Skettis Chestpiece'),
|
|
(24009, 24889, 0, 0, 0, 1, 1, 1, 1, 'Skettis Gauntlets'),
|
|
(24009, 24890, 0, 0, 0, 1, 1, 1, 1, 'Skettis Helmet'),
|
|
(24009, 24891, 0, 0, 0, 1, 1, 1, 1, 'Skettis Legguards'),
|
|
(24009, 24892, 0, 0, 0, 1, 1, 1, 1, 'Skettis Spaulders'),
|
|
(24009, 24893, 0, 0, 0, 1, 1, 1, 1, 'Skettis Bracer'),
|
|
(24009, 24990, 0, 0, 0, 1, 1, 1, 1, 'Warmaul Belt'),
|
|
(24009, 24991, 0, 0, 0, 1, 1, 1, 1, 'Warmaul Greaves'),
|
|
(24009, 24992, 0, 0, 0, 1, 1, 1, 1, 'Warmaul Breastplate'),
|
|
(24009, 24993, 0, 0, 0, 1, 1, 1, 1, 'Warmaul Gloves'),
|
|
(24009, 24994, 0, 0, 0, 1, 1, 1, 1, 'Warmaul Helmet'),
|
|
(24009, 24995, 0, 0, 0, 1, 1, 1, 1, 'Warmaul Legplates'),
|
|
(24009, 24996, 0, 0, 0, 1, 1, 1, 1, 'Warmaul Epaulets'),
|
|
(24009, 24997, 0, 0, 0, 1, 1, 1, 1, 'Warmaul Vambraces'),
|
|
(24009, 24998, 0, 0, 0, 1, 1, 1, 1, 'Bloodfist Girdle'),
|
|
(24009, 24999, 0, 0, 0, 1, 1, 1, 1, 'Bloodfist Greaves'),
|
|
(24009, 25000, 0, 0, 0, 1, 1, 1, 1, 'Bloodfist Breastplate'),
|
|
(24009, 25001, 0, 0, 0, 1, 1, 1, 1, 'Bloodfist Gloves'),
|
|
(24009, 25002, 0, 0, 0, 1, 1, 1, 1, 'Bloodfist Helmet'),
|
|
(24009, 25003, 0, 0, 0, 1, 1, 1, 1, 'Bloodfist Legplates'),
|
|
(24009, 25004, 0, 0, 0, 1, 1, 1, 1, 'Bloodfist Epaulets'),
|
|
(24009, 25005, 0, 0, 0, 1, 1, 1, 1, 'Bloodfist Vambraces'),
|
|
(24009, 25039, 0, 0, 0, 1, 1, 1, 1, 'Farseer Cloak'),
|
|
(24009, 25040, 0, 0, 0, 1, 1, 1, 1, 'Murkblood Cape'),
|
|
(24009, 25053, 0, 0, 0, 1, 1, 1, 1, 'Lazuli Ring'),
|
|
(24009, 25054, 0, 0, 0, 1, 1, 1, 1, 'Sodalite Band'),
|
|
(24009, 25067, 0, 0, 0, 1, 1, 1, 1, 'Diopside Beads'),
|
|
(24009, 25068, 0, 0, 0, 1, 1, 1, 1, 'Kunzite Necklace'),
|
|
(24009, 25081, 0, 0, 0, 1, 1, 1, 1, 'Bayeaux Shield'),
|
|
(24009, 25082, 0, 0, 0, 1, 1, 1, 1, 'Fel-Iron Shield'),
|
|
(24009, 25095, 0, 0, 0, 1, 1, 1, 1, 'Archmage Orb'),
|
|
(24009, 25096, 0, 0, 0, 1, 1, 1, 1, 'Elementalist Star'),
|
|
(24009, 25109, 0, 0, 0, 1, 1, 1, 1, 'Moon Blade'),
|
|
(24009, 25110, 0, 0, 0, 1, 1, 1, 1, 'Sharp Bowie Knife'),
|
|
(24009, 25123, 0, 0, 0, 1, 1, 1, 1, 'Boneshredder Mace'),
|
|
(24009, 25124, 0, 0, 0, 1, 1, 1, 1, 'Footman Mace'),
|
|
(24009, 25137, 0, 0, 0, 1, 1, 1, 1, 'Draenethyst Mallet'),
|
|
(24009, 25138, 0, 0, 0, 1, 1, 1, 1, 'Blood Knight Maul'),
|
|
(24009, 25151, 0, 0, 0, 1, 1, 1, 1, 'Assassins\' Short Blade'),
|
|
(24009, 25152, 0, 0, 0, 1, 1, 1, 1, 'Howling Sword'),
|
|
(24009, 25165, 0, 0, 0, 1, 1, 1, 1, 'Boulderfist Claymore'),
|
|
(24009, 25166, 0, 0, 0, 1, 1, 1, 1, 'Mok\'Nathal Warblade'),
|
|
(24009, 25179, 0, 0, 0, 1, 1, 1, 1, 'Nguni Stick'),
|
|
(24009, 25180, 0, 0, 0, 1, 1, 1, 1, 'Calenda Fighting Stick'),
|
|
(24009, 25193, 0, 0, 0, 1, 1, 1, 1, 'Deathclaw Talons'),
|
|
(24009, 25194, 0, 0, 0, 1, 1, 1, 1, 'Serpent\'s Fangs'),
|
|
(24009, 25207, 0, 0, 0, 1, 1, 1, 1, 'Shadowmoon Cleaver'),
|
|
(24009, 25208, 0, 0, 0, 1, 1, 1, 1, 'Bladespire Broadaxe'),
|
|
(24009, 25221, 0, 0, 0, 1, 1, 1, 1, 'Ghostly Battle Axe'),
|
|
(24009, 25222, 0, 0, 0, 1, 1, 1, 1, 'Ceremonial Slayer\'s Axe'),
|
|
(24009, 25235, 0, 0, 0, 1, 1, 1, 1, 'Ethereal-Etched Glaive'),
|
|
(24009, 25236, 0, 0, 0, 1, 1, 1, 1, 'Grim Scythe'),
|
|
(24009, 25249, 0, 0, 0, 1, 1, 1, 1, 'Ranger\'s Recurved Bow'),
|
|
(24009, 25250, 0, 0, 0, 1, 1, 1, 1, 'Rocslayer Longbow'),
|
|
(24009, 25263, 0, 0, 0, 1, 1, 1, 1, 'Assassins\' Silent Crossbow'),
|
|
(24009, 25264, 0, 0, 0, 1, 1, 1, 1, 'Pocket Ballista'),
|
|
(24009, 25277, 0, 0, 0, 1, 1, 1, 1, 'Sporting Rifle'),
|
|
(24009, 25278, 0, 0, 0, 1, 1, 1, 1, 'Nesingwary Longrifle'),
|
|
(24009, 25291, 0, 0, 0, 1, 1, 1, 1, 'Nobility Torch'),
|
|
(24009, 25292, 0, 0, 0, 1, 1, 1, 1, 'Mechano-Wand'),
|
|
(24009, 25305, 0, 0, 0, 1, 1, 1, 1, 'Elemental Dagger'),
|
|
(24009, 25306, 0, 0, 0, 1, 1, 1, 1, 'Permafrost Dagger'),
|
|
(24009, 25319, 0, 0, 0, 1, 1, 1, 1, 'Tranquility Mace'),
|
|
(24009, 25320, 0, 0, 0, 1, 1, 1, 1, 'Queen\'s Insignia'),
|
|
(24009, 25333, 0, 0, 0, 1, 1, 1, 1, 'Purification Staff'),
|
|
(24009, 25334, 0, 0, 0, 1, 1, 1, 1, 'Intimidating Greatstaff'),
|
|
(24009, 28540, 0, 0, 0, 1, 1, 1, 1, 'Arakkoa Talon-Axe'),
|
|
(24009, 28541, 0, 0, 0, 1, 1, 1, 1, 'Sawshrike'),
|
|
(24010, 31234, 0, 0, 0, 1, 1, 1, 1, 'Crystalblade of the Draenei'),
|
|
(24010, 31237, 0, 0, 0, 1, 1, 1, 1, 'Elekk Hide Leggings'),
|
|
(24010, 31240, 0, 0, 0, 1, 1, 1, 1, 'Scales of the Beast'),
|
|
(24010, 31255, 0, 0, 0, 1, 1, 1, 1, 'Cloak of the Craft'),
|
|
(24010, 31258, 0, 0, 0, 1, 1, 1, 1, 'Band of Sorrow'),
|
|
(24010, 31272, 0, 0, 0, 1, 1, 1, 1, 'Crown of Endless Knowledge'),
|
|
(24010, 31275, 0, 0, 0, 1, 1, 1, 1, 'Necklace of Trophies'),
|
|
(24010, 31276, 0, 0, 0, 1, 1, 1, 1, 'Boots of Zealotry'),
|
|
(24010, 31277, 0, 0, 0, 1, 1, 1, 1, 'Pathfinder\'s Band'),
|
|
(24010, 31280, 0, 0, 0, 1, 1, 1, 1, 'Thundercaller\'s Gauntlets'),
|
|
(24010, 31281, 0, 0, 0, 1, 1, 1, 1, 'Mask of Veiled Death'),
|
|
(24010, 31282, 0, 0, 0, 1, 1, 1, 1, 'Shroud of Spiritual Purity'),
|
|
(24010, 31283, 0, 0, 0, 1, 1, 1, 1, 'Sash of Sealed Fate'),
|
|
(24011, 24669, 0, 0, 0, 1, 1, 1, 1, 'Eldr\'naan Belt'),
|
|
(24011, 24670, 0, 0, 0, 1, 1, 1, 1, 'Eldr\'naan Boots'),
|
|
(24011, 24671, 0, 0, 0, 1, 1, 1, 1, 'Eldr\'naan Jerkin'),
|
|
(24011, 24672, 0, 0, 0, 1, 1, 1, 1, 'Eldr\'naan Gloves'),
|
|
(24011, 24673, 0, 0, 0, 1, 1, 1, 1, 'Eldr\'naan Hood'),
|
|
(24011, 24674, 0, 0, 0, 1, 1, 1, 1, 'Eldr\'naan Pants'),
|
|
(24011, 24675, 0, 0, 0, 1, 1, 1, 1, 'Eldr\'naan Shoulderpads'),
|
|
(24011, 24676, 0, 0, 0, 1, 1, 1, 1, 'Eldr\'naan Bracelets'),
|
|
(24011, 24677, 0, 0, 0, 1, 1, 1, 1, 'Archmage Belt'),
|
|
(24011, 24678, 0, 0, 0, 1, 1, 1, 1, 'Archmage Slippers'),
|
|
(24011, 24679, 0, 0, 0, 1, 1, 1, 1, 'Archmage Robe'),
|
|
(24011, 24680, 0, 0, 0, 1, 1, 1, 1, 'Archmage Gloves'),
|
|
(24011, 24681, 0, 0, 0, 1, 1, 1, 1, 'Archmage Headpiece'),
|
|
(24011, 24682, 0, 0, 0, 1, 1, 1, 1, 'Archmage Pants'),
|
|
(24011, 24683, 0, 0, 0, 1, 1, 1, 1, 'Archmage Mantle'),
|
|
(24011, 24684, 0, 0, 0, 1, 1, 1, 1, 'Archmage Bracelets'),
|
|
(24011, 24781, 0, 0, 0, 1, 1, 1, 1, 'Murkblood Belt'),
|
|
(24011, 24783, 0, 0, 0, 1, 1, 1, 1, 'Murkblood Boots'),
|
|
(24011, 24784, 0, 0, 0, 1, 1, 1, 1, 'Murkblood Chestpiece'),
|
|
(24011, 24785, 0, 0, 0, 1, 1, 1, 1, 'Murkblood Gloves'),
|
|
(24011, 24786, 0, 0, 0, 1, 1, 1, 1, 'Murkblood Cover'),
|
|
(24011, 24787, 0, 0, 0, 1, 1, 1, 1, 'Murkblood Pants'),
|
|
(24011, 24788, 0, 0, 0, 1, 1, 1, 1, 'Murkblood Shoulderguards'),
|
|
(24011, 24789, 0, 0, 0, 1, 1, 1, 1, 'Murkblood Bracers'),
|
|
(24011, 24790, 0, 0, 0, 1, 1, 1, 1, 'Expedition Girdle'),
|
|
(24011, 24791, 0, 0, 0, 1, 1, 1, 1, 'Expedition Boots'),
|
|
(24011, 24792, 0, 0, 0, 1, 1, 1, 1, 'Expedition Tunic'),
|
|
(24011, 24793, 0, 0, 0, 1, 1, 1, 1, 'Expedition Gloves'),
|
|
(24011, 24794, 0, 0, 0, 1, 1, 1, 1, 'Expedition Hood'),
|
|
(24011, 24795, 0, 0, 0, 1, 1, 1, 1, 'Expedition Pants'),
|
|
(24011, 24796, 0, 0, 0, 1, 1, 1, 1, 'Expedition Shoulderguards'),
|
|
(24011, 24797, 0, 0, 0, 1, 1, 1, 1, 'Expedition Bracers'),
|
|
(24011, 24894, 0, 0, 0, 1, 1, 1, 1, 'Sundered Waistband'),
|
|
(24011, 24895, 0, 0, 0, 1, 1, 1, 1, 'Sundered Footwraps'),
|
|
(24011, 24896, 0, 0, 0, 1, 1, 1, 1, 'Sundered Chestpiece'),
|
|
(24011, 24897, 0, 0, 0, 1, 1, 1, 1, 'Sundered Gauntlets'),
|
|
(24011, 24898, 0, 0, 0, 1, 1, 1, 1, 'Sundered Helmet'),
|
|
(24011, 24899, 0, 0, 0, 1, 1, 1, 1, 'Sundered Legguards'),
|
|
(24011, 24900, 0, 0, 0, 1, 1, 1, 1, 'Sundered Spaulders'),
|
|
(24011, 24901, 0, 0, 0, 1, 1, 1, 1, 'Tortured Bracer'),
|
|
(24011, 24902, 0, 0, 0, 1, 1, 1, 1, 'Talhide Stitched-Belt'),
|
|
(24011, 24903, 0, 0, 0, 1, 1, 1, 1, 'Talhide Lined-Boots'),
|
|
(24011, 24904, 0, 0, 0, 1, 1, 1, 1, 'Talhide Chestpiece'),
|
|
(24011, 24905, 0, 0, 0, 1, 1, 1, 1, 'Talhide Lined-Gloves'),
|
|
(24011, 24906, 0, 0, 0, 1, 1, 1, 1, 'Talhide Helmet'),
|
|
(24011, 24907, 0, 0, 0, 1, 1, 1, 1, 'Talhide Lined-Leggings'),
|
|
(24011, 24908, 0, 0, 0, 1, 1, 1, 1, 'Talhide Shoulderguards'),
|
|
(24011, 24909, 0, 0, 0, 1, 1, 1, 1, 'Talhide Lined-Bracers'),
|
|
(24011, 25006, 0, 0, 0, 1, 1, 1, 1, 'Conqueror\'s Girdle'),
|
|
(24011, 25007, 0, 0, 0, 1, 1, 1, 1, 'Conqueror\'s Greaves'),
|
|
(24011, 25008, 0, 0, 0, 1, 1, 1, 1, 'Conqueror\'s Breastplate'),
|
|
(24011, 25009, 0, 0, 0, 1, 1, 1, 1, 'Conqueror\'s Gauntlets'),
|
|
(24011, 25010, 0, 0, 0, 1, 1, 1, 1, 'Conqueror\'s Helmet'),
|
|
(24011, 25011, 0, 0, 0, 1, 1, 1, 1, 'Conqueror\'s Legplates'),
|
|
(24011, 25012, 0, 0, 0, 1, 1, 1, 1, 'Conqueror\'s Epaulets'),
|
|
(24011, 25013, 0, 0, 0, 1, 1, 1, 1, 'Conqueror\'s Vambraces'),
|
|
(24011, 25014, 0, 0, 0, 1, 1, 1, 1, 'Shattered Hand Belt'),
|
|
(24011, 25015, 0, 0, 0, 1, 1, 1, 1, 'Shattered Hand Sabatons'),
|
|
(24011, 25016, 0, 0, 0, 1, 1, 1, 1, 'Shattered Hand Breastplate'),
|
|
(24011, 25017, 0, 0, 0, 1, 1, 1, 1, 'Shattered Hand Gauntlets'),
|
|
(24011, 25018, 0, 0, 0, 1, 1, 1, 1, 'Shattered Hand Helmet'),
|
|
(24011, 25019, 0, 0, 0, 1, 1, 1, 1, 'Shattered Hand Legplates'),
|
|
(24011, 25020, 0, 0, 0, 1, 1, 1, 1, 'Shattered Hand Epaulets'),
|
|
(24011, 25021, 0, 0, 0, 1, 1, 1, 1, 'Shattered Hand Vambraces'),
|
|
(24011, 25041, 0, 0, 0, 1, 1, 1, 1, 'Ambusher\'s Cloak'),
|
|
(24011, 25042, 0, 0, 0, 1, 1, 1, 1, 'Nether Cloak'),
|
|
(24011, 25055, 0, 0, 0, 1, 1, 1, 1, 'Alexandrite Ring'),
|
|
(24011, 25056, 0, 0, 0, 1, 1, 1, 1, 'Almandine Ring'),
|
|
(24011, 25069, 0, 0, 0, 1, 1, 1, 1, 'Epidote Stone Necklace'),
|
|
(24011, 25070, 0, 0, 0, 1, 1, 1, 1, 'Coral Beads'),
|
|
(24011, 25083, 0, 0, 0, 1, 1, 1, 1, 'Smouldering Shield'),
|
|
(24011, 25084, 0, 0, 0, 1, 1, 1, 1, 'Zeth\'Gor Shield'),
|
|
(24011, 25097, 0, 0, 0, 1, 1, 1, 1, 'Astralaan Orb'),
|
|
(24011, 25098, 0, 0, 0, 1, 1, 1, 1, 'Tuurik Torch'),
|
|
(24011, 25111, 0, 0, 0, 1, 1, 1, 1, 'Lionhead Dagger'),
|
|
(24011, 25112, 0, 0, 0, 1, 1, 1, 1, 'Fel Ripper'),
|
|
(24011, 25125, 0, 0, 0, 1, 1, 1, 1, 'Retro-Spike Club'),
|
|
(24011, 25126, 0, 0, 0, 1, 1, 1, 1, 'Anvilmar Hammer'),
|
|
(24011, 25139, 0, 0, 0, 1, 1, 1, 1, 'Algaz Battle Hammer'),
|
|
(24011, 25140, 0, 0, 0, 1, 1, 1, 1, 'Commanding Mallet'),
|
|
(24011, 25153, 0, 0, 0, 1, 1, 1, 1, 'Gladiator Greatblade'),
|
|
(24011, 25154, 0, 0, 0, 1, 1, 1, 1, 'Blood Groove Blade'),
|
|
(24011, 25167, 0, 0, 0, 1, 1, 1, 1, 'Nethersteel Claymore'),
|
|
(24011, 25168, 0, 0, 0, 1, 1, 1, 1, 'Sha\'tari Longsword'),
|
|
(24011, 25181, 0, 0, 0, 1, 1, 1, 1, 'Tapered Staff'),
|
|
(24011, 25182, 0, 0, 0, 1, 1, 1, 1, 'Crystal-Etched Warstaff'),
|
|
(24011, 25195, 0, 0, 0, 1, 1, 1, 1, 'Diamond Tipped Claws'),
|
|
(24011, 25196, 0, 0, 0, 1, 1, 1, 1, 'Boneshredder Claws'),
|
|
(24011, 25209, 0, 0, 0, 1, 1, 1, 1, 'Amani Tomahawk'),
|
|
(24011, 25210, 0, 0, 0, 1, 1, 1, 1, 'Double-Bladed Axe'),
|
|
(24011, 25223, 0, 0, 0, 1, 1, 1, 1, 'Windcaller Hatchet'),
|
|
(24011, 25224, 0, 0, 0, 1, 1, 1, 1, 'Slavemaster Axe'),
|
|
(24011, 25237, 0, 0, 0, 1, 1, 1, 1, 'Nether Trident'),
|
|
(24011, 25238, 0, 0, 0, 1, 1, 1, 1, 'Hellfire War Spear'),
|
|
(24011, 25251, 0, 0, 0, 1, 1, 1, 1, 'Orc Flatbow'),
|
|
(24011, 25252, 0, 0, 0, 1, 1, 1, 1, 'Dream Catcher Bow'),
|
|
(24011, 25265, 0, 0, 0, 1, 1, 1, 1, 'Barreled Crossbow'),
|
|
(24011, 25266, 0, 0, 0, 1, 1, 1, 1, 'Well-Balanced Crossbow'),
|
|
(24011, 25279, 0, 0, 0, 1, 1, 1, 1, 'Sen\'jin Longrifle'),
|
|
(24011, 25280, 0, 0, 0, 1, 1, 1, 1, 'Game Hunter Musket'),
|
|
(24011, 25293, 0, 0, 0, 1, 1, 1, 1, 'Draenethyst Wand'),
|
|
(24011, 25294, 0, 0, 0, 1, 1, 1, 1, 'Dragonscale Wand'),
|
|
(24011, 25307, 0, 0, 0, 1, 1, 1, 1, 'Shadow Dagger'),
|
|
(24011, 25308, 0, 0, 0, 1, 1, 1, 1, 'Thunder Spike'),
|
|
(24011, 25321, 0, 0, 0, 1, 1, 1, 1, 'Divine Hammer'),
|
|
(24011, 25322, 0, 0, 0, 1, 1, 1, 1, 'Lordly Scepter'),
|
|
(24011, 25335, 0, 0, 0, 1, 1, 1, 1, 'Feral Warp-Staff'),
|
|
(24011, 25336, 0, 0, 0, 1, 1, 1, 1, 'Splintering Greatstaff'),
|
|
(24011, 28542, 0, 0, 0, 1, 1, 1, 1, 'Heartseeker Knives'),
|
|
(24011, 28543, 0, 0, 0, 1, 1, 1, 1, 'Dreghood Throwing Axe'),
|
|
(24012, 31190, 0, 0, 0, 1, 1, 1, 1, 'The Dreamer\'s Shoulderpads'),
|
|
(24012, 31284, 0, 0, 0, 1, 1, 1, 1, 'Bracers of Recklessness'),
|
|
(24012, 31285, 0, 0, 0, 1, 1, 1, 1, 'Chestguard of the Talon'),
|
|
(24012, 31286, 0, 0, 0, 1, 1, 1, 1, 'Breastplate of Rapid Striking'),
|
|
(24012, 31287, 0, 0, 0, 1, 1, 1, 1, 'Draenei Honor Guard Shield'),
|
|
(24012, 31288, 0, 0, 0, 1, 1, 1, 1, 'The Master\'s Treads'),
|
|
(24012, 31289, 0, 0, 0, 1, 1, 1, 1, 'Staff of Divine Infusion'),
|
|
(24012, 31291, 0, 0, 0, 1, 1, 1, 1, 'Crystalforged War Axe'),
|
|
(24012, 31292, 0, 0, 0, 1, 1, 1, 1, 'Crystal Pulse Shield'),
|
|
(24012, 31293, 0, 0, 0, 1, 1, 1, 1, 'Girdle of Gale Force'),
|
|
(24012, 31294, 0, 0, 0, 1, 1, 1, 1, 'Pauldrons of Surging Mana'),
|
|
(24012, 31295, 0, 0, 0, 1, 1, 1, 1, 'Chestguard of the Dark Stalker'),
|
|
(24012, 31297, 0, 0, 0, 1, 1, 1, 1, 'Robe of the Crimson Order'),
|
|
(24012, 31299, 0, 0, 0, 1, 1, 1, 1, 'The Oathkeeper'),
|
|
(24013, 24685, 0, 0, 0, 1, 1, 1, 1, 'Elementalist Belt'),
|
|
(24013, 24686, 0, 0, 0, 1, 1, 1, 1, 'Elementalist Boots'),
|
|
(24013, 24687, 0, 0, 0, 1, 1, 1, 1, 'Elementalist Tunic'),
|
|
(24013, 24688, 0, 0, 0, 1, 1, 1, 1, 'Elementalist Gloves'),
|
|
(24013, 24689, 0, 0, 0, 1, 1, 1, 1, 'Elementalist Skullcap'),
|
|
(24013, 24690, 0, 0, 0, 1, 1, 1, 1, 'Elementalist Leggings'),
|
|
(24013, 24691, 0, 0, 0, 1, 1, 1, 1, 'Elementalist Mantle'),
|
|
(24013, 24692, 0, 0, 0, 1, 1, 1, 1, 'Elementalist Bracelets'),
|
|
(24013, 24798, 0, 0, 0, 1, 1, 1, 1, 'Dragonhawk Belt'),
|
|
(24013, 24799, 0, 0, 0, 1, 1, 1, 1, 'Dragonhawk Boots'),
|
|
(24013, 24800, 0, 0, 0, 1, 1, 1, 1, 'Dragonhawk Tunic'),
|
|
(24013, 24801, 0, 0, 0, 1, 1, 1, 1, 'Dragonhawk Gloves'),
|
|
(24013, 24802, 0, 0, 0, 1, 1, 1, 1, 'Dragonhawk Hat'),
|
|
(24013, 24803, 0, 0, 0, 1, 1, 1, 1, 'Dragonhawk Pants'),
|
|
(24013, 24804, 0, 0, 0, 1, 1, 1, 1, 'Dragonhawk Shoulderguards'),
|
|
(24013, 24805, 0, 0, 0, 1, 1, 1, 1, 'Dragonhawk Bands'),
|
|
(24013, 24910, 0, 0, 0, 1, 1, 1, 1, 'Netherstorm Belt'),
|
|
(24013, 24911, 0, 0, 0, 1, 1, 1, 1, 'Netherstorm Greaves'),
|
|
(24013, 24912, 0, 0, 0, 1, 1, 1, 1, 'Netherstorm Chestpiece'),
|
|
(24013, 24913, 0, 0, 0, 1, 1, 1, 1, 'Netherstorm Gauntlets'),
|
|
(24013, 24914, 0, 0, 0, 1, 1, 1, 1, 'Netherstorm Helm'),
|
|
(24013, 24915, 0, 0, 0, 1, 1, 1, 1, 'Netherstorm Legguards'),
|
|
(24013, 24916, 0, 0, 0, 1, 1, 1, 1, 'Netherstorm Shoulderguards'),
|
|
(24013, 24917, 0, 0, 0, 1, 1, 1, 1, 'Netherstorm Bracer'),
|
|
(24013, 25022, 0, 0, 0, 1, 1, 1, 1, 'Warlord\'s Iron-Girdle'),
|
|
(24013, 25023, 0, 0, 0, 1, 1, 1, 1, 'Warlord\'s Sabatons'),
|
|
(24013, 25024, 0, 0, 0, 1, 1, 1, 1, 'Warlord\'s Iron-Breastplate'),
|
|
(24013, 25025, 0, 0, 0, 1, 1, 1, 1, 'Warlord\'s Iron-Gauntlets'),
|
|
(24013, 25026, 0, 0, 0, 1, 1, 1, 1, 'Warlord\'s Iron-Helm'),
|
|
(24013, 25027, 0, 0, 0, 1, 1, 1, 1, 'Warlord\'s Iron-Legplates'),
|
|
(24013, 25028, 0, 0, 0, 1, 1, 1, 1, 'Warlord\'s Iron-Epaulets'),
|
|
(24013, 25029, 0, 0, 0, 1, 1, 1, 1, 'Warlord\'s Iron-Vambraces'),
|
|
(24013, 25043, 0, 0, 0, 1, 1, 1, 1, 'Amber Cape'),
|
|
(24013, 25057, 0, 0, 0, 1, 1, 1, 1, 'Amber Band'),
|
|
(24013, 25071, 0, 0, 0, 1, 1, 1, 1, 'Tanzanite Pendant'),
|
|
(24013, 25085, 0, 0, 0, 1, 1, 1, 1, 'Dragonscale Shield'),
|
|
(24013, 25099, 0, 0, 0, 1, 1, 1, 1, 'Draenei Crystal Rod'),
|
|
(24013, 25113, 0, 0, 0, 1, 1, 1, 1, 'Phantom Dagger'),
|
|
(24013, 25127, 0, 0, 0, 1, 1, 1, 1, 'Knight\'s War Hammer'),
|
|
(24013, 25141, 0, 0, 0, 1, 1, 1, 1, 'Halaani Hammer'),
|
|
(24013, 25155, 0, 0, 0, 1, 1, 1, 1, 'Iron Skull Sword'),
|
|
(24013, 25169, 0, 0, 0, 1, 1, 1, 1, 'Fel Orc Brute Sword'),
|
|
(24013, 25183, 0, 0, 0, 1, 1, 1, 1, 'Voodoo Hex-Staff'),
|
|
(24013, 25197, 0, 0, 0, 1, 1, 1, 1, 'Razor Scythes'),
|
|
(24013, 25211, 0, 0, 0, 1, 1, 1, 1, 'Rockbiter Cutter'),
|
|
(24013, 25225, 0, 0, 0, 1, 1, 1, 1, 'Deepforge Broadaxe'),
|
|
(24013, 25239, 0, 0, 0, 1, 1, 1, 1, 'Legend\'s Glaive'),
|
|
(24013, 25253, 0, 0, 0, 1, 1, 1, 1, 'Windspear Longbow'),
|
|
(24013, 25267, 0, 0, 0, 1, 1, 1, 1, 'Rampant Crossbow'),
|
|
(24013, 25281, 0, 0, 0, 1, 1, 1, 1, 'Big-Boar Battle Rifle'),
|
|
(24013, 25295, 0, 0, 0, 1, 1, 1, 1, 'Flawless Wand'),
|
|
(24013, 25309, 0, 0, 0, 1, 1, 1, 1, 'Warpdagger'),
|
|
(24013, 25323, 0, 0, 0, 1, 1, 1, 1, 'Ascendant\'s Scepter'),
|
|
(24013, 25337, 0, 0, 0, 1, 1, 1, 1, 'Swarming Sting-Staff'),
|
|
(24013, 28544, 0, 0, 0, 1, 1, 1, 1, 'Assassin\'s Shuriken'),
|
|
(24014, 31290, 0, 0, 0, 1, 1, 1, 1, 'Band of Dominion'),
|
|
(24014, 31298, 0, 0, 0, 1, 1, 1, 1, 'Legguards of the Shattered Hand'),
|
|
(24014, 31303, 0, 0, 0, 1, 1, 1, 1, 'Valanos\' Longbow'),
|
|
(24014, 31304, 0, 0, 0, 1, 1, 1, 1, 'The Essence Focuser'),
|
|
(24014, 31305, 0, 0, 0, 1, 1, 1, 1, 'Ced\'s Carver'),
|
|
(24014, 31306, 0, 0, 0, 1, 1, 1, 1, 'Leggings of the Sacred Crest'),
|
|
(24014, 31308, 0, 0, 0, 1, 1, 1, 1, 'The Bringer of Death'),
|
|
(24015, 31318, 0, 0, 0, 1, 1, 1, 1, 'Singing Crystal Axe'),
|
|
(24015, 31319, 0, 0, 0, 1, 1, 1, 1, 'Band of Impenetrable Defenses'),
|
|
(24015, 31320, 0, 0, 0, 1, 1, 1, 1, 'Chestguard of Exile'),
|
|
(24015, 31321, 0, 0, 0, 1, 1, 1, 1, 'Choker of Repentance'),
|
|
(24015, 31322, 0, 0, 0, 1, 1, 1, 1, 'The Hammer of Destiny'),
|
|
(24015, 31323, 0, 0, 0, 1, 1, 1, 1, 'Don Santos\' Famous Hunting Rifle'),
|
|
(24015, 31326, 0, 0, 0, 1, 1, 1, 1, 'Truestrike Ring'),
|
|
(24015, 31328, 0, 0, 0, 1, 1, 1, 1, 'Leggings of Beast Mastery'),
|
|
(24015, 31329, 0, 0, 0, 1, 1, 1, 1, 'Lifegiving Cloak'),
|
|
(24015, 31330, 0, 0, 0, 1, 1, 1, 1, 'Lightning Crown'),
|
|
(24015, 31331, 0, 0, 0, 1, 1, 1, 1, 'The Night Blade'),
|
|
(24015, 31332, 0, 0, 0, 1, 1, 1, 1, 'Blinkstrike'),
|
|
(24015, 31333, 0, 0, 0, 1, 1, 1, 1, 'The Night Watchman'),
|
|
(24015, 31334, 0, 0, 0, 1, 1, 1, 1, 'Staff of Natural Fury'),
|
|
(24015, 31335, 0, 0, 0, 1, 1, 1, 1, 'Pants of Living Growth'),
|
|
(24015, 31336, 0, 0, 0, 1, 1, 1, 1, 'Blade of Wizardry'),
|
|
(24015, 31338, 0, 0, 0, 1, 1, 1, 1, 'Charlotte\'s Ivy'),
|
|
(24015, 31339, 0, 0, 0, 1, 1, 1, 1, 'Lola\'s Eve'),
|
|
(24015, 31340, 0, 0, 0, 1, 1, 1, 1, 'Will of Edward the Odd'),
|
|
(24015, 31342, 0, 0, 0, 1, 1, 1, 1, 'The Ancient Scepter of Sue-Min'),
|
|
(24015, 31343, 0, 0, 0, 1, 1, 1, 1, 'Kamaei\'s Cerulean Skirt'),
|
|
(24016, 8283, 0, 0, 0, 1, 1, 1, 1, 'Arcane Armor'),
|
|
(24016, 8289, 0, 0, 0, 1, 1, 1, 1, 'Arcane Leggings'),
|
|
(24016, 8290, 0, 0, 0, 1, 1, 1, 1, 'Arcane Robe'),
|
|
(24016, 8296, 0, 0, 0, 1, 1, 1, 1, 'Traveler\'s Jerkin'),
|
|
(24016, 8300, 0, 0, 0, 1, 1, 1, 1, 'Traveler\'s Leggings'),
|
|
(24016, 8307, 0, 0, 0, 1, 1, 1, 1, 'Hero\'s Boots'),
|
|
(24016, 8308, 0, 0, 0, 1, 1, 1, 1, 'Hero\'s Band'),
|
|
(24016, 8309, 0, 0, 0, 1, 1, 1, 1, 'Hero\'s Leggings'),
|
|
(24016, 8310, 0, 0, 0, 1, 1, 1, 1, 'Hero\'s Pauldrons'),
|
|
(24016, 10105, 0, 0, 0, 1, 1, 1, 1, 'Wanderer\'s Armor'),
|
|
(24016, 10136, 0, 0, 0, 1, 1, 1, 1, 'High Councillor\'s Bracers'),
|
|
(24016, 10137, 0, 0, 0, 1, 1, 1, 1, 'High Councillor\'s Boots'),
|
|
(24016, 10140, 0, 0, 0, 1, 1, 1, 1, 'High Councillor\'s Gloves'),
|
|
(24016, 10144, 0, 0, 0, 1, 1, 1, 1, 'High Councillor\'s Sash'),
|
|
(24016, 10146, 0, 0, 0, 1, 1, 1, 1, 'Mighty Boots'),
|
|
(24016, 10147, 0, 0, 0, 1, 1, 1, 1, 'Mighty Armsplints'),
|
|
(24016, 10149, 0, 0, 0, 1, 1, 1, 1, 'Mighty Gauntlets'),
|
|
(24016, 10154, 0, 0, 0, 1, 1, 1, 1, 'Mercurial Girdle'),
|
|
(24016, 10155, 0, 0, 0, 1, 1, 1, 1, 'Mercurial Greaves'),
|
|
(24016, 10156, 0, 0, 0, 1, 1, 1, 1, 'Mercurial Bracers'),
|
|
(24016, 10161, 0, 0, 0, 1, 1, 1, 1, 'Mercurial Gauntlets'),
|
|
(24016, 10210, 0, 0, 0, 1, 1, 1, 1, 'Elegant Mantle'),
|
|
(24016, 10217, 0, 0, 0, 1, 1, 1, 1, 'Elegant Leggings'),
|
|
(24016, 10219, 0, 0, 0, 1, 1, 1, 1, 'Elegant Circlet'),
|
|
(24016, 10226, 0, 0, 0, 1, 1, 1, 1, 'Nightshade Helmet'),
|
|
(24016, 10228, 0, 0, 0, 1, 1, 1, 1, 'Nightshade Spaulders'),
|
|
(24016, 10230, 0, 0, 0, 1, 1, 1, 1, 'Engraved Breastplate'),
|
|
(24016, 10249, 0, 0, 0, 1, 1, 1, 1, 'Master\'s Cloak'),
|
|
(24016, 10256, 0, 0, 0, 1, 1, 1, 1, 'Adventurer\'s Bracers'),
|
|
(24016, 10258, 0, 0, 0, 1, 1, 1, 1, 'Adventurer\'s Cape'),
|
|
(24016, 10267, 0, 0, 0, 1, 1, 1, 1, 'Masterwork Cape'),
|
|
(24016, 10275, 0, 0, 0, 1, 1, 1, 1, 'Emerald Breastplate'),
|
|
(24016, 10363, 0, 0, 0, 1, 1, 1, 1, 'Engraved Wall'),
|
|
(24016, 10373, 0, 0, 0, 1, 1, 1, 1, 'Imbued Plate Leggings'),
|
|
(24016, 10376, 0, 0, 0, 1, 1, 1, 1, 'Commander\'s Boots'),
|
|
(24016, 10379, 0, 0, 0, 1, 1, 1, 1, 'Commander\'s Helm'),
|
|
(24016, 10380, 0, 0, 0, 1, 1, 1, 1, 'Commander\'s Gauntlets'),
|
|
(24016, 10383, 0, 0, 0, 1, 1, 1, 1, 'Commander\'s Pauldrons'),
|
|
(24016, 10387, 0, 0, 0, 1, 1, 1, 1, 'Hyperion Girdle'),
|
|
(24016, 10391, 0, 0, 0, 1, 1, 1, 1, 'Hyperion Vambraces'),
|
|
(24016, 11979, 0, 0, 0, 1, 1, 1, 1, 'Peridot Circle'),
|
|
(24016, 12016, 0, 0, 0, 1, 1, 1, 1, 'Jungle Ring'),
|
|
(24016, 12046, 0, 0, 0, 1, 1, 1, 1, 'Jungle Necklace'),
|
|
(24016, 12057, 0, 0, 0, 1, 1, 1, 1, 'Dragonscale Band'),
|
|
(24016, 14303, 0, 0, 0, 1, 1, 1, 1, 'Bonecaster\'s Shroud'),
|
|
(24016, 14306, 0, 0, 0, 1, 1, 1, 1, 'Bonecaster\'s Vest'),
|
|
(24016, 14308, 0, 0, 0, 1, 1, 1, 1, 'Celestial Tunic'),
|
|
(24016, 14312, 0, 0, 0, 1, 1, 1, 1, 'Celestial Crown'),
|
|
(24016, 14317, 0, 0, 0, 1, 1, 1, 1, 'Celestial Silk Robes'),
|
|
(24016, 14323, 0, 0, 0, 1, 1, 1, 1, 'Resplendent Gauntlets'),
|
|
(24016, 14324, 0, 0, 0, 1, 1, 1, 1, 'Resplendent Sarong'),
|
|
(24016, 14325, 0, 0, 0, 1, 1, 1, 1, 'Resplendent Epaulets'),
|
|
(24016, 14330, 0, 0, 0, 1, 1, 1, 1, 'Eternal Bindings'),
|
|
(24016, 14337, 0, 0, 0, 1, 1, 1, 1, 'Eternal Cord'),
|
|
(24016, 14458, 0, 0, 0, 1, 1, 1, 1, 'Elunarian Boots'),
|
|
(24016, 14465, 0, 0, 0, 1, 1, 1, 1, 'Elunarian Belt'),
|
|
(24016, 14684, 0, 0, 0, 1, 1, 1, 1, 'Indomitable Belt'),
|
|
(24016, 14688, 0, 0, 0, 1, 1, 1, 1, 'Indomitable Epaulets'),
|
|
(24016, 14863, 0, 0, 0, 1, 1, 1, 1, 'Warleader\'s Gauntlets'),
|
|
(24016, 14865, 0, 0, 0, 1, 1, 1, 1, 'Warleader\'s Greaves'),
|
|
(24016, 14868, 0, 0, 0, 1, 1, 1, 1, 'Warleader\'s Shoulders'),
|
|
(24016, 14935, 0, 0, 0, 1, 1, 1, 1, 'Heroic Skullcap'),
|
|
(24016, 14936, 0, 0, 0, 1, 1, 1, 1, 'Heroic Legplates'),
|
|
(24016, 14966, 0, 0, 0, 1, 1, 1, 1, 'Glorious Breastplate'),
|
|
(24016, 14973, 0, 0, 0, 1, 1, 1, 1, 'Glorious Shield'),
|
|
(24016, 14976, 0, 0, 0, 1, 1, 1, 1, 'Exalted Gauntlets'),
|
|
(24016, 14977, 0, 0, 0, 1, 1, 1, 1, 'Exalted Girdle'),
|
|
(24016, 15189, 0, 0, 0, 1, 1, 1, 1, 'Grand Boots'),
|
|
(24016, 15192, 0, 0, 0, 1, 1, 1, 1, 'Grand Gauntlets'),
|
|
(24016, 15194, 0, 0, 0, 1, 1, 1, 1, 'Grand Legguards'),
|
|
(24016, 15239, 0, 0, 0, 1, 1, 1, 1, 'Felstone Reaver'),
|
|
(24016, 15266, 0, 0, 0, 1, 1, 1, 1, 'Fierce Mauler'),
|
|
(24016, 15278, 0, 0, 0, 1, 1, 1, 1, 'Solstice Staff'),
|
|
(24016, 15282, 0, 0, 0, 1, 1, 1, 1, 'Dragon Finger'),
|
|
(24016, 15288, 0, 0, 0, 1, 1, 1, 1, 'Blasthorn Bow'),
|
|
(24016, 15325, 0, 0, 0, 1, 1, 1, 1, 'Sharpshooter Harquebus'),
|
|
(24016, 15430, 0, 0, 0, 1, 1, 1, 1, 'Peerless Headband'),
|
|
(24016, 15433, 0, 0, 0, 1, 1, 1, 1, 'Peerless Armor'),
|
|
(24016, 15434, 0, 0, 0, 1, 1, 1, 1, 'Supreme Sash'),
|
|
(24016, 15436, 0, 0, 0, 1, 1, 1, 1, 'Supreme Bracers'),
|
|
(24016, 15437, 0, 0, 0, 1, 1, 1, 1, 'Supreme Cape'),
|
|
(24016, 15660, 0, 0, 0, 1, 1, 1, 1, 'Impenetrable Breastplate'),
|
|
(24016, 15664, 0, 0, 0, 1, 1, 1, 1, 'Impenetrable Helmet'),
|
|
(24016, 15665, 0, 0, 0, 1, 1, 1, 1, 'Impenetrable Legguards'),
|
|
(24016, 15667, 0, 0, 0, 1, 1, 1, 1, 'Impenetrable Wall'),
|
|
(24016, 15670, 0, 0, 0, 1, 1, 1, 1, 'Magnificent Helmet'),
|
|
(24016, 15672, 0, 0, 0, 1, 1, 1, 1, 'Magnificent Gauntlets'),
|
|
(24016, 15674, 0, 0, 0, 1, 1, 1, 1, 'Magnificent Greaves'),
|
|
(24016, 15676, 0, 0, 0, 1, 1, 1, 1, 'Magnificent Leggings'),
|
|
(24016, 15677, 0, 0, 0, 1, 1, 1, 1, 'Magnificent Shoulders'),
|
|
(24016, 15679, 0, 0, 0, 1, 1, 1, 1, 'Triumphant Bracers'),
|
|
(24016, 15683, 0, 0, 0, 1, 1, 1, 1, 'Triumphant Girdle'),
|
|
(24016, 15931, 0, 0, 0, 1, 1, 1, 1, 'Arcane Star'),
|
|
(24016, 15943, 0, 0, 0, 1, 1, 1, 1, 'Imbued Shield'),
|
|
(24016, 15986, 0, 0, 0, 1, 1, 1, 1, 'Bonecaster\'s Star'),
|
|
(24016, 15987, 0, 0, 0, 1, 1, 1, 1, 'Astral Orb'),
|
|
(24016, 18343, 0, 0, 0, 1, 1, 1, 1, 'Petrified Band'),
|
|
(24016, 18679, 0, 0, 0, 1, 1, 1, 1, 'Frigid Ring'),
|
|
(24017, 9402, 0, 0, 0, 1, 1, 1, 1, 'Earthborn Kilt'),
|
|
(24017, 13001, 0, 0, 0, 1, 1, 1, 1, 'Maiden\'s Circle'),
|
|
(24017, 13015, 0, 0, 0, 1, 1, 1, 1, 'Serathil'),
|
|
(24017, 13028, 0, 0, 0, 1, 1, 1, 1, 'Bludstone Hammer'),
|
|
(24017, 13053, 0, 0, 0, 1, 1, 1, 1, 'Doombringer'),
|
|
(24017, 13060, 0, 0, 0, 1, 1, 1, 1, 'The Needler'),
|
|
(24017, 13072, 0, 0, 0, 1, 1, 1, 1, 'Stonegrip Gauntlets'),
|
|
(24017, 13096, 0, 0, 0, 1, 1, 1, 1, 'Band of the Hierophant'),
|
|
(24017, 13116, 0, 0, 0, 1, 1, 1, 1, 'Spaulders of the Unseen'),
|
|
(24017, 13133, 0, 0, 0, 1, 1, 1, 1, 'Drakesfire Epaulets'),
|
|
(24018, 8303, 0, 0, 0, 1, 1, 1, 1, 'Hero\'s Breastplate'),
|
|
(24018, 8313, 0, 0, 0, 1, 1, 1, 1, 'Hero\'s Buckler'),
|
|
(24018, 10139, 0, 0, 0, 1, 1, 1, 1, 'High Councillor\'s Circlet'),
|
|
(24018, 10141, 0, 0, 0, 1, 1, 1, 1, 'High Councillor\'s Pants'),
|
|
(24018, 10142, 0, 0, 0, 1, 1, 1, 1, 'High Councillor\'s Mantle'),
|
|
(24018, 10150, 0, 0, 0, 1, 1, 1, 1, 'Mighty Helmet'),
|
|
(24018, 10152, 0, 0, 0, 1, 1, 1, 1, 'Mighty Leggings'),
|
|
(24018, 10153, 0, 0, 0, 1, 1, 1, 1, 'Mighty Spaulders'),
|
|
(24018, 10160, 0, 0, 0, 1, 1, 1, 1, 'Mercurial Circlet'),
|
|
(24018, 10162, 0, 0, 0, 1, 1, 1, 1, 'Mercurial Legguards'),
|
|
(24018, 10163, 0, 0, 0, 1, 1, 1, 1, 'Mercurial Pauldrons'),
|
|
(24018, 10215, 0, 0, 0, 1, 1, 1, 1, 'Elegant Robes'),
|
|
(24018, 10218, 0, 0, 0, 1, 1, 1, 1, 'Elegant Tunic'),
|
|
(24018, 10220, 0, 0, 0, 1, 1, 1, 1, 'Nightshade Tunic'),
|
|
(24018, 10227, 0, 0, 0, 1, 1, 1, 1, 'Nightshade Leggings'),
|
|
(24018, 10247, 0, 0, 0, 1, 1, 1, 1, 'Master\'s Boots'),
|
|
(24018, 10248, 0, 0, 0, 1, 1, 1, 1, 'Master\'s Bracers'),
|
|
(24018, 10250, 0, 0, 0, 1, 1, 1, 1, 'Master\'s Hat'),
|
|
(24018, 10251, 0, 0, 0, 1, 1, 1, 1, 'Master\'s Gloves'),
|
|
(24018, 10253, 0, 0, 0, 1, 1, 1, 1, 'Master\'s Mantle'),
|
|
(24018, 10255, 0, 0, 0, 1, 1, 1, 1, 'Master\'s Belt'),
|
|
(24018, 10257, 0, 0, 0, 1, 1, 1, 1, 'Adventurer\'s Boots'),
|
|
(24018, 10259, 0, 0, 0, 1, 1, 1, 1, 'Adventurer\'s Belt'),
|
|
(24018, 10260, 0, 0, 0, 1, 1, 1, 1, 'Adventurer\'s Gloves'),
|
|
(24018, 10261, 0, 0, 0, 1, 1, 1, 1, 'Adventurer\'s Bandana'),
|
|
(24018, 10263, 0, 0, 0, 1, 1, 1, 1, 'Adventurer\'s Shoulders'),
|
|
(24018, 10265, 0, 0, 0, 1, 1, 1, 1, 'Masterwork Bracers'),
|
|
(24018, 10268, 0, 0, 0, 1, 1, 1, 1, 'Masterwork Gauntlets'),
|
|
(24018, 10269, 0, 0, 0, 1, 1, 1, 1, 'Masterwork Girdle'),
|
|
(24018, 10270, 0, 0, 0, 1, 1, 1, 1, 'Masterwork Boots'),
|
|
(24018, 10272, 0, 0, 0, 1, 1, 1, 1, 'Masterwork Circlet'),
|
|
(24018, 10274, 0, 0, 0, 1, 1, 1, 1, 'Masterwork Pauldrons'),
|
|
(24018, 10366, 0, 0, 0, 1, 1, 1, 1, 'Demon Guard'),
|
|
(24018, 10368, 0, 0, 0, 1, 1, 1, 1, 'Imbued Plate Armor'),
|
|
(24018, 10378, 0, 0, 0, 1, 1, 1, 1, 'Commander\'s Armor'),
|
|
(24018, 10382, 0, 0, 0, 1, 1, 1, 1, 'Commander\'s Leggings'),
|
|
(24018, 10385, 0, 0, 0, 1, 1, 1, 1, 'Hyperion Greaves'),
|
|
(24018, 10386, 0, 0, 0, 1, 1, 1, 1, 'Hyperion Gauntlets'),
|
|
(24018, 10388, 0, 0, 0, 1, 1, 1, 1, 'Hyperion Helm'),
|
|
(24018, 10390, 0, 0, 0, 1, 1, 1, 1, 'Hyperion Pauldrons'),
|
|
(24018, 11992, 0, 0, 0, 1, 1, 1, 1, 'Vermilion Band'),
|
|
(24018, 12005, 0, 0, 0, 1, 1, 1, 1, 'Granite Ring'),
|
|
(24018, 12027, 0, 0, 0, 1, 1, 1, 1, 'Vermilion Necklace'),
|
|
(24018, 12036, 0, 0, 0, 1, 1, 1, 1, 'Granite Necklace'),
|
|
(24018, 14318, 0, 0, 0, 1, 1, 1, 1, 'Resplendent Tunic'),
|
|
(24018, 14322, 0, 0, 0, 1, 1, 1, 1, 'Resplendent Circlet'),
|
|
(24018, 14326, 0, 0, 0, 1, 1, 1, 1, 'Resplendent Robes'),
|
|
(24018, 14329, 0, 0, 0, 1, 1, 1, 1, 'Eternal Boots'),
|
|
(24018, 14333, 0, 0, 0, 1, 1, 1, 1, 'Eternal Gloves'),
|
|
(24018, 14334, 0, 0, 0, 1, 1, 1, 1, 'Eternal Sarong'),
|
|
(24018, 14335, 0, 0, 0, 1, 1, 1, 1, 'Eternal Spaulders'),
|
|
(24018, 14460, 0, 0, 0, 1, 1, 1, 1, 'Elunarian Diadem'),
|
|
(24018, 14461, 0, 0, 0, 1, 1, 1, 1, 'Elunarian Handgrips'),
|
|
(24018, 14462, 0, 0, 0, 1, 1, 1, 1, 'Elunarian Sarong'),
|
|
(24018, 14463, 0, 0, 0, 1, 1, 1, 1, 'Elunarian Spaulders'),
|
|
(24018, 14681, 0, 0, 0, 1, 1, 1, 1, 'Indomitable Boots'),
|
|
(24018, 14685, 0, 0, 0, 1, 1, 1, 1, 'Indomitable Gauntlets'),
|
|
(24018, 14686, 0, 0, 0, 1, 1, 1, 1, 'Indomitable Headdress'),
|
|
(24018, 14687, 0, 0, 0, 1, 1, 1, 1, 'Indomitable Leggings'),
|
|
(24018, 14809, 0, 0, 0, 1, 1, 1, 1, 'Warstrike Sabatons'),
|
|
(24018, 14814, 0, 0, 0, 1, 1, 1, 1, 'Warstrike Helmet'),
|
|
(24018, 14815, 0, 0, 0, 1, 1, 1, 1, 'Warstrike Gauntlets'),
|
|
(24018, 14816, 0, 0, 0, 1, 1, 1, 1, 'Warstrike Legguards'),
|
|
(24018, 14817, 0, 0, 0, 1, 1, 1, 1, 'Warstrike Shoulder Pads'),
|
|
(24018, 14862, 0, 0, 0, 1, 1, 1, 1, 'Warleader\'s Breastplate'),
|
|
(24018, 14866, 0, 0, 0, 1, 1, 1, 1, 'Warleader\'s Crown'),
|
|
(24018, 14867, 0, 0, 0, 1, 1, 1, 1, 'Warleader\'s Leggings'),
|
|
(24018, 14931, 0, 0, 0, 1, 1, 1, 1, 'Heroic Armor'),
|
|
(24018, 14978, 0, 0, 0, 1, 1, 1, 1, 'Exalted Sabatons'),
|
|
(24018, 14980, 0, 0, 0, 1, 1, 1, 1, 'Exalted Legplates'),
|
|
(24018, 14981, 0, 0, 0, 1, 1, 1, 1, 'Exalted Epaulets'),
|
|
(24018, 15193, 0, 0, 0, 1, 1, 1, 1, 'Grand Crown'),
|
|
(24018, 15195, 0, 0, 0, 1, 1, 1, 1, 'Grand Breastplate'),
|
|
(24018, 15220, 0, 0, 0, 1, 1, 1, 1, 'Battlefell Sabre'),
|
|
(24018, 15246, 0, 0, 0, 1, 1, 1, 1, 'Demon Blade'),
|
|
(24018, 15257, 0, 0, 0, 1, 1, 1, 1, 'Shin Blade'),
|
|
(24018, 15267, 0, 0, 0, 1, 1, 1, 1, 'Brutehammer'),
|
|
(24018, 15273, 0, 0, 0, 1, 1, 1, 1, 'Death Striker'),
|
|
(24018, 15296, 0, 0, 0, 1, 1, 1, 1, 'Hawkeye Bow'),
|
|
(24018, 15435, 0, 0, 0, 1, 1, 1, 1, 'Supreme Shoes'),
|
|
(24018, 15438, 0, 0, 0, 1, 1, 1, 1, 'Supreme Gloves'),
|
|
(24018, 15440, 0, 0, 0, 1, 1, 1, 1, 'Supreme Leggings'),
|
|
(24018, 15441, 0, 0, 0, 1, 1, 1, 1, 'Supreme Shoulders'),
|
|
(24018, 15669, 0, 0, 0, 1, 1, 1, 1, 'Magnificent Breastplate'),
|
|
(24018, 15675, 0, 0, 0, 1, 1, 1, 1, 'Magnificent Guard'),
|
|
(24018, 15678, 0, 0, 0, 1, 1, 1, 1, 'Triumphant Sabatons'),
|
|
(24018, 15682, 0, 0, 0, 1, 1, 1, 1, 'Triumphant Gauntlets'),
|
|
(24018, 15685, 0, 0, 0, 1, 1, 1, 1, 'Triumphant Legplates'),
|
|
(24018, 15686, 0, 0, 0, 1, 1, 1, 1, 'Triumphant Shoulder Pads'),
|
|
(24018, 15887, 0, 0, 0, 1, 1, 1, 1, 'Heroic Guard'),
|
|
(24018, 15940, 0, 0, 0, 1, 1, 1, 1, 'Elegant Scepter'),
|
|
(24018, 15988, 0, 0, 0, 1, 1, 1, 1, 'Resplendent Orb'),
|
|
(24018, 15991, 0, 0, 0, 1, 1, 1, 1, 'Warleader\'s Shield'),
|
|
(24019, 5267, 0, 0, 0, 1, 1, 1, 1, 'Scarlet Kris'),
|
|
(24019, 6622, 0, 0, 0, 1, 1, 1, 1, 'Sword of Zeal'),
|
|
(24019, 13000, 0, 0, 0, 1, 1, 1, 1, 'Staff of Hale Magefire'),
|
|
(24019, 13006, 0, 0, 0, 1, 1, 1, 1, 'Mass of McGowan'),
|
|
(24019, 13023, 0, 0, 0, 1, 1, 1, 1, 'Eaglehorn Long Bow'),
|
|
(24019, 13075, 0, 0, 0, 1, 1, 1, 1, 'Direwing Legguards'),
|
|
(24019, 13083, 0, 0, 0, 1, 1, 1, 1, 'Garrett Family Crest'),
|
|
(24019, 13107, 0, 0, 0, 1, 1, 1, 1, 'Magiskull Cuffs'),
|
|
(24019, 13113, 0, 0, 0, 1, 1, 1, 1, 'Feathermoon Headdress'),
|
|
(24019, 13123, 0, 0, 0, 1, 1, 1, 1, 'Dreamwalker Armor'),
|
|
(24020, 10135, 0, 0, 0, 1, 1, 1, 1, 'High Councillor\'s Tunic'),
|
|
(24020, 10143, 0, 0, 0, 1, 1, 1, 1, 'High Councillor\'s Robe'),
|
|
(24020, 10151, 0, 0, 0, 1, 1, 1, 1, 'Mighty Tunic'),
|
|
(24020, 10157, 0, 0, 0, 1, 1, 1, 1, 'Mercurial Breastplate'),
|
|
(24020, 10158, 0, 0, 0, 1, 1, 1, 1, 'Mercurial Guard'),
|
|
(24020, 10246, 0, 0, 0, 1, 1, 1, 1, 'Master\'s Vest'),
|
|
(24020, 10252, 0, 0, 0, 1, 1, 1, 1, 'Master\'s Leggings'),
|
|
(24020, 10254, 0, 0, 0, 1, 1, 1, 1, 'Master\'s Robe'),
|
|
(24020, 10262, 0, 0, 0, 1, 1, 1, 1, 'Adventurer\'s Legguards'),
|
|
(24020, 10264, 0, 0, 0, 1, 1, 1, 1, 'Adventurer\'s Tunic'),
|
|
(24020, 10266, 0, 0, 0, 1, 1, 1, 1, 'Masterwork Breastplate'),
|
|
(24020, 10271, 0, 0, 0, 1, 1, 1, 1, 'Masterwork Shield'),
|
|
(24020, 10273, 0, 0, 0, 1, 1, 1, 1, 'Masterwork Legplates'),
|
|
(24020, 10367, 0, 0, 0, 1, 1, 1, 1, 'Hyperion Shield'),
|
|
(24020, 10384, 0, 0, 0, 1, 1, 1, 1, 'Hyperion Armor'),
|
|
(24020, 10389, 0, 0, 0, 1, 1, 1, 1, 'Hyperion Legplates'),
|
|
(24020, 11980, 0, 0, 0, 1, 1, 1, 1, 'Opal Ring'),
|
|
(24020, 12017, 0, 0, 0, 1, 1, 1, 1, 'Prismatic Band'),
|
|
(24020, 12048, 0, 0, 0, 1, 1, 1, 1, 'Prismatic Pendant'),
|
|
(24020, 12058, 0, 0, 0, 1, 1, 1, 1, 'Demonic Bone Ring'),
|
|
(24020, 14328, 0, 0, 0, 1, 1, 1, 1, 'Eternal Chestguard'),
|
|
(24020, 14332, 0, 0, 0, 1, 1, 1, 1, 'Eternal Crown'),
|
|
(24020, 14336, 0, 0, 0, 1, 1, 1, 1, 'Eternal Wraps'),
|
|
(24020, 14456, 0, 0, 0, 1, 1, 1, 1, 'Elunarian Vest'),
|
|
(24020, 14464, 0, 0, 0, 1, 1, 1, 1, 'Elunarian Silk Robes'),
|
|
(24020, 14680, 0, 0, 0, 1, 1, 1, 1, 'Indomitable Vest'),
|
|
(24020, 14811, 0, 0, 0, 1, 1, 1, 1, 'Warstrike Chestguard'),
|
|
(24020, 14812, 0, 0, 0, 1, 1, 1, 1, 'Warstrike Buckler'),
|
|
(24020, 14975, 0, 0, 0, 1, 1, 1, 1, 'Exalted Harness'),
|
|
(24020, 14979, 0, 0, 0, 1, 1, 1, 1, 'Exalted Helmet'),
|
|
(24020, 14982, 0, 0, 0, 1, 1, 1, 1, 'Exalted Shield'),
|
|
(24020, 15221, 0, 0, 0, 1, 1, 1, 1, 'Holy War Sword'),
|
|
(24020, 15240, 0, 0, 0, 1, 1, 1, 1, 'Demon\'s Claw'),
|
|
(24020, 15247, 0, 0, 0, 1, 1, 1, 1, 'Bloodstrike Dagger'),
|
|
(24020, 15258, 0, 0, 0, 1, 1, 1, 1, 'Divine Warblade'),
|
|
(24020, 15283, 0, 0, 0, 1, 1, 1, 1, 'Lunar Wand'),
|
|
(24020, 15289, 0, 0, 0, 1, 1, 1, 1, 'Archstrike Bow'),
|
|
(24020, 15439, 0, 0, 0, 1, 1, 1, 1, 'Supreme Crown'),
|
|
(24020, 15442, 0, 0, 0, 1, 1, 1, 1, 'Supreme Breastplate'),
|
|
(24020, 15680, 0, 0, 0, 1, 1, 1, 1, 'Triumphant Chestpiece'),
|
|
(24020, 15684, 0, 0, 0, 1, 1, 1, 1, 'Triumphant Skullcap'),
|
|
(24020, 15687, 0, 0, 0, 1, 1, 1, 1, 'Triumphant Shield'),
|
|
(24020, 15941, 0, 0, 0, 1, 1, 1, 1, 'High Councillor\'s Scepter'),
|
|
(24020, 15942, 0, 0, 0, 1, 1, 1, 1, 'Master\'s Rod'),
|
|
(24020, 15968, 0, 0, 0, 1, 1, 1, 1, 'Elunarian Sphere'),
|
|
(24020, 15989, 0, 0, 0, 1, 1, 1, 1, 'Eternal Rod'),
|
|
(24021, 23197, 0, 0, 0, 1, 1, 1, 1, 'Idol of the Moon'),
|
|
(24021, 23199, 0, 0, 0, 1, 1, 1, 1, 'Totem of the Storm'),
|
|
(24021, 23203, 0, 0, 0, 1, 1, 1, 1, 'Libram of Fervor'),
|
|
(24022, 24575, 0, 0, 0, 1, 1, 1, 1, 'Outlander\'s Girdle'),
|
|
(24022, 24582, 0, 0, 0, 1, 1, 1, 1, 'Outlander\'s Boots'),
|
|
(24022, 24583, 0, 0, 0, 1, 1, 1, 1, 'Outlander\'s Tunic'),
|
|
(24022, 24584, 0, 0, 0, 1, 1, 1, 1, 'Outlander\'s Gloves'),
|
|
(24022, 24585, 0, 0, 0, 1, 1, 1, 1, 'Outlander\'s Facewrap'),
|
|
(24022, 24586, 0, 0, 0, 1, 1, 1, 1, 'Outlander\'s Leggings'),
|
|
(24022, 24587, 0, 0, 0, 1, 1, 1, 1, 'Outlander\'s Pauldrons'),
|
|
(24022, 24588, 0, 0, 0, 1, 1, 1, 1, 'Outlander\'s Bracers'),
|
|
(24022, 24589, 0, 0, 0, 1, 1, 1, 1, 'Fireheart Girdle'),
|
|
(24022, 24590, 0, 0, 0, 1, 1, 1, 1, 'Fireheart Boots'),
|
|
(24022, 24591, 0, 0, 0, 1, 1, 1, 1, 'Fireheart Chestpiece'),
|
|
(24022, 24592, 0, 0, 0, 1, 1, 1, 1, 'Fireheart Gloves'),
|
|
(24022, 24593, 0, 0, 0, 1, 1, 1, 1, 'Fireheart Skullcap'),
|
|
(24022, 24594, 0, 0, 0, 1, 1, 1, 1, 'Fireheart Leggings'),
|
|
(24022, 24595, 0, 0, 0, 1, 1, 1, 1, 'Fireheart Shoulderpads'),
|
|
(24022, 24596, 0, 0, 0, 1, 1, 1, 1, 'Fireheart Bracers'),
|
|
(24022, 24693, 0, 0, 0, 1, 1, 1, 1, 'Bonechewer Pelt-Girdle'),
|
|
(24022, 24694, 0, 0, 0, 1, 1, 1, 1, 'Bonechewer Shredboots'),
|
|
(24022, 24695, 0, 0, 0, 1, 1, 1, 1, 'Bonechewer Chestpiece'),
|
|
(24022, 24696, 0, 0, 0, 1, 1, 1, 1, 'Bonechewer Spikegloves'),
|
|
(24022, 24697, 0, 0, 0, 1, 1, 1, 1, 'Bonechewer Skincloak'),
|
|
(24022, 24698, 0, 0, 0, 1, 1, 1, 1, 'Bonechewer Ripleggings'),
|
|
(24022, 24699, 0, 0, 0, 1, 1, 1, 1, 'Bonechewer Shoulderguards'),
|
|
(24022, 24700, 0, 0, 0, 1, 1, 1, 1, 'Bonechewer Bands'),
|
|
(24022, 24701, 0, 0, 0, 1, 1, 1, 1, 'Haal\'eshi Cord'),
|
|
(24022, 24702, 0, 0, 0, 1, 1, 1, 1, 'Haal\'eshi Boots'),
|
|
(24022, 24703, 0, 0, 0, 1, 1, 1, 1, 'Haal\'eshi Jerkin'),
|
|
(24022, 24704, 0, 0, 0, 1, 1, 1, 1, 'Haal\'eshi Gloves'),
|
|
(24022, 24705, 0, 0, 0, 1, 1, 1, 1, 'Haal\'eshi Hat'),
|
|
(24022, 24706, 0, 0, 0, 1, 1, 1, 1, 'Haal\'eshi Leggings'),
|
|
(24022, 24707, 0, 0, 0, 1, 1, 1, 1, 'Haal\'eshi Pauldrons'),
|
|
(24022, 24708, 0, 0, 0, 1, 1, 1, 1, 'Haal\'eshi Bindings'),
|
|
(24022, 24806, 0, 0, 0, 1, 1, 1, 1, 'Unyielding Waistband'),
|
|
(24022, 24807, 0, 0, 0, 1, 1, 1, 1, 'Unyielding Footwraps'),
|
|
(24022, 24808, 0, 0, 0, 1, 1, 1, 1, 'Unyielding Chain Vest'),
|
|
(24022, 24809, 0, 0, 0, 1, 1, 1, 1, 'Unyielding Fists'),
|
|
(24022, 24810, 0, 0, 0, 1, 1, 1, 1, 'Unyielding Helm'),
|
|
(24022, 24811, 0, 0, 0, 1, 1, 1, 1, 'Unyielding Leggings'),
|
|
(24022, 24812, 0, 0, 0, 1, 1, 1, 1, 'Unyielding Spaulders'),
|
|
(24022, 24813, 0, 0, 0, 1, 1, 1, 1, 'Unyielding Bindings'),
|
|
(24022, 24814, 0, 0, 0, 1, 1, 1, 1, 'Felstone Waistband'),
|
|
(24022, 24815, 0, 0, 0, 1, 1, 1, 1, 'Felstone Greaves'),
|
|
(24022, 24816, 0, 0, 0, 1, 1, 1, 1, 'Felstone Chain Vest'),
|
|
(24022, 24817, 0, 0, 0, 1, 1, 1, 1, 'Felstone Gauntlets'),
|
|
(24022, 24818, 0, 0, 0, 1, 1, 1, 1, 'Felstone Helm'),
|
|
(24022, 24819, 0, 0, 0, 1, 1, 1, 1, 'Felstone Leggings'),
|
|
(24022, 24820, 0, 0, 0, 1, 1, 1, 1, 'Felstone Spaulders'),
|
|
(24022, 24821, 0, 0, 0, 1, 1, 1, 1, 'Felstone Bindings'),
|
|
(24022, 24918, 0, 0, 0, 1, 1, 1, 1, 'Grimscale Belt'),
|
|
(24022, 24919, 0, 0, 0, 1, 1, 1, 1, 'Grimscale Sabatons'),
|
|
(24022, 24920, 0, 0, 0, 1, 1, 1, 1, 'Grimscale Armor'),
|
|
(24022, 24921, 0, 0, 0, 1, 1, 1, 1, 'Grimscale Gauntlets'),
|
|
(24022, 24922, 0, 0, 0, 1, 1, 1, 1, 'Grimscale Helm'),
|
|
(24022, 24923, 0, 0, 0, 1, 1, 1, 1, 'Grimscale Legguards'),
|
|
(24022, 24924, 0, 0, 0, 1, 1, 1, 1, 'Grimscale Pauldrons'),
|
|
(24022, 24925, 0, 0, 0, 1, 1, 1, 1, 'Grimscale Vambraces'),
|
|
(24022, 24926, 0, 0, 0, 1, 1, 1, 1, 'Ango\'rosh Belt'),
|
|
(24022, 24927, 0, 0, 0, 1, 1, 1, 1, 'Ango\'rosh Sabatons'),
|
|
(24022, 24928, 0, 0, 0, 1, 1, 1, 1, 'Ango\'rosh Breastplate'),
|
|
(24022, 24929, 0, 0, 0, 1, 1, 1, 1, 'Ango\'rosh Gauntlets'),
|
|
(24022, 24930, 0, 0, 0, 1, 1, 1, 1, 'Ango\'rosh Helm'),
|
|
(24022, 24931, 0, 0, 0, 1, 1, 1, 1, 'Ango\'rosh Legguards'),
|
|
(24022, 24932, 0, 0, 0, 1, 1, 1, 1, 'Ango\'rosh Pauldrons'),
|
|
(24022, 24933, 0, 0, 0, 1, 1, 1, 1, 'Ango\'rosh Vambraces'),
|
|
(24022, 25030, 0, 0, 0, 1, 1, 1, 1, 'Silky Velvet Cloak'),
|
|
(24022, 25031, 0, 0, 0, 1, 1, 1, 1, 'Silvermoon Royal Cloak'),
|
|
(24022, 25044, 0, 0, 0, 1, 1, 1, 1, 'Rubellite Ring'),
|
|
(24022, 25045, 0, 0, 0, 1, 1, 1, 1, 'Azurite Ring'),
|
|
(24022, 25058, 0, 0, 0, 1, 1, 1, 1, 'Anglesite Choker'),
|
|
(24022, 25059, 0, 0, 0, 1, 1, 1, 1, 'Fire Opal Collar'),
|
|
(24022, 25072, 0, 0, 0, 1, 1, 1, 1, 'Northman\'s Shield'),
|
|
(24022, 25073, 0, 0, 0, 1, 1, 1, 1, 'Emperor Shield'),
|
|
(24022, 25086, 0, 0, 0, 1, 1, 1, 1, 'Dreamseeker Dandelion'),
|
|
(24022, 25087, 0, 0, 0, 1, 1, 1, 1, 'Bleeding Eye'),
|
|
(24022, 25100, 0, 0, 0, 1, 1, 1, 1, 'Liege Blade'),
|
|
(24022, 25101, 0, 0, 0, 1, 1, 1, 1, 'Cross Pommel Dagger'),
|
|
(24022, 25114, 0, 0, 0, 1, 1, 1, 1, 'Doomsayer\'s Mace'),
|
|
(24022, 25115, 0, 0, 0, 1, 1, 1, 1, 'Riversong Mace'),
|
|
(24022, 25128, 0, 0, 0, 1, 1, 1, 1, 'Shining Mace'),
|
|
(24022, 25129, 0, 0, 0, 1, 1, 1, 1, 'Giant\'s Leg Bone'),
|
|
(24022, 25142, 0, 0, 0, 1, 1, 1, 1, 'Telaari Longblade'),
|
|
(24022, 25143, 0, 0, 0, 1, 1, 1, 1, 'Silver Hand Blade'),
|
|
(24022, 25156, 0, 0, 0, 1, 1, 1, 1, 'Royal Crusader Sword'),
|
|
(24022, 25157, 0, 0, 0, 1, 1, 1, 1, 'Serpentlord Claymore'),
|
|
(24022, 25170, 0, 0, 0, 1, 1, 1, 1, 'Rattan Bo Staff'),
|
|
(24022, 25171, 0, 0, 0, 1, 1, 1, 1, 'Straight Hardwood Staff'),
|
|
(24022, 25184, 0, 0, 0, 1, 1, 1, 1, 'Ravager Claws'),
|
|
(24022, 25185, 0, 0, 0, 1, 1, 1, 1, 'Thrasher Blades'),
|
|
(24022, 25198, 0, 0, 0, 1, 1, 1, 1, 'Karaborian Battle Axe'),
|
|
(24022, 25199, 0, 0, 0, 1, 1, 1, 1, 'Knight\'s War Axe'),
|
|
(24022, 25212, 0, 0, 0, 1, 1, 1, 1, 'Lucky Strike Axe'),
|
|
(24022, 25213, 0, 0, 0, 1, 1, 1, 1, 'Fel-Touched Axe'),
|
|
(24022, 25226, 0, 0, 0, 1, 1, 1, 1, 'War Scythe'),
|
|
(24022, 25227, 0, 0, 0, 1, 1, 1, 1, 'Sha\'tari Longspear'),
|
|
(24022, 25240, 0, 0, 0, 1, 1, 1, 1, 'Azerothian Longbow'),
|
|
(24022, 25241, 0, 0, 0, 1, 1, 1, 1, 'Ashenvale Longbow'),
|
|
(24022, 25254, 0, 0, 0, 1, 1, 1, 1, 'Tower Crossbow'),
|
|
(24022, 25255, 0, 0, 0, 1, 1, 1, 1, 'Ram\'s Head Crossbow'),
|
|
(24022, 25268, 0, 0, 0, 1, 1, 1, 1, 'Lead-Slug Shotgun'),
|
|
(24022, 25269, 0, 0, 0, 1, 1, 1, 1, 'Longbeard Rifle'),
|
|
(24022, 25282, 0, 0, 0, 1, 1, 1, 1, 'Mahogany Wand'),
|
|
(24022, 25283, 0, 0, 0, 1, 1, 1, 1, 'Crystallized Ebony Wand'),
|
|
(24022, 25296, 0, 0, 0, 1, 1, 1, 1, 'Absorption Dagger'),
|
|
(24022, 25297, 0, 0, 0, 1, 1, 1, 1, 'Tuning Knife'),
|
|
(24022, 25310, 0, 0, 0, 1, 1, 1, 1, 'Naaru Lightmace'),
|
|
(24022, 25311, 0, 0, 0, 1, 1, 1, 1, 'Revitalizing Hammer'),
|
|
(24022, 25324, 0, 0, 0, 1, 1, 1, 1, 'Angerstaff'),
|
|
(24022, 25325, 0, 0, 0, 1, 1, 1, 1, 'Brutal Scar-Limb'),
|
|
(24022, 28531, 0, 0, 0, 1, 1, 1, 1, 'Barbed Shrike'),
|
|
(24022, 28532, 0, 0, 0, 1, 1, 1, 1, 'Silver Throwing Knives'),
|
|
(24023, 24597, 0, 0, 0, 1, 1, 1, 1, 'Starfire Sash'),
|
|
(24023, 24598, 0, 0, 0, 1, 1, 1, 1, 'Starfire Sandals'),
|
|
(24023, 24599, 0, 0, 0, 1, 1, 1, 1, 'Starfire Vest'),
|
|
(24023, 24600, 0, 0, 0, 1, 1, 1, 1, 'Starfire Gloves'),
|
|
(24023, 24601, 0, 0, 0, 1, 1, 1, 1, 'Starfire Circlet'),
|
|
(24023, 24602, 0, 0, 0, 1, 1, 1, 1, 'Starfire Trousers'),
|
|
(24023, 24603, 0, 0, 0, 1, 1, 1, 1, 'Starfire Mantle'),
|
|
(24023, 24604, 0, 0, 0, 1, 1, 1, 1, 'Starfire Wristwraps'),
|
|
(24023, 24709, 0, 0, 0, 1, 1, 1, 1, 'Vengeance Belt'),
|
|
(24023, 24710, 0, 0, 0, 1, 1, 1, 1, 'Vengeance Boots'),
|
|
(24023, 24711, 0, 0, 0, 1, 1, 1, 1, 'Vengeance Chestpiece'),
|
|
(24023, 24712, 0, 0, 0, 1, 1, 1, 1, 'Vengeance Gloves'),
|
|
(24023, 24713, 0, 0, 0, 1, 1, 1, 1, 'Vengeance Helm'),
|
|
(24023, 24714, 0, 0, 0, 1, 1, 1, 1, 'Vengeance Legguards'),
|
|
(24023, 24715, 0, 0, 0, 1, 1, 1, 1, 'Vengeance Pauldrons'),
|
|
(24023, 24716, 0, 0, 0, 1, 1, 1, 1, 'Vengeance Bands'),
|
|
(24023, 24822, 0, 0, 0, 1, 1, 1, 1, 'Netherstalker Belt'),
|
|
(24023, 24823, 0, 0, 0, 1, 1, 1, 1, 'Netherstalker Greaves'),
|
|
(24023, 24824, 0, 0, 0, 1, 1, 1, 1, 'Netherstalker Armor'),
|
|
(24023, 24825, 0, 0, 0, 1, 1, 1, 1, 'Netherstalker Gloves'),
|
|
(24023, 24826, 0, 0, 0, 1, 1, 1, 1, 'Netherstalker Helmet'),
|
|
(24023, 24827, 0, 0, 0, 1, 1, 1, 1, 'Netherstalker Legguards'),
|
|
(24023, 24828, 0, 0, 0, 1, 1, 1, 1, 'Netherstalker Mantle'),
|
|
(24023, 24829, 0, 0, 0, 1, 1, 1, 1, 'Netherstalker Bracer'),
|
|
(24023, 24934, 0, 0, 0, 1, 1, 1, 1, 'Darkcrest Belt'),
|
|
(24023, 24935, 0, 0, 0, 1, 1, 1, 1, 'Darkcrest Sabatons'),
|
|
(24023, 24936, 0, 0, 0, 1, 1, 1, 1, 'Darkcrest Breastplate'),
|
|
(24023, 24937, 0, 0, 0, 1, 1, 1, 1, 'Darkcrest Gauntlets'),
|
|
(24023, 24938, 0, 0, 0, 1, 1, 1, 1, 'Darkcrest Helm'),
|
|
(24023, 24939, 0, 0, 0, 1, 1, 1, 1, 'Darkcrest Legguards'),
|
|
(24023, 24940, 0, 0, 0, 1, 1, 1, 1, 'Darkcrest Pauldrons'),
|
|
(24023, 24941, 0, 0, 0, 1, 1, 1, 1, 'Darkcrest Bracers'),
|
|
(24023, 25032, 0, 0, 0, 1, 1, 1, 1, 'Hellfire Cloak'),
|
|
(24023, 25046, 0, 0, 0, 1, 1, 1, 1, 'Spined Ring'),
|
|
(24023, 25060, 0, 0, 0, 1, 1, 1, 1, 'Sunstone Necklace'),
|
|
(24023, 25074, 0, 0, 0, 1, 1, 1, 1, 'Telaari Shield'),
|
|
(24023, 25088, 0, 0, 0, 1, 1, 1, 1, 'Laughing Skull Orb'),
|
|
(24023, 25102, 0, 0, 0, 1, 1, 1, 1, 'Jaedenis Dagger'),
|
|
(24023, 25116, 0, 0, 0, 1, 1, 1, 1, 'Pneumatic War Hammer'),
|
|
(24023, 25130, 0, 0, 0, 1, 1, 1, 1, 'Gronn-Bone Club'),
|
|
(24023, 25144, 0, 0, 0, 1, 1, 1, 1, 'Skettis Curved Blade'),
|
|
(24023, 25158, 0, 0, 0, 1, 1, 1, 1, 'Skeletal Broadsword'),
|
|
(24023, 25172, 0, 0, 0, 1, 1, 1, 1, 'Jinbali Warp-Staff'),
|
|
(24023, 25186, 0, 0, 0, 1, 1, 1, 1, 'Vampiric Handscythes'),
|
|
(24023, 25200, 0, 0, 0, 1, 1, 1, 1, 'Jagged Broadaxe'),
|
|
(24023, 25214, 0, 0, 0, 1, 1, 1, 1, 'Mok\'Nathal Battleaxe'),
|
|
(24023, 25228, 0, 0, 0, 1, 1, 1, 1, 'Halberd Polearm'),
|
|
(24023, 25242, 0, 0, 0, 1, 1, 1, 1, 'Telaari Longbow'),
|
|
(24023, 25256, 0, 0, 0, 1, 1, 1, 1, 'Stronghold Crossbow'),
|
|
(24023, 25270, 0, 0, 0, 1, 1, 1, 1, 'Gnomish Assault Rifle'),
|
|
(24023, 25284, 0, 0, 0, 1, 1, 1, 1, 'Purpleheart Wand'),
|
|
(24023, 25298, 0, 0, 0, 1, 1, 1, 1, 'Combustion Dagger'),
|
|
(24023, 25312, 0, 0, 0, 1, 1, 1, 1, 'Glorious Scepter'),
|
|
(24023, 25326, 0, 0, 0, 1, 1, 1, 1, 'Primal Lore-Staff'),
|
|
(24023, 28533, 0, 0, 0, 1, 1, 1, 1, 'Wooden Boomerang'),
|
|
(24024, 3944, 0, 0, 0, 1, 1, 1, 1, 'Twill Belt'),
|
|
(24024, 3945, 0, 0, 0, 1, 1, 1, 1, 'Twill Boots'),
|
|
(24024, 3946, 0, 0, 0, 1, 1, 1, 1, 'Twill Bracers'),
|
|
(24024, 3947, 0, 0, 0, 1, 1, 1, 1, 'Twill Cloak'),
|
|
(24024, 3948, 0, 0, 0, 1, 1, 1, 1, 'Twill Gloves'),
|
|
(24024, 3949, 0, 0, 0, 1, 1, 1, 1, 'Twill Pants'),
|
|
(24024, 3950, 0, 0, 0, 1, 1, 1, 1, 'Twill Shoulderpads'),
|
|
(24024, 3951, 0, 0, 0, 1, 1, 1, 1, 'Twill Vest'),
|
|
(24024, 3969, 0, 0, 0, 1, 1, 1, 1, 'Smooth Leather Belt'),
|
|
(24024, 3970, 0, 0, 0, 1, 1, 1, 1, 'Smooth Leather Boots'),
|
|
(24024, 3971, 0, 0, 0, 1, 1, 1, 1, 'Smooth Leather Bracers'),
|
|
(24024, 3972, 0, 0, 0, 1, 1, 1, 1, 'Smooth Cloak'),
|
|
(24024, 3973, 0, 0, 0, 1, 1, 1, 1, 'Smooth Leather Gloves'),
|
|
(24024, 3974, 0, 0, 0, 1, 1, 1, 1, 'Smooth Leather Pants'),
|
|
(24024, 3975, 0, 0, 0, 1, 1, 1, 1, 'Smooth Leather Shoulderpads'),
|
|
(24024, 3976, 0, 0, 0, 1, 1, 1, 1, 'Smooth Leather Armor'),
|
|
(24024, 3987, 0, 0, 0, 1, 1, 1, 1, 'Deflecting Tower'),
|
|
(24024, 3990, 0, 0, 0, 1, 1, 1, 1, 'Crested Buckler'),
|
|
(24024, 3992, 0, 0, 0, 1, 1, 1, 1, 'Laminated Scale Belt'),
|
|
(24024, 3993, 0, 0, 0, 1, 1, 1, 1, 'Laminated Scale Boots'),
|
|
(24024, 3994, 0, 0, 0, 1, 1, 1, 1, 'Laminated Scale Bracers'),
|
|
(24024, 3995, 0, 0, 0, 1, 1, 1, 1, 'Laminated Scale Cloak'),
|
|
(24024, 3996, 0, 0, 0, 1, 1, 1, 1, 'Laminated Scale Gloves'),
|
|
(24024, 3997, 0, 0, 0, 1, 1, 1, 1, 'Laminated Scale Pants'),
|
|
(24024, 3998, 0, 0, 0, 1, 1, 1, 1, 'Laminated Scale Shoulderpads'),
|
|
(24024, 3999, 0, 0, 0, 1, 1, 1, 1, 'Laminated Scale Armor'),
|
|
(24024, 7910, 0, 0, 0, 1, 1, 1, 1, 'Star Ruby'),
|
|
(24024, 8080, 0, 0, 0, 1, 1, 1, 1, 'Light Plate Chestpiece'),
|
|
(24024, 8081, 0, 0, 0, 1, 1, 1, 1, 'Light Plate Belt'),
|
|
(24024, 8082, 0, 0, 0, 1, 1, 1, 1, 'Light Plate Boots'),
|
|
(24024, 8083, 0, 0, 0, 1, 1, 1, 1, 'Light Plate Bracers'),
|
|
(24024, 8084, 0, 0, 0, 1, 1, 1, 1, 'Light Plate Gloves'),
|
|
(24024, 8085, 0, 0, 0, 1, 1, 1, 1, 'Light Plate Pants'),
|
|
(24024, 8086, 0, 0, 0, 1, 1, 1, 1, 'Light Plate Shoulderpads'),
|
|
(24024, 8752, 0, 0, 0, 1, 1, 1, 1, 'Laminated Scale Circlet'),
|
|
(24024, 8753, 0, 0, 0, 1, 1, 1, 1, 'Smooth Leather Helmet'),
|
|
(24024, 8754, 0, 0, 0, 1, 1, 1, 1, 'Twill Cover'),
|
|
(24024, 8755, 0, 0, 0, 1, 1, 1, 1, 'Light Plate Helmet'),
|
|
(24024, 13816, 0, 0, 0, 1, 1, 1, 1, 'Fine Longsword'),
|
|
(24024, 13817, 0, 0, 0, 1, 1, 1, 1, 'Tapered Greatsword'),
|
|
(24024, 13818, 0, 0, 0, 1, 1, 1, 1, 'Jagged Axe'),
|
|
(24024, 13819, 0, 0, 0, 1, 1, 1, 1, 'Balanced War Axe'),
|
|
(24024, 13820, 0, 0, 0, 1, 1, 1, 1, 'Clout Mace'),
|
|
(24024, 13821, 0, 0, 0, 1, 1, 1, 1, 'Bulky Maul'),
|
|
(24024, 13822, 0, 0, 0, 1, 1, 1, 1, 'Spiked Dagger'),
|
|
(24024, 13823, 0, 0, 0, 1, 1, 1, 1, 'Stout War Staff'),
|
|
(24024, 13825, 0, 0, 0, 1, 1, 1, 1, 'Primed Musket'),
|
|
(24025, 7517, 0, 0, 0, 1, 1, 1, 1, 'Gossamer Tunic'),
|
|
(24025, 7518, 0, 0, 0, 1, 1, 1, 1, 'Gossamer Robe'),
|
|
(24025, 7527, 0, 0, 0, 1, 1, 1, 1, 'Cabalist Chestpiece'),
|
|
(24025, 7557, 0, 0, 0, 1, 1, 1, 1, 'Gossamer Rod'),
|
|
(24025, 7909, 0, 0, 0, 1, 1, 1, 1, 'Aquamarine'),
|
|
(24025, 8106, 0, 0, 0, 1, 1, 1, 1, 'Hibernal Armor'),
|
|
(24025, 8113, 0, 0, 0, 1, 1, 1, 1, 'Hibernal Robe'),
|
|
(24025, 8119, 0, 0, 0, 1, 1, 1, 1, 'Heraldic Breastplate'),
|
|
(24025, 8126, 0, 0, 0, 1, 1, 1, 1, 'Myrmidon\'s Breastplate'),
|
|
(24025, 8131, 0, 0, 0, 1, 1, 1, 1, 'Myrmidon\'s Helm'),
|
|
(24025, 8132, 0, 0, 0, 1, 1, 1, 1, 'Myrmidon\'s Leggings'),
|
|
(24025, 8133, 0, 0, 0, 1, 1, 1, 1, 'Myrmidon\'s Pauldrons'),
|
|
(24025, 8134, 0, 0, 0, 1, 1, 1, 1, 'Myrmidon\'s Defender'),
|
|
(24025, 8247, 0, 0, 0, 1, 1, 1, 1, 'Imperial Red Bracers'),
|
|
(24025, 8248, 0, 0, 0, 1, 1, 1, 1, 'Imperial Red Cloak'),
|
|
(24025, 8253, 0, 0, 0, 1, 1, 1, 1, 'Imperial Red Sash'),
|
|
(24025, 8255, 0, 0, 0, 1, 1, 1, 1, 'Serpentskin Girdle'),
|
|
(24025, 8257, 0, 0, 0, 1, 1, 1, 1, 'Serpentskin Bracers'),
|
|
(24025, 8259, 0, 0, 0, 1, 1, 1, 1, 'Serpentskin Cloak'),
|
|
(24025, 8266, 0, 0, 0, 1, 1, 1, 1, 'Ebonhold Cloak'),
|
|
(24025, 8274, 0, 0, 0, 1, 1, 1, 1, 'Valorous Chestguard'),
|
|
(24025, 8282, 0, 0, 0, 1, 1, 1, 1, 'Valorous Shield'),
|
|
(24025, 9940, 0, 0, 0, 1, 1, 1, 1, 'Abjurer\'s Hood'),
|
|
(24025, 9942, 0, 0, 0, 1, 1, 1, 1, 'Abjurer\'s Pants'),
|
|
(24025, 9953, 0, 0, 0, 1, 1, 1, 1, 'Chieftain\'s Headdress'),
|
|
(24025, 9954, 0, 0, 0, 1, 1, 1, 1, 'Chieftain\'s Leggings'),
|
|
(24025, 9955, 0, 0, 0, 1, 1, 1, 1, 'Chieftain\'s Shoulders'),
|
|
(24025, 9957, 0, 0, 0, 1, 1, 1, 1, 'Warmonger\'s Chestpiece'),
|
|
(24025, 9958, 0, 0, 0, 1, 1, 1, 1, 'Warmonger\'s Buckler'),
|
|
(24025, 10058, 0, 0, 0, 1, 1, 1, 1, 'Duskwoven Sandals'),
|
|
(24025, 10059, 0, 0, 0, 1, 1, 1, 1, 'Duskwoven Bracers'),
|
|
(24025, 10061, 0, 0, 0, 1, 1, 1, 1, 'Duskwoven Turban'),
|
|
(24025, 10062, 0, 0, 0, 1, 1, 1, 1, 'Duskwoven Gloves'),
|
|
(24025, 10063, 0, 0, 0, 1, 1, 1, 1, 'Duskwoven Amice'),
|
|
(24025, 10068, 0, 0, 0, 1, 1, 1, 1, 'Righteous Boots'),
|
|
(24025, 10072, 0, 0, 0, 1, 1, 1, 1, 'Righteous Gloves'),
|
|
(24025, 10075, 0, 0, 0, 1, 1, 1, 1, 'Righteous Spaulders'),
|
|
(24025, 10080, 0, 0, 0, 1, 1, 1, 1, 'Lord\'s Gauntlets'),
|
|
(24025, 10081, 0, 0, 0, 1, 1, 1, 1, 'Lord\'s Girdle'),
|
|
(24025, 10082, 0, 0, 0, 1, 1, 1, 1, 'Lord\'s Boots'),
|
|
(24025, 10083, 0, 0, 0, 1, 1, 1, 1, 'Lord\'s Crown'),
|
|
(24025, 10129, 0, 0, 0, 1, 1, 1, 1, 'Revenant Gauntlets'),
|
|
(24025, 10130, 0, 0, 0, 1, 1, 1, 1, 'Revenant Girdle'),
|
|
(24025, 10131, 0, 0, 0, 1, 1, 1, 1, 'Revenant Boots'),
|
|
(24025, 10132, 0, 0, 0, 1, 1, 1, 1, 'Revenant Helmet'),
|
|
(24025, 10134, 0, 0, 0, 1, 1, 1, 1, 'Revenant Shoulders'),
|
|
(24025, 10185, 0, 0, 0, 1, 1, 1, 1, 'Swashbuckler\'s Cape'),
|
|
(24025, 10191, 0, 0, 0, 1, 1, 1, 1, 'Crusader\'s Armguards'),
|
|
(24025, 10194, 0, 0, 0, 1, 1, 1, 1, 'Crusader\'s Cloak'),
|
|
(24025, 10208, 0, 0, 0, 1, 1, 1, 1, 'Overlord\'s Legplates'),
|
|
(24025, 10209, 0, 0, 0, 1, 1, 1, 1, 'Overlord\'s Spaulders'),
|
|
(24025, 10239, 0, 0, 0, 1, 1, 1, 1, 'Heavy Lamellar Vambraces'),
|
|
(24025, 10243, 0, 0, 0, 1, 1, 1, 1, 'Heavy Lamellar Girdle'),
|
|
(24025, 11989, 0, 0, 0, 1, 1, 1, 1, 'Vanadium Loop'),
|
|
(24025, 12001, 0, 0, 0, 1, 1, 1, 1, 'Onyx Ring'),
|
|
(24025, 12024, 0, 0, 0, 1, 1, 1, 1, 'Vanadium Talisman'),
|
|
(24025, 12044, 0, 0, 0, 1, 1, 1, 1, 'Arctic Pendant'),
|
|
(24025, 14265, 0, 0, 0, 1, 1, 1, 1, 'Bloodwoven Wraps'),
|
|
(24025, 14267, 0, 0, 0, 1, 1, 1, 1, 'Bloodwoven Jerkin'),
|
|
(24025, 14274, 0, 0, 0, 1, 1, 1, 1, 'Gaea\'s Leggings'),
|
|
(24025, 14278, 0, 0, 0, 1, 1, 1, 1, 'Opulent Mantle'),
|
|
(24025, 14282, 0, 0, 0, 1, 1, 1, 1, 'Opulent Gloves'),
|
|
(24025, 14285, 0, 0, 0, 1, 1, 1, 1, 'Opulent Boots'),
|
|
(24025, 14286, 0, 0, 0, 1, 1, 1, 1, 'Opulent Belt'),
|
|
(24025, 14289, 0, 0, 0, 1, 1, 1, 1, 'Arachnidian Girdle'),
|
|
(24025, 14290, 0, 0, 0, 1, 1, 1, 1, 'Arachnidian Footpads'),
|
|
(24025, 14291, 0, 0, 0, 1, 1, 1, 1, 'Arachnidian Bracelets'),
|
|
(24025, 14294, 0, 0, 0, 1, 1, 1, 1, 'Arachnidian Gloves'),
|
|
(24025, 14441, 0, 0, 0, 1, 1, 1, 1, 'Venomshroud Mask'),
|
|
(24025, 14450, 0, 0, 0, 1, 1, 1, 1, 'Highborne Cloak'),
|
|
(24025, 14662, 0, 0, 0, 1, 1, 1, 1, 'Keeper\'s Hooves'),
|
|
(24025, 14666, 0, 0, 0, 1, 1, 1, 1, 'Keeper\'s Gloves'),
|
|
(24025, 14669, 0, 0, 0, 1, 1, 1, 1, 'Keeper\'s Mantle'),
|
|
(24025, 14792, 0, 0, 0, 1, 1, 1, 1, 'Protector Gauntlets'),
|
|
(24025, 14793, 0, 0, 0, 1, 1, 1, 1, 'Protector Waistband'),
|
|
(24025, 14794, 0, 0, 0, 1, 1, 1, 1, 'Protector Ankleguards'),
|
|
(24025, 14797, 0, 0, 0, 1, 1, 1, 1, 'Protector Pads'),
|
|
(24025, 14846, 0, 0, 0, 1, 1, 1, 1, 'Sunscale Gauntlets'),
|
|
(24025, 14848, 0, 0, 0, 1, 1, 1, 1, 'Sunscale Sabatons'),
|
|
(24025, 14851, 0, 0, 0, 1, 1, 1, 1, 'Sunscale Spaulders'),
|
|
(24025, 14904, 0, 0, 0, 1, 1, 1, 1, 'Brutish Breastplate'),
|
|
(24025, 14912, 0, 0, 0, 1, 1, 1, 1, 'Brutish Shield'),
|
|
(24025, 14920, 0, 0, 0, 1, 1, 1, 1, 'Jade Legplates'),
|
|
(24025, 14923, 0, 0, 0, 1, 1, 1, 1, 'Lofty Armguards'),
|
|
(24025, 14948, 0, 0, 0, 1, 1, 1, 1, 'Bloodforged Chestpiece'),
|
|
(24025, 14952, 0, 0, 0, 1, 1, 1, 1, 'Bloodforged Helmet'),
|
|
(24025, 14954, 0, 0, 0, 1, 1, 1, 1, 'Bloodforged Shield'),
|
|
(24025, 14957, 0, 0, 0, 1, 1, 1, 1, 'High Chief\'s Sabatons'),
|
|
(24025, 14960, 0, 0, 0, 1, 1, 1, 1, 'High Chief\'s Belt'),
|
|
(24025, 15171, 0, 0, 0, 1, 1, 1, 1, 'Potent Boots'),
|
|
(24025, 15174, 0, 0, 0, 1, 1, 1, 1, 'Potent Gloves'),
|
|
(24025, 15175, 0, 0, 0, 1, 1, 1, 1, 'Potent Helmet'),
|
|
(24025, 15176, 0, 0, 0, 1, 1, 1, 1, 'Potent Pants'),
|
|
(24025, 15182, 0, 0, 0, 1, 1, 1, 1, 'Praetorian Wristbands'),
|
|
(24025, 15183, 0, 0, 0, 1, 1, 1, 1, 'Praetorian Cloak'),
|
|
(24025, 15216, 0, 0, 0, 1, 1, 1, 1, 'Rune Sword'),
|
|
(24025, 15245, 0, 0, 0, 1, 1, 1, 1, 'Vorpal Dagger'),
|
|
(24025, 15263, 0, 0, 0, 1, 1, 1, 1, 'Royal Mallet'),
|
|
(24025, 15279, 0, 0, 0, 1, 1, 1, 1, 'Ivory Wand'),
|
|
(24025, 15291, 0, 0, 0, 1, 1, 1, 1, 'Harpy Needler'),
|
|
(24025, 15323, 0, 0, 0, 1, 1, 1, 1, 'Percussion Shotgun'),
|
|
(24025, 15381, 0, 0, 0, 1, 1, 1, 1, 'Rageclaw Chestguard'),
|
|
(24025, 15384, 0, 0, 0, 1, 1, 1, 1, 'Rageclaw Helm'),
|
|
(24025, 15387, 0, 0, 0, 1, 1, 1, 1, 'Jadefire Bracelets'),
|
|
(24025, 15621, 0, 0, 0, 1, 1, 1, 1, 'Gryphon Mail Buckler'),
|
|
(24025, 15622, 0, 0, 0, 1, 1, 1, 1, 'Gryphon Mail Breastplate'),
|
|
(24025, 15623, 0, 0, 0, 1, 1, 1, 1, 'Gryphon Mail Crown'),
|
|
(24025, 15627, 0, 0, 0, 1, 1, 1, 1, 'Gryphon Mail Legguards'),
|
|
(24025, 15637, 0, 0, 0, 1, 1, 1, 1, 'Formidable Legguards'),
|
|
(24025, 15639, 0, 0, 0, 1, 1, 1, 1, 'Ironhide Bracers'),
|
|
(24025, 15641, 0, 0, 0, 1, 1, 1, 1, 'Ironhide Belt'),
|
|
(24025, 15649, 0, 0, 0, 1, 1, 1, 1, 'Merciless Bracers'),
|
|
(24025, 15652, 0, 0, 0, 1, 1, 1, 1, 'Merciless Cloak'),
|
|
(24025, 15937, 0, 0, 0, 1, 1, 1, 1, 'Hibernal Sphere'),
|
|
(24025, 15982, 0, 0, 0, 1, 1, 1, 1, 'Bloodwoven Rod'),
|
|
(24026, 2564, 0, 0, 0, 1, 1, 1, 1, 'Elven Spirit Claws'),
|
|
(24026, 7734, 0, 0, 0, 1, 1, 1, 1, 'Six Demon Bag'),
|
|
(24026, 13009, 0, 0, 0, 1, 1, 1, 1, 'Cow King\'s Hide'),
|
|
(24026, 13030, 0, 0, 0, 1, 1, 1, 1, 'Basilisk Bone'),
|
|
(24026, 13046, 0, 0, 0, 1, 1, 1, 1, 'Blanchard\'s Stout'),
|
|
(24026, 13065, 0, 0, 0, 1, 1, 1, 1, 'Wand of Allistarj'),
|
|
(24026, 13066, 0, 0, 0, 1, 1, 1, 1, 'Wyrmslayer Spaulders'),
|
|
(24026, 13085, 0, 0, 0, 1, 1, 1, 1, 'Horizon Choker'),
|
|
(24026, 13125, 0, 0, 0, 1, 1, 1, 1, 'Elven Chain Boots'),
|
|
(24026, 13139, 0, 0, 0, 1, 1, 1, 1, 'Guttbuster'),
|
|
(24027, 8246, 0, 0, 0, 1, 1, 1, 1, 'Imperial Red Boots'),
|
|
(24027, 8249, 0, 0, 0, 1, 1, 1, 1, 'Imperial Red Gloves'),
|
|
(24027, 8250, 0, 0, 0, 1, 1, 1, 1, 'Imperial Red Mantle'),
|
|
(24027, 8254, 0, 0, 0, 1, 1, 1, 1, 'Imperial Red Circlet'),
|
|
(24027, 8256, 0, 0, 0, 1, 1, 1, 1, 'Serpentskin Boots'),
|
|
(24027, 8260, 0, 0, 0, 1, 1, 1, 1, 'Serpentskin Gloves'),
|
|
(24027, 8263, 0, 0, 0, 1, 1, 1, 1, 'Serpentskin Spaulders'),
|
|
(24027, 8264, 0, 0, 0, 1, 1, 1, 1, 'Ebonhold Wristguards'),
|
|
(24027, 8311, 0, 0, 0, 1, 1, 1, 1, 'Alabaster Plate Vambraces'),
|
|
(24027, 8314, 0, 0, 0, 1, 1, 1, 1, 'Alabaster Plate Gauntlets'),
|
|
(24027, 8315, 0, 0, 0, 1, 1, 1, 1, 'Alabaster Plate Girdle'),
|
|
(24027, 8316, 0, 0, 0, 1, 1, 1, 1, 'Alabaster Plate Greaves'),
|
|
(24027, 9943, 0, 0, 0, 1, 1, 1, 1, 'Abjurer\'s Robe'),
|
|
(24027, 9944, 0, 0, 0, 1, 1, 1, 1, 'Abjurer\'s Crystal'),
|
|
(24027, 9946, 0, 0, 0, 1, 1, 1, 1, 'Abjurer\'s Tunic'),
|
|
(24027, 9950, 0, 0, 0, 1, 1, 1, 1, 'Chieftain\'s Breastplate'),
|
|
(24027, 9974, 0, 0, 0, 1, 1, 1, 1, 'Overlord\'s Shield'),
|
|
(24027, 10064, 0, 0, 0, 1, 1, 1, 1, 'Duskwoven Pants'),
|
|
(24027, 10073, 0, 0, 0, 1, 1, 1, 1, 'Righteous Helmet'),
|
|
(24027, 10074, 0, 0, 0, 1, 1, 1, 1, 'Righteous Leggings'),
|
|
(24027, 10077, 0, 0, 0, 1, 1, 1, 1, 'Lord\'s Breastplate'),
|
|
(24027, 10078, 0, 0, 0, 1, 1, 1, 1, 'Lord\'s Crest'),
|
|
(24027, 10084, 0, 0, 0, 1, 1, 1, 1, 'Lord\'s Legguards'),
|
|
(24027, 10085, 0, 0, 0, 1, 1, 1, 1, 'Lord\'s Pauldrons'),
|
|
(24027, 10098, 0, 0, 0, 1, 1, 1, 1, 'Councillor\'s Cloak'),
|
|
(24027, 10108, 0, 0, 0, 1, 1, 1, 1, 'Wanderer\'s Cloak'),
|
|
(24027, 10120, 0, 0, 0, 1, 1, 1, 1, 'Ornate Cloak'),
|
|
(24027, 10133, 0, 0, 0, 1, 1, 1, 1, 'Revenant Leggings'),
|
|
(24027, 10173, 0, 0, 0, 1, 1, 1, 1, 'Mystical Bracers'),
|
|
(24027, 10174, 0, 0, 0, 1, 1, 1, 1, 'Mystical Cape'),
|
|
(24027, 10180, 0, 0, 0, 1, 1, 1, 1, 'Mystical Belt'),
|
|
(24027, 10184, 0, 0, 0, 1, 1, 1, 1, 'Swashbuckler\'s Bracers'),
|
|
(24027, 10186, 0, 0, 0, 1, 1, 1, 1, 'Swashbuckler\'s Gloves'),
|
|
(24027, 10190, 0, 0, 0, 1, 1, 1, 1, 'Swashbuckler\'s Belt'),
|
|
(24027, 10192, 0, 0, 0, 1, 1, 1, 1, 'Crusader\'s Boots'),
|
|
(24027, 10196, 0, 0, 0, 1, 1, 1, 1, 'Crusader\'s Gauntlets'),
|
|
(24027, 10197, 0, 0, 0, 1, 1, 1, 1, 'Crusader\'s Belt'),
|
|
(24027, 10198, 0, 0, 0, 1, 1, 1, 1, 'Crusader\'s Helm'),
|
|
(24027, 10200, 0, 0, 0, 1, 1, 1, 1, 'Crusader\'s Pauldrons'),
|
|
(24027, 10203, 0, 0, 0, 1, 1, 1, 1, 'Overlord\'s Chestplate'),
|
|
(24027, 10238, 0, 0, 0, 1, 1, 1, 1, 'Heavy Lamellar Boots'),
|
|
(24027, 10241, 0, 0, 0, 1, 1, 1, 1, 'Heavy Lamellar Helm'),
|
|
(24027, 10242, 0, 0, 0, 1, 1, 1, 1, 'Heavy Lamellar Gauntlets'),
|
|
(24027, 10245, 0, 0, 0, 1, 1, 1, 1, 'Heavy Lamellar Pauldrons'),
|
|
(24027, 11976, 0, 0, 0, 1, 1, 1, 1, 'Sardonyx Knuckle'),
|
|
(24027, 12014, 0, 0, 0, 1, 1, 1, 1, 'Arctic Ring'),
|
|
(24027, 12034, 0, 0, 0, 1, 1, 1, 1, 'Marble Necklace'),
|
|
(24027, 12055, 0, 0, 0, 1, 1, 1, 1, 'Stardust Band'),
|
|
(24027, 14275, 0, 0, 0, 1, 1, 1, 1, 'Gaea\'s Raiment'),
|
|
(24027, 14277, 0, 0, 0, 1, 1, 1, 1, 'Gaea\'s Tunic'),
|
|
(24027, 14281, 0, 0, 0, 1, 1, 1, 1, 'Opulent Crown'),
|
|
(24027, 14296, 0, 0, 0, 1, 1, 1, 1, 'Arachnidian Pauldrons'),
|
|
(24027, 14300, 0, 0, 0, 1, 1, 1, 1, 'Bonecaster\'s Cape'),
|
|
(24027, 14301, 0, 0, 0, 1, 1, 1, 1, 'Bonecaster\'s Bindings'),
|
|
(24027, 14444, 0, 0, 0, 1, 1, 1, 1, 'Venomshroud Leggings'),
|
|
(24027, 14447, 0, 0, 0, 1, 1, 1, 1, 'Highborne Footpads'),
|
|
(24027, 14448, 0, 0, 0, 1, 1, 1, 1, 'Highborne Bracelets'),
|
|
(24027, 14451, 0, 0, 0, 1, 1, 1, 1, 'Highborne Gloves'),
|
|
(24027, 14454, 0, 0, 0, 1, 1, 1, 1, 'Highborne Cord'),
|
|
(24027, 14667, 0, 0, 0, 1, 1, 1, 1, 'Keeper\'s Wreath'),
|
|
(24027, 14668, 0, 0, 0, 1, 1, 1, 1, 'Keeper\'s Woolies'),
|
|
(24027, 14672, 0, 0, 0, 1, 1, 1, 1, 'Pridelord Bands'),
|
|
(24027, 14673, 0, 0, 0, 1, 1, 1, 1, 'Pridelord Cape'),
|
|
(24027, 14795, 0, 0, 0, 1, 1, 1, 1, 'Protector Helm'),
|
|
(24027, 14796, 0, 0, 0, 1, 1, 1, 1, 'Protector Legguards'),
|
|
(24027, 14801, 0, 0, 0, 1, 1, 1, 1, 'Bloodlust Cape'),
|
|
(24027, 14807, 0, 0, 0, 1, 1, 1, 1, 'Bloodlust Bracelets'),
|
|
(24027, 14849, 0, 0, 0, 1, 1, 1, 1, 'Sunscale Helmet'),
|
|
(24027, 14850, 0, 0, 0, 1, 1, 1, 1, 'Sunscale Legplates'),
|
|
(24027, 14861, 0, 0, 0, 1, 1, 1, 1, 'Vanguard Vambraces'),
|
|
(24027, 14915, 0, 0, 0, 1, 1, 1, 1, 'Jade Breastplate'),
|
|
(24027, 14916, 0, 0, 0, 1, 1, 1, 1, 'Jade Deflector'),
|
|
(24027, 14919, 0, 0, 0, 1, 1, 1, 1, 'Jade Circlet'),
|
|
(24027, 14922, 0, 0, 0, 1, 1, 1, 1, 'Lofty Sabatons'),
|
|
(24027, 14926, 0, 0, 0, 1, 1, 1, 1, 'Lofty Gauntlets'),
|
|
(24027, 14927, 0, 0, 0, 1, 1, 1, 1, 'Lofty Belt'),
|
|
(24027, 14959, 0, 0, 0, 1, 1, 1, 1, 'High Chief\'s Gauntlets'),
|
|
(24027, 14963, 0, 0, 0, 1, 1, 1, 1, 'High Chief\'s Pauldrons'),
|
|
(24027, 15170, 0, 0, 0, 1, 1, 1, 1, 'Potent Armor'),
|
|
(24027, 15180, 0, 0, 0, 1, 1, 1, 1, 'Praetorian Girdle'),
|
|
(24027, 15228, 0, 0, 0, 1, 1, 1, 1, 'Smashing Star'),
|
|
(24027, 15236, 0, 0, 0, 1, 1, 1, 1, 'Moon Cleaver'),
|
|
(24027, 15253, 0, 0, 0, 1, 1, 1, 1, 'Beheading Blade'),
|
|
(24027, 15274, 0, 0, 0, 1, 1, 1, 1, 'Diviner Long Staff'),
|
|
(24027, 15280, 0, 0, 0, 1, 1, 1, 1, 'Wizard\'s Hand'),
|
|
(24027, 15294, 0, 0, 0, 1, 1, 1, 1, 'Siege Bow'),
|
|
(24027, 15388, 0, 0, 0, 1, 1, 1, 1, 'Jadefire Belt'),
|
|
(24027, 15389, 0, 0, 0, 1, 1, 1, 1, 'Jadefire Sabatons'),
|
|
(24027, 15393, 0, 0, 0, 1, 1, 1, 1, 'Jadefire Gloves'),
|
|
(24027, 15395, 0, 0, 0, 1, 1, 1, 1, 'Jadefire Epaulets'),
|
|
(24027, 15631, 0, 0, 0, 1, 1, 1, 1, 'Formidable Chestpiece'),
|
|
(24027, 15633, 0, 0, 0, 1, 1, 1, 1, 'Formidable Crest'),
|
|
(24027, 15634, 0, 0, 0, 1, 1, 1, 1, 'Formidable Circlet'),
|
|
(24027, 15642, 0, 0, 0, 1, 1, 1, 1, 'Ironhide Greaves'),
|
|
(24027, 15644, 0, 0, 0, 1, 1, 1, 1, 'Ironhide Gauntlets'),
|
|
(24027, 15647, 0, 0, 0, 1, 1, 1, 1, 'Ironhide Pauldrons'),
|
|
(24027, 15653, 0, 0, 0, 1, 1, 1, 1, 'Merciless Gauntlets'),
|
|
(24027, 15983, 0, 0, 0, 1, 1, 1, 1, 'Gaea\'s Scepter'),
|
|
(24028, 5266, 0, 0, 0, 1, 1, 1, 1, 'Eye of Adaegus'),
|
|
(24028, 11302, 0, 0, 0, 1, 1, 1, 1, 'Uther\'s Strength'),
|
|
(24028, 13008, 0, 0, 0, 1, 1, 1, 1, 'Dalewind Trousers'),
|
|
(24028, 13014, 0, 0, 0, 1, 1, 1, 1, 'Axe of Rin\'ji'),
|
|
(24028, 13027, 0, 0, 0, 1, 1, 1, 1, 'Bonesnapper'),
|
|
(24028, 13052, 0, 0, 0, 1, 1, 1, 1, 'Warmonger'),
|
|
(24028, 13059, 0, 0, 0, 1, 1, 1, 1, 'Stoneraven'),
|
|
(24028, 13073, 0, 0, 0, 1, 1, 1, 1, 'Mugthol\'s Helm'),
|
|
(24028, 13126, 0, 0, 0, 1, 1, 1, 1, 'Battlecaller Gauntlets'),
|
|
(24028, 13144, 0, 0, 0, 1, 1, 1, 1, 'Serenity Belt'),
|
|
(24029, 7910, 0, 0, 0, 1, 1, 1, 1, 'Star Ruby'),
|
|
(24029, 8251, 0, 0, 0, 1, 1, 1, 1, 'Imperial Red Pants'),
|
|
(24029, 8261, 0, 0, 0, 1, 1, 1, 1, 'Serpentskin Helm'),
|
|
(24029, 8262, 0, 0, 0, 1, 1, 1, 1, 'Serpentskin Leggings'),
|
|
(24029, 8267, 0, 0, 0, 1, 1, 1, 1, 'Ebonhold Gauntlets'),
|
|
(24029, 8268, 0, 0, 0, 1, 1, 1, 1, 'Ebonhold Girdle'),
|
|
(24029, 8269, 0, 0, 0, 1, 1, 1, 1, 'Ebonhold Boots'),
|
|
(24029, 8270, 0, 0, 0, 1, 1, 1, 1, 'Ebonhold Helmet'),
|
|
(24029, 8272, 0, 0, 0, 1, 1, 1, 1, 'Ebonhold Shoulderpads'),
|
|
(24029, 8286, 0, 0, 0, 1, 1, 1, 1, 'Arcane Cloak'),
|
|
(24029, 8297, 0, 0, 0, 1, 1, 1, 1, 'Traveler\'s Cloak'),
|
|
(24029, 8317, 0, 0, 0, 1, 1, 1, 1, 'Alabaster Plate Helmet'),
|
|
(24029, 8319, 0, 0, 0, 1, 1, 1, 1, 'Alabaster Plate Pauldrons'),
|
|
(24029, 10057, 0, 0, 0, 1, 1, 1, 1, 'Duskwoven Tunic'),
|
|
(24029, 10065, 0, 0, 0, 1, 1, 1, 1, 'Duskwoven Robe'),
|
|
(24029, 10070, 0, 0, 0, 1, 1, 1, 1, 'Righteous Armor'),
|
|
(24029, 10093, 0, 0, 0, 1, 1, 1, 1, 'Revenant Deflector'),
|
|
(24029, 10096, 0, 0, 0, 1, 1, 1, 1, 'Councillor\'s Cuffs'),
|
|
(24029, 10099, 0, 0, 0, 1, 1, 1, 1, 'Councillor\'s Gloves'),
|
|
(24029, 10103, 0, 0, 0, 1, 1, 1, 1, 'Councillor\'s Sash'),
|
|
(24029, 10107, 0, 0, 0, 1, 1, 1, 1, 'Wanderer\'s Bracers'),
|
|
(24029, 10109, 0, 0, 0, 1, 1, 1, 1, 'Wanderer\'s Belt'),
|
|
(24029, 10110, 0, 0, 0, 1, 1, 1, 1, 'Wanderer\'s Gloves'),
|
|
(24029, 10122, 0, 0, 0, 1, 1, 1, 1, 'Ornate Girdle'),
|
|
(24029, 10126, 0, 0, 0, 1, 1, 1, 1, 'Ornate Bracers'),
|
|
(24029, 10128, 0, 0, 0, 1, 1, 1, 1, 'Revenant Chestplate'),
|
|
(24029, 10165, 0, 0, 0, 1, 1, 1, 1, 'Templar Gauntlets'),
|
|
(24029, 10166, 0, 0, 0, 1, 1, 1, 1, 'Templar Girdle'),
|
|
(24029, 10167, 0, 0, 0, 1, 1, 1, 1, 'Templar Boots'),
|
|
(24029, 10171, 0, 0, 0, 1, 1, 1, 1, 'Templar Bracers'),
|
|
(24029, 10172, 0, 0, 0, 1, 1, 1, 1, 'Mystical Mantle'),
|
|
(24029, 10175, 0, 0, 0, 1, 1, 1, 1, 'Mystical Headwrap'),
|
|
(24029, 10176, 0, 0, 0, 1, 1, 1, 1, 'Mystical Gloves'),
|
|
(24029, 10179, 0, 0, 0, 1, 1, 1, 1, 'Mystical Boots'),
|
|
(24029, 10183, 0, 0, 0, 1, 1, 1, 1, 'Swashbuckler\'s Boots'),
|
|
(24029, 10187, 0, 0, 0, 1, 1, 1, 1, 'Swashbuckler\'s Eyepatch'),
|
|
(24029, 10189, 0, 0, 0, 1, 1, 1, 1, 'Swashbuckler\'s Shoulderpads'),
|
|
(24029, 10193, 0, 0, 0, 1, 1, 1, 1, 'Crusader\'s Armor'),
|
|
(24029, 10195, 0, 0, 0, 1, 1, 1, 1, 'Crusader\'s Shield'),
|
|
(24029, 10199, 0, 0, 0, 1, 1, 1, 1, 'Crusader\'s Leggings'),
|
|
(24029, 10204, 0, 0, 0, 1, 1, 1, 1, 'Heavy Lamellar Shield'),
|
|
(24029, 10231, 0, 0, 0, 1, 1, 1, 1, 'Engraved Cape'),
|
|
(24029, 10240, 0, 0, 0, 1, 1, 1, 1, 'Heavy Lamellar Chestpiece'),
|
|
(24029, 10244, 0, 0, 0, 1, 1, 1, 1, 'Heavy Lamellar Leggings'),
|
|
(24029, 10278, 0, 0, 0, 1, 1, 1, 1, 'Emerald Girdle'),
|
|
(24029, 11977, 0, 0, 0, 1, 1, 1, 1, 'Serpentine Loop'),
|
|
(24029, 11990, 0, 0, 0, 1, 1, 1, 1, 'Selenium Loop'),
|
|
(24029, 12002, 0, 0, 0, 1, 1, 1, 1, 'Marble Circle'),
|
|
(24029, 12025, 0, 0, 0, 1, 1, 1, 1, 'Selenium Chain'),
|
|
(24029, 14283, 0, 0, 0, 1, 1, 1, 1, 'Opulent Leggings'),
|
|
(24029, 14293, 0, 0, 0, 1, 1, 1, 1, 'Arachnidian Circlet'),
|
|
(24029, 14295, 0, 0, 0, 1, 1, 1, 1, 'Arachnidian Legguards'),
|
|
(24029, 14299, 0, 0, 0, 1, 1, 1, 1, 'Bonecaster\'s Boots'),
|
|
(24029, 14304, 0, 0, 0, 1, 1, 1, 1, 'Bonecaster\'s Belt'),
|
|
(24029, 14311, 0, 0, 0, 1, 1, 1, 1, 'Celestial Bindings'),
|
|
(24029, 14313, 0, 0, 0, 1, 1, 1, 1, 'Celestial Cape'),
|
|
(24029, 14321, 0, 0, 0, 1, 1, 1, 1, 'Resplendent Cloak'),
|
|
(24029, 14437, 0, 0, 0, 1, 1, 1, 1, 'Venomshroud Vest'),
|
|
(24029, 14445, 0, 0, 0, 1, 1, 1, 1, 'Venomshroud Silk Robes'),
|
|
(24029, 14452, 0, 0, 0, 1, 1, 1, 1, 'Highborne Pauldrons'),
|
|
(24029, 14664, 0, 0, 0, 1, 1, 1, 1, 'Keeper\'s Armor'),
|
|
(24029, 14674, 0, 0, 0, 1, 1, 1, 1, 'Pridelord Girdle'),
|
|
(24029, 14789, 0, 0, 0, 1, 1, 1, 1, 'Protector Breastplate'),
|
|
(24029, 14790, 0, 0, 0, 1, 1, 1, 1, 'Protector Buckler'),
|
|
(24029, 14802, 0, 0, 0, 1, 1, 1, 1, 'Bloodlust Gauntlets'),
|
|
(24029, 14803, 0, 0, 0, 1, 1, 1, 1, 'Bloodlust Belt'),
|
|
(24029, 14844, 0, 0, 0, 1, 1, 1, 1, 'Sunscale Chestguard'),
|
|
(24029, 14852, 0, 0, 0, 1, 1, 1, 1, 'Sunscale Shield'),
|
|
(24029, 14855, 0, 0, 0, 1, 1, 1, 1, 'Vanguard Gauntlets'),
|
|
(24029, 14856, 0, 0, 0, 1, 1, 1, 1, 'Vanguard Girdle'),
|
|
(24029, 14857, 0, 0, 0, 1, 1, 1, 1, 'Vanguard Sabatons'),
|
|
(24029, 14928, 0, 0, 0, 1, 1, 1, 1, 'Lofty Legguards'),
|
|
(24029, 14929, 0, 0, 0, 1, 1, 1, 1, 'Lofty Shoulder Pads'),
|
|
(24029, 14961, 0, 0, 0, 1, 1, 1, 1, 'High Chief\'s Crown'),
|
|
(24029, 14962, 0, 0, 0, 1, 1, 1, 1, 'High Chief\'s Legguards'),
|
|
(24029, 14968, 0, 0, 0, 1, 1, 1, 1, 'Glorious Belt'),
|
|
(24029, 14974, 0, 0, 0, 1, 1, 1, 1, 'Glorious Bindings'),
|
|
(24029, 15181, 0, 0, 0, 1, 1, 1, 1, 'Praetorian Boots'),
|
|
(24029, 15184, 0, 0, 0, 1, 1, 1, 1, 'Praetorian Gloves'),
|
|
(24029, 15186, 0, 0, 0, 1, 1, 1, 1, 'Praetorian Leggings'),
|
|
(24029, 15187, 0, 0, 0, 1, 1, 1, 1, 'Praetorian Pauldrons'),
|
|
(24029, 15190, 0, 0, 0, 1, 1, 1, 1, 'Grand Cloak'),
|
|
(24029, 15217, 0, 0, 0, 1, 1, 1, 1, 'Widow Blade'),
|
|
(24029, 15229, 0, 0, 0, 1, 1, 1, 1, 'Blesswind Hammer'),
|
|
(24029, 15237, 0, 0, 0, 1, 1, 1, 1, 'Corpse Harvester'),
|
|
(24029, 15254, 0, 0, 0, 1, 1, 1, 1, 'Dark Espadon'),
|
|
(24029, 15275, 0, 0, 0, 1, 1, 1, 1, 'Thaumaturgist Staff'),
|
|
(24029, 15295, 0, 0, 0, 1, 1, 1, 1, 'Quillfire Bow'),
|
|
(24029, 15394, 0, 0, 0, 1, 1, 1, 1, 'Jadefire Pants'),
|
|
(24029, 15425, 0, 0, 0, 1, 1, 1, 1, 'Peerless Bracers'),
|
|
(24029, 15427, 0, 0, 0, 1, 1, 1, 1, 'Peerless Cloak'),
|
|
(24029, 15645, 0, 0, 0, 1, 1, 1, 1, 'Ironhide Helmet'),
|
|
(24029, 15646, 0, 0, 0, 1, 1, 1, 1, 'Ironhide Legguards'),
|
|
(24029, 15654, 0, 0, 0, 1, 1, 1, 1, 'Merciless Belt'),
|
|
(24029, 15656, 0, 0, 0, 1, 1, 1, 1, 'Merciless Epaulets'),
|
|
(24029, 15659, 0, 0, 0, 1, 1, 1, 1, 'Impenetrable Bindings'),
|
|
(24029, 15661, 0, 0, 0, 1, 1, 1, 1, 'Impenetrable Cloak'),
|
|
(24029, 15694, 0, 0, 0, 1, 1, 1, 1, 'Merciless Greaves'),
|
|
(24029, 15936, 0, 0, 0, 1, 1, 1, 1, 'Duskwoven Branch'),
|
|
(24029, 15966, 0, 0, 0, 1, 1, 1, 1, 'Venomshroud Orb'),
|
|
(24030, 1203, 0, 0, 0, 1, 1, 1, 1, 'Aegis of Stormwind'),
|
|
(24030, 1607, 0, 0, 0, 1, 1, 1, 1, 'Soulkeeper'),
|
|
(24030, 1721, 0, 0, 0, 1, 1, 1, 1, 'Viking Warhammer'),
|
|
(24030, 6660, 0, 0, 0, 1, 1, 1, 1, 'Julie\'s Dagger'),
|
|
(24030, 8190, 0, 0, 0, 1, 1, 1, 1, 'Hanzo Sword'),
|
|
(24030, 13022, 0, 0, 0, 1, 1, 1, 1, 'Gryphonwing Long Bow'),
|
|
(24030, 13067, 0, 0, 0, 1, 1, 1, 1, 'Hydralick Armor'),
|
|
(24030, 13111, 0, 0, 0, 1, 1, 1, 1, 'Sandals of the Insurgent'),
|
|
(24030, 13120, 0, 0, 0, 1, 1, 1, 1, 'Deepfury Bracers'),
|
|
(24030, 13122, 0, 0, 0, 1, 1, 1, 1, 'Dark Phantom Cape'),
|
|
(24031, 8245, 0, 0, 0, 1, 1, 1, 1, 'Imperial Red Tunic'),
|
|
(24031, 8252, 0, 0, 0, 1, 1, 1, 1, 'Imperial Red Robe'),
|
|
(24031, 8258, 0, 0, 0, 1, 1, 1, 1, 'Serpentskin Armor'),
|
|
(24031, 8265, 0, 0, 0, 1, 1, 1, 1, 'Ebonhold Armor'),
|
|
(24031, 8271, 0, 0, 0, 1, 1, 1, 1, 'Ebonhold Leggings'),
|
|
(24031, 8275, 0, 0, 0, 1, 1, 1, 1, 'Ebonhold Buckler'),
|
|
(24031, 8284, 0, 0, 0, 1, 1, 1, 1, 'Arcane Boots'),
|
|
(24031, 8285, 0, 0, 0, 1, 1, 1, 1, 'Arcane Bands'),
|
|
(24031, 8287, 0, 0, 0, 1, 1, 1, 1, 'Arcane Gloves'),
|
|
(24031, 8291, 0, 0, 0, 1, 1, 1, 1, 'Arcane Sash'),
|
|
(24031, 8293, 0, 0, 0, 1, 1, 1, 1, 'Traveler\'s Belt'),
|
|
(24031, 8294, 0, 0, 0, 1, 1, 1, 1, 'Traveler\'s Boots'),
|
|
(24031, 8295, 0, 0, 0, 1, 1, 1, 1, 'Traveler\'s Bracers'),
|
|
(24031, 8298, 0, 0, 0, 1, 1, 1, 1, 'Traveler\'s Gloves'),
|
|
(24031, 8304, 0, 0, 0, 1, 1, 1, 1, 'Hero\'s Cape'),
|
|
(24031, 8312, 0, 0, 0, 1, 1, 1, 1, 'Alabaster Breastplate'),
|
|
(24031, 8318, 0, 0, 0, 1, 1, 1, 1, 'Alabaster Plate Leggings'),
|
|
(24031, 8320, 0, 0, 0, 1, 1, 1, 1, 'Alabaster Shield'),
|
|
(24031, 10095, 0, 0, 0, 1, 1, 1, 1, 'Councillor\'s Boots'),
|
|
(24031, 10097, 0, 0, 0, 1, 1, 1, 1, 'Councillor\'s Circlet'),
|
|
(24031, 10100, 0, 0, 0, 1, 1, 1, 1, 'Councillor\'s Shoulders'),
|
|
(24031, 10106, 0, 0, 0, 1, 1, 1, 1, 'Wanderer\'s Boots'),
|
|
(24031, 10111, 0, 0, 0, 1, 1, 1, 1, 'Wanderer\'s Hat'),
|
|
(24031, 10113, 0, 0, 0, 1, 1, 1, 1, 'Wanderer\'s Shoulders'),
|
|
(24031, 10119, 0, 0, 0, 1, 1, 1, 1, 'Ornate Greaves'),
|
|
(24031, 10121, 0, 0, 0, 1, 1, 1, 1, 'Ornate Gauntlets'),
|
|
(24031, 10123, 0, 0, 0, 1, 1, 1, 1, 'Ornate Circlet'),
|
|
(24031, 10124, 0, 0, 0, 1, 1, 1, 1, 'Ornate Legguards'),
|
|
(24031, 10125, 0, 0, 0, 1, 1, 1, 1, 'Ornate Pauldrons'),
|
|
(24031, 10168, 0, 0, 0, 1, 1, 1, 1, 'Templar Crown'),
|
|
(24031, 10169, 0, 0, 0, 1, 1, 1, 1, 'Templar Legplates'),
|
|
(24031, 10170, 0, 0, 0, 1, 1, 1, 1, 'Templar Pauldrons'),
|
|
(24031, 10177, 0, 0, 0, 1, 1, 1, 1, 'Mystical Leggings'),
|
|
(24031, 10188, 0, 0, 0, 1, 1, 1, 1, 'Swashbuckler\'s Leggings'),
|
|
(24031, 10212, 0, 0, 0, 1, 1, 1, 1, 'Elegant Cloak'),
|
|
(24031, 10224, 0, 0, 0, 1, 1, 1, 1, 'Nightshade Cloak'),
|
|
(24031, 10229, 0, 0, 0, 1, 1, 1, 1, 'Engraved Bracers'),
|
|
(24031, 10233, 0, 0, 0, 1, 1, 1, 1, 'Engraved Girdle'),
|
|
(24031, 10276, 0, 0, 0, 1, 1, 1, 1, 'Emerald Sabatons'),
|
|
(24031, 10277, 0, 0, 0, 1, 1, 1, 1, 'Emerald Gauntlets'),
|
|
(24031, 10282, 0, 0, 0, 1, 1, 1, 1, 'Emerald Vambraces'),
|
|
(24031, 10370, 0, 0, 0, 1, 1, 1, 1, 'Imbued Plate Girdle'),
|
|
(24031, 10375, 0, 0, 0, 1, 1, 1, 1, 'Imbued Plate Vambraces'),
|
|
(24031, 12015, 0, 0, 0, 1, 1, 1, 1, 'Swamp Ring'),
|
|
(24031, 12035, 0, 0, 0, 1, 1, 1, 1, 'Obsidian Pendant'),
|
|
(24031, 12045, 0, 0, 0, 1, 1, 1, 1, 'Swamp Pendant'),
|
|
(24031, 12056, 0, 0, 0, 1, 1, 1, 1, 'Ring of the Heavens'),
|
|
(24031, 14284, 0, 0, 0, 1, 1, 1, 1, 'Opulent Robes'),
|
|
(24031, 14287, 0, 0, 0, 1, 1, 1, 1, 'Opulent Tunic'),
|
|
(24031, 14288, 0, 0, 0, 1, 1, 1, 1, 'Arachnidian Armor'),
|
|
(24031, 14297, 0, 0, 0, 1, 1, 1, 1, 'Arachnidian Robes'),
|
|
(24031, 14298, 0, 0, 0, 1, 1, 1, 1, 'Bonecaster\'s Spaulders'),
|
|
(24031, 14302, 0, 0, 0, 1, 1, 1, 1, 'Bonecaster\'s Gloves'),
|
|
(24031, 14305, 0, 0, 0, 1, 1, 1, 1, 'Bonecaster\'s Sarong'),
|
|
(24031, 14309, 0, 0, 0, 1, 1, 1, 1, 'Celestial Belt'),
|
|
(24031, 14320, 0, 0, 0, 1, 1, 1, 1, 'Resplendent Bracelets'),
|
|
(24031, 14449, 0, 0, 0, 1, 1, 1, 1, 'Highborne Crown'),
|
|
(24031, 14459, 0, 0, 0, 1, 1, 1, 1, 'Elunarian Cloak'),
|
|
(24031, 14671, 0, 0, 0, 1, 1, 1, 1, 'Pridelord Boots'),
|
|
(24031, 14675, 0, 0, 0, 1, 1, 1, 1, 'Pridelord Gloves'),
|
|
(24031, 14678, 0, 0, 0, 1, 1, 1, 1, 'Pridelord Pauldrons'),
|
|
(24031, 14805, 0, 0, 0, 1, 1, 1, 1, 'Bloodlust Britches'),
|
|
(24031, 14806, 0, 0, 0, 1, 1, 1, 1, 'Bloodlust Epaulets'),
|
|
(24031, 14813, 0, 0, 0, 1, 1, 1, 1, 'Warstrike Cape'),
|
|
(24031, 14859, 0, 0, 0, 1, 1, 1, 1, 'Vanguard Legplates'),
|
|
(24031, 14860, 0, 0, 0, 1, 1, 1, 1, 'Vanguard Pauldrons'),
|
|
(24031, 14924, 0, 0, 0, 1, 1, 1, 1, 'Lofty Breastplate'),
|
|
(24031, 14925, 0, 0, 0, 1, 1, 1, 1, 'Lofty Helm'),
|
|
(24031, 14930, 0, 0, 0, 1, 1, 1, 1, 'Lofty Shield'),
|
|
(24031, 14934, 0, 0, 0, 1, 1, 1, 1, 'Heroic Girdle'),
|
|
(24031, 14938, 0, 0, 0, 1, 1, 1, 1, 'Heroic Bracers'),
|
|
(24031, 14958, 0, 0, 0, 1, 1, 1, 1, 'High Chief\'s Armor'),
|
|
(24031, 14964, 0, 0, 0, 1, 1, 1, 1, 'High Chief\'s Shield'),
|
|
(24031, 14967, 0, 0, 0, 1, 1, 1, 1, 'Glorious Gauntlets'),
|
|
(24031, 14971, 0, 0, 0, 1, 1, 1, 1, 'Glorious Shoulder Pads'),
|
|
(24031, 14972, 0, 0, 0, 1, 1, 1, 1, 'Glorious Sabatons'),
|
|
(24031, 15119, 0, 0, 0, 1, 1, 1, 1, 'Highborne Pants'),
|
|
(24031, 15179, 0, 0, 0, 1, 1, 1, 1, 'Praetorian Padded Armor'),
|
|
(24031, 15185, 0, 0, 0, 1, 1, 1, 1, 'Praetorian Coif'),
|
|
(24031, 15188, 0, 0, 0, 1, 1, 1, 1, 'Grand Armguards'),
|
|
(24031, 15191, 0, 0, 0, 1, 1, 1, 1, 'Grand Belt'),
|
|
(24031, 15218, 0, 0, 0, 1, 1, 1, 1, 'Crystal Sword'),
|
|
(24031, 15255, 0, 0, 0, 1, 1, 1, 1, 'Gallant Flamberge'),
|
|
(24031, 15264, 0, 0, 0, 1, 1, 1, 1, 'Backbreaker'),
|
|
(24031, 15271, 0, 0, 0, 1, 1, 1, 1, 'Colossal Great Axe'),
|
|
(24031, 15281, 0, 0, 0, 1, 1, 1, 1, 'Glowstar Rod'),
|
|
(24031, 15324, 0, 0, 0, 1, 1, 1, 1, 'Burnside Rifle'),
|
|
(24031, 15390, 0, 0, 0, 1, 1, 1, 1, 'Jadefire Chestguard'),
|
|
(24031, 15391, 0, 0, 0, 1, 1, 1, 1, 'Jadefire Cap'),
|
|
(24031, 15428, 0, 0, 0, 1, 1, 1, 1, 'Peerless Belt'),
|
|
(24031, 15640, 0, 0, 0, 1, 1, 1, 1, 'Ironhide Breastplate'),
|
|
(24031, 15648, 0, 0, 0, 1, 1, 1, 1, 'Ironhide Shield'),
|
|
(24031, 15650, 0, 0, 0, 1, 1, 1, 1, 'Merciless Surcoat'),
|
|
(24031, 15651, 0, 0, 0, 1, 1, 1, 1, 'Merciless Crown'),
|
|
(24031, 15655, 0, 0, 0, 1, 1, 1, 1, 'Merciless Legguards'),
|
|
(24031, 15657, 0, 0, 0, 1, 1, 1, 1, 'Merciless Shield'),
|
|
(24031, 15662, 0, 0, 0, 1, 1, 1, 1, 'Impenetrable Gauntlets'),
|
|
(24031, 15663, 0, 0, 0, 1, 1, 1, 1, 'Impenetrable Belt'),
|
|
(24031, 15671, 0, 0, 0, 1, 1, 1, 1, 'Magnificent Cloak'),
|
|
(24031, 15930, 0, 0, 0, 1, 1, 1, 1, 'Imperial Red Scepter'),
|
|
(24031, 15984, 0, 0, 0, 1, 1, 1, 1, 'Opulent Scepter'),
|
|
(24031, 15985, 0, 0, 0, 1, 1, 1, 1, 'Arachnidian Branch'),
|
|
(24032, 13003, 0, 0, 0, 1, 1, 1, 1, 'Lord Alexander\'s Battle Axe'),
|
|
(24032, 13013, 0, 0, 0, 1, 1, 1, 1, 'Elder Wizard\'s Mantle'),
|
|
(24032, 13036, 0, 0, 0, 1, 1, 1, 1, 'Assassination Blade'),
|
|
(24032, 13040, 0, 0, 0, 1, 1, 1, 1, 'Heartseeking Crossbow'),
|
|
(24032, 13044, 0, 0, 0, 1, 1, 1, 1, 'Demonslayer'),
|
|
(24032, 13056, 0, 0, 0, 1, 1, 1, 1, 'Frenzied Striker'),
|
|
(24032, 13077, 0, 0, 0, 1, 1, 1, 1, 'Girdle of Uther'),
|
|
(24032, 13091, 0, 0, 0, 1, 1, 1, 1, 'Medallion of Grand Marshal Morris'),
|
|
(24032, 13118, 0, 0, 0, 1, 1, 1, 1, 'Serpentine Sash'),
|
|
(24032, 13130, 0, 0, 0, 1, 1, 1, 1, 'Windrunner Legguards'),
|
|
(24032, 24222, 0, 0, 0, 1, 1, 1, 1, 'The Shadowfoot Stabber'),
|
|
(24033, 8288, 0, 0, 0, 1, 1, 1, 1, 'Arcane Pads'),
|
|
(24033, 8292, 0, 0, 0, 1, 1, 1, 1, 'Arcane Cover'),
|
|
(24033, 8299, 0, 0, 0, 1, 1, 1, 1, 'Traveler\'s Helm'),
|
|
(24033, 8301, 0, 0, 0, 1, 1, 1, 1, 'Traveler\'s Spaulders'),
|
|
(24033, 8302, 0, 0, 0, 1, 1, 1, 1, 'Hero\'s Bracers'),
|
|
(24033, 8305, 0, 0, 0, 1, 1, 1, 1, 'Hero\'s Gauntlets'),
|
|
(24033, 8306, 0, 0, 0, 1, 1, 1, 1, 'Hero\'s Belt'),
|
|
(24033, 10101, 0, 0, 0, 1, 1, 1, 1, 'Councillor\'s Pants'),
|
|
(24033, 10102, 0, 0, 0, 1, 1, 1, 1, 'Councillor\'s Robes'),
|
|
(24033, 10104, 0, 0, 0, 1, 1, 1, 1, 'Councillor\'s Tunic'),
|
|
(24033, 10112, 0, 0, 0, 1, 1, 1, 1, 'Wanderer\'s Leggings'),
|
|
(24033, 10118, 0, 0, 0, 1, 1, 1, 1, 'Ornate Breastplate'),
|
|
(24033, 10138, 0, 0, 0, 1, 1, 1, 1, 'High Councillor\'s Cloak'),
|
|
(24033, 10145, 0, 0, 0, 1, 1, 1, 1, 'Mighty Girdle'),
|
|
(24033, 10148, 0, 0, 0, 1, 1, 1, 1, 'Mighty Cloak'),
|
|
(24033, 10159, 0, 0, 0, 1, 1, 1, 1, 'Mercurial Cloak'),
|
|
(24033, 10164, 0, 0, 0, 1, 1, 1, 1, 'Templar Chestplate'),
|
|
(24033, 10178, 0, 0, 0, 1, 1, 1, 1, 'Mystical Robe'),
|
|
(24033, 10181, 0, 0, 0, 1, 1, 1, 1, 'Mystical Armor'),
|
|
(24033, 10182, 0, 0, 0, 1, 1, 1, 1, 'Swashbuckler\'s Breastplate'),
|
|
(24033, 10211, 0, 0, 0, 1, 1, 1, 1, 'Elegant Boots'),
|
|
(24033, 10213, 0, 0, 0, 1, 1, 1, 1, 'Elegant Bracers'),
|
|
(24033, 10214, 0, 0, 0, 1, 1, 1, 1, 'Elegant Gloves'),
|
|
(24033, 10216, 0, 0, 0, 1, 1, 1, 1, 'Elegant Belt'),
|
|
(24033, 10221, 0, 0, 0, 1, 1, 1, 1, 'Nightshade Girdle'),
|
|
(24033, 10222, 0, 0, 0, 1, 1, 1, 1, 'Nightshade Boots'),
|
|
(24033, 10223, 0, 0, 0, 1, 1, 1, 1, 'Nightshade Armguards'),
|
|
(24033, 10225, 0, 0, 0, 1, 1, 1, 1, 'Nightshade Gloves'),
|
|
(24033, 10232, 0, 0, 0, 1, 1, 1, 1, 'Engraved Gauntlets'),
|
|
(24033, 10234, 0, 0, 0, 1, 1, 1, 1, 'Engraved Boots'),
|
|
(24033, 10235, 0, 0, 0, 1, 1, 1, 1, 'Engraved Helm'),
|
|
(24033, 10236, 0, 0, 0, 1, 1, 1, 1, 'Engraved Leggings'),
|
|
(24033, 10237, 0, 0, 0, 1, 1, 1, 1, 'Engraved Pauldrons'),
|
|
(24033, 10279, 0, 0, 0, 1, 1, 1, 1, 'Emerald Helm'),
|
|
(24033, 10280, 0, 0, 0, 1, 1, 1, 1, 'Emerald Legplates'),
|
|
(24033, 10281, 0, 0, 0, 1, 1, 1, 1, 'Emerald Pauldrons'),
|
|
(24033, 10362, 0, 0, 0, 1, 1, 1, 1, 'Ornate Shield'),
|
|
(24033, 10364, 0, 0, 0, 1, 1, 1, 1, 'Templar Shield'),
|
|
(24033, 10365, 0, 0, 0, 1, 1, 1, 1, 'Emerald Shield'),
|
|
(24033, 10369, 0, 0, 0, 1, 1, 1, 1, 'Imbued Plate Gauntlets'),
|
|
(24033, 10371, 0, 0, 0, 1, 1, 1, 1, 'Imbued Plate Greaves'),
|
|
(24033, 10372, 0, 0, 0, 1, 1, 1, 1, 'Imbued Plate Helmet'),
|
|
(24033, 10374, 0, 0, 0, 1, 1, 1, 1, 'Imbued Plate Pauldrons'),
|
|
(24033, 10377, 0, 0, 0, 1, 1, 1, 1, 'Commander\'s Vambraces'),
|
|
(24033, 10381, 0, 0, 0, 1, 1, 1, 1, 'Commander\'s Girdle'),
|
|
(24033, 11978, 0, 0, 0, 1, 1, 1, 1, 'Jasper Link'),
|
|
(24033, 11991, 0, 0, 0, 1, 1, 1, 1, 'Quicksilver Ring'),
|
|
(24033, 12004, 0, 0, 0, 1, 1, 1, 1, 'Obsidian Band'),
|
|
(24033, 12026, 0, 0, 0, 1, 1, 1, 1, 'Quicksilver Pendant'),
|
|
(24033, 14307, 0, 0, 0, 1, 1, 1, 1, 'Bonecaster\'s Crown'),
|
|
(24033, 14310, 0, 0, 0, 1, 1, 1, 1, 'Celestial Slippers'),
|
|
(24033, 14314, 0, 0, 0, 1, 1, 1, 1, 'Celestial Handwraps'),
|
|
(24033, 14315, 0, 0, 0, 1, 1, 1, 1, 'Celestial Kilt'),
|
|
(24033, 14316, 0, 0, 0, 1, 1, 1, 1, 'Celestial Pauldrons'),
|
|
(24033, 14319, 0, 0, 0, 1, 1, 1, 1, 'Resplendent Boots'),
|
|
(24033, 14327, 0, 0, 0, 1, 1, 1, 1, 'Resplendent Belt'),
|
|
(24033, 14331, 0, 0, 0, 1, 1, 1, 1, 'Eternal Cloak'),
|
|
(24033, 14453, 0, 0, 0, 1, 1, 1, 1, 'Highborne Robes'),
|
|
(24033, 14455, 0, 0, 0, 1, 1, 1, 1, 'Highborne Padded Armor'),
|
|
(24033, 14457, 0, 0, 0, 1, 1, 1, 1, 'Elunarian Cuffs'),
|
|
(24033, 14670, 0, 0, 0, 1, 1, 1, 1, 'Pridelord Armor'),
|
|
(24033, 14676, 0, 0, 0, 1, 1, 1, 1, 'Pridelord Halo'),
|
|
(24033, 14677, 0, 0, 0, 1, 1, 1, 1, 'Pridelord Pants'),
|
|
(24033, 14682, 0, 0, 0, 1, 1, 1, 1, 'Indomitable Armguards'),
|
|
(24033, 14683, 0, 0, 0, 1, 1, 1, 1, 'Indomitable Cloak'),
|
|
(24033, 14798, 0, 0, 0, 1, 1, 1, 1, 'Bloodlust Breastplate'),
|
|
(24033, 14799, 0, 0, 0, 1, 1, 1, 1, 'Bloodlust Boots'),
|
|
(24033, 14800, 0, 0, 0, 1, 1, 1, 1, 'Bloodlust Buckler'),
|
|
(24033, 14804, 0, 0, 0, 1, 1, 1, 1, 'Bloodlust Helm'),
|
|
(24033, 14808, 0, 0, 0, 1, 1, 1, 1, 'Warstrike Belt'),
|
|
(24033, 14810, 0, 0, 0, 1, 1, 1, 1, 'Warstrike Armsplints'),
|
|
(24033, 14854, 0, 0, 0, 1, 1, 1, 1, 'Vanguard Breastplate'),
|
|
(24033, 14858, 0, 0, 0, 1, 1, 1, 1, 'Vanguard Headdress'),
|
|
(24033, 14864, 0, 0, 0, 1, 1, 1, 1, 'Warleader\'s Belt'),
|
|
(24033, 14869, 0, 0, 0, 1, 1, 1, 1, 'Warleader\'s Bracers'),
|
|
(24033, 14932, 0, 0, 0, 1, 1, 1, 1, 'Heroic Greaves'),
|
|
(24033, 14933, 0, 0, 0, 1, 1, 1, 1, 'Heroic Gauntlets'),
|
|
(24033, 14937, 0, 0, 0, 1, 1, 1, 1, 'Heroic Pauldrons'),
|
|
(24033, 14969, 0, 0, 0, 1, 1, 1, 1, 'Glorious Headdress'),
|
|
(24033, 14970, 0, 0, 0, 1, 1, 1, 1, 'Glorious Legplates'),
|
|
(24033, 14983, 0, 0, 0, 1, 1, 1, 1, 'Exalted Armsplints'),
|
|
(24033, 15219, 0, 0, 0, 1, 1, 1, 1, 'Dimensional Blade'),
|
|
(24033, 15238, 0, 0, 0, 1, 1, 1, 1, 'Warlord\'s Axe'),
|
|
(24033, 15256, 0, 0, 0, 1, 1, 1, 1, 'Massacre Sword'),
|
|
(24033, 15265, 0, 0, 0, 1, 1, 1, 1, 'Painbringer'),
|
|
(24033, 15272, 0, 0, 0, 1, 1, 1, 1, 'Razor Axe'),
|
|
(24033, 15276, 0, 0, 0, 1, 1, 1, 1, 'Magus Long Staff'),
|
|
(24033, 15426, 0, 0, 0, 1, 1, 1, 1, 'Peerless Boots'),
|
|
(24033, 15429, 0, 0, 0, 1, 1, 1, 1, 'Peerless Gloves'),
|
|
(24033, 15431, 0, 0, 0, 1, 1, 1, 1, 'Peerless Leggings'),
|
|
(24033, 15432, 0, 0, 0, 1, 1, 1, 1, 'Peerless Shoulders'),
|
|
(24033, 15658, 0, 0, 0, 1, 1, 1, 1, 'Impenetrable Sabatons'),
|
|
(24033, 15666, 0, 0, 0, 1, 1, 1, 1, 'Impenetrable Pauldrons'),
|
|
(24033, 15668, 0, 0, 0, 1, 1, 1, 1, 'Magnificent Bracers'),
|
|
(24033, 15673, 0, 0, 0, 1, 1, 1, 1, 'Magnificent Belt'),
|
|
(24033, 15681, 0, 0, 0, 1, 1, 1, 1, 'Triumphant Cloak'),
|
|
(24033, 15693, 0, 0, 0, 1, 1, 1, 1, 'Grand Shoulders'),
|
|
(24033, 15890, 0, 0, 0, 1, 1, 1, 1, 'Vanguard Shield'),
|
|
(24033, 15938, 0, 0, 0, 1, 1, 1, 1, 'Mystical Orb'),
|
|
(24033, 15939, 0, 0, 0, 1, 1, 1, 1, 'Councillor\'s Scepter'),
|
|
(24033, 15967, 0, 0, 0, 1, 1, 1, 1, 'Highborne Star'),
|
|
(24033, 18337, 0, 0, 0, 1, 1, 1, 1, 'Orphic Bracers'),
|
|
(24033, 18339, 0, 0, 0, 1, 1, 1, 1, 'Eidolon Cloak'),
|
|
(24033, 18672, 0, 0, 0, 1, 1, 1, 1, 'Elemental Ember'),
|
|
(24033, 18674, 0, 0, 0, 1, 1, 1, 1, 'Hardened Stone Band'),
|
|
(24034, 1973, 0, 0, 0, 1, 1, 1, 1, 'Orb of Deception'),
|
|
(24034, 4696, 0, 0, 0, 1, 1, 1, 1, 'Lapidis Tankard of Tidesippe'),
|
|
(24034, 13002, 0, 0, 0, 1, 1, 1, 1, 'Lady Alizabeth\'s Pendant'),
|
|
(24034, 13004, 0, 0, 0, 1, 1, 1, 1, 'Torch of Austen'),
|
|
(24034, 13007, 0, 0, 0, 1, 1, 1, 1, 'Mageflame Cloak'),
|
|
(24034, 13047, 0, 0, 0, 1, 1, 1, 1, 'Twig of the World Tree'),
|
|
(24034, 13070, 0, 0, 0, 1, 1, 1, 1, 'Sapphiron\'s Scale Boots'),
|
|
(24034, 13101, 0, 0, 0, 1, 1, 1, 1, 'Wolfrunner Shoes'),
|
|
(24034, 13135, 0, 0, 0, 1, 1, 1, 1, 'Lordly Armguards'),
|
|
(24034, 13146, 0, 0, 0, 1, 1, 1, 1, 'Shell Launcher Shotgun'),
|
|
(24035, 22829, 0, 0, 0, 1, 1, 1, 1, 'Super Healing Potion'),
|
|
(24035, 22832, 0, 0, 0, 1, 1, 1, 1, 'Super Mana Potion'),
|
|
(24035, 27498, 0, 0, 0, 1, 1, 1, 1, 'Scroll of Agility V'),
|
|
(24035, 27499, 0, 0, 0, 1, 1, 1, 1, 'Scroll of Intellect V'),
|
|
(24035, 27500, 0, 0, 0, 1, 1, 1, 1, 'Scroll of Protection V'),
|
|
(24035, 27501, 0, 0, 0, 1, 1, 1, 1, 'Scroll of Spirit V'),
|
|
(24035, 27502, 0, 0, 0, 1, 1, 1, 1, 'Scroll of Stamina V'),
|
|
(24035, 27503, 0, 0, 0, 1, 1, 1, 1, 'Scroll of Strength V'),
|
|
(24036, 3936, 0, 0, 0, 1, 1, 1, 1, 'Crochet Belt'),
|
|
(24036, 3937, 0, 0, 0, 1, 1, 1, 1, 'Crochet Boots'),
|
|
(24036, 3938, 0, 0, 0, 1, 1, 1, 1, 'Crochet Bracers'),
|
|
(24036, 3939, 0, 0, 0, 1, 1, 1, 1, 'Crochet Cloak'),
|
|
(24036, 3940, 0, 0, 0, 1, 1, 1, 1, 'Crochet Gloves'),
|
|
(24036, 3941, 0, 0, 0, 1, 1, 1, 1, 'Crochet Pants'),
|
|
(24036, 3942, 0, 0, 0, 1, 1, 1, 1, 'Crochet Shoulderpads'),
|
|
(24036, 3943, 0, 0, 0, 1, 1, 1, 1, 'Crochet Vest'),
|
|
(24036, 3961, 0, 0, 0, 1, 1, 1, 1, 'Thick Leather Belt'),
|
|
(24036, 3962, 0, 0, 0, 1, 1, 1, 1, 'Thick Leather Boots'),
|
|
(24036, 3963, 0, 0, 0, 1, 1, 1, 1, 'Thick Leather Bracers'),
|
|
(24036, 3964, 0, 0, 0, 1, 1, 1, 1, 'Thick Cloak'),
|
|
(24036, 3965, 0, 0, 0, 1, 1, 1, 1, 'Thick Leather Gloves'),
|
|
(24036, 3966, 0, 0, 0, 1, 1, 1, 1, 'Thick Leather Pants'),
|
|
(24036, 3967, 0, 0, 0, 1, 1, 1, 1, 'Thick Leather Shoulderpads'),
|
|
(24036, 3968, 0, 0, 0, 1, 1, 1, 1, 'Thick Leather Tunic'),
|
|
(24036, 3986, 0, 0, 0, 1, 1, 1, 1, 'Protective Pavise'),
|
|
(24036, 3989, 0, 0, 0, 1, 1, 1, 1, 'Blocking Targe'),
|
|
(24036, 4000, 0, 0, 0, 1, 1, 1, 1, 'Overlinked Chain Belt'),
|
|
(24036, 4001, 0, 0, 0, 1, 1, 1, 1, 'Overlinked Chain Boots'),
|
|
(24036, 4002, 0, 0, 0, 1, 1, 1, 1, 'Overlinked Chain Bracers'),
|
|
(24036, 4003, 0, 0, 0, 1, 1, 1, 1, 'Overlinked Chain Cloak'),
|
|
(24036, 4004, 0, 0, 0, 1, 1, 1, 1, 'Overlinked Chain Gloves'),
|
|
(24036, 4005, 0, 0, 0, 1, 1, 1, 1, 'Overlinked Chain Pants'),
|
|
(24036, 4006, 0, 0, 0, 1, 1, 1, 1, 'Overlinked Chain Shoulderpads'),
|
|
(24036, 4007, 0, 0, 0, 1, 1, 1, 1, 'Overlinked Chain Armor'),
|
|
(24036, 4017, 0, 0, 0, 1, 1, 1, 1, 'Sharp Shortsword'),
|
|
(24036, 4018, 0, 0, 0, 1, 1, 1, 1, 'Whetted Claymore'),
|
|
(24036, 4019, 0, 0, 0, 1, 1, 1, 1, 'Heavy Flint Axe'),
|
|
(24036, 4020, 0, 0, 0, 1, 1, 1, 1, 'Splintering Battle Axe'),
|
|
(24036, 4021, 0, 0, 0, 1, 1, 1, 1, 'Blunting Mace'),
|
|
(24036, 4022, 0, 0, 0, 1, 1, 1, 1, 'Crushing Maul'),
|
|
(24036, 4023, 0, 0, 0, 1, 1, 1, 1, 'Fine Pointed Dagger'),
|
|
(24036, 4024, 0, 0, 0, 1, 1, 1, 1, 'Heavy War Staff'),
|
|
(24036, 4025, 0, 0, 0, 1, 1, 1, 1, 'Balanced Long Bow'),
|
|
(24036, 4026, 0, 0, 0, 1, 1, 1, 1, 'Sentinel Musket'),
|
|
(24036, 7909, 0, 0, 0, 1, 1, 1, 1, 'Aquamarine'),
|
|
(24036, 8749, 0, 0, 0, 1, 1, 1, 1, 'Crochet Hat'),
|
|
(24036, 8750, 0, 0, 0, 1, 1, 1, 1, 'Thick Leather Hat'),
|
|
(24036, 8751, 0, 0, 0, 1, 1, 1, 1, 'Overlinked Coif'),
|
|
(24036, 13824, 0, 0, 0, 1, 1, 1, 1, 'Recurve Long Bow'),
|
|
(24037, 1529, 0, 0, 0, 1, 1, 1, 1, 'Jade'),
|
|
(24037, 1625, 0, 0, 0, 1, 1, 1, 1, 'Exquisite Flamberge'),
|
|
(24037, 1659, 0, 0, 0, 1, 1, 1, 1, 'Engineering Gloves'),
|
|
(24037, 1664, 0, 0, 0, 1, 1, 1, 1, 'Spellforce Rod'),
|
|
(24037, 1685, 0, 0, 0, 1, 1, 1, 1, 'Troll-hide Bag'),
|
|
(24037, 2623, 0, 0, 0, 1, 1, 1, 1, 'Holy Diadem'),
|
|
(24037, 3914, 0, 0, 0, 1, 1, 1, 1, 'Journeyman\'s Backpack'),
|
|
(24037, 4044, 0, 0, 0, 1, 1, 1, 1, 'Aurora Pants'),
|
|
(24037, 4058, 0, 0, 0, 1, 1, 1, 1, 'Glyphed Breastplate'),
|
|
(24037, 4060, 0, 0, 0, 1, 1, 1, 1, 'Glyphed Leggings'),
|
|
(24037, 4068, 0, 0, 0, 1, 1, 1, 1, 'Chief Brigadier Shield'),
|
|
(24037, 4070, 0, 0, 0, 1, 1, 1, 1, 'Jouster\'s Crest'),
|
|
(24037, 4079, 0, 0, 0, 1, 1, 1, 1, 'Chief Brigadier Leggings'),
|
|
(24037, 4087, 0, 0, 0, 1, 1, 1, 1, 'Trueshot Bow'),
|
|
(24037, 4725, 0, 0, 0, 1, 1, 1, 1, 'Chief Brigadier Pauldrons'),
|
|
(24037, 4735, 0, 0, 0, 1, 1, 1, 1, 'Mistscape Cloak'),
|
|
(24037, 5011, 0, 0, 0, 1, 1, 1, 1, 'Welken Ring'),
|
|
(24037, 5079, 0, 0, 0, 1, 1, 1, 1, 'Cold Basilisk Eye'),
|
|
(24037, 5215, 0, 0, 0, 1, 1, 1, 1, 'Ember Wand'),
|
|
(24037, 5608, 0, 0, 0, 1, 1, 1, 1, 'Living Cowl'),
|
|
(24037, 6411, 0, 0, 0, 1, 1, 1, 1, 'Chief Brigadier Armor'),
|
|
(24037, 6415, 0, 0, 0, 1, 1, 1, 1, 'Aurora Robe'),
|
|
(24037, 6432, 0, 0, 0, 1, 1, 1, 1, 'Imperial Cloak'),
|
|
(24037, 7112, 0, 0, 0, 1, 1, 1, 1, 'Aurora Armor'),
|
|
(24037, 7429, 0, 0, 0, 1, 1, 1, 1, 'Twilight Armor'),
|
|
(24037, 7430, 0, 0, 0, 1, 1, 1, 1, 'Twilight Robe'),
|
|
(24037, 7439, 0, 0, 0, 1, 1, 1, 1, 'Sentinel Breastplate'),
|
|
(24037, 7472, 0, 0, 0, 1, 1, 1, 1, 'Regal Boots'),
|
|
(24037, 7474, 0, 0, 0, 1, 1, 1, 1, 'Regal Cloak'),
|
|
(24037, 7475, 0, 0, 0, 1, 1, 1, 1, 'Regal Cuffs'),
|
|
(24037, 7476, 0, 0, 0, 1, 1, 1, 1, 'Regal Sash'),
|
|
(24037, 7480, 0, 0, 0, 1, 1, 1, 1, 'Ranger Gloves'),
|
|
(24037, 7483, 0, 0, 0, 1, 1, 1, 1, 'Ranger Cloak'),
|
|
(24037, 7484, 0, 0, 0, 1, 1, 1, 1, 'Ranger Wristguards'),
|
|
(24037, 7485, 0, 0, 0, 1, 1, 1, 1, 'Ranger Cord'),
|
|
(24037, 7489, 0, 0, 0, 1, 1, 1, 1, 'Captain\'s Gauntlets'),
|
|
(24037, 7493, 0, 0, 0, 1, 1, 1, 1, 'Captain\'s Bracers'),
|
|
(24037, 7494, 0, 0, 0, 1, 1, 1, 1, 'Captain\'s Waistguard'),
|
|
(24037, 7556, 0, 0, 0, 1, 1, 1, 1, 'Twilight Orb'),
|
|
(24037, 7610, 0, 0, 0, 1, 1, 1, 1, 'Aurora Sphere'),
|
|
(24037, 9876, 0, 0, 0, 1, 1, 1, 1, 'Sorcerer Slippers'),
|
|
(24037, 9878, 0, 0, 0, 1, 1, 1, 1, 'Sorcerer Hat'),
|
|
(24037, 9880, 0, 0, 0, 1, 1, 1, 1, 'Sorcerer Gloves'),
|
|
(24037, 9881, 0, 0, 0, 1, 1, 1, 1, 'Sorcerer Mantle'),
|
|
(24037, 9885, 0, 0, 0, 1, 1, 1, 1, 'Huntsman\'s Boots'),
|
|
(24037, 9889, 0, 0, 0, 1, 1, 1, 1, 'Huntsman\'s Cap'),
|
|
(24037, 9892, 0, 0, 0, 1, 1, 1, 1, 'Huntsman\'s Gloves'),
|
|
(24037, 9894, 0, 0, 0, 1, 1, 1, 1, 'Huntsman\'s Shoulders'),
|
|
(24037, 9895, 0, 0, 0, 1, 1, 1, 1, 'Jazeraint Boots'),
|
|
(24037, 9900, 0, 0, 0, 1, 1, 1, 1, 'Jazeraint Gauntlets'),
|
|
(24037, 9901, 0, 0, 0, 1, 1, 1, 1, 'Jazeraint Belt'),
|
|
(24037, 9902, 0, 0, 0, 1, 1, 1, 1, 'Jazeraint Helm'),
|
|
(24037, 9904, 0, 0, 0, 1, 1, 1, 1, 'Jazeraint Pauldrons'),
|
|
(24037, 9929, 0, 0, 0, 1, 1, 1, 1, 'Brigade Cloak'),
|
|
(24037, 11972, 0, 0, 0, 1, 1, 1, 1, 'Carnelian Loop'),
|
|
(24037, 12011, 0, 0, 0, 1, 1, 1, 1, 'Forest Hoop'),
|
|
(24037, 12022, 0, 0, 0, 1, 1, 1, 1, 'Iridium Chain'),
|
|
(24037, 14216, 0, 0, 0, 1, 1, 1, 1, 'Geomancer\'s Jerkin'),
|
|
(24037, 14220, 0, 0, 0, 1, 1, 1, 1, 'Geomancer\'s Cap'),
|
|
(24037, 14225, 0, 0, 0, 1, 1, 1, 1, 'Geomancer\'s Wraps'),
|
|
(24037, 14228, 0, 0, 0, 1, 1, 1, 1, 'Embersilk Coronet'),
|
|
(24037, 14233, 0, 0, 0, 1, 1, 1, 1, 'Embersilk Leggings'),
|
|
(24037, 14238, 0, 0, 0, 1, 1, 1, 1, 'Darkmist Boots'),
|
|
(24037, 14240, 0, 0, 0, 1, 1, 1, 1, 'Darkmist Bands'),
|
|
(24037, 14241, 0, 0, 0, 1, 1, 1, 1, 'Darkmist Handguards'),
|
|
(24037, 14245, 0, 0, 0, 1, 1, 1, 1, 'Darkmist Girdle'),
|
|
(24037, 14248, 0, 0, 0, 1, 1, 1, 1, 'Lunar Bindings'),
|
|
(24037, 14251, 0, 0, 0, 1, 1, 1, 1, 'Lunar Cloak'),
|
|
(24037, 14255, 0, 0, 0, 1, 1, 1, 1, 'Lunar Belt'),
|
|
(24037, 14422, 0, 0, 0, 1, 1, 1, 1, 'Silksand Gloves'),
|
|
(24037, 14423, 0, 0, 0, 1, 1, 1, 1, 'Silksand Shoulder Pads'),
|
|
(24037, 14591, 0, 0, 0, 1, 1, 1, 1, 'Hawkeye\'s Helm'),
|
|
(24037, 14592, 0, 0, 0, 1, 1, 1, 1, 'Hawkeye\'s Tunic'),
|
|
(24037, 14598, 0, 0, 0, 1, 1, 1, 1, 'Warden\'s Waistband'),
|
|
(24037, 14600, 0, 0, 0, 1, 1, 1, 1, 'Warden\'s Wristbands'),
|
|
(24037, 14603, 0, 0, 0, 1, 1, 1, 1, 'Warden\'s Mantle'),
|
|
(24037, 14606, 0, 0, 0, 1, 1, 1, 1, 'Warden\'s Gloves'),
|
|
(24037, 14770, 0, 0, 0, 1, 1, 1, 1, 'Ravager\'s Armguards'),
|
|
(24037, 14772, 0, 0, 0, 1, 1, 1, 1, 'Ravager\'s Handwraps'),
|
|
(24037, 14902, 0, 0, 0, 1, 1, 1, 1, 'Saltstone Shield'),
|
|
(24037, 15152, 0, 0, 0, 1, 1, 1, 1, 'Nocturnal Shoes'),
|
|
(24037, 15157, 0, 0, 0, 1, 1, 1, 1, 'Nocturnal Leggings'),
|
|
(24037, 15158, 0, 0, 0, 1, 1, 1, 1, 'Nocturnal Shoulder Pads'),
|
|
(24037, 15214, 0, 0, 0, 1, 1, 1, 1, 'Nobles Brand'),
|
|
(24037, 15234, 0, 0, 0, 1, 1, 1, 1, 'Greater Scythe'),
|
|
(24037, 15261, 0, 0, 0, 1, 1, 1, 1, 'Sequoia Branch'),
|
|
(24037, 15359, 0, 0, 0, 1, 1, 1, 1, 'Trickster\'s Vest'),
|
|
(24037, 15366, 0, 0, 0, 1, 1, 1, 1, 'Trickster\'s Leggings'),
|
|
(24037, 15371, 0, 0, 0, 1, 1, 1, 1, 'Wolf Rider\'s Cloak'),
|
|
(24037, 15567, 0, 0, 0, 1, 1, 1, 1, 'Marauder\'s Tunic'),
|
|
(24037, 15569, 0, 0, 0, 1, 1, 1, 1, 'Marauder\'s Crest'),
|
|
(24037, 15574, 0, 0, 0, 1, 1, 1, 1, 'Marauder\'s Shoulder Pads'),
|
|
(24037, 15578, 0, 0, 0, 1, 1, 1, 1, 'Sparkleshell Breastplate'),
|
|
(24037, 15580, 0, 0, 0, 1, 1, 1, 1, 'Sparkleshell Headwrap'),
|
|
(24037, 15582, 0, 0, 0, 1, 1, 1, 1, 'Sparkleshell Legguards'),
|
|
(24037, 15583, 0, 0, 0, 1, 1, 1, 1, 'Sparkleshell Shoulder Pads'),
|
|
(24037, 15584, 0, 0, 0, 1, 1, 1, 1, 'Sparkleshell Shield'),
|
|
(24037, 15589, 0, 0, 0, 1, 1, 1, 1, 'Steadfast Stompers'),
|
|
(24037, 15596, 0, 0, 0, 1, 1, 1, 1, 'Steadfast Legplates'),
|
|
(24037, 15603, 0, 0, 0, 1, 1, 1, 1, 'Ancient Cloak'),
|
|
(24037, 15606, 0, 0, 0, 1, 1, 1, 1, 'Ancient Belt'),
|
|
(24037, 15978, 0, 0, 0, 1, 1, 1, 1, 'Geomancer\'s Rod'),
|
|
(24038, 1716, 0, 0, 0, 1, 1, 1, 1, 'Robe of the Magi'),
|
|
(24038, 9434, 0, 0, 0, 1, 1, 1, 1, 'Elemental Raiment'),
|
|
(24038, 13017, 0, 0, 0, 1, 1, 1, 1, 'Hellslayer Battle Axe'),
|
|
(24038, 13034, 0, 0, 0, 1, 1, 1, 1, 'Speedsteel Rapier'),
|
|
(24038, 13038, 0, 0, 0, 1, 1, 1, 1, 'Swiftwind'),
|
|
(24038, 13042, 0, 0, 0, 1, 1, 1, 1, 'Sword of the Magistrate'),
|
|
(24038, 13054, 0, 0, 0, 1, 1, 1, 1, 'Grim Reaper'),
|
|
(24038, 13088, 0, 0, 0, 1, 1, 1, 1, 'Gazlowe\'s Charm'),
|
|
(24038, 13199, 0, 0, 0, 1, 1, 1, 1, 'Crushridge Bindings'),
|
|
(24039, 866, 0, 0, 0, 1, 1, 1, 1, 'Monk\'s Staff'),
|
|
(24039, 1624, 0, 0, 0, 1, 1, 1, 1, 'Skullsplitter Helm'),
|
|
(24039, 1640, 0, 0, 0, 1, 1, 1, 1, 'Monstrous War Axe'),
|
|
(24039, 1685, 0, 0, 0, 1, 1, 1, 1, 'Troll-hide Bag'),
|
|
(24039, 2624, 0, 0, 0, 1, 1, 1, 1, 'Thinking Cap'),
|
|
(24039, 3914, 0, 0, 0, 1, 1, 1, 1, 'Journeyman\'s Backpack'),
|
|
(24039, 4045, 0, 0, 0, 1, 1, 1, 1, 'Mistscape Bracers'),
|
|
(24039, 4047, 0, 0, 0, 1, 1, 1, 1, 'Mistscape Boots'),
|
|
(24039, 4061, 0, 0, 0, 1, 1, 1, 1, 'Imperial Leather Bracers'),
|
|
(24039, 4063, 0, 0, 0, 1, 1, 1, 1, 'Imperial Leather Gloves'),
|
|
(24039, 4734, 0, 0, 0, 1, 1, 1, 1, 'Mistscape Mantle'),
|
|
(24039, 4736, 0, 0, 0, 1, 1, 1, 1, 'Mistscape Sash'),
|
|
(24039, 4738, 0, 0, 0, 1, 1, 1, 1, 'Imperial Leather Belt'),
|
|
(24039, 6424, 0, 0, 0, 1, 1, 1, 1, 'Blackforge Cape'),
|
|
(24039, 6426, 0, 0, 0, 1, 1, 1, 1, 'Blackforge Bracers'),
|
|
(24039, 6428, 0, 0, 0, 1, 1, 1, 1, 'Mistscape Gloves'),
|
|
(24039, 6431, 0, 0, 0, 1, 1, 1, 1, 'Imperial Leather Boots'),
|
|
(24039, 6433, 0, 0, 0, 1, 1, 1, 1, 'Imperial Leather Helm'),
|
|
(24039, 7470, 0, 0, 0, 1, 1, 1, 1, 'Regal Wizard Hat'),
|
|
(24039, 7471, 0, 0, 0, 1, 1, 1, 1, 'Regal Gloves'),
|
|
(24039, 7473, 0, 0, 0, 1, 1, 1, 1, 'Regal Mantle'),
|
|
(24039, 7478, 0, 0, 0, 1, 1, 1, 1, 'Ranger Leggings'),
|
|
(24039, 7479, 0, 0, 0, 1, 1, 1, 1, 'Ranger Helm'),
|
|
(24039, 7481, 0, 0, 0, 1, 1, 1, 1, 'Ranger Boots'),
|
|
(24039, 7482, 0, 0, 0, 1, 1, 1, 1, 'Ranger Shoulders'),
|
|
(24039, 7487, 0, 0, 0, 1, 1, 1, 1, 'Captain\'s Leggings'),
|
|
(24039, 7488, 0, 0, 0, 1, 1, 1, 1, 'Captain\'s Circlet'),
|
|
(24039, 7490, 0, 0, 0, 1, 1, 1, 1, 'Captain\'s Boots'),
|
|
(24039, 7491, 0, 0, 0, 1, 1, 1, 1, 'Captain\'s Shoulderguards'),
|
|
(24039, 7496, 0, 0, 0, 1, 1, 1, 1, 'Field Plate Shield'),
|
|
(24039, 8194, 0, 0, 0, 1, 1, 1, 1, 'Goblin Nutcracker'),
|
|
(24039, 8196, 0, 0, 0, 1, 1, 1, 1, 'Ebon Scimitar'),
|
|
(24039, 9874, 0, 0, 0, 1, 1, 1, 1, 'Sorcerer Drape'),
|
|
(24039, 9882, 0, 0, 0, 1, 1, 1, 1, 'Sorcerer Sphere'),
|
|
(24039, 9883, 0, 0, 0, 1, 1, 1, 1, 'Sorcerer Pants'),
|
|
(24039, 9884, 0, 0, 0, 1, 1, 1, 1, 'Sorcerer Robe'),
|
|
(24039, 9887, 0, 0, 0, 1, 1, 1, 1, 'Huntsman\'s Armor'),
|
|
(24039, 9893, 0, 0, 0, 1, 1, 1, 1, 'Huntsman\'s Leggings'),
|
|
(24039, 9897, 0, 0, 0, 1, 1, 1, 1, 'Jazeraint Chestguard'),
|
|
(24039, 9899, 0, 0, 0, 1, 1, 1, 1, 'Jazeraint Shield'),
|
|
(24039, 9903, 0, 0, 0, 1, 1, 1, 1, 'Jazeraint Leggings'),
|
|
(24039, 9908, 0, 0, 0, 1, 1, 1, 1, 'Royal Cape'),
|
|
(24039, 9909, 0, 0, 0, 1, 1, 1, 1, 'Royal Bands'),
|
|
(24039, 9919, 0, 0, 0, 1, 1, 1, 1, 'Tracker\'s Cloak'),
|
|
(24039, 9926, 0, 0, 0, 1, 1, 1, 1, 'Brigade Boots'),
|
|
(24039, 9927, 0, 0, 0, 1, 1, 1, 1, 'Brigade Bracers'),
|
|
(24039, 9930, 0, 0, 0, 1, 1, 1, 1, 'Brigade Gauntlets'),
|
|
(24039, 9931, 0, 0, 0, 1, 1, 1, 1, 'Brigade Girdle'),
|
|
(24039, 11973, 0, 0, 0, 1, 1, 1, 1, 'Hematite Link'),
|
|
(24039, 11987, 0, 0, 0, 1, 1, 1, 1, 'Iridium Circle'),
|
|
(24039, 11998, 0, 0, 0, 1, 1, 1, 1, 'Jet Loop'),
|
|
(24039, 12042, 0, 0, 0, 1, 1, 1, 1, 'Marsh Chain'),
|
|
(24039, 14230, 0, 0, 0, 1, 1, 1, 1, 'Embersilk Tunic'),
|
|
(24039, 14234, 0, 0, 0, 1, 1, 1, 1, 'Embersilk Robes'),
|
|
(24039, 14242, 0, 0, 0, 1, 1, 1, 1, 'Darkmist Pants'),
|
|
(24039, 14243, 0, 0, 0, 1, 1, 1, 1, 'Darkmist Mantle'),
|
|
(24039, 14250, 0, 0, 0, 1, 1, 1, 1, 'Lunar Slippers'),
|
|
(24039, 14253, 0, 0, 0, 1, 1, 1, 1, 'Lunar Handwraps'),
|
|
(24039, 14261, 0, 0, 0, 1, 1, 1, 1, 'Bloodwoven Cloak'),
|
|
(24039, 14421, 0, 0, 0, 1, 1, 1, 1, 'Silksand Circlet'),
|
|
(24039, 14424, 0, 0, 0, 1, 1, 1, 1, 'Silksand Legwraps'),
|
|
(24039, 14429, 0, 0, 0, 1, 1, 1, 1, 'Windchaser Cuffs'),
|
|
(24039, 14430, 0, 0, 0, 1, 1, 1, 1, 'Windchaser Cloak'),
|
|
(24039, 14435, 0, 0, 0, 1, 1, 1, 1, 'Windchaser Cinch'),
|
|
(24039, 14599, 0, 0, 0, 1, 1, 1, 1, 'Warden\'s Footpads'),
|
|
(24039, 14605, 0, 0, 0, 1, 1, 1, 1, 'Warden\'s Woolies'),
|
|
(24039, 14769, 0, 0, 0, 1, 1, 1, 1, 'Ravager\'s Sandals'),
|
|
(24039, 14774, 0, 0, 0, 1, 1, 1, 1, 'Ravager\'s Crown'),
|
|
(24039, 14775, 0, 0, 0, 1, 1, 1, 1, 'Ravager\'s Woolies'),
|
|
(24039, 14776, 0, 0, 0, 1, 1, 1, 1, 'Ravager\'s Mantle'),
|
|
(24039, 14825, 0, 0, 0, 1, 1, 1, 1, 'Symbolic Crest'),
|
|
(24039, 15156, 0, 0, 0, 1, 1, 1, 1, 'Nocturnal Cap'),
|
|
(24039, 15159, 0, 0, 0, 1, 1, 1, 1, 'Nocturnal Tunic'),
|
|
(24039, 15161, 0, 0, 0, 1, 1, 1, 1, 'Imposing Belt'),
|
|
(24039, 15163, 0, 0, 0, 1, 1, 1, 1, 'Imposing Bracers'),
|
|
(24039, 15165, 0, 0, 0, 1, 1, 1, 1, 'Imposing Cape'),
|
|
(24039, 15244, 0, 0, 0, 1, 1, 1, 1, 'Razor Blade'),
|
|
(24039, 15251, 0, 0, 0, 1, 1, 1, 1, 'Headstriker Sword'),
|
|
(24039, 15363, 0, 0, 0, 1, 1, 1, 1, 'Trickster\'s Headdress'),
|
|
(24039, 15369, 0, 0, 0, 1, 1, 1, 1, 'Wolf Rider\'s Belt'),
|
|
(24039, 15372, 0, 0, 0, 1, 1, 1, 1, 'Wolf Rider\'s Gloves'),
|
|
(24039, 15375, 0, 0, 0, 1, 1, 1, 1, 'Wolf Rider\'s Shoulder Pads'),
|
|
(24039, 15377, 0, 0, 0, 1, 1, 1, 1, 'Wolf Rider\'s Wristbands'),
|
|
(24039, 15591, 0, 0, 0, 1, 1, 1, 1, 'Steadfast Breastplate'),
|
|
(24039, 15592, 0, 0, 0, 1, 1, 1, 1, 'Steadfast Buckler'),
|
|
(24039, 15593, 0, 0, 0, 1, 1, 1, 1, 'Steadfast Coronet'),
|
|
(24039, 15597, 0, 0, 0, 1, 1, 1, 1, 'Steadfast Shoulders'),
|
|
(24039, 15600, 0, 0, 0, 1, 1, 1, 1, 'Ancient Vambraces'),
|
|
(24039, 15605, 0, 0, 0, 1, 1, 1, 1, 'Ancient Gauntlets'),
|
|
(24039, 15610, 0, 0, 0, 1, 1, 1, 1, 'Bonelink Bracers'),
|
|
(24039, 15611, 0, 0, 0, 1, 1, 1, 1, 'Bonelink Cape'),
|
|
(24039, 15613, 0, 0, 0, 1, 1, 1, 1, 'Bonelink Belt'),
|
|
(24039, 15979, 0, 0, 0, 1, 1, 1, 1, 'Embersilk Stave'),
|
|
(24040, 1714, 0, 0, 0, 1, 1, 1, 1, 'Necklace of Calisea'),
|
|
(24040, 1718, 0, 0, 0, 1, 1, 1, 1, 'Basilisk Hide Pants'),
|
|
(24040, 1722, 0, 0, 0, 1, 1, 1, 1, 'Thornstone Sledgehammer'),
|
|
(24040, 2802, 0, 0, 0, 1, 1, 1, 1, 'Blazing Emblem'),
|
|
(24040, 13029, 0, 0, 0, 1, 1, 1, 1, 'Umbral Crystal'),
|
|
(24040, 13064, 0, 0, 0, 1, 1, 1, 1, 'Jaina\'s Firestarter'),
|
|
(24040, 13117, 0, 0, 0, 1, 1, 1, 1, 'Ogron\'s Sash'),
|
|
(24040, 13132, 0, 0, 0, 1, 1, 1, 1, 'Skeletal Shoulders'),
|
|
(24040, 13138, 0, 0, 0, 1, 1, 1, 1, 'The Silencer'),
|
|
(24041, 1521, 0, 0, 0, 1, 1, 1, 1, 'Lumbering Ogre Axe'),
|
|
(24041, 1613, 0, 0, 0, 1, 1, 1, 1, 'Spiritchaser Staff'),
|
|
(24041, 1685, 0, 0, 0, 1, 1, 1, 1, 'Troll-hide Bag'),
|
|
(24041, 3187, 0, 0, 0, 1, 1, 1, 1, 'Sacrificial Kris'),
|
|
(24041, 3430, 0, 0, 0, 1, 1, 1, 1, 'Sniper Rifle'),
|
|
(24041, 3864, 0, 0, 0, 1, 1, 1, 1, 'Citrine'),
|
|
(24041, 3914, 0, 0, 0, 1, 1, 1, 1, 'Journeyman\'s Backpack'),
|
|
(24041, 4046, 0, 0, 0, 1, 1, 1, 1, 'Mistscape Pants'),
|
|
(24041, 4062, 0, 0, 0, 1, 1, 1, 1, 'Imperial Leather Pants'),
|
|
(24041, 4080, 0, 0, 0, 1, 1, 1, 1, 'Blackforge Cowl'),
|
|
(24041, 4083, 0, 0, 0, 1, 1, 1, 1, 'Blackforge Gauntlets'),
|
|
(24041, 4737, 0, 0, 0, 1, 1, 1, 1, 'Imperial Leather Spaulders'),
|
|
(24041, 5216, 0, 0, 0, 1, 1, 1, 1, 'Umbral Wand'),
|
|
(24041, 6423, 0, 0, 0, 1, 1, 1, 1, 'Blackforge Greaves'),
|
|
(24041, 6425, 0, 0, 0, 1, 1, 1, 1, 'Blackforge Girdle'),
|
|
(24041, 6429, 0, 0, 0, 1, 1, 1, 1, 'Mistscape Wizard Hat'),
|
|
(24041, 7332, 0, 0, 0, 1, 1, 1, 1, 'Regal Armor'),
|
|
(24041, 7468, 0, 0, 0, 1, 1, 1, 1, 'Regal Robe'),
|
|
(24041, 7469, 0, 0, 0, 1, 1, 1, 1, 'Regal Leggings'),
|
|
(24041, 7477, 0, 0, 0, 1, 1, 1, 1, 'Ranger Tunic'),
|
|
(24041, 7486, 0, 0, 0, 1, 1, 1, 1, 'Captain\'s Breastplate'),
|
|
(24041, 7495, 0, 0, 0, 1, 1, 1, 1, 'Captain\'s Buckler'),
|
|
(24041, 7522, 0, 0, 0, 1, 1, 1, 1, 'Gossamer Boots'),
|
|
(24041, 7524, 0, 0, 0, 1, 1, 1, 1, 'Gossamer Cape'),
|
|
(24041, 7525, 0, 0, 0, 1, 1, 1, 1, 'Gossamer Bracers'),
|
|
(24041, 7533, 0, 0, 0, 1, 1, 1, 1, 'Cabalist Cloak'),
|
|
(24041, 7534, 0, 0, 0, 1, 1, 1, 1, 'Cabalist Bracers'),
|
|
(24041, 7544, 0, 0, 0, 1, 1, 1, 1, 'Champion\'s Cape'),
|
|
(24041, 7545, 0, 0, 0, 1, 1, 1, 1, 'Champion\'s Bracers'),
|
|
(24041, 7552, 0, 0, 0, 1, 1, 1, 1, 'Falcon\'s Hook'),
|
|
(24041, 7555, 0, 0, 0, 1, 1, 1, 1, 'Regal Star'),
|
|
(24041, 8120, 0, 0, 0, 1, 1, 1, 1, 'Heraldic Cloak'),
|
|
(24041, 8137, 0, 0, 0, 1, 1, 1, 1, 'Chromite Bracers'),
|
|
(24041, 8139, 0, 0, 0, 1, 1, 1, 1, 'Chromite Gauntlets'),
|
|
(24041, 8140, 0, 0, 0, 1, 1, 1, 1, 'Chromite Girdle'),
|
|
(24041, 8141, 0, 0, 0, 1, 1, 1, 1, 'Chromite Greaves'),
|
|
(24041, 8142, 0, 0, 0, 1, 1, 1, 1, 'Chromite Barbute'),
|
|
(24041, 8144, 0, 0, 0, 1, 1, 1, 1, 'Chromite Pauldrons'),
|
|
(24041, 8156, 0, 0, 0, 1, 1, 1, 1, 'Jouster\'s Wristguards'),
|
|
(24041, 8157, 0, 0, 0, 1, 1, 1, 1, 'Jouster\'s Chestplate'),
|
|
(24041, 8158, 0, 0, 0, 1, 1, 1, 1, 'Jouster\'s Gauntlets'),
|
|
(24041, 8159, 0, 0, 0, 1, 1, 1, 1, 'Jouster\'s Girdle'),
|
|
(24041, 8160, 0, 0, 0, 1, 1, 1, 1, 'Jouster\'s Greaves'),
|
|
(24041, 8161, 0, 0, 0, 1, 1, 1, 1, 'Jouster\'s Visor'),
|
|
(24041, 8162, 0, 0, 0, 1, 1, 1, 1, 'Jouster\'s Legplates'),
|
|
(24041, 8163, 0, 0, 0, 1, 1, 1, 1, 'Jouster\'s Pauldrons'),
|
|
(24041, 9285, 0, 0, 0, 1, 1, 1, 1, 'Field Plate Vambraces'),
|
|
(24041, 9286, 0, 0, 0, 1, 1, 1, 1, 'Field Plate Armor'),
|
|
(24041, 9287, 0, 0, 0, 1, 1, 1, 1, 'Field Plate Gauntlets'),
|
|
(24041, 9288, 0, 0, 0, 1, 1, 1, 1, 'Field Plate Girdle'),
|
|
(24041, 9289, 0, 0, 0, 1, 1, 1, 1, 'Field Plate Boots'),
|
|
(24041, 9290, 0, 0, 0, 1, 1, 1, 1, 'Field Plate Helmet'),
|
|
(24041, 9291, 0, 0, 0, 1, 1, 1, 1, 'Field Plate Leggings'),
|
|
(24041, 9292, 0, 0, 0, 1, 1, 1, 1, 'Field Plate Pauldrons'),
|
|
(24041, 9906, 0, 0, 0, 1, 1, 1, 1, 'Royal Sash'),
|
|
(24041, 9907, 0, 0, 0, 1, 1, 1, 1, 'Royal Boots'),
|
|
(24041, 9910, 0, 0, 0, 1, 1, 1, 1, 'Royal Gloves'),
|
|
(24041, 9912, 0, 0, 0, 1, 1, 1, 1, 'Royal Amice'),
|
|
(24041, 9915, 0, 0, 0, 1, 1, 1, 1, 'Royal Headband'),
|
|
(24041, 9916, 0, 0, 0, 1, 1, 1, 1, 'Tracker\'s Belt'),
|
|
(24041, 9917, 0, 0, 0, 1, 1, 1, 1, 'Tracker\'s Boots'),
|
|
(24041, 9918, 0, 0, 0, 1, 1, 1, 1, 'Brigade Defender'),
|
|
(24041, 9920, 0, 0, 0, 1, 1, 1, 1, 'Tracker\'s Gloves'),
|
|
(24041, 9921, 0, 0, 0, 1, 1, 1, 1, 'Tracker\'s Headband'),
|
|
(24041, 9923, 0, 0, 0, 1, 1, 1, 1, 'Tracker\'s Shoulderpads'),
|
|
(24041, 9925, 0, 0, 0, 1, 1, 1, 1, 'Tracker\'s Wristguards'),
|
|
(24041, 9928, 0, 0, 0, 1, 1, 1, 1, 'Brigade Breastplate'),
|
|
(24041, 9932, 0, 0, 0, 1, 1, 1, 1, 'Brigade Circlet'),
|
|
(24041, 9933, 0, 0, 0, 1, 1, 1, 1, 'Brigade Leggings'),
|
|
(24041, 9934, 0, 0, 0, 1, 1, 1, 1, 'Brigade Pauldrons'),
|
|
(24041, 9935, 0, 0, 0, 1, 1, 1, 1, 'Embossed Plate Shield'),
|
|
(24041, 9959, 0, 0, 0, 1, 1, 1, 1, 'Warmonger\'s Cloak'),
|
|
(24041, 9966, 0, 0, 0, 1, 1, 1, 1, 'Embossed Plate Armor'),
|
|
(24041, 9967, 0, 0, 0, 1, 1, 1, 1, 'Embossed Plate Gauntlets'),
|
|
(24041, 9968, 0, 0, 0, 1, 1, 1, 1, 'Embossed Plate Girdle'),
|
|
(24041, 9969, 0, 0, 0, 1, 1, 1, 1, 'Embossed Plate Helmet'),
|
|
(24041, 9970, 0, 0, 0, 1, 1, 1, 1, 'Embossed Plate Leggings'),
|
|
(24041, 9971, 0, 0, 0, 1, 1, 1, 1, 'Embossed Plate Pauldrons'),
|
|
(24041, 9972, 0, 0, 0, 1, 1, 1, 1, 'Embossed Plate Bracers'),
|
|
(24041, 9973, 0, 0, 0, 1, 1, 1, 1, 'Embossed Plate Boots'),
|
|
(24041, 10088, 0, 0, 0, 1, 1, 1, 1, 'Gothic Plate Girdle'),
|
|
(24041, 10089, 0, 0, 0, 1, 1, 1, 1, 'Gothic Sabatons'),
|
|
(24041, 10094, 0, 0, 0, 1, 1, 1, 1, 'Gothic Plate Vambraces'),
|
|
(24041, 12012, 0, 0, 0, 1, 1, 1, 1, 'Marsh Ring'),
|
|
(24041, 12023, 0, 0, 0, 1, 1, 1, 1, 'Tellurium Necklace'),
|
|
(24041, 12031, 0, 0, 0, 1, 1, 1, 1, 'Lodestone Necklace'),
|
|
(24041, 14246, 0, 0, 0, 1, 1, 1, 1, 'Darkmist Wizard Hat'),
|
|
(24041, 14247, 0, 0, 0, 1, 1, 1, 1, 'Lunar Mantle'),
|
|
(24041, 14252, 0, 0, 0, 1, 1, 1, 1, 'Lunar Coronet'),
|
|
(24041, 14257, 0, 0, 0, 1, 1, 1, 1, 'Lunar Leggings'),
|
|
(24041, 14258, 0, 0, 0, 1, 1, 1, 1, 'Bloodwoven Cord'),
|
|
(24041, 14260, 0, 0, 0, 1, 1, 1, 1, 'Bloodwoven Bracers'),
|
|
(24041, 14262, 0, 0, 0, 1, 1, 1, 1, 'Bloodwoven Mitts'),
|
|
(24041, 14270, 0, 0, 0, 1, 1, 1, 1, 'Gaea\'s Cloak'),
|
|
(24041, 14417, 0, 0, 0, 1, 1, 1, 1, 'Silksand Tunic'),
|
|
(24041, 14425, 0, 0, 0, 1, 1, 1, 1, 'Silksand Wraps'),
|
|
(24041, 14428, 0, 0, 0, 1, 1, 1, 1, 'Windchaser Footpads'),
|
|
(24041, 14431, 0, 0, 0, 1, 1, 1, 1, 'Windchaser Handguards'),
|
|
(24041, 14432, 0, 0, 0, 1, 1, 1, 1, 'Windchaser Amice'),
|
|
(24041, 14601, 0, 0, 0, 1, 1, 1, 1, 'Warden\'s Wraps'),
|
|
(24041, 14604, 0, 0, 0, 1, 1, 1, 1, 'Warden\'s Wizard Hat'),
|
|
(24041, 14652, 0, 0, 0, 1, 1, 1, 1, 'Scorpashi Sash'),
|
|
(24041, 14654, 0, 0, 0, 1, 1, 1, 1, 'Scorpashi Wristbands'),
|
|
(24041, 14656, 0, 0, 0, 1, 1, 1, 1, 'Scorpashi Cape'),
|
|
(24041, 14768, 0, 0, 0, 1, 1, 1, 1, 'Ravager\'s Armor'),
|
|
(24041, 14777, 0, 0, 0, 1, 1, 1, 1, 'Ravager\'s Shield'),
|
|
(24041, 14778, 0, 0, 0, 1, 1, 1, 1, 'Khan\'s Bindings'),
|
|
(24041, 14781, 0, 0, 0, 1, 1, 1, 1, 'Khan\'s Cloak'),
|
|
(24041, 14782, 0, 0, 0, 1, 1, 1, 1, 'Khan\'s Gloves'),
|
|
(24041, 14821, 0, 0, 0, 1, 1, 1, 1, 'Symbolic Breastplate'),
|
|
(24041, 14826, 0, 0, 0, 1, 1, 1, 1, 'Symbolic Gauntlets'),
|
|
(24041, 14827, 0, 0, 0, 1, 1, 1, 1, 'Symbolic Belt'),
|
|
(24041, 14828, 0, 0, 0, 1, 1, 1, 1, 'Symbolic Greaves'),
|
|
(24041, 14829, 0, 0, 0, 1, 1, 1, 1, 'Symbolic Legplates'),
|
|
(24041, 14830, 0, 0, 0, 1, 1, 1, 1, 'Symbolic Pauldrons'),
|
|
(24041, 14831, 0, 0, 0, 1, 1, 1, 1, 'Symbolic Crown'),
|
|
(24041, 14832, 0, 0, 0, 1, 1, 1, 1, 'Symbolic Vambraces'),
|
|
(24041, 14833, 0, 0, 0, 1, 1, 1, 1, 'Tyrant\'s Gauntlets'),
|
|
(24041, 14834, 0, 0, 0, 1, 1, 1, 1, 'Tyrant\'s Armguards'),
|
|
(24041, 14838, 0, 0, 0, 1, 1, 1, 1, 'Tyrant\'s Belt'),
|
|
(24041, 14839, 0, 0, 0, 1, 1, 1, 1, 'Tyrant\'s Greaves'),
|
|
(24041, 14841, 0, 0, 0, 1, 1, 1, 1, 'Tyrant\'s Epaulets'),
|
|
(24041, 14895, 0, 0, 0, 1, 1, 1, 1, 'Saltstone Surcoat'),
|
|
(24041, 14896, 0, 0, 0, 1, 1, 1, 1, 'Saltstone Sabatons'),
|
|
(24041, 14897, 0, 0, 0, 1, 1, 1, 1, 'Saltstone Gauntlets'),
|
|
(24041, 14898, 0, 0, 0, 1, 1, 1, 1, 'Saltstone Girdle'),
|
|
(24041, 14899, 0, 0, 0, 1, 1, 1, 1, 'Saltstone Helm'),
|
|
(24041, 14900, 0, 0, 0, 1, 1, 1, 1, 'Saltstone Legplates'),
|
|
(24041, 14901, 0, 0, 0, 1, 1, 1, 1, 'Saltstone Shoulder Pads'),
|
|
(24041, 14903, 0, 0, 0, 1, 1, 1, 1, 'Saltstone Armsplints'),
|
|
(24041, 14905, 0, 0, 0, 1, 1, 1, 1, 'Brutish Gauntlets'),
|
|
(24041, 14906, 0, 0, 0, 1, 1, 1, 1, 'Brutish Belt'),
|
|
(24041, 14909, 0, 0, 0, 1, 1, 1, 1, 'Brutish Shoulders'),
|
|
(24041, 14910, 0, 0, 0, 1, 1, 1, 1, 'Brutish Armguards'),
|
|
(24041, 14940, 0, 0, 0, 1, 1, 1, 1, 'Warbringer\'s Sabatons '),
|
|
(24041, 14941, 0, 0, 0, 1, 1, 1, 1, 'Warbringer\'s Armsplints'),
|
|
(24041, 14942, 0, 0, 0, 1, 1, 1, 1, 'Warbringer\'s Gauntlets'),
|
|
(24041, 14943, 0, 0, 0, 1, 1, 1, 1, 'Warbringer\'s Belt'),
|
|
(24041, 14944, 0, 0, 0, 1, 1, 1, 1, 'Warbringer\'s Crown'),
|
|
(24041, 14945, 0, 0, 0, 1, 1, 1, 1, 'Warbringer\'s Legguards'),
|
|
(24041, 14946, 0, 0, 0, 1, 1, 1, 1, 'Warbringer\'s Spaulders'),
|
|
(24041, 14956, 0, 0, 0, 1, 1, 1, 1, 'Bloodforged Bindings'),
|
|
(24041, 15162, 0, 0, 0, 1, 1, 1, 1, 'Imposing Boots'),
|
|
(24041, 15166, 0, 0, 0, 1, 1, 1, 1, 'Imposing Gloves'),
|
|
(24041, 15168, 0, 0, 0, 1, 1, 1, 1, 'Imposing Pants'),
|
|
(24041, 15169, 0, 0, 0, 1, 1, 1, 1, 'Imposing Shoulders'),
|
|
(24041, 15215, 0, 0, 0, 1, 1, 1, 1, 'Furious Falchion'),
|
|
(24041, 15287, 0, 0, 0, 1, 1, 1, 1, 'Crusader Bow'),
|
|
(24041, 15370, 0, 0, 0, 1, 1, 1, 1, 'Wolf Rider\'s Boots'),
|
|
(24041, 15374, 0, 0, 0, 1, 1, 1, 1, 'Wolf Rider\'s Leggings'),
|
|
(24041, 15382, 0, 0, 0, 1, 1, 1, 1, 'Rageclaw Cloak'),
|
|
(24041, 15599, 0, 0, 0, 1, 1, 1, 1, 'Ancient Greaves'),
|
|
(24041, 15602, 0, 0, 0, 1, 1, 1, 1, 'Ancient Crown'),
|
|
(24041, 15607, 0, 0, 0, 1, 1, 1, 1, 'Ancient Legguards'),
|
|
(24041, 15608, 0, 0, 0, 1, 1, 1, 1, 'Ancient Pauldrons'),
|
|
(24041, 15612, 0, 0, 0, 1, 1, 1, 1, 'Bonelink Gauntlets'),
|
|
(24041, 15614, 0, 0, 0, 1, 1, 1, 1, 'Bonelink Sabatons'),
|
|
(24041, 15617, 0, 0, 0, 1, 1, 1, 1, 'Bonelink Epaulets'),
|
|
(24041, 15624, 0, 0, 0, 1, 1, 1, 1, 'Gryphon Cloak'),
|
|
(24041, 15964, 0, 0, 0, 1, 1, 1, 1, 'Silksand Star'),
|
|
(24042, 1713, 0, 0, 0, 1, 1, 1, 1, 'Ankh of Life'),
|
|
(24042, 1715, 0, 0, 0, 1, 1, 1, 1, 'Polished Jazeraint Armor'),
|
|
(24042, 2815, 0, 0, 0, 1, 1, 1, 1, 'Curve-bladed Ripper'),
|
|
(24042, 9359, 0, 0, 0, 1, 1, 1, 1, 'Wirt\'s Third Leg'),
|
|
(24042, 13026, 0, 0, 0, 1, 1, 1, 1, 'Heaven\'s Light'),
|
|
(24042, 13051, 0, 0, 0, 1, 1, 1, 1, 'Witchfury'),
|
|
(24042, 13058, 0, 0, 0, 1, 1, 1, 1, 'Khoo\'s Point'),
|
|
(24042, 13071, 0, 0, 0, 1, 1, 1, 1, 'Plated Fist of Hakoo'),
|
|
(24042, 13095, 0, 0, 0, 1, 1, 1, 1, 'Assault Band'),
|
|
(24042, 13100, 0, 0, 0, 1, 1, 1, 1, 'Furen\'s Boots'),
|
|
(24042, 13115, 0, 0, 0, 1, 1, 1, 1, 'Sheepshear Mantle'),
|
|
(24042, 13145, 0, 0, 0, 1, 1, 1, 1, 'Enormous Ogre Belt'),
|
|
(24043, 1608, 0, 0, 0, 1, 1, 1, 1, 'Skullcrusher Mace'),
|
|
(24043, 1994, 0, 0, 0, 1, 1, 1, 1, 'Ebonclaw Reaver'),
|
|
(24043, 4069, 0, 0, 0, 1, 1, 1, 1, 'Blackforge Buckler'),
|
|
(24043, 4082, 0, 0, 0, 1, 1, 1, 1, 'Blackforge Breastplate'),
|
|
(24043, 4084, 0, 0, 0, 1, 1, 1, 1, 'Blackforge Leggings'),
|
|
(24043, 4088, 0, 0, 0, 1, 1, 1, 1, 'Dreadblade'),
|
|
(24043, 4733, 0, 0, 0, 1, 1, 1, 1, 'Blackforge Pauldrons'),
|
|
(24043, 6427, 0, 0, 0, 1, 1, 1, 1, 'Mistscape Robe'),
|
|
(24043, 6430, 0, 0, 0, 1, 1, 1, 1, 'Imperial Leather Breastplate'),
|
|
(24043, 7113, 0, 0, 0, 1, 1, 1, 1, 'Mistscape Armor'),
|
|
(24043, 7519, 0, 0, 0, 1, 1, 1, 1, 'Gossamer Pants'),
|
|
(24043, 7520, 0, 0, 0, 1, 1, 1, 1, 'Gossamer Headpiece'),
|
|
(24043, 7521, 0, 0, 0, 1, 1, 1, 1, 'Gossamer Gloves'),
|
|
(24043, 7523, 0, 0, 0, 1, 1, 1, 1, 'Gossamer Shoulderpads'),
|
|
(24043, 7526, 0, 0, 0, 1, 1, 1, 1, 'Gossamer Belt'),
|
|
(24043, 7529, 0, 0, 0, 1, 1, 1, 1, 'Cabalist Helm'),
|
|
(24043, 7530, 0, 0, 0, 1, 1, 1, 1, 'Cabalist Gloves'),
|
|
(24043, 7531, 0, 0, 0, 1, 1, 1, 1, 'Cabalist Boots'),
|
|
(24043, 7532, 0, 0, 0, 1, 1, 1, 1, 'Cabalist Spaulders'),
|
|
(24043, 7535, 0, 0, 0, 1, 1, 1, 1, 'Cabalist Belt'),
|
|
(24043, 7540, 0, 0, 0, 1, 1, 1, 1, 'Champion\'s Helmet'),
|
|
(24043, 7541, 0, 0, 0, 1, 1, 1, 1, 'Champion\'s Gauntlets'),
|
|
(24043, 7542, 0, 0, 0, 1, 1, 1, 1, 'Champion\'s Greaves'),
|
|
(24043, 7543, 0, 0, 0, 1, 1, 1, 1, 'Champion\'s Pauldrons'),
|
|
(24043, 7546, 0, 0, 0, 1, 1, 1, 1, 'Champion\'s Girdle'),
|
|
(24043, 7611, 0, 0, 0, 1, 1, 1, 1, 'Mistscape Stave'),
|
|
(24043, 8107, 0, 0, 0, 1, 1, 1, 1, 'Hibernal Boots'),
|
|
(24043, 8108, 0, 0, 0, 1, 1, 1, 1, 'Hibernal Bracers'),
|
|
(24043, 8109, 0, 0, 0, 1, 1, 1, 1, 'Hibernal Cloak'),
|
|
(24043, 8110, 0, 0, 0, 1, 1, 1, 1, 'Hibernal Gloves'),
|
|
(24043, 8114, 0, 0, 0, 1, 1, 1, 1, 'Hibernal Sash'),
|
|
(24043, 8116, 0, 0, 0, 1, 1, 1, 1, 'Heraldic Belt'),
|
|
(24043, 8117, 0, 0, 0, 1, 1, 1, 1, 'Heraldic Boots'),
|
|
(24043, 8118, 0, 0, 0, 1, 1, 1, 1, 'Heraldic Bracers'),
|
|
(24043, 8121, 0, 0, 0, 1, 1, 1, 1, 'Heraldic Gloves'),
|
|
(24043, 8127, 0, 0, 0, 1, 1, 1, 1, 'Myrmidon\'s Cape'),
|
|
(24043, 8135, 0, 0, 0, 1, 1, 1, 1, 'Chromite Shield'),
|
|
(24043, 8138, 0, 0, 0, 1, 1, 1, 1, 'Chromite Chestplate'),
|
|
(24043, 8143, 0, 0, 0, 1, 1, 1, 1, 'Chromite Legplates'),
|
|
(24043, 8199, 0, 0, 0, 1, 1, 1, 1, 'Battlefield Destroyer'),
|
|
(24043, 8273, 0, 0, 0, 1, 1, 1, 1, 'Valorous Wristguards'),
|
|
(24043, 8276, 0, 0, 0, 1, 1, 1, 1, 'Valorous Gauntlets'),
|
|
(24043, 8277, 0, 0, 0, 1, 1, 1, 1, 'Valorous Girdle'),
|
|
(24043, 8278, 0, 0, 0, 1, 1, 1, 1, 'Valorous Greaves'),
|
|
(24043, 9911, 0, 0, 0, 1, 1, 1, 1, 'Royal Trousers'),
|
|
(24043, 9922, 0, 0, 0, 1, 1, 1, 1, 'Tracker\'s Leggings'),
|
|
(24043, 9951, 0, 0, 0, 1, 1, 1, 1, 'Chieftain\'s Cloak'),
|
|
(24043, 9956, 0, 0, 0, 1, 1, 1, 1, 'Warmonger\'s Bracers'),
|
|
(24043, 9960, 0, 0, 0, 1, 1, 1, 1, 'Warmonger\'s Gauntlets'),
|
|
(24043, 9961, 0, 0, 0, 1, 1, 1, 1, 'Warmonger\'s Belt'),
|
|
(24043, 10087, 0, 0, 0, 1, 1, 1, 1, 'Gothic Plate Gauntlets'),
|
|
(24043, 10090, 0, 0, 0, 1, 1, 1, 1, 'Gothic Plate Helmet'),
|
|
(24043, 10091, 0, 0, 0, 1, 1, 1, 1, 'Gothic Plate Leggings'),
|
|
(24043, 10092, 0, 0, 0, 1, 1, 1, 1, 'Gothic Plate Spaulders'),
|
|
(24043, 11974, 0, 0, 0, 1, 1, 1, 1, 'Aquamarine Ring'),
|
|
(24043, 11988, 0, 0, 0, 1, 1, 1, 1, 'Tellurium Band'),
|
|
(24043, 11999, 0, 0, 0, 1, 1, 1, 1, 'Lodestone Hoop'),
|
|
(24043, 12043, 0, 0, 0, 1, 1, 1, 1, 'Desert Choker'),
|
|
(24043, 14237, 0, 0, 0, 1, 1, 1, 1, 'Darkmist Armor'),
|
|
(24043, 14244, 0, 0, 0, 1, 1, 1, 1, 'Darkmist Wraps'),
|
|
(24043, 14249, 0, 0, 0, 1, 1, 1, 1, 'Lunar Vest'),
|
|
(24043, 14254, 0, 0, 0, 1, 1, 1, 1, 'Lunar Raiment'),
|
|
(24043, 14259, 0, 0, 0, 1, 1, 1, 1, 'Bloodwoven Boots'),
|
|
(24043, 14266, 0, 0, 0, 1, 1, 1, 1, 'Bloodwoven Pads'),
|
|
(24043, 14268, 0, 0, 0, 1, 1, 1, 1, 'Gaea\'s Cuffs'),
|
|
(24043, 14269, 0, 0, 0, 1, 1, 1, 1, 'Gaea\'s Slippers'),
|
|
(24043, 14272, 0, 0, 0, 1, 1, 1, 1, 'Gaea\'s Handwraps'),
|
|
(24043, 14276, 0, 0, 0, 1, 1, 1, 1, 'Gaea\'s Belt'),
|
|
(24043, 14433, 0, 0, 0, 1, 1, 1, 1, 'Windchaser Woolies'),
|
|
(24043, 14436, 0, 0, 0, 1, 1, 1, 1, 'Windchaser Coronet'),
|
|
(24043, 14439, 0, 0, 0, 1, 1, 1, 1, 'Venomshroud Armguards'),
|
|
(24043, 14440, 0, 0, 0, 1, 1, 1, 1, 'Venomshroud Cape'),
|
|
(24043, 14653, 0, 0, 0, 1, 1, 1, 1, 'Scorpashi Slippers'),
|
|
(24043, 14657, 0, 0, 0, 1, 1, 1, 1, 'Scorpashi Gloves'),
|
|
(24043, 14659, 0, 0, 0, 1, 1, 1, 1, 'Scorpashi Leggings'),
|
|
(24043, 14660, 0, 0, 0, 1, 1, 1, 1, 'Scorpashi Shoulder Pads'),
|
|
(24043, 14783, 0, 0, 0, 1, 1, 1, 1, 'Khan\'s Belt'),
|
|
(24043, 14784, 0, 0, 0, 1, 1, 1, 1, 'Khan\'s Greaves'),
|
|
(24043, 14786, 0, 0, 0, 1, 1, 1, 1, 'Khan\'s Legguards'),
|
|
(24043, 14787, 0, 0, 0, 1, 1, 1, 1, 'Khan\'s Mantle'),
|
|
(24043, 14840, 0, 0, 0, 1, 1, 1, 1, 'Tyrant\'s Legplates'),
|
|
(24043, 14843, 0, 0, 0, 1, 1, 1, 1, 'Tyrant\'s Helm'),
|
|
(24043, 14911, 0, 0, 0, 1, 1, 1, 1, 'Brutish Boots'),
|
|
(24043, 14914, 0, 0, 0, 1, 1, 1, 1, 'Jade Bracers'),
|
|
(24043, 14918, 0, 0, 0, 1, 1, 1, 1, 'Jade Belt'),
|
|
(24043, 14939, 0, 0, 0, 1, 1, 1, 1, 'Warbringer\'s Chestguard'),
|
|
(24043, 14947, 0, 0, 0, 1, 1, 1, 1, 'Warbringer\'s Shield'),
|
|
(24043, 14949, 0, 0, 0, 1, 1, 1, 1, 'Bloodforged Gauntlets'),
|
|
(24043, 14950, 0, 0, 0, 1, 1, 1, 1, 'Bloodforged Belt'),
|
|
(24043, 14951, 0, 0, 0, 1, 1, 1, 1, 'Bloodforged Sabatons'),
|
|
(24043, 14955, 0, 0, 0, 1, 1, 1, 1, 'Bloodforged Shoulder Pads'),
|
|
(24043, 15164, 0, 0, 0, 1, 1, 1, 1, 'Imposing Vest'),
|
|
(24043, 15172, 0, 0, 0, 1, 1, 1, 1, 'Potent Bands'),
|
|
(24043, 15173, 0, 0, 0, 1, 1, 1, 1, 'Potent Cape'),
|
|
(24043, 15178, 0, 0, 0, 1, 1, 1, 1, 'Potent Belt'),
|
|
(24043, 15262, 0, 0, 0, 1, 1, 1, 1, 'Greater Maul'),
|
|
(24043, 15270, 0, 0, 0, 1, 1, 1, 1, 'Gigantic War Axe'),
|
|
(24043, 15373, 0, 0, 0, 1, 1, 1, 1, 'Wolf Rider\'s Headgear'),
|
|
(24043, 15376, 0, 0, 0, 1, 1, 1, 1, 'Wolf Rider\'s Padded Armor'),
|
|
(24043, 15378, 0, 0, 0, 1, 1, 1, 1, 'Rageclaw Belt'),
|
|
(24043, 15380, 0, 0, 0, 1, 1, 1, 1, 'Rageclaw Bracers'),
|
|
(24043, 15601, 0, 0, 0, 1, 1, 1, 1, 'Ancient Chestpiece'),
|
|
(24043, 15604, 0, 0, 0, 1, 1, 1, 1, 'Ancient Defender'),
|
|
(24043, 15609, 0, 0, 0, 1, 1, 1, 1, 'Bonelink Armor'),
|
|
(24043, 15615, 0, 0, 0, 1, 1, 1, 1, 'Bonelink Helmet'),
|
|
(24043, 15616, 0, 0, 0, 1, 1, 1, 1, 'Bonelink Legplates'),
|
|
(24043, 15618, 0, 0, 0, 1, 1, 1, 1, 'Bonelink Wall Shield'),
|
|
(24043, 15620, 0, 0, 0, 1, 1, 1, 1, 'Gryphon Mail Bracelets'),
|
|
(24043, 15625, 0, 0, 0, 1, 1, 1, 1, 'Gryphon Mail Gauntlets'),
|
|
(24043, 15626, 0, 0, 0, 1, 1, 1, 1, 'Gryphon Mail Greaves'),
|
|
(24043, 15632, 0, 0, 0, 1, 1, 1, 1, 'Formidable Cape'),
|
|
(24043, 15980, 0, 0, 0, 1, 1, 1, 1, 'Darkmist Orb'),
|
|
(24043, 15981, 0, 0, 0, 1, 1, 1, 1, 'Lunar Sphere'),
|
|
(24044, 754, 0, 0, 0, 1, 1, 1, 1, 'Shortsword of Vengeance'),
|
|
(24044, 1720, 0, 0, 0, 1, 1, 1, 1, 'Tanglewood Staff'),
|
|
(24044, 4090, 0, 0, 0, 1, 1, 1, 1, 'Mug O\' Hurt'),
|
|
(24044, 4091, 0, 0, 0, 1, 1, 1, 1, 'Widowmaker'),
|
|
(24044, 9433, 0, 0, 0, 1, 1, 1, 1, 'Forgotten Wraps'),
|
|
(24044, 13021, 0, 0, 0, 1, 1, 1, 1, 'Needle Threader'),
|
|
(24044, 13074, 0, 0, 0, 1, 1, 1, 1, 'Golem Shard Leggings'),
|
|
(24044, 13082, 0, 0, 0, 1, 1, 1, 1, 'Mountainside Buckler'),
|
|
(24044, 13102, 0, 0, 0, 1, 1, 1, 1, 'Cassandra\'s Grace'),
|
|
(24044, 13128, 0, 0, 0, 1, 1, 1, 1, 'High Bergg Helm'),
|
|
(24045, 1639, 0, 0, 0, 1, 1, 1, 1, 'Grinning Axe'),
|
|
(24045, 3208, 0, 0, 0, 1, 1, 1, 1, 'Conk Hammer'),
|
|
(24045, 4089, 0, 0, 0, 1, 1, 1, 1, 'Ricochet Blunderbuss'),
|
|
(24045, 7528, 0, 0, 0, 1, 1, 1, 1, 'Cabalist Leggings'),
|
|
(24045, 7536, 0, 0, 0, 1, 1, 1, 1, 'Champion\'s Wall Shield'),
|
|
(24045, 7537, 0, 0, 0, 1, 1, 1, 1, 'Gothic Shield'),
|
|
(24045, 7538, 0, 0, 0, 1, 1, 1, 1, 'Champion\'s Armor'),
|
|
(24045, 7539, 0, 0, 0, 1, 1, 1, 1, 'Champion\'s Leggings'),
|
|
(24045, 7553, 0, 0, 0, 1, 1, 1, 1, 'Band of the Unicorn'),
|
|
(24045, 8111, 0, 0, 0, 1, 1, 1, 1, 'Hibernal Mantle'),
|
|
(24045, 8112, 0, 0, 0, 1, 1, 1, 1, 'Hibernal Pants'),
|
|
(24045, 8115, 0, 0, 0, 1, 1, 1, 1, 'Hibernal Cowl'),
|
|
(24045, 8122, 0, 0, 0, 1, 1, 1, 1, 'Heraldic Headpiece'),
|
|
(24045, 8123, 0, 0, 0, 1, 1, 1, 1, 'Heraldic Leggings'),
|
|
(24045, 8124, 0, 0, 0, 1, 1, 1, 1, 'Heraldic Spaulders'),
|
|
(24045, 8125, 0, 0, 0, 1, 1, 1, 1, 'Myrmidon\'s Bracers'),
|
|
(24045, 8128, 0, 0, 0, 1, 1, 1, 1, 'Myrmidon\'s Gauntlets'),
|
|
(24045, 8129, 0, 0, 0, 1, 1, 1, 1, 'Myrmidon\'s Girdle'),
|
|
(24045, 8130, 0, 0, 0, 1, 1, 1, 1, 'Myrmidon\'s Greaves'),
|
|
(24045, 8279, 0, 0, 0, 1, 1, 1, 1, 'Valorous Helm'),
|
|
(24045, 8280, 0, 0, 0, 1, 1, 1, 1, 'Valorous Legguards'),
|
|
(24045, 8281, 0, 0, 0, 1, 1, 1, 1, 'Valorous Pauldrons'),
|
|
(24045, 9905, 0, 0, 0, 1, 1, 1, 1, 'Royal Blouse'),
|
|
(24045, 9913, 0, 0, 0, 1, 1, 1, 1, 'Royal Gown'),
|
|
(24045, 9914, 0, 0, 0, 1, 1, 1, 1, 'Royal Scepter'),
|
|
(24045, 9924, 0, 0, 0, 1, 1, 1, 1, 'Tracker\'s Tunic'),
|
|
(24045, 9936, 0, 0, 0, 1, 1, 1, 1, 'Abjurer\'s Boots'),
|
|
(24045, 9937, 0, 0, 0, 1, 1, 1, 1, 'Abjurer\'s Bands'),
|
|
(24045, 9938, 0, 0, 0, 1, 1, 1, 1, 'Abjurer\'s Cloak'),
|
|
(24045, 9939, 0, 0, 0, 1, 1, 1, 1, 'Abjurer\'s Gloves'),
|
|
(24045, 9941, 0, 0, 0, 1, 1, 1, 1, 'Abjurer\'s Mantle'),
|
|
(24045, 9945, 0, 0, 0, 1, 1, 1, 1, 'Abjurer\'s Sash'),
|
|
(24045, 9947, 0, 0, 0, 1, 1, 1, 1, 'Chieftain\'s Belt'),
|
|
(24045, 9948, 0, 0, 0, 1, 1, 1, 1, 'Chieftain\'s Boots'),
|
|
(24045, 9949, 0, 0, 0, 1, 1, 1, 1, 'Chieftain\'s Bracers'),
|
|
(24045, 9952, 0, 0, 0, 1, 1, 1, 1, 'Chieftain\'s Gloves'),
|
|
(24045, 9962, 0, 0, 0, 1, 1, 1, 1, 'Warmonger\'s Greaves'),
|
|
(24045, 9963, 0, 0, 0, 1, 1, 1, 1, 'Warmonger\'s Circlet'),
|
|
(24045, 9964, 0, 0, 0, 1, 1, 1, 1, 'Warmonger\'s Leggings'),
|
|
(24045, 9965, 0, 0, 0, 1, 1, 1, 1, 'Warmonger\'s Pauldrons'),
|
|
(24045, 10060, 0, 0, 0, 1, 1, 1, 1, 'Duskwoven Cape'),
|
|
(24045, 10066, 0, 0, 0, 1, 1, 1, 1, 'Duskwoven Sash'),
|
|
(24045, 10067, 0, 0, 0, 1, 1, 1, 1, 'Righteous Waistguard'),
|
|
(24045, 10069, 0, 0, 0, 1, 1, 1, 1, 'Righteous Bracers'),
|
|
(24045, 10071, 0, 0, 0, 1, 1, 1, 1, 'Righteous Cloak'),
|
|
(24045, 10076, 0, 0, 0, 1, 1, 1, 1, 'Lord\'s Armguards'),
|
|
(24045, 10079, 0, 0, 0, 1, 1, 1, 1, 'Lord\'s Cape'),
|
|
(24045, 10086, 0, 0, 0, 1, 1, 1, 1, 'Gothic Plate Armor'),
|
|
(24045, 10127, 0, 0, 0, 1, 1, 1, 1, 'Revenant Bracers'),
|
|
(24045, 10201, 0, 0, 0, 1, 1, 1, 1, 'Overlord\'s Greaves'),
|
|
(24045, 10202, 0, 0, 0, 1, 1, 1, 1, 'Overlord\'s Vambraces'),
|
|
(24045, 10205, 0, 0, 0, 1, 1, 1, 1, 'Overlord\'s Gauntlets'),
|
|
(24045, 10206, 0, 0, 0, 1, 1, 1, 1, 'Overlord\'s Girdle'),
|
|
(24045, 10207, 0, 0, 0, 1, 1, 1, 1, 'Overlord\'s Crown'),
|
|
(24045, 11975, 0, 0, 0, 1, 1, 1, 1, 'Topaz Ring'),
|
|
(24045, 12013, 0, 0, 0, 1, 1, 1, 1, 'Desert Ring'),
|
|
(24045, 12032, 0, 0, 0, 1, 1, 1, 1, 'Onyx Choker'),
|
|
(24045, 14263, 0, 0, 0, 1, 1, 1, 1, 'Bloodwoven Mask'),
|
|
(24045, 14264, 0, 0, 0, 1, 1, 1, 1, 'Bloodwoven Pants'),
|
|
(24045, 14271, 0, 0, 0, 1, 1, 1, 1, 'Gaea\'s Circlet'),
|
|
(24045, 14273, 0, 0, 0, 1, 1, 1, 1, 'Gaea\'s Amice'),
|
|
(24045, 14279, 0, 0, 0, 1, 1, 1, 1, 'Opulent Bracers'),
|
|
(24045, 14280, 0, 0, 0, 1, 1, 1, 1, 'Opulent Cape'),
|
|
(24045, 14292, 0, 0, 0, 1, 1, 1, 1, 'Arachnidian Cape'),
|
|
(24045, 14427, 0, 0, 0, 1, 1, 1, 1, 'Windchaser Wraps'),
|
|
(24045, 14434, 0, 0, 0, 1, 1, 1, 1, 'Windchaser Robes'),
|
|
(24045, 14438, 0, 0, 0, 1, 1, 1, 1, 'Venomshroud Boots'),
|
|
(24045, 14442, 0, 0, 0, 1, 1, 1, 1, 'Venomshroud Mitts'),
|
|
(24045, 14443, 0, 0, 0, 1, 1, 1, 1, 'Venomshroud Mantle'),
|
|
(24045, 14446, 0, 0, 0, 1, 1, 1, 1, 'Venomshroud Belt'),
|
|
(24045, 14655, 0, 0, 0, 1, 1, 1, 1, 'Scorpashi Breastplate'),
|
|
(24045, 14658, 0, 0, 0, 1, 1, 1, 1, 'Scorpashi Skullcap'),
|
|
(24045, 14661, 0, 0, 0, 1, 1, 1, 1, 'Keeper\'s Cord'),
|
|
(24045, 14663, 0, 0, 0, 1, 1, 1, 1, 'Keeper\'s Bindings'),
|
|
(24045, 14665, 0, 0, 0, 1, 1, 1, 1, 'Keeper\'s Cloak'),
|
|
(24045, 14779, 0, 0, 0, 1, 1, 1, 1, 'Khan\'s Chestpiece'),
|
|
(24045, 14780, 0, 0, 0, 1, 1, 1, 1, 'Khan\'s Buckler'),
|
|
(24045, 14785, 0, 0, 0, 1, 1, 1, 1, 'Khan\'s Helmet'),
|
|
(24045, 14788, 0, 0, 0, 1, 1, 1, 1, 'Protector Armguards'),
|
|
(24045, 14791, 0, 0, 0, 1, 1, 1, 1, 'Protector Cape'),
|
|
(24045, 14835, 0, 0, 0, 1, 1, 1, 1, 'Tyrant\'s Chestpiece'),
|
|
(24045, 14842, 0, 0, 0, 1, 1, 1, 1, 'Tyrant\'s Shield'),
|
|
(24045, 14847, 0, 0, 0, 1, 1, 1, 1, 'Sunscale Belt'),
|
|
(24045, 14853, 0, 0, 0, 1, 1, 1, 1, 'Sunscale Wristguards'),
|
|
(24045, 14907, 0, 0, 0, 1, 1, 1, 1, 'Brutish Helmet'),
|
|
(24045, 14908, 0, 0, 0, 1, 1, 1, 1, 'Brutish Legguards'),
|
|
(24045, 14913, 0, 0, 0, 1, 1, 1, 1, 'Jade Greaves'),
|
|
(24045, 14917, 0, 0, 0, 1, 1, 1, 1, 'Jade Gauntlets'),
|
|
(24045, 14921, 0, 0, 0, 1, 1, 1, 1, 'Jade Epaulets'),
|
|
(24045, 14953, 0, 0, 0, 1, 1, 1, 1, 'Bloodforged Legplates'),
|
|
(24045, 14965, 0, 0, 0, 1, 1, 1, 1, 'High Chief\'s Bindings'),
|
|
(24045, 15167, 0, 0, 0, 1, 1, 1, 1, 'Imposing Bandana'),
|
|
(24045, 15177, 0, 0, 0, 1, 1, 1, 1, 'Potent Shoulders'),
|
|
(24045, 15227, 0, 0, 0, 1, 1, 1, 1, 'Diamond-Tip Bludgeon'),
|
|
(24045, 15235, 0, 0, 0, 1, 1, 1, 1, 'Crescent Edge'),
|
|
(24045, 15252, 0, 0, 0, 1, 1, 1, 1, 'Tusker Sword'),
|
|
(24045, 15379, 0, 0, 0, 1, 1, 1, 1, 'Rageclaw Boots'),
|
|
(24045, 15383, 0, 0, 0, 1, 1, 1, 1, 'Rageclaw Gloves'),
|
|
(24045, 15385, 0, 0, 0, 1, 1, 1, 1, 'Rageclaw Leggings'),
|
|
(24045, 15386, 0, 0, 0, 1, 1, 1, 1, 'Rageclaw Shoulder Pads'),
|
|
(24045, 15392, 0, 0, 0, 1, 1, 1, 1, 'Jadefire Cloak'),
|
|
(24045, 15619, 0, 0, 0, 1, 1, 1, 1, 'Gryphon Mail Belt'),
|
|
(24045, 15628, 0, 0, 0, 1, 1, 1, 1, 'Gryphon Mail Pauldrons'),
|
|
(24045, 15629, 0, 0, 0, 1, 1, 1, 1, 'Formidable Bracers'),
|
|
(24045, 15630, 0, 0, 0, 1, 1, 1, 1, 'Formidable Sabatons'),
|
|
(24045, 15635, 0, 0, 0, 1, 1, 1, 1, 'Formidable Gauntlets'),
|
|
(24045, 15636, 0, 0, 0, 1, 1, 1, 1, 'Formidable Belt'),
|
|
(24045, 15638, 0, 0, 0, 1, 1, 1, 1, 'Formidable Shoulder Pads'),
|
|
(24045, 15643, 0, 0, 0, 1, 1, 1, 1, 'Ironhide Cloak'),
|
|
(24045, 15965, 0, 0, 0, 1, 1, 1, 1, 'Windchaser Orb'),
|
|
(24046, 13018, 0, 0, 0, 1, 1, 1, 1, 'Executioner\'s Cleaver'),
|
|
(24046, 13035, 0, 0, 0, 1, 1, 1, 1, 'Serpent Slicer'),
|
|
(24046, 13039, 0, 0, 0, 1, 1, 1, 1, 'Skull Splitting Crossbow'),
|
|
(24046, 13043, 0, 0, 0, 1, 1, 1, 1, 'Blade of the Titans'),
|
|
(24046, 13055, 0, 0, 0, 1, 1, 1, 1, 'Bonechewer'),
|
|
(24046, 13076, 0, 0, 0, 1, 1, 1, 1, 'Giantslayer Bracers'),
|
|
(24046, 13089, 0, 0, 0, 1, 1, 1, 1, 'Skibi\'s Pendant'),
|
|
(24046, 13109, 0, 0, 0, 1, 1, 1, 1, 'Blackflame Cape'),
|
|
(24046, 13112, 0, 0, 0, 1, 1, 1, 1, 'Winged Helm'),
|
|
(24046, 13134, 0, 0, 0, 1, 1, 1, 1, 'Belt of the Gladiator'),
|
|
(24047, 1529, 0, 0, 0, 1, 1, 1, 1, 'Jade'),
|
|
(24047, 1705, 0, 0, 0, 1, 1, 1, 1, 'Lesser Moonstone'),
|
|
(24047, 3779, 0, 0, 0, 1, 1, 1, 1, 'Hefty War Axe'),
|
|
(24047, 3780, 0, 0, 0, 1, 1, 1, 1, 'Long-barreled Musket'),
|
|
(24047, 3781, 0, 0, 0, 1, 1, 1, 1, 'Broad Claymore'),
|
|
(24047, 3782, 0, 0, 0, 1, 1, 1, 1, 'Large War Club'),
|
|
(24047, 3783, 0, 0, 0, 1, 1, 1, 1, 'Light Scimitar'),
|
|
(24047, 3784, 0, 0, 0, 1, 1, 1, 1, 'Metal Stave'),
|
|
(24047, 3785, 0, 0, 0, 1, 1, 1, 1, 'Keen Axe'),
|
|
(24047, 3786, 0, 0, 0, 1, 1, 1, 1, 'Shiny Dirk'),
|
|
(24047, 3787, 0, 0, 0, 1, 1, 1, 1, 'Stone Club'),
|
|
(24047, 3792, 0, 0, 0, 1, 1, 1, 1, 'Interlaced Belt'),
|
|
(24047, 3793, 0, 0, 0, 1, 1, 1, 1, 'Interlaced Boots'),
|
|
(24047, 3794, 0, 0, 0, 1, 1, 1, 1, 'Interlaced Bracers'),
|
|
(24047, 3795, 0, 0, 0, 1, 1, 1, 1, 'Interlaced Cloak'),
|
|
(24047, 3796, 0, 0, 0, 1, 1, 1, 1, 'Interlaced Gloves'),
|
|
(24047, 3797, 0, 0, 0, 1, 1, 1, 1, 'Interlaced Pants'),
|
|
(24047, 3798, 0, 0, 0, 1, 1, 1, 1, 'Interlaced Shoulderpads'),
|
|
(24047, 3799, 0, 0, 0, 1, 1, 1, 1, 'Interlaced Vest'),
|
|
(24047, 3800, 0, 0, 0, 1, 1, 1, 1, 'Hardened Leather Belt'),
|
|
(24047, 3801, 0, 0, 0, 1, 1, 1, 1, 'Hardened Leather Boots'),
|
|
(24047, 3802, 0, 0, 0, 1, 1, 1, 1, 'Hardened Leather Bracers'),
|
|
(24047, 3803, 0, 0, 0, 1, 1, 1, 1, 'Hardened Cloak'),
|
|
(24047, 3804, 0, 0, 0, 1, 1, 1, 1, 'Hardened Leather Gloves'),
|
|
(24047, 3805, 0, 0, 0, 1, 1, 1, 1, 'Hardened Leather Pants'),
|
|
(24047, 3806, 0, 0, 0, 1, 1, 1, 1, 'Hardened Leather Shoulderpads'),
|
|
(24047, 3807, 0, 0, 0, 1, 1, 1, 1, 'Hardened Leather Tunic'),
|
|
(24047, 3808, 0, 0, 0, 1, 1, 1, 1, 'Double Mail Belt'),
|
|
(24047, 3809, 0, 0, 0, 1, 1, 1, 1, 'Double Mail Boots'),
|
|
(24047, 3810, 0, 0, 0, 1, 1, 1, 1, 'Double Mail Bracers'),
|
|
(24047, 3811, 0, 0, 0, 1, 1, 1, 1, 'Double-stitched Cloak'),
|
|
(24047, 3812, 0, 0, 0, 1, 1, 1, 1, 'Double Mail Gloves'),
|
|
(24047, 3813, 0, 0, 0, 1, 1, 1, 1, 'Double Mail Pants'),
|
|
(24047, 3814, 0, 0, 0, 1, 1, 1, 1, 'Double Mail Shoulderpads'),
|
|
(24047, 3815, 0, 0, 0, 1, 1, 1, 1, 'Double Mail Vest'),
|
|
(24047, 3816, 0, 0, 0, 1, 1, 1, 1, 'Reflective Heater'),
|
|
(24047, 3817, 0, 0, 0, 1, 1, 1, 1, 'Reinforced Buckler'),
|
|
(24047, 8746, 0, 0, 0, 1, 1, 1, 1, 'Interlaced Cowl'),
|
|
(24047, 8747, 0, 0, 0, 1, 1, 1, 1, 'Hardened Leather Helm'),
|
|
(24048, 865, 0, 0, 0, 1, 1, 1, 1, 'Leaden Mace'),
|
|
(24048, 1206, 0, 0, 0, 1, 1, 1, 1, 'Moss Agate'),
|
|
(24048, 1297, 0, 0, 0, 1, 1, 1, 1, 'Robes of the Shadowcaster'),
|
|
(24048, 2234, 0, 0, 0, 1, 1, 1, 1, 'Nightwalker Armor'),
|
|
(24048, 3041, 0, 0, 0, 1, 1, 1, 1, '"Mage-Eye" Blunderbuss'),
|
|
(24048, 3186, 0, 0, 0, 1, 1, 1, 1, 'Viking Sword'),
|
|
(24048, 3210, 0, 0, 0, 1, 1, 1, 1, 'Brutal War Axe'),
|
|
(24048, 4035, 0, 0, 0, 1, 1, 1, 1, 'Silver-thread Robe'),
|
|
(24048, 4037, 0, 0, 0, 1, 1, 1, 1, 'Silver-thread Pants'),
|
|
(24048, 4048, 0, 0, 0, 1, 1, 1, 1, 'Emblazoned Hat'),
|
|
(24048, 4050, 0, 0, 0, 1, 1, 1, 1, 'Emblazoned Leggings'),
|
|
(24048, 4051, 0, 0, 0, 1, 1, 1, 1, 'Emblazoned Boots'),
|
|
(24048, 4064, 0, 0, 0, 1, 1, 1, 1, 'Emblazoned Buckler'),
|
|
(24048, 4071, 0, 0, 0, 1, 1, 1, 1, 'Glimmering Mail Breastplate'),
|
|
(24048, 4072, 0, 0, 0, 1, 1, 1, 1, 'Glimmering Mail Gauntlets'),
|
|
(24048, 4073, 0, 0, 0, 1, 1, 1, 1, 'Glimmering Mail Greaves'),
|
|
(24048, 4462, 0, 0, 0, 1, 1, 1, 1, 'Cloak of Rot'),
|
|
(24048, 4724, 0, 0, 0, 1, 1, 1, 1, 'Humbert\'s Helm'),
|
|
(24048, 5002, 0, 0, 0, 1, 1, 1, 1, 'Glowing Green Talisman'),
|
|
(24048, 5003, 0, 0, 0, 1, 1, 1, 1, 'Crystal Starfire Medallion'),
|
|
(24048, 5007, 0, 0, 0, 1, 1, 1, 1, 'Band of Thorns'),
|
|
(24048, 6386, 0, 0, 0, 1, 1, 1, 1, 'Glimmering Mail Legguards'),
|
|
(24048, 6388, 0, 0, 0, 1, 1, 1, 1, 'Glimmering Mail Pauldrons'),
|
|
(24048, 6389, 0, 0, 0, 1, 1, 1, 1, 'Glimmering Mail Coif'),
|
|
(24048, 6399, 0, 0, 0, 1, 1, 1, 1, 'Emblazoned Shoulders'),
|
|
(24048, 6400, 0, 0, 0, 1, 1, 1, 1, 'Glimmering Shield'),
|
|
(24048, 6603, 0, 0, 0, 1, 1, 1, 1, 'Dervish Tunic'),
|
|
(24048, 6607, 0, 0, 0, 1, 1, 1, 1, 'Dervish Leggings'),
|
|
(24048, 6617, 0, 0, 0, 1, 1, 1, 1, 'Sage\'s Mantle'),
|
|
(24048, 7110, 0, 0, 0, 1, 1, 1, 1, 'Silver-thread Armor'),
|
|
(24048, 7355, 0, 0, 0, 1, 1, 1, 1, 'Elder\'s Bracers'),
|
|
(24048, 7356, 0, 0, 0, 1, 1, 1, 1, 'Elder\'s Cloak'),
|
|
(24048, 7370, 0, 0, 0, 1, 1, 1, 1, 'Elder\'s Sash'),
|
|
(24048, 7410, 0, 0, 0, 1, 1, 1, 1, 'Infiltrator Bracers'),
|
|
(24048, 7411, 0, 0, 0, 1, 1, 1, 1, 'Infiltrator Cloak'),
|
|
(24048, 7416, 0, 0, 0, 1, 1, 1, 1, 'Phalanx Bracers'),
|
|
(24048, 7419, 0, 0, 0, 1, 1, 1, 1, 'Phalanx Cloak'),
|
|
(24048, 9820, 0, 0, 0, 1, 1, 1, 1, 'Durable Boots'),
|
|
(24048, 9821, 0, 0, 0, 1, 1, 1, 1, 'Durable Bracers'),
|
|
(24048, 9823, 0, 0, 0, 1, 1, 1, 1, 'Durable Gloves'),
|
|
(24048, 9827, 0, 0, 0, 1, 1, 1, 1, 'Scaled Leather Belt'),
|
|
(24048, 9828, 0, 0, 0, 1, 1, 1, 1, 'Scaled Leather Boots'),
|
|
(24048, 9832, 0, 0, 0, 1, 1, 1, 1, 'Scaled Leather Gloves'),
|
|
(24048, 9837, 0, 0, 0, 1, 1, 1, 1, 'Banded Bracers'),
|
|
(24048, 9839, 0, 0, 0, 1, 1, 1, 1, 'Banded Gauntlets'),
|
|
(24048, 9840, 0, 0, 0, 1, 1, 1, 1, 'Banded Girdle'),
|
|
(24048, 10288, 0, 0, 0, 1, 1, 1, 1, 'Sage\'s Circlet'),
|
|
(24048, 10404, 0, 0, 0, 1, 1, 1, 1, 'Durable Belt'),
|
|
(24048, 12047, 0, 0, 0, 1, 1, 1, 1, 'Spectral Necklace'),
|
|
(24048, 14178, 0, 0, 0, 1, 1, 1, 1, 'Watcher\'s Cap'),
|
|
(24048, 14180, 0, 0, 0, 1, 1, 1, 1, 'Watcher\'s Jerkin'),
|
|
(24048, 14183, 0, 0, 0, 1, 1, 1, 1, 'Watcher\'s Leggings'),
|
|
(24048, 14184, 0, 0, 0, 1, 1, 1, 1, 'Watcher\'s Robes'),
|
|
(24048, 14190, 0, 0, 0, 1, 1, 1, 1, 'Raincaller Vest'),
|
|
(24048, 14191, 0, 0, 0, 1, 1, 1, 1, 'Raincaller Mitts'),
|
|
(24048, 14192, 0, 0, 0, 1, 1, 1, 1, 'Raincaller Robes'),
|
|
(24048, 14193, 0, 0, 0, 1, 1, 1, 1, 'Raincaller Pants'),
|
|
(24048, 14197, 0, 0, 0, 1, 1, 1, 1, 'Thistlefur Bands'),
|
|
(24048, 14198, 0, 0, 0, 1, 1, 1, 1, 'Thistlefur Cloak'),
|
|
(24048, 14399, 0, 0, 0, 1, 1, 1, 1, 'Resilient Boots'),
|
|
(24048, 14403, 0, 0, 0, 1, 1, 1, 1, 'Resilient Handgrips'),
|
|
(24048, 14406, 0, 0, 0, 1, 1, 1, 1, 'Resilient Cord'),
|
|
(24048, 14579, 0, 0, 0, 1, 1, 1, 1, 'Dokebi Boots'),
|
|
(24048, 14608, 0, 0, 0, 1, 1, 1, 1, 'Dokebi Buckler'),
|
|
(24048, 14758, 0, 0, 0, 1, 1, 1, 1, 'Slayer\'s Shoulderguards'),
|
|
(24048, 15127, 0, 0, 0, 1, 1, 1, 1, 'Robust Shoulders'),
|
|
(24048, 15128, 0, 0, 0, 1, 1, 1, 1, 'Robust Tunic'),
|
|
(24048, 15129, 0, 0, 0, 1, 1, 1, 1, 'Robust Helm'),
|
|
(24048, 15135, 0, 0, 0, 1, 1, 1, 1, 'Cutthroat\'s Cape'),
|
|
(24048, 15136, 0, 0, 0, 1, 1, 1, 1, 'Cutthroat\'s Belt'),
|
|
(24048, 15231, 0, 0, 0, 1, 1, 1, 1, 'Splitting Hatchet'),
|
|
(24048, 15242, 0, 0, 0, 1, 1, 1, 1, 'Honed Stiletto'),
|
|
(24048, 15341, 0, 0, 0, 1, 1, 1, 1, 'Pathfinder Footpads'),
|
|
(24048, 15342, 0, 0, 0, 1, 1, 1, 1, 'Pathfinder Guard'),
|
|
(24048, 15343, 0, 0, 0, 1, 1, 1, 1, 'Pathfinder Gloves'),
|
|
(24048, 15344, 0, 0, 0, 1, 1, 1, 1, 'Pathfinder Pants'),
|
|
(24048, 15345, 0, 0, 0, 1, 1, 1, 1, 'Pathfinder Shoulder Pads'),
|
|
(24048, 15351, 0, 0, 0, 1, 1, 1, 1, 'Headhunter\'s Bands'),
|
|
(24048, 15518, 0, 0, 0, 1, 1, 1, 1, 'Spiked Chain Breastplate'),
|
|
(24048, 15524, 0, 0, 0, 1, 1, 1, 1, 'Sentry\'s Surcoat'),
|
|
(24048, 15530, 0, 0, 0, 1, 1, 1, 1, 'Sentry\'s Shield'),
|
|
(24048, 15531, 0, 0, 0, 1, 1, 1, 1, 'Sentry\'s Shoulderguards'),
|
|
(24048, 15533, 0, 0, 0, 1, 1, 1, 1, 'Sentry\'s Headdress'),
|
|
(24048, 15534, 0, 0, 0, 1, 1, 1, 1, 'Wicked Chain Boots'),
|
|
(24048, 15538, 0, 0, 0, 1, 1, 1, 1, 'Wicked Chain Gauntlets'),
|
|
(24048, 15539, 0, 0, 0, 1, 1, 1, 1, 'Wicked Chain Waistband'),
|
|
(24048, 15545, 0, 0, 0, 1, 1, 1, 1, 'Thick Scale Bracelets'),
|
|
(24048, 15549, 0, 0, 0, 1, 1, 1, 1, 'Thick Scale Belt'),
|
|
(24048, 15559, 0, 0, 0, 1, 1, 1, 1, 'Pillager\'s Cloak'),
|
|
(24048, 15928, 0, 0, 0, 1, 1, 1, 1, 'Silver-thread Rod'),
|
|
(24048, 15973, 0, 0, 0, 1, 1, 1, 1, 'Watcher\'s Star'),
|
|
(24048, 15975, 0, 0, 0, 1, 1, 1, 1, 'Raincaller Scepter'),
|
|
(24049, 791, 0, 0, 0, 1, 1, 1, 1, 'Gnarled Ash Staff'),
|
|
(24049, 1717, 0, 0, 0, 1, 1, 1, 1, 'Double Link Tunic'),
|
|
(24049, 2278, 0, 0, 0, 1, 1, 1, 1, 'Forest Tracker Epaulets'),
|
|
(24049, 2878, 0, 0, 0, 1, 1, 1, 1, 'Bearded Boneaxe'),
|
|
(24049, 12974, 0, 0, 0, 1, 1, 1, 1, 'The Black Knight'),
|
|
(24049, 13048, 0, 0, 0, 1, 1, 1, 1, 'Looming Gavel'),
|
|
(24049, 13049, 0, 0, 0, 1, 1, 1, 1, 'Deanship Claymore'),
|
|
(24049, 13079, 0, 0, 0, 1, 1, 1, 1, 'Shield of Thorsen'),
|
|
(24049, 13094, 0, 0, 0, 1, 1, 1, 1, 'The Queen\'s Jewel'),
|
|
(24049, 13106, 0, 0, 0, 1, 1, 1, 1, 'Glowing Magical Bracelets'),
|
|
(24049, 13114, 0, 0, 0, 1, 1, 1, 1, 'Troll\'s Bane Leggings'),
|
|
(24050, 1998, 0, 0, 0, 1, 1, 1, 1, 'Bloodscalp Channeling Staff'),
|
|
(24050, 3042, 0, 0, 0, 1, 1, 1, 1, 'BKP "Sparrow" Smallbore'),
|
|
(24050, 3341, 0, 0, 0, 1, 1, 1, 1, 'Gauntlets of Ogre Strength'),
|
|
(24050, 4716, 0, 0, 0, 1, 1, 1, 1, 'Combat Cloak'),
|
|
(24050, 4719, 0, 0, 0, 1, 1, 1, 1, 'Nightsky Cloak'),
|
|
(24050, 4720, 0, 0, 0, 1, 1, 1, 1, 'Nightsky Sash'),
|
|
(24050, 4722, 0, 0, 0, 1, 1, 1, 1, 'Insignia Cloak'),
|
|
(24050, 5214, 0, 0, 0, 1, 1, 1, 1, 'Wand of Eventide'),
|
|
(24050, 6396, 0, 0, 0, 1, 1, 1, 1, 'Emblazoned Chestpiece'),
|
|
(24050, 6403, 0, 0, 0, 1, 1, 1, 1, 'Mail Combat Armguards'),
|
|
(24050, 6407, 0, 0, 0, 1, 1, 1, 1, 'Nightsky Wristbands'),
|
|
(24050, 6410, 0, 0, 0, 1, 1, 1, 1, 'Insignia Bracers'),
|
|
(24050, 6609, 0, 0, 0, 1, 1, 1, 1, 'Sage\'s Cloth'),
|
|
(24050, 6610, 0, 0, 0, 1, 1, 1, 1, 'Sage\'s Robe'),
|
|
(24050, 6616, 0, 0, 0, 1, 1, 1, 1, 'Sage\'s Pants'),
|
|
(24050, 7330, 0, 0, 0, 1, 1, 1, 1, 'Infiltrator Buckler'),
|
|
(24050, 7354, 0, 0, 0, 1, 1, 1, 1, 'Elder\'s Boots'),
|
|
(24050, 7366, 0, 0, 0, 1, 1, 1, 1, 'Elder\'s Gloves'),
|
|
(24050, 7367, 0, 0, 0, 1, 1, 1, 1, 'Elder\'s Mantle'),
|
|
(24050, 7406, 0, 0, 0, 1, 1, 1, 1, 'Infiltrator Cord'),
|
|
(24050, 7408, 0, 0, 0, 1, 1, 1, 1, 'Infiltrator Shoulders'),
|
|
(24050, 7409, 0, 0, 0, 1, 1, 1, 1, 'Infiltrator Boots'),
|
|
(24050, 7412, 0, 0, 0, 1, 1, 1, 1, 'Infiltrator Gloves'),
|
|
(24050, 7413, 0, 0, 0, 1, 1, 1, 1, 'Infiltrator Cap'),
|
|
(24050, 7420, 0, 0, 0, 1, 1, 1, 1, 'Phalanx Headguard'),
|
|
(24050, 7421, 0, 0, 0, 1, 1, 1, 1, 'Phalanx Gauntlets'),
|
|
(24050, 7422, 0, 0, 0, 1, 1, 1, 1, 'Phalanx Girdle'),
|
|
(24050, 7424, 0, 0, 0, 1, 1, 1, 1, 'Phalanx Spaulders'),
|
|
(24050, 9824, 0, 0, 0, 1, 1, 1, 1, 'Durable Shoulders'),
|
|
(24050, 9825, 0, 0, 0, 1, 1, 1, 1, 'Durable Pants'),
|
|
(24050, 9830, 0, 0, 0, 1, 1, 1, 1, 'Scaled Shield'),
|
|
(24050, 9833, 0, 0, 0, 1, 1, 1, 1, 'Scaled Leather Leggings'),
|
|
(24050, 9834, 0, 0, 0, 1, 1, 1, 1, 'Scaled Leather Shoulders'),
|
|
(24050, 9835, 0, 0, 0, 1, 1, 1, 1, 'Scaled Leather Tunic'),
|
|
(24050, 9836, 0, 0, 0, 1, 1, 1, 1, 'Banded Armor'),
|
|
(24050, 9841, 0, 0, 0, 1, 1, 1, 1, 'Banded Leggings'),
|
|
(24050, 9842, 0, 0, 0, 1, 1, 1, 1, 'Banded Pauldrons'),
|
|
(24050, 9843, 0, 0, 0, 1, 1, 1, 1, 'Banded Shield'),
|
|
(24050, 9847, 0, 0, 0, 1, 1, 1, 1, 'Conjurer\'s Cloak'),
|
|
(24050, 9867, 0, 0, 0, 1, 1, 1, 1, 'Renegade Cloak'),
|
|
(24050, 10289, 0, 0, 0, 1, 1, 1, 1, 'Durable Hat'),
|
|
(24050, 10406, 0, 0, 0, 1, 1, 1, 1, 'Scaled Leather Headband'),
|
|
(24050, 10408, 0, 0, 0, 1, 1, 1, 1, 'Banded Helm'),
|
|
(24050, 10409, 0, 0, 0, 1, 1, 1, 1, 'Banded Boots'),
|
|
(24050, 12009, 0, 0, 0, 1, 1, 1, 1, 'Tundra Ring'),
|
|
(24050, 12019, 0, 0, 0, 1, 1, 1, 1, 'Cerulean Talisman'),
|
|
(24050, 12028, 0, 0, 0, 1, 1, 1, 1, 'Basalt Necklace'),
|
|
(24050, 12039, 0, 0, 0, 1, 1, 1, 1, 'Tundra Necklace'),
|
|
(24050, 14189, 0, 0, 0, 1, 1, 1, 1, 'Raincaller Cap'),
|
|
(24050, 14196, 0, 0, 0, 1, 1, 1, 1, 'Thistlefur Sandals'),
|
|
(24050, 14199, 0, 0, 0, 1, 1, 1, 1, 'Thistlefur Gloves'),
|
|
(24050, 14205, 0, 0, 0, 1, 1, 1, 1, 'Thistlefur Belt'),
|
|
(24050, 14206, 0, 0, 0, 1, 1, 1, 1, 'Vital Bracelets'),
|
|
(24050, 14209, 0, 0, 0, 1, 1, 1, 1, 'Vital Sash'),
|
|
(24050, 14210, 0, 0, 0, 1, 1, 1, 1, 'Vital Cape'),
|
|
(24050, 14397, 0, 0, 0, 1, 1, 1, 1, 'Resilient Mantle'),
|
|
(24050, 14398, 0, 0, 0, 1, 1, 1, 1, 'Resilient Tunic'),
|
|
(24050, 14401, 0, 0, 0, 1, 1, 1, 1, 'Resilient Cap'),
|
|
(24050, 14404, 0, 0, 0, 1, 1, 1, 1, 'Resilient Leggings'),
|
|
(24050, 14405, 0, 0, 0, 1, 1, 1, 1, 'Resilient Robe'),
|
|
(24050, 14409, 0, 0, 0, 1, 1, 1, 1, 'Stonecloth Cape'),
|
|
(24050, 14581, 0, 0, 0, 1, 1, 1, 1, 'Dokebi Chestguard'),
|
|
(24050, 14583, 0, 0, 0, 1, 1, 1, 1, 'Dokebi Gloves'),
|
|
(24050, 14585, 0, 0, 0, 1, 1, 1, 1, 'Dokebi Leggings'),
|
|
(24050, 14587, 0, 0, 0, 1, 1, 1, 1, 'Dokebi Mantle'),
|
|
(24050, 14751, 0, 0, 0, 1, 1, 1, 1, 'Slayer\'s Surcoat'),
|
|
(24050, 14753, 0, 0, 0, 1, 1, 1, 1, 'Slayer\'s Skullcap'),
|
|
(24050, 14757, 0, 0, 0, 1, 1, 1, 1, 'Slayer\'s Pants'),
|
|
(24050, 14763, 0, 0, 0, 1, 1, 1, 1, 'Enduring Cape'),
|
|
(24050, 15131, 0, 0, 0, 1, 1, 1, 1, 'Cutthroat\'s Boots'),
|
|
(24050, 15133, 0, 0, 0, 1, 1, 1, 1, 'Cutthroat\'s Buckler'),
|
|
(24050, 15137, 0, 0, 0, 1, 1, 1, 1, 'Cutthroat\'s Mitts'),
|
|
(24050, 15139, 0, 0, 0, 1, 1, 1, 1, 'Cutthroat\'s Pants'),
|
|
(24050, 15143, 0, 0, 0, 1, 1, 1, 1, 'Ghostwalker Bindings'),
|
|
(24050, 15147, 0, 0, 0, 1, 1, 1, 1, 'Ghostwalker Cloak'),
|
|
(24050, 15225, 0, 0, 0, 1, 1, 1, 1, 'Sequoia Hammer'),
|
|
(24050, 15232, 0, 0, 0, 1, 1, 1, 1, 'Hacking Cleaver'),
|
|
(24050, 15250, 0, 0, 0, 1, 1, 1, 1, 'Glimmering Flamberge'),
|
|
(24050, 15285, 0, 0, 0, 1, 1, 1, 1, 'Archer\'s Longbow'),
|
|
(24050, 15346, 0, 0, 0, 1, 1, 1, 1, 'Pathfinder Vest'),
|
|
(24050, 15349, 0, 0, 0, 1, 1, 1, 1, 'Headhunter\'s Belt'),
|
|
(24050, 15354, 0, 0, 0, 1, 1, 1, 1, 'Headhunter\'s Cloak'),
|
|
(24050, 15541, 0, 0, 0, 1, 1, 1, 1, 'Wicked Chain Legguards'),
|
|
(24050, 15542, 0, 0, 0, 1, 1, 1, 1, 'Wicked Chain Shoulder Pads'),
|
|
(24050, 15544, 0, 0, 0, 1, 1, 1, 1, 'Thick Scale Sabatons'),
|
|
(24050, 15548, 0, 0, 0, 1, 1, 1, 1, 'Thick Scale Gauntlets'),
|
|
(24050, 15554, 0, 0, 0, 1, 1, 1, 1, 'Pillager\'s Girdle'),
|
|
(24050, 15555, 0, 0, 0, 1, 1, 1, 1, 'Pillager\'s Boots'),
|
|
(24050, 15556, 0, 0, 0, 1, 1, 1, 1, 'Pillager\'s Bracers'),
|
|
(24050, 15568, 0, 0, 0, 1, 1, 1, 1, 'Marauder\'s Cloak'),
|
|
(24050, 15892, 0, 0, 0, 1, 1, 1, 1, 'Slayer\'s Shield'),
|
|
(24050, 15934, 0, 0, 0, 1, 1, 1, 1, 'Sage\'s Stave'),
|
|
(24050, 15962, 0, 0, 0, 1, 1, 1, 1, 'Satyr\'s Rod'),
|
|
(24051, 2299, 0, 0, 0, 1, 1, 1, 1, 'Burning War Axe'),
|
|
(24051, 2721, 0, 0, 0, 1, 1, 1, 1, 'Holy Shroud'),
|
|
(24051, 2877, 0, 0, 0, 1, 1, 1, 1, 'Combatant Claymore'),
|
|
(24051, 2912, 0, 0, 0, 1, 1, 1, 1, 'Claw of the Shadowmancer'),
|
|
(24051, 3020, 0, 0, 0, 1, 1, 1, 1, 'Enduring Cap'),
|
|
(24051, 9405, 0, 0, 0, 1, 1, 1, 1, 'Girdle of Golem Strength'),
|
|
(24051, 13019, 0, 0, 0, 1, 1, 1, 1, 'Harpyclaw Short Bow'),
|
|
(24051, 13037, 0, 0, 0, 1, 1, 1, 1, 'Crystalpine Stinger'),
|
|
(24051, 13087, 0, 0, 0, 1, 1, 1, 1, 'River Pride Choker'),
|
|
(24051, 13127, 0, 0, 0, 1, 1, 1, 1, 'Frostreaver Crown'),
|
|
(24052, 1705, 0, 0, 0, 1, 1, 1, 1, 'Lesser Moonstone'),
|
|
(24052, 1725, 0, 0, 0, 1, 1, 1, 1, 'Large Knapsack'),
|
|
(24052, 1997, 0, 0, 0, 1, 1, 1, 1, 'Pressed Felt Robe'),
|
|
(24052, 2080, 0, 0, 0, 1, 1, 1, 1, 'Hillborne Axe'),
|
|
(24052, 3037, 0, 0, 0, 1, 1, 1, 1, 'Whipwood Recurve Bow'),
|
|
(24052, 3185, 0, 0, 0, 1, 1, 1, 1, 'Acrobatic Staff'),
|
|
(24052, 3197, 0, 0, 0, 1, 1, 1, 1, 'Stonecutter Claymore'),
|
|
(24052, 4039, 0, 0, 0, 1, 1, 1, 1, 'Nightsky Cowl'),
|
|
(24052, 4040, 0, 0, 0, 1, 1, 1, 1, 'Nightsky Gloves'),
|
|
(24052, 4052, 0, 0, 0, 1, 1, 1, 1, 'Insignia Cap'),
|
|
(24052, 4054, 0, 0, 0, 1, 1, 1, 1, 'Insignia Leggings'),
|
|
(24052, 4055, 0, 0, 0, 1, 1, 1, 1, 'Insignia Boots'),
|
|
(24052, 4066, 0, 0, 0, 1, 1, 1, 1, 'Insignia Buckler'),
|
|
(24052, 4075, 0, 0, 0, 1, 1, 1, 1, 'Mail Combat Gauntlets'),
|
|
(24052, 4076, 0, 0, 0, 1, 1, 1, 1, 'Mail Combat Boots'),
|
|
(24052, 4077, 0, 0, 0, 1, 1, 1, 1, 'Mail Combat Headguard'),
|
|
(24052, 4717, 0, 0, 0, 1, 1, 1, 1, 'Mail Combat Belt'),
|
|
(24052, 4718, 0, 0, 0, 1, 1, 1, 1, 'Nightsky Mantle'),
|
|
(24052, 4721, 0, 0, 0, 1, 1, 1, 1, 'Insignia Mantle'),
|
|
(24052, 5213, 0, 0, 0, 1, 1, 1, 1, 'Scorching Wand'),
|
|
(24052, 5245, 0, 0, 0, 1, 1, 1, 1, 'Summoner\'s Wand'),
|
|
(24052, 5755, 0, 0, 0, 1, 1, 1, 1, 'Onyx Shredder Plate'),
|
|
(24052, 6404, 0, 0, 0, 1, 1, 1, 1, 'Mail Combat Spaulders'),
|
|
(24052, 6406, 0, 0, 0, 1, 1, 1, 1, 'Nightsky Boots'),
|
|
(24052, 6408, 0, 0, 0, 1, 1, 1, 1, 'Insignia Gloves'),
|
|
(24052, 6409, 0, 0, 0, 1, 1, 1, 1, 'Insignia Belt'),
|
|
(24052, 7331, 0, 0, 0, 1, 1, 1, 1, 'Phalanx Shield'),
|
|
(24052, 7353, 0, 0, 0, 1, 1, 1, 1, 'Elder\'s Padded Armor'),
|
|
(24052, 7357, 0, 0, 0, 1, 1, 1, 1, 'Elder\'s Hat'),
|
|
(24052, 7368, 0, 0, 0, 1, 1, 1, 1, 'Elder\'s Pants'),
|
|
(24052, 7369, 0, 0, 0, 1, 1, 1, 1, 'Elder\'s Robe'),
|
|
(24052, 7407, 0, 0, 0, 1, 1, 1, 1, 'Infiltrator Armor'),
|
|
(24052, 7414, 0, 0, 0, 1, 1, 1, 1, 'Infiltrator Pants'),
|
|
(24052, 7417, 0, 0, 0, 1, 1, 1, 1, 'Phalanx Boots'),
|
|
(24052, 7418, 0, 0, 0, 1, 1, 1, 1, 'Phalanx Breastplate'),
|
|
(24052, 7423, 0, 0, 0, 1, 1, 1, 1, 'Phalanx Leggings'),
|
|
(24052, 7436, 0, 0, 0, 1, 1, 1, 1, 'Twilight Cape'),
|
|
(24052, 7460, 0, 0, 0, 1, 1, 1, 1, 'Knight\'s Cloak'),
|
|
(24052, 7609, 0, 0, 0, 1, 1, 1, 1, 'Elder\'s Amber Stave'),
|
|
(24052, 9819, 0, 0, 0, 1, 1, 1, 1, 'Durable Tunic'),
|
|
(24052, 9826, 0, 0, 0, 1, 1, 1, 1, 'Durable Robe'),
|
|
(24052, 9845, 0, 0, 0, 1, 1, 1, 1, 'Conjurer\'s Shoes'),
|
|
(24052, 9846, 0, 0, 0, 1, 1, 1, 1, 'Conjurer\'s Bracers'),
|
|
(24052, 9853, 0, 0, 0, 1, 1, 1, 1, 'Conjurer\'s Cinch'),
|
|
(24052, 9855, 0, 0, 0, 1, 1, 1, 1, 'Archer\'s Belt'),
|
|
(24052, 9857, 0, 0, 0, 1, 1, 1, 1, 'Archer\'s Bracers'),
|
|
(24052, 9860, 0, 0, 0, 1, 1, 1, 1, 'Archer\'s Cloak'),
|
|
(24052, 9861, 0, 0, 0, 1, 1, 1, 1, 'Archer\'s Gloves'),
|
|
(24052, 9865, 0, 0, 0, 1, 1, 1, 1, 'Renegade Bracers'),
|
|
(24052, 9868, 0, 0, 0, 1, 1, 1, 1, 'Renegade Gauntlets'),
|
|
(24052, 9869, 0, 0, 0, 1, 1, 1, 1, 'Renegade Belt'),
|
|
(24052, 11970, 0, 0, 0, 1, 1, 1, 1, 'Spinel Ring'),
|
|
(24052, 11985, 0, 0, 0, 1, 1, 1, 1, 'Cerulean Ring'),
|
|
(24052, 11996, 0, 0, 0, 1, 1, 1, 1, 'Basalt Ring'),
|
|
(24052, 12029, 0, 0, 0, 1, 1, 1, 1, 'Greenstone Talisman'),
|
|
(24052, 14200, 0, 0, 0, 1, 1, 1, 1, 'Thistlefur Cap'),
|
|
(24052, 14201, 0, 0, 0, 1, 1, 1, 1, 'Thistlefur Mantle'),
|
|
(24052, 14203, 0, 0, 0, 1, 1, 1, 1, 'Thistlefur Pants'),
|
|
(24052, 14211, 0, 0, 0, 1, 1, 1, 1, 'Vital Handwraps'),
|
|
(24052, 14212, 0, 0, 0, 1, 1, 1, 1, 'Vital Shoulders'),
|
|
(24052, 14214, 0, 0, 0, 1, 1, 1, 1, 'Vital Boots'),
|
|
(24052, 14219, 0, 0, 0, 1, 1, 1, 1, 'Geomancer\'s Cloak'),
|
|
(24052, 14221, 0, 0, 0, 1, 1, 1, 1, 'Geomancer\'s Bracers'),
|
|
(24052, 14408, 0, 0, 0, 1, 1, 1, 1, 'Stonecloth Boots'),
|
|
(24052, 14411, 0, 0, 0, 1, 1, 1, 1, 'Stonecloth Gloves'),
|
|
(24052, 14414, 0, 0, 0, 1, 1, 1, 1, 'Stonecloth Belt'),
|
|
(24052, 14416, 0, 0, 0, 1, 1, 1, 1, 'Stonecloth Bindings'),
|
|
(24052, 14584, 0, 0, 0, 1, 1, 1, 1, 'Dokebi Hat'),
|
|
(24052, 14590, 0, 0, 0, 1, 1, 1, 1, 'Hawkeye\'s Bracers'),
|
|
(24052, 14593, 0, 0, 0, 1, 1, 1, 1, 'Hawkeye\'s Cloak'),
|
|
(24052, 14759, 0, 0, 0, 1, 1, 1, 1, 'Enduring Bracers'),
|
|
(24052, 14761, 0, 0, 0, 1, 1, 1, 1, 'Enduring Belt'),
|
|
(24052, 14764, 0, 0, 0, 1, 1, 1, 1, 'Enduring Gauntlets'),
|
|
(24052, 15130, 0, 0, 0, 1, 1, 1, 1, 'Cutthroat\'s Vest'),
|
|
(24052, 15140, 0, 0, 0, 1, 1, 1, 1, 'Cutthroat\'s Mantle'),
|
|
(24052, 15142, 0, 0, 0, 1, 1, 1, 1, 'Ghostwalker Boots'),
|
|
(24052, 15148, 0, 0, 0, 1, 1, 1, 1, 'Ghostwalker Belt'),
|
|
(24052, 15286, 0, 0, 0, 1, 1, 1, 1, 'Long Redwood Bow'),
|
|
(24052, 15339, 0, 0, 0, 1, 1, 1, 1, 'Pathfinder Hat'),
|
|
(24052, 15350, 0, 0, 0, 1, 1, 1, 1, 'Headhunter\'s Slippers'),
|
|
(24052, 15352, 0, 0, 0, 1, 1, 1, 1, 'Headhunter\'s Buckler'),
|
|
(24052, 15355, 0, 0, 0, 1, 1, 1, 1, 'Headhunter\'s Mitts'),
|
|
(24052, 15357, 0, 0, 0, 1, 1, 1, 1, 'Headhunter\'s Spaulders'),
|
|
(24052, 15358, 0, 0, 0, 1, 1, 1, 1, 'Headhunter\'s Woolies'),
|
|
(24052, 15536, 0, 0, 0, 1, 1, 1, 1, 'Wicked Chain Chestpiece'),
|
|
(24052, 15540, 0, 0, 0, 1, 1, 1, 1, 'Wicked Chain Helmet'),
|
|
(24052, 15543, 0, 0, 0, 1, 1, 1, 1, 'Wicked Chain Shield'),
|
|
(24052, 15550, 0, 0, 0, 1, 1, 1, 1, 'Thick Scale Crown'),
|
|
(24052, 15551, 0, 0, 0, 1, 1, 1, 1, 'Thick Scale Legguards'),
|
|
(24052, 15553, 0, 0, 0, 1, 1, 1, 1, 'Thick Scale Shoulder Pads'),
|
|
(24052, 15560, 0, 0, 0, 1, 1, 1, 1, 'Pillager\'s Gloves'),
|
|
(24052, 15566, 0, 0, 0, 1, 1, 1, 1, 'Marauder\'s Bracers'),
|
|
(24052, 15571, 0, 0, 0, 1, 1, 1, 1, 'Marauder\'s Belt'),
|
|
(24052, 15579, 0, 0, 0, 1, 1, 1, 1, 'Sparkleshell Cloak'),
|
|
(24052, 15935, 0, 0, 0, 1, 1, 1, 1, 'Durable Rod'),
|
|
(24053, 2277, 0, 0, 0, 1, 1, 1, 1, 'Necromancer Leggings'),
|
|
(24053, 2565, 0, 0, 0, 1, 1, 1, 1, 'Rod of Molten Fire'),
|
|
(24053, 9395, 0, 0, 0, 1, 1, 1, 1, 'Gloves of Old'),
|
|
(24053, 13033, 0, 0, 0, 1, 1, 1, 1, 'Zealot Blade'),
|
|
(24053, 13045, 0, 0, 0, 1, 1, 1, 1, 'Viscous Hammer'),
|
|
(24053, 13063, 0, 0, 0, 1, 1, 1, 1, 'Starfaller'),
|
|
(24053, 13084, 0, 0, 0, 1, 1, 1, 1, 'Kaleidoscope Chain'),
|
|
(24053, 13108, 0, 0, 0, 1, 1, 1, 1, 'Tigerstrike Mantle'),
|
|
(24053, 13124, 0, 0, 0, 1, 1, 1, 1, 'Ravasaur Scale Boots'),
|
|
(24053, 13137, 0, 0, 0, 1, 1, 1, 1, 'Ironweaver'),
|
|
(24054, 863, 0, 0, 0, 1, 1, 1, 1, 'Gloom Reaper'),
|
|
(24054, 1522, 0, 0, 0, 1, 1, 1, 1, 'Headhunting Spear'),
|
|
(24054, 1523, 0, 0, 0, 1, 1, 1, 1, 'Huge Stone Club'),
|
|
(24054, 1725, 0, 0, 0, 1, 1, 1, 1, 'Large Knapsack'),
|
|
(24054, 1990, 0, 0, 0, 1, 1, 1, 1, 'Ballast Maul'),
|
|
(24054, 1993, 0, 0, 0, 1, 1, 1, 1, 'Ogremind Ring'),
|
|
(24054, 1996, 0, 0, 0, 1, 1, 1, 1, 'Voodoo Band'),
|
|
(24054, 2621, 0, 0, 0, 1, 1, 1, 1, 'Cowl of Necromancy'),
|
|
(24054, 3345, 0, 0, 0, 1, 1, 1, 1, 'Silk Wizard Hat'),
|
|
(24054, 4038, 0, 0, 0, 1, 1, 1, 1, 'Nightsky Robe'),
|
|
(24054, 4057, 0, 0, 0, 1, 1, 1, 1, 'Insignia Chestguard'),
|
|
(24054, 4059, 0, 0, 0, 1, 1, 1, 1, 'Glyphed Bracers'),
|
|
(24054, 4065, 0, 0, 0, 1, 1, 1, 1, 'Combat Shield'),
|
|
(24054, 4074, 0, 0, 0, 1, 1, 1, 1, 'Mail Combat Armor'),
|
|
(24054, 4726, 0, 0, 0, 1, 1, 1, 1, 'Chief Brigadier Cloak'),
|
|
(24054, 4732, 0, 0, 0, 1, 1, 1, 1, 'Glyphed Cloak'),
|
|
(24054, 5009, 0, 0, 0, 1, 1, 1, 1, 'Mindbender Loop'),
|
|
(24054, 6402, 0, 0, 0, 1, 1, 1, 1, 'Mail Combat Leggings'),
|
|
(24054, 6405, 0, 0, 0, 1, 1, 1, 1, 'Nightsky Trousers'),
|
|
(24054, 6413, 0, 0, 0, 1, 1, 1, 1, 'Chief Brigadier Bracers'),
|
|
(24054, 6417, 0, 0, 0, 1, 1, 1, 1, 'Aurora Cloak'),
|
|
(24054, 6418, 0, 0, 0, 1, 1, 1, 1, 'Aurora Sash'),
|
|
(24054, 7111, 0, 0, 0, 1, 1, 1, 1, 'Nightsky Armor'),
|
|
(24054, 7433, 0, 0, 0, 1, 1, 1, 1, 'Twilight Gloves'),
|
|
(24054, 7434, 0, 0, 0, 1, 1, 1, 1, 'Twilight Boots'),
|
|
(24054, 7437, 0, 0, 0, 1, 1, 1, 1, 'Twilight Cuffs'),
|
|
(24054, 7438, 0, 0, 0, 1, 1, 1, 1, 'Twilight Belt'),
|
|
(24054, 7443, 0, 0, 0, 1, 1, 1, 1, 'Sentinel Gloves'),
|
|
(24054, 7444, 0, 0, 0, 1, 1, 1, 1, 'Sentinel Boots'),
|
|
(24054, 7446, 0, 0, 0, 1, 1, 1, 1, 'Sentinel Cloak'),
|
|
(24054, 7447, 0, 0, 0, 1, 1, 1, 1, 'Sentinel Bracers'),
|
|
(24054, 7448, 0, 0, 0, 1, 1, 1, 1, 'Sentinel Girdle'),
|
|
(24054, 7457, 0, 0, 0, 1, 1, 1, 1, 'Knight\'s Gauntlets'),
|
|
(24054, 7458, 0, 0, 0, 1, 1, 1, 1, 'Knight\'s Boots'),
|
|
(24054, 7461, 0, 0, 0, 1, 1, 1, 1, 'Knight\'s Bracers'),
|
|
(24054, 7462, 0, 0, 0, 1, 1, 1, 1, 'Knight\'s Girdle'),
|
|
(24054, 8188, 0, 0, 0, 1, 1, 1, 1, 'Explosive Shotgun'),
|
|
(24054, 9848, 0, 0, 0, 1, 1, 1, 1, 'Conjurer\'s Gloves'),
|
|
(24054, 9849, 0, 0, 0, 1, 1, 1, 1, 'Conjurer\'s Hood'),
|
|
(24054, 9850, 0, 0, 0, 1, 1, 1, 1, 'Conjurer\'s Mantle'),
|
|
(24054, 9851, 0, 0, 0, 1, 1, 1, 1, 'Conjurer\'s Breeches'),
|
|
(24054, 9856, 0, 0, 0, 1, 1, 1, 1, 'Archer\'s Boots'),
|
|
(24054, 9858, 0, 0, 0, 1, 1, 1, 1, 'Archer\'s Buckler'),
|
|
(24054, 9859, 0, 0, 0, 1, 1, 1, 1, 'Archer\'s Cap'),
|
|
(24054, 9862, 0, 0, 0, 1, 1, 1, 1, 'Archer\'s Trousers'),
|
|
(24054, 9863, 0, 0, 0, 1, 1, 1, 1, 'Archer\'s Shoulderpads'),
|
|
(24054, 9864, 0, 0, 0, 1, 1, 1, 1, 'Renegade Boots'),
|
|
(24054, 9870, 0, 0, 0, 1, 1, 1, 1, 'Renegade Circlet'),
|
|
(24054, 9871, 0, 0, 0, 1, 1, 1, 1, 'Renegade Leggings'),
|
|
(24054, 9872, 0, 0, 0, 1, 1, 1, 1, 'Renegade Pauldrons'),
|
|
(24054, 9873, 0, 0, 0, 1, 1, 1, 1, 'Renegade Shield'),
|
|
(24054, 11971, 0, 0, 0, 1, 1, 1, 1, 'Amethyst Band'),
|
|
(24054, 12010, 0, 0, 0, 1, 1, 1, 1, 'Fen Ring'),
|
|
(24054, 12020, 0, 0, 0, 1, 1, 1, 1, 'Thallium Choker'),
|
|
(24054, 14202, 0, 0, 0, 1, 1, 1, 1, 'Thistlefur Jerkin'),
|
|
(24054, 14204, 0, 0, 0, 1, 1, 1, 1, 'Thistlefur Robe'),
|
|
(24054, 14207, 0, 0, 0, 1, 1, 1, 1, 'Vital Leggings'),
|
|
(24054, 14208, 0, 0, 0, 1, 1, 1, 1, 'Vital Headband'),
|
|
(24054, 14213, 0, 0, 0, 1, 1, 1, 1, 'Vital Raiment'),
|
|
(24054, 14215, 0, 0, 0, 1, 1, 1, 1, 'Vital Tunic'),
|
|
(24054, 14217, 0, 0, 0, 1, 1, 1, 1, 'Geomancer\'s Cord'),
|
|
(24054, 14218, 0, 0, 0, 1, 1, 1, 1, 'Geomancer\'s Boots'),
|
|
(24054, 14222, 0, 0, 0, 1, 1, 1, 1, 'Geomancer\'s Gloves'),
|
|
(24054, 14226, 0, 0, 0, 1, 1, 1, 1, 'Embersilk Bracelets'),
|
|
(24054, 14229, 0, 0, 0, 1, 1, 1, 1, 'Embersilk Cloak'),
|
|
(24054, 14235, 0, 0, 0, 1, 1, 1, 1, 'Embersilk Cord'),
|
|
(24054, 14412, 0, 0, 0, 1, 1, 1, 1, 'Stonecloth Epaulets'),
|
|
(24054, 14415, 0, 0, 0, 1, 1, 1, 1, 'Stonecloth Britches'),
|
|
(24054, 14588, 0, 0, 0, 1, 1, 1, 1, 'Hawkeye\'s Cord'),
|
|
(24054, 14589, 0, 0, 0, 1, 1, 1, 1, 'Hawkeye\'s Shoes'),
|
|
(24054, 14594, 0, 0, 0, 1, 1, 1, 1, 'Hawkeye\'s Gloves'),
|
|
(24054, 14607, 0, 0, 0, 1, 1, 1, 1, 'Hawkeye\'s Buckler'),
|
|
(24054, 14762, 0, 0, 0, 1, 1, 1, 1, 'Enduring Boots'),
|
|
(24054, 14766, 0, 0, 0, 1, 1, 1, 1, 'Enduring Breeches'),
|
|
(24054, 15134, 0, 0, 0, 1, 1, 1, 1, 'Cutthroat\'s Hat'),
|
|
(24054, 15144, 0, 0, 0, 1, 1, 1, 1, 'Ghostwalker Rags'),
|
|
(24054, 15145, 0, 0, 0, 1, 1, 1, 1, 'Ghostwalker Buckler'),
|
|
(24054, 15149, 0, 0, 0, 1, 1, 1, 1, 'Ghostwalker Gloves'),
|
|
(24054, 15150, 0, 0, 0, 1, 1, 1, 1, 'Ghostwalker Pads'),
|
|
(24054, 15151, 0, 0, 0, 1, 1, 1, 1, 'Ghostwalker Legguards'),
|
|
(24054, 15153, 0, 0, 0, 1, 1, 1, 1, 'Nocturnal Cloak'),
|
|
(24054, 15213, 0, 0, 0, 1, 1, 1, 1, 'Mercenary Blade'),
|
|
(24054, 15226, 0, 0, 0, 1, 1, 1, 1, 'Giant Club'),
|
|
(24054, 15243, 0, 0, 0, 1, 1, 1, 1, 'Deadly Kris'),
|
|
(24054, 15356, 0, 0, 0, 1, 1, 1, 1, 'Headhunter\'s Armor'),
|
|
(24054, 15361, 0, 0, 0, 1, 1, 1, 1, 'Trickster\'s Sash'),
|
|
(24054, 15364, 0, 0, 0, 1, 1, 1, 1, 'Trickster\'s Cloak'),
|
|
(24054, 15546, 0, 0, 0, 1, 1, 1, 1, 'Thick Scale Breastplate'),
|
|
(24054, 15552, 0, 0, 0, 1, 1, 1, 1, 'Thick Scale Shield'),
|
|
(24054, 15557, 0, 0, 0, 1, 1, 1, 1, 'Pillager\'s Chestguard'),
|
|
(24054, 15558, 0, 0, 0, 1, 1, 1, 1, 'Pillager\'s Crown'),
|
|
(24054, 15561, 0, 0, 0, 1, 1, 1, 1, 'Pillager\'s Leggings'),
|
|
(24054, 15562, 0, 0, 0, 1, 1, 1, 1, 'Pillager\'s Pauldrons'),
|
|
(24054, 15563, 0, 0, 0, 1, 1, 1, 1, 'Pillager\'s Shield'),
|
|
(24054, 15570, 0, 0, 0, 1, 1, 1, 1, 'Marauder\'s Gauntlets'),
|
|
(24054, 15575, 0, 0, 0, 1, 1, 1, 1, 'Sparkleshell Belt'),
|
|
(24054, 15577, 0, 0, 0, 1, 1, 1, 1, 'Sparkleshell Bracers'),
|
|
(24054, 15590, 0, 0, 0, 1, 1, 1, 1, 'Steadfast Bracelets'),
|
|
(24054, 15594, 0, 0, 0, 1, 1, 1, 1, 'Steadfast Cloak'),
|
|
(24054, 15929, 0, 0, 0, 1, 1, 1, 1, 'Nightsky Orb'),
|
|
(24054, 15976, 0, 0, 0, 1, 1, 1, 1, 'Thistlefur Branch'),
|
|
(24054, 15977, 0, 0, 0, 1, 1, 1, 1, 'Vital Orb'),
|
|
(24055, 934, 0, 0, 0, 1, 1, 1, 1, 'Stalvan\'s Reaper'),
|
|
(24055, 1726, 0, 0, 0, 1, 1, 1, 1, 'Poison-tipped Bone Spear'),
|
|
(24055, 2276, 0, 0, 0, 1, 1, 1, 1, 'Swampwalker Boots'),
|
|
(24055, 2951, 0, 0, 0, 1, 1, 1, 1, 'Ring of the Underwood'),
|
|
(24055, 9385, 0, 0, 0, 1, 1, 1, 1, 'Archaic Defender'),
|
|
(24055, 9435, 0, 0, 0, 1, 1, 1, 1, 'Reticulated Bone Gauntlets'),
|
|
(24055, 13025, 0, 0, 0, 1, 1, 1, 1, 'Deadwood Sledge'),
|
|
(24055, 13093, 0, 0, 0, 1, 1, 1, 1, 'Blush Ember Ring'),
|
|
(24055, 13105, 0, 0, 0, 1, 1, 1, 1, 'Sutarn\'s Ring'),
|
|
(24055, 13110, 0, 0, 0, 1, 1, 1, 1, 'Wolffear Harness'),
|
|
(24056, 864, 0, 0, 0, 1, 1, 1, 1, 'Knightly Longsword'),
|
|
(24056, 1207, 0, 0, 0, 1, 1, 1, 1, 'Murphstar'),
|
|
(24056, 1280, 0, 0, 0, 1, 1, 1, 1, 'Cloaked Hood'),
|
|
(24056, 1465, 0, 0, 0, 1, 1, 1, 1, 'Tigerbane'),
|
|
(24056, 1725, 0, 0, 0, 1, 1, 1, 1, 'Large Knapsack'),
|
|
(24056, 1988, 0, 0, 0, 1, 1, 1, 1, 'Chief Brigadier Gauntlets'),
|
|
(24056, 2620, 0, 0, 0, 1, 1, 1, 1, 'Augural Shroud'),
|
|
(24056, 4041, 0, 0, 0, 1, 1, 1, 1, 'Aurora Cowl'),
|
|
(24056, 4042, 0, 0, 0, 1, 1, 1, 1, 'Aurora Gloves'),
|
|
(24056, 4043, 0, 0, 0, 1, 1, 1, 1, 'Aurora Bracers'),
|
|
(24056, 4067, 0, 0, 0, 1, 1, 1, 1, 'Glyphed Buckler'),
|
|
(24056, 4078, 0, 0, 0, 1, 1, 1, 1, 'Chief Brigadier Coif'),
|
|
(24056, 4727, 0, 0, 0, 1, 1, 1, 1, 'Chief Brigadier Girdle'),
|
|
(24056, 4729, 0, 0, 0, 1, 1, 1, 1, 'Aurora Mantle'),
|
|
(24056, 4731, 0, 0, 0, 1, 1, 1, 1, 'Glyphed Epaulets'),
|
|
(24056, 5624, 0, 0, 0, 1, 1, 1, 1, 'Circlet of the Order'),
|
|
(24056, 6412, 0, 0, 0, 1, 1, 1, 1, 'Chief Brigadier Boots'),
|
|
(24056, 6416, 0, 0, 0, 1, 1, 1, 1, 'Aurora Boots'),
|
|
(24056, 6419, 0, 0, 0, 1, 1, 1, 1, 'Glyphed Mitts'),
|
|
(24056, 6420, 0, 0, 0, 1, 1, 1, 1, 'Glyphed Boots'),
|
|
(24056, 6421, 0, 0, 0, 1, 1, 1, 1, 'Glyphed Belt'),
|
|
(24056, 6422, 0, 0, 0, 1, 1, 1, 1, 'Glyphed Helm'),
|
|
(24056, 7431, 0, 0, 0, 1, 1, 1, 1, 'Twilight Pants'),
|
|
(24056, 7432, 0, 0, 0, 1, 1, 1, 1, 'Twilight Cowl'),
|
|
(24056, 7435, 0, 0, 0, 1, 1, 1, 1, 'Twilight Mantle'),
|
|
(24056, 7440, 0, 0, 0, 1, 1, 1, 1, 'Sentinel Trousers'),
|
|
(24056, 7441, 0, 0, 0, 1, 1, 1, 1, 'Sentinel Cap'),
|
|
(24056, 7445, 0, 0, 0, 1, 1, 1, 1, 'Sentinel Shoulders'),
|
|
(24056, 7454, 0, 0, 0, 1, 1, 1, 1, 'Knight\'s Breastplate'),
|
|
(24056, 7455, 0, 0, 0, 1, 1, 1, 1, 'Knight\'s Legguards'),
|
|
(24056, 7456, 0, 0, 0, 1, 1, 1, 1, 'Knight\'s Headguard'),
|
|
(24056, 7459, 0, 0, 0, 1, 1, 1, 1, 'Knight\'s Pauldrons'),
|
|
(24056, 7463, 0, 0, 0, 1, 1, 1, 1, 'Sentinel Buckler'),
|
|
(24056, 7465, 0, 0, 0, 1, 1, 1, 1, 'Knight\'s Crest'),
|
|
(24056, 7492, 0, 0, 0, 1, 1, 1, 1, 'Captain\'s Cloak'),
|
|
(24056, 9382, 0, 0, 0, 1, 1, 1, 1, 'Tromping Miner\'s Boots'),
|
|
(24056, 9844, 0, 0, 0, 1, 1, 1, 1, 'Conjurer\'s Vest'),
|
|
(24056, 9852, 0, 0, 0, 1, 1, 1, 1, 'Conjurer\'s Robe'),
|
|
(24056, 9854, 0, 0, 0, 1, 1, 1, 1, 'Archer\'s Jerkin'),
|
|
(24056, 9866, 0, 0, 0, 1, 1, 1, 1, 'Renegade Chestguard'),
|
|
(24056, 9875, 0, 0, 0, 1, 1, 1, 1, 'Sorcerer Sash'),
|
|
(24056, 9877, 0, 0, 0, 1, 1, 1, 1, 'Sorcerer Cloak'),
|
|
(24056, 9879, 0, 0, 0, 1, 1, 1, 1, 'Sorcerer Bracelets'),
|
|
(24056, 9886, 0, 0, 0, 1, 1, 1, 1, 'Huntsman\'s Bands'),
|
|
(24056, 9890, 0, 0, 0, 1, 1, 1, 1, 'Huntsman\'s Cape'),
|
|
(24056, 9891, 0, 0, 0, 1, 1, 1, 1, 'Huntsman\'s Belt'),
|
|
(24056, 9896, 0, 0, 0, 1, 1, 1, 1, 'Jazeraint Bracers'),
|
|
(24056, 9898, 0, 0, 0, 1, 1, 1, 1, 'Jazeraint Cloak'),
|
|
(24056, 11986, 0, 0, 0, 1, 1, 1, 1, 'Thallium Hoop'),
|
|
(24056, 11997, 0, 0, 0, 1, 1, 1, 1, 'Greenstone Circle'),
|
|
(24056, 12030, 0, 0, 0, 1, 1, 1, 1, 'Jet Chain'),
|
|
(24056, 12040, 0, 0, 0, 1, 1, 1, 1, 'Forest Pendant'),
|
|
(24056, 14223, 0, 0, 0, 1, 1, 1, 1, 'Geomancer\'s Spaulders'),
|
|
(24056, 14224, 0, 0, 0, 1, 1, 1, 1, 'Geomancer\'s Trousers'),
|
|
(24056, 14231, 0, 0, 0, 1, 1, 1, 1, 'Embersilk Mitts'),
|
|
(24056, 14232, 0, 0, 0, 1, 1, 1, 1, 'Embersilk Mantle'),
|
|
(24056, 14236, 0, 0, 0, 1, 1, 1, 1, 'Embersilk Boots'),
|
|
(24056, 14239, 0, 0, 0, 1, 1, 1, 1, 'Darkmist Cape'),
|
|
(24056, 14407, 0, 0, 0, 1, 1, 1, 1, 'Stonecloth Vest'),
|
|
(24056, 14410, 0, 0, 0, 1, 1, 1, 1, 'Stonecloth Circlet'),
|
|
(24056, 14413, 0, 0, 0, 1, 1, 1, 1, 'Stonecloth Robe'),
|
|
(24056, 14418, 0, 0, 0, 1, 1, 1, 1, 'Silksand Boots'),
|
|
(24056, 14419, 0, 0, 0, 1, 1, 1, 1, 'Silksand Bracers'),
|
|
(24056, 14420, 0, 0, 0, 1, 1, 1, 1, 'Silksand Cape'),
|
|
(24056, 14426, 0, 0, 0, 1, 1, 1, 1, 'Silksand Girdle'),
|
|
(24056, 14595, 0, 0, 0, 1, 1, 1, 1, 'Hawkeye\'s Breeches'),
|
|
(24056, 14596, 0, 0, 0, 1, 1, 1, 1, 'Hawkeye\'s Epaulets'),
|
|
(24056, 14602, 0, 0, 0, 1, 1, 1, 1, 'Warden\'s Cloak'),
|
|
(24056, 14760, 0, 0, 0, 1, 1, 1, 1, 'Enduring Breastplate'),
|
|
(24056, 14765, 0, 0, 0, 1, 1, 1, 1, 'Enduring Circlet'),
|
|
(24056, 14767, 0, 0, 0, 1, 1, 1, 1, 'Enduring Pauldrons'),
|
|
(24056, 14771, 0, 0, 0, 1, 1, 1, 1, 'Ravager\'s Cloak'),
|
|
(24056, 14773, 0, 0, 0, 1, 1, 1, 1, 'Ravager\'s Cord'),
|
|
(24056, 15146, 0, 0, 0, 1, 1, 1, 1, 'Ghostwalker Crown'),
|
|
(24056, 15154, 0, 0, 0, 1, 1, 1, 1, 'Nocturnal Sash'),
|
|
(24056, 15155, 0, 0, 0, 1, 1, 1, 1, 'Nocturnal Gloves'),
|
|
(24056, 15160, 0, 0, 0, 1, 1, 1, 1, 'Nocturnal Wristbands'),
|
|
(24056, 15233, 0, 0, 0, 1, 1, 1, 1, 'Savage Axe'),
|
|
(24056, 15260, 0, 0, 0, 1, 1, 1, 1, 'Stone Hammer'),
|
|
(24056, 15322, 0, 0, 0, 1, 1, 1, 1, 'Smoothbore Gun'),
|
|
(24056, 15353, 0, 0, 0, 1, 1, 1, 1, 'Headhunter\'s Headdress'),
|
|
(24056, 15360, 0, 0, 0, 1, 1, 1, 1, 'Trickster\'s Bindings'),
|
|
(24056, 15362, 0, 0, 0, 1, 1, 1, 1, 'Trickster\'s Boots'),
|
|
(24056, 15365, 0, 0, 0, 1, 1, 1, 1, 'Trickster\'s Handwraps'),
|
|
(24056, 15367, 0, 0, 0, 1, 1, 1, 1, 'Trickster\'s Protector'),
|
|
(24056, 15368, 0, 0, 0, 1, 1, 1, 1, 'Trickster\'s Pauldrons'),
|
|
(24056, 15565, 0, 0, 0, 1, 1, 1, 1, 'Marauder\'s Boots'),
|
|
(24056, 15572, 0, 0, 0, 1, 1, 1, 1, 'Marauder\'s Circlet'),
|
|
(24056, 15573, 0, 0, 0, 1, 1, 1, 1, 'Marauder\'s Leggings'),
|
|
(24056, 15576, 0, 0, 0, 1, 1, 1, 1, 'Sparkleshell Sabatons'),
|
|
(24056, 15581, 0, 0, 0, 1, 1, 1, 1, 'Sparkleshell Gauntlets'),
|
|
(24056, 15595, 0, 0, 0, 1, 1, 1, 1, 'Steadfast Gloves'),
|
|
(24056, 15598, 0, 0, 0, 1, 1, 1, 1, 'Steadfast Girdle'),
|
|
(24056, 15918, 0, 0, 0, 1, 1, 1, 1, 'Conjurer\'s Sphere'),
|
|
(24056, 15963, 0, 0, 0, 1, 1, 1, 1, 'Stonecloth Branch'),
|
|
(24056, 15990, 0, 0, 0, 1, 1, 1, 1, 'Enduring Shield'),
|
|
(24057, 936, 0, 0, 0, 1, 1, 1, 1, 'Midnight Mace'),
|
|
(24057, 937, 0, 0, 0, 1, 1, 1, 1, 'Black Duskwood Staff'),
|
|
(24057, 1265, 0, 0, 0, 1, 1, 1, 1, 'Scorpion Sting'),
|
|
(24057, 8006, 0, 0, 0, 1, 1, 1, 1, 'The Ziggler'),
|
|
(24057, 13020, 0, 0, 0, 1, 1, 1, 1, 'Skystriker Bow'),
|
|
(24057, 13081, 0, 0, 0, 1, 1, 1, 1, 'Skullance Shield'),
|
|
(24057, 13103, 0, 0, 0, 1, 1, 1, 1, 'Pads of the Venom Spider'),
|
|
(24057, 13119, 0, 0, 0, 1, 1, 1, 1, 'Enchanted Kodo Bracers'),
|
|
(24057, 13121, 0, 0, 0, 1, 1, 1, 1, 'Wing of the Whelpling'),
|
|
(24057, 13129, 0, 0, 0, 1, 1, 1, 1, 'Firemane Leggings'),
|
|
(24058, 1206, 0, 0, 0, 1, 1, 1, 1, 'Moss Agate'),
|
|
(24058, 1754, 0, 0, 0, 1, 1, 1, 1, 'Reinforced Chain Belt'),
|
|
(24058, 1755, 0, 0, 0, 1, 1, 1, 1, 'Reinforced Chain Boots'),
|
|
(24058, 1756, 0, 0, 0, 1, 1, 1, 1, 'Reinforced Chain Bracers'),
|
|
(24058, 1757, 0, 0, 0, 1, 1, 1, 1, 'Reinforced Chain Cloak'),
|
|
(24058, 1758, 0, 0, 0, 1, 1, 1, 1, 'Reinforced Chain Gloves'),
|
|
(24058, 1759, 0, 0, 0, 1, 1, 1, 1, 'Reinforced Chain Pants'),
|
|
(24058, 1760, 0, 0, 0, 1, 1, 1, 1, 'Reinforced Chain Shoulderpads'),
|
|
(24058, 1761, 0, 0, 0, 1, 1, 1, 1, 'Reinforced Chain Vest'),
|
|
(24058, 1780, 0, 0, 0, 1, 1, 1, 1, 'Cross-stitched Sandals'),
|
|
(24058, 1782, 0, 0, 0, 1, 1, 1, 1, 'Cross-stitched Cloak'),
|
|
(24058, 1783, 0, 0, 0, 1, 1, 1, 1, 'Cross-stitched Gloves'),
|
|
(24058, 1784, 0, 0, 0, 1, 1, 1, 1, 'Cross-stitched Pants'),
|
|
(24058, 1785, 0, 0, 0, 1, 1, 1, 1, 'Cross-stitched Shoulderpads'),
|
|
(24058, 1786, 0, 0, 0, 1, 1, 1, 1, 'Cross-stitched Vest'),
|
|
(24058, 1803, 0, 0, 0, 1, 1, 1, 1, 'Tough Leather Belt'),
|
|
(24058, 1804, 0, 0, 0, 1, 1, 1, 1, 'Tough Leather Boots'),
|
|
(24058, 1805, 0, 0, 0, 1, 1, 1, 1, 'Tough Leather Bracers'),
|
|
(24058, 1806, 0, 0, 0, 1, 1, 1, 1, 'Tough Cloak'),
|
|
(24058, 1807, 0, 0, 0, 1, 1, 1, 1, 'Tough Leather Gloves'),
|
|
(24058, 1808, 0, 0, 0, 1, 1, 1, 1, 'Tough Leather Pants'),
|
|
(24058, 1809, 0, 0, 0, 1, 1, 1, 1, 'Tough Leather Shoulderpads'),
|
|
(24058, 1810, 0, 0, 0, 1, 1, 1, 1, 'Tough Leather Armor'),
|
|
(24058, 1825, 0, 0, 0, 1, 1, 1, 1, 'Bulky Bludgeon'),
|
|
(24058, 1826, 0, 0, 0, 1, 1, 1, 1, 'Rock Maul'),
|
|
(24058, 1827, 0, 0, 0, 1, 1, 1, 1, 'Meat Cleaver'),
|
|
(24058, 1828, 0, 0, 0, 1, 1, 1, 1, 'Stone War Axe'),
|
|
(24058, 1829, 0, 0, 0, 1, 1, 1, 1, 'Short Cutlass'),
|
|
(24058, 1830, 0, 0, 0, 1, 1, 1, 1, 'Long Bastard Sword'),
|
|
(24058, 1831, 0, 0, 0, 1, 1, 1, 1, 'Oaken War Staff'),
|
|
(24058, 2221, 0, 0, 0, 1, 1, 1, 1, 'Targe Shield'),
|
|
(24058, 2222, 0, 0, 0, 1, 1, 1, 1, 'Tower Shield'),
|
|
(24058, 2766, 0, 0, 0, 1, 1, 1, 1, 'Deft Stiletto'),
|
|
(24058, 2785, 0, 0, 0, 1, 1, 1, 1, 'Stiff Recurve Bow'),
|
|
(24058, 2786, 0, 0, 0, 1, 1, 1, 1, 'Oiled Blunderbuss'),
|
|
(24058, 3380, 0, 0, 0, 1, 1, 1, 1, 'Cross-stitched Belt'),
|
|
(24058, 3381, 0, 0, 0, 1, 1, 1, 1, 'Cross-stitched Bracers'),
|
|
(24058, 3778, 0, 0, 0, 1, 1, 1, 1, 'Taut Compound Bow'),
|
|
(24058, 8748, 0, 0, 0, 1, 1, 1, 1, 'Double Mail Coif'),
|
|
(24058, 11411, 0, 0, 0, 1, 1, 1, 1, 'Large Bear Bone'),
|
|
(24059, 1210, 0, 0, 0, 1, 1, 1, 1, 'Shadowgem'),
|
|
(24059, 1485, 0, 0, 0, 1, 1, 1, 1, 'Pitchfork'),
|
|
(24059, 1746, 0, 0, 0, 1, 1, 1, 1, 'Linked Chain Belt'),
|
|
(24059, 1747, 0, 0, 0, 1, 1, 1, 1, 'Linked Chain Boots'),
|
|
(24059, 1748, 0, 0, 0, 1, 1, 1, 1, 'Linked Chain Bracers'),
|
|
(24059, 1749, 0, 0, 0, 1, 1, 1, 1, 'Linked Chain Cloak'),
|
|
(24059, 1750, 0, 0, 0, 1, 1, 1, 1, 'Linked Chain Gloves'),
|
|
(24059, 1751, 0, 0, 0, 1, 1, 1, 1, 'Linked Chain Pants'),
|
|
(24059, 1752, 0, 0, 0, 1, 1, 1, 1, 'Linked Chain Shoulderpads'),
|
|
(24059, 1753, 0, 0, 0, 1, 1, 1, 1, 'Linked Chain Vest'),
|
|
(24059, 1772, 0, 0, 0, 1, 1, 1, 1, 'Brocade Shoes'),
|
|
(24059, 1774, 0, 0, 0, 1, 1, 1, 1, 'Brocade Cloak'),
|
|
(24059, 1775, 0, 0, 0, 1, 1, 1, 1, 'Brocade Gloves'),
|
|
(24059, 1776, 0, 0, 0, 1, 1, 1, 1, 'Brocade Pants'),
|
|
(24059, 1777, 0, 0, 0, 1, 1, 1, 1, 'Brocade Shoulderpads'),
|
|
(24059, 1778, 0, 0, 0, 1, 1, 1, 1, 'Brocade Vest'),
|
|
(24059, 1795, 0, 0, 0, 1, 1, 1, 1, 'Rawhide Belt'),
|
|
(24059, 1796, 0, 0, 0, 1, 1, 1, 1, 'Rawhide Boots'),
|
|
(24059, 1797, 0, 0, 0, 1, 1, 1, 1, 'Rawhide Bracers'),
|
|
(24059, 1798, 0, 0, 0, 1, 1, 1, 1, 'Rawhide Cloak'),
|
|
(24059, 1799, 0, 0, 0, 1, 1, 1, 1, 'Rawhide Gloves'),
|
|
(24059, 1800, 0, 0, 0, 1, 1, 1, 1, 'Rawhide Pants'),
|
|
(24059, 1801, 0, 0, 0, 1, 1, 1, 1, 'Rawhide Shoulderpads'),
|
|
(24059, 1802, 0, 0, 0, 1, 1, 1, 1, 'Rawhide Tunic'),
|
|
(24059, 1818, 0, 0, 0, 1, 1, 1, 1, 'Standard Claymore'),
|
|
(24059, 1819, 0, 0, 0, 1, 1, 1, 1, 'Gouging Pick'),
|
|
(24059, 1820, 0, 0, 0, 1, 1, 1, 1, 'Wooden Maul'),
|
|
(24059, 1821, 0, 0, 0, 1, 1, 1, 1, 'Warped Blade'),
|
|
(24059, 1822, 0, 0, 0, 1, 1, 1, 1, 'Cedar Walking Stick'),
|
|
(24059, 1823, 0, 0, 0, 1, 1, 1, 1, 'Bludgeoning Cudgel'),
|
|
(24059, 1824, 0, 0, 0, 1, 1, 1, 1, 'Shiny War Axe'),
|
|
(24059, 2219, 0, 0, 0, 1, 1, 1, 1, 'Small Round Shield'),
|
|
(24059, 2220, 0, 0, 0, 1, 1, 1, 1, 'Box Shield'),
|
|
(24059, 2765, 0, 0, 0, 1, 1, 1, 1, 'Hunting Knife'),
|
|
(24059, 2782, 0, 0, 0, 1, 1, 1, 1, 'Mishandled Recurve Bow'),
|
|
(24059, 2783, 0, 0, 0, 1, 1, 1, 1, 'Shoddy Blunderbuss'),
|
|
(24059, 3378, 0, 0, 0, 1, 1, 1, 1, 'Brocade Belt'),
|
|
(24059, 3379, 0, 0, 0, 1, 1, 1, 1, 'Brocade Bracers'),
|
|
(24060, 818, 0, 0, 0, 1, 1, 1, 1, 'Tigerseye'),
|
|
(24060, 1218, 0, 0, 0, 1, 1, 1, 1, 'Heavy Gnoll War Club'),
|
|
(24060, 1220, 0, 0, 0, 1, 1, 1, 1, 'Lupine Axe'),
|
|
(24060, 1296, 0, 0, 0, 1, 1, 1, 1, 'Blackrock Mace'),
|
|
(24060, 1300, 0, 0, 0, 1, 1, 1, 1, 'Lesser Staff of the Spire'),
|
|
(24060, 1448, 0, 0, 0, 1, 1, 1, 1, 'Blackrock Gauntlets'),
|
|
(24060, 1460, 0, 0, 0, 1, 1, 1, 1, 'Shadowhide Two-handed Sword'),
|
|
(24060, 1934, 0, 0, 0, 1, 1, 1, 1, 'Stonemason Trousers'),
|
|
(24060, 2166, 0, 0, 0, 1, 1, 1, 1, 'Foreman\'s Leggings'),
|
|
(24060, 2167, 0, 0, 0, 1, 1, 1, 1, 'Foreman\'s Gloves'),
|
|
(24060, 2168, 0, 0, 0, 1, 1, 1, 1, 'Foreman\'s Boots'),
|
|
(24060, 2981, 0, 0, 0, 1, 1, 1, 1, 'Seer\'s Robe'),
|
|
(24060, 2982, 0, 0, 0, 1, 1, 1, 1, 'Seer\'s Pants'),
|
|
(24060, 2985, 0, 0, 0, 1, 1, 1, 1, 'Inscribed Leather Breastplate'),
|
|
(24060, 2986, 0, 0, 0, 1, 1, 1, 1, 'Inscribed Leather Pants'),
|
|
(24060, 2989, 0, 0, 0, 1, 1, 1, 1, 'Burnished Tunic'),
|
|
(24060, 2990, 0, 0, 0, 1, 1, 1, 1, 'Burnished Leggings'),
|
|
(24060, 2991, 0, 0, 0, 1, 1, 1, 1, 'Burnished Boots'),
|
|
(24060, 2992, 0, 0, 0, 1, 1, 1, 1, 'Burnished Gloves'),
|
|
(24060, 3184, 0, 0, 0, 1, 1, 1, 1, 'Hook Dagger'),
|
|
(24060, 3193, 0, 0, 0, 1, 1, 1, 1, 'Oak Mallet'),
|
|
(24060, 3655, 0, 0, 0, 1, 1, 1, 1, 'Burnished Shield'),
|
|
(24060, 4568, 0, 0, 0, 1, 1, 1, 1, 'Grunt Axe'),
|
|
(24060, 4576, 0, 0, 0, 1, 1, 1, 1, 'Light Bow'),
|
|
(24060, 4697, 0, 0, 0, 1, 1, 1, 1, 'Burnished Girdle'),
|
|
(24060, 4788, 0, 0, 0, 1, 1, 1, 1, 'Agile Boots'),
|
|
(24060, 4949, 0, 0, 0, 1, 1, 1, 1, 'Orcish Cleaver'),
|
|
(24060, 5207, 0, 0, 0, 1, 1, 1, 1, 'Opaque Wand'),
|
|
(24060, 6561, 0, 0, 0, 1, 1, 1, 1, 'Seer\'s Padded Armor'),
|
|
(24060, 6562, 0, 0, 0, 1, 1, 1, 1, 'Shimmering Boots'),
|
|
(24060, 6563, 0, 0, 0, 1, 1, 1, 1, 'Shimmering Bracers'),
|
|
(24060, 6564, 0, 0, 0, 1, 1, 1, 1, 'Shimmering Cloak'),
|
|
(24060, 6575, 0, 0, 0, 1, 1, 1, 1, 'Defender Cloak'),
|
|
(24060, 6581, 0, 0, 0, 1, 1, 1, 1, 'Scouting Belt'),
|
|
(24060, 6583, 0, 0, 0, 1, 1, 1, 1, 'Scouting Bracers'),
|
|
(24060, 6585, 0, 0, 0, 1, 1, 1, 1, 'Scouting Cloak'),
|
|
(24060, 7608, 0, 0, 0, 1, 1, 1, 1, 'Seer\'s Fine Stein'),
|
|
(24060, 9768, 0, 0, 0, 1, 1, 1, 1, 'Greenweave Bracers'),
|
|
(24060, 9770, 0, 0, 0, 1, 1, 1, 1, 'Greenweave Cloak'),
|
|
(24060, 9776, 0, 0, 0, 1, 1, 1, 1, 'Bandit Boots'),
|
|
(24060, 9778, 0, 0, 0, 1, 1, 1, 1, 'Bandit Buckler'),
|
|
(24060, 9780, 0, 0, 0, 1, 1, 1, 1, 'Bandit Gloves'),
|
|
(24060, 9783, 0, 0, 0, 1, 1, 1, 1, 'Raider\'s Chestpiece'),
|
|
(24060, 11965, 0, 0, 0, 1, 1, 1, 1, 'Quartz Ring'),
|
|
(24060, 11981, 0, 0, 0, 1, 1, 1, 1, 'Lead Band'),
|
|
(24060, 12052, 0, 0, 0, 1, 1, 1, 1, 'Ring of the Moon'),
|
|
(24060, 12053, 0, 0, 0, 1, 1, 1, 1, 'Volcanic Rock Ring'),
|
|
(24060, 14120, 0, 0, 0, 1, 1, 1, 1, 'Aboriginal Robe'),
|
|
(24060, 14121, 0, 0, 0, 1, 1, 1, 1, 'Aboriginal Vest'),
|
|
(24060, 14124, 0, 0, 0, 1, 1, 1, 1, 'Ritual Gloves'),
|
|
(24060, 14125, 0, 0, 0, 1, 1, 1, 1, 'Ritual Leggings'),
|
|
(24060, 14129, 0, 0, 0, 1, 1, 1, 1, 'Ritual Sandals'),
|
|
(24060, 14164, 0, 0, 0, 1, 1, 1, 1, 'Pagan Belt'),
|
|
(24060, 14168, 0, 0, 0, 1, 1, 1, 1, 'Buccaneer\'s Gloves'),
|
|
(24060, 14173, 0, 0, 0, 1, 1, 1, 1, 'Buccaneer\'s Cord'),
|
|
(24060, 14565, 0, 0, 0, 1, 1, 1, 1, 'Prospector\'s Woolies'),
|
|
(24060, 14571, 0, 0, 0, 1, 1, 1, 1, 'Bristlebark Cape'),
|
|
(24060, 14729, 0, 0, 0, 1, 1, 1, 1, 'War Paint Shield'),
|
|
(24060, 14745, 0, 0, 0, 1, 1, 1, 1, 'Hulking Cloak'),
|
|
(24060, 15018, 0, 0, 0, 1, 1, 1, 1, 'Lupine Vest'),
|
|
(24060, 15110, 0, 0, 0, 1, 1, 1, 1, 'Rigid Belt'),
|
|
(24060, 15111, 0, 0, 0, 1, 1, 1, 1, 'Rigid Moccasins'),
|
|
(24060, 15112, 0, 0, 0, 1, 1, 1, 1, 'Rigid Bracelets'),
|
|
(24060, 15248, 0, 0, 0, 1, 1, 1, 1, 'Gleaming Claymore'),
|
|
(24060, 15312, 0, 0, 0, 1, 1, 1, 1, 'Feral Leggings'),
|
|
(24060, 15488, 0, 0, 0, 1, 1, 1, 1, 'Bloodspattered Surcoat'),
|
|
(24060, 15498, 0, 0, 0, 1, 1, 1, 1, 'Outrunner\'s Slippers'),
|
|
(24060, 15502, 0, 0, 0, 1, 1, 1, 1, 'Outrunner\'s Gloves'),
|
|
(24060, 15506, 0, 0, 0, 1, 1, 1, 1, 'Grunt\'s AnkleWraps'),
|
|
(24060, 15509, 0, 0, 0, 1, 1, 1, 1, 'Grunt\'s Handwraps'),
|
|
(24060, 15510, 0, 0, 0, 1, 1, 1, 1, 'Grunt\'s Belt'),
|
|
(24060, 15893, 0, 0, 0, 1, 1, 1, 1, 'Prospector\'s Buckler'),
|
|
(24060, 15971, 0, 0, 0, 1, 1, 1, 1, 'Aboriginal Rod'),
|
|
(24061, 935, 0, 0, 0, 1, 1, 1, 1, 'Night Watch Shortsword'),
|
|
(24061, 12975, 0, 0, 0, 1, 1, 1, 1, 'Prospector Axe'),
|
|
(24061, 12976, 0, 0, 0, 1, 1, 1, 1, 'Ironpatch Blade'),
|
|
(24061, 12977, 0, 0, 0, 1, 1, 1, 1, 'Magefist Gloves'),
|
|
(24061, 12978, 0, 0, 0, 1, 1, 1, 1, 'Stormbringer Belt'),
|
|
(24061, 12979, 0, 0, 0, 1, 1, 1, 1, 'Firebane Cloak'),
|
|
(24061, 12982, 0, 0, 0, 1, 1, 1, 1, 'Silver-linked Footguards'),
|
|
(24061, 12983, 0, 0, 0, 1, 1, 1, 1, 'Rakzur Club'),
|
|
(24061, 12984, 0, 0, 0, 1, 1, 1, 1, 'Skycaller'),
|
|
(24061, 13136, 0, 0, 0, 1, 1, 1, 1, 'Lil Timmy\'s Peashooter'),
|
|
(24062, 789, 0, 0, 0, 1, 1, 1, 1, 'Stout Battlehammer'),
|
|
(24062, 790, 0, 0, 0, 1, 1, 1, 1, 'Forester\'s Axe'),
|
|
(24062, 1299, 0, 0, 0, 1, 1, 1, 1, 'Lesser Belt of the Spire'),
|
|
(24062, 1457, 0, 0, 0, 1, 1, 1, 1, 'Shadowhide Mace'),
|
|
(24062, 1458, 0, 0, 0, 1, 1, 1, 1, 'Shadowhide Maul'),
|
|
(24062, 2175, 0, 0, 0, 1, 1, 1, 1, 'Shadowhide Battle Axe'),
|
|
(24062, 3039, 0, 0, 0, 1, 1, 1, 1, 'Short Ash Bow'),
|
|
(24062, 3065, 0, 0, 0, 1, 1, 1, 1, 'Bright Boots'),
|
|
(24062, 3198, 0, 0, 0, 1, 1, 1, 1, 'Battering Hammer'),
|
|
(24062, 3199, 0, 0, 0, 1, 1, 1, 1, 'Battle Slayer'),
|
|
(24062, 3227, 0, 0, 0, 1, 1, 1, 1, 'Nightbane Staff'),
|
|
(24062, 3647, 0, 0, 0, 1, 1, 1, 1, 'Bright Bracers'),
|
|
(24062, 4710, 0, 0, 0, 1, 1, 1, 1, 'Forest Cloak'),
|
|
(24062, 6381, 0, 0, 0, 1, 1, 1, 1, 'Bright Cloak'),
|
|
(24062, 6382, 0, 0, 0, 1, 1, 1, 1, 'Forest Leather Belt'),
|
|
(24062, 6565, 0, 0, 0, 1, 1, 1, 1, 'Shimmering Gloves'),
|
|
(24062, 6570, 0, 0, 0, 1, 1, 1, 1, 'Shimmering Sash'),
|
|
(24062, 6571, 0, 0, 0, 1, 1, 1, 1, 'Scouting Buckler'),
|
|
(24062, 6572, 0, 0, 0, 1, 1, 1, 1, 'Defender Shield'),
|
|
(24062, 6573, 0, 0, 0, 1, 1, 1, 1, 'Defender Boots'),
|
|
(24062, 6574, 0, 0, 0, 1, 1, 1, 1, 'Defender Bracers'),
|
|
(24062, 6576, 0, 0, 0, 1, 1, 1, 1, 'Defender Girdle'),
|
|
(24062, 6577, 0, 0, 0, 1, 1, 1, 1, 'Defender Gauntlets'),
|
|
(24062, 6578, 0, 0, 0, 1, 1, 1, 1, 'Defender Leggings'),
|
|
(24062, 6580, 0, 0, 0, 1, 1, 1, 1, 'Defender Tunic'),
|
|
(24062, 6582, 0, 0, 0, 1, 1, 1, 1, 'Scouting Boots'),
|
|
(24062, 6586, 0, 0, 0, 1, 1, 1, 1, 'Scouting Gloves'),
|
|
(24062, 9766, 0, 0, 0, 1, 1, 1, 1, 'Greenweave Sash'),
|
|
(24062, 9767, 0, 0, 0, 1, 1, 1, 1, 'Greenweave Sandals'),
|
|
(24062, 9781, 0, 0, 0, 1, 1, 1, 1, 'Bandit Pants'),
|
|
(24062, 9782, 0, 0, 0, 1, 1, 1, 1, 'Bandit Jerkin'),
|
|
(24062, 9812, 0, 0, 0, 1, 1, 1, 1, 'Fortified Cloak'),
|
|
(24062, 11967, 0, 0, 0, 1, 1, 1, 1, 'Zircon Band'),
|
|
(24062, 11982, 0, 0, 0, 1, 1, 1, 1, 'Viridian Band'),
|
|
(24062, 11993, 0, 0, 0, 1, 1, 1, 1, 'Clay Ring'),
|
|
(24062, 12006, 0, 0, 0, 1, 1, 1, 1, 'Meadow Ring'),
|
|
(24062, 14159, 0, 0, 0, 1, 1, 1, 1, 'Pagan Shoes'),
|
|
(24062, 14162, 0, 0, 0, 1, 1, 1, 1, 'Pagan Mitts'),
|
|
(24062, 14171, 0, 0, 0, 1, 1, 1, 1, 'Buccaneer\'s Pants'),
|
|
(24062, 14172, 0, 0, 0, 1, 1, 1, 1, 'Buccaneer\'s Robes'),
|
|
(24062, 14175, 0, 0, 0, 1, 1, 1, 1, 'Buccaneer\'s Vest'),
|
|
(24062, 14369, 0, 0, 0, 1, 1, 1, 1, 'Mystic\'s Wrap'),
|
|
(24062, 14371, 0, 0, 0, 1, 1, 1, 1, 'Mystic\'s Robe'),
|
|
(24062, 14376, 0, 0, 0, 1, 1, 1, 1, 'Sanguine Cape'),
|
|
(24062, 14562, 0, 0, 0, 1, 1, 1, 1, 'Prospector\'s Chestpiece'),
|
|
(24062, 14567, 0, 0, 0, 1, 1, 1, 1, 'Bristlebark Belt'),
|
|
(24062, 14568, 0, 0, 0, 1, 1, 1, 1, 'Bristlebark Boots'),
|
|
(24062, 14569, 0, 0, 0, 1, 1, 1, 1, 'Bristlebark Bindings'),
|
|
(24062, 14730, 0, 0, 0, 1, 1, 1, 1, 'War Paint Chestpiece'),
|
|
(24062, 14743, 0, 0, 0, 1, 1, 1, 1, 'Hulking Bands'),
|
|
(24062, 14746, 0, 0, 0, 1, 1, 1, 1, 'Hulking Belt'),
|
|
(24062, 14747, 0, 0, 0, 1, 1, 1, 1, 'Hulking Gauntlets'),
|
|
(24062, 15113, 0, 0, 0, 1, 1, 1, 1, 'Rigid Buckler'),
|
|
(24062, 15115, 0, 0, 0, 1, 1, 1, 1, 'Rigid Gloves'),
|
|
(24062, 15211, 0, 0, 0, 1, 1, 1, 1, 'Militant Shortsword'),
|
|
(24062, 15311, 0, 0, 0, 1, 1, 1, 1, 'Feral Harness'),
|
|
(24062, 15331, 0, 0, 0, 1, 1, 1, 1, 'Wrangler\'s Wristbands'),
|
|
(24062, 15333, 0, 0, 0, 1, 1, 1, 1, 'Wrangler\'s Cloak'),
|
|
(24062, 15503, 0, 0, 0, 1, 1, 1, 1, 'Outrunner\'s Legguards'),
|
|
(24062, 15504, 0, 0, 0, 1, 1, 1, 1, 'Outrunner\'s Shield'),
|
|
(24062, 15519, 0, 0, 0, 1, 1, 1, 1, 'Spiked Chain Cloak'),
|
|
(24062, 15912, 0, 0, 0, 1, 1, 1, 1, 'Buccaneer\'s Orb'),
|
|
(24062, 15946, 0, 0, 0, 1, 1, 1, 1, 'Mystic\'s Sphere'),
|
|
(24063, 2879, 0, 0, 0, 1, 1, 1, 1, 'Antipodean Rod'),
|
|
(24063, 2911, 0, 0, 0, 1, 1, 1, 1, 'Keller\'s Girdle'),
|
|
(24063, 12985, 0, 0, 0, 1, 1, 1, 1, 'Ring of Defense'),
|
|
(24063, 12987, 0, 0, 0, 1, 1, 1, 1, 'Darkweave Breeches'),
|
|
(24063, 12988, 0, 0, 0, 1, 1, 1, 1, 'Starsight Tunic'),
|
|
(24063, 12990, 0, 0, 0, 1, 1, 1, 1, 'Razor\'s Edge'),
|
|
(24063, 12992, 0, 0, 0, 1, 1, 1, 1, 'Searing Blade'),
|
|
(24063, 12994, 0, 0, 0, 1, 1, 1, 1, 'Thorbia\'s Gauntlets'),
|
|
(24063, 12996, 0, 0, 0, 1, 1, 1, 1, 'Band of Purification'),
|
|
(24064, 911, 0, 0, 0, 1, 1, 1, 1, 'Ironwood Treebranch'),
|
|
(24064, 920, 0, 0, 0, 1, 1, 1, 1, 'Wicked Spiked Mace'),
|
|
(24064, 1076, 0, 0, 0, 1, 1, 1, 1, 'Defias Renegade Ring'),
|
|
(24064, 1210, 0, 0, 0, 1, 1, 1, 1, 'Shadowgem'),
|
|
(24064, 1406, 0, 0, 0, 1, 1, 1, 1, 'Pearl-encrusted Spear'),
|
|
(24064, 1455, 0, 0, 0, 1, 1, 1, 1, 'Blackrock Champion\'s Axe'),
|
|
(24064, 1459, 0, 0, 0, 1, 1, 1, 1, 'Shadowhide Scalper'),
|
|
(24064, 1461, 0, 0, 0, 1, 1, 1, 1, 'Slayer\'s Battle Axe'),
|
|
(24064, 1462, 0, 0, 0, 1, 1, 1, 1, 'Ring of the Shadow'),
|
|
(24064, 2034, 0, 0, 0, 1, 1, 1, 1, 'Scholarly Robes'),
|
|
(24064, 2232, 0, 0, 0, 1, 1, 1, 1, 'Dark Runner Boots'),
|
|
(24064, 3057, 0, 0, 0, 1, 1, 1, 1, 'Forest Leather Boots'),
|
|
(24064, 3058, 0, 0, 0, 1, 1, 1, 1, 'Forest Leather Gloves'),
|
|
(24064, 3066, 0, 0, 0, 1, 1, 1, 1, 'Bright Gloves'),
|
|
(24064, 3202, 0, 0, 0, 1, 1, 1, 1, 'Forest Leather Bracers'),
|
|
(24064, 3429, 0, 0, 0, 1, 1, 1, 1, 'Guardsman Belt'),
|
|
(24064, 3740, 0, 0, 0, 1, 1, 1, 1, 'Decapitating Sword'),
|
|
(24064, 4706, 0, 0, 0, 1, 1, 1, 1, 'Lambent Scale Cloak'),
|
|
(24064, 4708, 0, 0, 0, 1, 1, 1, 1, 'Bright Belt'),
|
|
(24064, 4709, 0, 0, 0, 1, 1, 1, 1, 'Forest Leather Mantle'),
|
|
(24064, 4998, 0, 0, 0, 1, 1, 1, 1, 'Blood Ring'),
|
|
(24064, 6383, 0, 0, 0, 1, 1, 1, 1, 'Forest Buckler'),
|
|
(24064, 6567, 0, 0, 0, 1, 1, 1, 1, 'Shimmering Armor'),
|
|
(24064, 6568, 0, 0, 0, 1, 1, 1, 1, 'Shimmering Trousers'),
|
|
(24064, 6569, 0, 0, 0, 1, 1, 1, 1, 'Shimmering Robe'),
|
|
(24064, 6584, 0, 0, 0, 1, 1, 1, 1, 'Scouting Tunic'),
|
|
(24064, 6587, 0, 0, 0, 1, 1, 1, 1, 'Scouting Trousers'),
|
|
(24064, 7558, 0, 0, 0, 1, 1, 1, 1, 'Shimmering Stave'),
|
|
(24064, 9771, 0, 0, 0, 1, 1, 1, 1, 'Greenweave Gloves'),
|
|
(24064, 9792, 0, 0, 0, 1, 1, 1, 1, 'Ivycloth Boots'),
|
|
(24064, 9793, 0, 0, 0, 1, 1, 1, 1, 'Ivycloth Bracelets'),
|
|
(24064, 9794, 0, 0, 0, 1, 1, 1, 1, 'Ivycloth Cloak'),
|
|
(24064, 9801, 0, 0, 0, 1, 1, 1, 1, 'Superior Belt'),
|
|
(24064, 9805, 0, 0, 0, 1, 1, 1, 1, 'Superior Cloak'),
|
|
(24064, 9810, 0, 0, 0, 1, 1, 1, 1, 'Fortified Boots'),
|
|
(24064, 9811, 0, 0, 0, 1, 1, 1, 1, 'Fortified Bracers'),
|
|
(24064, 9813, 0, 0, 0, 1, 1, 1, 1, 'Fortified Gauntlets'),
|
|
(24064, 9814, 0, 0, 0, 1, 1, 1, 1, 'Fortified Belt'),
|
|
(24064, 9815, 0, 0, 0, 1, 1, 1, 1, 'Fortified Leggings'),
|
|
(24064, 9816, 0, 0, 0, 1, 1, 1, 1, 'Fortified Shield'),
|
|
(24064, 9818, 0, 0, 0, 1, 1, 1, 1, 'Fortified Chain'),
|
|
(24064, 11994, 0, 0, 0, 1, 1, 1, 1, 'Coral Band'),
|
|
(24064, 12007, 0, 0, 0, 1, 1, 1, 1, 'Prairie Ring'),
|
|
(24064, 12054, 0, 0, 0, 1, 1, 1, 1, 'Demon Band'),
|
|
(24064, 14127, 0, 0, 0, 1, 1, 1, 1, 'Ritual Shroud'),
|
|
(24064, 14133, 0, 0, 0, 1, 1, 1, 1, 'Ritual Tunic'),
|
|
(24064, 14165, 0, 0, 0, 1, 1, 1, 1, 'Pagan Britches'),
|
|
(24064, 14179, 0, 0, 0, 1, 1, 1, 1, 'Watcher\'s Cape'),
|
|
(24064, 14373, 0, 0, 0, 1, 1, 1, 1, 'Sanguine Belt'),
|
|
(24064, 14374, 0, 0, 0, 1, 1, 1, 1, 'Sanguine Sandals'),
|
|
(24064, 14375, 0, 0, 0, 1, 1, 1, 1, 'Sanguine Cuffs'),
|
|
(24064, 14566, 0, 0, 0, 1, 1, 1, 1, 'Prospector\'s Pads'),
|
|
(24064, 14572, 0, 0, 0, 1, 1, 1, 1, 'Bristlebark Gloves'),
|
|
(24064, 14742, 0, 0, 0, 1, 1, 1, 1, 'Hulking Boots'),
|
|
(24064, 14748, 0, 0, 0, 1, 1, 1, 1, 'Hulking Leggings'),
|
|
(24064, 15117, 0, 0, 0, 1, 1, 1, 1, 'Rigid Leggings'),
|
|
(24064, 15122, 0, 0, 0, 1, 1, 1, 1, 'Robust Bracers'),
|
|
(24064, 15124, 0, 0, 0, 1, 1, 1, 1, 'Robust Cloak'),
|
|
(24064, 15223, 0, 0, 0, 1, 1, 1, 1, 'Jagged Star'),
|
|
(24064, 15224, 0, 0, 0, 1, 1, 1, 1, 'Battlesmasher'),
|
|
(24064, 15230, 0, 0, 0, 1, 1, 1, 1, 'Ridge Cleaver'),
|
|
(24064, 15259, 0, 0, 0, 1, 1, 1, 1, 'Hefty Battlehammer'),
|
|
(24064, 15269, 0, 0, 0, 1, 1, 1, 1, 'Massive Battle Axe'),
|
|
(24064, 15329, 0, 0, 0, 1, 1, 1, 1, 'Wrangler\'s Belt'),
|
|
(24064, 15330, 0, 0, 0, 1, 1, 1, 1, 'Wrangler\'s Boots'),
|
|
(24064, 15500, 0, 0, 0, 1, 1, 1, 1, 'Outrunner\'s Chestguard'),
|
|
(24064, 15511, 0, 0, 0, 1, 1, 1, 1, 'Grunt\'s Legguards'),
|
|
(24064, 15512, 0, 0, 0, 1, 1, 1, 1, 'Grunt\'s Shield'),
|
|
(24064, 15513, 0, 0, 0, 1, 1, 1, 1, 'Grunt\'s Pauldrons'),
|
|
(24064, 15515, 0, 0, 0, 1, 1, 1, 1, 'Spiked Chain Belt'),
|
|
(24064, 15517, 0, 0, 0, 1, 1, 1, 1, 'Spiked Chain Wristbands'),
|
|
(24064, 15526, 0, 0, 0, 1, 1, 1, 1, 'Sentry\'s Cape'),
|
|
(24064, 15894, 0, 0, 0, 1, 1, 1, 1, 'Bristlebark Buckler'),
|
|
(24064, 15972, 0, 0, 0, 1, 1, 1, 1, 'Ritual Stein'),
|
|
(24065, 890, 0, 0, 0, 1, 1, 1, 1, 'Twisted Chanter\'s Staff'),
|
|
(24065, 1121, 0, 0, 0, 1, 1, 1, 1, 'Feet of the Lynx'),
|
|
(24065, 2059, 0, 0, 0, 1, 1, 1, 1, 'Sentry Cloak'),
|
|
(24065, 2194, 0, 0, 0, 1, 1, 1, 1, 'Diamond Hammer'),
|
|
(24065, 2236, 0, 0, 0, 1, 1, 1, 1, 'Blackfang'),
|
|
(24065, 2256, 0, 0, 0, 1, 1, 1, 1, 'Skeletal Club'),
|
|
(24065, 3021, 0, 0, 0, 1, 1, 1, 1, 'Ranger Bow'),
|
|
(24065, 12989, 0, 0, 0, 1, 1, 1, 1, 'Gargoyle\'s Bite'),
|
|
(24065, 12997, 0, 0, 0, 1, 1, 1, 1, 'Redbeard Crest'),
|
|
(24065, 12998, 0, 0, 0, 1, 1, 1, 1, 'Magician\'s Mantle'),
|
|
(24065, 12999, 0, 0, 0, 1, 1, 1, 1, 'Drakewing Bands'),
|
|
(24066, 886, 0, 0, 0, 1, 1, 1, 1, 'Black Metal Shortsword'),
|
|
(24066, 1077, 0, 0, 0, 1, 1, 1, 1, 'Defias Mage Ring'),
|
|
(24066, 2013, 0, 0, 0, 1, 1, 1, 1, 'Cryptbone Staff'),
|
|
(24066, 2072, 0, 0, 0, 1, 1, 1, 1, 'Dwarven Magestaff'),
|
|
(24066, 2227, 0, 0, 0, 1, 1, 1, 1, 'Heavy Ogre War Axe'),
|
|
(24066, 2233, 0, 0, 0, 1, 1, 1, 1, 'Shadow Weaver Leggings'),
|
|
(24066, 2566, 0, 0, 0, 1, 1, 1, 1, 'Sacrificial Robes'),
|
|
(24066, 3045, 0, 0, 0, 1, 1, 1, 1, 'Lambent Scale Boots'),
|
|
(24066, 3047, 0, 0, 0, 1, 1, 1, 1, 'Lambent Scale Gloves'),
|
|
(24066, 3048, 0, 0, 0, 1, 1, 1, 1, 'Lambent Scale Legguards'),
|
|
(24066, 3049, 0, 0, 0, 1, 1, 1, 1, 'Lambent Scale Breastplate'),
|
|
(24066, 3055, 0, 0, 0, 1, 1, 1, 1, 'Forest Leather Chestpiece'),
|
|
(24066, 3056, 0, 0, 0, 1, 1, 1, 1, 'Forest Leather Pants'),
|
|
(24066, 3067, 0, 0, 0, 1, 1, 1, 1, 'Bright Pants'),
|
|
(24066, 3069, 0, 0, 0, 1, 1, 1, 1, 'Bright Robe'),
|
|
(24066, 3204, 0, 0, 0, 1, 1, 1, 1, 'Deepwood Bracers'),
|
|
(24066, 3212, 0, 0, 0, 1, 1, 1, 1, 'Lambent Scale Bracers'),
|
|
(24066, 3569, 0, 0, 0, 1, 1, 1, 1, 'Vicar\'s Robe'),
|
|
(24066, 3656, 0, 0, 0, 1, 1, 1, 1, 'Lambent Scale Shield'),
|
|
(24066, 4036, 0, 0, 0, 1, 1, 1, 1, 'Silver-thread Cuffs'),
|
|
(24066, 4661, 0, 0, 0, 1, 1, 1, 1, 'Bright Mantle'),
|
|
(24066, 4705, 0, 0, 0, 1, 1, 1, 1, 'Lambent Scale Pauldrons'),
|
|
(24066, 4707, 0, 0, 0, 1, 1, 1, 1, 'Lambent Scale Girdle'),
|
|
(24066, 4713, 0, 0, 0, 1, 1, 1, 1, 'Silver-thread Cloak'),
|
|
(24066, 4714, 0, 0, 0, 1, 1, 1, 1, 'Silver-thread Sash'),
|
|
(24066, 4715, 0, 0, 0, 1, 1, 1, 1, 'Emblazoned Cloak'),
|
|
(24066, 4999, 0, 0, 0, 1, 1, 1, 1, 'Azora\'s Will'),
|
|
(24066, 5001, 0, 0, 0, 1, 1, 1, 1, 'Heart Ring'),
|
|
(24066, 6315, 0, 0, 0, 1, 1, 1, 1, 'Steelarrow Crossbow'),
|
|
(24066, 6394, 0, 0, 0, 1, 1, 1, 1, 'Silver-thread Boots'),
|
|
(24066, 6591, 0, 0, 0, 1, 1, 1, 1, 'Battleforge Wristguards'),
|
|
(24066, 6593, 0, 0, 0, 1, 1, 1, 1, 'Battleforge Cloak'),
|
|
(24066, 6600, 0, 0, 0, 1, 1, 1, 1, 'Dervish Belt'),
|
|
(24066, 6602, 0, 0, 0, 1, 1, 1, 1, 'Dervish Bracers'),
|
|
(24066, 6604, 0, 0, 0, 1, 1, 1, 1, 'Dervish Cape'),
|
|
(24066, 6608, 0, 0, 0, 1, 1, 1, 1, 'Bright Armor'),
|
|
(24066, 8183, 0, 0, 0, 1, 1, 1, 1, 'Precision Bow'),
|
|
(24066, 8186, 0, 0, 0, 1, 1, 1, 1, 'Dire Wand'),
|
|
(24066, 9769, 0, 0, 0, 1, 1, 1, 1, 'Greenweave Branch'),
|
|
(24066, 9772, 0, 0, 0, 1, 1, 1, 1, 'Greenweave Leggings'),
|
|
(24066, 9773, 0, 0, 0, 1, 1, 1, 1, 'Greenweave Robe'),
|
|
(24066, 9774, 0, 0, 0, 1, 1, 1, 1, 'Greenweave Vest'),
|
|
(24066, 9795, 0, 0, 0, 1, 1, 1, 1, 'Ivycloth Gloves'),
|
|
(24066, 9796, 0, 0, 0, 1, 1, 1, 1, 'Ivycloth Mantle'),
|
|
(24066, 9799, 0, 0, 0, 1, 1, 1, 1, 'Ivycloth Sash'),
|
|
(24066, 9802, 0, 0, 0, 1, 1, 1, 1, 'Superior Boots'),
|
|
(24066, 9803, 0, 0, 0, 1, 1, 1, 1, 'Superior Bracers'),
|
|
(24066, 9804, 0, 0, 0, 1, 1, 1, 1, 'Superior Buckler'),
|
|
(24066, 9806, 0, 0, 0, 1, 1, 1, 1, 'Superior Gloves'),
|
|
(24066, 9807, 0, 0, 0, 1, 1, 1, 1, 'Superior Shoulders'),
|
|
(24066, 9817, 0, 0, 0, 1, 1, 1, 1, 'Fortified Spaulders'),
|
|
(24066, 10287, 0, 0, 0, 1, 1, 1, 1, 'Greenweave Mantle'),
|
|
(24066, 11968, 0, 0, 0, 1, 1, 1, 1, 'Amber Hoop'),
|
|
(24066, 11983, 0, 0, 0, 1, 1, 1, 1, 'Chrome Ring'),
|
|
(24066, 14158, 0, 0, 0, 1, 1, 1, 1, 'Pagan Vest'),
|
|
(24066, 14163, 0, 0, 0, 1, 1, 1, 1, 'Pagan Wraps'),
|
|
(24066, 14176, 0, 0, 0, 1, 1, 1, 1, 'Watcher\'s Boots'),
|
|
(24066, 14177, 0, 0, 0, 1, 1, 1, 1, 'Watcher\'s Cuffs'),
|
|
(24066, 14185, 0, 0, 0, 1, 1, 1, 1, 'Watcher\'s Cinch'),
|
|
(24066, 14188, 0, 0, 0, 1, 1, 1, 1, 'Raincaller Cloak'),
|
|
(24066, 14377, 0, 0, 0, 1, 1, 1, 1, 'Sanguine Handwraps'),
|
|
(24066, 14378, 0, 0, 0, 1, 1, 1, 1, 'Sanguine Mantle'),
|
|
(24066, 14573, 0, 0, 0, 1, 1, 1, 1, 'Bristlebark Amice'),
|
|
(24066, 14574, 0, 0, 0, 1, 1, 1, 1, 'Bristlebark Britches'),
|
|
(24066, 14580, 0, 0, 0, 1, 1, 1, 1, 'Dokebi Bracers'),
|
|
(24066, 14749, 0, 0, 0, 1, 1, 1, 1, 'Hulking Spaulders'),
|
|
(24066, 14752, 0, 0, 0, 1, 1, 1, 1, 'Slayer\'s Cape'),
|
|
(24066, 15116, 0, 0, 0, 1, 1, 1, 1, 'Rigid Shoulders'),
|
|
(24066, 15118, 0, 0, 0, 1, 1, 1, 1, 'Rigid Tunic'),
|
|
(24066, 15120, 0, 0, 0, 1, 1, 1, 1, 'Robust Girdle'),
|
|
(24066, 15212, 0, 0, 0, 1, 1, 1, 1, 'Fighter Broadsword'),
|
|
(24066, 15241, 0, 0, 0, 1, 1, 1, 1, 'Battle Knife'),
|
|
(24066, 15249, 0, 0, 0, 1, 1, 1, 1, 'Polished Zweihander'),
|
|
(24066, 15332, 0, 0, 0, 1, 1, 1, 1, 'Wrangler\'s Buckler'),
|
|
(24066, 15334, 0, 0, 0, 1, 1, 1, 1, 'Wrangler\'s Gloves'),
|
|
(24066, 15336, 0, 0, 0, 1, 1, 1, 1, 'Wrangler\'s Leggings'),
|
|
(24066, 15340, 0, 0, 0, 1, 1, 1, 1, 'Pathfinder Cloak'),
|
|
(24066, 15348, 0, 0, 0, 1, 1, 1, 1, 'Pathfinder Bracers'),
|
|
(24066, 15514, 0, 0, 0, 1, 1, 1, 1, 'Grunt\'s Chestpiece'),
|
|
(24066, 15516, 0, 0, 0, 1, 1, 1, 1, 'Spiked Chain Slippers'),
|
|
(24066, 15520, 0, 0, 0, 1, 1, 1, 1, 'Spiked Chain Gauntlets'),
|
|
(24066, 15521, 0, 0, 0, 1, 1, 1, 1, 'Spiked Chain Leggings'),
|
|
(24066, 15523, 0, 0, 0, 1, 1, 1, 1, 'Spiked Chain Shoulder Pads'),
|
|
(24066, 15527, 0, 0, 0, 1, 1, 1, 1, 'Sentry\'s Gloves'),
|
|
(24066, 15528, 0, 0, 0, 1, 1, 1, 1, 'Sentry\'s Sash'),
|
|
(24066, 15532, 0, 0, 0, 1, 1, 1, 1, 'Sentry\'s Armsplints'),
|
|
(24066, 15891, 0, 0, 0, 1, 1, 1, 1, 'Hulking Shield'),
|
|
(24066, 15927, 0, 0, 0, 1, 1, 1, 1, 'Bright Sphere'),
|
|
(24066, 15974, 0, 0, 0, 1, 1, 1, 1, 'Pagan Rod'),
|
|
(24067, 2011, 0, 0, 0, 1, 1, 1, 1, 'Twisted Sabre'),
|
|
(24067, 2098, 0, 0, 0, 1, 1, 1, 1, 'Double-barreled Shotgun'),
|
|
(24067, 2800, 0, 0, 0, 1, 1, 1, 1, 'Black Velvet Robes'),
|
|
(24067, 13010, 0, 0, 0, 1, 1, 1, 1, 'Dreamsinger Legguards'),
|
|
(24067, 13011, 0, 0, 0, 1, 1, 1, 1, 'Silver-lined Belt'),
|
|
(24067, 13012, 0, 0, 0, 1, 1, 1, 1, 'Yorgen Bracers'),
|
|
(24067, 13016, 0, 0, 0, 1, 1, 1, 1, 'Killmaim'),
|
|
(24067, 13032, 0, 0, 0, 1, 1, 1, 1, 'Sword of Corruption'),
|
|
(24067, 13041, 0, 0, 0, 1, 1, 1, 1, 'Guardian Blade'),
|
|
(24067, 13062, 0, 0, 0, 1, 1, 1, 1, 'Thunderwood'),
|
|
(24068, 897, 0, 0, 0, 1, 1, 1, 1, 'Madwolf Bracers'),
|
|
(24068, 1351, 0, 0, 0, 1, 1, 1, 1, 'Fingerbone Bracers'),
|
|
(24068, 2017, 0, 0, 0, 1, 1, 1, 1, 'Glowing Leather Bracers'),
|
|
(24068, 2077, 0, 0, 0, 1, 1, 1, 1, 'Magician Staff'),
|
|
(24068, 2819, 0, 0, 0, 1, 1, 1, 1, 'Cross Dagger'),
|
|
(24068, 3053, 0, 0, 0, 1, 1, 1, 1, 'Humbert\'s Chestpiece'),
|
|
(24068, 3201, 0, 0, 0, 1, 1, 1, 1, 'Barbarian War Axe'),
|
|
(24068, 3206, 0, 0, 0, 1, 1, 1, 1, 'Cavalier Two-hander'),
|
|
(24068, 4049, 0, 0, 0, 1, 1, 1, 1, 'Emblazoned Bracers'),
|
|
(24068, 4711, 0, 0, 0, 1, 1, 1, 1, 'Glimmering Cloak'),
|
|
(24068, 4712, 0, 0, 0, 1, 1, 1, 1, 'Glimmering Mail Girdle'),
|
|
(24068, 4723, 0, 0, 0, 1, 1, 1, 1, 'Humbert\'s Pants'),
|
|
(24068, 6387, 0, 0, 0, 1, 1, 1, 1, 'Glimmering Mail Bracers'),
|
|
(24068, 6393, 0, 0, 0, 1, 1, 1, 1, 'Silver-thread Gloves'),
|
|
(24068, 6395, 0, 0, 0, 1, 1, 1, 1, 'Silver-thread Amice'),
|
|
(24068, 6397, 0, 0, 0, 1, 1, 1, 1, 'Emblazoned Gloves'),
|
|
(24068, 6398, 0, 0, 0, 1, 1, 1, 1, 'Emblazoned Belt'),
|
|
(24068, 6590, 0, 0, 0, 1, 1, 1, 1, 'Battleforge Boots'),
|
|
(24068, 6592, 0, 0, 0, 1, 1, 1, 1, 'Battleforge Armor'),
|
|
(24068, 6594, 0, 0, 0, 1, 1, 1, 1, 'Battleforge Girdle'),
|
|
(24068, 6595, 0, 0, 0, 1, 1, 1, 1, 'Battleforge Gauntlets'),
|
|
(24068, 6596, 0, 0, 0, 1, 1, 1, 1, 'Battleforge Legguards'),
|
|
(24068, 6597, 0, 0, 0, 1, 1, 1, 1, 'Battleforge Shoulderguards'),
|
|
(24068, 6598, 0, 0, 0, 1, 1, 1, 1, 'Dervish Buckler'),
|
|
(24068, 6599, 0, 0, 0, 1, 1, 1, 1, 'Battleforge Shield'),
|
|
(24068, 6601, 0, 0, 0, 1, 1, 1, 1, 'Dervish Boots'),
|
|
(24068, 6605, 0, 0, 0, 1, 1, 1, 1, 'Dervish Gloves'),
|
|
(24068, 6611, 0, 0, 0, 1, 1, 1, 1, 'Sage\'s Sash'),
|
|
(24068, 6612, 0, 0, 0, 1, 1, 1, 1, 'Sage\'s Boots'),
|
|
(24068, 6613, 0, 0, 0, 1, 1, 1, 1, 'Sage\'s Bracers'),
|
|
(24068, 6614, 0, 0, 0, 1, 1, 1, 1, 'Sage\'s Cloak'),
|
|
(24068, 6615, 0, 0, 0, 1, 1, 1, 1, 'Sage\'s Gloves'),
|
|
(24068, 7415, 0, 0, 0, 1, 1, 1, 1, 'Dervish Spaulders'),
|
|
(24068, 8184, 0, 0, 0, 1, 1, 1, 1, 'Firestarter'),
|
|
(24068, 9791, 0, 0, 0, 1, 1, 1, 1, 'Ivycloth Tunic'),
|
|
(24068, 9797, 0, 0, 0, 1, 1, 1, 1, 'Ivycloth Pants'),
|
|
(24068, 9798, 0, 0, 0, 1, 1, 1, 1, 'Ivycloth Robe'),
|
|
(24068, 9800, 0, 0, 0, 1, 1, 1, 1, 'Ivy Orb'),
|
|
(24068, 9808, 0, 0, 0, 1, 1, 1, 1, 'Superior Leggings'),
|
|
(24068, 9809, 0, 0, 0, 1, 1, 1, 1, 'Superior Tunic'),
|
|
(24068, 9822, 0, 0, 0, 1, 1, 1, 1, 'Durable Cape'),
|
|
(24068, 9829, 0, 0, 0, 1, 1, 1, 1, 'Scaled Leather Bracers'),
|
|
(24068, 9831, 0, 0, 0, 1, 1, 1, 1, 'Scaled Cloak'),
|
|
(24068, 9838, 0, 0, 0, 1, 1, 1, 1, 'Banded Cloak'),
|
|
(24068, 11969, 0, 0, 0, 1, 1, 1, 1, 'Jacinth Circle'),
|
|
(24068, 11984, 0, 0, 0, 1, 1, 1, 1, 'Cobalt Ring'),
|
|
(24068, 11995, 0, 0, 0, 1, 1, 1, 1, 'Ivory Band'),
|
|
(24068, 12008, 0, 0, 0, 1, 1, 1, 1, 'Savannah Ring'),
|
|
(24068, 14181, 0, 0, 0, 1, 1, 1, 1, 'Watcher\'s Handwraps'),
|
|
(24068, 14182, 0, 0, 0, 1, 1, 1, 1, 'Watcher\'s Mantle'),
|
|
(24068, 14186, 0, 0, 0, 1, 1, 1, 1, 'Raincaller Mantle'),
|
|
(24068, 14187, 0, 0, 0, 1, 1, 1, 1, 'Raincaller Cuffs'),
|
|
(24068, 14194, 0, 0, 0, 1, 1, 1, 1, 'Raincaller Cord'),
|
|
(24068, 14195, 0, 0, 0, 1, 1, 1, 1, 'Raincaller Boots'),
|
|
(24068, 14372, 0, 0, 0, 1, 1, 1, 1, 'Sanguine Armor'),
|
|
(24068, 14379, 0, 0, 0, 1, 1, 1, 1, 'Sanguine Trousers'),
|
|
(24068, 14380, 0, 0, 0, 1, 1, 1, 1, 'Sanguine Robe'),
|
|
(24068, 14400, 0, 0, 0, 1, 1, 1, 1, 'Resilient Cape'),
|
|
(24068, 14402, 0, 0, 0, 1, 1, 1, 1, 'Resilient Bands'),
|
|
(24068, 14570, 0, 0, 0, 1, 1, 1, 1, 'Bristlebark Blouse'),
|
|
(24068, 14578, 0, 0, 0, 1, 1, 1, 1, 'Dokebi Cord'),
|
|
(24068, 14582, 0, 0, 0, 1, 1, 1, 1, 'Dokebi Cape'),
|
|
(24068, 14744, 0, 0, 0, 1, 1, 1, 1, 'Hulking Chestguard'),
|
|
(24068, 14750, 0, 0, 0, 1, 1, 1, 1, 'Slayer\'s Cuffs'),
|
|
(24068, 14754, 0, 0, 0, 1, 1, 1, 1, 'Slayer\'s Gloves'),
|
|
(24068, 14755, 0, 0, 0, 1, 1, 1, 1, 'Slayer\'s Sash'),
|
|
(24068, 14756, 0, 0, 0, 1, 1, 1, 1, 'Slayer\'s Slippers'),
|
|
(24068, 15121, 0, 0, 0, 1, 1, 1, 1, 'Robust Boots'),
|
|
(24068, 15123, 0, 0, 0, 1, 1, 1, 1, 'Robust Buckler'),
|
|
(24068, 15125, 0, 0, 0, 1, 1, 1, 1, 'Robust Gloves'),
|
|
(24068, 15126, 0, 0, 0, 1, 1, 1, 1, 'Robust Leggings'),
|
|
(24068, 15132, 0, 0, 0, 1, 1, 1, 1, 'Cutthroat\'s Armguards'),
|
|
(24068, 15284, 0, 0, 0, 1, 1, 1, 1, 'Long Battle Bow'),
|
|
(24068, 15337, 0, 0, 0, 1, 1, 1, 1, 'Wrangler\'s Wraps'),
|
|
(24068, 15338, 0, 0, 0, 1, 1, 1, 1, 'Wrangler\'s Mantle'),
|
|
(24068, 15347, 0, 0, 0, 1, 1, 1, 1, 'Pathfinder Belt'),
|
|
(24068, 15522, 0, 0, 0, 1, 1, 1, 1, 'Spiked Chain Shield'),
|
|
(24068, 15525, 0, 0, 0, 1, 1, 1, 1, 'Sentry\'s Slippers'),
|
|
(24068, 15529, 0, 0, 0, 1, 1, 1, 1, 'Sentry\'s Leggings'),
|
|
(24068, 15535, 0, 0, 0, 1, 1, 1, 1, 'Wicked Chain Bracers'),
|
|
(24068, 15537, 0, 0, 0, 1, 1, 1, 1, 'Wicked Chain Cloak'),
|
|
(24068, 15547, 0, 0, 0, 1, 1, 1, 1, 'Thick Scale Cloak'),
|
|
(24068, 15947, 0, 0, 0, 1, 1, 1, 1, 'Sanguine Star'),
|
|
(24069, 720, 0, 0, 0, 1, 1, 1, 1, 'Brawler Gloves'),
|
|
(24069, 3203, 0, 0, 0, 1, 1, 1, 1, 'Dense Triangle Mace'),
|
|
(24069, 13005, 0, 0, 0, 1, 1, 1, 1, 'Amy\'s Blanket'),
|
|
(24069, 13024, 0, 0, 0, 1, 1, 1, 1, 'Beazel\'s Basher'),
|
|
(24069, 13031, 0, 0, 0, 1, 1, 1, 1, 'Orb of Mistmantle'),
|
|
(24069, 13057, 0, 0, 0, 1, 1, 1, 1, 'Bloodpike'),
|
|
(24069, 13097, 0, 0, 0, 1, 1, 1, 1, 'Thunderbrow Ring'),
|
|
(24069, 13099, 0, 0, 0, 1, 1, 1, 1, 'Moccasins of the White Hare'),
|
|
(24069, 13131, 0, 0, 0, 1, 1, 1, 1, 'Sparkleshell Mantle'),
|
|
(24070, 818, 0, 0, 0, 1, 1, 1, 1, 'Tigerseye'),
|
|
(24070, 1738, 0, 0, 0, 1, 1, 1, 1, 'Laced Mail Belt'),
|
|
(24070, 1739, 0, 0, 0, 1, 1, 1, 1, 'Laced Mail Boots'),
|
|
(24070, 1740, 0, 0, 0, 1, 1, 1, 1, 'Laced Mail Bracers'),
|
|
(24070, 1741, 0, 0, 0, 1, 1, 1, 1, 'Laced Cloak'),
|
|
(24070, 1742, 0, 0, 0, 1, 1, 1, 1, 'Laced Mail Gloves'),
|
|
(24070, 1743, 0, 0, 0, 1, 1, 1, 1, 'Laced Mail Pants'),
|
|
(24070, 1744, 0, 0, 0, 1, 1, 1, 1, 'Laced Mail Shoulderpads'),
|
|
(24070, 1745, 0, 0, 0, 1, 1, 1, 1, 'Laced Mail Vest'),
|
|
(24070, 1764, 0, 0, 0, 1, 1, 1, 1, 'Canvas Shoes'),
|
|
(24070, 1766, 0, 0, 0, 1, 1, 1, 1, 'Canvas Cloak'),
|
|
(24070, 1767, 0, 0, 0, 1, 1, 1, 1, 'Canvas Gloves'),
|
|
(24070, 1768, 0, 0, 0, 1, 1, 1, 1, 'Canvas Pants'),
|
|
(24070, 1769, 0, 0, 0, 1, 1, 1, 1, 'Canvas Shoulderpads'),
|
|
(24070, 1770, 0, 0, 0, 1, 1, 1, 1, 'Canvas Vest'),
|
|
(24070, 1787, 0, 0, 0, 1, 1, 1, 1, 'Patched Leather Belt'),
|
|
(24070, 1788, 0, 0, 0, 1, 1, 1, 1, 'Patched Leather Boots'),
|
|
(24070, 1789, 0, 0, 0, 1, 1, 1, 1, 'Patched Leather Bracers'),
|
|
(24070, 1790, 0, 0, 0, 1, 1, 1, 1, 'Patched Cloak'),
|
|
(24070, 1791, 0, 0, 0, 1, 1, 1, 1, 'Patched Leather Gloves'),
|
|
(24070, 1792, 0, 0, 0, 1, 1, 1, 1, 'Patched Leather Pants'),
|
|
(24070, 1793, 0, 0, 0, 1, 1, 1, 1, 'Patched Leather Shoulderpads'),
|
|
(24070, 1794, 0, 0, 0, 1, 1, 1, 1, 'Patched Leather Jerkin'),
|
|
(24070, 1811, 0, 0, 0, 1, 1, 1, 1, 'Blunt Claymore'),
|
|
(24070, 1812, 0, 0, 0, 1, 1, 1, 1, 'Short-handled Battle Axe'),
|
|
(24070, 1813, 0, 0, 0, 1, 1, 1, 1, 'Chipped Quarterstaff'),
|
|
(24070, 1814, 0, 0, 0, 1, 1, 1, 1, 'Battered Mallet'),
|
|
(24070, 1815, 0, 0, 0, 1, 1, 1, 1, 'Ornamental Mace'),
|
|
(24070, 1816, 0, 0, 0, 1, 1, 1, 1, 'Unbalanced Axe'),
|
|
(24070, 1817, 0, 0, 0, 1, 1, 1, 1, 'Stock Shortsword'),
|
|
(24070, 2216, 0, 0, 0, 1, 1, 1, 1, 'Simple Buckler'),
|
|
(24070, 2217, 0, 0, 0, 1, 1, 1, 1, 'Rectangular Shield'),
|
|
(24070, 2764, 0, 0, 0, 1, 1, 1, 1, 'Small Dagger'),
|
|
(24070, 2780, 0, 0, 0, 1, 1, 1, 1, 'Light Hunting Bow'),
|
|
(24070, 2781, 0, 0, 0, 1, 1, 1, 1, 'Dirty Blunderbuss'),
|
|
(24070, 3376, 0, 0, 0, 1, 1, 1, 1, 'Canvas Belt'),
|
|
(24070, 3377, 0, 0, 0, 1, 1, 1, 1, 'Canvas Bracers'),
|
|
(24071, 774, 0, 0, 0, 1, 1, 1, 1, 'Malachite'),
|
|
(24071, 1495, 0, 0, 0, 1, 1, 1, 1, 'Calico Shoes'),
|
|
(24071, 1497, 0, 0, 0, 1, 1, 1, 1, 'Calico Cloak'),
|
|
(24071, 1498, 0, 0, 0, 1, 1, 1, 1, 'Calico Gloves'),
|
|
(24071, 1499, 0, 0, 0, 1, 1, 1, 1, 'Calico Pants'),
|
|
(24071, 1501, 0, 0, 0, 1, 1, 1, 1, 'Calico Tunic'),
|
|
(24071, 1502, 0, 0, 0, 1, 1, 1, 1, 'Warped Leather Belt'),
|
|
(24071, 1503, 0, 0, 0, 1, 1, 1, 1, 'Warped Leather Boots'),
|
|
(24071, 1504, 0, 0, 0, 1, 1, 1, 1, 'Warped Leather Bracers'),
|
|
(24071, 1505, 0, 0, 0, 1, 1, 1, 1, 'Warped Cloak'),
|
|
(24071, 1506, 0, 0, 0, 1, 1, 1, 1, 'Warped Leather Gloves'),
|
|
(24071, 1507, 0, 0, 0, 1, 1, 1, 1, 'Warped Leather Pants'),
|
|
(24071, 1509, 0, 0, 0, 1, 1, 1, 1, 'Warped Leather Vest'),
|
|
(24071, 1510, 0, 0, 0, 1, 1, 1, 1, 'Heavy Hammer'),
|
|
(24071, 1511, 0, 0, 0, 1, 1, 1, 1, 'Commoner\'s Sword'),
|
|
(24071, 1512, 0, 0, 0, 1, 1, 1, 1, 'Crude Battle Axe'),
|
|
(24071, 1513, 0, 0, 0, 1, 1, 1, 1, 'Old Greatsword'),
|
|
(24071, 1514, 0, 0, 0, 1, 1, 1, 1, 'Rusty Warhammer'),
|
|
(24071, 1515, 0, 0, 0, 1, 1, 1, 1, 'Rough Wooden Staff'),
|
|
(24071, 1516, 0, 0, 0, 1, 1, 1, 1, 'Worn Hatchet'),
|
|
(24071, 1730, 0, 0, 0, 1, 1, 1, 1, 'Worn Mail Belt'),
|
|
(24071, 1731, 0, 0, 0, 1, 1, 1, 1, 'Worn Mail Boots'),
|
|
(24071, 1732, 0, 0, 0, 1, 1, 1, 1, 'Worn Mail Bracers'),
|
|
(24071, 1733, 0, 0, 0, 1, 1, 1, 1, 'Worn Cloak'),
|
|
(24071, 1734, 0, 0, 0, 1, 1, 1, 1, 'Worn Mail Gloves'),
|
|
(24071, 1735, 0, 0, 0, 1, 1, 1, 1, 'Worn Mail Pants'),
|
|
(24071, 1737, 0, 0, 0, 1, 1, 1, 1, 'Worn Mail Vest'),
|
|
(24071, 2214, 0, 0, 0, 1, 1, 1, 1, 'Wooden Buckler'),
|
|
(24071, 2215, 0, 0, 0, 1, 1, 1, 1, 'Wooden Shield'),
|
|
(24071, 2763, 0, 0, 0, 1, 1, 1, 1, 'Fisherman Knife'),
|
|
(24071, 2777, 0, 0, 0, 1, 1, 1, 1, 'Feeble Shortbow'),
|
|
(24071, 2778, 0, 0, 0, 1, 1, 1, 1, 'Cheap Blunderbuss'),
|
|
(24071, 3374, 0, 0, 0, 1, 1, 1, 1, 'Calico Belt'),
|
|
(24071, 3375, 0, 0, 0, 1, 1, 1, 1, 'Calico Bracers'),
|
|
(24073, 1364, 0, 0, 0, 1, 1, 1, 1, 'Ragged Leather Vest'),
|
|
(24073, 1366, 0, 0, 0, 1, 1, 1, 1, 'Ragged Leather Pants'),
|
|
(24073, 1367, 0, 0, 0, 1, 1, 1, 1, 'Ragged Leather Boots'),
|
|
(24073, 1368, 0, 0, 0, 1, 1, 1, 1, 'Ragged Leather Gloves'),
|
|
(24073, 1369, 0, 0, 0, 1, 1, 1, 1, 'Ragged Leather Belt'),
|
|
(24073, 1370, 0, 0, 0, 1, 1, 1, 1, 'Ragged Leather Bracers'),
|
|
(24073, 1372, 0, 0, 0, 1, 1, 1, 1, 'Ragged Cloak'),
|
|
(24073, 1374, 0, 0, 0, 1, 1, 1, 1, 'Frayed Shoes'),
|
|
(24073, 1376, 0, 0, 0, 1, 1, 1, 1, 'Frayed Cloak'),
|
|
(24073, 1377, 0, 0, 0, 1, 1, 1, 1, 'Frayed Gloves'),
|
|
(24073, 1378, 0, 0, 0, 1, 1, 1, 1, 'Frayed Pants'),
|
|
(24073, 1380, 0, 0, 0, 1, 1, 1, 1, 'Frayed Robe'),
|
|
(24073, 1411, 0, 0, 0, 1, 1, 1, 1, 'Withered Staff'),
|
|
(24073, 1412, 0, 0, 0, 1, 1, 1, 1, 'Crude Bastard Sword'),
|
|
(24073, 1413, 0, 0, 0, 1, 1, 1, 1, 'Feeble Sword'),
|
|
(24073, 1414, 0, 0, 0, 1, 1, 1, 1, 'Cracked Sledge'),
|
|
(24073, 1415, 0, 0, 0, 1, 1, 1, 1, 'Carpenter\'s Mallet'),
|
|
(24073, 1416, 0, 0, 0, 1, 1, 1, 1, 'Rusty Hatchet'),
|
|
(24073, 1417, 0, 0, 0, 1, 1, 1, 1, 'Beaten Battle Axe'),
|
|
(24073, 1418, 0, 0, 0, 1, 1, 1, 1, 'Worn Leather Belt'),
|
|
(24073, 1419, 0, 0, 0, 1, 1, 1, 1, 'Worn Leather Boots'),
|
|
(24073, 1420, 0, 0, 0, 1, 1, 1, 1, 'Worn Leather Bracers'),
|
|
(24073, 1421, 0, 0, 0, 1, 1, 1, 1, 'Worn Hide Cloak'),
|
|
(24073, 1422, 0, 0, 0, 1, 1, 1, 1, 'Worn Leather Gloves'),
|
|
(24073, 1423, 0, 0, 0, 1, 1, 1, 1, 'Worn Leather Pants'),
|
|
(24073, 1425, 0, 0, 0, 1, 1, 1, 1, 'Worn Leather Vest'),
|
|
(24073, 1427, 0, 0, 0, 1, 1, 1, 1, 'Patchwork Shoes'),
|
|
(24073, 1429, 0, 0, 0, 1, 1, 1, 1, 'Patchwork Cloak'),
|
|
(24073, 1430, 0, 0, 0, 1, 1, 1, 1, 'Patchwork Gloves'),
|
|
(24073, 1431, 0, 0, 0, 1, 1, 1, 1, 'Patchwork Pants'),
|
|
(24073, 1433, 0, 0, 0, 1, 1, 1, 1, 'Patchwork Armor'),
|
|
(24073, 2138, 0, 0, 0, 1, 1, 1, 1, 'Sharpened Letter Opener'),
|
|
(24073, 2210, 0, 0, 0, 1, 1, 1, 1, 'Battered Buckler'),
|
|
(24073, 2211, 0, 0, 0, 1, 1, 1, 1, 'Bent Large Shield'),
|
|
(24073, 2212, 0, 0, 0, 1, 1, 1, 1, 'Cracked Buckler'),
|
|
(24073, 2213, 0, 0, 0, 1, 1, 1, 1, 'Worn Large Shield'),
|
|
(24073, 2635, 0, 0, 0, 1, 1, 1, 1, 'Loose Chain Belt'),
|
|
(24073, 2642, 0, 0, 0, 1, 1, 1, 1, 'Loose Chain Boots'),
|
|
(24073, 2643, 0, 0, 0, 1, 1, 1, 1, 'Loose Chain Bracers'),
|
|
(24073, 2644, 0, 0, 0, 1, 1, 1, 1, 'Loose Chain Cloak'),
|
|
(24073, 2645, 0, 0, 0, 1, 1, 1, 1, 'Loose Chain Gloves'),
|
|
(24073, 2646, 0, 0, 0, 1, 1, 1, 1, 'Loose Chain Pants'),
|
|
(24073, 2648, 0, 0, 0, 1, 1, 1, 1, 'Loose Chain Vest'),
|
|
(24073, 2649, 0, 0, 0, 1, 1, 1, 1, 'Flimsy Chain Belt'),
|
|
(24073, 2650, 0, 0, 0, 1, 1, 1, 1, 'Flimsy Chain Boots'),
|
|
(24073, 2651, 0, 0, 0, 1, 1, 1, 1, 'Flimsy Chain Bracers'),
|
|
(24073, 2652, 0, 0, 0, 1, 1, 1, 1, 'Flimsy Chain Cloak'),
|
|
(24073, 2653, 0, 0, 0, 1, 1, 1, 1, 'Flimsy Chain Gloves'),
|
|
(24073, 2654, 0, 0, 0, 1, 1, 1, 1, 'Flimsy Chain Pants'),
|
|
(24073, 2656, 0, 0, 0, 1, 1, 1, 1, 'Flimsy Chain Vest'),
|
|
(24073, 2773, 0, 0, 0, 1, 1, 1, 1, 'Cracked Shortbow'),
|
|
(24073, 2774, 0, 0, 0, 1, 1, 1, 1, 'Rust-covered Blunderbuss'),
|
|
(24073, 3363, 0, 0, 0, 1, 1, 1, 1, 'Frayed Belt'),
|
|
(24073, 3365, 0, 0, 0, 1, 1, 1, 1, 'Frayed Bracers'),
|
|
(24073, 3370, 0, 0, 0, 1, 1, 1, 1, 'Patchwork Belt'),
|
|
(24073, 3373, 0, 0, 0, 1, 1, 1, 1, 'Patchwork Bracers'),
|
|
(24074, 727, 0, 0, 0, 1, 1, 1, 1, 'Notched Shortsword'),
|
|
(24074, 2140, 0, 0, 0, 1, 1, 1, 1, 'Carving Knife'),
|
|
(24074, 2957, 0, 0, 0, 1, 1, 1, 1, 'Journeyman\'s Vest'),
|
|
(24074, 2958, 0, 0, 0, 1, 1, 1, 1, 'Journeyman\'s Pants'),
|
|
(24074, 2961, 0, 0, 0, 1, 1, 1, 1, 'Burnt Leather Vest'),
|
|
(24074, 2962, 0, 0, 0, 1, 1, 1, 1, 'Burnt Leather Breeches'),
|
|
(24074, 2965, 0, 0, 0, 1, 1, 1, 1, 'Warrior\'s Tunic'),
|
|
(24074, 2966, 0, 0, 0, 1, 1, 1, 1, 'Warrior\'s Pants'),
|
|
(24074, 4561, 0, 0, 0, 1, 1, 1, 1, 'Scalping Tomahawk'),
|
|
(24074, 4562, 0, 0, 0, 1, 1, 1, 1, 'Severing Axe'),
|
|
(24074, 6511, 0, 0, 0, 1, 1, 1, 1, 'Journeyman\'s Robe'),
|
|
(24074, 7108, 0, 0, 0, 1, 1, 1, 1, 'Infantry Shield'),
|
|
(24074, 8178, 0, 0, 0, 1, 1, 1, 1, 'Training Sword'),
|
|
(24074, 8180, 0, 0, 0, 1, 1, 1, 1, 'Hunting Bow'),
|
|
(24074, 14090, 0, 0, 0, 1, 1, 1, 1, 'Beaded Britches'),
|
|
(24074, 14091, 0, 0, 0, 1, 1, 1, 1, 'Beaded Robe'),
|
|
(24074, 14094, 0, 0, 0, 1, 1, 1, 1, 'Beaded Wraps'),
|
|
(24074, 15009, 0, 0, 0, 1, 1, 1, 1, 'Primal Leggings'),
|
|
(24074, 15010, 0, 0, 0, 1, 1, 1, 1, 'Primal Wraps'),
|
|
(24074, 15477, 0, 0, 0, 1, 1, 1, 1, 'Charger\'s Pants'),
|
|
(24074, 15479, 0, 0, 0, 1, 1, 1, 1, 'Charger\'s Armor'),
|
|
(24074, 15925, 0, 0, 0, 1, 1, 1, 1, 'Journeyman\'s Stave'),
|
|
(24074, 15969, 0, 0, 0, 1, 1, 1, 1, 'Beaded Orb'),
|
|
(24075, 774, 0, 0, 0, 1, 1, 1, 1, 'Malachite'),
|
|
(24075, 2075, 0, 0, 0, 1, 1, 1, 1, 'Priest\'s Mace'),
|
|
(24075, 3192, 0, 0, 0, 1, 1, 1, 1, 'Short Bastard Sword'),
|
|
(24075, 3282, 0, 0, 0, 1, 1, 1, 1, 'Battle Chain Pants'),
|
|
(24075, 3283, 0, 0, 0, 1, 1, 1, 1, 'Battle Chain Tunic'),
|
|
(24075, 3287, 0, 0, 0, 1, 1, 1, 1, 'Tribal Pants'),
|
|
(24075, 3288, 0, 0, 0, 1, 1, 1, 1, 'Tribal Vest'),
|
|
(24075, 3291, 0, 0, 0, 1, 1, 1, 1, 'Ancestral Woollies'),
|
|
(24075, 3292, 0, 0, 0, 1, 1, 1, 1, 'Ancestral Tunic'),
|
|
(24075, 4564, 0, 0, 0, 1, 1, 1, 1, 'Spiked Club'),
|
|
(24075, 4566, 0, 0, 0, 1, 1, 1, 1, 'Sturdy Quarterstaff'),
|
|
(24075, 4577, 0, 0, 0, 1, 1, 1, 1, 'Compact Shotgun'),
|
|
(24075, 5069, 0, 0, 0, 1, 1, 1, 1, 'Fire Wand'),
|
|
(24075, 6266, 0, 0, 0, 1, 1, 1, 1, 'Disciple\'s Vest'),
|
|
(24075, 6267, 0, 0, 0, 1, 1, 1, 1, 'Disciple\'s Pants'),
|
|
(24075, 6268, 0, 0, 0, 1, 1, 1, 1, 'Pioneer Tunic'),
|
|
(24075, 6269, 0, 0, 0, 1, 1, 1, 1, 'Pioneer Trousers'),
|
|
(24075, 6336, 0, 0, 0, 1, 1, 1, 1, 'Infantry Tunic'),
|
|
(24075, 6337, 0, 0, 0, 1, 1, 1, 1, 'Infantry Leggings'),
|
|
(24075, 6512, 0, 0, 0, 1, 1, 1, 1, 'Disciple\'s Robe'),
|
|
(24075, 6527, 0, 0, 0, 1, 1, 1, 1, 'Ancestral Robe'),
|
|
(24075, 9753, 0, 0, 0, 1, 1, 1, 1, 'Gypsy Buckler'),
|
|
(24075, 9764, 0, 0, 0, 1, 1, 1, 1, 'Cadet Shield'),
|
|
(24075, 15298, 0, 0, 0, 1, 1, 1, 1, 'Grizzly Buckler'),
|
|
(24075, 15486, 0, 0, 0, 1, 1, 1, 1, 'War Torn Shield'),
|
|
(24075, 15932, 0, 0, 0, 1, 1, 1, 1, 'Disciple\'s Stein'),
|
|
(24075, 15944, 0, 0, 0, 1, 1, 1, 1, 'Ancestral Orb'),
|
|
(24076, 826, 0, 0, 0, 1, 1, 1, 1, 'Brutish Riverpaw Axe'),
|
|
(24076, 1211, 0, 0, 0, 1, 1, 1, 1, 'Gnoll War Harness'),
|
|
(24076, 1287, 0, 0, 0, 1, 1, 1, 1, 'Giant Tarantula Fang'),
|
|
(24076, 1394, 0, 0, 0, 1, 1, 1, 1, 'Driftwood Club'),
|
|
(24076, 1926, 0, 0, 0, 1, 1, 1, 1, 'Weighted Sap'),
|
|
(24076, 2073, 0, 0, 0, 1, 1, 1, 1, 'Dwarven Hatchet'),
|
|
(24076, 2088, 0, 0, 0, 1, 1, 1, 1, 'Long Crawler Limb'),
|
|
(24076, 2632, 0, 0, 0, 1, 1, 1, 1, 'Curved Dagger'),
|
|
(24076, 2976, 0, 0, 0, 1, 1, 1, 1, 'Hunting Gloves'),
|
|
(24076, 2978, 0, 0, 0, 1, 1, 1, 1, 'Veteran Leggings'),
|
|
(24076, 2980, 0, 0, 0, 1, 1, 1, 1, 'Veteran Gloves'),
|
|
(24076, 3036, 0, 0, 0, 1, 1, 1, 1, 'Heavy Shortbow'),
|
|
(24076, 3302, 0, 0, 0, 1, 1, 1, 1, 'Brackwater Boots'),
|
|
(24076, 3307, 0, 0, 0, 1, 1, 1, 1, 'Barbaric Cloth Boots'),
|
|
(24076, 3308, 0, 0, 0, 1, 1, 1, 1, 'Barbaric Cloth Gloves'),
|
|
(24076, 3314, 0, 0, 0, 1, 1, 1, 1, 'Ceremonial Leather Gloves'),
|
|
(24076, 3651, 0, 0, 0, 1, 1, 1, 1, 'Veteran Shield'),
|
|
(24076, 3652, 0, 0, 0, 1, 1, 1, 1, 'Hunting Buckler'),
|
|
(24076, 3653, 0, 0, 0, 1, 1, 1, 1, 'Ceremonial Buckler'),
|
|
(24076, 3654, 0, 0, 0, 1, 1, 1, 1, 'Brackwater Shield'),
|
|
(24076, 4569, 0, 0, 0, 1, 1, 1, 1, 'Staunch Hammer'),
|
|
(24076, 4570, 0, 0, 0, 1, 1, 1, 1, 'Birchwood Maul'),
|
|
(24076, 4767, 0, 0, 0, 1, 1, 1, 1, 'Coppercloth Gloves'),
|
|
(24076, 4768, 0, 0, 0, 1, 1, 1, 1, 'Adept\'s Gloves'),
|
|
(24076, 4771, 0, 0, 0, 1, 1, 1, 1, 'Harvest Cloak'),
|
|
(24076, 5071, 0, 0, 0, 1, 1, 1, 1, 'Shadow Wand'),
|
|
(24076, 6537, 0, 0, 0, 1, 1, 1, 1, 'Willow Boots'),
|
|
(24076, 6542, 0, 0, 0, 1, 1, 1, 1, 'Willow Cape'),
|
|
(24076, 6543, 0, 0, 0, 1, 1, 1, 1, 'Willow Bracers'),
|
|
(24076, 6550, 0, 0, 0, 1, 1, 1, 1, 'Soldier\'s Wristguards'),
|
|
(24076, 6556, 0, 0, 0, 1, 1, 1, 1, 'Bard\'s Bracers'),
|
|
(24076, 6558, 0, 0, 0, 1, 1, 1, 1, 'Bard\'s Belt'),
|
|
(24076, 9747, 0, 0, 0, 1, 1, 1, 1, 'Simple Britches'),
|
|
(24076, 9748, 0, 0, 0, 1, 1, 1, 1, 'Simple Robe'),
|
|
(24076, 9749, 0, 0, 0, 1, 1, 1, 1, 'Simple Blouse'),
|
|
(24076, 9756, 0, 0, 0, 1, 1, 1, 1, 'Gypsy Trousers'),
|
|
(24076, 9757, 0, 0, 0, 1, 1, 1, 1, 'Gypsy Tunic'),
|
|
(24076, 9763, 0, 0, 0, 1, 1, 1, 1, 'Cadet Leggings'),
|
|
(24076, 9765, 0, 0, 0, 1, 1, 1, 1, 'Cadet Vest'),
|
|
(24076, 14097, 0, 0, 0, 1, 1, 1, 1, 'Native Pants'),
|
|
(24076, 14113, 0, 0, 0, 1, 1, 1, 1, 'Aboriginal Sash'),
|
|
(24076, 14365, 0, 0, 0, 1, 1, 1, 1, 'Mystic\'s Cape'),
|
|
(24076, 15011, 0, 0, 0, 1, 1, 1, 1, 'Lupine Cord'),
|
|
(24076, 15303, 0, 0, 0, 1, 1, 1, 1, 'Grizzly Pants'),
|
|
(24076, 15309, 0, 0, 0, 1, 1, 1, 1, 'Feral Cloak'),
|
|
(24076, 15485, 0, 0, 0, 1, 1, 1, 1, 'War Torn Pants'),
|
|
(24076, 15491, 0, 0, 0, 1, 1, 1, 1, 'Bloodspattered Gloves'),
|
|
(24076, 15492, 0, 0, 0, 1, 1, 1, 1, 'Bloodspattered Sash'),
|
|
(24076, 15495, 0, 0, 0, 1, 1, 1, 1, 'Bloodspattered Wristbands'),
|
|
(24076, 15933, 0, 0, 0, 1, 1, 1, 1, 'Simple Branch'),
|
|
(24076, 15970, 0, 0, 0, 1, 1, 1, 1, 'Native Branch'),
|
|
(24077, 827, 0, 0, 0, 1, 1, 1, 1, 'Wicked Blackjack'),
|
|
(24077, 1214, 0, 0, 0, 1, 1, 1, 1, 'Gnoll Punisher'),
|
|
(24077, 1405, 0, 0, 0, 1, 1, 1, 1, 'Foamspittle Staff'),
|
|
(24077, 1928, 0, 0, 0, 1, 1, 1, 1, 'Defias Mage Staff'),
|
|
(24077, 1958, 0, 0, 0, 1, 1, 1, 1, 'Petrified Shinbone'),
|
|
(24077, 1959, 0, 0, 0, 1, 1, 1, 1, 'Cold Iron Pick'),
|
|
(24077, 2079, 0, 0, 0, 1, 1, 1, 1, 'Sergeant\'s Warhammer'),
|
|
(24077, 2969, 0, 0, 0, 1, 1, 1, 1, 'Spellbinder Vest'),
|
|
(24077, 2970, 0, 0, 0, 1, 1, 1, 1, 'Spellbinder Pants'),
|
|
(24077, 2973, 0, 0, 0, 1, 1, 1, 1, 'Hunting Tunic'),
|
|
(24077, 2974, 0, 0, 0, 1, 1, 1, 1, 'Hunting Pants'),
|
|
(24077, 2977, 0, 0, 0, 1, 1, 1, 1, 'Veteran Armor'),
|
|
(24077, 2983, 0, 0, 0, 1, 1, 1, 1, 'Seer\'s Boots'),
|
|
(24077, 3205, 0, 0, 0, 1, 1, 1, 1, 'Inscribed Leather Bracers'),
|
|
(24077, 3305, 0, 0, 0, 1, 1, 1, 1, 'Brackwater Leggings'),
|
|
(24077, 3309, 0, 0, 0, 1, 1, 1, 1, 'Barbaric Loincloth'),
|
|
(24077, 3315, 0, 0, 0, 1, 1, 1, 1, 'Ceremonial Leather Loincloth'),
|
|
(24077, 3645, 0, 0, 0, 1, 1, 1, 1, 'Seer\'s Cuffs'),
|
|
(24077, 4567, 0, 0, 0, 1, 1, 1, 1, 'Merc Sword'),
|
|
(24077, 4571, 0, 0, 0, 1, 1, 1, 1, 'War Knife'),
|
|
(24077, 4676, 0, 0, 0, 1, 1, 1, 1, 'Skeletal Gauntlets'),
|
|
(24077, 4701, 0, 0, 0, 1, 1, 1, 1, 'Inscribed Cloak'),
|
|
(24077, 5212, 0, 0, 0, 1, 1, 1, 1, 'Blazing Wand'),
|
|
(24077, 6378, 0, 0, 0, 1, 1, 1, 1, 'Seer\'s Cape'),
|
|
(24077, 6379, 0, 0, 0, 1, 1, 1, 1, 'Inscribed Leather Belt'),
|
|
(24077, 6528, 0, 0, 0, 1, 1, 1, 1, 'Spellbinder Robe'),
|
|
(24077, 6539, 0, 0, 0, 1, 1, 1, 1, 'Willow Belt'),
|
|
(24077, 6541, 0, 0, 0, 1, 1, 1, 1, 'Willow Gloves'),
|
|
(24077, 6546, 0, 0, 0, 1, 1, 1, 1, 'Soldier\'s Leggings'),
|
|
(24077, 6547, 0, 0, 0, 1, 1, 1, 1, 'Soldier\'s Gauntlets'),
|
|
(24077, 6548, 0, 0, 0, 1, 1, 1, 1, 'Soldier\'s Girdle'),
|
|
(24077, 6551, 0, 0, 0, 1, 1, 1, 1, 'Soldier\'s Boots'),
|
|
(24077, 6554, 0, 0, 0, 1, 1, 1, 1, 'Bard\'s Gloves'),
|
|
(24077, 6557, 0, 0, 0, 1, 1, 1, 1, 'Bard\'s Boots'),
|
|
(24077, 6559, 0, 0, 0, 1, 1, 1, 1, 'Bard\'s Buckler'),
|
|
(24077, 6560, 0, 0, 0, 1, 1, 1, 1, 'Soldier\'s Shield'),
|
|
(24077, 9785, 0, 0, 0, 1, 1, 1, 1, 'Raider\'s Bracers'),
|
|
(24077, 9786, 0, 0, 0, 1, 1, 1, 1, 'Raider\'s Cloak'),
|
|
(24077, 14025, 0, 0, 0, 1, 1, 1, 1, 'Mystic\'s Belt'),
|
|
(24077, 14096, 0, 0, 0, 1, 1, 1, 1, 'Native Vest'),
|
|
(24077, 14109, 0, 0, 0, 1, 1, 1, 1, 'Native Robe'),
|
|
(24077, 14114, 0, 0, 0, 1, 1, 1, 1, 'Aboriginal Footwraps'),
|
|
(24077, 14117, 0, 0, 0, 1, 1, 1, 1, 'Aboriginal Gloves'),
|
|
(24077, 14119, 0, 0, 0, 1, 1, 1, 1, 'Aboriginal Loincloth'),
|
|
(24077, 14123, 0, 0, 0, 1, 1, 1, 1, 'Ritual Cape'),
|
|
(24077, 14366, 0, 0, 0, 1, 1, 1, 1, 'Mystic\'s Bracelets'),
|
|
(24077, 14561, 0, 0, 0, 1, 1, 1, 1, 'Prospector\'s Cuffs'),
|
|
(24077, 14563, 0, 0, 0, 1, 1, 1, 1, 'Prospector\'s Cloak'),
|
|
(24077, 14722, 0, 0, 0, 1, 1, 1, 1, 'War Paint Anklewraps'),
|
|
(24077, 14723, 0, 0, 0, 1, 1, 1, 1, 'War Paint Bindings'),
|
|
(24077, 14724, 0, 0, 0, 1, 1, 1, 1, 'War Paint Cloak'),
|
|
(24077, 14725, 0, 0, 0, 1, 1, 1, 1, 'War Paint Waistband'),
|
|
(24077, 15012, 0, 0, 0, 1, 1, 1, 1, 'Lupine Slippers'),
|
|
(24077, 15014, 0, 0, 0, 1, 1, 1, 1, 'Lupine Buckler'),
|
|
(24077, 15016, 0, 0, 0, 1, 1, 1, 1, 'Lupine Handwraps'),
|
|
(24077, 15210, 0, 0, 0, 1, 1, 1, 1, 'Raider Shortsword'),
|
|
(24077, 15268, 0, 0, 0, 1, 1, 1, 1, 'Twin-bladed Axe'),
|
|
(24077, 15304, 0, 0, 0, 1, 1, 1, 1, 'Grizzly Jerkin'),
|
|
(24077, 15306, 0, 0, 0, 1, 1, 1, 1, 'Feral Bindings'),
|
|
(24077, 15308, 0, 0, 0, 1, 1, 1, 1, 'Feral Cord'),
|
|
(24077, 15487, 0, 0, 0, 1, 1, 1, 1, 'War Torn Tunic'),
|
|
(24077, 15489, 0, 0, 0, 1, 1, 1, 1, 'Bloodspattered Sabatons'),
|
|
(24077, 15501, 0, 0, 0, 1, 1, 1, 1, 'Outrunner\'s Cloak'),
|
|
(24077, 15926, 0, 0, 0, 1, 1, 1, 1, 'Spellbinder Orb'),
|
|
(24078, 1391, 0, 0, 0, 1, 1, 1, 1, 'Riverpaw Mystic Staff'),
|
|
(24078, 1440, 0, 0, 0, 1, 1, 1, 1, 'Gnoll Skull Basher'),
|
|
(24078, 1446, 0, 0, 0, 1, 1, 1, 1, 'Blackrock Boots'),
|
|
(24078, 1469, 0, 0, 0, 1, 1, 1, 1, 'Scimitar of Atun'),
|
|
(24078, 1473, 0, 0, 0, 1, 1, 1, 1, 'Riverside Staff'),
|
|
(24078, 1929, 0, 0, 0, 1, 1, 1, 1, 'Silk-threaded Trousers'),
|
|
(24078, 1936, 0, 0, 0, 1, 1, 1, 1, 'Goblin Screwdriver'),
|
|
(24078, 1943, 0, 0, 0, 1, 1, 1, 1, 'Goblin Mail Leggings'),
|
|
(24078, 1944, 0, 0, 0, 1, 1, 1, 1, 'Metalworking Gloves'),
|
|
(24078, 1945, 0, 0, 0, 1, 1, 1, 1, 'Woodworking Gloves'),
|
|
(24078, 2078, 0, 0, 0, 1, 1, 1, 1, 'Northern Shortsword'),
|
|
(24078, 2984, 0, 0, 0, 1, 1, 1, 1, 'Seer\'s Gloves'),
|
|
(24078, 2987, 0, 0, 0, 1, 1, 1, 1, 'Inscribed Leather Boots'),
|
|
(24078, 2988, 0, 0, 0, 1, 1, 1, 1, 'Inscribed Leather Gloves'),
|
|
(24078, 3040, 0, 0, 0, 1, 1, 1, 1, 'Hunter\'s Muzzle Loader'),
|
|
(24078, 3195, 0, 0, 0, 1, 1, 1, 1, 'Barbaric Battle Axe'),
|
|
(24078, 3196, 0, 0, 0, 1, 1, 1, 1, 'Edged Bastard Sword'),
|
|
(24078, 3211, 0, 0, 0, 1, 1, 1, 1, 'Burnished Bracers'),
|
|
(24078, 3306, 0, 0, 0, 1, 1, 1, 1, 'Brackwater Vest'),
|
|
(24078, 3310, 0, 0, 0, 1, 1, 1, 1, 'Barbaric Cloth Vest'),
|
|
(24078, 3313, 0, 0, 0, 1, 1, 1, 1, 'Ceremonial Leather Harness'),
|
|
(24078, 4290, 0, 0, 0, 1, 1, 1, 1, 'Dust Bowl'),
|
|
(24078, 4575, 0, 0, 0, 1, 1, 1, 1, 'Medicine Staff'),
|
|
(24078, 4695, 0, 0, 0, 1, 1, 1, 1, 'Burnished Cloak'),
|
|
(24078, 4699, 0, 0, 0, 1, 1, 1, 1, 'Seer\'s Belt'),
|
|
(24078, 6380, 0, 0, 0, 1, 1, 1, 1, 'Inscribed Buckler'),
|
|
(24078, 6531, 0, 0, 0, 1, 1, 1, 1, 'Barbaric Cloth Robe'),
|
|
(24078, 6536, 0, 0, 0, 1, 1, 1, 1, 'Willow Vest'),
|
|
(24078, 6538, 0, 0, 0, 1, 1, 1, 1, 'Willow Robe'),
|
|
(24078, 6540, 0, 0, 0, 1, 1, 1, 1, 'Willow Pants'),
|
|
(24078, 6545, 0, 0, 0, 1, 1, 1, 1, 'Soldier\'s Armor'),
|
|
(24078, 6552, 0, 0, 0, 1, 1, 1, 1, 'Bard\'s Tunic'),
|
|
(24078, 6553, 0, 0, 0, 1, 1, 1, 1, 'Bard\'s Trousers'),
|
|
(24078, 7554, 0, 0, 0, 1, 1, 1, 1, 'Willow Branch'),
|
|
(24078, 9775, 0, 0, 0, 1, 1, 1, 1, 'Bandit Cinch'),
|
|
(24078, 9777, 0, 0, 0, 1, 1, 1, 1, 'Bandit Bracers'),
|
|
(24078, 9779, 0, 0, 0, 1, 1, 1, 1, 'Bandit Cloak'),
|
|
(24078, 9784, 0, 0, 0, 1, 1, 1, 1, 'Raider\'s Boots'),
|
|
(24078, 9787, 0, 0, 0, 1, 1, 1, 1, 'Raider\'s Gauntlets'),
|
|
(24078, 9788, 0, 0, 0, 1, 1, 1, 1, 'Raider\'s Belt'),
|
|
(24078, 9789, 0, 0, 0, 1, 1, 1, 1, 'Raider\'s Legguards'),
|
|
(24078, 9790, 0, 0, 0, 1, 1, 1, 1, 'Raider\'s Shield'),
|
|
(24078, 14122, 0, 0, 0, 1, 1, 1, 1, 'Ritual Bands'),
|
|
(24078, 14131, 0, 0, 0, 1, 1, 1, 1, 'Ritual Belt'),
|
|
(24078, 14160, 0, 0, 0, 1, 1, 1, 1, 'Pagan Bands'),
|
|
(24078, 14161, 0, 0, 0, 1, 1, 1, 1, 'Pagan Cape'),
|
|
(24078, 14166, 0, 0, 0, 1, 1, 1, 1, 'Buccaneer\'s Bracers'),
|
|
(24078, 14167, 0, 0, 0, 1, 1, 1, 1, 'Buccaneer\'s Cape'),
|
|
(24078, 14174, 0, 0, 0, 1, 1, 1, 1, 'Buccaneer\'s Boots'),
|
|
(24078, 14364, 0, 0, 0, 1, 1, 1, 1, 'Mystic\'s Slippers'),
|
|
(24078, 14367, 0, 0, 0, 1, 1, 1, 1, 'Mystic\'s Gloves'),
|
|
(24078, 14370, 0, 0, 0, 1, 1, 1, 1, 'Mystic\'s Woolies'),
|
|
(24078, 14559, 0, 0, 0, 1, 1, 1, 1, 'Prospector\'s Sash'),
|
|
(24078, 14560, 0, 0, 0, 1, 1, 1, 1, 'Prospector\'s Boots'),
|
|
(24078, 14564, 0, 0, 0, 1, 1, 1, 1, 'Prospector\'s Mitts'),
|
|
(24078, 14726, 0, 0, 0, 1, 1, 1, 1, 'War Paint Gloves'),
|
|
(24078, 14727, 0, 0, 0, 1, 1, 1, 1, 'War Paint Legguards'),
|
|
(24078, 15017, 0, 0, 0, 1, 1, 1, 1, 'Lupine Leggings'),
|
|
(24078, 15114, 0, 0, 0, 1, 1, 1, 1, 'Rigid Cape'),
|
|
(24078, 15222, 0, 0, 0, 1, 1, 1, 1, 'Barbed Club'),
|
|
(24078, 15305, 0, 0, 0, 1, 1, 1, 1, 'Feral Shoes'),
|
|
(24078, 15307, 0, 0, 0, 1, 1, 1, 1, 'Feral Buckler'),
|
|
(24078, 15310, 0, 0, 0, 1, 1, 1, 1, 'Feral Gloves'),
|
|
(24078, 15493, 0, 0, 0, 1, 1, 1, 1, 'Bloodspattered Loincloth'),
|
|
(24078, 15494, 0, 0, 0, 1, 1, 1, 1, 'Bloodspattered Shield'),
|
|
(24078, 15497, 0, 0, 0, 1, 1, 1, 1, 'Outrunner\'s Cord'),
|
|
(24078, 15499, 0, 0, 0, 1, 1, 1, 1, 'Outrunner\'s Cuffs'),
|
|
(24078, 15507, 0, 0, 0, 1, 1, 1, 1, 'Grunt\'s Bracers'),
|
|
(24078, 15508, 0, 0, 0, 1, 1, 1, 1, 'Grunt\'s Cape'),
|
|
(24078, 15945, 0, 0, 0, 1, 1, 1, 1, 'Runic Stave'),
|
|
(24079, 869, 0, 0, 0, 1, 1, 1, 1, 'Dazzling Longsword'),
|
|
(24079, 870, 0, 0, 0, 1, 1, 1, 1, 'Fiery War Axe'),
|
|
(24079, 873, 0, 0, 0, 1, 1, 1, 1, 'Staff of Jordan'),
|
|
(24079, 1204, 0, 0, 0, 1, 1, 1, 1, 'The Green Tower'),
|
|
(24080, 867, 0, 0, 0, 1, 1, 1, 1, 'Gloves of Holy Might'),
|
|
(24080, 868, 0, 0, 0, 1, 1, 1, 1, 'Ardent Custodian'),
|
|
(24080, 1980, 0, 0, 0, 1, 1, 1, 1, 'Underworld Band'),
|
|
(24080, 2825, 0, 0, 0, 1, 1, 1, 1, 'Bow of Searing Arrows'),
|
|
(24081, 1981, 0, 0, 0, 1, 1, 1, 1, 'Icemail Jerkin'),
|
|
(24081, 1982, 0, 0, 0, 1, 1, 1, 1, 'Nightblade'),
|
|
(24081, 2164, 0, 0, 0, 1, 1, 1, 1, 'Gut Ripper'),
|
|
(24081, 14549, 0, 0, 0, 1, 1, 1, 1, 'Boots of Avoidance'),
|
|
(24082, 871, 0, 0, 0, 1, 1, 1, 1, 'Flurry Axe'),
|
|
(24082, 940, 0, 0, 0, 1, 1, 1, 1, 'Robes of Insight'),
|
|
(24082, 1169, 0, 0, 0, 1, 1, 1, 1, 'Blackskull Shield'),
|
|
(24082, 1447, 0, 0, 0, 1, 1, 1, 1, 'Ring of Saviors'),
|
|
(24083, 943, 0, 0, 0, 1, 1, 1, 1, 'Warden Staff'),
|
|
(24083, 2100, 0, 0, 0, 1, 1, 1, 1, 'Precisely Calibrated Boomstick'),
|
|
(24083, 2291, 0, 0, 0, 1, 1, 1, 1, 'Kang the Decapitator'),
|
|
(24083, 14551, 0, 0, 0, 1, 1, 1, 1, 'Edgemaster\'s Handguards'),
|
|
(24084, 809, 0, 0, 0, 1, 1, 1, 1, 'Bloodrazor'),
|
|
(24084, 1315, 0, 0, 0, 1, 1, 1, 1, 'Lei of Lilies'),
|
|
(24084, 1979, 0, 0, 0, 1, 1, 1, 1, 'Wall of the Dead'),
|
|
(24084, 17007, 0, 0, 0, 1, 1, 1, 1, 'Stonerender Gauntlets'),
|
|
(24085, 942, 0, 0, 0, 1, 1, 1, 1, 'Freezing Band'),
|
|
(24085, 2163, 0, 0, 0, 1, 1, 1, 1, 'Shadowblade'),
|
|
(24085, 2824, 0, 0, 0, 1, 1, 1, 1, 'Hurricane'),
|
|
(24085, 2915, 0, 0, 0, 1, 1, 1, 1, 'Taran Icebreaker'),
|
|
(24086, 810, 0, 0, 0, 1, 1, 1, 1, 'Hammer of the Northern Wind'),
|
|
(24086, 812, 0, 0, 0, 1, 1, 1, 1, 'Glowing Brightwood Staff'),
|
|
(24086, 3075, 0, 0, 0, 1, 1, 1, 1, 'Eye of Flame'),
|
|
(24086, 14552, 0, 0, 0, 1, 1, 1, 1, 'Stockade Pauldrons'),
|
|
(24087, 647, 0, 0, 0, 1, 1, 1, 1, 'Destiny'),
|
|
(24087, 811, 0, 0, 0, 1, 1, 1, 1, 'Axe of the Deep Woods'),
|
|
(24087, 833, 0, 0, 0, 1, 1, 1, 1, 'Lifestone'),
|
|
(24087, 2244, 0, 0, 0, 1, 1, 1, 1, 'Krol Blade'),
|
|
(24088, 1168, 0, 0, 0, 1, 1, 1, 1, 'Skullflame Shield'),
|
|
(24088, 2099, 0, 0, 0, 1, 1, 1, 1, 'Dwarven Hand Cannon'),
|
|
(24088, 2245, 0, 0, 0, 1, 1, 1, 1, 'Helm of Narv'),
|
|
(24088, 2246, 0, 0, 0, 1, 1, 1, 1, 'Myrmidon\'s Signet'),
|
|
(24089, 944, 0, 0, 0, 1, 1, 1, 1, 'Elemental Mage Staff'),
|
|
(24089, 1263, 0, 0, 0, 1, 1, 1, 1, 'Brain Hacker'),
|
|
(24089, 1443, 0, 0, 0, 1, 1, 1, 1, 'Jeweled Amulet of Cainwyn'),
|
|
(24089, 14553, 0, 0, 0, 1, 1, 1, 1, 'Sash of Mercy'),
|
|
(24090, 2243, 0, 0, 0, 1, 1, 1, 1, 'Hand of Edward the Odd'),
|
|
(24090, 14554, 0, 0, 0, 1, 1, 1, 1, 'Cloudkeeper Legplates'),
|
|
(24090, 14555, 0, 0, 0, 1, 1, 1, 1, 'Alcor\'s Sunrazor'),
|
|
(24091, 1728, 0, 0, 0, 1, 1, 1, 1, 'Teebu\'s Blazing Longsword'),
|
|
(24091, 2801, 0, 0, 0, 1, 1, 1, 1, 'Blade of Hanna'),
|
|
(24091, 3475, 0, 0, 0, 1, 1, 1, 1, 'Cloak of Flames'),
|
|
(24092, 22541, 0, 0, 0, 1, 1, 1, 1, 'Formula: Enchant Shield - Resistance'),
|
|
(24092, 22553, 0, 0, 0, 1, 1, 1, 1, 'Formula: Enchant Weapon - Potency'),
|
|
(24092, 22557, 0, 0, 0, 1, 1, 1, 1, 'Formula: Enchant Weapon - Battlemaster'),
|
|
(24092, 22558, 0, 0, 0, 1, 1, 1, 1, 'Formula: Enchant Weapon - Spellsurge'),
|
|
(24092, 22912, 0, 0, 0, 1, 1, 1, 1, 'Recipe: Heroic Potion'),
|
|
(24092, 22913, 0, 0, 0, 1, 1, 1, 1, 'Recipe: Haste Potion'),
|
|
(24092, 22914, 0, 0, 0, 1, 1, 1, 1, 'Recipe: Destruction Potion'),
|
|
(24092, 22919, 0, 0, 0, 1, 1, 1, 1, 'Recipe: Elixir of Major Mageblood'),
|
|
(24092, 24164, 0, 0, 0, 1, 1, 1, 1, 'Design: Delicate Eternium Ring'),
|
|
(24092, 24166, 0, 0, 0, 1, 1, 1, 1, 'Design: Thick Felsteel Necklace'),
|
|
(24092, 24167, 0, 0, 0, 1, 1, 1, 1, 'Design: Living Ruby Pendant'),
|
|
(24092, 24168, 0, 0, 0, 1, 1, 1, 1, 'Design: Braided Eternium Chain'),
|
|
(24092, 24169, 0, 0, 0, 1, 1, 1, 1, 'Design: Eye of the Night'),
|
|
(24092, 24192, 0, 0, 0, 1, 1, 1, 1, 'Design: Bright Living Ruby'),
|
|
(24092, 24193, 0, 0, 0, 1, 1, 1, 1, 'Design: Bold Living Ruby'),
|
|
(24092, 24194, 0, 0, 0, 1, 1, 1, 1, 'Design: Delicate Living Ruby'),
|
|
(24092, 24195, 0, 0, 0, 1, 1, 1, 1, 'Design: Teardrop Living Ruby'),
|
|
(24092, 24196, 0, 0, 0, 1, 1, 1, 1, 'Design: Runed Living Ruby'),
|
|
(24092, 24197, 0, 0, 0, 1, 1, 1, 1, 'Design: Subtle Living Ruby'),
|
|
(24092, 24198, 0, 0, 0, 1, 1, 1, 1, 'Design: Flashing Living Ruby'),
|
|
(24092, 24199, 0, 0, 0, 1, 1, 1, 1, 'Design: Solid Star of Elune'),
|
|
(24092, 24200, 0, 0, 0, 1, 1, 1, 1, 'Design: Sparkling Star of Elune'),
|
|
(24092, 24201, 0, 0, 0, 1, 1, 1, 1, 'Design: Lustrous Star of Elune'),
|
|
(24092, 24202, 0, 0, 0, 1, 1, 1, 1, 'Design: Stormy Star of Elune'),
|
|
(24092, 24203, 0, 0, 0, 1, 1, 1, 1, 'Design: Brilliant Dawnstone'),
|
|
(24092, 24204, 0, 0, 0, 1, 1, 1, 1, 'Design: Smooth Dawnstone'),
|
|
(24092, 24205, 0, 0, 0, 1, 1, 1, 1, 'Design: Rigid Dawnstone'),
|
|
(24092, 24206, 0, 0, 0, 1, 1, 1, 1, 'Design: Gleaming Dawnstone'),
|
|
(24092, 24207, 0, 0, 0, 1, 1, 1, 1, 'Design: Thick Dawnstone'),
|
|
(24092, 24209, 0, 0, 0, 1, 1, 1, 1, 'Design: Sovereign Nightseye'),
|
|
(24092, 24210, 0, 0, 0, 1, 1, 1, 1, 'Design: Shifting Nightseye'),
|
|
(24092, 24211, 0, 0, 0, 1, 1, 1, 1, 'Design: Glowing Nightseye'),
|
|
(24092, 24212, 0, 0, 0, 1, 1, 1, 1, 'Design: Royal Nightseye'),
|
|
(24092, 24213, 0, 0, 0, 1, 1, 1, 1, 'Design: Inscribed Noble Topaz'),
|
|
(24092, 24214, 0, 0, 0, 1, 1, 1, 1, 'Design: Potent Noble Topaz'),
|
|
(24092, 24215, 0, 0, 0, 1, 1, 1, 1, 'Design: Luminous Noble Topaz'),
|
|
(24092, 24216, 0, 0, 0, 1, 1, 1, 1, 'Design: Glinting Noble Topaz'),
|
|
(24092, 24217, 0, 0, 0, 1, 1, 1, 1, 'Design: Enduring Talasite'),
|
|
(24092, 24218, 0, 0, 0, 1, 1, 1, 1, 'Design: Radiant Talasite'),
|
|
(24092, 24219, 0, 0, 0, 1, 1, 1, 1, 'Design: Dazzling Talasite'),
|
|
(24092, 24220, 0, 0, 0, 1, 1, 1, 1, 'Design: Jagged Talasite'),
|
|
(24092, 24296, 0, 0, 0, 1, 1, 1, 1, 'Pattern: Unyielding Bracers'),
|
|
(24092, 24297, 0, 0, 0, 1, 1, 1, 1, 'Pattern: Bracers of Havok'),
|
|
(24092, 24298, 0, 0, 0, 1, 1, 1, 1, 'Pattern: Blackstrike Bracers'),
|
|
(24092, 24299, 0, 0, 0, 1, 1, 1, 1, 'Pattern: Cloak of the Black Void'),
|
|
(24092, 24300, 0, 0, 0, 1, 1, 1, 1, 'Pattern: Cloak of Eternity'),
|
|
(24092, 24301, 0, 0, 0, 1, 1, 1, 1, 'Pattern: White Remedy Cape'),
|
|
(24092, 28270, 0, 0, 0, 1, 1, 1, 1, 'Formula: Enchant Chest - Major Resilience'),
|
|
(24092, 28279, 0, 0, 0, 1, 1, 1, 1, 'Formula: Enchant Boots - Cat\'s Swiftness'),
|
|
(24092, 28280, 0, 0, 0, 1, 1, 1, 1, 'Formula: Enchant Boots - Boar\'s Speed'),
|
|
(24092, 31875, 0, 0, 0, 1, 1, 1, 1, 'Design: Great Dawnstone'),
|
|
(24092, 31876, 0, 0, 0, 1, 1, 1, 1, 'Design: Balanced Nightseye'),
|
|
(24092, 31877, 0, 0, 0, 1, 1, 1, 1, 'Design: Infused Nightseye'),
|
|
(24092, 31878, 0, 0, 0, 1, 1, 1, 1, 'Design: Veiled Noble Topaz'),
|
|
(24092, 31879, 0, 0, 0, 1, 1, 1, 1, 'Design: Wicked Noble Topaz'),
|
|
(24093, 22926, 0, 0, 0, 1, 1, 1, 1, 'Recipe: Elixir of Empowerment'),
|
|
(24093, 23620, 0, 0, 0, 1, 1, 1, 1, 'Plans: Felfury Gauntlets'),
|
|
(24093, 23622, 0, 0, 0, 1, 1, 1, 1, 'Plans: Steelgrip Gauntlets'),
|
|
(24093, 23623, 0, 0, 0, 1, 1, 1, 1, 'Plans: Storm Helm'),
|
|
(24093, 23624, 0, 0, 0, 1, 1, 1, 1, 'Plans: Helm of the Stalwart Defender'),
|
|
(24093, 23625, 0, 0, 0, 1, 1, 1, 1, 'Plans: Oathkeeper\'s Helm'),
|
|
(24093, 23626, 0, 0, 0, 1, 1, 1, 1, 'Plans: Black Felsteel Bracers'),
|
|
(24093, 23627, 0, 0, 0, 1, 1, 1, 1, 'Plans: Bracers of the Green Fortress'),
|
|
(24093, 23628, 0, 0, 0, 1, 1, 1, 1, 'Plans: Blessed Bracers'),
|
|
(24093, 23629, 0, 0, 0, 1, 1, 1, 1, 'Plans: Felsteel Longblade'),
|
|
(24093, 23630, 0, 0, 0, 1, 1, 1, 1, 'Plans: Khorium Champion'),
|
|
(24093, 23631, 0, 0, 0, 1, 1, 1, 1, 'Plans: Fel Edged Battleaxe'),
|
|
(24093, 23632, 0, 0, 0, 1, 1, 1, 1, 'Plans: Felsteel Reaper'),
|
|
(24093, 23633, 0, 0, 0, 1, 1, 1, 1, 'Plans: Runic Hammer'),
|
|
(24093, 23634, 0, 0, 0, 1, 1, 1, 1, 'Plans: Fel Hardened Maul'),
|
|
(24093, 23635, 0, 0, 0, 1, 1, 1, 1, 'Plans: Eternium Runed Blade'),
|
|
(24093, 23636, 0, 0, 0, 1, 1, 1, 1, 'Plans: Dirge'),
|
|
(24093, 23637, 0, 0, 0, 1, 1, 1, 1, 'Plans: Hand of Eternity'),
|
|
(24093, 23802, 0, 0, 0, 1, 1, 1, 1, 'Schematic: Ornate Khorium Rifle'),
|
|
(24093, 24165, 0, 0, 0, 1, 1, 1, 1, 'Design: Blazing Eternium Band'),
|
|
(24093, 24170, 0, 0, 0, 1, 1, 1, 1, 'Design: Embrace of the Dawn'),
|
|
(24093, 24171, 0, 0, 0, 1, 1, 1, 1, 'Design: Chain of the Twilight Owl'),
|
|
(24093, 24302, 0, 0, 0, 1, 1, 1, 1, 'Pattern: Unyielding Girdle'),
|
|
(24093, 24303, 0, 0, 0, 1, 1, 1, 1, 'Pattern: Girdle of Ruination'),
|
|
(24093, 24304, 0, 0, 0, 1, 1, 1, 1, 'Pattern: Black Belt of Knowledge'),
|
|
(24093, 24305, 0, 0, 0, 1, 1, 1, 1, 'Pattern: Resolute Cape'),
|
|
(24093, 24306, 0, 0, 0, 1, 1, 1, 1, 'Pattern: Vengeance Wrap'),
|
|
(24093, 24307, 0, 0, 0, 1, 1, 1, 1, 'Pattern: Manaweave Cloak'),
|
|
(24093, 25905, 0, 0, 0, 1, 1, 1, 1, 'Design: Tenacious Earthstorm Diamond'),
|
|
(24093, 25906, 0, 0, 0, 1, 1, 1, 1, 'Design: Brutal Earthstorm Diamond'),
|
|
(24093, 25907, 0, 0, 0, 1, 1, 1, 1, 'Design: Destructive Skyfire Diamond'),
|
|
(24093, 25909, 0, 0, 0, 1, 1, 1, 1, 'Design: Mystical Skyfire Diamond'),
|
|
(24093, 29723, 0, 0, 0, 1, 1, 1, 1, 'Pattern: Cobrascale Hood'),
|
|
(24093, 29724, 0, 0, 0, 1, 1, 1, 1, 'Pattern: Cobrascale Gloves'),
|
|
(24093, 29725, 0, 0, 0, 1, 1, 1, 1, 'Pattern: Windscale Hood'),
|
|
(24093, 29726, 0, 0, 0, 1, 1, 1, 1, 'Pattern: Hood of Primal Life'),
|
|
(24093, 29727, 0, 0, 0, 1, 1, 1, 1, 'Pattern: Gloves of the Living Touch'),
|
|
(24093, 29728, 0, 0, 0, 1, 1, 1, 1, 'Pattern: Windslayer Wraps'),
|
|
(24093, 29729, 0, 0, 0, 1, 1, 1, 1, 'Pattern: Living Dragonscale Helm'),
|
|
(24093, 29731, 0, 0, 0, 1, 1, 1, 1, 'Pattern: Windstrike Gloves'),
|
|
(24093, 29732, 0, 0, 0, 1, 1, 1, 1, 'Pattern: Netherdrake Helm'),
|
|
(24093, 29733, 0, 0, 0, 1, 1, 1, 1, 'Pattern: Netherdrake Gloves'),
|
|
(24093, 29734, 0, 0, 0, 1, 1, 1, 1, 'Pattern: Thick Netherscale Breastplate'),
|
|
(24093, 32411, 0, 0, 0, 1, 1, 1, 1, 'Design: Thundering Skyfire Diamond'),
|
|
(24100, 24074, 24074, 67, 0, 1, 1, 1, 1, '(ReferenceTable)'),
|
|
(24100, 24075, 24075, 33, 0, 1, 1, 1, 1, '(ReferenceTable)'),
|
|
(24101, 24074, 24074, 25, 0, 1, 1, 1, 1, '(ReferenceTable)'),
|
|
(24101, 24075, 24075, 50, 0, 1, 1, 1, 1, '(ReferenceTable)'),
|
|
(24101, 24076, 24076, 25, 0, 1, 1, 1, 1, '(ReferenceTable)'),
|
|
(24102, 24075, 24075, 25, 0, 1, 1, 1, 1, '(ReferenceTable)'),
|
|
(24102, 24076, 24076, 50, 0, 1, 1, 1, 1, '(ReferenceTable)'),
|
|
(24102, 24077, 24077, 25, 0, 1, 1, 1, 1, '(ReferenceTable)'),
|
|
(24103, 24076, 24076, 25, 0, 1, 1, 1, 1, '(ReferenceTable)'),
|
|
(24103, 24077, 24077, 50, 0, 1, 1, 1, 1, '(ReferenceTable)'),
|
|
(24103, 24078, 24078, 25, 0, 1, 1, 1, 1, '(ReferenceTable)'),
|
|
(24104, 24060, 24060, 25, 0, 1, 1, 1, 1, '(ReferenceTable)'),
|
|
(24104, 24077, 24077, 25, 0, 1, 1, 1, 1, '(ReferenceTable)'),
|
|
(24104, 24078, 24078, 50, 0, 1, 1, 1, 1, '(ReferenceTable)'),
|
|
(24105, 24060, 24060, 50, 0, 1, 1, 1, 1, '(ReferenceTable)'),
|
|
(24105, 24062, 24062, 25, 0, 1, 1, 1, 1, '(ReferenceTable)'),
|
|
(24105, 24078, 24078, 25, 0, 1, 1, 1, 1, '(ReferenceTable)'),
|
|
(24106, 24060, 24060, 25, 0, 1, 1, 1, 1, '(ReferenceTable)'),
|
|
(24106, 24062, 24062, 50, 0, 1, 1, 1, 1, '(ReferenceTable)'),
|
|
(24106, 24064, 24064, 25, 0, 1, 1, 1, 1, '(ReferenceTable)'),
|
|
(24107, 24062, 24062, 25, 0, 1, 1, 1, 1, '(ReferenceTable)'),
|
|
(24107, 24064, 24064, 50, 0, 1, 1, 1, 1, '(ReferenceTable)'),
|
|
(24107, 24066, 24066, 25, 0, 1, 1, 1, 1, '(ReferenceTable)'),
|
|
(24108, 24064, 24064, 25, 0, 1, 1, 1, 1, '(ReferenceTable)'),
|
|
(24108, 24066, 24066, 50, 0, 1, 1, 1, 1, '(ReferenceTable)'),
|
|
(24108, 24068, 24068, 25, 0, 1, 1, 1, 1, '(ReferenceTable)'),
|
|
(24109, 24048, 24048, 25, 0, 1, 1, 1, 1, '(ReferenceTable)'),
|
|
(24109, 24066, 24066, 25, 0, 1, 1, 1, 1, '(ReferenceTable)'),
|
|
(24109, 24068, 24068, 50, 0, 1, 1, 1, 1, '(ReferenceTable)'),
|
|
(24110, 24048, 24048, 50, 0, 1, 1, 1, 1, '(ReferenceTable)'),
|
|
(24110, 24050, 24050, 25, 0, 1, 1, 1, 1, '(ReferenceTable)'),
|
|
(24110, 24068, 24068, 25, 0, 1, 1, 1, 1, '(ReferenceTable)'),
|
|
(24111, 24048, 24048, 25, 0, 1, 1, 1, 1, '(ReferenceTable)'),
|
|
(24111, 24050, 24050, 50, 0, 1, 1, 1, 1, '(ReferenceTable)'),
|
|
(24111, 24052, 24052, 25, 0, 1, 1, 1, 1, '(ReferenceTable)'),
|
|
(24112, 24050, 24050, 25, 0, 1, 1, 1, 1, '(ReferenceTable)'),
|
|
(24112, 24052, 24052, 50, 0, 1, 1, 1, 1, '(ReferenceTable)'),
|
|
(24112, 24054, 24054, 25, 0, 1, 1, 1, 1, '(ReferenceTable)'),
|
|
(24113, 24052, 24052, 25, 0, 1, 1, 1, 1, '(ReferenceTable)'),
|
|
(24113, 24054, 24054, 50, 0, 1, 1, 1, 1, '(ReferenceTable)'),
|
|
(24113, 24056, 24056, 25, 0, 1, 1, 1, 1, '(ReferenceTable)'),
|
|
(24114, 24037, 24037, 25, 0, 1, 1, 1, 1, '(ReferenceTable)'),
|
|
(24114, 24054, 24054, 25, 0, 1, 1, 1, 1, '(ReferenceTable)'),
|
|
(24114, 24056, 24056, 50, 0, 1, 1, 1, 1, '(ReferenceTable)'),
|
|
(24115, 24037, 24037, 50, 0, 1, 1, 1, 1, '(ReferenceTable)'),
|
|
(24115, 24039, 24039, 25, 0, 1, 1, 1, 1, '(ReferenceTable)'),
|
|
(24115, 24056, 24056, 25, 0, 1, 1, 1, 1, '(ReferenceTable)'),
|
|
(24116, 24037, 24037, 25, 0, 1, 1, 1, 1, '(ReferenceTable)'),
|
|
(24116, 24039, 24039, 50, 0, 1, 1, 1, 1, '(ReferenceTable)'),
|
|
(24116, 24041, 24041, 25, 0, 1, 1, 1, 1, '(ReferenceTable)'),
|
|
(24117, 24039, 24039, 25, 0, 1, 1, 1, 1, '(ReferenceTable)'),
|
|
(24117, 24041, 24041, 50, 0, 1, 1, 1, 1, '(ReferenceTable)'),
|
|
(24117, 24043, 24043, 25, 0, 1, 1, 1, 1, '(ReferenceTable)'),
|
|
(24118, 24041, 24041, 25, 0, 1, 1, 1, 1, '(ReferenceTable)'),
|
|
(24118, 24043, 24043, 50, 0, 1, 1, 1, 1, '(ReferenceTable)'),
|
|
(24118, 24045, 24045, 25, 0, 1, 1, 1, 1, '(ReferenceTable)'),
|
|
(24119, 24025, 24025, 25, 0, 1, 1, 1, 1, '(ReferenceTable)'),
|
|
(24119, 24043, 24043, 25, 0, 1, 1, 1, 1, '(ReferenceTable)'),
|
|
(24119, 24045, 24045, 50, 0, 1, 1, 1, 1, '(ReferenceTable)'),
|
|
(24120, 24025, 24025, 50, 0, 1, 1, 1, 1, '(ReferenceTable)'),
|
|
(24120, 24027, 24027, 25, 0, 1, 1, 1, 1, '(ReferenceTable)'),
|
|
(24120, 24045, 24045, 25, 0, 1, 1, 1, 1, '(ReferenceTable)'),
|
|
(24122, 24027, 24027, 25, 0, 1, 1, 1, 1, '(ReferenceTable)'),
|
|
(24122, 24029, 24029, 50, 0, 1, 1, 1, 1, '(ReferenceTable)'),
|
|
(24122, 24031, 24031, 25, 0, 1, 1, 1, 1, '(ReferenceTable)'),
|
|
(24123, 24029, 24029, 25, 0, 1, 1, 1, 1, '(ReferenceTable)'),
|
|
(24123, 24031, 24031, 50, 0, 1, 1, 1, 1, '(ReferenceTable)'),
|
|
(24123, 24033, 24033, 25, 0, 1, 1, 1, 1, '(ReferenceTable)'),
|
|
(24124, 24018, 24018, 25, 0, 1, 1, 1, 1, '(ReferenceTable)'),
|
|
(24124, 24031, 24031, 25, 0, 1, 1, 1, 1, '(ReferenceTable)'),
|
|
(24124, 24033, 24033, 50, 0, 1, 1, 1, 1, '(ReferenceTable)'),
|
|
(24125, 24018, 24018, 50, 0, 1, 1, 1, 1, '(ReferenceTable)'),
|
|
(24125, 24020, 24020, 25, 0, 1, 1, 1, 1, '(ReferenceTable)'),
|
|
(24125, 24033, 24033, 25, 0, 1, 1, 1, 1, '(ReferenceTable)'),
|
|
(24126, 24003, 24003, 25, 0, 1, 1, 1, 1, '(ReferenceTable)'),
|
|
(24126, 24018, 24018, 25, 0, 1, 1, 1, 1, '(ReferenceTable)'),
|
|
(24126, 24020, 24020, 50, 0, 1, 1, 1, 1, '(ReferenceTable)'),
|
|
(24127, 24003, 24003, 50, 0, 1, 1, 1, 1, '(ReferenceTable)'),
|
|
(24127, 24005, 24005, 25, 0, 1, 1, 1, 1, '(ReferenceTable)'),
|
|
(24127, 24020, 24020, 25, 0, 1, 1, 1, 1, '(ReferenceTable)'),
|
|
(24150, 24061, 24061, 67, 0, 1, 1, 1, 1, '(ReferenceTable)'),
|
|
(24150, 24063, 24063, 33, 0, 1, 1, 1, 1, '(ReferenceTable)'),
|
|
(24151, 24061, 24061, 25, 0, 1, 1, 1, 1, '(ReferenceTable)'),
|
|
(24151, 24063, 24063, 50, 0, 1, 1, 1, 1, '(ReferenceTable)'),
|
|
(24151, 24065, 24065, 25, 0, 1, 1, 1, 1, '(ReferenceTable)'),
|
|
(24152, 24063, 24063, 25, 0, 1, 1, 1, 1, '(ReferenceTable)'),
|
|
(24152, 24065, 24065, 50, 0, 1, 1, 1, 1, '(ReferenceTable)'),
|
|
(24152, 24067, 24067, 25, 0, 1, 1, 1, 1, '(ReferenceTable)'),
|
|
(24153, 24065, 24065, 25, 0, 1, 1, 1, 1, '(ReferenceTable)'),
|
|
(24153, 24067, 24067, 50, 0, 1, 1, 1, 1, '(ReferenceTable)'),
|
|
(24153, 24069, 24069, 25, 0, 1, 1, 1, 1, '(ReferenceTable)'),
|
|
(24154, 24049, 24049, 25, 0, 1, 1, 1, 1, '(ReferenceTable)'),
|
|
(24154, 24067, 24067, 25, 0, 1, 1, 1, 1, '(ReferenceTable)'),
|
|
(24154, 24069, 24069, 50, 0, 1, 1, 1, 1, '(ReferenceTable)'),
|
|
(24155, 24049, 24059, 50, 0, 1, 1, 1, 1, '(ReferenceTable)'),
|
|
(24155, 24051, 24051, 25, 0, 1, 1, 1, 1, '(ReferenceTable)'),
|
|
(24155, 24069, 24069, 25, 0, 1, 1, 1, 1, '(ReferenceTable)'),
|
|
(24156, 24049, 24049, 25, 0, 1, 1, 1, 1, '(ReferenceTable)'),
|
|
(24156, 24051, 24059, 50, 0, 1, 1, 1, 1, '(ReferenceTable)'),
|
|
(24156, 24053, 24053, 25, 0, 1, 1, 1, 1, '(ReferenceTable)'),
|
|
(24157, 24051, 24051, 25, 0, 1, 1, 1, 1, '(ReferenceTable)'),
|
|
(24157, 24053, 24053, 50, 0, 1, 1, 1, 1, '(ReferenceTable)'),
|
|
(24157, 24055, 24055, 25, 0, 1, 1, 1, 1, '(ReferenceTable)'),
|
|
(24158, 24053, 24053, 25, 0, 1, 1, 1, 1, '(ReferenceTable)'),
|
|
(24158, 24055, 24055, 50, 0, 1, 1, 1, 1, '(ReferenceTable)'),
|
|
(24158, 24057, 24057, 25, 0, 1, 1, 1, 1, '(ReferenceTable)'),
|
|
(24159, 24038, 24038, 25, 0, 1, 1, 1, 1, '(ReferenceTable)'),
|
|
(24159, 24055, 24055, 25, 0, 1, 1, 1, 1, '(ReferenceTable)'),
|
|
(24159, 24057, 24057, 50, 0, 1, 1, 1, 1, '(ReferenceTable)'),
|
|
(24160, 24038, 24038, 50, 0, 1, 1, 1, 1, '(ReferenceTable)'),
|
|
(24160, 24040, 24040, 20, 0, 1, 1, 1, 1, '(ReferenceTable)'),
|
|
(24160, 24057, 24057, 20, 0, 1, 1, 1, 1, '(ReferenceTable)'),
|
|
(24161, 24038, 24038, 20, 0, 1, 1, 1, 1, '(ReferenceTable)'),
|
|
(24161, 24040, 24040, 50, 0, 1, 1, 1, 1, '(ReferenceTable)'),
|
|
(24161, 24042, 24040, 20, 0, 1, 1, 1, 1, '(ReferenceTable)'),
|
|
(24161, 24079, 24079, 10, 0, 1, 1, 1, 1, '(ReferenceTable)'),
|
|
(24161, 24080, 24080, 10, 0, 1, 1, 1, 1, '(ReferenceTable)'),
|
|
(24162, 24040, 24040, 20, 0, 1, 1, 1, 1, '(ReferenceTable)'),
|
|
(24162, 24042, 24042, 50, 0, 1, 1, 1, 1, '(ReferenceTable)'),
|
|
(24162, 24044, 24044, 20, 0, 1, 1, 1, 1, '(ReferenceTable)'),
|
|
(24162, 24081, 24081, 10, 0, 1, 1, 1, 1, '(ReferenceTable)'),
|
|
(24168, 24017, 24017, 20, 0, 1, 1, 1, 1, '(ReferenceTable)'),
|
|
(24168, 24032, 24032, 20, 0, 1, 1, 1, 1, '(ReferenceTable)'),
|
|
(24168, 24034, 24034, 50, 0, 1, 1, 1, 1, '(ReferenceTable)'),
|
|
(24168, 24087, 24087, 10, 0, 1, 1, 1, 1, '(ReferenceTable)'),
|
|
(24169, 24017, 24017, 50, 0, 1, 1, 1, 1, '(ReferenceTable)'),
|
|
(24169, 24019, 24019, 20, 0, 1, 1, 1, 1, '(ReferenceTable)'),
|
|
(24169, 24034, 24034, 20, 0, 1, 1, 1, 1, '(ReferenceTable)'),
|
|
(24169, 24088, 24088, 10, 0, 1, 1, 1, 1, '(ReferenceTable)'),
|
|
(24170, 24017, 24017, 20, 0, 1, 1, 1, 1, '(ReferenceTable)'),
|
|
(24170, 24019, 24019, 50, 0, 1, 1, 1, 1, '(ReferenceTable)'),
|
|
(24170, 24021, 24021, 20, 0, 1, 1, 1, 1, '(ReferenceTable)'),
|
|
(24170, 24089, 24089, 10, 0, 1, 1, 1, 1, '(ReferenceTable)'),
|
|
(24700, 2407, 0, 0, 0, 1, 1, 1, 1, 'Pattern: White Leather Jerkin'),
|
|
(24700, 2553, 0, 0, 0, 1, 1, 1, 1, 'Recipe: Elixir of Minor Agility'),
|
|
(24700, 2555, 0, 0, 0, 1, 1, 1, 1, 'Recipe: Swiftness Potion'),
|
|
(24700, 2598, 0, 0, 0, 1, 1, 1, 1, 'Pattern: Red Linen Robe'),
|
|
(24700, 3609, 0, 0, 0, 1, 1, 1, 1, 'Plans: Copper Chain Vest'),
|
|
(24700, 3610, 0, 0, 0, 1, 1, 1, 1, 'Plans: Gemmed Copper Gauntlets'),
|
|
(24700, 5771, 0, 0, 0, 1, 1, 1, 1, 'Pattern: Red Linen Bag'),
|
|
(24700, 6271, 0, 0, 0, 1, 1, 1, 1, 'Pattern: Red Linen Vest'),
|
|
(24700, 6342, 0, 0, 0, 1, 1, 1, 1, 'Formula: Enchant Chest - Minor Mana'),
|
|
(24700, 6344, 0, 0, 0, 1, 1, 1, 1, 'Formula: Enchant Bracer - Minor Spirit'),
|
|
(24700, 7288, 0, 0, 0, 1, 1, 1, 1, 'Pattern: Rugged Leather Pants'),
|
|
(24701, 2406, 0, 0, 0, 1, 1, 1, 1, 'Pattern: Fine Leather Boots'),
|
|
(24701, 2408, 0, 0, 0, 1, 1, 1, 1, 'Pattern: Fine Leather Gloves'),
|
|
(24701, 2698, 0, 0, 0, 1, 1, 1, 1, 'Recipe: Cooked Crab Claw'),
|
|
(24701, 2881, 0, 0, 0, 1, 1, 1, 1, 'Plans: Runed Copper Breastplate'),
|
|
(24701, 4292, 0, 0, 0, 1, 1, 1, 1, 'Pattern: Green Woolen Bag'),
|
|
(24701, 4345, 0, 0, 0, 1, 1, 1, 1, 'Pattern: Red Woolen Boots'),
|
|
(24701, 4408, 0, 0, 0, 1, 1, 1, 1, 'Schematic: Mechanical Squirrel Box'),
|
|
(24701, 5786, 0, 0, 0, 1, 1, 1, 1, 'Pattern: Murloc Scale Belt'),
|
|
(24701, 5787, 0, 0, 0, 1, 1, 1, 1, 'Pattern: Murloc Scale Breastplate'),
|
|
(24701, 6347, 0, 0, 0, 1, 1, 1, 1, 'Formula: Enchant Bracer - Minor Strength'),
|
|
(24701, 6348, 0, 0, 0, 1, 1, 1, 1, 'Formula: Enchant Weapon - Minor Beastslayer'),
|
|
(24701, 6663, 0, 0, 0, 1, 1, 1, 1, 'Recipe: Elixir of Giant Growth'),
|
|
(24702, 2409, 0, 0, 0, 1, 1, 1, 1, 'Pattern: Dark Leather Tunic'),
|
|
(24702, 2601, 0, 0, 0, 1, 1, 1, 1, 'Pattern: Gray Woolen Robe'),
|
|
(24702, 2700, 0, 0, 0, 1, 1, 1, 1, 'Recipe: Succulent Pork Ribs'),
|
|
(24702, 3393, 0, 0, 0, 1, 1, 1, 1, 'Recipe: Minor Magic Resistance Potion'),
|
|
(24702, 3394, 0, 0, 0, 1, 1, 1, 1, 'Recipe: Potion of Curing'),
|
|
(24702, 4293, 0, 0, 0, 1, 1, 1, 1, 'Pattern: Hillman\'s Leather Vest'),
|
|
(24702, 4294, 0, 0, 0, 1, 1, 1, 1, 'Pattern: Hillman\'s Belt'),
|
|
(24702, 4346, 0, 0, 0, 1, 1, 1, 1, 'Pattern: Heavy Woolen Cloak'),
|
|
(24702, 4347, 0, 0, 0, 1, 1, 1, 1, 'Pattern: Reinforced Woolen Shoulders'),
|
|
(24702, 4409, 0, 0, 0, 1, 1, 1, 1, 'Schematic: Small Seaforium Charge'),
|
|
(24702, 4410, 0, 0, 0, 1, 1, 1, 1, 'Schematic: Shadow Goggles'),
|
|
(24702, 5772, 0, 0, 0, 1, 1, 1, 1, 'Pattern: Red Woolen Bag'),
|
|
(24702, 5972, 0, 0, 0, 1, 1, 1, 1, 'Pattern: Fine Leather Pants'),
|
|
(24702, 6375, 0, 0, 0, 1, 1, 1, 1, 'Formula: Enchant Bracer - Lesser Spirit'),
|
|
(24702, 6390, 0, 0, 0, 1, 1, 1, 1, 'Pattern: Stylish Blue Shirt'),
|
|
(24702, 6391, 0, 0, 0, 1, 1, 1, 1, 'Pattern: Stylish Green Shirt'),
|
|
(24702, 6716, 0, 0, 0, 1, 1, 1, 1, 'Schematic: EZ-Thro Dynamite'),
|
|
(24702, 7360, 0, 0, 0, 1, 1, 1, 1, 'Pattern: Dark Leather Gloves'),
|
|
(24702, 10316, 0, 0, 0, 1, 1, 1, 1, 'Pattern: Colorful Kilt'),
|
|
(24702, 11038, 0, 0, 0, 1, 1, 1, 1, 'Formula: Enchant 2H Weapon - Lesser Spirit'),
|
|
(24702, 11039, 0, 0, 0, 1, 1, 1, 1, 'Formula: Enchant Cloak - Minor Agility'),
|
|
(24702, 11081, 0, 0, 0, 1, 1, 1, 1, 'Formula: Enchant Shield - Lesser Protection'),
|
|
(24703, 2882, 0, 0, 0, 1, 1, 1, 1, 'Plans: Silvered Bronze Shoulders'),
|
|
(24703, 2883, 0, 0, 0, 1, 1, 1, 1, 'Plans: Deadly Bronze Poniard'),
|
|
(24703, 3396, 0, 0, 0, 1, 1, 1, 1, 'Recipe: Elixir of Lesser Agility'),
|
|
(24703, 3608, 0, 0, 0, 1, 1, 1, 1, 'Plans: Mighty Iron Hammer'),
|
|
(24703, 3611, 0, 0, 0, 1, 1, 1, 1, 'Plans: Green Iron Boots'),
|
|
(24703, 4296, 0, 0, 0, 1, 1, 1, 1, 'Pattern: Dark Leather Shoulders'),
|
|
(24703, 4348, 0, 0, 0, 1, 1, 1, 1, 'Pattern: Phoenix Gloves'),
|
|
(24703, 4349, 0, 0, 0, 1, 1, 1, 1, 'Pattern: Phoenix Pants'),
|
|
(24703, 4350, 0, 0, 0, 1, 1, 1, 1, 'Pattern: Spider Silk Slippers'),
|
|
(24703, 4411, 0, 0, 0, 1, 1, 1, 1, 'Schematic: Flame Deflector'),
|
|
(24703, 4412, 0, 0, 0, 1, 1, 1, 1, 'Schematic: Moonsight Rifle'),
|
|
(24703, 5543, 0, 0, 0, 1, 1, 1, 1, 'Plans: Iridescent Hammer'),
|
|
(24703, 5578, 0, 0, 0, 1, 1, 1, 1, 'Plans: Silvered Bronze Breastplate'),
|
|
(24703, 6454, 0, 0, 0, 1, 1, 1, 1, 'Manual: Strong Anti-Venom'),
|
|
(24703, 7092, 0, 0, 0, 1, 1, 1, 1, 'Pattern: Hands of Darkness'),
|
|
(24703, 7363, 0, 0, 0, 1, 1, 1, 1, 'Pattern: Pilferer\'s Gloves'),
|
|
(24703, 7364, 0, 0, 0, 1, 1, 1, 1, 'Pattern: Heavy Earthen Gloves'),
|
|
(24703, 11098, 0, 0, 0, 1, 1, 1, 1, 'Formula: Enchant Cloak - Lesser Shadow Resistance'),
|
|
(24703, 11151, 0, 0, 0, 1, 1, 1, 1, 'Formula: Enchant Gloves - Herbalism'),
|
|
(24703, 11152, 0, 0, 0, 1, 1, 1, 1, 'Formula: Enchant Gloves - Fishing'),
|
|
(24704, 3612, 0, 0, 0, 1, 1, 1, 1, 'Plans: Green Iron Gauntlets'),
|
|
(24704, 3867, 0, 0, 0, 1, 1, 1, 1, 'Plans: Golden Iron Destroyer'),
|
|
(24704, 3870, 0, 0, 0, 1, 1, 1, 1, 'Plans: Green Iron Shoulders'),
|
|
(24704, 3872, 0, 0, 0, 1, 1, 1, 1, 'Plans: Golden Scale Leggings'),
|
|
(24704, 4297, 0, 0, 0, 1, 1, 1, 1, 'Pattern: Barbaric Gloves'),
|
|
(24704, 4298, 0, 0, 0, 1, 1, 1, 1, 'Pattern: Guardian Belt'),
|
|
(24704, 4351, 0, 0, 0, 1, 1, 1, 1, 'Pattern: Shadow Hood'),
|
|
(24704, 4413, 0, 0, 0, 1, 1, 1, 1, 'Schematic: Discombobulator Ray'),
|
|
(24704, 4414, 0, 0, 0, 1, 1, 1, 1, 'Schematic: Portable Bronze Mortar'),
|
|
(24704, 5773, 0, 0, 0, 1, 1, 1, 1, 'Pattern: Robes of Arcana'),
|
|
(24704, 6044, 0, 0, 0, 1, 1, 1, 1, 'Plans: Iron Shield Spike'),
|
|
(24704, 6045, 0, 0, 0, 1, 1, 1, 1, 'Plans: Iron Counterweight'),
|
|
(24704, 7090, 0, 0, 0, 1, 1, 1, 1, 'Pattern: Green Silk Armor'),
|
|
(24704, 7091, 0, 0, 0, 1, 1, 1, 1, 'Pattern: Truefaith Gloves'),
|
|
(24704, 7449, 0, 0, 0, 1, 1, 1, 1, 'Pattern: Dusky Leather Leggings'),
|
|
(24704, 10424, 0, 0, 0, 1, 1, 1, 1, 'Plans: Silvered Bronze Leggings'),
|
|
(24704, 20974, 0, 0, 0, 1, 1, 1, 1, 'Design: Jade Pendant of Blasting'),
|
|
(24705, 3830, 0, 0, 0, 1, 1, 1, 1, 'Recipe: Elixir of Fortitude'),
|
|
(24705, 3831, 0, 0, 0, 1, 1, 1, 1, 'Recipe: Major Troll\'s Blood Elixir'),
|
|
(24705, 3832, 0, 0, 0, 1, 1, 1, 1, 'Recipe: Elixir of Detect Lesser Invisibility'),
|
|
(24705, 3866, 0, 0, 0, 1, 1, 1, 1, 'Plans: Jade Serpentblade'),
|
|
(24705, 3871, 0, 0, 0, 1, 1, 1, 1, 'Plans: Golden Scale Shoulders'),
|
|
(24705, 3873, 0, 0, 0, 1, 1, 1, 1, 'Plans: Golden Scale Cuirass'),
|
|
(24705, 3874, 0, 0, 0, 1, 1, 1, 1, 'Plans: Polished Steel Boots'),
|
|
(24705, 4299, 0, 0, 0, 1, 1, 1, 1, 'Pattern: Guardian Armor'),
|
|
(24705, 4300, 0, 0, 0, 1, 1, 1, 1, 'Pattern: Guardian Leather Bracers'),
|
|
(24705, 4352, 0, 0, 0, 1, 1, 1, 1, 'Pattern: Boots of the Enchanter'),
|
|
(24705, 4353, 0, 0, 0, 1, 1, 1, 1, 'Pattern: Spider Belt'),
|
|
(24705, 4354, 0, 0, 0, 1, 1, 1, 1, 'Pattern: Rich Purple Silk Shirt'),
|
|
(24705, 4415, 0, 0, 0, 1, 1, 1, 1, 'Schematic: Craftsman\'s Monocle'),
|
|
(24705, 4416, 0, 0, 0, 1, 1, 1, 1, 'Schematic: Goblin Land Mine'),
|
|
(24705, 5774, 0, 0, 0, 1, 1, 1, 1, 'Pattern: Green Silk Pack'),
|
|
(24705, 5775, 0, 0, 0, 1, 1, 1, 1, 'Pattern: Black Silk Pack'),
|
|
(24705, 5974, 0, 0, 0, 1, 1, 1, 1, 'Pattern: Guardian Cloak'),
|
|
(24705, 6046, 0, 0, 0, 1, 1, 1, 1, 'Plans: Steel Weapon Chain'),
|
|
(24705, 7084, 0, 0, 0, 1, 1, 1, 1, 'Pattern: Crimson Silk Shoulders'),
|
|
(24705, 7085, 0, 0, 0, 1, 1, 1, 1, 'Pattern: Azure Shoulders'),
|
|
(24705, 7086, 0, 0, 0, 1, 1, 1, 1, 'Pattern: Earthen Silk Belt'),
|
|
(24705, 7450, 0, 0, 0, 1, 1, 1, 1, 'Pattern: Green Whelp Armor'),
|
|
(24705, 10601, 0, 0, 0, 1, 1, 1, 1, 'Schematic: Bright-Eye Goggles'),
|
|
(24705, 11164, 0, 0, 0, 1, 1, 1, 1, 'Formula: Enchant Weapon - Lesser Beastslayer'),
|
|
(24705, 11165, 0, 0, 0, 1, 1, 1, 1, 'Formula: Enchant Weapon - Lesser Elemental Slayer'),
|
|
(24705, 11167, 0, 0, 0, 1, 1, 1, 1, 'Formula: Enchant Boots - Lesser Spirit'),
|
|
(24705, 11168, 0, 0, 0, 1, 1, 1, 1, 'Formula: Enchant Shield - Lesser Block'),
|
|
(24705, 12261, 0, 0, 0, 1, 1, 1, 1, 'Plans: Searing Golden Blade'),
|
|
(24705, 17706, 0, 0, 0, 1, 1, 1, 1, 'Plans: Edge of Winter'),
|
|
(24705, 17709, 0, 0, 0, 1, 1, 1, 1, 'Recipe: Elixir of Frost Power'),
|
|
(24705, 17722, 0, 0, 0, 1, 1, 1, 1, 'Pattern: Gloves of the Greatfather'),
|
|
(24705, 20976, 0, 0, 0, 1, 1, 1, 1, 'Design: Citrine Pendant of Golden Healing'),
|
|
(24706, 3868, 0, 0, 0, 1, 1, 1, 1, 'Plans: Frost Tiger Blade'),
|
|
(24706, 3869, 0, 0, 0, 1, 1, 1, 1, 'Plans: Shadow Crescent Axe'),
|
|
(24706, 3875, 0, 0, 0, 1, 1, 1, 1, 'Plans: Golden Scale Boots'),
|
|
(24706, 4301, 0, 0, 0, 1, 1, 1, 1, 'Pattern: Barbaric Belt'),
|
|
(24706, 4356, 0, 0, 0, 1, 1, 1, 1, 'Pattern: Star Belt'),
|
|
(24706, 4417, 0, 0, 0, 1, 1, 1, 1, 'Schematic: Large Seaforium Charge'),
|
|
(24706, 7452, 0, 0, 0, 1, 1, 1, 1, 'Pattern: Dusky Boots'),
|
|
(24706, 7453, 0, 0, 0, 1, 1, 1, 1, 'Pattern: Swift Boots'),
|
|
(24706, 7742, 0, 0, 0, 1, 1, 1, 1, 'Schematic: Gnomish Cloaking Device'),
|
|
(24706, 7975, 0, 0, 0, 1, 1, 1, 1, 'Plans: Heavy Mithril Pants'),
|
|
(24706, 7976, 0, 0, 0, 1, 1, 1, 1, 'Plans: Mithril Shield Spike'),
|
|
(24706, 7992, 0, 0, 0, 1, 1, 1, 1, 'Plans: Blue Glittering Axe'),
|
|
(24706, 8384, 0, 0, 0, 1, 1, 1, 1, 'Pattern: Comfortable Leather Hat'),
|
|
(24706, 8385, 0, 0, 0, 1, 1, 1, 1, 'Pattern: Turtle Scale Gloves'),
|
|
(24706, 8386, 0, 0, 0, 1, 1, 1, 1, 'Pattern: Big Voodoo Robe'),
|
|
(24706, 8387, 0, 0, 0, 1, 1, 1, 1, 'Pattern: Big Voodoo Mask'),
|
|
(24706, 8395, 0, 0, 0, 1, 1, 1, 1, 'Pattern: Tough Scorpid Breastplate'),
|
|
(24706, 8397, 0, 0, 0, 1, 1, 1, 1, 'Pattern: Tough Scorpid Bracers'),
|
|
(24706, 9293, 0, 0, 0, 1, 1, 1, 1, 'Recipe: Magic Resistance Potion'),
|
|
(24706, 10300, 0, 0, 0, 1, 1, 1, 1, 'Pattern: Red Mageweave Vest'),
|
|
(24706, 10301, 0, 0, 0, 1, 1, 1, 1, 'Pattern: White Bandit Mask'),
|
|
(24706, 10302, 0, 0, 0, 1, 1, 1, 1, 'Pattern: Red Mageweave Pants'),
|
|
(24706, 10603, 0, 0, 0, 1, 1, 1, 1, 'Schematic: Catseye Ultra Goggles'),
|
|
(24706, 10604, 0, 0, 0, 1, 1, 1, 1, 'Schematic: Mithril Heavy-bore Rifle'),
|
|
(24706, 11166, 0, 0, 0, 1, 1, 1, 1, 'Formula: Enchant Gloves - Skinning'),
|
|
(24706, 11202, 0, 0, 0, 1, 1, 1, 1, 'Formula: Enchant Shield - Stamina'),
|
|
(24706, 11203, 0, 0, 0, 1, 1, 1, 1, 'Formula: Enchant Gloves - Advanced Mining'),
|
|
(24706, 11204, 0, 0, 0, 1, 1, 1, 1, 'Formula: Enchant Bracer - Greater Spirit'),
|
|
(24706, 21940, 0, 0, 0, 1, 1, 1, 1, 'Design: Golden Hare'),
|
|
(24707, 7989, 0, 0, 0, 1, 1, 1, 1, 'Plans: Mithril Spurs'),
|
|
(24707, 7990, 0, 0, 0, 1, 1, 1, 1, 'Plans: Heavy Mithril Helm'),
|
|
(24707, 7991, 0, 0, 0, 1, 1, 1, 1, 'Plans: Mithril Scale Shoulders'),
|
|
(24707, 7993, 0, 0, 0, 1, 1, 1, 1, 'Plans: Dazzling Mithril Rapier'),
|
|
(24707, 8028, 0, 0, 0, 1, 1, 1, 1, 'Plans: Runed Mithril Hammer'),
|
|
(24707, 8029, 0, 0, 0, 1, 1, 1, 1, 'Plans: Wicked Mithril Blade'),
|
|
(24707, 8389, 0, 0, 0, 1, 1, 1, 1, 'Pattern: Big Voodoo Pants'),
|
|
(24707, 8390, 0, 0, 0, 1, 1, 1, 1, 'Pattern: Big Voodoo Cloak'),
|
|
(24707, 8398, 0, 0, 0, 1, 1, 1, 1, 'Pattern: Tough Scorpid Gloves'),
|
|
(24707, 8399, 0, 0, 0, 1, 1, 1, 1, 'Pattern: Tough Scorpid Boots'),
|
|
(24707, 8400, 0, 0, 0, 1, 1, 1, 1, 'Pattern: Tough Scorpid Shoulders'),
|
|
(24707, 8401, 0, 0, 0, 1, 1, 1, 1, 'Pattern: Tough Scorpid Leggings'),
|
|
(24707, 9295, 0, 0, 0, 1, 1, 1, 1, 'Recipe: Invisibility Potion'),
|
|
(24707, 9296, 0, 0, 0, 1, 1, 1, 1, 'Recipe: Gift of Arthas'),
|
|
(24707, 9297, 0, 0, 0, 1, 1, 1, 1, 'Recipe: Elixir of Dream Vision'),
|
|
(24707, 9298, 0, 0, 0, 1, 1, 1, 1, 'Recipe: Elixir of Giants'),
|
|
(24707, 10312, 0, 0, 0, 1, 1, 1, 1, 'Pattern: Red Mageweave Gloves'),
|
|
(24707, 10315, 0, 0, 0, 1, 1, 1, 1, 'Pattern: Red Mageweave Shoulders'),
|
|
(24707, 10320, 0, 0, 0, 1, 1, 1, 1, 'Pattern: Red Mageweave Headband'),
|
|
(24707, 10605, 0, 0, 0, 1, 1, 1, 1, 'Schematic: Spellpower Goggles Xtreme'),
|
|
(24707, 10606, 0, 0, 0, 1, 1, 1, 1, 'Schematic: Parachute Cloak'),
|
|
(24707, 10608, 0, 0, 0, 1, 1, 1, 1, 'Schematic: Sniper Scope'),
|
|
(24707, 11206, 0, 0, 0, 1, 1, 1, 1, 'Formula: Enchant Cloak - Lesser Agility'),
|
|
(24707, 11208, 0, 0, 0, 1, 1, 1, 1, 'Formula: Enchant Weapon - Demonslaying'),
|
|
(24707, 11224, 0, 0, 0, 1, 1, 1, 1, 'Formula: Enchant Shield - Frost Resistance'),
|
|
(24707, 11225, 0, 0, 0, 1, 1, 1, 1, 'Formula: Enchant Bracer - Greater Stamina'),
|
|
(24707, 21944, 0, 0, 0, 1, 1, 1, 1, 'Design: Truesilver Boar'),
|
|
(24707, 21945, 0, 0, 0, 1, 1, 1, 1, 'Design: The Aquamarine Ward'),
|
|
(24708, 3395, 0, 0, 0, 1, 1, 1, 1, 'Recipe: Limited Invulnerability Potion'),
|
|
(24708, 8402, 0, 0, 0, 1, 1, 1, 1, 'Pattern: Tough Scorpid Helm'),
|
|
(24708, 11207, 0, 0, 0, 1, 1, 1, 1, 'Formula: Enchant Weapon - Fiery Weapon'),
|
|
(24708, 11226, 0, 0, 0, 1, 1, 1, 1, 'Formula: Enchant Gloves - Riding Skill'),
|
|
(24708, 11610, 0, 0, 0, 1, 1, 1, 1, 'Plans: Dark Iron Pulverizer'),
|
|
(24708, 11614, 0, 0, 0, 1, 1, 1, 1, 'Plans: Dark Iron Mail'),
|
|
(24708, 11813, 0, 0, 0, 1, 1, 1, 1, 'Formula: Smoking Heart of the Mountain'),
|
|
(24708, 12682, 0, 0, 0, 1, 1, 1, 1, 'Plans: Thorium Armor'),
|
|
(24708, 12683, 0, 0, 0, 1, 1, 1, 1, 'Plans: Thorium Belt'),
|
|
(24708, 12684, 0, 0, 0, 1, 1, 1, 1, 'Plans: Thorium Bracers'),
|
|
(24708, 12685, 0, 0, 0, 1, 1, 1, 1, 'Plans: Radiant Belt'),
|
|
(24708, 12689, 0, 0, 0, 1, 1, 1, 1, 'Plans: Radiant Breastplate'),
|
|
(24708, 12691, 0, 0, 0, 1, 1, 1, 1, 'Plans: Wildthorn Mail'),
|
|
(24708, 13476, 0, 0, 0, 1, 1, 1, 1, 'Recipe: Mighty Rage Potion'),
|
|
(24708, 13479, 0, 0, 0, 1, 1, 1, 1, 'Recipe: Elixir of the Sages'),
|
|
(24708, 14466, 0, 0, 0, 1, 1, 1, 1, 'Pattern: Frostweave Tunic'),
|
|
(24708, 14467, 0, 0, 0, 1, 1, 1, 1, 'Pattern: Frostweave Robe'),
|
|
(24708, 14470, 0, 0, 0, 1, 1, 1, 1, 'Pattern: Runecloth Tunic'),
|
|
(24708, 14471, 0, 0, 0, 1, 1, 1, 1, 'Pattern: Cindercloth Vest'),
|
|
(24708, 14473, 0, 0, 0, 1, 1, 1, 1, 'Pattern: Ghostweave Belt'),
|
|
(24708, 14474, 0, 0, 0, 1, 1, 1, 1, 'Pattern: Frostweave Gloves'),
|
|
(24708, 14476, 0, 0, 0, 1, 1, 1, 1, 'Pattern: Cindercloth Gloves'),
|
|
(24708, 14477, 0, 0, 0, 1, 1, 1, 1, 'Pattern: Ghostweave Gloves'),
|
|
(24708, 14478, 0, 0, 0, 1, 1, 1, 1, 'Pattern: Brightcloth Robe'),
|
|
(24708, 14479, 0, 0, 0, 1, 1, 1, 1, 'Pattern: Brightcloth Gloves'),
|
|
(24708, 15727, 0, 0, 0, 1, 1, 1, 1, 'Pattern: Heavy Scorpid Vest'),
|
|
(24708, 15728, 0, 0, 0, 1, 1, 1, 1, 'Pattern: Wicked Leather Bracers'),
|
|
(24708, 15731, 0, 0, 0, 1, 1, 1, 1, 'Pattern: Runic Leather Gauntlets'),
|
|
(24708, 15732, 0, 0, 0, 1, 1, 1, 1, 'Pattern: Volcanic Leggings'),
|
|
(24708, 15733, 0, 0, 0, 1, 1, 1, 1, 'Pattern: Green Dragonscale Leggings'),
|
|
(24708, 16043, 0, 0, 0, 1, 1, 1, 1, 'Schematic: Thorium Rifle'),
|
|
(24708, 16044, 0, 0, 0, 1, 1, 1, 1, 'Schematic: Lifelike Mechanical Toad'),
|
|
(24708, 16045, 0, 0, 0, 1, 1, 1, 1, 'Schematic: Spellpower Goggles Xtreme Plus'),
|
|
(24708, 16214, 0, 0, 0, 1, 1, 1, 1, 'Formula: Enchant Bracer - Greater Intellect'),
|
|
(24708, 16215, 0, 0, 0, 1, 1, 1, 1, 'Formula: Enchant Boots - Greater Stamina'),
|
|
(24708, 16216, 0, 0, 0, 1, 1, 1, 1, 'Formula: Enchant Cloak - Greater Resistance'),
|
|
(24708, 16218, 0, 0, 0, 1, 1, 1, 1, 'Formula: Enchant Bracer - Superior Spirit'),
|
|
(24708, 16219, 0, 0, 0, 1, 1, 1, 1, 'Formula: Enchant Gloves - Greater Agility'),
|
|
(24708, 18653, 0, 0, 0, 1, 1, 1, 1, 'Schematic: Goblin Jumper Cables XL'),
|
|
(24708, 18654, 0, 0, 0, 1, 1, 1, 1, 'Schematic: Gnomish Alarm-o-Bot'),
|
|
(24708, 18661, 0, 0, 0, 1, 1, 1, 1, 'Schematic: World Enlarger'),
|
|
(24708, 21547, 0, 0, 0, 1, 1, 1, 1, 'Recipe: Elixir of Greater Firepower'),
|
|
(24708, 21947, 0, 0, 0, 1, 1, 1, 1, 'Design: Gem Studded Band'),
|
|
(24708, 21949, 0, 0, 0, 1, 1, 1, 1, 'Design: Ruby Serpent'),
|
|
(24709, 11611, 0, 0, 0, 1, 1, 1, 1, 'Plans: Dark Iron Sunderer'),
|
|
(24709, 11612, 0, 0, 0, 1, 1, 1, 1, 'Plans: Dark Iron Plate'),
|
|
(24709, 11615, 0, 0, 0, 1, 1, 1, 1, 'Plans: Dark Iron Shoulders'),
|
|
(24709, 12692, 0, 0, 0, 1, 1, 1, 1, 'Plans: Thorium Shield Spike'),
|
|
(24709, 12693, 0, 0, 0, 1, 1, 1, 1, 'Plans: Thorium Boots'),
|
|
(24709, 12694, 0, 0, 0, 1, 1, 1, 1, 'Plans: Thorium Helm'),
|
|
(24709, 12695, 0, 0, 0, 1, 1, 1, 1, 'Plans: Radiant Gloves'),
|
|
(24709, 12697, 0, 0, 0, 1, 1, 1, 1, 'Plans: Radiant Boots'),
|
|
(24709, 12698, 0, 0, 0, 1, 1, 1, 1, 'Plans: Dawnbringer Shoulders'),
|
|
(24709, 12702, 0, 0, 0, 1, 1, 1, 1, 'Plans: Radiant Circlet'),
|
|
(24709, 12703, 0, 0, 0, 1, 1, 1, 1, 'Plans: Storm Gauntlets'),
|
|
(24709, 12827, 0, 0, 0, 1, 1, 1, 1, 'Plans: Serenity'),
|
|
(24709, 12828, 0, 0, 0, 1, 1, 1, 1, 'Plans: Volcanic Hammer'),
|
|
(24709, 13486, 0, 0, 0, 1, 1, 1, 1, 'Recipe: Transmute Undeath to Water'),
|
|
(24709, 13487, 0, 0, 0, 1, 1, 1, 1, 'Recipe: Transmute Water to Undeath'),
|
|
(24709, 13488, 0, 0, 0, 1, 1, 1, 1, 'Recipe: Transmute Life to Earth'),
|
|
(24709, 13489, 0, 0, 0, 1, 1, 1, 1, 'Recipe: Transmute Earth to Life'),
|
|
(24709, 13490, 0, 0, 0, 1, 1, 1, 1, 'Recipe: Greater Stoneshield Potion'),
|
|
(24709, 13491, 0, 0, 0, 1, 1, 1, 1, 'Recipe: Elixir of the Mongoose'),
|
|
(24709, 13492, 0, 0, 0, 1, 1, 1, 1, 'Recipe: Purification Potion'),
|
|
(24709, 13493, 0, 0, 0, 1, 1, 1, 1, 'Recipe: Greater Arcane Elixir'),
|
|
(24709, 13494, 0, 0, 0, 1, 1, 1, 1, 'Recipe: Greater Fire Protection Potion'),
|
|
(24709, 13495, 0, 0, 0, 1, 1, 1, 1, 'Recipe: Greater Frost Protection Potion'),
|
|
(24709, 13496, 0, 0, 0, 1, 1, 1, 1, 'Recipe: Greater Nature Protection Potion'),
|
|
(24709, 13497, 0, 0, 0, 1, 1, 1, 1, 'Recipe: Greater Arcane Protection Potion'),
|
|
(24709, 13499, 0, 0, 0, 1, 1, 1, 1, 'Recipe: Greater Shadow Protection Potion'),
|
|
(24709, 13501, 0, 0, 0, 1, 1, 1, 1, 'Recipe: Major Mana Potion'),
|
|
(24709, 14480, 0, 0, 0, 1, 1, 1, 1, 'Pattern: Ghostweave Vest'),
|
|
(24709, 14482, 0, 0, 0, 1, 1, 1, 1, 'Pattern: Cindercloth Cloak'),
|
|
(24709, 14484, 0, 0, 0, 1, 1, 1, 1, 'Pattern: Brightcloth Cloak'),
|
|
(24709, 14485, 0, 0, 0, 1, 1, 1, 1, 'Pattern: Wizardweave Leggings'),
|
|
(24709, 14486, 0, 0, 0, 1, 1, 1, 1, 'Pattern: Cloak of Fire'),
|
|
(24709, 14489, 0, 0, 0, 1, 1, 1, 1, 'Pattern: Frostweave Pants'),
|
|
(24709, 14490, 0, 0, 0, 1, 1, 1, 1, 'Pattern: Cindercloth Pants'),
|
|
(24709, 14491, 0, 0, 0, 1, 1, 1, 1, 'Pattern: Runecloth Pants'),
|
|
(24709, 14492, 0, 0, 0, 1, 1, 1, 1, 'Pattern: Felcloth Boots'),
|
|
(24709, 14493, 0, 0, 0, 1, 1, 1, 1, 'Pattern: Robe of Winter Night'),
|
|
(24709, 14494, 0, 0, 0, 1, 1, 1, 1, 'Pattern: Brightcloth Pants'),
|
|
(24709, 14495, 0, 0, 0, 1, 1, 1, 1, 'Pattern: Ghostweave Pants'),
|
|
(24709, 14496, 0, 0, 0, 1, 1, 1, 1, 'Pattern: Felcloth Hood'),
|
|
(24709, 14497, 0, 0, 0, 1, 1, 1, 1, 'Pattern: Mooncloth Leggings'),
|
|
(24709, 14498, 0, 0, 0, 1, 1, 1, 1, 'Pattern: Runecloth Headband'),
|
|
(24709, 15737, 0, 0, 0, 1, 1, 1, 1, 'Pattern: Chimeric Boots'),
|
|
(24709, 15738, 0, 0, 0, 1, 1, 1, 1, 'Pattern: Heavy Scorpid Gauntlets'),
|
|
(24709, 15739, 0, 0, 0, 1, 1, 1, 1, 'Pattern: Runic Leather Bracers'),
|
|
(24709, 15742, 0, 0, 0, 1, 1, 1, 1, 'Pattern: Warbear Harness'),
|
|
(24709, 15743, 0, 0, 0, 1, 1, 1, 1, 'Pattern: Heavy Scorpid Belt'),
|
|
(24709, 15744, 0, 0, 0, 1, 1, 1, 1, 'Pattern: Wicked Leather Headband'),
|
|
(24709, 15745, 0, 0, 0, 1, 1, 1, 1, 'Pattern: Runic Leather Belt'),
|
|
(24709, 15746, 0, 0, 0, 1, 1, 1, 1, 'Pattern: Chimeric Leggings'),
|
|
(24709, 15747, 0, 0, 0, 1, 1, 1, 1, 'Pattern: Frostsaber Leggings'),
|
|
(24709, 15748, 0, 0, 0, 1, 1, 1, 1, 'Pattern: Heavy Scorpid Leggings'),
|
|
(24709, 15749, 0, 0, 0, 1, 1, 1, 1, 'Pattern: Volcanic Breastplate'),
|
|
(24709, 15752, 0, 0, 0, 1, 1, 1, 1, 'Pattern: Living Leggings'),
|
|
(24709, 15753, 0, 0, 0, 1, 1, 1, 1, 'Pattern: Stormshroud Armor'),
|
|
(24709, 15754, 0, 0, 0, 1, 1, 1, 1, 'Pattern: Warbear Woolies'),
|
|
(24709, 15755, 0, 0, 0, 1, 1, 1, 1, 'Pattern: Chimeric Vest'),
|
|
(24709, 15757, 0, 0, 0, 1, 1, 1, 1, 'Pattern: Wicked Leather Pants'),
|
|
(24709, 15760, 0, 0, 0, 1, 1, 1, 1, 'Pattern: Ironfeather Breastplate'),
|
|
(24709, 15761, 0, 0, 0, 1, 1, 1, 1, 'Pattern: Frostsaber Gloves'),
|
|
(24709, 15763, 0, 0, 0, 1, 1, 1, 1, 'Pattern: Blue Dragonscale Shoulders'),
|
|
(24709, 15764, 0, 0, 0, 1, 1, 1, 1, 'Pattern: Stormshroud Shoulders'),
|
|
(24709, 16048, 0, 0, 0, 1, 1, 1, 1, 'Schematic: Dark Iron Rifle'),
|
|
(24709, 16049, 0, 0, 0, 1, 1, 1, 1, 'Schematic: Dark Iron Bomb'),
|
|
(24709, 16051, 0, 0, 0, 1, 1, 1, 1, 'Schematic: Thorium Shells'),
|
|
(24709, 16052, 0, 0, 0, 1, 1, 1, 1, 'Schematic: Voice Amplification Modulator'),
|
|
(24709, 16053, 0, 0, 0, 1, 1, 1, 1, 'Schematic: Master Engineer\'s Goggles'),
|
|
(24709, 16220, 0, 0, 0, 1, 1, 1, 1, 'Formula: Enchant Boots - Spirit'),
|
|
(24709, 16222, 0, 0, 0, 1, 1, 1, 1, 'Formula: Enchant Shield - Superior Spirit'),
|
|
(24709, 16223, 0, 0, 0, 1, 1, 1, 1, 'Formula: Enchant Weapon - Icy Chill'),
|
|
(24709, 16242, 0, 0, 0, 1, 1, 1, 1, 'Formula: Enchant Chest - Major Mana'),
|
|
(24709, 16244, 0, 0, 0, 1, 1, 1, 1, 'Formula: Enchant Gloves - Greater Strength'),
|
|
(24709, 16245, 0, 0, 0, 1, 1, 1, 1, 'Formula: Enchant Boots - Greater Agility'),
|
|
(24709, 16246, 0, 0, 0, 1, 1, 1, 1, 'Formula: Enchant Bracer - Superior Strength'),
|
|
(24709, 16247, 0, 0, 0, 1, 1, 1, 1, 'Formula: Enchant 2H Weapon - Superior Impact'),
|
|
(24709, 16248, 0, 0, 0, 1, 1, 1, 1, 'Formula: Enchant Weapon - Unholy'),
|
|
(24709, 18267, 0, 0, 0, 1, 1, 1, 1, 'Recipe: Runn Tum Tuber Surprise'),
|
|
(24709, 18657, 0, 0, 0, 1, 1, 1, 1, 'Schematic: Hyper-Radiant Flame Reflector'),
|
|
(24709, 21953, 0, 0, 0, 1, 1, 1, 1, 'Design: Emerald Owl'),
|
|
(24720, 954, 0, 0, 0, 1, 1, 1, 1, 'Scroll of Strength'),
|
|
(24720, 955, 0, 0, 0, 1, 1, 1, 1, 'Scroll of Intellect'),
|
|
(24720, 1180, 0, 0, 0, 1, 1, 1, 1, 'Scroll of Stamina'),
|
|
(24720, 1181, 0, 0, 0, 1, 1, 1, 1, 'Scroll of Spirit'),
|
|
(24720, 3013, 0, 0, 0, 1, 1, 1, 1, 'Scroll of Protection'),
|
|
(24722, 1478, 0, 0, 0, 1, 1, 1, 1, 'Scroll of Protection II'),
|
|
(24722, 1711, 0, 0, 0, 1, 1, 1, 1, 'Scroll of Stamina II'),
|
|
(24722, 1712, 0, 0, 0, 1, 1, 1, 1, 'Scroll of Spirit II'),
|
|
(24722, 2289, 0, 0, 0, 1, 1, 1, 1, 'Scroll of Strength II'),
|
|
(24722, 2290, 0, 0, 0, 1, 1, 1, 1, 'Scroll of Intellect II'),
|
|
(24723, 4419, 0, 0, 0, 1, 1, 1, 1, 'Scroll of Intellect III'),
|
|
(24723, 4421, 0, 0, 0, 1, 1, 1, 1, 'Scroll of Protection III'),
|
|
(24723, 4422, 0, 0, 0, 1, 1, 1, 1, 'Scroll of Stamina III'),
|
|
(24723, 4424, 0, 0, 0, 1, 1, 1, 1, 'Scroll of Spirit III'),
|
|
(24723, 4425, 0, 0, 0, 1, 1, 1, 1, 'Scroll of Agility III'),
|
|
(24723, 4426, 0, 0, 0, 1, 1, 1, 1, 'Scroll of Strength III'),
|
|
(24724, 10305, 0, 0, 0, 1, 1, 1, 1, 'Scroll of Protection IV'),
|
|
(24724, 10306, 0, 0, 0, 1, 1, 1, 1, 'Scroll of Spirit IV'),
|
|
(24724, 10307, 0, 0, 0, 1, 1, 1, 1, 'Scroll of Stamina IV'),
|
|
(24724, 10308, 0, 0, 0, 1, 1, 1, 1, 'Scroll of Intellect IV'),
|
|
(24724, 10310, 0, 0, 0, 1, 1, 1, 1, 'Scroll of Strength IV'),
|
|
(24726, 33457, 0, 0, 0, 1, 1, 1, 1, 'Scroll of Agility VI'),
|
|
(24726, 33458, 0, 0, 0, 1, 1, 1, 1, 'Scroll of Intellect VI'),
|
|
(24726, 33459, 0, 0, 0, 1, 1, 1, 1, 'Scroll of Protection VI'),
|
|
(24726, 33460, 0, 0, 0, 1, 1, 1, 1, 'Scroll of Spirit VI'),
|
|
(24726, 33461, 0, 0, 0, 1, 1, 1, 1, 'Scroll of Stamina VI'),
|
|
(24726, 33462, 0, 0, 0, 1, 1, 1, 1, 'Scroll of Strength VI'),
|
|
(24727, 37091, 0, 0, 0, 1, 1, 1, 1, 'Scroll of Intellect VII'),
|
|
(24727, 37093, 0, 0, 0, 1, 1, 1, 1, 'Scroll of Stamina VII'),
|
|
(24727, 37097, 0, 0, 0, 1, 1, 1, 1, 'Scroll of Spirit VII'),
|
|
(24727, 43463, 0, 0, 0, 1, 1, 1, 1, 'Scroll of Agility VII'),
|
|
(24727, 43465, 0, 0, 0, 1, 1, 1, 1, 'Scroll of Strength VII'),
|
|
(24727, 43467, 0, 0, 0, 1, 1, 1, 1, 'Scroll of Protection VII'),
|
|
(24730, 24700, 24700, 67, 0, 1, 1, 1, 1, '(ReferenceTable)'),
|
|
(24730, 24701, 24701, 33, 0, 1, 1, 1, 1, '(ReferenceTable)'),
|
|
(24731, 24700, 24700, 25, 0, 1, 1, 1, 1, '(ReferenceTable)'),
|
|
(24731, 24701, 24701, 50, 0, 1, 1, 1, 1, '(ReferenceTable)'),
|
|
(24731, 24702, 24702, 25, 0, 1, 1, 1, 1, '(ReferenceTable)'),
|
|
(24732, 24701, 24701, 25, 0, 1, 1, 1, 1, '(ReferenceTable)'),
|
|
(24732, 24702, 24702, 50, 0, 1, 1, 1, 1, '(ReferenceTable)'),
|
|
(24732, 24703, 24703, 25, 0, 1, 1, 1, 1, '(ReferenceTable)'),
|
|
(24733, 24702, 24702, 25, 0, 1, 1, 1, 1, '(ReferenceTable)'),
|
|
(24733, 24703, 24703, 50, 0, 1, 1, 1, 1, '(ReferenceTable)'),
|
|
(24733, 24704, 24704, 25, 0, 1, 1, 1, 1, '(ReferenceTable)'),
|
|
(24734, 24703, 24703, 25, 0, 1, 1, 1, 1, '(ReferenceTable)'),
|
|
(24734, 24704, 24704, 50, 0, 1, 1, 1, 1, '(ReferenceTable)'),
|
|
(24734, 24705, 24705, 25, 0, 1, 1, 1, 1, '(ReferenceTable)'),
|
|
(24735, 24704, 24704, 25, 0, 1, 1, 1, 1, '(ReferenceTable)'),
|
|
(24735, 24705, 24705, 50, 0, 1, 1, 1, 1, '(ReferenceTable)'),
|
|
(24735, 24706, 24706, 25, 0, 1, 1, 1, 1, '(ReferenceTable)'),
|
|
(24736, 24705, 24705, 25, 0, 1, 1, 1, 1, '(ReferenceTable)'),
|
|
(24736, 24706, 24706, 50, 0, 1, 1, 1, 1, '(ReferenceTable)'),
|
|
(24736, 24707, 24707, 25, 0, 1, 1, 1, 1, '(ReferenceTable)'),
|
|
(24737, 24706, 24706, 25, 0, 1, 1, 1, 1, '(ReferenceTable)'),
|
|
(24737, 24707, 24707, 50, 0, 1, 1, 1, 1, '(ReferenceTable)'),
|
|
(24737, 24708, 24708, 25, 0, 1, 1, 1, 1, '(ReferenceTable)'),
|
|
(24739, 24708, 24708, 33, 0, 1, 1, 1, 1, '(ReferenceTable)'),
|
|
(24739, 24709, 24709, 67, 0, 1, 1, 1, 1, '(ReferenceTable)'),
|
|
(24740, 27925, 0, 0, 0, 1, 1, 1, 1, 'Ravenclaw Band'),
|
|
(24740, 27946, 0, 0, 0, 1, 1, 1, 1, 'Avian Cloak of Feathers'),
|
|
(24740, 27980, 0, 0, 0, 1, 1, 1, 1, 'Terokk\'s Nightmace'),
|
|
(24740, 27981, 0, 0, 0, 1, 1, 1, 1, 'Sethekk Oracle Cloak'),
|
|
(24740, 27985, 0, 0, 0, 1, 1, 1, 1, 'Deathforge Girdle'),
|
|
(24740, 27986, 0, 0, 0, 1, 1, 1, 1, 'Crow Wing Reaper'),
|
|
(24741, 27776, 0, 0, 0, 1, 1, 1, 1, 'Shoulderpads of Assassination'),
|
|
(24741, 27838, 0, 0, 0, 1, 1, 1, 1, 'Incanter\'s Trousers'),
|
|
(24741, 27875, 0, 0, 0, 1, 1, 1, 1, 'Hallowed Trousers'),
|
|
(24741, 27936, 0, 0, 0, 1, 1, 1, 1, 'Greaves of Desolation'),
|
|
(24741, 27948, 0, 0, 0, 1, 1, 1, 1, 'Trousers of Oblivion'),
|
|
(25000, 28372, 0, 0, 0, 1, 1, 1, 1, 'Idol of Feral Shadows'),
|
|
(25000, 28373, 0, 0, 0, 1, 1, 1, 1, 'Cloak of Scintillating Auras'),
|
|
(25000, 28374, 0, 0, 0, 1, 1, 1, 1, 'Mana-Sphere Shoulderguards'),
|
|
(25000, 28375, 0, 0, 0, 1, 1, 1, 1, 'Rubium War-Girdle'),
|
|
(25000, 28384, 0, 0, 0, 1, 1, 1, 1, 'Outland Striders'),
|
|
(25001, 24308, 0, 10, 0, 1, 0, 1, 1, 'Pattern: Whitemend Pants'),
|
|
(25001, 28386, 0, 0, 0, 1, 1, 1, 1, 'Nether Core\'s Control Rod'),
|
|
(25001, 28387, 0, 0, 0, 1, 1, 1, 1, 'Lamp of Peaceful Repose'),
|
|
(25001, 28390, 0, 0, 0, 1, 1, 1, 1, 'Thatia\'s Self-Correcting Gauntlets'),
|
|
(25001, 28391, 0, 0, 0, 1, 1, 1, 1, 'Worldfire Chestguard'),
|
|
(25001, 28392, 0, 0, 0, 1, 1, 1, 1, 'Reflex Blades'),
|
|
(25002, 28393, 0, 0, 0, 1, 1, 1, 1, 'Warmaul of Infused Light'),
|
|
(25002, 28394, 0, 0, 0, 1, 1, 1, 1, 'Ryngo\'s Band of Ingenuity'),
|
|
(25002, 28396, 0, 0, 0, 1, 1, 1, 1, 'Gloves of the Unbound'),
|
|
(25002, 28397, 0, 0, 0, 1, 1, 1, 1, 'Emberhawk Crossbow'),
|
|
(25002, 28398, 0, 0, 0, 1, 1, 1, 1, 'The Sleeper\'s Cord'),
|
|
(25004, 28205, 0, 0, 0, 1, 2, 1, 1, 'Breastplate of the Bold'),
|
|
(25004, 28231, 0, 0, 0, 1, 2, 1, 1, 'Tidefury Chestpiece'),
|
|
(25004, 28403, 0, 0, 0, 1, 2, 1, 1, 'Doomplate Chestguard'),
|
|
(25004, 28406, 0, 0, 0, 1, 2, 1, 1, 'Sigil-Laced Boots'),
|
|
(25004, 28407, 0, 0, 0, 1, 2, 1, 1, 'Elementium Band of the Sentry'),
|
|
(25004, 28412, 0, 0, 0, 1, 2, 1, 1, 'Lamp of Peaceful Radiance'),
|
|
(25004, 28413, 0, 0, 0, 1, 3, 1, 1, 'Hallowed Crown'),
|
|
(25004, 28414, 0, 0, 0, 1, 3, 1, 1, 'Helm of Assassination'),
|
|
(25004, 28415, 0, 0, 0, 1, 3, 1, 1, 'Hood of Oblivion'),
|
|
(25004, 28416, 0, 0, 0, 1, 3, 1, 1, 'Hungering Spineripper'),
|
|
(25004, 28418, 0, 0, 0, 1, 3, 1, 1, 'Shiffar\'s Nexus-Horn'),
|
|
(25004, 28419, 0, 0, 0, 1, 3, 1, 1, 'Choker of Fluid Thought'),
|
|
(25005, 29241, 0, 0, 0, 1, 3, 1, 1, 'Belt of Depravity'),
|
|
(25005, 29248, 0, 0, 0, 1, 3, 1, 1, 'Shadowstep Striders'),
|
|
(25005, 29252, 0, 0, 0, 1, 3, 1, 1, 'Bracers of Dignity'),
|
|
(25005, 29360, 0, 0, 0, 1, 3, 1, 1, 'Vileblade of the Betrayer'),
|
|
(25006, 27776, 0, 0, 0, 1, 2, 1, 1, 'Shoulderpads of Assassination'),
|
|
(25006, 27838, 0, 0, 0, 1, 2, 1, 1, 'Incanter\'s Trousers'),
|
|
(25006, 27875, 0, 0, 0, 1, 2, 1, 1, 'Hallowed Trousers'),
|
|
(25006, 27925, 0, 0, 0, 1, 2, 1, 1, 'Ravenclaw Band'),
|
|
(25006, 27936, 0, 0, 0, 1, 2, 1, 1, 'Greaves of Desolation'),
|
|
(25006, 27946, 0, 0, 0, 1, 2, 1, 1, 'Avian Cloak of Feathers'),
|
|
(25006, 27948, 0, 0, 0, 1, 2, 1, 1, 'Trousers of Oblivion'),
|
|
(25006, 27980, 0, 0, 0, 1, 2, 1, 1, 'Terokk\'s Nightmace'),
|
|
(25006, 27981, 0, 0, 0, 1, 2, 1, 1, 'Sethekk Oracle Cloak'),
|
|
(25006, 27985, 0, 0, 0, 1, 2, 1, 1, 'Deathforge Girdle'),
|
|
(25006, 27986, 0, 0, 0, 1, 2, 1, 1, 'Crow Wing Reaper'),
|
|
(25007, 27914, 0, 0, 0, 1, 2, 1, 1, 'Moonstrider Boots'),
|
|
(25007, 27915, 0, 0, 0, 1, 2, 1, 1, 'Sky-Hunter Swift Boots'),
|
|
(25007, 27916, 0, 0, 0, 1, 2, 1, 1, 'Sethekk Feather-Darts'),
|
|
(25007, 27917, 0, 0, 0, 1, 2, 1, 1, 'Libram of the Eternal Rest'),
|
|
(25007, 27918, 0, 0, 0, 1, 2, 1, 1, 'Bands of Syth'),
|
|
(25007, 27919, 0, 0, 0, 1, 2, 1, 1, 'Light-Woven Slippers'),
|
|
(25009, 29238, 0, 0, 0, 1, 1, 1, 1, 'Lion\'s Heart Girdle'),
|
|
(25009, 29264, 0, 0, 0, 1, 1, 1, 1, 'Tree-Mender\'s Belt'),
|
|
(25009, 29346, 0, 0, 0, 1, 1, 1, 1, 'Feltooth Eviscerator'),
|
|
(25009, 32077, 0, 0, 0, 1, 1, 1, 1, 'Wrath Infused Gauntlets'),
|
|
(25010, 28253, 0, 0, 0, 1, 1, 1, 1, 'Plasma Rat\'s Hyper-Scythe'),
|
|
(25010, 28254, 0, 0, 0, 1, 1, 1, 1, 'Warp Engineer\'s Prismatic Chain'),
|
|
(25010, 28255, 0, 0, 0, 1, 1, 1, 1, 'Lunar-Claw Pauldrons'),
|
|
(25010, 28256, 0, 0, 0, 1, 1, 1, 1, 'Thoriumweave Cloak'),
|
|
(25010, 28257, 0, 0, 0, 1, 1, 1, 1, 'Hammer of the Penitent'),
|
|
(25011, 28258, 0, 0, 0, 1, 1, 1, 1, 'Nethershrike'),
|
|
(25011, 28259, 0, 0, 0, 1, 1, 1, 1, 'Cosmic Lifeband'),
|
|
(25011, 28260, 0, 0, 0, 1, 1, 1, 1, 'Manual of the Nethermancer'),
|
|
(25011, 28262, 0, 0, 0, 1, 1, 1, 1, 'Jade-Skull Breastplate'),
|
|
(25011, 28263, 0, 0, 0, 1, 1, 1, 1, 'Stellaris'),
|
|
(25012, 27884, 0, 0, 0, 1, 2, 1, 1, 'Ornate Boots of the Sanctified'),
|
|
(25012, 27885, 0, 0, 0, 1, 2, 1, 1, 'Soul-Wand of the Aldor'),
|
|
(25012, 27886, 0, 0, 0, 1, 2, 1, 1, 'Idol of the Emerald Queen'),
|
|
(25012, 27887, 0, 0, 0, 1, 2, 1, 1, 'Platinum Shield of the Valorous'),
|
|
(25012, 27888, 0, 0, 0, 1, 2, 1, 1, 'Dream-Wing Helm'),
|
|
(25012, 27889, 0, 0, 0, 1, 2, 1, 1, 'Jaedenfire Gloves of Annihilation'),
|
|
(25013, 27468, 0, 0, 0, 1, 2, 1, 1, 'Moonglade Handwraps'),
|
|
(25013, 27890, 0, 0, 0, 1, 2, 1, 1, 'Wand of the Netherwing'),
|
|
(25013, 27891, 0, 0, 0, 1, 2, 1, 1, 'Adamantine Figurine'),
|
|
(25013, 27892, 0, 0, 0, 1, 2, 1, 1, 'Cloak of the Inciter'),
|
|
(25013, 27893, 0, 0, 0, 1, 2, 1, 1, 'Ornate Leggings of the Venerated'),
|
|
(25013, 28134, 0, 0, 0, 1, 2, 1, 1, 'Brooch of Heightened Potential'),
|
|
(25014, 27775, 0, 0, 0, 1, 2, 1, 1, 'Hallowed Pauldrons'),
|
|
(25014, 27897, 0, 0, 0, 1, 2, 1, 1, 'Breastplate of Many Graces'),
|
|
(25014, 27898, 0, 0, 0, 1, 2, 1, 1, 'Wrathfire Hand-Cannon'),
|
|
(25014, 27900, 0, 0, 0, 1, 2, 1, 1, 'Jewel of Charismatic Mystique'),
|
|
(25014, 27901, 0, 0, 0, 1, 2, 1, 1, 'Blackout Truncheon'),
|
|
(25015, 27508, 0, 0, 0, 1, 2, 1, 1, 'Incanter\'s Gloves'),
|
|
(25015, 27783, 0, 0, 0, 1, 2, 1, 1, 'Moonrage Girdle'),
|
|
(25015, 27784, 0, 0, 0, 1, 2, 1, 1, 'Scintillating Coral Band'),
|
|
(25015, 27787, 0, 0, 0, 1, 2, 1, 1, 'Chestguard of No Remorse'),
|
|
(25015, 27789, 0, 0, 0, 1, 2, 1, 1, 'Cloak of Whispering Shells'),
|
|
(25016, 27790, 0, 0, 0, 1, 1, 1, 1, 'Mask of Penance'),
|
|
(25016, 27791, 0, 0, 0, 1, 1, 1, 1, 'Serpentcrest Life-Staff'),
|
|
(25016, 27792, 0, 0, 0, 1, 1, 1, 1, 'Steam-Hinge Chain of Valor'),
|
|
(25016, 27793, 0, 0, 0, 1, 1, 1, 1, 'Earth Mantle Handwraps'),
|
|
(25016, 27794, 0, 0, 0, 1, 1, 1, 1, 'Recoilless Rocket Ripper X-54'),
|
|
(25017, 27987, 0, 0, 0, 1, 1, 1, 1, 'Melmorta\'s Twilight Longbow'),
|
|
(25017, 27988, 0, 0, 0, 1, 1, 1, 1, 'Burnoose of Shifting Ages'),
|
|
(25017, 27993, 0, 0, 0, 1, 1, 1, 1, 'Mask of Inner Fire'),
|
|
(25017, 27994, 0, 0, 0, 1, 1, 1, 1, 'Mantle of Three Terrors'),
|
|
(25017, 27995, 0, 0, 0, 1, 1, 1, 1, 'Sun-Gilded Shouldercaps'),
|
|
(25017, 27996, 0, 0, 0, 1, 1, 1, 1, 'Ring of Spiritual Precision'),
|
|
(25018, 28033, 0, 0, 0, 1, 1, 1, 1, 'Epoch-Mender'),
|
|
(25018, 28034, 0, 0, 0, 1, 1, 1, 1, 'Hourglass of the Unraveller'),
|
|
(25018, 28184, 0, 0, 0, 1, 1, 1, 1, 'Millennium Blade'),
|
|
(25018, 28185, 0, 0, 0, 1, 1, 1, 1, 'Khadgar\'s Kilt of Abjuration'),
|
|
(25018, 28186, 0, 0, 0, 1, 1, 1, 1, 'Laughing Skull Battle-Harness'),
|
|
(25018, 28187, 0, 0, 0, 1, 1, 1, 1, 'Star-Heart Lamp'),
|
|
(25019, 27517, 0, 0, 0, 1, 2, 1, 1, 'Bands of Nethekurse'),
|
|
(25019, 27518, 0, 0, 0, 1, 2, 1, 1, 'Ivory Idol of the Moongoddess'),
|
|
(25019, 27519, 0, 0, 0, 1, 2, 1, 1, 'Cloak of Malice'),
|
|
(25019, 27520, 0, 0, 0, 1, 2, 1, 1, 'Greathelm of the Unbreakable'),
|
|
(25019, 27521, 0, 0, 0, 1, 2, 1, 1, 'Telaari Hunting Girdle'),
|
|
(25020, 27524, 0, 0, 0, 1, 2, 1, 1, 'Firemaul of Destruction'),
|
|
(25020, 27525, 0, 0, 0, 1, 2, 1, 1, 'Jeweled Boots of Sanctification'),
|
|
(25020, 27526, 0, 0, 0, 1, 2, 1, 1, 'Skyfire Hawk-Bow'),
|
|
(25020, 27802, 0, 0, 0, 1, 2, 1, 1, 'Tidefury Shoulderguards'),
|
|
(25020, 27868, 0, 0, 0, 1, 2, 1, 1, 'Runesong Dagger'),
|
|
(25021, 28296, 0, 0, 0, 1, 1, 1, 1, 'Libram of the Lightbringer'),
|
|
(25021, 28301, 0, 0, 0, 1, 1, 1, 1, 'Syrannis\' Mystic Sheen'),
|
|
(25021, 28304, 0, 0, 0, 1, 1, 1, 1, 'Prismatic Mittens of Mending'),
|
|
(25021, 28306, 0, 0, 0, 1, 1, 1, 1, 'Towering Mantle of the Hunt'),
|
|
(25021, 28311, 0, 0, 0, 1, 1, 1, 1, 'Revenger'),
|
|
(25022, 28315, 0, 0, 0, 1, 1, 1, 1, 'Stormreaver Warblades'),
|
|
(25022, 28316, 0, 0, 0, 1, 1, 1, 1, 'Aegis of the Sunbird'),
|
|
(25022, 28317, 0, 0, 0, 1, 1, 1, 1, 'Energis Armwraps'),
|
|
(25022, 28318, 0, 0, 0, 1, 1, 1, 1, 'Obsidian Clodstompers'),
|
|
(25022, 28321, 0, 0, 0, 1, 1, 1, 1, 'Enchanted Thorium Torque'),
|
|
(25023, 28322, 0, 0, 0, 1, 1, 1, 1, 'Runed Dagger of Solace'),
|
|
(25023, 28323, 0, 0, 0, 1, 1, 1, 1, 'Ring of Umbral Doom'),
|
|
(25023, 28324, 0, 0, 0, 1, 1, 1, 1, 'Gauntlets of Cruel Intention'),
|
|
(25023, 28325, 0, 0, 0, 1, 1, 1, 1, 'Dreamer\'s Dragonstaff'),
|
|
(25023, 28327, 0, 0, 0, 1, 1, 1, 1, 'Arcane Netherband'),
|
|
(25024, 27739, 0, 0, 0, 1, 1, 1, 1, 'Spaulders of the Righteous'),
|
|
(25024, 28328, 0, 0, 0, 1, 1, 1, 1, 'Mithril-Bark Cloak'),
|
|
(25024, 28338, 0, 0, 0, 1, 1, 1, 1, 'Devil-Stitched Leggings'),
|
|
(25024, 28339, 0, 0, 0, 1, 1, 1, 1, 'Boots of the Shifting Sands'),
|
|
(25024, 28340, 0, 0, 0, 1, 1, 1, 1, 'Mantle of Autumn'),
|
|
(25025, 34697, 0, 0, 0, 1, 1, 1, 1, 'Bindings of Raging Fire'),
|
|
(25025, 34698, 0, 0, 0, 1, 1, 1, 1, 'Bracers of the Forest Stalker'),
|
|
(25025, 34699, 0, 0, 0, 1, 1, 1, 1, 'Sun-forged Cleaver'),
|
|
(25025, 34700, 0, 0, 0, 1, 1, 1, 1, 'Gauntlets of Divine Blessings'),
|
|
(25025, 34701, 0, 0, 0, 1, 1, 1, 1, 'Leggings of the Betrayed'),
|
|
(25025, 34702, 0, 0, 0, 1, 1, 1, 1, 'Cloak of Swift Mending'),
|
|
(25026, 34703, 0, 0, 0, 1, 1, 1, 1, 'Latro\'s Dancing Blade'),
|
|
(25026, 34704, 0, 0, 0, 1, 1, 1, 1, 'Band of Arcane Alacrity'),
|
|
(25026, 34705, 0, 0, 0, 1, 1, 1, 1, 'Bracers of Divine Infusion'),
|
|
(25026, 34706, 0, 0, 0, 1, 1, 1, 1, 'Band of Determination'),
|
|
(25026, 34707, 0, 0, 0, 1, 1, 1, 1, 'Boots of Resuscitation'),
|
|
(25026, 34708, 0, 0, 0, 1, 1, 1, 1, 'Cloak of the Coming Night'),
|
|
(25027, 34783, 0, 0, 0, 1, 1, 1, 1, 'Nightstrike'),
|
|
(25027, 34788, 0, 0, 0, 1, 1, 1, 1, 'Duskhallow Mantle'),
|
|
(25027, 34789, 0, 0, 0, 1, 1, 1, 1, 'Bracers of Slaughter'),
|
|
(25027, 34790, 0, 0, 0, 1, 1, 1, 1, 'Battle-mace of the High Priestess'),
|
|
(25027, 34791, 0, 0, 0, 1, 1, 1, 1, 'Gauntlets of the Tranquil Waves'),
|
|
(25027, 34792, 0, 0, 0, 1, 1, 1, 1, 'Cloak of the Betrayed'),
|
|
(25028, 34793, 0, 0, 0, 1, 2, 1, 1, 'Cord of Reconstruction'),
|
|
(25028, 34794, 0, 0, 0, 1, 2, 1, 1, 'Axe of Shattered Dreams'),
|
|
(25028, 34795, 0, 0, 0, 1, 2, 1, 1, 'Helm of Sanctification'),
|
|
(25028, 34796, 0, 0, 0, 1, 2, 1, 1, 'Robes of Summer Flame'),
|
|
(25028, 34797, 0, 0, 0, 1, 2, 1, 1, 'Sun-infused Focus Staff'),
|
|
(25028, 34798, 0, 0, 0, 1, 2, 1, 1, 'Band of Celerity'),
|
|
(25029, 34625, 0, 0, 0, 1, 1, 1, 1, 'Kharmaa\'s Ring of Fate'),
|
|
(25029, 34799, 0, 0, 0, 1, 1, 1, 1, 'Hauberk of the War Bringer'),
|
|
(25029, 34807, 0, 0, 0, 1, 1, 1, 1, 'Sunstrider Warboots'),
|
|
(25029, 34808, 0, 0, 0, 1, 1, 1, 1, 'Gloves of Arcane Acuity'),
|
|
(25029, 34809, 0, 0, 0, 1, 1, 1, 1, 'Sunrage Treads'),
|
|
(25029, 34810, 0, 0, 0, 1, 1, 1, 1, 'Cloak of Blade Turning'),
|
|
(25030, 31870, 0, 0, 0, 1, 1, 1, 1, 'Design: Great Golden Draenite'),
|
|
(25030, 31871, 0, 0, 0, 1, 1, 1, 1, 'Design: Balanced Shadow Draenite'),
|
|
(25030, 31872, 0, 0, 0, 1, 1, 1, 1, 'Design: Infused Shadow Draenite'),
|
|
(25030, 31873, 0, 0, 0, 1, 1, 1, 1, 'Design: Veiled Flame Spessarite'),
|
|
(25030, 31874, 0, 0, 0, 1, 1, 1, 1, 'Design: Wicked Flame Spessarite'),
|
|
(25100, 22829, 0, 3, 0, 1, 0, 1, 1, 'Super Healing Potion'),
|
|
(25100, 23436, 0, 0.5, 0, 1, 0, 1, 1, 'Living Ruby'),
|
|
(25100, 23437, 0, 0.5, 0, 1, 0, 1, 1, 'Talasite'),
|
|
(25100, 23438, 0, 0.5, 0, 1, 0, 1, 1, 'Star of Elune'),
|
|
(25100, 23439, 0, 0.5, 0, 1, 0, 1, 1, 'Noble Topaz'),
|
|
(25100, 23440, 0, 0.5, 0, 1, 0, 1, 1, 'Dawnstone'),
|
|
(25100, 27858, 0, 8, 0, 1, 0, 1, 1, 'Sunspring Carp'),
|
|
(25100, 29569, 0, 30, 0, 1, 0, 1, 1, 'Strong Junkbox'),
|
|
(25100, 29576, 0, 57, 0, 1, 0, 1, 1, 'Shark Bait'),
|
|
(25101, 29448, 0, 7, 0, 1, 0, 1, 1, 'Mag\'har Mild Cheese'),
|
|
(25101, 29450, 0, 7, 0, 1, 0, 1, 1, 'Telaari Grapes'),
|
|
(25101, 33447, 0, 6, 0, 1, 0, 1, 1, 'Runic Healing Potion'),
|
|
(25101, 33449, 0, 6, 0, 1, 0, 1, 1, 'Crusty Flatbread'),
|
|
(25101, 36863, 0, 0.5, 0, 1, 0, 1, 1, 'Decahedral Dwarven Dice'),
|
|
(25101, 37467, 0, 32.5, 0, 1, 0, 1, 1, 'A Steamy Romance Novel: Forbidden Love'),
|
|
(25101, 38261, 0, 10, 0, 1, 0, 1, 1, 'Bent House Key'),
|
|
(25101, 43575, 0, 31, 0, 1, 0, 1, 1, 'Reinforced Junkbox'),
|
|
(25102, 8952, 0, 20, 0, 1, 0, 1, 1, 'Roasted Quail'),
|
|
(25102, 22829, 0, 8, 0, 1, 0, 1, 1, 'Super Healing Potion'),
|
|
(25102, 23436, 0, 0.5, 0, 1, 0, 1, 1, 'Living Ruby'),
|
|
(25102, 23437, 0, 0.5, 0, 1, 0, 1, 1, 'Talasite'),
|
|
(25102, 23438, 0, 0.5, 0, 1, 0, 1, 1, 'Star of Elune'),
|
|
(25102, 23440, 0, 0.5, 0, 1, 0, 1, 1, 'Dawnstone'),
|
|
(25102, 23441, 0, 0.5, 0, 1, 0, 1, 1, 'Nightseye'),
|
|
(25102, 29569, 0, 33, 0, 1, 0, 1, 1, 'Strong Junkbox'),
|
|
(25102, 29572, 0, 37, 0, 1, 0, 1, 1, 'Aboriginal Carvings'),
|
|
(25103, 22829, 0, 10, 0, 1, 0, 1, 1, 'Super Healing Potion'),
|
|
(25103, 27858, 0, 20, 0, 1, 0, 1, 1, 'Sunspring Carp'),
|
|
(25103, 29569, 0, 50, 0, 1, 0, 1, 1, 'Strong Junkbox'),
|
|
(25103, 29576, 0, 20, 0, 1, 0, 1, 1, 'Shark Bait'),
|
|
(25104, 22829, 0, 2, 0, 1, 0, 1, 1, 'Super Healing Potion'),
|
|
(25104, 27855, 0, 7, 0, 1, 0, 1, 1, 'Mag\'har Grainbread'),
|
|
(25104, 27856, 0, 6, 0, 1, 0, 1, 1, 'Skethyl Berries'),
|
|
(25104, 29569, 0, 40, 0, 1, 0, 1, 1, 'Strong Junkbox'),
|
|
(25104, 29571, 0, 37, 0, 1, 0, 1, 1, 'A Steamy Romance Novel'),
|
|
(25104, 30458, 0, 8, 0, 1, 0, 1, 1, 'Stromgarde Muenster'),
|
|
(25104, 36863, 0, 0.5, 0, 1, 0, 1, 1, 'Decahedral Dwarven Dice'),
|
|
(25105, 22829, 0, 7, 0, 1, 0, 1, 1, 'Super Healing Potion'),
|
|
(25105, 23436, 0, 0.5, 0, 1, 0, 1, 1, 'Living Ruby'),
|
|
(25105, 23437, 0, 0.5, 0, 1, 0, 1, 1, 'Talasite'),
|
|
(25105, 23439, 0, 0.5, 0, 1, 0, 1, 1, 'Noble Topaz'),
|
|
(25105, 23440, 0, 0.5, 0, 1, 0, 1, 1, 'Dawnstone'),
|
|
(25105, 23441, 0, 0.5, 0, 1, 0, 1, 1, 'Nightseye'),
|
|
(25105, 27854, 0, 12, 0, 1, 0, 1, 1, 'Smoked Talbuk Venison'),
|
|
(25105, 27855, 0, 12, 0, 1, 0, 1, 1, 'Mag\'har Grainbread'),
|
|
(25105, 29569, 0, 39, 0, 1, 0, 1, 1, 'Strong Junkbox'),
|
|
(25105, 29570, 0, 28, 0, 1, 0, 1, 1, 'A Gnome Effigy'),
|
|
(25106, 33447, 0, 6, 0, 1, 0, 1, 1, 'Runic Healing Potion'),
|
|
(25106, 37452, 0, 17, 0, 1, 0, 1, 1, 'Fatty Bluefin'),
|
|
(25106, 38273, 0, 26, 0, 1, 0, 1, 1, 'Brain Coral'),
|
|
(25106, 38274, 0, 23, 0, 1, 0, 1, 1, 'Large Snail Shell'),
|
|
(25106, 43575, 0, 28, 0, 1, 0, 1, 1, 'Reinforced Junkbox'),
|
|
(25107, 33447, 0, 5, 0, 1, 0, 1, 1, 'Runic Healing Potion'),
|
|
(25107, 33449, 0, 16, 0, 1, 0, 1, 1, 'Crusty Flatbread'),
|
|
(25107, 33454, 0, 9, 0, 1, 0, 1, 1, 'Salted Venison'),
|
|
(25107, 36862, 0, 1, 0, 1, 0, 1, 1, 'Worn Troll Dice'),
|
|
(25107, 38260, 0, 33, 0, 1, 0, 1, 1, 'Empty Tobacco Pouch'),
|
|
(25107, 38261, 0, 21, 0, 1, 0, 1, 1, 'Bent House Key'),
|
|
(25107, 43575, 0, 16, 0, 1, 0, 1, 1, 'Reinforced Junkbox'),
|
|
(26000, 33358, 0, 0, 0, 1, 1, 1, 1, 'Thread-Bare Cloth Belt'),
|
|
(26000, 33359, 0, 0, 0, 1, 1, 1, 1, 'Thread-Bare Cloth Boots'),
|
|
(26000, 33360, 0, 0, 0, 1, 1, 1, 1, 'Thread-Bare Cloth Bracers'),
|
|
(26000, 33361, 0, 0, 0, 1, 1, 1, 1, 'Thread-Bare Cloth Gloves'),
|
|
(26000, 33362, 0, 0, 0, 1, 1, 1, 1, 'Thread-Bare Cloth Pants'),
|
|
(26000, 33363, 0, 0, 0, 1, 1, 1, 1, 'Thread-Bare Cloth Shoulderpads'),
|
|
(26000, 33364, 0, 0, 0, 1, 1, 1, 1, 'Thread-Bare Cloth Vest'),
|
|
(26000, 33372, 0, 0, 0, 1, 1, 1, 1, 'Fur-Lined Armor'),
|
|
(26000, 33373, 0, 0, 0, 1, 1, 1, 1, 'Fur-Lined Belt'),
|
|
(26000, 33374, 0, 0, 0, 1, 1, 1, 1, 'Fur-Lined Boots'),
|
|
(26000, 33375, 0, 0, 0, 1, 1, 1, 1, 'Fur-Lined Bracers'),
|
|
(26000, 33376, 0, 0, 0, 1, 1, 1, 1, 'Fur-Lined Gloves'),
|
|
(26000, 33377, 0, 0, 0, 1, 1, 1, 1, 'Fur-Lined Pants'),
|
|
(26000, 33378, 0, 0, 0, 1, 1, 1, 1, 'Fur-Lined Shoulderpads'),
|
|
(26000, 33390, 0, 0, 0, 1, 1, 1, 1, 'Icy Mail Armor'),
|
|
(26000, 33391, 0, 0, 0, 1, 1, 1, 1, 'Icy Mail Belt'),
|
|
(26000, 33392, 0, 0, 0, 1, 1, 1, 1, 'Icy Mail Boots'),
|
|
(26000, 33393, 0, 0, 0, 1, 1, 1, 1, 'Icy Mail Bracers'),
|
|
(26000, 33394, 0, 0, 0, 1, 1, 1, 1, 'Icy Mail Gloves'),
|
|
(26000, 33395, 0, 0, 0, 1, 1, 1, 1, 'Icy Mail Pants'),
|
|
(26000, 33396, 0, 0, 0, 1, 1, 1, 1, 'Icy Mail Shoulderpads'),
|
|
(26000, 33404, 0, 0, 0, 1, 1, 1, 1, 'Ice-Bound Plate Belt'),
|
|
(26000, 33405, 0, 0, 0, 1, 1, 1, 1, 'Ice-Bound Plate Boots'),
|
|
(26000, 33406, 0, 0, 0, 1, 1, 1, 1, 'Ice-Bound Plate Bracers'),
|
|
(26000, 33407, 0, 0, 0, 1, 1, 1, 1, 'Ice-Bound Plate Chestpiece'),
|
|
(26000, 33408, 0, 0, 0, 1, 1, 1, 1, 'Ice-Bound Plate Gloves'),
|
|
(26000, 33409, 0, 0, 0, 1, 1, 1, 1, 'Ice-Bound Plate Pants'),
|
|
(26000, 33410, 0, 0, 0, 1, 1, 1, 1, 'Ice-Bound Plate Shoulderpads'),
|
|
(26000, 33437, 0, 0, 0, 1, 1, 1, 1, 'Icy Mail Circlet'),
|
|
(26000, 33438, 0, 0, 0, 1, 1, 1, 1, 'Thread-Bare Hat'),
|
|
(26000, 33439, 0, 0, 0, 1, 1, 1, 1, 'Fur-Lined Leather Helmet'),
|
|
(26000, 33440, 0, 0, 0, 1, 1, 1, 1, 'Ice-Bound Plate Helmet'),
|
|
(26001, 33422, 0, 0, 0, 1, 1, 1, 1, 'Shattered Bow'),
|
|
(26001, 33423, 0, 0, 0, 1, 1, 1, 1, 'Rime-Covered Mace'),
|
|
(26001, 33424, 0, 0, 0, 1, 1, 1, 1, 'Cracked Iron Staff'),
|
|
(26001, 33425, 0, 0, 0, 1, 1, 1, 1, 'Ice-Pitted Blade'),
|
|
(26001, 33426, 0, 0, 0, 1, 1, 1, 1, 'Chipped Timber Axe'),
|
|
(26001, 33427, 0, 0, 0, 1, 1, 1, 1, 'Frost-Encrusted Rifle'),
|
|
(26001, 33428, 0, 0, 0, 1, 1, 1, 1, 'Dulled Shiv'),
|
|
(26001, 33429, 0, 0, 0, 1, 1, 1, 1, 'Ice Cleaver'),
|
|
(26001, 33430, 0, 0, 0, 1, 1, 1, 1, 'Abandoned Greatsword'),
|
|
(26001, 33431, 0, 0, 0, 1, 1, 1, 1, 'Icesmashing Mace'),
|
|
(26002, 33365, 0, 0, 0, 1, 1, 1, 1, 'Frost-Rimed Cloth Belt'),
|
|
(26002, 33366, 0, 0, 0, 1, 1, 1, 1, 'Frost-Rimed Cloth Boots'),
|
|
(26002, 33367, 0, 0, 0, 1, 1, 1, 1, 'Frost-Rimed Cloth Bracers'),
|
|
(26002, 33368, 0, 0, 0, 1, 1, 1, 1, 'Frost-Rimed Cloth Gloves'),
|
|
(26002, 33369, 0, 0, 0, 1, 1, 1, 1, 'Frost-Rimed Cloth Pants'),
|
|
(26002, 33370, 0, 0, 0, 1, 1, 1, 1, 'Frost-Rimed Cloth Shoulderpads'),
|
|
(26002, 33371, 0, 0, 0, 1, 1, 1, 1, 'Frost-Rimed Cloth Vest'),
|
|
(26002, 33379, 0, 0, 0, 1, 1, 1, 1, 'Frozen Armor'),
|
|
(26002, 33380, 0, 0, 0, 1, 1, 1, 1, 'Frozen Belt'),
|
|
(26002, 33381, 0, 0, 0, 1, 1, 1, 1, 'Frozen Boots'),
|
|
(26002, 33382, 0, 0, 0, 1, 1, 1, 1, 'Frozen Bracers'),
|
|
(26002, 33383, 0, 0, 0, 1, 1, 1, 1, 'Frozen Gloves'),
|
|
(26002, 33384, 0, 0, 0, 1, 1, 1, 1, 'Frozen Pants'),
|
|
(26002, 33385, 0, 0, 0, 1, 1, 1, 1, 'Frozen Shoulderpads'),
|
|
(26002, 33397, 0, 0, 0, 1, 1, 1, 1, 'Frigid Mail Armor'),
|
|
(26002, 33398, 0, 0, 0, 1, 1, 1, 1, 'Frigid Mail Belt'),
|
|
(26002, 33399, 0, 0, 0, 1, 1, 1, 1, 'Frigid Mail Boots'),
|
|
(26002, 33400, 0, 0, 0, 1, 1, 1, 1, 'Frigid Mail Bracers'),
|
|
(26002, 33401, 0, 0, 0, 1, 1, 1, 1, 'Frigid Mail Gloves'),
|
|
(26002, 33402, 0, 0, 0, 1, 1, 1, 1, 'Frigid Mail Pants'),
|
|
(26002, 33403, 0, 0, 0, 1, 1, 1, 1, 'Frigid Mail Shoulderpads'),
|
|
(26002, 33412, 0, 0, 0, 1, 1, 1, 1, 'Frost-Worn Plate Belt'),
|
|
(26002, 33413, 0, 0, 0, 1, 1, 1, 1, 'Frost-Worn Plate Boots'),
|
|
(26002, 33414, 0, 0, 0, 1, 1, 1, 1, 'Frost-Worn Plate Bracers'),
|
|
(26002, 33415, 0, 0, 0, 1, 1, 1, 1, 'Frost-Worn Plate Chestpiece'),
|
|
(26002, 33416, 0, 0, 0, 1, 1, 1, 1, 'Frost-Worn Plate Gloves'),
|
|
(26002, 33417, 0, 0, 0, 1, 1, 1, 1, 'Frost-Worn Plate Pants'),
|
|
(26002, 33419, 0, 0, 0, 1, 1, 1, 1, 'Frost-Worn Plate Shoulderpads'),
|
|
(26002, 33433, 0, 0, 0, 1, 1, 1, 1, 'Frigid Mail Circlet'),
|
|
(26002, 33434, 0, 0, 0, 1, 1, 1, 1, 'Frozen Leather Helmet'),
|
|
(26002, 33435, 0, 0, 0, 1, 1, 1, 1, 'Frost-Worn Plate Helmet'),
|
|
(26002, 33436, 0, 0, 0, 1, 1, 1, 1, 'Frost-Rimed Cloth Hat'),
|
|
(26003, 35955, 0, 0, 0, 1, 1, 1, 1, 'Farshire Belt'),
|
|
(26003, 35956, 0, 0, 0, 1, 1, 1, 1, 'Farshire Footpads'),
|
|
(26003, 35957, 0, 0, 0, 1, 1, 1, 1, 'Farshire Robe'),
|
|
(26003, 35958, 0, 0, 0, 1, 1, 1, 1, 'Farshire Gloves'),
|
|
(26003, 35959, 0, 0, 0, 1, 1, 1, 1, 'Farshire Hood'),
|
|
(26003, 35960, 0, 0, 0, 1, 1, 1, 1, 'Farshire Pants'),
|
|
(26003, 35961, 0, 0, 0, 1, 1, 1, 1, 'Farshire Shoulderpads'),
|
|
(26003, 35962, 0, 0, 0, 1, 1, 1, 1, 'Farshire Cuffs'),
|
|
(26003, 36067, 0, 0, 0, 1, 1, 1, 1, 'Daggercap Waistband'),
|
|
(26003, 36068, 0, 0, 0, 1, 1, 1, 1, 'Daggercap Boots'),
|
|
(26003, 36069, 0, 0, 0, 1, 1, 1, 1, 'Daggercap Jerkin'),
|
|
(26003, 36070, 0, 0, 0, 1, 1, 1, 1, 'Daggercap Gloves'),
|
|
(26003, 36071, 0, 0, 0, 1, 1, 1, 1, 'Daggercap Cover'),
|
|
(26003, 36072, 0, 0, 0, 1, 1, 1, 1, 'Daggercap Trousers'),
|
|
(26003, 36073, 0, 0, 0, 1, 1, 1, 1, 'Daggercap Spaulders'),
|
|
(26003, 36074, 0, 0, 0, 1, 1, 1, 1, 'Daggercap Bracers'),
|
|
(26003, 36179, 0, 0, 0, 1, 1, 1, 1, 'Garmaul Waistband'),
|
|
(26003, 36180, 0, 0, 0, 1, 1, 1, 1, 'Garmaul Footwraps'),
|
|
(26003, 36181, 0, 0, 0, 1, 1, 1, 1, 'Garmaul Chestpiece'),
|
|
(26003, 36182, 0, 0, 0, 1, 1, 1, 1, 'Garmaul Fists'),
|
|
(26003, 36183, 0, 0, 0, 1, 1, 1, 1, 'Garmaul Helmet'),
|
|
(26003, 36184, 0, 0, 0, 1, 1, 1, 1, 'Garmaul Legguards'),
|
|
(26003, 36185, 0, 0, 0, 1, 1, 1, 1, 'Garmaul Shoulderguards'),
|
|
(26003, 36186, 0, 0, 0, 1, 1, 1, 1, 'Garmaul Bracers'),
|
|
(26003, 36291, 0, 0, 0, 1, 1, 1, 1, 'Westguard Belt'),
|
|
(26003, 36292, 0, 0, 0, 1, 1, 1, 1, 'Westguard Greaves'),
|
|
(26003, 36293, 0, 0, 0, 1, 1, 1, 1, 'Westguard Armor'),
|
|
(26003, 36294, 0, 0, 0, 1, 1, 1, 1, 'Westguard Gloves'),
|
|
(26003, 36295, 0, 0, 0, 1, 1, 1, 1, 'Westguard Helm'),
|
|
(26003, 36296, 0, 0, 0, 1, 1, 1, 1, 'Westguard Legplates'),
|
|
(26003, 36297, 0, 0, 0, 1, 1, 1, 1, 'Westguard Epaulets'),
|
|
(26003, 36298, 0, 0, 0, 1, 1, 1, 1, 'Westguard Bracers'),
|
|
(26003, 36403, 0, 0, 0, 1, 1, 1, 1, 'Riding Cloak'),
|
|
(26003, 36417, 0, 0, 0, 1, 1, 1, 1, 'Oval Ring'),
|
|
(26003, 36431, 0, 0, 0, 1, 1, 1, 1, 'Painted Wooden Beads'),
|
|
(26003, 36445, 0, 0, 0, 1, 1, 1, 1, 'Riveted Shield'),
|
|
(26003, 36459, 0, 0, 0, 1, 1, 1, 1, 'Icy Orb'),
|
|
(26003, 36473, 0, 0, 0, 1, 1, 1, 1, 'Pioneer\'s Dagger'),
|
|
(26003, 36487, 0, 0, 0, 1, 1, 1, 1, 'Stone-Headed Gavel'),
|
|
(26003, 36501, 0, 0, 0, 1, 1, 1, 1, 'Granite Maul'),
|
|
(26003, 36515, 0, 0, 0, 1, 1, 1, 1, 'Raider\'s Cutlass'),
|
|
(26003, 36529, 0, 0, 0, 1, 1, 1, 1, 'Unearthed Broadsword'),
|
|
(26003, 36543, 0, 0, 0, 1, 1, 1, 1, 'Survival Stick'),
|
|
(26003, 36557, 0, 0, 0, 1, 1, 1, 1, 'Meat Ripper'),
|
|
(26003, 36571, 0, 0, 0, 1, 1, 1, 1, 'Splicing Axe'),
|
|
(26003, 36585, 0, 0, 0, 1, 1, 1, 1, 'Finned Battleaxe'),
|
|
(26003, 36599, 0, 0, 0, 1, 1, 1, 1, 'Ocean Trident'),
|
|
(26003, 36613, 0, 0, 0, 1, 1, 1, 1, 'Honorable Longbow'),
|
|
(26003, 36627, 0, 0, 0, 1, 1, 1, 1, 'Composite Crossbow'),
|
|
(26003, 36641, 0, 0, 0, 1, 1, 1, 1, 'Bound Musket'),
|
|
(26003, 36655, 0, 0, 0, 1, 1, 1, 1, 'Pearled Wand'),
|
|
(26003, 36669, 0, 0, 0, 1, 1, 1, 1, 'Eccentric Dagger'),
|
|
(26003, 36683, 0, 0, 0, 1, 1, 1, 1, 'Enshrined Mace'),
|
|
(26003, 36697, 0, 0, 0, 1, 1, 1, 1, 'Aquatic Greatstaff'),
|
|
(26003, 36711, 0, 0, 0, 1, 1, 1, 1, 'Forsaken Edge'),
|
|
(26004, 35963, 0, 0, 0, 1, 1, 1, 1, 'Bloodspore Sash'),
|
|
(26004, 35964, 0, 0, 0, 1, 1, 1, 1, 'Bloodspore Sandals'),
|
|
(26004, 35965, 0, 0, 0, 1, 1, 1, 1, 'Bloodspore Robe'),
|
|
(26004, 35966, 0, 0, 0, 1, 1, 1, 1, 'Bloodspore Gloves'),
|
|
(26004, 35967, 0, 0, 0, 1, 1, 1, 1, 'Bloodspore Hood'),
|
|
(26004, 35968, 0, 0, 0, 1, 1, 1, 1, 'Bloodspore Leggings'),
|
|
(26004, 35969, 0, 0, 0, 1, 1, 1, 1, 'Bloodspore Mantle'),
|
|
(26004, 35970, 0, 0, 0, 1, 1, 1, 1, 'Bloodspore Bracelets'),
|
|
(26004, 36075, 0, 0, 0, 1, 1, 1, 1, 'Winterfin Cord'),
|
|
(26004, 36076, 0, 0, 0, 1, 1, 1, 1, 'Winterfin Boots'),
|
|
(26004, 36077, 0, 0, 0, 1, 1, 1, 1, 'Winterfin Chestpiece'),
|
|
(26004, 36078, 0, 0, 0, 1, 1, 1, 1, 'Winterfin Gloves'),
|
|
(26004, 36079, 0, 0, 0, 1, 1, 1, 1, 'Winterfin Cowl'),
|
|
(26004, 36080, 0, 0, 0, 1, 1, 1, 1, 'Winterfin Legguards'),
|
|
(26004, 36081, 0, 0, 0, 1, 1, 1, 1, 'Winterfin Shoulderguards'),
|
|
(26004, 36082, 0, 0, 0, 1, 1, 1, 1, 'Winterfin Bindings'),
|
|
(26004, 36187, 0, 0, 0, 1, 1, 1, 1, 'Njord Belt'),
|
|
(26004, 36188, 0, 0, 0, 1, 1, 1, 1, 'Njord Boots'),
|
|
(26004, 36189, 0, 0, 0, 1, 1, 1, 1, 'Njord Chain Vest'),
|
|
(26004, 36190, 0, 0, 0, 1, 1, 1, 1, 'Njord Gauntlets'),
|
|
(26004, 36191, 0, 0, 0, 1, 1, 1, 1, 'Njord Helm'),
|
|
(26004, 36192, 0, 0, 0, 1, 1, 1, 1, 'Njord Leggings'),
|
|
(26004, 36193, 0, 0, 0, 1, 1, 1, 1, 'Njord Shoulderguards'),
|
|
(26004, 36194, 0, 0, 0, 1, 1, 1, 1, 'Njord Bracers'),
|
|
(26004, 36299, 0, 0, 0, 1, 1, 1, 1, 'Coldrock Girdle'),
|
|
(26004, 36300, 0, 0, 0, 1, 1, 1, 1, 'Coldrock Sabatons'),
|
|
(26004, 36301, 0, 0, 0, 1, 1, 1, 1, 'Coldrock Breastplate'),
|
|
(26004, 36302, 0, 0, 0, 1, 1, 1, 1, 'Coldrock Gauntlets'),
|
|
(26004, 36303, 0, 0, 0, 1, 1, 1, 1, 'Coldrock Helmet'),
|
|
(26004, 36304, 0, 0, 0, 1, 1, 1, 1, 'Coldrock Legplates'),
|
|
(26004, 36305, 0, 0, 0, 1, 1, 1, 1, 'Coldrock Pauldrons'),
|
|
(26004, 36306, 0, 0, 0, 1, 1, 1, 1, 'Coldrock Bracers'),
|
|
(26004, 36404, 0, 0, 0, 1, 1, 1, 1, 'Suede Cloak'),
|
|
(26004, 36418, 0, 0, 0, 1, 1, 1, 1, 'Floral Loop'),
|
|
(26004, 36432, 0, 0, 0, 1, 1, 1, 1, 'Silver Rope Chain'),
|
|
(26004, 36446, 0, 0, 0, 1, 1, 1, 1, 'Forged-Iron Shield'),
|
|
(26004, 36460, 0, 0, 0, 1, 1, 1, 1, 'Northern Star'),
|
|
(26004, 36474, 0, 0, 0, 1, 1, 1, 1, 'Engraved Dagger'),
|
|
(26004, 36488, 0, 0, 0, 1, 1, 1, 1, 'Conifer Club'),
|
|
(26004, 36502, 0, 0, 0, 1, 1, 1, 1, 'Ungainly Mace'),
|
|
(26004, 36516, 0, 0, 0, 1, 1, 1, 1, 'Tribal Blade'),
|
|
(26004, 36530, 0, 0, 0, 1, 1, 1, 1, 'Whetted Ironblade'),
|
|
(26004, 36544, 0, 0, 0, 1, 1, 1, 1, 'Journeyed Staff'),
|
|
(26004, 36558, 0, 0, 0, 1, 1, 1, 1, 'Curved Scratcher'),
|
|
(26004, 36572, 0, 0, 0, 1, 1, 1, 1, 'Dinged Cleaver'),
|
|
(26004, 36586, 0, 0, 0, 1, 1, 1, 1, 'Wreaking Battleaxe'),
|
|
(26004, 36600, 0, 0, 0, 1, 1, 1, 1, 'Village Scythe'),
|
|
(26004, 36614, 0, 0, 0, 1, 1, 1, 1, 'Yew Bow'),
|
|
(26004, 36628, 0, 0, 0, 1, 1, 1, 1, 'Under-Arm Crossbow'),
|
|
(26004, 36642, 0, 0, 0, 1, 1, 1, 1, 'Flintlock Gun'),
|
|
(26004, 36656, 0, 0, 0, 1, 1, 1, 1, 'Darkened Wand'),
|
|
(26004, 36670, 0, 0, 0, 1, 1, 1, 1, 'Gypsy Blade'),
|
|
(26004, 36684, 0, 0, 0, 1, 1, 1, 1, 'Ambrosial Hammer'),
|
|
(26004, 36698, 0, 0, 0, 1, 1, 1, 1, 'Conifer Cone Staff'),
|
|
(26004, 36712, 0, 0, 0, 1, 1, 1, 1, 'Howling Throwing Knives'),
|
|
(26005, 35971, 0, 0, 0, 1, 1, 1, 1, 'Mur\'ghoul Girdle'),
|
|
(26005, 35972, 0, 0, 0, 1, 1, 1, 1, 'Mur\'ghoul Boots'),
|
|
(26005, 35973, 0, 0, 0, 1, 1, 1, 1, 'Mur\'ghoul Robe'),
|
|
(26005, 35974, 0, 0, 0, 1, 1, 1, 1, 'Mur\'ghoul Handwraps'),
|
|
(26005, 35975, 0, 0, 0, 1, 1, 1, 1, 'Mur\'ghoul Cap'),
|
|
(26005, 35976, 0, 0, 0, 1, 1, 1, 1, 'Mur\'ghoul Leggings'),
|
|
(26005, 35977, 0, 0, 0, 1, 1, 1, 1, 'Mur\'ghoul Shoulderpads'),
|
|
(26005, 35978, 0, 0, 0, 1, 1, 1, 1, 'Mur\'ghoul Wristwraps'),
|
|
(26005, 36083, 0, 0, 0, 1, 1, 1, 1, 'Riplash Belt'),
|
|
(26005, 36084, 0, 0, 0, 1, 1, 1, 1, 'Riplash Boots'),
|
|
(26005, 36085, 0, 0, 0, 1, 1, 1, 1, 'Riplash Jerkin'),
|
|
(26005, 36086, 0, 0, 0, 1, 1, 1, 1, 'Riplash Gloves'),
|
|
(26005, 36087, 0, 0, 0, 1, 1, 1, 1, 'Riplash Cover'),
|
|
(26005, 36088, 0, 0, 0, 1, 1, 1, 1, 'Riplash Leggings'),
|
|
(26005, 36089, 0, 0, 0, 1, 1, 1, 1, 'Riplash Pauldrons'),
|
|
(26005, 36090, 0, 0, 0, 1, 1, 1, 1, 'Riplash Wristguards'),
|
|
(26005, 36195, 0, 0, 0, 1, 1, 1, 1, 'Skom Stitched-Belt'),
|
|
(26005, 36196, 0, 0, 0, 1, 1, 1, 1, 'Skom Greaves'),
|
|
(26005, 36197, 0, 0, 0, 1, 1, 1, 1, 'Skom Chain Vest'),
|
|
(26005, 36198, 0, 0, 0, 1, 1, 1, 1, 'Skom Gloves'),
|
|
(26005, 36199, 0, 0, 0, 1, 1, 1, 1, 'Skom Helm'),
|
|
(26005, 36200, 0, 0, 0, 1, 1, 1, 1, 'Skom Leggings'),
|
|
(26005, 36201, 0, 0, 0, 1, 1, 1, 1, 'Skom Spaulders'),
|
|
(26005, 36202, 0, 0, 0, 1, 1, 1, 1, 'Skom Bracers'),
|
|
(26005, 36307, 0, 0, 0, 1, 1, 1, 1, 'Baleheim Belt'),
|
|
(26005, 36308, 0, 0, 0, 1, 1, 1, 1, 'Baleheim Greaves'),
|
|
(26005, 36309, 0, 0, 0, 1, 1, 1, 1, 'Baleheim Armor'),
|
|
(26005, 36310, 0, 0, 0, 1, 1, 1, 1, 'Baleheim Gloves'),
|
|
(26005, 36311, 0, 0, 0, 1, 1, 1, 1, 'Baleheim Helmet'),
|
|
(26005, 36312, 0, 0, 0, 1, 1, 1, 1, 'Baleheim Legguards'),
|
|
(26005, 36313, 0, 0, 0, 1, 1, 1, 1, 'Baleheim Epaulets'),
|
|
(26005, 36314, 0, 0, 0, 1, 1, 1, 1, 'Baleheim Vambraces'),
|
|
(26005, 36405, 0, 0, 0, 1, 1, 1, 1, 'Double Cape'),
|
|
(26005, 36419, 0, 0, 0, 1, 1, 1, 1, 'Glass Ring'),
|
|
(26005, 36433, 0, 0, 0, 1, 1, 1, 1, 'Snake Entwined Necklace'),
|
|
(26005, 36447, 0, 0, 0, 1, 1, 1, 1, 'Kaskala Buckler'),
|
|
(26005, 36461, 0, 0, 0, 1, 1, 1, 1, 'Demon-Skull Orb'),
|
|
(26005, 36475, 0, 0, 0, 1, 1, 1, 1, 'Seal Shortblade'),
|
|
(26005, 36489, 0, 0, 0, 1, 1, 1, 1, 'Iron Flanged Scepter'),
|
|
(26005, 36503, 0, 0, 0, 1, 1, 1, 1, 'Toothless Bludgeon'),
|
|
(26005, 36517, 0, 0, 0, 1, 1, 1, 1, 'Iron-Grip Shortsword'),
|
|
(26005, 36531, 0, 0, 0, 1, 1, 1, 1, 'Sawtooth Greatsword'),
|
|
(26005, 36545, 0, 0, 0, 1, 1, 1, 1, 'Branched Stick'),
|
|
(26005, 36559, 0, 0, 0, 1, 1, 1, 1, 'Prized Handscythes'),
|
|
(26005, 36573, 0, 0, 0, 1, 1, 1, 1, 'Primeval Adze'),
|
|
(26005, 36587, 0, 0, 0, 1, 1, 1, 1, 'Taunka Axe'),
|
|
(26005, 36601, 0, 0, 0, 1, 1, 1, 1, 'Patient Harpoon'),
|
|
(26005, 36615, 0, 0, 0, 1, 1, 1, 1, 'Expert\'s Longbow'),
|
|
(26005, 36629, 0, 0, 0, 1, 1, 1, 1, 'Ferocious Crossbow'),
|
|
(26005, 36643, 0, 0, 0, 1, 1, 1, 1, 'Tracker\'s Musket'),
|
|
(26005, 36657, 0, 0, 0, 1, 1, 1, 1, 'Vicious Wand'),
|
|
(26005, 36671, 0, 0, 0, 1, 1, 1, 1, 'Ominous Dagger'),
|
|
(26005, 36685, 0, 0, 0, 1, 1, 1, 1, 'Placid Lightmace'),
|
|
(26005, 36699, 0, 0, 0, 1, 1, 1, 1, 'Iceberg Staff'),
|
|
(26005, 36713, 0, 0, 0, 1, 1, 1, 1, 'Reaching Star'),
|
|
(26006, 35979, 0, 0, 0, 1, 1, 1, 1, 'Foothold Belt'),
|
|
(26006, 35980, 0, 0, 0, 1, 1, 1, 1, 'Foothold Boots'),
|
|
(26006, 35981, 0, 0, 0, 1, 1, 1, 1, 'Foothold Robe'),
|
|
(26006, 35982, 0, 0, 0, 1, 1, 1, 1, 'Foothold Gloves'),
|
|
(26006, 35983, 0, 0, 0, 1, 1, 1, 1, 'Foothold Hood'),
|
|
(26006, 35984, 0, 0, 0, 1, 1, 1, 1, 'Foothold Pants'),
|
|
(26006, 35985, 0, 0, 0, 1, 1, 1, 1, 'Foothold Shoulderpads'),
|
|
(26006, 35986, 0, 0, 0, 1, 1, 1, 1, 'Foothold Cuffs'),
|
|
(26006, 36091, 0, 0, 0, 1, 1, 1, 1, 'Wildevar Belt'),
|
|
(26006, 36092, 0, 0, 0, 1, 1, 1, 1, 'Wildevar Boots'),
|
|
(26006, 36093, 0, 0, 0, 1, 1, 1, 1, 'Wildevar Tunic'),
|
|
(26006, 36094, 0, 0, 0, 1, 1, 1, 1, 'Wildevar Gloves'),
|
|
(26006, 36095, 0, 0, 0, 1, 1, 1, 1, 'Wildevar Cap'),
|
|
(26006, 36096, 0, 0, 0, 1, 1, 1, 1, 'Wildevar Pants'),
|
|
(26006, 36097, 0, 0, 0, 1, 1, 1, 1, 'Wildevar Shoulderguards'),
|
|
(26006, 36098, 0, 0, 0, 1, 1, 1, 1, 'Wildevar Armguards'),
|
|
(26006, 36203, 0, 0, 0, 1, 1, 1, 1, 'Nifflevar Girdle'),
|
|
(26006, 36204, 0, 0, 0, 1, 1, 1, 1, 'Nifflevar Boots'),
|
|
(26006, 36205, 0, 0, 0, 1, 1, 1, 1, 'Nifflevar Chestpiece'),
|
|
(26006, 36206, 0, 0, 0, 1, 1, 1, 1, 'Nifflevar Gloves'),
|
|
(26006, 36207, 0, 0, 0, 1, 1, 1, 1, 'Nifflevar Helmet'),
|
|
(26006, 36208, 0, 0, 0, 1, 1, 1, 1, 'Nifflevar Legguards'),
|
|
(26006, 36209, 0, 0, 0, 1, 1, 1, 1, 'Nifflevar Shoulderguards'),
|
|
(26006, 36210, 0, 0, 0, 1, 1, 1, 1, 'Nifflevar Bindings'),
|
|
(26006, 36315, 0, 0, 0, 1, 1, 1, 1, 'Wyrmskull Girdle'),
|
|
(26006, 36316, 0, 0, 0, 1, 1, 1, 1, 'Wyrmskull Sabatons'),
|
|
(26006, 36317, 0, 0, 0, 1, 1, 1, 1, 'Wyrmskull Breastplate'),
|
|
(26006, 36318, 0, 0, 0, 1, 1, 1, 1, 'Wyrmskull Gauntlets'),
|
|
(26006, 36319, 0, 0, 0, 1, 1, 1, 1, 'Wyrmskull Helm'),
|
|
(26006, 36320, 0, 0, 0, 1, 1, 1, 1, 'Wyrmskull Legplates'),
|
|
(26006, 36321, 0, 0, 0, 1, 1, 1, 1, 'Wyrmskull Epaulets'),
|
|
(26006, 36322, 0, 0, 0, 1, 1, 1, 1, 'Wyrmskull Bracers'),
|
|
(26006, 36406, 0, 0, 0, 1, 1, 1, 1, 'Wayfarer\'s Cloak'),
|
|
(26006, 36420, 0, 0, 0, 1, 1, 1, 1, 'Gemstone Ring'),
|
|
(26006, 36434, 0, 0, 0, 1, 1, 1, 1, 'Gold Mesh Collar'),
|
|
(26006, 36448, 0, 0, 0, 1, 1, 1, 1, 'Spiked Targe'),
|
|
(26006, 36462, 0, 0, 0, 1, 1, 1, 1, 'Coldarra Crystal'),
|
|
(26006, 36476, 0, 0, 0, 1, 1, 1, 1, 'Whale Ripper'),
|
|
(26006, 36490, 0, 0, 0, 1, 1, 1, 1, 'Tuskarr Cudgel'),
|
|
(26006, 36504, 0, 0, 0, 1, 1, 1, 1, 'Cleft-Edged Hammer'),
|
|
(26006, 36518, 0, 0, 0, 1, 1, 1, 1, 'Tundra\'s Edge'),
|
|
(26006, 36532, 0, 0, 0, 1, 1, 1, 1, 'Shark Fin Blade'),
|
|
(26006, 36546, 0, 0, 0, 1, 1, 1, 1, 'Unusual Staff'),
|
|
(26006, 36560, 0, 0, 0, 1, 1, 1, 1, 'Fighter\'s Grip'),
|
|
(26006, 36574, 0, 0, 0, 1, 1, 1, 1, 'Bone Cleaver'),
|
|
(26006, 36588, 0, 0, 0, 1, 1, 1, 1, 'Burning Battleaxe'),
|
|
(26006, 36602, 0, 0, 0, 1, 1, 1, 1, 'Rust-Covered Polearm'),
|
|
(26006, 36616, 0, 0, 0, 1, 1, 1, 1, 'Dutiful Longbow'),
|
|
(26006, 36630, 0, 0, 0, 1, 1, 1, 1, 'Sinewed Crossbow'),
|
|
(26006, 36644, 0, 0, 0, 1, 1, 1, 1, 'Inelegant Musket'),
|
|
(26006, 36658, 0, 0, 0, 1, 1, 1, 1, 'Extinguished Spark'),
|
|
(26006, 36672, 0, 0, 0, 1, 1, 1, 1, 'Strange Dagger'),
|
|
(26006, 36686, 0, 0, 0, 1, 1, 1, 1, 'Harmonious Scepter'),
|
|
(26006, 36700, 0, 0, 0, 1, 1, 1, 1, 'Peat Greatstaff'),
|
|
(26006, 36714, 0, 0, 0, 1, 1, 1, 1, 'Tuskarr\'s Piercers'),
|
|
(26007, 35987, 0, 0, 0, 1, 1, 1, 1, 'Bristlepine Cord'),
|
|
(26007, 35988, 0, 0, 0, 1, 1, 1, 1, 'Bristlepine Sandals'),
|
|
(26007, 35989, 0, 0, 0, 1, 1, 1, 1, 'Bristlepine Robe'),
|
|
(26007, 35990, 0, 0, 0, 1, 1, 1, 1, 'Bristlepine Handwraps'),
|
|
(26007, 35991, 0, 0, 0, 1, 1, 1, 1, 'Bristlepine Headpiece'),
|
|
(26007, 35992, 0, 0, 0, 1, 1, 1, 1, 'Bristlepine Leggings'),
|
|
(26007, 35993, 0, 0, 0, 1, 1, 1, 1, 'Bristlepine Shoulderpads'),
|
|
(26007, 35994, 0, 0, 0, 1, 1, 1, 1, 'Bristlepine Bracers'),
|
|
(26007, 36099, 0, 0, 0, 1, 1, 1, 1, 'Caribou Waistband'),
|
|
(26007, 36100, 0, 0, 0, 1, 1, 1, 1, 'Caribou Boots'),
|
|
(26007, 36101, 0, 0, 0, 1, 1, 1, 1, 'Caribou Vest'),
|
|
(26007, 36102, 0, 0, 0, 1, 1, 1, 1, 'Caribou Gloves'),
|
|
(26007, 36103, 0, 0, 0, 1, 1, 1, 1, 'Caribou Cowl'),
|
|
(26007, 36104, 0, 0, 0, 1, 1, 1, 1, 'Caribou Britches'),
|
|
(26007, 36105, 0, 0, 0, 1, 1, 1, 1, 'Caribou Shoulders'),
|
|
(26007, 36106, 0, 0, 0, 1, 1, 1, 1, 'Caribou Bands'),
|
|
(26007, 36211, 0, 0, 0, 1, 1, 1, 1, 'Orca Belt'),
|
|
(26007, 36212, 0, 0, 0, 1, 1, 1, 1, 'Orca Footwraps'),
|
|
(26007, 36213, 0, 0, 0, 1, 1, 1, 1, 'Orca Armor'),
|
|
(26007, 36214, 0, 0, 0, 1, 1, 1, 1, 'Orca Fists'),
|
|
(26007, 36215, 0, 0, 0, 1, 1, 1, 1, 'Orca Helmet'),
|
|
(26007, 36216, 0, 0, 0, 1, 1, 1, 1, 'Orca Legwraps'),
|
|
(26007, 36217, 0, 0, 0, 1, 1, 1, 1, 'Orca Spaulders'),
|
|
(26007, 36218, 0, 0, 0, 1, 1, 1, 1, 'Orca Bindings'),
|
|
(26007, 36323, 0, 0, 0, 1, 1, 1, 1, 'Halgrind Belt'),
|
|
(26007, 36324, 0, 0, 0, 1, 1, 1, 1, 'Halgrind Greaves'),
|
|
(26007, 36325, 0, 0, 0, 1, 1, 1, 1, 'Halgrind Carapace'),
|
|
(26007, 36326, 0, 0, 0, 1, 1, 1, 1, 'Halgrind Gloves'),
|
|
(26007, 36327, 0, 0, 0, 1, 1, 1, 1, 'Halgrind Helmet'),
|
|
(26007, 36328, 0, 0, 0, 1, 1, 1, 1, 'Halgrind Legplates'),
|
|
(26007, 36329, 0, 0, 0, 1, 1, 1, 1, 'Halgrind Epaulets'),
|
|
(26007, 36330, 0, 0, 0, 1, 1, 1, 1, 'Halgrind Bracers'),
|
|
(26007, 36407, 0, 0, 0, 1, 1, 1, 1, 'Lace-Trimmed Cloak'),
|
|
(26007, 36421, 0, 0, 0, 1, 1, 1, 1, 'Devotional Band'),
|
|
(26007, 36435, 0, 0, 0, 1, 1, 1, 1, 'Embroidered Pendant'),
|
|
(26007, 36449, 0, 0, 0, 1, 1, 1, 1, 'Vrykul Shield'),
|
|
(26007, 36463, 0, 0, 0, 1, 1, 1, 1, 'Polished Orb'),
|
|
(26008, 35995, 0, 0, 0, 1, 1, 1, 1, 'Voldrune Sash'),
|
|
(26008, 35996, 0, 0, 0, 1, 1, 1, 1, 'Voldrune Slippers'),
|
|
(26008, 35997, 0, 0, 0, 1, 1, 1, 1, 'Voldrune Robe'),
|
|
(26008, 35998, 0, 0, 0, 1, 1, 1, 1, 'Voldrune Gloves'),
|
|
(26008, 35999, 0, 0, 0, 1, 1, 1, 1, 'Voldrune Crown'),
|
|
(26008, 36000, 0, 0, 0, 1, 1, 1, 1, 'Voldrune Legs'),
|
|
(26008, 36001, 0, 0, 0, 1, 1, 1, 1, 'Voldrune Mantle'),
|
|
(26008, 36002, 0, 0, 0, 1, 1, 1, 1, 'Voldrune Bracelets'),
|
|
(26008, 36107, 0, 0, 0, 1, 1, 1, 1, 'Vileprey Cord'),
|
|
(26008, 36108, 0, 0, 0, 1, 1, 1, 1, 'Vileprey Boots'),
|
|
(26008, 36109, 0, 0, 0, 1, 1, 1, 1, 'Vileprey Armor'),
|
|
(26008, 36110, 0, 0, 0, 1, 1, 1, 1, 'Vileprey Gloves'),
|
|
(26008, 36111, 0, 0, 0, 1, 1, 1, 1, 'Vileprey Hood'),
|
|
(26008, 36112, 0, 0, 0, 1, 1, 1, 1, 'Vileprey Leggings'),
|
|
(26008, 36113, 0, 0, 0, 1, 1, 1, 1, 'Vileprey Pauldrons'),
|
|
(26008, 36114, 0, 0, 0, 1, 1, 1, 1, 'Vileprey Bracers'),
|
|
(26008, 36219, 0, 0, 0, 1, 1, 1, 1, 'Amberpine Girdle'),
|
|
(26008, 36220, 0, 0, 0, 1, 1, 1, 1, 'Amberpine Greaves'),
|
|
(26008, 36221, 0, 0, 0, 1, 1, 1, 1, 'Amberpine Chain Vest'),
|
|
(26008, 36222, 0, 0, 0, 1, 1, 1, 1, 'Amberpine Gauntlets'),
|
|
(26008, 36223, 0, 0, 0, 1, 1, 1, 1, 'Amberpine Helmet'),
|
|
(26008, 36224, 0, 0, 0, 1, 1, 1, 1, 'Amberpine Legguards'),
|
|
(26008, 36225, 0, 0, 0, 1, 1, 1, 1, 'Amberpine Spaulders'),
|
|
(26008, 36226, 0, 0, 0, 1, 1, 1, 1, 'Amberpine Bracers'),
|
|
(26008, 36331, 0, 0, 0, 1, 1, 1, 1, 'Grizzlemaw Belt'),
|
|
(26008, 36332, 0, 0, 0, 1, 1, 1, 1, 'Grizzlemaw Sabatons'),
|
|
(26008, 36333, 0, 0, 0, 1, 1, 1, 1, 'Grizzlemaw Armor'),
|
|
(26008, 36334, 0, 0, 0, 1, 1, 1, 1, 'Grizzlemaw Gauntlets'),
|
|
(26008, 36335, 0, 0, 0, 1, 1, 1, 1, 'Grizzlemaw Helm'),
|
|
(26008, 36336, 0, 0, 0, 1, 1, 1, 1, 'Grizzlemaw Legplates'),
|
|
(26008, 36337, 0, 0, 0, 1, 1, 1, 1, 'Grizzlemaw Epaulets'),
|
|
(26008, 36338, 0, 0, 0, 1, 1, 1, 1, 'Grizzlemaw Vambraces'),
|
|
(26008, 36408, 0, 0, 0, 1, 1, 1, 1, 'Reversible Wool Cape'),
|
|
(26008, 36422, 0, 0, 0, 1, 1, 1, 1, 'Filigree Ring'),
|
|
(26008, 36436, 0, 0, 0, 1, 1, 1, 1, 'Jasper Bead Necklace'),
|
|
(26008, 36450, 0, 0, 0, 1, 1, 1, 1, 'Strapped Heater Shield'),
|
|
(26008, 36464, 0, 0, 0, 1, 1, 1, 1, 'Darkened Scepter'),
|
|
(26008, 36478, 0, 0, 0, 1, 1, 1, 1, 'Frosty Talon'),
|
|
(26008, 36492, 0, 0, 0, 1, 1, 1, 1, 'Peaked Club'),
|
|
(26008, 36506, 0, 0, 0, 1, 1, 1, 1, 'Vaulted Mace'),
|
|
(26008, 36520, 0, 0, 0, 1, 1, 1, 1, 'Chopping Wideblade'),
|
|
(26008, 36534, 0, 0, 0, 1, 1, 1, 1, 'Tempered-Steel Blade'),
|
|
(26008, 36548, 0, 0, 0, 1, 1, 1, 1, 'Promised Staff'),
|
|
(26008, 36562, 0, 0, 0, 1, 1, 1, 1, 'Blue-Nailed Claws'),
|
|
(26008, 36576, 0, 0, 0, 1, 1, 1, 1, 'Beaked Axe'),
|
|
(26008, 36590, 0, 0, 0, 1, 1, 1, 1, 'Bone Plate Axe'),
|
|
(26008, 36604, 0, 0, 0, 1, 1, 1, 1, 'Grizzly Glaive'),
|
|
(26008, 36618, 0, 0, 0, 1, 1, 1, 1, 'Twisted Longbow'),
|
|
(26008, 36632, 0, 0, 0, 1, 1, 1, 1, 'Slingshot Crossbow'),
|
|
(26008, 36646, 0, 0, 0, 1, 1, 1, 1, 'Haggard Gun'),
|
|
(26008, 36660, 0, 0, 0, 1, 1, 1, 1, 'Melted Wand'),
|
|
(26008, 36674, 0, 0, 0, 1, 1, 1, 1, 'Old Tooth'),
|
|
(26008, 36688, 0, 0, 0, 1, 1, 1, 1, 'Sacrosanct Mace'),
|
|
(26008, 36702, 0, 0, 0, 1, 1, 1, 1, 'Melting Icestaff'),
|
|
(26008, 36716, 0, 0, 0, 1, 1, 1, 1, 'Threatening Darts'),
|
|
(26009, 36003, 0, 0, 0, 1, 1, 1, 1, 'Icemist Sash'),
|
|
(26009, 36004, 0, 0, 0, 1, 1, 1, 1, 'Icemist Slippers'),
|
|
(26009, 36005, 0, 0, 0, 1, 1, 1, 1, 'Icemist Robe'),
|
|
(26009, 36006, 0, 0, 0, 1, 1, 1, 1, 'Icemist Gloves'),
|
|
(26009, 36007, 0, 0, 0, 1, 1, 1, 1, 'Icemist Circlet'),
|
|
(26009, 36008, 0, 0, 0, 1, 1, 1, 1, 'Icemist Pants'),
|
|
(26009, 36009, 0, 0, 0, 1, 1, 1, 1, 'Icemist Mantle'),
|
|
(26009, 36010, 0, 0, 0, 1, 1, 1, 1, 'Icemist Bracelets'),
|
|
(26009, 36115, 0, 0, 0, 1, 1, 1, 1, 'Taunka Belt'),
|
|
(26009, 36116, 0, 0, 0, 1, 1, 1, 1, 'Taunka Boots'),
|
|
(26009, 36117, 0, 0, 0, 1, 1, 1, 1, 'Taunka Tunic'),
|
|
(26009, 36118, 0, 0, 0, 1, 1, 1, 1, 'Taunka Gloves'),
|
|
(26009, 36119, 0, 0, 0, 1, 1, 1, 1, 'Taunka Hat'),
|
|
(26009, 36120, 0, 0, 0, 1, 1, 1, 1, 'Taunka Legguards'),
|
|
(26009, 36121, 0, 0, 0, 1, 1, 1, 1, 'Taunka Spaulders'),
|
|
(26009, 36122, 0, 0, 0, 1, 1, 1, 1, 'Taunka Armguards'),
|
|
(26009, 36227, 0, 0, 0, 1, 1, 1, 1, 'Trapper Belt'),
|
|
(26009, 36228, 0, 0, 0, 1, 1, 1, 1, 'Trapper Footwraps'),
|
|
(26009, 36229, 0, 0, 0, 1, 1, 1, 1, 'Trapper Chain Vest'),
|
|
(26009, 36230, 0, 0, 0, 1, 1, 1, 1, 'Trapper Gloves'),
|
|
(26009, 36231, 0, 0, 0, 1, 1, 1, 1, 'Trapper Helm'),
|
|
(26009, 36232, 0, 0, 0, 1, 1, 1, 1, 'Trapper Leggings'),
|
|
(26009, 36233, 0, 0, 0, 1, 1, 1, 1, 'Trapper Shoulderguards'),
|
|
(26009, 36234, 0, 0, 0, 1, 1, 1, 1, 'Trapper Bracers'),
|
|
(26009, 36339, 0, 0, 0, 1, 1, 1, 1, 'Bloodmar Girdle'),
|
|
(26009, 36340, 0, 0, 0, 1, 1, 1, 1, 'Bloodmar Sabatons'),
|
|
(26009, 36341, 0, 0, 0, 1, 1, 1, 1, 'Bloodmar Breastplate'),
|
|
(26009, 36342, 0, 0, 0, 1, 1, 1, 1, 'Bloodmar Gauntlets'),
|
|
(26009, 36343, 0, 0, 0, 1, 1, 1, 1, 'Bloodmar Helm'),
|
|
(26009, 36344, 0, 0, 0, 1, 1, 1, 1, 'Bloodmar Legplates'),
|
|
(26009, 36345, 0, 0, 0, 1, 1, 1, 1, 'Bloodmar Pauldrons'),
|
|
(26009, 36346, 0, 0, 0, 1, 1, 1, 1, 'Bloodmar Vambraces'),
|
|
(26009, 36409, 0, 0, 0, 1, 1, 1, 1, 'Crushed Velvet Cloak'),
|
|
(26009, 36423, 0, 0, 0, 1, 1, 1, 1, 'Posy Ring'),
|
|
(26009, 36437, 0, 0, 0, 1, 1, 1, 1, 'Figaro Chain'),
|
|
(26009, 36451, 0, 0, 0, 1, 1, 1, 1, 'Kamagua Shield'),
|
|
(26009, 36465, 0, 0, 0, 1, 1, 1, 1, 'Evergreen Branch'),
|
|
(26009, 36479, 0, 0, 0, 1, 1, 1, 1, 'Snobold Ripper'),
|
|
(26009, 36493, 0, 0, 0, 1, 1, 1, 1, 'Furbolg Truncheon'),
|
|
(26009, 36507, 0, 0, 0, 1, 1, 1, 1, 'Iron-Molded Fist'),
|
|
(26009, 36521, 0, 0, 0, 1, 1, 1, 1, 'Shimmering Sabre'),
|
|
(26009, 36535, 0, 0, 0, 1, 1, 1, 1, 'Dragon\'s Rib Sword'),
|
|
(26009, 36549, 0, 0, 0, 1, 1, 1, 1, 'Pulsing Quarterstaff'),
|
|
(26009, 36563, 0, 0, 0, 1, 1, 1, 1, 'Gloved Talons'),
|
|
(26009, 36577, 0, 0, 0, 1, 1, 1, 1, 'Disk Axe'),
|
|
(26009, 36591, 0, 0, 0, 1, 1, 1, 1, 'Winged Axe'),
|
|
(26009, 36605, 0, 0, 0, 1, 1, 1, 1, 'Wind Scythe'),
|
|
(26009, 36619, 0, 0, 0, 1, 1, 1, 1, 'Astral Light Bow'),
|
|
(26009, 36633, 0, 0, 0, 1, 1, 1, 1, 'Palisade Crossbow'),
|
|
(26009, 36647, 0, 0, 0, 1, 1, 1, 1, 'Noisy Blaster'),
|
|
(26009, 36661, 0, 0, 0, 1, 1, 1, 1, 'Enigmatic Wand'),
|
|
(26009, 36675, 0, 0, 0, 1, 1, 1, 1, 'Sockeye Dagger'),
|
|
(26009, 36689, 0, 0, 0, 1, 1, 1, 1, 'Refreshing Hammer'),
|
|
(26009, 36703, 0, 0, 0, 1, 1, 1, 1, 'Tusked Greatstaff'),
|
|
(26009, 36717, 0, 0, 0, 1, 1, 1, 1, 'Venture Co. Throwing Axe'),
|
|
(26010, 36011, 0, 0, 0, 1, 1, 1, 1, 'Tethys Sash'),
|
|
(26010, 36012, 0, 0, 0, 1, 1, 1, 1, 'Tethys Slippers'),
|
|
(26010, 36013, 0, 0, 0, 1, 1, 1, 1, 'Tethys Robe'),
|
|
(26010, 36014, 0, 0, 0, 1, 1, 1, 1, 'Tethys Gloves'),
|
|
(26010, 36015, 0, 0, 0, 1, 1, 1, 1, 'Tethys Hood'),
|
|
(26010, 36016, 0, 0, 0, 1, 1, 1, 1, 'Tethys Leggings'),
|
|
(26010, 36017, 0, 0, 0, 1, 1, 1, 1, 'Tethys Mantle'),
|
|
(26010, 36018, 0, 0, 0, 1, 1, 1, 1, 'Tethys Bracelets'),
|
|
(26010, 36123, 0, 0, 0, 1, 1, 1, 1, 'Muradin Belt'),
|
|
(26010, 36124, 0, 0, 0, 1, 1, 1, 1, 'Muradin Boots'),
|
|
(26010, 36125, 0, 0, 0, 1, 1, 1, 1, 'Muradin Chestpiece'),
|
|
(26010, 36126, 0, 0, 0, 1, 1, 1, 1, 'Muradin Gloves'),
|
|
(26010, 36127, 0, 0, 0, 1, 1, 1, 1, 'Muradin Hood'),
|
|
(26010, 36128, 0, 0, 0, 1, 1, 1, 1, 'Muradin Pants'),
|
|
(26010, 36129, 0, 0, 0, 1, 1, 1, 1, 'Muradin Shoulders'),
|
|
(26010, 36130, 0, 0, 0, 1, 1, 1, 1, 'Muradin Bindings'),
|
|
(26010, 36235, 0, 0, 0, 1, 1, 1, 1, 'Shoveltusk Waistband'),
|
|
(26010, 36236, 0, 0, 0, 1, 1, 1, 1, 'Shoveltusk Greaves'),
|
|
(26010, 36237, 0, 0, 0, 1, 1, 1, 1, 'Shoveltusk Breastplate'),
|
|
(26010, 36238, 0, 0, 0, 1, 1, 1, 1, 'Shoveltusk Gauntlets'),
|
|
(26010, 36239, 0, 0, 0, 1, 1, 1, 1, 'Shoveltusk Helmet'),
|
|
(26010, 36240, 0, 0, 0, 1, 1, 1, 1, 'Shoveltusk Legguards'),
|
|
(26010, 36241, 0, 0, 0, 1, 1, 1, 1, 'Shoveltusk Mantle'),
|
|
(26010, 36242, 0, 0, 0, 1, 1, 1, 1, 'Shoveltusk Bindings'),
|
|
(26010, 36347, 0, 0, 0, 1, 1, 1, 1, 'Jormungar Girdle'),
|
|
(26010, 36348, 0, 0, 0, 1, 1, 1, 1, 'Jormungar Sabatons'),
|
|
(26010, 36349, 0, 0, 0, 1, 1, 1, 1, 'Jormungar Breastplate'),
|
|
(26010, 36350, 0, 0, 0, 1, 1, 1, 1, 'Jormungar Gauntlets'),
|
|
(26010, 36351, 0, 0, 0, 1, 1, 1, 1, 'Jormungar Helmet'),
|
|
(26010, 36352, 0, 0, 0, 1, 1, 1, 1, 'Jormungar Legplates'),
|
|
(26010, 36353, 0, 0, 0, 1, 1, 1, 1, 'Jormungar Pauldrons'),
|
|
(26010, 36354, 0, 0, 0, 1, 1, 1, 1, 'Jormungar Bracers'),
|
|
(26010, 36410, 0, 0, 0, 1, 1, 1, 1, 'Caribou Skin Cloak'),
|
|
(26010, 36424, 0, 0, 0, 1, 1, 1, 1, 'Cameo Ring'),
|
|
(26010, 36438, 0, 0, 0, 1, 1, 1, 1, 'Shark-Toothed Necklace'),
|
|
(26010, 36452, 0, 0, 0, 1, 1, 1, 1, 'Spoke Shield'),
|
|
(26010, 36466, 0, 0, 0, 1, 1, 1, 1, 'Facetted Orb'),
|
|
(26010, 36480, 0, 0, 0, 1, 1, 1, 1, 'Ebony Dagger'),
|
|
(26010, 36494, 0, 0, 0, 1, 1, 1, 1, 'Barbed Star'),
|
|
(26010, 36508, 0, 0, 0, 1, 1, 1, 1, 'Cumbersome Sledgehammer'),
|
|
(26010, 36522, 0, 0, 0, 1, 1, 1, 1, 'Scored Blade'),
|
|
(26010, 36536, 0, 0, 0, 1, 1, 1, 1, 'Inlaid Greatsword'),
|
|
(26010, 36550, 0, 0, 0, 1, 1, 1, 1, 'Refulgent Staff'),
|
|
(26010, 36564, 0, 0, 0, 1, 1, 1, 1, 'Spider Claw'),
|
|
(26010, 36578, 0, 0, 0, 1, 1, 1, 1, 'Troll Chopper'),
|
|
(26010, 36592, 0, 0, 0, 1, 1, 1, 1, 'Deforester Axe'),
|
|
(26010, 36606, 0, 0, 0, 1, 1, 1, 1, 'Rugged Polearm'),
|
|
(26010, 36620, 0, 0, 0, 1, 1, 1, 1, 'Tracking Bow'),
|
|
(26010, 36634, 0, 0, 0, 1, 1, 1, 1, 'Pain Repeater'),
|
|
(26010, 36648, 0, 0, 0, 1, 1, 1, 1, 'Trapper\'s Rifle'),
|
|
(26010, 36662, 0, 0, 0, 1, 1, 1, 1, 'Voodoo Wand'),
|
|
(26010, 36676, 0, 0, 0, 1, 1, 1, 1, 'Water Blade'),
|
|
(26010, 36690, 0, 0, 0, 1, 1, 1, 1, 'Unearthly Scepter'),
|
|
(26010, 36704, 0, 0, 0, 1, 1, 1, 1, 'Hive Comb Staff'),
|
|
(26010, 36718, 0, 0, 0, 1, 1, 1, 1, 'Nexus Shrike'),
|
|
(26011, 36019, 0, 0, 0, 1, 1, 1, 1, 'Aerie Belt'),
|
|
(26011, 36020, 0, 0, 0, 1, 1, 1, 1, 'Aerie Boots'),
|
|
(26011, 36021, 0, 0, 0, 1, 1, 1, 1, 'Aerie Robe'),
|
|
(26011, 36022, 0, 0, 0, 1, 1, 1, 1, 'Aerie Gloves'),
|
|
(26011, 36023, 0, 0, 0, 1, 1, 1, 1, 'Aerie Headpiece'),
|
|
(26011, 36024, 0, 0, 0, 1, 1, 1, 1, 'Aerie Pants'),
|
|
(26011, 36025, 0, 0, 0, 1, 1, 1, 1, 'Aerie Shoulderpads'),
|
|
(26011, 36026, 0, 0, 0, 1, 1, 1, 1, 'Aerie Bracers'),
|
|
(26011, 36131, 0, 0, 0, 1, 1, 1, 1, 'Wolverine Girdle'),
|
|
(26011, 36132, 0, 0, 0, 1, 1, 1, 1, 'Wolverine Boots'),
|
|
(26011, 36133, 0, 0, 0, 1, 1, 1, 1, 'Wolverine Jerkin'),
|
|
(26011, 36134, 0, 0, 0, 1, 1, 1, 1, 'Wolverine Gloves'),
|
|
(26011, 36135, 0, 0, 0, 1, 1, 1, 1, 'Wolverine Cap'),
|
|
(26011, 36136, 0, 0, 0, 1, 1, 1, 1, 'Wolverine Leggings'),
|
|
(26011, 36137, 0, 0, 0, 1, 1, 1, 1, 'Wolverine Shoulderguards'),
|
|
(26011, 36138, 0, 0, 0, 1, 1, 1, 1, 'Wolverine Armguards'),
|
|
(26011, 36243, 0, 0, 0, 1, 1, 1, 1, 'Mammoth Girdle'),
|
|
(26011, 36244, 0, 0, 0, 1, 1, 1, 1, 'Mammoth Boots'),
|
|
(26011, 36245, 0, 0, 0, 1, 1, 1, 1, 'Mammoth Chestpiece'),
|
|
(26011, 36246, 0, 0, 0, 1, 1, 1, 1, 'Mammoth Fists'),
|
|
(26011, 36247, 0, 0, 0, 1, 1, 1, 1, 'Mammoth Helm'),
|
|
(26011, 36248, 0, 0, 0, 1, 1, 1, 1, 'Mammoth Legwraps'),
|
|
(26011, 36249, 0, 0, 0, 1, 1, 1, 1, 'Mammoth Spaulders'),
|
|
(26011, 36250, 0, 0, 0, 1, 1, 1, 1, 'Mammoth Bindings'),
|
|
(26011, 36355, 0, 0, 0, 1, 1, 1, 1, 'Frostpaw Belt'),
|
|
(26011, 36356, 0, 0, 0, 1, 1, 1, 1, 'Frostpaw Greaves'),
|
|
(26011, 36357, 0, 0, 0, 1, 1, 1, 1, 'Frostpaw Armor'),
|
|
(26011, 36358, 0, 0, 0, 1, 1, 1, 1, 'Frostpaw Gauntlets'),
|
|
(26011, 36359, 0, 0, 0, 1, 1, 1, 1, 'Frostpaw Helmet'),
|
|
(26011, 36360, 0, 0, 0, 1, 1, 1, 1, 'Frostpaw Legguards'),
|
|
(26011, 36361, 0, 0, 0, 1, 1, 1, 1, 'Frostpaw Epaulets'),
|
|
(26011, 36362, 0, 0, 0, 1, 1, 1, 1, 'Frostpaw Vambraces'),
|
|
(26011, 36411, 0, 0, 0, 1, 1, 1, 1, 'Brawler\'s Cape'),
|
|
(26011, 36425, 0, 0, 0, 1, 1, 1, 1, 'Gold Twisted Ring'),
|
|
(26011, 36439, 0, 0, 0, 1, 1, 1, 1, 'Serpentine Chain'),
|
|
(26011, 36453, 0, 0, 0, 1, 1, 1, 1, 'Embossed Brazen Shield'),
|
|
(26011, 36467, 0, 0, 0, 1, 1, 1, 1, 'Reflecting Sphere'),
|
|
(26011, 36481, 0, 0, 0, 1, 1, 1, 1, 'Trapper Knife'),
|
|
(26011, 36495, 0, 0, 0, 1, 1, 1, 1, 'Ferrous Hammer'),
|
|
(26011, 36509, 0, 0, 0, 1, 1, 1, 1, 'Femur-Shafted Mace'),
|
|
(26011, 36523, 0, 0, 0, 1, 1, 1, 1, 'Trollish Slicer'),
|
|
(26011, 36537, 0, 0, 0, 1, 1, 1, 1, 'Fur-Grip Broadsword'),
|
|
(26011, 36551, 0, 0, 0, 1, 1, 1, 1, 'Ritual Greatstaff'),
|
|
(26011, 36565, 0, 0, 0, 1, 1, 1, 1, 'Hero\'s Knuckles'),
|
|
(26011, 36579, 0, 0, 0, 1, 1, 1, 1, 'Boreal Woodchopper'),
|
|
(26011, 36593, 0, 0, 0, 1, 1, 1, 1, 'Troll Decollator'),
|
|
(26011, 36607, 0, 0, 0, 1, 1, 1, 1, 'Dwarven Halberd'),
|
|
(26011, 36621, 0, 0, 0, 1, 1, 1, 1, 'Advanced Flatbow'),
|
|
(26011, 36635, 0, 0, 0, 1, 1, 1, 1, 'Marvelous Crossbow'),
|
|
(26011, 36649, 0, 0, 0, 1, 1, 1, 1, 'Tundra Rifle'),
|
|
(26011, 36663, 0, 0, 0, 1, 1, 1, 1, 'Ancient Wand'),
|
|
(26011, 36677, 0, 0, 0, 1, 1, 1, 1, 'Levitating Dagger'),
|
|
(26011, 36691, 0, 0, 0, 1, 1, 1, 1, 'Dignified Hammer'),
|
|
(26011, 36705, 0, 0, 0, 1, 1, 1, 1, 'Geyser Staff'),
|
|
(26011, 36719, 0, 0, 0, 1, 1, 1, 1, 'Hunter\'s Scout'),
|
|
(26012, 36027, 0, 0, 0, 1, 1, 1, 1, 'Oracle Belt'),
|
|
(26012, 36028, 0, 0, 0, 1, 1, 1, 1, 'Oracle Slippers'),
|
|
(26012, 36029, 0, 0, 0, 1, 1, 1, 1, 'Oracle Robe'),
|
|
(26012, 36030, 0, 0, 0, 1, 1, 1, 1, 'Oracle Gloves'),
|
|
(26012, 36031, 0, 0, 0, 1, 1, 1, 1, 'Oracle Circlet'),
|
|
(26012, 36032, 0, 0, 0, 1, 1, 1, 1, 'Oracle Leggings'),
|
|
(26012, 36033, 0, 0, 0, 1, 1, 1, 1, 'Oracle Mantle'),
|
|
(26012, 36034, 0, 0, 0, 1, 1, 1, 1, 'Oracle Bracelets'),
|
|
(26012, 36139, 0, 0, 0, 1, 1, 1, 1, 'Ghrino Belt'),
|
|
(26012, 36140, 0, 0, 0, 1, 1, 1, 1, 'Ghrino Boots'),
|
|
(26012, 36141, 0, 0, 0, 1, 1, 1, 1, 'Ghrino Vest'),
|
|
(26012, 36142, 0, 0, 0, 1, 1, 1, 1, 'Ghrino Gloves'),
|
|
(26012, 36143, 0, 0, 0, 1, 1, 1, 1, 'Ghrino Cover'),
|
|
(26012, 36144, 0, 0, 0, 1, 1, 1, 1, 'Ghrino Britches'),
|
|
(26012, 36145, 0, 0, 0, 1, 1, 1, 1, 'Ghrino Pauldrons'),
|
|
(26012, 36146, 0, 0, 0, 1, 1, 1, 1, 'Ghrino Bracers'),
|
|
(26012, 36251, 0, 0, 0, 1, 1, 1, 1, 'Wolvar Belt'),
|
|
(26012, 36252, 0, 0, 0, 1, 1, 1, 1, 'Wolvar Greaves'),
|
|
(26012, 36253, 0, 0, 0, 1, 1, 1, 1, 'Wolvar Armor'),
|
|
(26012, 36254, 0, 0, 0, 1, 1, 1, 1, 'Wolvar Fists'),
|
|
(26012, 36255, 0, 0, 0, 1, 1, 1, 1, 'Wolvar Helmet'),
|
|
(26012, 36256, 0, 0, 0, 1, 1, 1, 1, 'Wolvar Legguards'),
|
|
(26012, 36257, 0, 0, 0, 1, 1, 1, 1, 'Wolvar Shoulderguards'),
|
|
(26012, 36258, 0, 0, 0, 1, 1, 1, 1, 'Wolvar Bindings'),
|
|
(26012, 36363, 0, 0, 0, 1, 1, 1, 1, 'Magnataur Girdle'),
|
|
(26012, 36364, 0, 0, 0, 1, 1, 1, 1, 'Magnataur Sabatons'),
|
|
(26012, 36365, 0, 0, 0, 1, 1, 1, 1, 'Magnataur Breastplate'),
|
|
(26012, 36366, 0, 0, 0, 1, 1, 1, 1, 'Magnataur Gauntlets'),
|
|
(26012, 36367, 0, 0, 0, 1, 1, 1, 1, 'Magnataur Helm'),
|
|
(26012, 36368, 0, 0, 0, 1, 1, 1, 1, 'Magnataur Legplates'),
|
|
(26012, 36369, 0, 0, 0, 1, 1, 1, 1, 'Magnataur Pauldrons'),
|
|
(26012, 36370, 0, 0, 0, 1, 1, 1, 1, 'Magnataur Bracers'),
|
|
(26012, 36412, 0, 0, 0, 1, 1, 1, 1, 'Fleece Cloak'),
|
|
(26012, 36426, 0, 0, 0, 1, 1, 1, 1, 'Stirrup Ring'),
|
|
(26012, 36440, 0, 0, 0, 1, 1, 1, 1, 'Gold Clasped Chain'),
|
|
(26012, 36468, 0, 0, 0, 1, 1, 1, 1, 'Glistening Star'),
|
|
(26012, 36482, 0, 0, 0, 1, 1, 1, 1, 'Parrying Dagger'),
|
|
(26012, 36496, 0, 0, 0, 1, 1, 1, 1, 'Brass-Bound Cudgel'),
|
|
(26012, 36510, 0, 0, 0, 1, 1, 1, 1, 'Lumbering Bludgeon'),
|
|
(26012, 36524, 0, 0, 0, 1, 1, 1, 1, 'Primitive Scimitar'),
|
|
(26012, 36538, 0, 0, 0, 1, 1, 1, 1, 'Trollish Destroyer'),
|
|
(26012, 36552, 0, 0, 0, 1, 1, 1, 1, 'Spiked Greatstaff'),
|
|
(26012, 36566, 0, 0, 0, 1, 1, 1, 1, 'Gilded Fangs'),
|
|
(26012, 36580, 0, 0, 0, 1, 1, 1, 1, 'Dire Axe'),
|
|
(26012, 36594, 0, 0, 0, 1, 1, 1, 1, 'Fracturing Battleaxe'),
|
|
(26012, 36608, 0, 0, 0, 1, 1, 1, 1, 'Piercing Glaive'),
|
|
(26012, 36622, 0, 0, 0, 1, 1, 1, 1, 'Acute Shortbow'),
|
|
(26012, 36636, 0, 0, 0, 1, 1, 1, 1, 'Arbalest Crossbow'),
|
|
(26012, 36650, 0, 0, 0, 1, 1, 1, 1, 'Mammoth Gun'),
|
|
(26012, 36664, 0, 0, 0, 1, 1, 1, 1, 'Chilled Wand'),
|
|
(26012, 36678, 0, 0, 0, 1, 1, 1, 1, 'Runed Talon'),
|
|
(26012, 36692, 0, 0, 0, 1, 1, 1, 1, 'Remedial Mace'),
|
|
(26012, 36706, 0, 0, 0, 1, 1, 1, 1, 'Tenacious Vine Staff'),
|
|
(26012, 36720, 0, 0, 0, 1, 1, 1, 1, 'Flying Knives'),
|
|
(26013, 36035, 0, 0, 0, 1, 1, 1, 1, 'Condor Belt'),
|
|
(26013, 36036, 0, 0, 0, 1, 1, 1, 1, 'Condor Sandals'),
|
|
(26013, 36037, 0, 0, 0, 1, 1, 1, 1, 'Condor Robe'),
|
|
(26013, 36038, 0, 0, 0, 1, 1, 1, 1, 'Condor Gloves'),
|
|
(26013, 36039, 0, 0, 0, 1, 1, 1, 1, 'Condor Headpiece'),
|
|
(26013, 36040, 0, 0, 0, 1, 1, 1, 1, 'Condor Pants'),
|
|
(26013, 36041, 0, 0, 0, 1, 1, 1, 1, 'Condor Shoulderpads'),
|
|
(26013, 36042, 0, 0, 0, 1, 1, 1, 1, 'Condor Bindings'),
|
|
(26013, 36147, 0, 0, 0, 1, 1, 1, 1, 'Pygmy Belt'),
|
|
(26013, 36148, 0, 0, 0, 1, 1, 1, 1, 'Pygmy Boots'),
|
|
(26013, 36149, 0, 0, 0, 1, 1, 1, 1, 'Pygmy Tunic'),
|
|
(26013, 36150, 0, 0, 0, 1, 1, 1, 1, 'Pygmy Gloves'),
|
|
(26013, 36151, 0, 0, 0, 1, 1, 1, 1, 'Pygmy Helmet'),
|
|
(26013, 36152, 0, 0, 0, 1, 1, 1, 1, 'Pygmy Pants'),
|
|
(26013, 36153, 0, 0, 0, 1, 1, 1, 1, 'Pygmy Shoulders'),
|
|
(26013, 36154, 0, 0, 0, 1, 1, 1, 1, 'Pygmy Bindings'),
|
|
(26013, 36259, 0, 0, 0, 1, 1, 1, 1, 'Cormorant Waistband'),
|
|
(26013, 36260, 0, 0, 0, 1, 1, 1, 1, 'Cormorant Footwraps'),
|
|
(26013, 36261, 0, 0, 0, 1, 1, 1, 1, 'Cormorant Chain Vest'),
|
|
(26013, 36262, 0, 0, 0, 1, 1, 1, 1, 'Cormorant Gloves'),
|
|
(26013, 36263, 0, 0, 0, 1, 1, 1, 1, 'Cormorant Helm'),
|
|
(26013, 36264, 0, 0, 0, 1, 1, 1, 1, 'Cormorant Leggings'),
|
|
(26013, 36265, 0, 0, 0, 1, 1, 1, 1, 'Cormorant Mantle'),
|
|
(26013, 36266, 0, 0, 0, 1, 1, 1, 1, 'Cormorant Bracelets'),
|
|
(26013, 36371, 0, 0, 0, 1, 1, 1, 1, 'Kraken Girdle'),
|
|
(26013, 36372, 0, 0, 0, 1, 1, 1, 1, 'Kraken Greaves'),
|
|
(26013, 36373, 0, 0, 0, 1, 1, 1, 1, 'Kraken Breastplate'),
|
|
(26013, 36374, 0, 0, 0, 1, 1, 1, 1, 'Kraken Gauntlets'),
|
|
(26013, 36375, 0, 0, 0, 1, 1, 1, 1, 'Kraken Helm'),
|
|
(26013, 36376, 0, 0, 0, 1, 1, 1, 1, 'Kraken Legplates'),
|
|
(26013, 36377, 0, 0, 0, 1, 1, 1, 1, 'Kraken Epaulets'),
|
|
(26013, 36378, 0, 0, 0, 1, 1, 1, 1, 'Kraken Vambraces'),
|
|
(26013, 36413, 0, 0, 0, 1, 1, 1, 1, 'Dyed Taffeta Cape'),
|
|
(26013, 36427, 0, 0, 0, 1, 1, 1, 1, 'Engraved Ring'),
|
|
(26013, 36441, 0, 0, 0, 1, 1, 1, 1, 'Pearl Woven Choker'),
|
|
(26013, 36455, 0, 0, 0, 1, 1, 1, 1, 'Plated Bulwark'),
|
|
(26013, 36469, 0, 0, 0, 1, 1, 1, 1, 'Lidless Orb'),
|
|
(26013, 36483, 0, 0, 0, 1, 1, 1, 1, 'Mandible Edge'),
|
|
(26013, 36497, 0, 0, 0, 1, 1, 1, 1, 'Adamant Mallet'),
|
|
(26013, 36511, 0, 0, 0, 1, 1, 1, 1, 'Arctic War Hammer'),
|
|
(26013, 36525, 0, 0, 0, 1, 1, 1, 1, 'Craggy Machete'),
|
|
(26013, 36539, 0, 0, 0, 1, 1, 1, 1, 'Chilled Warblade'),
|
|
(26013, 36553, 0, 0, 0, 1, 1, 1, 1, 'Desecrated Staff'),
|
|
(26013, 36567, 0, 0, 0, 1, 1, 1, 1, 'Six-Fingered Claws'),
|
|
(26013, 36581, 0, 0, 0, 1, 1, 1, 1, 'Wolvar Handaxe'),
|
|
(26013, 36595, 0, 0, 0, 1, 1, 1, 1, 'Planate Broadaxe'),
|
|
(26013, 36609, 0, 0, 0, 1, 1, 1, 1, 'Abandoned Spear'),
|
|
(26013, 36623, 0, 0, 0, 1, 1, 1, 1, 'Harnessed Longbow'),
|
|
(26013, 36637, 0, 0, 0, 1, 1, 1, 1, 'Horrific Crossbow'),
|
|
(26013, 36651, 0, 0, 0, 1, 1, 1, 1, 'Muzzled Musket'),
|
|
(26013, 36665, 0, 0, 0, 1, 1, 1, 1, 'Wasteland Wand'),
|
|
(26013, 36679, 0, 0, 0, 1, 1, 1, 1, 'Singing Dagger'),
|
|
(26013, 36693, 0, 0, 0, 1, 1, 1, 1, 'Serene Hammer'),
|
|
(26013, 36707, 0, 0, 0, 1, 1, 1, 1, 'Cascading Water Staff'),
|
|
(26013, 36721, 0, 0, 0, 1, 1, 1, 1, 'Dragon\'s Teeth'),
|
|
(26014, 36043, 0, 0, 0, 1, 1, 1, 1, 'Crystalsong Sash'),
|
|
(26014, 36044, 0, 0, 0, 1, 1, 1, 1, 'Crystalsong Slippers'),
|
|
(26014, 36045, 0, 0, 0, 1, 1, 1, 1, 'Crystalsong Robe'),
|
|
(26014, 36046, 0, 0, 0, 1, 1, 1, 1, 'Crystalsong Gloves'),
|
|
(26014, 36047, 0, 0, 0, 1, 1, 1, 1, 'Crystalsong Crown'),
|
|
(26014, 36048, 0, 0, 0, 1, 1, 1, 1, 'Crystalsong Leggings'),
|
|
(26014, 36049, 0, 0, 0, 1, 1, 1, 1, 'Crystalsong Mantle'),
|
|
(26014, 36050, 0, 0, 0, 1, 1, 1, 1, 'Crystalsong Bracelets'),
|
|
(26014, 36155, 0, 0, 0, 1, 1, 1, 1, 'Wendigo Girdle'),
|
|
(26014, 36156, 0, 0, 0, 1, 1, 1, 1, 'Wendigo Boots'),
|
|
(26014, 36157, 0, 0, 0, 1, 1, 1, 1, 'Wendigo Chestpiece'),
|
|
(26014, 36158, 0, 0, 0, 1, 1, 1, 1, 'Wendigo Gloves'),
|
|
(26014, 36159, 0, 0, 0, 1, 1, 1, 1, 'Wendigo Hood'),
|
|
(26014, 36160, 0, 0, 0, 1, 1, 1, 1, 'Wendigo Legguards'),
|
|
(26014, 36161, 0, 0, 0, 1, 1, 1, 1, 'Wendigo Pauldrons'),
|
|
(26014, 36162, 0, 0, 0, 1, 1, 1, 1, 'Wendigo Bands'),
|
|
(26014, 36267, 0, 0, 0, 1, 1, 1, 1, 'Ulduar Girdle'),
|
|
(26014, 36268, 0, 0, 0, 1, 1, 1, 1, 'Ulduar Greaves'),
|
|
(26014, 36269, 0, 0, 0, 1, 1, 1, 1, 'Ulduar Breastplate'),
|
|
(26014, 36270, 0, 0, 0, 1, 1, 1, 1, 'Ulduar Gauntlets'),
|
|
(26014, 36271, 0, 0, 0, 1, 1, 1, 1, 'Ulduar Helm'),
|
|
(26014, 36272, 0, 0, 0, 1, 1, 1, 1, 'Ulduar Legguards'),
|
|
(26014, 36273, 0, 0, 0, 1, 1, 1, 1, 'Ulduar Shoulderguards'),
|
|
(26014, 36274, 0, 0, 0, 1, 1, 1, 1, 'Ulduar Bracers'),
|
|
(26014, 36379, 0, 0, 0, 1, 1, 1, 1, 'Golem Girdle'),
|
|
(26014, 36380, 0, 0, 0, 1, 1, 1, 1, 'Golem Sabatons'),
|
|
(26014, 36381, 0, 0, 0, 1, 1, 1, 1, 'Golem Breastplate'),
|
|
(26014, 36382, 0, 0, 0, 1, 1, 1, 1, 'Golem Gauntlets'),
|
|
(26014, 36383, 0, 0, 0, 1, 1, 1, 1, 'Golem Helmet'),
|
|
(26014, 36384, 0, 0, 0, 1, 1, 1, 1, 'Golem Legplates'),
|
|
(26014, 36385, 0, 0, 0, 1, 1, 1, 1, 'Golem Pauldrons'),
|
|
(26014, 36386, 0, 0, 0, 1, 1, 1, 1, 'Golem Vambraces'),
|
|
(26014, 36414, 0, 0, 0, 1, 1, 1, 1, 'Mammoth Fur Cloak'),
|
|
(26014, 36428, 0, 0, 0, 1, 1, 1, 1, 'Bouquet Ring'),
|
|
(26014, 36442, 0, 0, 0, 1, 1, 1, 1, 'Silken Cord Amulet'),
|
|
(26014, 36456, 0, 0, 0, 1, 1, 1, 1, 'Icy Kite Shield'),
|
|
(26014, 36470, 0, 0, 0, 1, 1, 1, 1, 'Gilded Scepter'),
|
|
(26014, 36484, 0, 0, 0, 1, 1, 1, 1, 'Etched Dagger'),
|
|
(26014, 36498, 0, 0, 0, 1, 1, 1, 1, 'Nerubian Mace'),
|
|
(26014, 36512, 0, 0, 0, 1, 1, 1, 1, 'Onerous Mallet'),
|
|
(26014, 36526, 0, 0, 0, 1, 1, 1, 1, 'Sleeted Longsword'),
|
|
(26014, 36540, 0, 0, 0, 1, 1, 1, 1, 'Petrified Sword'),
|
|
(26014, 36554, 0, 0, 0, 1, 1, 1, 1, 'Cursed Staff'),
|
|
(26014, 36568, 0, 0, 0, 1, 1, 1, 1, 'Hollowed Bone Knuckles'),
|
|
(26014, 36582, 0, 0, 0, 1, 1, 1, 1, 'Ice Pick'),
|
|
(26014, 36596, 0, 0, 0, 1, 1, 1, 1, 'Rupturing Axe'),
|
|
(26014, 36610, 0, 0, 0, 1, 1, 1, 1, 'Plagued Pike'),
|
|
(26014, 36624, 0, 0, 0, 1, 1, 1, 1, 'Shrieking Bow'),
|
|
(26014, 36638, 0, 0, 0, 1, 1, 1, 1, 'Bloody Crossbow'),
|
|
(26014, 36652, 0, 0, 0, 1, 1, 1, 1, 'Stocky Shotgun'),
|
|
(26014, 36666, 0, 0, 0, 1, 1, 1, 1, 'Polar Wand'),
|
|
(26014, 36680, 0, 0, 0, 1, 1, 1, 1, 'Mystic Fang'),
|
|
(26014, 36694, 0, 0, 0, 1, 1, 1, 1, 'Beatific Mace'),
|
|
(26014, 36708, 0, 0, 0, 1, 1, 1, 1, 'Snow Blossom Staff'),
|
|
(26014, 36722, 0, 0, 0, 1, 1, 1, 1, 'Pyramid Throwing Star'),
|
|
(26015, 36051, 0, 0, 0, 1, 1, 1, 1, 'Vizier Sash'),
|
|
(26015, 36052, 0, 0, 0, 1, 1, 1, 1, 'Vizier Slippers'),
|
|
(26015, 36053, 0, 0, 0, 1, 1, 1, 1, 'Vizier Robe'),
|
|
(26015, 36054, 0, 0, 0, 1, 1, 1, 1, 'Vizier Gloves'),
|
|
(26015, 36055, 0, 0, 0, 1, 1, 1, 1, 'Vizier Hood'),
|
|
(26015, 36056, 0, 0, 0, 1, 1, 1, 1, 'Vizier Leggings'),
|
|
(26015, 36057, 0, 0, 0, 1, 1, 1, 1, 'Vizier Mantle'),
|
|
(26015, 36058, 0, 0, 0, 1, 1, 1, 1, 'Vizier Bracelets'),
|
|
(26015, 36163, 0, 0, 0, 1, 1, 1, 1, 'Webspinner Cord'),
|
|
(26015, 36164, 0, 0, 0, 1, 1, 1, 1, 'Webspinner Boots'),
|
|
(26015, 36165, 0, 0, 0, 1, 1, 1, 1, 'Webspinner Vest'),
|
|
(26015, 36166, 0, 0, 0, 1, 1, 1, 1, 'Webspinner Gloves'),
|
|
(26015, 36167, 0, 0, 0, 1, 1, 1, 1, 'Webspinner Hood'),
|
|
(26015, 36168, 0, 0, 0, 1, 1, 1, 1, 'Webspinner Leggings'),
|
|
(26015, 36169, 0, 0, 0, 1, 1, 1, 1, 'Webspinner Shoulderguards'),
|
|
(26015, 36170, 0, 0, 0, 1, 1, 1, 1, 'Webspinner Bindings'),
|
|
(26015, 36275, 0, 0, 0, 1, 1, 1, 1, 'Spiderlord Belt'),
|
|
(26015, 36276, 0, 0, 0, 1, 1, 1, 1, 'Spiderlord Boots'),
|
|
(26015, 36277, 0, 0, 0, 1, 1, 1, 1, 'Spiderlord Chestpiece'),
|
|
(26015, 36278, 0, 0, 0, 1, 1, 1, 1, 'Spiderlord Gauntlets'),
|
|
(26015, 36279, 0, 0, 0, 1, 1, 1, 1, 'Spiderlord Helm'),
|
|
(26015, 36280, 0, 0, 0, 1, 1, 1, 1, 'Spiderlord Legguards'),
|
|
(26015, 36281, 0, 0, 0, 1, 1, 1, 1, 'Spiderlord Spaulders'),
|
|
(26015, 36282, 0, 0, 0, 1, 1, 1, 1, 'Spiderlord Bracers'),
|
|
(26015, 36387, 0, 0, 0, 1, 1, 1, 1, 'Revenant Belt'),
|
|
(26015, 36388, 0, 0, 0, 1, 1, 1, 1, 'Revenant Greaves'),
|
|
(26015, 36389, 0, 0, 0, 1, 1, 1, 1, 'Revenant Armor'),
|
|
(26015, 36390, 0, 0, 0, 1, 1, 1, 1, 'Revenant Gauntlets'),
|
|
(26015, 36391, 0, 0, 0, 1, 1, 1, 1, 'Revenant Helmet'),
|
|
(26015, 36392, 0, 0, 0, 1, 1, 1, 1, 'Revenant Legguards'),
|
|
(26015, 36393, 0, 0, 0, 1, 1, 1, 1, 'Revenant Epaulets'),
|
|
(26015, 36394, 0, 0, 0, 1, 1, 1, 1, 'Revenant Bracers'),
|
|
(26015, 36415, 0, 0, 0, 1, 1, 1, 1, 'Vintage Satin Cloak'),
|
|
(26015, 36429, 0, 0, 0, 1, 1, 1, 1, 'Spur Ring'),
|
|
(26015, 36443, 0, 0, 0, 1, 1, 1, 1, 'Platinum Medallion'),
|
|
(26015, 36457, 0, 0, 0, 1, 1, 1, 1, 'Ivory Shield'),
|
|
(26015, 36471, 0, 0, 0, 1, 1, 1, 1, 'Ice Crystal'),
|
|
(26015, 36485, 0, 0, 0, 1, 1, 1, 1, 'Sinuous Keris'),
|
|
(26015, 36499, 0, 0, 0, 1, 1, 1, 1, 'Frigid War-Mace'),
|
|
(26015, 36513, 0, 0, 0, 1, 1, 1, 1, 'Lode-Headed Hammer'),
|
|
(26015, 36527, 0, 0, 0, 1, 1, 1, 1, 'Blackened Blade'),
|
|
(26015, 36541, 0, 0, 0, 1, 1, 1, 1, 'Wintry Claymore'),
|
|
(26015, 36555, 0, 0, 0, 1, 1, 1, 1, 'Minion Staff'),
|
|
(26015, 36569, 0, 0, 0, 1, 1, 1, 1, 'Savage Talons'),
|
|
(26015, 36583, 0, 0, 0, 1, 1, 1, 1, 'Skeletal Hacker'),
|
|
(26015, 36597, 0, 0, 0, 1, 1, 1, 1, 'Ice-Splintering Axe'),
|
|
(26015, 36611, 0, 0, 0, 1, 1, 1, 1, 'Bleak Scythe'),
|
|
(26015, 36625, 0, 0, 0, 1, 1, 1, 1, 'Massive Recurved Bow'),
|
|
(26015, 36639, 0, 0, 0, 1, 1, 1, 1, 'Brutal Ballista'),
|
|
(26015, 36653, 0, 0, 0, 1, 1, 1, 1, 'Precipice Longrifle'),
|
|
(26015, 36667, 0, 0, 0, 1, 1, 1, 1, 'Solid Ice Wand'),
|
|
(26015, 36681, 0, 0, 0, 1, 1, 1, 1, 'Wisdom Carver'),
|
|
(26015, 36695, 0, 0, 0, 1, 1, 1, 1, 'Dogmatic Scepter'),
|
|
(26015, 36709, 0, 0, 0, 1, 1, 1, 1, 'Crystal Woodstaff'),
|
|
(26015, 36723, 0, 0, 0, 1, 1, 1, 1, 'Clawed Shuriken'),
|
|
(26016, 36059, 0, 0, 0, 1, 1, 1, 1, 'Coldwraith Sash'),
|
|
(26016, 36060, 0, 0, 0, 1, 1, 1, 1, 'Coldwraith Boots'),
|
|
(26016, 36061, 0, 0, 0, 1, 1, 1, 1, 'Coldwraith Robe'),
|
|
(26016, 36062, 0, 0, 0, 1, 1, 1, 1, 'Coldwraith Handwraps'),
|
|
(26016, 36063, 0, 0, 0, 1, 1, 1, 1, 'Coldwraith Cowl'),
|
|
(26016, 36064, 0, 0, 0, 1, 1, 1, 1, 'Coldwraith Pants'),
|
|
(26016, 36065, 0, 0, 0, 1, 1, 1, 1, 'Coldwraith Mantle'),
|
|
(26016, 36066, 0, 0, 0, 1, 1, 1, 1, 'Coldwraith Bindings'),
|
|
(26016, 36171, 0, 0, 0, 1, 1, 1, 1, 'Geist Belt'),
|
|
(26016, 36172, 0, 0, 0, 1, 1, 1, 1, 'Geist Boots'),
|
|
(26016, 36173, 0, 0, 0, 1, 1, 1, 1, 'Geist Tunic'),
|
|
(26016, 36174, 0, 0, 0, 1, 1, 1, 1, 'Geist Gloves'),
|
|
(26016, 36175, 0, 0, 0, 1, 1, 1, 1, 'Geist Hood'),
|
|
(26016, 36176, 0, 0, 0, 1, 1, 1, 1, 'Geist Legguards'),
|
|
(26016, 36177, 0, 0, 0, 1, 1, 1, 1, 'Geist Shoulders'),
|
|
(26016, 36178, 0, 0, 0, 1, 1, 1, 1, 'Geist Wristguards'),
|
|
(26016, 36283, 0, 0, 0, 1, 1, 1, 1, 'Spectral Waistband'),
|
|
(26016, 36284, 0, 0, 0, 1, 1, 1, 1, 'Spectral Greaves'),
|
|
(26016, 36285, 0, 0, 0, 1, 1, 1, 1, 'Spectral Armor'),
|
|
(26016, 36286, 0, 0, 0, 1, 1, 1, 1, 'Spectral Gauntlets'),
|
|
(26016, 36287, 0, 0, 0, 1, 1, 1, 1, 'Spectral Helmet'),
|
|
(26016, 36288, 0, 0, 0, 1, 1, 1, 1, 'Spectral Legwraps'),
|
|
(26016, 36289, 0, 0, 0, 1, 1, 1, 1, 'Spectral Mantle'),
|
|
(26016, 36290, 0, 0, 0, 1, 1, 1, 1, 'Spectral Bracelets'),
|
|
(26016, 36395, 0, 0, 0, 1, 1, 1, 1, 'Necropolis Girdle'),
|
|
(26016, 36396, 0, 0, 0, 1, 1, 1, 1, 'Necropolis Sabatons'),
|
|
(26016, 36397, 0, 0, 0, 1, 1, 1, 1, 'Necropolis Breastplate'),
|
|
(26016, 36398, 0, 0, 0, 1, 1, 1, 1, 'Necropolis Gloves'),
|
|
(26016, 36399, 0, 0, 0, 1, 1, 1, 1, 'Necropolis Helm'),
|
|
(26016, 36400, 0, 0, 0, 1, 1, 1, 1, 'Necropolis Legplates'),
|
|
(26016, 36401, 0, 0, 0, 1, 1, 1, 1, 'Necropolis Epaulets'),
|
|
(26016, 36402, 0, 0, 0, 1, 1, 1, 1, 'Necropolis Vambraces'),
|
|
(26016, 36416, 0, 0, 0, 1, 1, 1, 1, 'Regal Cloak'),
|
|
(26016, 36430, 0, 0, 0, 1, 1, 1, 1, 'Puzzle Ring'),
|
|
(26016, 36444, 0, 0, 0, 1, 1, 1, 1, 'Ice Encrusted Amulet'),
|
|
(26016, 36458, 0, 0, 0, 1, 1, 1, 1, 'Frozen Shield'),
|
|
(26016, 36472, 0, 0, 0, 1, 1, 1, 1, 'Carved Rod'),
|
|
(26016, 36486, 0, 0, 0, 1, 1, 1, 1, 'Ornate Pugio'),
|
|
(26016, 36500, 0, 0, 0, 1, 1, 1, 1, 'Gargoyle\'s Mace'),
|
|
(26016, 36514, 0, 0, 0, 1, 1, 1, 1, 'Kingly Battlehammer'),
|
|
(26016, 36528, 0, 0, 0, 1, 1, 1, 1, 'Skeleton\'s Sword'),
|
|
(26016, 36542, 0, 0, 0, 1, 1, 1, 1, 'Invasion Blade'),
|
|
(26016, 36556, 0, 0, 0, 1, 1, 1, 1, 'Apocalyptic Staff'),
|
|
(26016, 36570, 0, 0, 0, 1, 1, 1, 1, 'Corrupted Scythes'),
|
|
(26016, 36584, 0, 0, 0, 1, 1, 1, 1, 'Snowy Edge'),
|
|
(26016, 36598, 0, 0, 0, 1, 1, 1, 1, 'Scarlet Battle Axe'),
|
|
(26016, 36612, 0, 0, 0, 1, 1, 1, 1, 'Scourge War Spear'),
|
|
(26016, 36626, 0, 0, 0, 1, 1, 1, 1, 'Military Compound Bow'),
|
|
(26016, 36640, 0, 0, 0, 1, 1, 1, 1, 'Scourge Crossbow'),
|
|
(26016, 36654, 0, 0, 0, 1, 1, 1, 1, 'Harsh-Winter Rifle'),
|
|
(26016, 36668, 0, 0, 0, 1, 1, 1, 1, 'Mindless Wand'),
|
|
(26016, 36682, 0, 0, 0, 1, 1, 1, 1, 'Seduced Blade'),
|
|
(26016, 36696, 0, 0, 0, 1, 1, 1, 1, 'Graced Scepter'),
|
|
(26016, 36710, 0, 0, 0, 1, 1, 1, 1, 'Avalanche Staff'),
|
|
(26016, 36724, 0, 0, 0, 1, 1, 1, 1, 'Frozen Throwing Blades'),
|
|
(26017, 37743, 0, 0, 0, 1, 1, 1, 1, 'Legguards of Brutalization'),
|
|
(26017, 37744, 0, 0, 0, 1, 1, 1, 1, 'Horrorblood Treads'),
|
|
(26017, 37745, 0, 0, 0, 1, 1, 1, 1, 'Greenhealer\'s Garb'),
|
|
(26017, 37746, 0, 0, 0, 1, 1, 1, 1, 'Helm of the Burning Soul'),
|
|
(26017, 37747, 0, 0, 0, 1, 1, 1, 1, 'Beneficent Bulwark'),
|
|
(26017, 37748, 0, 0, 0, 1, 1, 1, 1, 'Winterfall\'s Frozen Necklace'),
|
|
(26018, 37749, 0, 0, 0, 1, 1, 1, 1, 'Shocking Claws'),
|
|
(26018, 37751, 0, 0, 0, 1, 1, 1, 1, 'Tooga\'s Lost Toenail'),
|
|
(26018, 37752, 0, 0, 0, 1, 1, 1, 1, 'Sandals of Broken Dreams'),
|
|
(26018, 37762, 0, 0, 0, 1, 1, 1, 1, 'Many-Pocketed Belt'),
|
|
(26018, 37772, 0, 0, 0, 1, 1, 1, 1, 'Wub\'s Electrospike Spaulders'),
|
|
(26018, 37782, 0, 0, 0, 1, 1, 1, 1, 'Gauntlets of the Cheerful Hearth'),
|
|
(26019, 37753, 0, 0, 0, 1, 1, 1, 1, 'Mendicant\'s Robe of Mendacity'),
|
|
(26019, 37763, 0, 0, 0, 1, 1, 1, 1, 'Treads of the Purifier'),
|
|
(26019, 37773, 0, 0, 0, 1, 1, 1, 1, 'Shock-Inducing Girdle'),
|
|
(26019, 37783, 0, 0, 0, 1, 1, 1, 1, 'Blood-Tempered Spaulders'),
|
|
(26019, 37803, 0, 0, 0, 1, 1, 1, 1, 'Lola\'s Lifegiving Branch'),
|
|
(26019, 37819, 0, 0, 0, 1, 1, 1, 1, 'Milan\'s Mastercraft Band'),
|
|
(26020, 37754, 0, 0, 0, 1, 1, 1, 1, 'Shimmersteel Hood'),
|
|
(26020, 37764, 0, 0, 0, 1, 1, 1, 1, 'Corehound Fang Shoulderpads'),
|
|
(26020, 37774, 0, 0, 0, 1, 1, 1, 1, 'Leggings of Aqueous Dissolution'),
|
|
(26020, 37795, 0, 0, 0, 1, 1, 1, 1, 'Grips of the Valiant Champion'),
|
|
(26020, 37796, 0, 0, 0, 1, 1, 1, 1, 'Earthbound Cape'),
|
|
(26020, 37820, 0, 0, 0, 1, 1, 1, 1, 'Worgen\'s Ring of Revitalization'),
|
|
(26021, 37755, 0, 0, 0, 1, 1, 1, 1, 'Leggings of the Icy Heart'),
|
|
(26021, 37775, 0, 0, 0, 1, 1, 1, 1, 'Helm of the Broken Ram'),
|
|
(26021, 37785, 0, 0, 0, 1, 1, 1, 1, 'Girdle of the Howling Berserker'),
|
|
(26021, 37802, 0, 0, 0, 1, 1, 1, 1, 'Elanor\'s Edge'),
|
|
(26021, 37811, 0, 0, 0, 1, 1, 1, 1, 'Captain Carver\'s Persuader'),
|
|
(26021, 37817, 0, 0, 0, 1, 1, 1, 1, 'Branch of Sinful Reprieve'),
|
|
(26022, 37756, 0, 0, 0, 1, 1, 1, 1, 'Zoe\'s Comforting Cape'),
|
|
(26022, 37765, 0, 0, 0, 1, 1, 1, 1, 'Leggings of the Water Moccasin'),
|
|
(26022, 37776, 0, 0, 0, 1, 1, 1, 1, 'Bracers of Accurate Fire'),
|
|
(26022, 37786, 0, 0, 0, 1, 1, 1, 1, 'Legguards of the Forlorn Seas'),
|
|
(26022, 37807, 0, 0, 0, 1, 1, 1, 1, 'Lydia\'s Sharpened Swordbreaker'),
|
|
(26022, 37821, 0, 0, 0, 1, 1, 1, 1, 'Raine\'s Signet of Blasting'),
|
|
(26023, 37757, 0, 0, 0, 1, 1, 1, 1, 'Charlotte\'s Chastizing Pauldrons'),
|
|
(26023, 37758, 0, 0, 0, 1, 1, 1, 1, 'Raine\'s Choker of Combustion'),
|
|
(26023, 37766, 0, 0, 0, 1, 1, 1, 1, 'Bracers of Unmitigated Larceny'),
|
|
(26023, 37777, 0, 0, 0, 1, 1, 1, 1, 'Bracers of Sizzling Heat'),
|
|
(26023, 37787, 0, 0, 0, 1, 1, 1, 1, 'Greathelm of the Unyielding Bull'),
|
|
(26023, 37805, 0, 0, 0, 1, 1, 1, 1, 'Melia\'s Magnificent Scepter'),
|
|
(26023, 37813, 0, 0, 0, 1, 1, 1, 1, 'Banner Slicer'),
|
|
(26023, 41608, 0, 0, 0, 1, 1, 1, 1, 'Cloak of Frozen Spirits'),
|
|
(26024, 37767, 0, 0, 0, 1, 1, 1, 1, 'Ryft\'s Deathgaze'),
|
|
(26024, 37778, 0, 0, 0, 1, 1, 1, 1, 'Girdle of Unerring Flight'),
|
|
(26024, 37789, 0, 0, 0, 1, 1, 1, 1, 'Gauntlets of Disembowelment'),
|
|
(26024, 37804, 0, 0, 0, 1, 1, 1, 1, 'Bloodwood Greatstaff'),
|
|
(26024, 37810, 0, 0, 0, 1, 1, 1, 1, 'Blade-Binding Bulwark'),
|
|
(26024, 37812, 0, 0, 0, 1, 1, 1, 1, 'Petrified Ironwood Smasher'),
|
|
(26025, 37759, 0, 0, 0, 1, 1, 1, 1, 'Rhie-ay\'s Clutching Gauntlets'),
|
|
(26025, 37768, 0, 0, 0, 1, 1, 1, 1, 'Leggings of Violent Exsanguination'),
|
|
(26025, 37790, 0, 0, 0, 1, 1, 1, 1, 'Belt of Crystalline Tears'),
|
|
(26025, 37806, 0, 0, 0, 1, 1, 1, 1, 'Zabra\'s Misplaced Staff'),
|
|
(26025, 37808, 0, 0, 0, 1, 1, 1, 1, 'Dragonjaw Mauler'),
|
|
(26025, 37809, 0, 0, 0, 1, 1, 1, 1, 'Roc-Feather Longbow'),
|
|
(26026, 37769, 0, 0, 0, 1, 1, 1, 1, 'Gnarled Shovelhorn Spaulders'),
|
|
(26026, 37779, 0, 0, 0, 1, 1, 1, 1, 'Nixod\'s Chain-Threshed Spaulders'),
|
|
(26026, 37792, 0, 0, 0, 1, 1, 1, 1, 'Agin\'s Crushing Carapace'),
|
|
(26026, 37797, 0, 0, 0, 1, 1, 1, 1, 'Cloak of the Agile Mind'),
|
|
(26026, 37823, 0, 0, 0, 1, 1, 1, 1, 'Draconic Choker of Ferocity'),
|
|
(26027, 37760, 0, 0, 0, 1, 1, 1, 1, 'Cracklefire Wristguards'),
|
|
(26027, 37770, 0, 0, 0, 1, 1, 1, 1, 'Bulge-Concealing Breastplate'),
|
|
(26027, 37780, 0, 0, 0, 1, 1, 1, 1, 'Condor-Bone Chestguard'),
|
|
(26027, 37793, 0, 0, 0, 1, 1, 1, 1, 'Skullcage of Eternal Terror'),
|
|
(26027, 37822, 0, 0, 0, 1, 1, 1, 1, 'Twisted Puzzle-Ring'),
|
|
(26028, 37761, 0, 0, 0, 1, 1, 1, 1, 'Shimmerthread Girdle'),
|
|
(26028, 37771, 0, 0, 0, 1, 1, 1, 1, 'Wristguards of Verdant Recovery'),
|
|
(26028, 37781, 0, 0, 0, 1, 1, 1, 1, 'Grips of the Warming Heart'),
|
|
(26028, 37794, 0, 0, 0, 1, 1, 1, 1, 'Torta\'s Oversized Choker'),
|
|
(26028, 37824, 0, 0, 0, 1, 1, 1, 1, 'Gwyneth\'s Runed Dragonwand'),
|
|
(26040, 26041, 26041, 50, 0, 1, 0, 1, 1, '(ReferenceTable)'),
|
|
(26040, 33470, 0, 100, 0, 1, 0, 1, 3, 'Frostweave Cloth'),
|
|
(26041, 33470, 0, 100, 0, 1, 0, 1, 7, 'Frostweave Cloth'),
|
|
(26042, 43507, 0, 0, 0, 1, 1, 1, 1, 'Recipe: Tasty Cupcake'),
|
|
(26042, 43508, 0, 0, 0, 1, 1, 1, 1, 'Recipe: Last Week\'s Mammoth'),
|
|
(26042, 43509, 0, 0, 0, 1, 1, 1, 1, 'Recipe: Bad Clams'),
|
|
(26042, 43510, 0, 0, 0, 1, 1, 1, 1, 'Recipe: Haunted Herring'),
|
|
(26043, 30732, 0, 0, 0, 1, 1, 1, 1, 'Exodar Life-Staff'),
|
|
(26043, 30733, 0, 0, 0, 1, 1, 1, 1, 'Hope Ender'),
|
|
(26043, 30734, 0, 0, 0, 1, 1, 1, 1, 'Leggings of the Seventh Circle'),
|
|
(26043, 30735, 0, 0, 0, 1, 1, 1, 1, 'Ancient Spellcloak of the Highborne'),
|
|
(26043, 30736, 0, 0, 0, 1, 1, 1, 1, 'Ring of Flowing Light'),
|
|
(26043, 30737, 0, 0, 0, 1, 1, 1, 1, 'Gold-Leaf Wildboots'),
|
|
(26043, 30738, 0, 0, 0, 1, 1, 1, 1, 'Ring of Reciprocity'),
|
|
(26043, 30739, 0, 0, 0, 1, 1, 1, 1, 'Scaled Greaves of the Marksman'),
|
|
(26043, 30740, 0, 0, 0, 1, 1, 1, 1, 'Ripfiend Shoulderplates'),
|
|
(26043, 30741, 0, 0, 0, 1, 1, 1, 1, 'Topaz-Studded Battlegrips'),
|
|
(29569, 24231, 0, 70, 0, 1, 1, 2, 3, 'Reference Table - Coarse Snuff'),
|
|
(29569, 24232, 0, 8, 0, 1, 1, 2, 2, 'Reference Table - Shabby Knot'),
|
|
(29569, 24281, 0, 8, 0, 1, 1, 1, 1, 'Reference Table - Carved Ivory Bone'),
|
|
(29569, 24282, 0, 8, 0, 1, 1, 1, 1, 'Reference Table - Rogue\'s Diary'),
|
|
(29569, 27729, 0, 6, 0, 1, 1, 1, 1, 'Reference Table - Humanoid Skull'),
|
|
(30001, 18252, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30001, 18257, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30001, 18259, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30001, 18260, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30001, 18264, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30001, 18265, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30001, 18290, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30001, 18291, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30001, 18292, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30001, 21371, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30044, 2564, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30044, 7734, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30044, 13009, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30044, 13030, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30044, 13046, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30044, 13065, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30044, 13066, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30044, 13085, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30044, 13125, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30044, 13139, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30089, 10135, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30089, 10143, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30089, 10151, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30089, 10157, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30089, 10158, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30089, 10246, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30089, 10252, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30089, 10254, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30089, 10262, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30089, 10264, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30089, 10266, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30089, 10271, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30089, 10273, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30089, 10367, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30089, 10384, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30089, 10389, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30089, 11980, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30089, 12017, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30089, 12048, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30089, 12058, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30089, 14328, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30089, 14332, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30089, 14336, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30089, 14456, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30089, 14464, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30089, 14680, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30089, 14811, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30089, 14812, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30089, 14975, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30089, 14979, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30089, 14982, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30089, 15221, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30089, 15240, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30089, 15247, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30089, 15258, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30089, 15283, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30089, 15289, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30089, 15439, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30089, 15442, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30089, 15680, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30089, 15684, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30089, 15687, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30089, 15941, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30089, 15942, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30089, 15968, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30089, 15989, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30105, 30044, 30044, 100, 0, 1, 0, 1, 1, NULL),
|
|
(30171, 1203, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30171, 1973, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30171, 2564, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30171, 4696, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30171, 5266, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30171, 5267, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30171, 6622, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30171, 7734, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30171, 7976, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30171, 7991, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30171, 8028, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30171, 9402, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30171, 10605, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30171, 10608, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30171, 11302, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30171, 12698, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30171, 12711, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30171, 12717, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30171, 12720, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30171, 12728, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30171, 13000, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30171, 13001, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30171, 13002, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30171, 13003, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30171, 13004, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30171, 13006, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30171, 13007, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30171, 13008, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30171, 13009, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30171, 13013, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30171, 13015, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30171, 13030, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30171, 13036, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30171, 13040, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30171, 13047, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30171, 13053, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30171, 13060, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30171, 13066, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30171, 13067, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30171, 13070, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30171, 13072, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30171, 13073, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30171, 13075, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30171, 13077, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30171, 13083, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30171, 13085, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30171, 13091, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30171, 13096, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30171, 13107, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30171, 13111, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30171, 13113, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30171, 13116, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30171, 13118, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30171, 13120, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30171, 13123, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30171, 13125, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30171, 13126, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30171, 13130, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30171, 13133, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30171, 13135, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30171, 13144, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30171, 13146, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30171, 14501, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30171, 14509, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30171, 14511, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30171, 17413, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30171, 17414, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30171, 17682, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30171, 17683, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30171, 18600, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30171, 22388, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30171, 22389, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30171, 22390, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30171, 22393, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30171, 22890, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30171, 22891, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30172, 9297, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30172, 10246, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30172, 10247, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30172, 10248, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30172, 10249, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30172, 10250, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30172, 10251, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30172, 10252, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30172, 10253, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30172, 10254, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30172, 10255, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30172, 10256, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30172, 10257, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30172, 10258, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30172, 10259, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30172, 10260, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30172, 10261, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30172, 10262, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30172, 10263, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30172, 10264, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30172, 10265, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30172, 10266, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30172, 10267, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30172, 10268, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30172, 10269, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30172, 10270, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30172, 10272, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30172, 10273, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30172, 10274, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30172, 10367, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30172, 10384, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30172, 10385, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30172, 10386, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30172, 10387, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30172, 10388, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30172, 10389, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30172, 10390, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30172, 10391, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30172, 11224, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30172, 11226, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30172, 12017, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30172, 12048, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30172, 12682, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30172, 12683, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30172, 12684, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30172, 12685, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30172, 12689, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30172, 12702, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30172, 13486, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30172, 13487, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30172, 13488, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30172, 13489, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30172, 14328, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30172, 14329, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30172, 14330, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30172, 14331, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30172, 14332, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30172, 14333, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30172, 14334, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30172, 14335, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30172, 14336, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30172, 14337, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30172, 14975, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30172, 14976, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30172, 14977, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30172, 14978, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30172, 14979, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30172, 14980, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30172, 14981, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30172, 14982, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30172, 14983, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30172, 15221, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30172, 15229, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30172, 15240, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30172, 15247, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30172, 15258, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30172, 15267, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30172, 15273, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30172, 15278, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30172, 15283, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30172, 15289, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30172, 15325, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30172, 15434, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30172, 15435, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30172, 15436, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30172, 15437, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30172, 15438, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30172, 15439, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30172, 15440, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30172, 15441, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30172, 15442, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30172, 15678, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30172, 15679, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30172, 15680, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30172, 15681, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30172, 15682, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30172, 15683, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30172, 15684, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30172, 15685, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30172, 15686, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30172, 15687, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30172, 15942, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30172, 16044, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30172, 16055, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30172, 16253, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30173, 17962, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30173, 17963, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30173, 17964, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30173, 17965, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30173, 17969, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30330, 30171, 30171, 100, 0, 1, 0, 1, 1, NULL),
|
|
(30337, 19357, 0, 10, 0, 1, 1, 1, 1, NULL),
|
|
(30337, 19367, 0, 10, 0, 1, 1, 1, 1, NULL),
|
|
(30337, 19430, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30337, 19431, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30337, 19432, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30337, 19433, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30338, 16796, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30338, 16810, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30338, 16814, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30338, 16822, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30338, 17069, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30339, 16835, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30339, 16843, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30339, 16847, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30339, 16855, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30339, 16867, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30339, 17065, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30340, 17073, 0, 20, 0, 1, 1, 1, 1, NULL),
|
|
(30340, 18203, 0, 20, 0, 1, 1, 1, 1, NULL),
|
|
(30340, 18820, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30340, 18821, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30340, 18822, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30340, 18823, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30340, 18824, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30340, 18829, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30340, 18861, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30340, 19136, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30340, 19142, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30340, 19143, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30340, 19144, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30341, 19343, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30341, 19344, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30341, 19365, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30341, 19398, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30341, 19399, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30341, 19400, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30341, 19401, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30341, 19402, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30342, 16899, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30342, 16907, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30342, 16913, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30342, 16920, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30342, 16928, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30342, 16940, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30342, 16948, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30342, 16956, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30342, 16964, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30342, 19353, 0, 3.4, 0, 1, 1, 1, 1, NULL),
|
|
(30342, 19355, 0, 3.4, 0, 1, 1, 1, 1, NULL),
|
|
(30342, 19394, 0, 6.8, 0, 1, 1, 1, 1, NULL),
|
|
(30342, 19395, 0, 6.8, 0, 1, 1, 1, 1, NULL),
|
|
(30342, 19396, 0, 6.8, 0, 1, 1, 1, 1, NULL),
|
|
(30342, 19397, 0, 6.8, 0, 1, 1, 1, 1, NULL),
|
|
(30343, 16798, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30343, 16809, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30343, 16815, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30343, 16820, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30344, 16833, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30344, 16841, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30344, 16845, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30344, 16853, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30344, 16865, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30345, 17072, 0, 25, 0, 1, 1, 1, 1, NULL),
|
|
(30345, 17103, 0, 25, 0, 1, 1, 1, 1, NULL),
|
|
(30345, 18820, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30345, 18821, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30345, 18822, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30345, 18823, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30345, 18824, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30345, 18829, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30345, 18842, 0, 25, 0, 1, 1, 1, 1, NULL),
|
|
(30345, 18861, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30345, 19136, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30345, 19142, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30345, 19143, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30345, 19144, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30346, 16898, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30346, 16906, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30346, 16912, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30346, 16919, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30346, 16927, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30346, 16941, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30346, 16949, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30346, 16957, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30346, 16965, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30348, 19341, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30348, 19342, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30348, 19350, 0, 10, 0, 1, 1, 1, 1, NULL),
|
|
(30348, 19351, 0, 10, 0, 1, 1, 1, 1, NULL),
|
|
(30348, 19373, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30348, 19374, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30349, 16836, 0, 20, 0, 1, 1, 1, 1, NULL),
|
|
(30349, 16844, 0, 20, 0, 1, 1, 1, 1, NULL),
|
|
(30349, 16856, 0, 20, 0, 1, 1, 1, 1, NULL),
|
|
(30349, 18820, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30349, 18821, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30349, 18822, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30349, 18823, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30349, 18829, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30349, 18861, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30349, 19136, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30349, 19142, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30349, 19143, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30349, 19144, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30350, 16797, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30350, 16807, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30350, 17110, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30352, 16834, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30352, 16842, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30352, 16846, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30352, 16854, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30352, 16866, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30352, 17066, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30353, 16795, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30353, 16808, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30353, 16813, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30353, 16821, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30353, 17071, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30354, 17105, 0, 20, 0, 1, 1, 1, 1, NULL),
|
|
(30354, 18820, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30354, 18821, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30354, 18822, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30354, 18823, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30354, 18824, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30354, 18829, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30354, 18832, 0, 20, 0, 1, 1, 1, 1, NULL),
|
|
(30354, 18861, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30354, 19136, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30354, 19142, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30354, 19143, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30354, 19144, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30355, 16823, 0, 30, 0, 1, 1, 1, 1, NULL),
|
|
(30355, 16868, 0, 30, 0, 1, 1, 1, 1, NULL),
|
|
(30355, 17077, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30355, 18861, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30355, 18870, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30355, 18872, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30355, 18875, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30355, 18878, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30355, 18879, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30355, 19145, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30355, 19146, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30355, 19147, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30356, 16816, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30356, 16848, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30356, 17074, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30357, 16805, 0, 30, 0, 1, 1, 1, 1, NULL),
|
|
(30357, 16863, 0, 30, 0, 1, 1, 1, 1, NULL),
|
|
(30357, 17077, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30357, 18861, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30357, 18870, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30357, 18872, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30357, 18875, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30357, 18878, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30357, 18879, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30357, 19145, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30357, 19146, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30357, 19147, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30365, 16849, 0, 25, 0, 1, 1, 1, 1, NULL),
|
|
(30365, 16862, 0, 25, 0, 1, 1, 1, 1, NULL),
|
|
(30365, 17077, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30365, 18861, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30365, 18870, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30365, 18872, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30365, 18875, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30365, 18878, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30365, 18879, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30365, 19145, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30365, 19146, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30365, 19147, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30366, 16812, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30366, 16826, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30366, 16839, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30366, 16860, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30367, 16803, 0, 25, 0, 1, 1, 1, 1, NULL),
|
|
(30367, 16811, 0, 25, 0, 1, 1, 1, 1, NULL),
|
|
(30367, 16824, 0, 25, 0, 1, 1, 1, 1, NULL),
|
|
(30367, 17077, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30367, 18861, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30367, 18870, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30367, 18872, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30367, 18875, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30367, 18878, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30367, 18879, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30367, 19145, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30367, 19146, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30367, 19147, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30368, 16801, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30368, 16831, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30368, 16852, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30369, 16904, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30369, 16911, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30369, 16918, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30369, 16926, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30369, 16934, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30369, 16935, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30369, 16943, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30369, 16951, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30369, 16959, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30371, 19334, 0, 10, 0, 1, 1, 1, 1, NULL),
|
|
(30371, 19335, 0, 10, 0, 1, 1, 1, 1, NULL),
|
|
(30371, 19336, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30371, 19337, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30371, 19369, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30371, 19370, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30372, 16818, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30372, 16903, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30372, 16910, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30372, 16925, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30372, 16933, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30372, 16936, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30372, 16944, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30372, 16952, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30372, 16960, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30374, 19339, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30374, 19340, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30374, 19346, 0, 10, 0, 1, 1, 1, 1, NULL),
|
|
(30374, 19348, 0, 10, 0, 1, 1, 1, 1, NULL),
|
|
(30374, 19371, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30374, 19372, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30379, 16832, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30379, 16902, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30379, 16917, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30379, 16924, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30379, 16932, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30379, 16937, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30379, 16945, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30379, 16953, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30379, 16961, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30380, 19349, 0, 10, 0, 1, 1, 1, 1, NULL),
|
|
(30380, 19352, 0, 10, 0, 1, 1, 1, 1, NULL),
|
|
(30380, 19385, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30380, 19387, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30380, 19388, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30380, 19389, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30382, 19347, 0, 10, 0, 1, 1, 1, 1, NULL),
|
|
(30382, 19361, 0, 10, 0, 1, 1, 1, 1, NULL),
|
|
(30382, 19386, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30382, 19390, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30382, 19391, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30382, 19392, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30382, 19393, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30395, 19345, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30395, 19368, 0, 10, 0, 1, 1, 1, 1, NULL),
|
|
(30395, 19403, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30395, 19405, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30395, 19406, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30395, 19407, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30398, 19852, 0, 0, 0, 1, 1, 1, 1, ''),
|
|
(30398, 19853, 0, 0, 0, 1, 1, 1, 1, ''),
|
|
(30398, 19856, 0, 0, 0, 1, 1, 1, 1, ''),
|
|
(30398, 19857, 0, 0, 0, 1, 1, 1, 1, ''),
|
|
(30398, 19864, 0, 0, 0, 1, 1, 1, 1, ''),
|
|
(30398, 20257, 0, 0, 0, 1, 1, 1, 1, ''),
|
|
(30398, 20264, 0, 0, 0, 1, 1, 1, 1, ''),
|
|
(30484, 16901, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30484, 16909, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30484, 16915, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30484, 16922, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30484, 16930, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30484, 16938, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30484, 16954, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30484, 16962, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30485, 18814, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30485, 18815, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30485, 18816, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30485, 18817, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30485, 19138, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30486, 16897, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30486, 16905, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30486, 16916, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30486, 16923, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30486, 16931, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30486, 16942, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30486, 16950, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30486, 16958, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30486, 16966, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30487, 19360, 0, 10, 0, 1, 1, 1, 1, NULL),
|
|
(30487, 19363, 0, 10, 0, 1, 1, 1, 1, NULL),
|
|
(30487, 19375, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30487, 19376, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30487, 19377, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30487, 19378, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30488, 16800, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30488, 16829, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30488, 16837, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30488, 16859, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30488, 17109, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30546, 22711, 0, 0, 0, 1, 1, 1, 1, ''),
|
|
(30546, 22712, 0, 0, 0, 1, 1, 1, 1, ''),
|
|
(30546, 22713, 0, 0, 0, 1, 1, 1, 1, ''),
|
|
(30546, 22714, 0, 0, 0, 1, 1, 1, 1, ''),
|
|
(30546, 22715, 0, 0, 0, 1, 1, 1, 1, ''),
|
|
(30546, 22716, 0, 0, 0, 1, 1, 1, 1, ''),
|
|
(30546, 22718, 0, 0, 0, 1, 1, 1, 1, ''),
|
|
(30546, 22720, 0, 0, 0, 1, 1, 1, 1, ''),
|
|
(30546, 22721, 0, 0, 0, 1, 1, 1, 1, ''),
|
|
(30546, 22722, 0, 0, 0, 1, 1, 1, 1, ''),
|
|
(30547, 16901, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30547, 16909, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30547, 16915, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30547, 16922, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30547, 16930, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30547, 16938, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30547, 16946, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30547, 16962, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30549, 17063, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30549, 17102, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30549, 17106, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30549, 17107, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30549, 19137, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30550, 17076, 0, 8, 0, 1, 1, 1, 1, NULL),
|
|
(30550, 17082, 0, 8, 0, 1, 1, 1, 1, NULL),
|
|
(30550, 17104, 0, 8, 0, 1, 1, 1, 1, NULL),
|
|
(30551, 19356, 0, 10, 0, 1, 1, 1, 1, NULL),
|
|
(30551, 19364, 0, 10, 0, 1, 1, 1, 1, NULL),
|
|
(30551, 19379, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30551, 19380, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30551, 19381, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(30551, 19382, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(34000, 49296, 0, 0, 0, 1, 1, 1, 1, 'Singed Vis\'kag the Bloodletter'),
|
|
(34000, 49297, 0, 0, 0, 1, 1, 1, 1, 'Empowered Deathbringer'),
|
|
(34000, 49298, 0, 0, 0, 1, 1, 1, 1, 'Glinting Azuresong Mageblade'),
|
|
(34000, 49299, 0, 0, 0, 1, 1, 1, 1, 'Keen Obsidian Edged Blade'),
|
|
(34000, 49302, 0, 0, 0, 1, 1, 1, 1, 'Reclaimed Shadowstrike'),
|
|
(34000, 49303, 0, 0, 0, 1, 1, 1, 1, 'Gleaming Quel\'Serrar'),
|
|
(34000, 49304, 0, 0, 0, 1, 1, 1, 1, 'Sharpened Fang of the Mystics'),
|
|
(34000, 49305, 0, 0, 0, 1, 1, 1, 1, 'Snub-Nose Blastershot Launcher'),
|
|
(34000, 49306, 0, 0, 0, 1, 1, 1, 1, 'Eskhandar\'s Choker'),
|
|
(34000, 49307, 0, 0, 0, 1, 1, 1, 1, 'Fluttering Sapphiron Drape'),
|
|
(34000, 49308, 0, 0, 0, 1, 1, 1, 1, 'Antique Cornerstone Grimoire'),
|
|
(34000, 49309, 0, 0, 0, 1, 1, 1, 1, 'Runed Ring of Binding'),
|
|
(34000, 49310, 0, 0, 0, 1, 1, 1, 1, 'Purified Shard of the Scale'),
|
|
(34000, 49315, 0, 0, 0, 1, 1, 1, 1, 'Nemesis Skullcover'),
|
|
(34000, 49316, 0, 0, 0, 1, 1, 1, 1, 'Circlet of Transcendence'),
|
|
(34000, 49317, 0, 0, 0, 1, 1, 1, 1, 'Coronet of Transcendence'),
|
|
(34000, 49318, 0, 0, 0, 1, 1, 1, 1, 'Netherwind Hood'),
|
|
(34000, 49319, 0, 0, 0, 1, 1, 1, 1, 'Dragonstalker\'s Helmet'),
|
|
(34000, 49320, 0, 0, 0, 1, 1, 1, 1, 'Faceguard of Wrath'),
|
|
(34000, 49321, 0, 0, 0, 1, 1, 1, 1, 'Greathelm of Wrath'),
|
|
(34000, 49322, 0, 0, 0, 1, 1, 1, 1, 'Bloodfang Mask'),
|
|
(34000, 49323, 0, 0, 0, 1, 1, 1, 1, 'Judgement Cover'),
|
|
(34000, 49324, 0, 0, 0, 1, 1, 1, 1, 'Judgement Helmet'),
|
|
(34000, 49325, 0, 0, 0, 1, 1, 1, 1, 'Judgement Helm'),
|
|
(34000, 49326, 0, 0, 0, 1, 1, 1, 1, 'Stormrage Hood'),
|
|
(34000, 49327, 0, 0, 0, 1, 1, 1, 1, 'Stormrage Antlers'),
|
|
(34000, 49328, 0, 0, 0, 1, 1, 1, 1, 'Stormrage Helm'),
|
|
(34000, 49329, 0, 0, 0, 1, 1, 1, 1, 'Gaze of Ten Storms'),
|
|
(34000, 49330, 0, 0, 0, 1, 1, 1, 1, 'Cowl of Ten Storms'),
|
|
(34000, 49331, 0, 0, 0, 1, 1, 1, 1, 'Coif of Ten Storms'),
|
|
(34000, 49332, 0, 0, 0, 1, 1, 1, 1, 'Frostforged Ringhelm'),
|
|
(34000, 49333, 0, 0, 0, 1, 1, 1, 1, 'Frostforged Helmet'),
|
|
(34000, 49437, 0, 0, 0, 1, 1, 1, 1, 'Rusted Gutgore Ripper'),
|
|
(34000, 49463, 0, 0, 0, 1, 1, 1, 1, 'Purified Shard of the Flame'),
|
|
(34001, 49464, 0, 0, 0, 1, 1, 1, 1, 'Shiny Shard of the Flame'),
|
|
(34001, 49465, 0, 0, 0, 1, 1, 1, 1, 'Tarnished Gutgore Ripper'),
|
|
(34001, 49466, 0, 0, 0, 1, 1, 1, 1, 'Frostforged Helm'),
|
|
(34001, 49467, 0, 0, 0, 1, 1, 1, 1, 'Frostforged Greathelm'),
|
|
(34001, 49468, 0, 0, 0, 1, 1, 1, 1, 'Helm of Ten Storms'),
|
|
(34001, 49469, 0, 0, 0, 1, 1, 1, 1, 'Crown of Ten Storms'),
|
|
(34001, 49470, 0, 0, 0, 1, 1, 1, 1, 'Helmet of Ten Storms'),
|
|
(34001, 49471, 0, 0, 0, 1, 1, 1, 1, 'Stormrage Coverlet'),
|
|
(34001, 49472, 0, 0, 0, 1, 1, 1, 1, 'Stormrage Crown'),
|
|
(34001, 49473, 0, 0, 0, 1, 1, 1, 1, 'Stormrage Cover'),
|
|
(34001, 49474, 0, 0, 0, 1, 1, 1, 1, 'Judgement Hood'),
|
|
(34001, 49475, 0, 0, 0, 1, 1, 1, 1, 'Judgement Heaume'),
|
|
(34001, 49476, 0, 0, 0, 1, 1, 1, 1, 'Judgement Crown'),
|
|
(34001, 49477, 0, 0, 0, 1, 1, 1, 1, 'Bloodfang Hood'),
|
|
(34001, 49478, 0, 0, 0, 1, 1, 1, 1, 'Helmet of Wrath'),
|
|
(34001, 49479, 0, 0, 0, 1, 1, 1, 1, 'Helm of Wrath'),
|
|
(34001, 49480, 0, 0, 0, 1, 1, 1, 1, 'Dragonstalker\'s Helm'),
|
|
(34001, 49481, 0, 0, 0, 1, 1, 1, 1, 'Netherwind Crown'),
|
|
(34001, 49482, 0, 0, 0, 1, 1, 1, 1, 'Aurora of Transcendence'),
|
|
(34001, 49483, 0, 0, 0, 1, 1, 1, 1, 'Halo of Transcendence'),
|
|
(34001, 49484, 0, 0, 0, 1, 1, 1, 1, 'Nemesis Skullcap'),
|
|
(34001, 49488, 0, 0, 0, 1, 1, 1, 1, 'Shiny Shard of the Scale'),
|
|
(34001, 49489, 0, 0, 0, 1, 1, 1, 1, 'Signified Ring of Binding'),
|
|
(34001, 49490, 0, 0, 0, 1, 1, 1, 1, 'Antediluvian Cornerstone Grimoire'),
|
|
(34001, 49491, 0, 0, 0, 1, 1, 1, 1, 'Flowing Sapphiron Drape'),
|
|
(34001, 49492, 0, 0, 0, 1, 1, 1, 1, 'Eskhandar\'s Links'),
|
|
(34001, 49493, 0, 0, 0, 1, 1, 1, 1, 'Rifled Blastershot Launcher'),
|
|
(34001, 49494, 0, 0, 0, 1, 1, 1, 1, 'Honed Fang of the Mystics'),
|
|
(34001, 49495, 0, 0, 0, 1, 1, 1, 1, 'Burnished Quel\'Serrar'),
|
|
(34001, 49496, 0, 0, 0, 1, 1, 1, 1, 'Reinforced Shadowstrike'),
|
|
(34001, 49498, 0, 0, 0, 1, 1, 1, 1, 'Sharpened Obsidian Edged Blade'),
|
|
(34001, 49499, 0, 0, 0, 1, 1, 1, 1, 'Polished Azuresong Mageblade'),
|
|
(34001, 49500, 0, 0, 0, 1, 1, 1, 1, 'Raging Deathbringer'),
|
|
(34001, 49501, 0, 0, 0, 1, 1, 1, 1, 'Tempered Vis\'kag the Bloodletter'),
|
|
(34002, 1203, 0, 0, 0, 1, 1, 1, 1, 'Aegis of Stormwind'),
|
|
(34002, 1973, 0, 0, 0, 1, 1, 1, 1, 'Orb of Deception'),
|
|
(34002, 2564, 0, 0, 0, 1, 1, 1, 1, 'Elven Spirit Claws'),
|
|
(34002, 4696, 0, 0, 0, 1, 1, 1, 1, 'Lapidis Tankard of Tidesippe'),
|
|
(34002, 5266, 0, 0, 0, 1, 1, 1, 1, 'Eye of Adaegus'),
|
|
(34002, 5267, 0, 0, 0, 1, 1, 1, 1, 'Scarlet Kris'),
|
|
(34002, 6622, 0, 0, 0, 1, 1, 1, 1, 'Sword of Zeal'),
|
|
(34002, 7734, 0, 0, 0, 1, 1, 1, 1, 'Six Demon Bag'),
|
|
(34002, 7976, 0, 0, 0, 1, 1, 1, 1, 'Plans: Mithril Shield Spike'),
|
|
(34002, 7991, 0, 0, 0, 1, 1, 1, 1, 'Plans: Mithril Scale Shoulders'),
|
|
(34002, 8028, 0, 0, 0, 1, 1, 1, 1, 'Plans: Runed Mithril Hammer'),
|
|
(34002, 9402, 0, 0, 0, 1, 1, 1, 1, 'Earthborn Kilt'),
|
|
(34002, 10605, 0, 0, 0, 1, 1, 1, 1, 'Schematic: Spellpower Goggles Xtreme'),
|
|
(34002, 10608, 0, 0, 0, 1, 1, 1, 1, 'Schematic: Sniper Scope'),
|
|
(34002, 11302, 0, 0, 0, 1, 1, 1, 1, 'Uther\'s Strength'),
|
|
(34002, 12698, 0, 0, 0, 1, 1, 1, 1, 'Plans: Dawnbringer Shoulders'),
|
|
(34002, 12711, 0, 0, 0, 1, 1, 1, 1, 'Plans: Whitesoul Helm'),
|
|
(34002, 12717, 0, 0, 0, 1, 1, 1, 1, 'Plans: Lionheart Helm'),
|
|
(34002, 12720, 0, 0, 0, 1, 1, 1, 1, 'Plans: Stronghold Gauntlets'),
|
|
(34002, 12728, 0, 0, 0, 1, 1, 1, 1, 'Plans: Invulnerable Mail'),
|
|
(34002, 13000, 0, 0, 0, 1, 1, 1, 1, 'Staff of Hale Magefire'),
|
|
(34002, 13001, 0, 0, 0, 1, 1, 1, 1, 'Maiden\'s Circle'),
|
|
(34002, 13002, 0, 0, 0, 1, 1, 1, 1, 'Lady Alizabeth\'s Pendant'),
|
|
(34002, 13003, 0, 0, 0, 1, 1, 1, 1, 'Lord Alexander\'s Battle Axe'),
|
|
(34002, 13004, 0, 0, 0, 1, 1, 1, 1, 'Torch of Austen'),
|
|
(34002, 13006, 0, 0, 0, 1, 1, 1, 1, 'Mass of McGowan'),
|
|
(34002, 13007, 0, 0, 0, 1, 1, 1, 1, 'Mageflame Cloak'),
|
|
(34002, 13008, 0, 0, 0, 1, 1, 1, 1, 'Dalewind Trousers'),
|
|
(34002, 13009, 0, 0, 0, 1, 1, 1, 1, 'Cow King\'s Hide'),
|
|
(34002, 13013, 0, 0, 0, 1, 1, 1, 1, 'Elder Wizard\'s Mantle'),
|
|
(34002, 13015, 0, 0, 0, 1, 1, 1, 1, 'Serathil'),
|
|
(34002, 13030, 0, 0, 0, 1, 1, 1, 1, 'Basilisk Bone'),
|
|
(34002, 13036, 0, 0, 0, 1, 1, 1, 1, 'Assassination Blade'),
|
|
(34002, 13040, 0, 0, 0, 1, 1, 1, 1, 'Heartseeking Crossbow'),
|
|
(34002, 13047, 0, 0, 0, 1, 1, 1, 1, 'Twig of the World Tree'),
|
|
(34002, 13053, 0, 0, 0, 1, 1, 1, 1, 'Doombringer'),
|
|
(34002, 13060, 0, 0, 0, 1, 1, 1, 1, 'The Needler'),
|
|
(34002, 13066, 0, 0, 0, 1, 1, 1, 1, 'Wyrmslayer Spaulders'),
|
|
(34002, 13067, 0, 0, 0, 1, 1, 1, 1, 'Hydralick Armor'),
|
|
(34002, 13070, 0, 0, 0, 1, 1, 1, 1, 'Sapphiron\'s Scale Boots'),
|
|
(34002, 13072, 0, 0, 0, 1, 1, 1, 1, 'Stonegrip Gauntlets'),
|
|
(34002, 13073, 0, 0, 0, 1, 1, 1, 1, 'Mugthol\'s Helm'),
|
|
(34002, 13075, 0, 0, 0, 1, 1, 1, 1, 'Direwing Legguards'),
|
|
(34002, 13077, 0, 0, 0, 1, 1, 1, 1, 'Girdle of Uther'),
|
|
(34002, 13083, 0, 0, 0, 1, 1, 1, 1, 'Garrett Family Crest'),
|
|
(34002, 13085, 0, 0, 0, 1, 1, 1, 1, 'Horizon Choker'),
|
|
(34002, 13091, 0, 0, 0, 1, 1, 1, 1, 'Medallion of Grand Marshal Morris'),
|
|
(34002, 13096, 0, 0, 0, 1, 1, 1, 1, 'Band of the Hierophant'),
|
|
(34002, 13107, 0, 0, 0, 1, 1, 1, 1, 'Magiskull Cuffs'),
|
|
(34002, 13111, 0, 0, 0, 1, 1, 1, 1, 'Sandals of the Insurgent'),
|
|
(34002, 13113, 0, 0, 0, 1, 1, 1, 1, 'Feathermoon Headdress'),
|
|
(34002, 13116, 0, 0, 0, 1, 1, 1, 1, 'Spaulders of the Unseen'),
|
|
(34002, 13118, 0, 0, 0, 1, 1, 1, 1, 'Serpentine Sash'),
|
|
(34002, 13120, 0, 0, 0, 1, 1, 1, 1, 'Deepfury Bracers'),
|
|
(34002, 13123, 0, 0, 0, 1, 1, 1, 1, 'Dreamwalker Armor'),
|
|
(34002, 13125, 0, 0, 0, 1, 1, 1, 1, 'Elven Chain Boots'),
|
|
(34002, 13126, 0, 0, 0, 1, 1, 1, 1, 'Battlecaller Gauntlets'),
|
|
(34002, 13130, 0, 0, 0, 1, 1, 1, 1, 'Windrunner Legguards'),
|
|
(34002, 13133, 0, 0, 0, 1, 1, 1, 1, 'Drakesfire Epaulets'),
|
|
(34002, 13135, 0, 0, 0, 1, 1, 1, 1, 'Lordly Armguards'),
|
|
(34002, 13144, 0, 0, 0, 1, 1, 1, 1, 'Serenity Belt'),
|
|
(34002, 13146, 0, 0, 0, 1, 1, 1, 1, 'Shell Launcher Shotgun'),
|
|
(34002, 14501, 0, 0, 0, 1, 1, 1, 1, 'Pattern: Mooncloth Vest'),
|
|
(34002, 14509, 0, 0, 0, 1, 1, 1, 1, 'Pattern: Mooncloth Circlet'),
|
|
(34002, 14511, 0, 0, 0, 1, 1, 1, 1, 'Pattern: Gloves of Spell Mastery'),
|
|
(34002, 17413, 0, 0, 0, 1, 1, 1, 1, 'Codex: Prayer of Fortitude'),
|
|
(34002, 17414, 0, 0, 0, 1, 1, 1, 1, 'Codex: Prayer of Fortitude II'),
|
|
(34002, 17682, 0, 0, 0, 1, 1, 1, 1, 'Book: Gift of the Wild'),
|
|
(34002, 17683, 0, 0, 0, 1, 1, 1, 1, 'Book: Gift of the Wild II'),
|
|
(34002, 18600, 0, 0, 0, 1, 1, 1, 1, 'Tome of Arcane Brilliance'),
|
|
(34002, 22388, 0, 0, 0, 1, 1, 1, 1, 'Plans: Titanic Leggings'),
|
|
(34002, 22389, 0, 0, 0, 1, 1, 1, 1, 'Plans: Sageblade'),
|
|
(34002, 22390, 0, 0, 0, 1, 1, 1, 1, 'Plans: Persuader'),
|
|
(34002, 22393, 0, 0, 0, 1, 1, 1, 1, 'Codex: Prayer of Shadow Protection'),
|
|
(34002, 22890, 0, 0, 0, 1, 1, 1, 1, 'Tome of Frost Ward V'),
|
|
(34002, 24017, 24017, 0.5, 0, 1, 1, 1, 1, '(ReferenceTable)'),
|
|
(34002, 24019, 24019, 0.5, 0, 1, 1, 1, 1, '(ReferenceTable)'),
|
|
(34002, 24026, 24026, 0.5, 0, 1, 1, 1, 1, '(ReferenceTable)'),
|
|
(34002, 24028, 24028, 0.5, 0, 1, 1, 1, 1, '(ReferenceTable)'),
|
|
(34002, 24030, 24030, 0.5, 0, 1, 1, 1, 1, '(ReferenceTable)'),
|
|
(34002, 24032, 24032, 0.5, 0, 1, 1, 1, 1, '(ReferenceTable)'),
|
|
(34002, 24034, 24034, 0.5, 0, 1, 1, 1, 1, '(ReferenceTable)'),
|
|
(34003, 9297, 0, 0, 0, 1, 1, 1, 1, 'Recipe: Elixir of Dream Vision'),
|
|
(34003, 10246, 0, 0, 0, 1, 1, 1, 1, 'Master\'s Vest'),
|
|
(34003, 10247, 0, 0, 0, 1, 1, 1, 1, 'Master\'s Boots'),
|
|
(34003, 10248, 0, 0, 0, 1, 1, 1, 1, 'Master\'s Bracers'),
|
|
(34003, 10249, 0, 0, 0, 1, 1, 1, 1, 'Master\'s Cloak'),
|
|
(34003, 10250, 0, 0, 0, 1, 1, 1, 1, 'Master\'s Hat'),
|
|
(34003, 10251, 0, 0, 0, 1, 1, 1, 1, 'Master\'s Gloves'),
|
|
(34003, 10252, 0, 0, 0, 1, 1, 1, 1, 'Master\'s Leggings'),
|
|
(34003, 10253, 0, 0, 0, 1, 1, 1, 1, 'Master\'s Mantle'),
|
|
(34003, 10254, 0, 0, 0, 1, 1, 1, 1, 'Master\'s Robe'),
|
|
(34003, 10255, 0, 0, 0, 1, 1, 1, 1, 'Master\'s Belt'),
|
|
(34003, 10256, 0, 0, 0, 1, 1, 1, 1, 'Adventurer\'s Bracers'),
|
|
(34003, 10257, 0, 0, 0, 1, 1, 1, 1, 'Adventurer\'s Boots'),
|
|
(34003, 10258, 0, 0, 0, 1, 1, 1, 1, 'Adventurer\'s Cape'),
|
|
(34003, 10259, 0, 0, 0, 1, 1, 1, 1, 'Adventurer\'s Belt'),
|
|
(34003, 10260, 0, 0, 0, 1, 1, 1, 1, 'Adventurer\'s Gloves'),
|
|
(34003, 10261, 0, 0, 0, 1, 1, 1, 1, 'Adventurer\'s Bandana'),
|
|
(34003, 10262, 0, 0, 0, 1, 1, 1, 1, 'Adventurer\'s Legguards'),
|
|
(34003, 10263, 0, 0, 0, 1, 1, 1, 1, 'Adventurer\'s Shoulders'),
|
|
(34003, 10264, 0, 0, 0, 1, 1, 1, 1, 'Adventurer\'s Tunic'),
|
|
(34003, 10265, 0, 0, 0, 1, 1, 1, 1, 'Masterwork Bracers'),
|
|
(34003, 10266, 0, 0, 0, 1, 1, 1, 1, 'Masterwork Breastplate'),
|
|
(34003, 10267, 0, 0, 0, 1, 1, 1, 1, 'Masterwork Cape'),
|
|
(34003, 10268, 0, 0, 0, 1, 1, 1, 1, 'Masterwork Gauntlets'),
|
|
(34003, 10269, 0, 0, 0, 1, 1, 1, 1, 'Masterwork Girdle'),
|
|
(34003, 10270, 0, 0, 0, 1, 1, 1, 1, 'Masterwork Boots'),
|
|
(34003, 10272, 0, 0, 0, 1, 1, 1, 1, 'Masterwork Circlet'),
|
|
(34003, 10273, 0, 0, 0, 1, 1, 1, 1, 'Masterwork Legplates'),
|
|
(34003, 10274, 0, 0, 0, 1, 1, 1, 1, 'Masterwork Pauldrons'),
|
|
(34003, 10367, 0, 0, 0, 1, 1, 1, 1, 'Hyperion Shield'),
|
|
(34003, 10384, 0, 0, 0, 1, 1, 1, 1, 'Hyperion Armor'),
|
|
(34003, 10385, 0, 0, 0, 1, 1, 1, 1, 'Hyperion Greaves'),
|
|
(34003, 10386, 0, 0, 0, 1, 1, 1, 1, 'Hyperion Gauntlets'),
|
|
(34003, 10387, 0, 0, 0, 1, 1, 1, 1, 'Hyperion Girdle'),
|
|
(34003, 10388, 0, 0, 0, 1, 1, 1, 1, 'Hyperion Helm'),
|
|
(34003, 10389, 0, 0, 0, 1, 1, 1, 1, 'Hyperion Legplates'),
|
|
(34003, 10390, 0, 0, 0, 1, 1, 1, 1, 'Hyperion Pauldrons'),
|
|
(34003, 10391, 0, 0, 0, 1, 1, 1, 1, 'Hyperion Vambraces'),
|
|
(34003, 11224, 0, 0, 0, 1, 1, 1, 1, 'Formula: Enchant Shield - Frost Resistance'),
|
|
(34003, 11226, 0, 0, 0, 1, 1, 1, 1, 'Formula: Enchant Gloves - Riding Skill'),
|
|
(34003, 12017, 0, 0, 0, 1, 1, 1, 1, 'Prismatic Band'),
|
|
(34003, 12048, 0, 0, 0, 1, 1, 1, 1, 'Prismatic Pendant'),
|
|
(34003, 12682, 0, 0, 0, 1, 1, 1, 1, 'Plans: Thorium Armor'),
|
|
(34003, 12683, 0, 0, 0, 1, 1, 1, 1, 'Plans: Thorium Belt'),
|
|
(34003, 12684, 0, 0, 0, 1, 1, 1, 1, 'Plans: Thorium Bracers'),
|
|
(34003, 12685, 0, 0, 0, 1, 1, 1, 1, 'Plans: Radiant Belt'),
|
|
(34003, 12689, 0, 0, 0, 1, 1, 1, 1, 'Plans: Radiant Breastplate'),
|
|
(34003, 12702, 0, 0, 0, 1, 1, 1, 1, 'Plans: Radiant Circlet'),
|
|
(34003, 13486, 0, 0, 0, 1, 1, 1, 1, 'Recipe: Transmute Undeath to Water'),
|
|
(34003, 13487, 0, 0, 0, 1, 1, 1, 1, 'Recipe: Transmute Water to Undeath'),
|
|
(34003, 13488, 0, 0, 0, 1, 1, 1, 1, 'Recipe: Transmute Life to Earth'),
|
|
(34003, 13489, 0, 0, 0, 1, 1, 1, 1, 'Recipe: Transmute Earth to Life'),
|
|
(34003, 14328, 0, 0, 0, 1, 1, 1, 1, 'Eternal Chestguard'),
|
|
(34003, 14329, 0, 0, 0, 1, 1, 1, 1, 'Eternal Boots'),
|
|
(34003, 14330, 0, 0, 0, 1, 1, 1, 1, 'Eternal Bindings'),
|
|
(34003, 14331, 0, 0, 0, 1, 1, 1, 1, 'Eternal Cloak'),
|
|
(34003, 14332, 0, 0, 0, 1, 1, 1, 1, 'Eternal Crown'),
|
|
(34003, 14333, 0, 0, 0, 1, 1, 1, 1, 'Eternal Gloves'),
|
|
(34003, 14334, 0, 0, 0, 1, 1, 1, 1, 'Eternal Sarong'),
|
|
(34003, 14335, 0, 0, 0, 1, 1, 1, 1, 'Eternal Spaulders'),
|
|
(34003, 14336, 0, 0, 0, 1, 1, 1, 1, 'Eternal Wraps'),
|
|
(34003, 14337, 0, 0, 0, 1, 1, 1, 1, 'Eternal Cord'),
|
|
(34003, 14975, 0, 0, 0, 1, 1, 1, 1, 'Exalted Harness'),
|
|
(34003, 14976, 0, 0, 0, 1, 1, 1, 1, 'Exalted Gauntlets'),
|
|
(34003, 14977, 0, 0, 0, 1, 1, 1, 1, 'Exalted Girdle'),
|
|
(34003, 14978, 0, 0, 0, 1, 1, 1, 1, 'Exalted Sabatons'),
|
|
(34003, 14979, 0, 0, 0, 1, 1, 1, 1, 'Exalted Helmet'),
|
|
(34003, 14980, 0, 0, 0, 1, 1, 1, 1, 'Exalted Legplates'),
|
|
(34003, 14981, 0, 0, 0, 1, 1, 1, 1, 'Exalted Epaulets'),
|
|
(34003, 14982, 0, 0, 0, 1, 1, 1, 1, 'Exalted Shield'),
|
|
(34003, 14983, 0, 0, 0, 1, 1, 1, 1, 'Exalted Armsplints'),
|
|
(34003, 15221, 0, 0, 0, 1, 1, 1, 1, 'Holy War Sword'),
|
|
(34003, 15229, 0, 0, 0, 1, 1, 1, 1, 'Blesswind Hammer'),
|
|
(34003, 15240, 0, 0, 0, 1, 1, 1, 1, 'Demon\'s Claw'),
|
|
(34003, 15247, 0, 0, 0, 1, 1, 1, 1, 'Bloodstrike Dagger'),
|
|
(34003, 15258, 0, 0, 0, 1, 1, 1, 1, 'Divine Warblade'),
|
|
(34003, 15267, 0, 0, 0, 1, 1, 1, 1, 'Brutehammer'),
|
|
(34003, 15273, 0, 0, 0, 1, 1, 1, 1, 'Death Striker'),
|
|
(34003, 15278, 0, 0, 0, 1, 1, 1, 1, 'Solstice Staff'),
|
|
(34003, 15283, 0, 0, 0, 1, 1, 1, 1, 'Lunar Wand'),
|
|
(34003, 15289, 0, 0, 0, 1, 1, 1, 1, 'Archstrike Bow'),
|
|
(34003, 15325, 0, 0, 0, 1, 1, 1, 1, 'Sharpshooter Harquebus'),
|
|
(34003, 15434, 0, 0, 0, 1, 1, 1, 1, 'Supreme Sash'),
|
|
(34003, 15435, 0, 0, 0, 1, 1, 1, 1, 'Supreme Shoes'),
|
|
(34003, 15436, 0, 0, 0, 1, 1, 1, 1, 'Supreme Bracers'),
|
|
(34003, 15437, 0, 0, 0, 1, 1, 1, 1, 'Supreme Cape'),
|
|
(34003, 15438, 0, 0, 0, 1, 1, 1, 1, 'Supreme Gloves'),
|
|
(34003, 15439, 0, 0, 0, 1, 1, 1, 1, 'Supreme Crown'),
|
|
(34003, 15440, 0, 0, 0, 1, 1, 1, 1, 'Supreme Leggings'),
|
|
(34003, 15441, 0, 0, 0, 1, 1, 1, 1, 'Supreme Shoulders'),
|
|
(34003, 15442, 0, 0, 0, 1, 1, 1, 1, 'Supreme Breastplate'),
|
|
(34003, 15678, 0, 0, 0, 1, 1, 1, 1, 'Triumphant Sabatons'),
|
|
(34003, 15679, 0, 0, 0, 1, 1, 1, 1, 'Triumphant Bracers'),
|
|
(34003, 15680, 0, 0, 0, 1, 1, 1, 1, 'Triumphant Chestpiece'),
|
|
(34003, 15681, 0, 0, 0, 1, 1, 1, 1, 'Triumphant Cloak'),
|
|
(34003, 15682, 0, 0, 0, 1, 1, 1, 1, 'Triumphant Gauntlets'),
|
|
(34003, 15683, 0, 0, 0, 1, 1, 1, 1, 'Triumphant Girdle'),
|
|
(34003, 15684, 0, 0, 0, 1, 1, 1, 1, 'Triumphant Skullcap'),
|
|
(34003, 15685, 0, 0, 0, 1, 1, 1, 1, 'Triumphant Legplates'),
|
|
(34003, 15686, 0, 0, 0, 1, 1, 1, 1, 'Triumphant Shoulder Pads'),
|
|
(34003, 15687, 0, 0, 0, 1, 1, 1, 1, 'Triumphant Shield'),
|
|
(34003, 15942, 0, 0, 0, 1, 1, 1, 1, 'Master\'s Rod'),
|
|
(34003, 16044, 0, 0, 0, 1, 1, 1, 1, 'Schematic: Lifelike Mechanical Toad'),
|
|
(34003, 16055, 0, 0, 0, 1, 1, 1, 1, 'Schematic: Arcane Bomb'),
|
|
(34003, 16253, 0, 0, 0, 1, 1, 1, 1, 'Formula: Enchant Chest - Greater Stats'),
|
|
(34003, 17962, 0, 0, 0, 1, 2, 1, 1, 'Blue Sack of Gems'),
|
|
(34003, 17963, 0, 0, 0, 1, 2, 1, 1, 'Green Sack of Gems'),
|
|
(34003, 17964, 0, 0, 0, 1, 2, 1, 1, 'Gray Sack of Gems'),
|
|
(34003, 17965, 0, 0, 0, 1, 2, 1, 1, 'Yellow Sack of Gems'),
|
|
(34003, 17969, 0, 0, 0, 1, 2, 1, 1, 'Red Sack of Gems'),
|
|
(34003, 24016, 24016, 1, 0, 1, 1, 1, 1, '(ReferenceTable)'),
|
|
(34003, 24018, 24018, 1, 0, 1, 1, 1, 1, '(ReferenceTable)'),
|
|
(34003, 24020, 24020, 1, 0, 1, 1, 1, 1, '(ReferenceTable)'),
|
|
(34003, 24029, 24029, 1, 0, 1, 1, 1, 1, '(ReferenceTable)'),
|
|
(34003, 24033, 24033, 1, 0, 1, 1, 1, 1, '(ReferenceTable)'),
|
|
(34004, 17070, 0, 0, 0, 1, 1, 1, 1, 'Fang of the Mystics'),
|
|
(34004, 18202, 0, 0, 0, 1, 1, 1, 1, 'Eskhandar\'s Left Claw'),
|
|
(34004, 18208, 0, 0, 0, 1, 1, 1, 1, 'Drape of Benediction'),
|
|
(34004, 18541, 0, 0, 0, 1, 1, 1, 1, 'Puissant Cape'),
|
|
(34004, 18542, 0, 0, 0, 1, 1, 1, 1, 'Typhoon'),
|
|
(34004, 18545, 0, 0, 0, 1, 1, 1, 1, 'Leggings of Arcane Supremacy'),
|
|
(34004, 18547, 0, 0, 0, 1, 1, 1, 1, 'Unmelting Ice Girdle'),
|
|
(34004, 19130, 0, 0, 0, 1, 1, 1, 1, 'Cold Snap'),
|
|
(34004, 19131, 0, 0, 0, 1, 1, 1, 1, 'Snowblind Shoes'),
|
|
(34004, 19132, 0, 0, 0, 1, 1, 1, 1, 'Crystal Adorned Crown'),
|
|
(34005, 20579, 0, 0, 0, 1, 1, 1, 1, 'Green Dragonskin Cloak'),
|
|
(34005, 20580, 0, 0, 0, 1, 1, 1, 1, 'Hammer of Bestial Fury'),
|
|
(34005, 20581, 0, 0, 0, 1, 1, 1, 1, 'Staff of Rampant Growth'),
|
|
(34005, 20582, 0, 0, 0, 1, 1, 1, 1, 'Trance Stone'),
|
|
(34005, 20615, 0, 0, 0, 1, 1, 1, 1, 'Dragonspur Wraps'),
|
|
(34005, 20616, 0, 0, 0, 1, 1, 1, 1, 'Dragonbone Wristguards'),
|
|
(34005, 20617, 0, 0, 0, 1, 1, 1, 1, 'Ancient Corroded Leggings'),
|
|
(34005, 20618, 0, 0, 0, 1, 1, 1, 1, 'Gloves of Delusional Power'),
|
|
(34005, 20619, 0, 0, 0, 1, 1, 1, 1, 'Acid Inscribed Greaves'),
|
|
(34005, 20625, 0, 0, 0, 1, 1, 1, 1, 'Belt of the Dark Bog'),
|
|
(34005, 20626, 0, 0, 0, 1, 1, 1, 1, 'Black Bark Wristbands'),
|
|
(34005, 20627, 0, 0, 0, 1, 1, 1, 1, 'Dark Heart Pants'),
|
|
(34005, 20628, 0, 0, 0, 1, 1, 1, 1, 'Deviate Growth Cap'),
|
|
(34005, 20629, 0, 0, 0, 1, 1, 1, 1, 'Malignant Footguards'),
|
|
(34005, 20630, 0, 0, 0, 1, 1, 1, 1, 'Gauntlets of the Shining Light'),
|
|
(34006, 20579, 0, 0, 0, 1, 1, 1, 1, 'Green Dragonskin Cloak'),
|
|
(34006, 20580, 0, 0, 0, 1, 1, 1, 1, 'Hammer of Bestial Fury'),
|
|
(34006, 20581, 0, 0, 0, 1, 1, 1, 1, 'Staff of Rampant Growth'),
|
|
(34006, 20582, 0, 0, 0, 1, 1, 1, 1, 'Trance Stone'),
|
|
(34006, 20599, 0, 0, 0, 1, 1, 1, 1, 'Polished Ironwood Crossbow'),
|
|
(34006, 20615, 0, 0, 0, 1, 1, 1, 1, 'Dragonspur Wraps'),
|
|
(34006, 20616, 0, 0, 0, 1, 1, 1, 1, 'Dragonbone Wristguards'),
|
|
(34006, 20617, 0, 0, 0, 1, 1, 1, 1, 'Ancient Corroded Leggings'),
|
|
(34006, 20618, 0, 0, 0, 1, 1, 1, 1, 'Gloves of Delusional Power'),
|
|
(34006, 20619, 0, 0, 0, 1, 1, 1, 1, 'Acid Inscribed Greaves'),
|
|
(34006, 20621, 0, 0, 0, 1, 1, 1, 1, 'Boots of the Endless Moor'),
|
|
(34006, 20622, 0, 0, 0, 1, 1, 1, 1, 'Dragonheart Necklace'),
|
|
(34006, 20623, 0, 0, 0, 1, 1, 1, 1, 'Circlet of Restless Dreams'),
|
|
(34006, 20624, 0, 0, 0, 1, 1, 1, 1, 'Ring of the Unliving'),
|
|
(34007, 20577, 0, 0, 0, 1, 1, 1, 1, 'Nightmare Blade'),
|
|
(34007, 20579, 0, 0, 0, 1, 1, 1, 1, 'Green Dragonskin Cloak'),
|
|
(34007, 20580, 0, 0, 0, 1, 1, 1, 1, 'Hammer of Bestial Fury'),
|
|
(34007, 20581, 0, 0, 0, 1, 1, 1, 1, 'Staff of Rampant Growth'),
|
|
(34007, 20582, 0, 0, 0, 1, 1, 1, 1, 'Trance Stone'),
|
|
(34007, 20615, 0, 0, 0, 1, 1, 1, 1, 'Dragonspur Wraps'),
|
|
(34007, 20616, 0, 0, 0, 1, 1, 1, 1, 'Dragonbone Wristguards'),
|
|
(34007, 20617, 0, 0, 0, 1, 1, 1, 1, 'Ancient Corroded Leggings'),
|
|
(34007, 20618, 0, 0, 0, 1, 1, 1, 1, 'Gloves of Delusional Power'),
|
|
(34007, 20619, 0, 0, 0, 1, 1, 1, 1, 'Acid Inscribed Greaves'),
|
|
(34007, 20631, 0, 0, 0, 1, 1, 1, 1, 'Mendicant\'s Slippers'),
|
|
(34007, 20632, 0, 0, 0, 1, 1, 1, 1, 'Mindtear Band'),
|
|
(34007, 20633, 0, 0, 0, 1, 1, 1, 1, 'Unnatural Leather Spaulders'),
|
|
(34007, 20634, 0, 0, 0, 1, 1, 1, 1, 'Boots of Fright'),
|
|
(34008, 20578, 0, 0, 0, 1, 1, 1, 1, 'Emerald Dragonfang'),
|
|
(34008, 20579, 0, 0, 0, 1, 1, 1, 1, 'Green Dragonskin Cloak'),
|
|
(34008, 20580, 0, 0, 0, 1, 1, 1, 1, 'Hammer of Bestial Fury'),
|
|
(34008, 20581, 0, 0, 0, 1, 1, 1, 1, 'Staff of Rampant Growth'),
|
|
(34008, 20582, 0, 0, 0, 1, 1, 1, 1, 'Trance Stone'),
|
|
(34008, 20615, 0, 0, 0, 1, 1, 1, 1, 'Dragonspur Wraps'),
|
|
(34008, 20616, 0, 0, 0, 1, 1, 1, 1, 'Dragonbone Wristguards'),
|
|
(34008, 20617, 0, 0, 0, 1, 1, 1, 1, 'Ancient Corroded Leggings'),
|
|
(34008, 20618, 0, 0, 0, 1, 1, 1, 1, 'Gloves of Delusional Power'),
|
|
(34008, 20619, 0, 0, 0, 1, 1, 1, 1, 'Acid Inscribed Greaves'),
|
|
(34008, 20635, 0, 0, 0, 1, 1, 1, 1, 'Jade Inlaid Vestments'),
|
|
(34008, 20636, 0, 0, 0, 1, 1, 1, 1, 'Hibernation Crystal'),
|
|
(34008, 20637, 0, 0, 0, 1, 1, 1, 1, 'Acid Inscribed Pauldrons'),
|
|
(34008, 20638, 0, 0, 0, 1, 1, 1, 1, 'Leggings of the Demented Mind'),
|
|
(34008, 20639, 0, 0, 0, 1, 1, 1, 1, 'Strangely Glyphed Legplates'),
|
|
(34009, 16900, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(34009, 16908, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(34009, 16914, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(34009, 16921, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(34009, 16929, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(34009, 16939, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(34009, 16947, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(34009, 16955, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(34009, 16963, 0, 0, 0, 1, 1, 1, 1, NULL),
|
|
(34016, 28453, 0, 0, 0, 1, 1, 1, 1, 'Bracers of the White Stag'),
|
|
(34016, 28454, 0, 0, 0, 1, 1, 1, 1, 'Stalker\'s War Bands'),
|
|
(34016, 28477, 0, 0, 0, 1, 1, 1, 1, 'Harbinger Bands'),
|
|
(34016, 28502, 0, 0, 0, 1, 1, 1, 1, 'Vambraces of Courage'),
|
|
(34016, 28503, 0, 0, 0, 1, 1, 1, 1, 'Whirlwind Bracers'),
|
|
(34016, 28504, 0, 0, 0, 1, 1, 1, 1, 'Steelhawk Crossbow'),
|
|
(34016, 28505, 0, 0, 0, 1, 1, 1, 1, 'Gauntlets of Renewed Hope'),
|
|
(34016, 28506, 0, 0, 0, 1, 1, 1, 1, 'Gloves of Dexterous Manipulation'),
|
|
(34016, 28507, 0, 0, 0, 1, 1, 1, 1, 'Handwraps of Flowing Thought'),
|
|
(34016, 28508, 0, 0, 0, 1, 1, 1, 1, 'Gloves of Saintly Blessings'),
|
|
(34016, 28509, 0, 0, 0, 1, 1, 1, 1, 'Worgen Claw Necklace'),
|
|
(34016, 28510, 0, 0, 0, 1, 1, 1, 1, 'Spectral Band of Innervation'),
|
|
(34017, 28524, 0, 0, 0, 1, 1, 1, 1, 'Emerald Ripper'),
|
|
(34017, 28525, 0, 0, 0, 1, 1, 1, 1, 'Signet of Unshakable Faith'),
|
|
(34017, 28528, 0, 0, 0, 1, 1, 1, 1, 'Moroes\' Lucky Pocket Watch'),
|
|
(34017, 28529, 0, 0, 0, 1, 1, 1, 1, 'Royal Cloak of Arathi Kings'),
|
|
(34017, 28530, 0, 0, 0, 1, 1, 1, 1, 'Brooch of Unquenchable Fury'),
|
|
(34017, 28545, 0, 0, 0, 1, 1, 1, 1, 'Edgewalker Longboots'),
|
|
(34017, 28565, 0, 0, 0, 1, 1, 1, 1, 'Nethershard Girdle'),
|
|
(34017, 28566, 0, 0, 0, 1, 1, 1, 1, 'Crimson Girdle of the Indomitable'),
|
|
(34017, 28567, 0, 0, 0, 1, 1, 1, 1, 'Belt of Gale Force'),
|
|
(34017, 28568, 0, 0, 0, 1, 1, 1, 1, 'Idol of the Avian Heart'),
|
|
(34017, 28569, 0, 0, 0, 1, 1, 1, 1, 'Boots of Valiance'),
|
|
(34017, 28570, 0, 0, 0, 1, 1, 1, 1, 'Shadow-Cloak of Dalaran'),
|
|
(34018, 28511, 0, 0, 0, 1, 1, 1, 1, 'Bands of Indwelling'),
|
|
(34018, 28512, 0, 0, 0, 1, 1, 1, 1, 'Bracers of Justice'),
|
|
(34018, 28514, 0, 0, 0, 1, 1, 1, 1, 'Bracers of Maliciousness'),
|
|
(34018, 28515, 0, 0, 0, 1, 1, 1, 1, 'Bands of Nefarious Deeds'),
|
|
(34018, 28516, 0, 0, 0, 1, 1, 1, 1, 'Barbed Choker of Discipline'),
|
|
(34018, 28517, 0, 0, 0, 1, 1, 1, 1, 'Boots of Foretelling'),
|
|
(34018, 28518, 0, 0, 0, 1, 1, 1, 1, 'Iron Gauntlets of the Maiden'),
|
|
(34018, 28519, 0, 0, 0, 1, 1, 1, 1, 'Gloves of Quickening'),
|
|
(34018, 28520, 0, 0, 0, 1, 1, 1, 1, 'Gloves of Centering'),
|
|
(34018, 28521, 0, 0, 0, 1, 1, 1, 1, 'Mitts of the Treemender'),
|
|
(34018, 28522, 0, 0, 0, 1, 1, 1, 1, 'Shard of the Virtuous'),
|
|
(34018, 28523, 0, 0, 0, 1, 1, 1, 1, 'Totem of Healing Rains'),
|
|
(34019, 28652, 0, 0, 0, 1, 1, 1, 1, 'Cincture of Will'),
|
|
(34019, 28653, 0, 0, 0, 1, 1, 1, 1, 'Shadowvine Cloak of Infusion'),
|
|
(34019, 28654, 0, 0, 0, 1, 1, 1, 1, 'Malefic Girdle'),
|
|
(34019, 28655, 0, 0, 0, 1, 1, 1, 1, 'Cord of Nature\'s Sustenance'),
|
|
(34019, 28656, 0, 0, 0, 1, 1, 1, 1, 'Girdle of the Prowler'),
|
|
(34019, 28657, 0, 0, 0, 1, 1, 1, 1, 'Fool\'s Bane'),
|
|
(34019, 28658, 0, 0, 0, 1, 1, 1, 1, 'Terestian\'s Stranglestaff'),
|
|
(34019, 28659, 0, 0, 0, 1, 1, 1, 1, 'Xavian Stiletto'),
|
|
(34019, 28660, 0, 0, 0, 1, 1, 1, 1, 'Gilded Thorium Cloak'),
|
|
(34019, 28661, 0, 0, 0, 1, 1, 1, 1, 'Mender\'s Heart-Ring'),
|
|
(34019, 28662, 0, 0, 0, 1, 1, 1, 1, 'Breastplate of the Lightbinder'),
|
|
(34019, 28785, 0, 0, 0, 1, 1, 1, 1, 'The Lightning Capacitor'),
|
|
(34020, 28663, 0, 0, 0, 1, 1, 1, 1, 'Boots of the Incorrupt'),
|
|
(34020, 28666, 0, 0, 0, 1, 1, 1, 1, 'Pauldrons of the Justice-Seeker'),
|
|
(34020, 28669, 0, 0, 0, 1, 1, 1, 1, 'Rapscallion Boots'),
|
|
(34020, 28670, 0, 0, 0, 1, 1, 1, 1, 'Boots of the Infernal Coven'),
|
|
(34020, 28671, 0, 0, 0, 1, 1, 1, 1, 'Steelspine Faceguard'),
|
|
(34020, 28672, 0, 0, 0, 1, 1, 1, 1, 'Drape of the Dark Reavers'),
|
|
(34020, 28673, 0, 0, 0, 1, 1, 1, 1, 'Tirisfal Wand of Ascendancy'),
|
|
(34020, 28674, 0, 0, 0, 1, 1, 1, 1, 'Saberclaw Talisman'),
|
|
(34020, 28675, 0, 0, 0, 1, 1, 1, 1, 'Shermanar Great-Ring'),
|
|
(34020, 28726, 0, 0, 0, 1, 1, 1, 1, 'Mantle of the Mind Flayer'),
|
|
(34020, 28727, 0, 0, 0, 1, 1, 1, 1, 'Pendant of the Violet Eye'),
|
|
(34020, 28728, 0, 0, 0, 1, 1, 1, 1, 'Aran\'s Soothing Sapphire'),
|
|
(34021, 28729, 0, 0, 0, 1, 1, 1, 1, 'Spiteblade'),
|
|
(34021, 28730, 0, 0, 0, 1, 1, 1, 1, 'Mithril Band of the Unscarred'),
|
|
(34021, 28731, 0, 0, 0, 1, 1, 1, 1, 'Shining Chain of the Afterworld'),
|
|
(34021, 28732, 0, 0, 0, 1, 1, 1, 1, 'Cowl of Defiance'),
|
|
(34021, 28733, 0, 0, 0, 1, 1, 1, 1, 'Girdle of Truth'),
|
|
(34021, 28734, 0, 0, 0, 1, 1, 1, 1, 'Jewel of Infinite Possibilities'),
|
|
(34021, 28735, 0, 0, 0, 1, 1, 1, 1, 'Earthblood Chestguard'),
|
|
(34021, 28740, 0, 0, 0, 1, 1, 1, 1, 'Rip-Flayer Leggings'),
|
|
(34021, 28741, 0, 0, 0, 1, 1, 1, 1, 'Skulker\'s Greaves'),
|
|
(34021, 28742, 0, 0, 0, 1, 1, 1, 1, 'Pantaloons of Repentance'),
|
|
(34021, 28743, 0, 0, 0, 1, 1, 1, 1, 'Mantle of Abrahmis'),
|
|
(34021, 28744, 0, 0, 0, 1, 1, 1, 1, 'Uni-Mind Headdress'),
|
|
(34022, 28597, 0, 0, 0, 1, 1, 1, 1, 'Panzar\'Thar Breastplate'),
|
|
(34022, 28599, 0, 0, 0, 1, 1, 1, 1, 'Scaled Breastplate of Carnage'),
|
|
(34022, 28600, 0, 0, 0, 1, 1, 1, 1, 'Stonebough Jerkin'),
|
|
(34022, 28601, 0, 0, 0, 1, 1, 1, 1, 'Chestguard of the Conniver'),
|
|
(34022, 28602, 0, 0, 0, 1, 1, 1, 1, 'Robe of the Elder Scribes'),
|
|
(34022, 28603, 0, 0, 0, 1, 1, 1, 1, 'Talisman of Nightbane'),
|
|
(34022, 28604, 0, 0, 0, 1, 1, 1, 1, 'Nightstaff of the Everliving'),
|
|
(34022, 28606, 0, 0, 0, 1, 1, 1, 1, 'Shield of Impenetrable Darkness'),
|
|
(34022, 28608, 0, 0, 0, 1, 1, 1, 1, 'Ironstriders of Urgency'),
|
|
(34022, 28609, 0, 0, 0, 1, 1, 1, 1, 'Emberspur Talisman'),
|
|
(34022, 28610, 0, 0, 0, 1, 1, 1, 1, 'Ferocious Swift-Kickers'),
|
|
(34022, 28611, 0, 0, 0, 1, 1, 1, 1, 'Dragonheart Flameshield'),
|
|
(34023, 28585, 0, 0, 0, 1, 1, 1, 1, 'Ruby Slippers'),
|
|
(34023, 28586, 0, 0, 0, 1, 1, 1, 1, 'Wicked Witch\'s Hat'),
|
|
(34023, 28587, 0, 0, 0, 1, 1, 1, 1, 'Legacy'),
|
|
(34023, 28588, 0, 0, 0, 1, 1, 1, 1, 'Blue Diamond Witchwand'),
|
|
(34023, 28589, 0, 0, 0, 1, 2, 1, 1, 'Beastmaw Pauldrons'),
|
|
(34023, 28590, 0, 0, 0, 1, 2, 1, 1, 'Ribbon of Sacrifice'),
|
|
(34023, 28591, 0, 0, 0, 1, 2, 1, 1, 'Earthsoul Leggings'),
|
|
(34023, 28592, 0, 0, 0, 1, 2, 1, 1, 'Libram of Souls Redeemed'),
|
|
(34023, 28593, 0, 0, 0, 1, 2, 1, 1, 'Eternium Greathelm'),
|
|
(34023, 28594, 0, 0, 0, 1, 2, 1, 1, 'Trial-Fire Trousers'),
|
|
(34024, 20727, 0, 0, 0, 1, 1, 1, 1, 'Formula: Enchant Gloves - Shadow Power'),
|
|
(34024, 20728, 0, 0, 0, 1, 1, 1, 1, 'Formula: Enchant Gloves - Frost Power'),
|
|
(34024, 20729, 0, 0, 0, 1, 1, 1, 1, 'Formula: Enchant Gloves - Fire Power'),
|
|
(34024, 20730, 0, 0, 0, 1, 1, 1, 1, 'Formula: Enchant Gloves - Healing Power'),
|
|
(34024, 20731, 0, 0, 0, 1, 1, 1, 1, 'Formula: Enchant Gloves - Superior Agility'),
|
|
(34024, 20734, 0, 0, 0, 1, 1, 1, 1, 'Formula: Enchant Cloak - Stealth'),
|
|
(34024, 20736, 0, 0, 0, 1, 1, 1, 1, 'Formula: Enchant Cloak - Dodge'),
|
|
(34024, 21214, 0, 0, 0, 1, 3, 1, 1, 'Tome of Frostbolt XI'),
|
|
(34024, 21279, 0, 0, 0, 1, 3, 1, 1, 'Tome of Fireball XII'),
|
|
(34024, 21280, 0, 0, 0, 1, 3, 1, 1, 'Tome of Arcane Missiles VIII'),
|
|
(34024, 21281, 0, 0, 0, 1, 3, 1, 1, 'Grimoire of Shadow Bolt X'),
|
|
(34024, 21282, 0, 0, 0, 1, 3, 1, 1, 'Grimoire of Immolate VIII'),
|
|
(34024, 21283, 0, 0, 0, 1, 3, 1, 1, 'Grimoire of Corruption VII'),
|
|
(34024, 21284, 0, 0, 0, 1, 3, 1, 1, 'Codex of Greater Heal V'),
|
|
(34024, 21285, 0, 0, 0, 1, 3, 1, 1, 'Codex of Renew X'),
|
|
(34024, 21287, 0, 0, 0, 1, 3, 1, 1, 'Codex of Prayer of Healing V'),
|
|
(34024, 21288, 0, 0, 0, 1, 3, 1, 1, 'Libram: Blessing of Wisdom VI'),
|
|
(34024, 21289, 0, 0, 0, 1, 3, 1, 1, 'Libram: Blessing of Might VII'),
|
|
(34024, 21290, 0, 0, 0, 1, 3, 1, 1, 'Libram: Holy Light IX'),
|
|
(34024, 21291, 0, 0, 0, 1, 3, 1, 1, 'Tablet of Healing Wave X'),
|
|
(34024, 21292, 0, 0, 0, 1, 3, 1, 1, 'Tablet of Strength of Earth Totem V'),
|
|
(34024, 21294, 0, 0, 0, 1, 3, 1, 1, 'Book of Healing Touch XI'),
|
|
(34024, 21295, 0, 0, 0, 1, 3, 1, 1, 'Book of Starfire VII'),
|
|
(34024, 21296, 0, 0, 0, 1, 3, 1, 1, 'Book of Rejuvenation XI'),
|
|
(34024, 21297, 0, 0, 0, 1, 3, 1, 1, 'Manual of Heroic Strike IX'),
|
|
(34024, 21298, 0, 0, 0, 1, 3, 1, 1, 'Manual of Battle Shout VII'),
|
|
(34024, 21299, 0, 0, 0, 1, 3, 1, 1, 'Manual of Revenge VI'),
|
|
(34024, 21300, 0, 0, 0, 1, 3, 1, 1, 'Handbook of Backstab IX'),
|
|
(34024, 21303, 0, 0, 0, 1, 3, 1, 1, 'Handbook of Feint V'),
|
|
(34024, 21304, 0, 0, 0, 1, 3, 1, 1, 'Guide: Multi-Shot V'),
|
|
(34024, 21306, 0, 0, 0, 1, 3, 1, 1, 'Guide: Serpent Sting IX'),
|
|
(34024, 21307, 0, 0, 0, 1, 3, 1, 1, 'Guide: Aspect of the Hawk VII'),
|
|
(34025, 21452, 0, 0, 0, 1, 4, 1, 1, 'Staff of the Ruins'),
|
|
(34025, 21453, 0, 0, 0, 1, 4, 1, 1, 'Mantle of the Horusath'),
|
|
(34025, 21454, 0, 0, 0, 1, 4, 1, 1, 'Runic Stone Shoulders'),
|
|
(34025, 21456, 0, 0, 0, 1, 4, 1, 1, 'Sandstorm Cloak'),
|
|
(34025, 21457, 0, 0, 0, 1, 4, 1, 1, 'Bracers of Brutality'),
|
|
(34025, 21458, 0, 0, 0, 1, 4, 1, 1, 'Gauntlets of New Life'),
|
|
(34025, 21459, 0, 0, 0, 1, 4, 1, 1, 'Crossbow of Imminent Doom'),
|
|
(34025, 21460, 0, 0, 0, 1, 4, 1, 1, 'Helm of Domination'),
|
|
(34025, 21461, 0, 0, 0, 1, 4, 1, 1, 'Leggings of the Black Blizzard'),
|
|
(34025, 21462, 0, 0, 0, 1, 4, 1, 1, 'Gloves of Dark Wisdom'),
|
|
(34025, 21463, 0, 0, 0, 1, 4, 1, 1, 'Ossirian\'s Binding'),
|
|
(34025, 21464, 0, 0, 0, 1, 4, 1, 1, 'Shackles of the Unscarred'),
|
|
(34025, 21715, 0, 0, 0, 1, 4, 1, 1, 'Sand Polished Hammer'),
|
|
(34031, 28581, 0, 0, 0, 1, 1, 1, 1, 'Wolfslayer Sniper Rifle'),
|
|
(34031, 28582, 0, 0, 0, 1, 1, 1, 1, 'Red Riding Hood\'s Cloak'),
|
|
(34031, 28583, 0, 0, 0, 1, 1, 1, 1, 'Big Bad Wolf\'s Head'),
|
|
(34031, 28584, 0, 0, 0, 1, 1, 1, 1, 'Big Bad Wolf\'s Paw'),
|
|
(34031, 28589, 0, 0, 0, 1, 2, 1, 1, 'Beastmaw Pauldrons'),
|
|
(34031, 28590, 0, 0, 0, 1, 2, 1, 1, 'Ribbon of Sacrifice'),
|
|
(34031, 28591, 0, 0, 0, 1, 2, 1, 1, 'Earthsoul Leggings'),
|
|
(34031, 28592, 0, 0, 0, 1, 2, 1, 1, 'Libram of Souls Redeemed'),
|
|
(34031, 28593, 0, 0, 0, 1, 2, 1, 1, 'Eternium Greathelm'),
|
|
(34031, 28594, 0, 0, 0, 1, 2, 1, 1, 'Trial-Fire Trousers'),
|
|
(34039, 28774, 0, 0, 0, 1, 2, 1, 1, 'Glaive of the Pit'),
|
|
(34039, 28775, 0, 0, 0, 1, 2, 1, 1, 'Thundering Greathelm'),
|
|
(34039, 28776, 0, 0, 0, 1, 2, 1, 1, 'Liar\'s Tongue Gloves'),
|
|
(34039, 28777, 0, 0, 0, 1, 2, 1, 1, 'Cloak of the Pit Stalker'),
|
|
(34039, 28778, 0, 0, 0, 1, 2, 1, 1, 'Terror Pit Girdle'),
|
|
(34039, 28779, 0, 0, 0, 1, 2, 1, 1, 'Girdle of the Endless Pit'),
|
|
(34039, 28780, 0, 0, 0, 1, 2, 1, 1, 'Soul-Eater\'s Handwraps'),
|
|
(34039, 28781, 0, 0, 0, 1, 2, 1, 1, 'Karaborian Talisman'),
|
|
(34039, 28782, 0, 0, 0, 1, 2, 1, 1, 'Crystalheart Pulse-Staff'),
|
|
(34039, 28783, 0, 0, 0, 1, 2, 1, 1, 'Eredar Wand of Obliteration'),
|
|
(34039, 28789, 0, 0, 0, 1, 2, 1, 1, 'Eye of Magtheridon'),
|
|
(34039, 29458, 0, 0, 0, 1, 2, 1, 1, 'Aegis of the Vindicator'),
|
|
(34039, 29753, 0, 0, 0, 1, 1, 1, 1, 'Chestguard of the Fallen Defender'),
|
|
(34039, 29754, 0, 0, 0, 1, 1, 1, 1, 'Chestguard of the Fallen Champion'),
|
|
(34039, 29755, 0, 0, 0, 1, 1, 1, 1, 'Chestguard of the Fallen Hero'),
|
|
(34040, 39221, 0, 0, 0, 1, 1, 1, 1, 'Wraith Spear'),
|
|
(34040, 39224, 0, 0, 0, 1, 1, 1, 1, 'Leggings of Discord'),
|
|
(34040, 39225, 0, 0, 0, 1, 1, 1, 1, 'Cloak of Armed Strife'),
|
|
(34040, 39226, 0, 0, 0, 1, 1, 1, 1, 'Maexxna\'s Femur'),
|
|
(34040, 39228, 0, 0, 0, 1, 1, 1, 1, 'Web Cocoon Grips'),
|
|
(34040, 39229, 0, 0, 0, 1, 1, 1, 1, 'Embrace of the Spider'),
|
|
(34040, 39230, 0, 0, 0, 1, 1, 1, 1, 'Spaulders of the Monstrosity'),
|
|
(34040, 39231, 0, 0, 0, 1, 1, 1, 1, 'Timeworn Silken Band'),
|
|
(34040, 39232, 0, 0, 0, 1, 1, 1, 1, 'Pendant of Lost Vocations'),
|
|
(34040, 39233, 0, 0, 0, 1, 1, 1, 1, 'Aegis of Damnation'),
|
|
(34041, 39245, 0, 0, 0, 1, 1, 1, 1, 'Demise'),
|
|
(34041, 39246, 0, 0, 0, 1, 1, 1, 1, 'Amulet of Autopsy'),
|
|
(34041, 39247, 0, 0, 0, 1, 1, 1, 1, 'Cuffs of Dark Shadows'),
|
|
(34041, 39248, 0, 0, 0, 1, 1, 1, 1, 'Tunic of the Lost Pack'),
|
|
(34041, 39249, 0, 0, 0, 1, 1, 1, 1, 'Shoulderplates of Bloodshed'),
|
|
(34041, 39250, 0, 0, 0, 1, 1, 1, 1, 'Ring of Holy Cleansing'),
|
|
(34041, 39251, 0, 0, 0, 1, 1, 1, 1, 'Necrogenic Belt'),
|
|
(34041, 39252, 0, 0, 0, 1, 1, 1, 1, 'Preceptor\'s Bindings'),
|
|
(34041, 39254, 0, 0, 0, 1, 1, 1, 1, 'Saltarello Shoes'),
|
|
(34041, 39255, 0, 0, 0, 1, 1, 1, 1, 'Staff of the Plague Beast'),
|
|
(34042, 39234, 0, 0, 0, 1, 1, 1, 1, 'Plague-Impervious Boots'),
|
|
(34042, 39235, 0, 0, 0, 1, 1, 1, 1, 'Bone-Framed Bracers'),
|
|
(34042, 39236, 0, 0, 0, 1, 1, 1, 1, 'Trespasser\'s Boots'),
|
|
(34042, 39237, 0, 0, 0, 1, 1, 1, 1, 'Spaulders of Resumed Battle'),
|
|
(34042, 39239, 0, 0, 0, 1, 1, 1, 1, 'Chestplate of the Risen Soldier'),
|
|
(34042, 39240, 0, 0, 0, 1, 1, 1, 1, 'Noth\'s Curse'),
|
|
(34042, 39241, 0, 0, 0, 1, 1, 1, 1, 'Dark Shroud of the Scourge'),
|
|
(34042, 39242, 0, 0, 0, 1, 1, 1, 1, 'Robes of Hoarse Breaths'),
|
|
(34042, 39243, 0, 0, 0, 1, 1, 1, 1, 'Handgrips of the Foredoomed'),
|
|
(34042, 39244, 0, 0, 0, 1, 1, 1, 1, 'Ring of the Fated'),
|
|
(34043, 39398, 0, 0, 0, 1, 1, 1, 1, 'Massive Skeletal Ribcage'),
|
|
(34043, 39399, 0, 0, 0, 1, 1, 1, 1, 'Helm of the Vast Legions'),
|
|
(34043, 39401, 0, 0, 0, 1, 1, 1, 1, 'Circle of Death'),
|
|
(34043, 39403, 0, 0, 0, 1, 1, 1, 1, 'Helm of the Unsubmissive'),
|
|
(34043, 39404, 0, 0, 0, 1, 1, 1, 1, 'Cloak of Mastery'),
|
|
(34043, 39405, 0, 0, 0, 1, 1, 1, 1, 'Helmet of the Inner Sanctum'),
|
|
(34043, 39407, 0, 0, 0, 1, 1, 1, 1, 'Circle of Life'),
|
|
(34043, 39408, 0, 0, 0, 1, 1, 1, 1, 'Leggings of Sapphiron'),
|
|
(34043, 39409, 0, 0, 0, 1, 1, 1, 1, 'Cowl of Winged Fear'),
|
|
(34043, 39415, 0, 0, 0, 1, 1, 1, 1, 'Shroud of the Citadel'),
|
|
(34044, 39416, 0, 0, 0, 1, 1, 1, 1, 'Kel\'Thuzad\'s Reach'),
|
|
(34044, 39417, 0, 0, 0, 1, 1, 1, 1, 'Death\'s Bite'),
|
|
(34044, 39419, 0, 0, 0, 1, 1, 1, 1, 'Nerubian Conquerer'),
|
|
(34044, 39420, 0, 0, 0, 1, 1, 1, 1, 'Anarchy'),
|
|
(34044, 39421, 0, 0, 0, 1, 1, 1, 1, 'Gem of Imprisoned Vassals'),
|
|
(34044, 39422, 0, 0, 0, 1, 1, 1, 1, 'Staff of the Plaguehound'),
|
|
(34044, 39423, 0, 0, 0, 1, 1, 1, 1, 'Hammer of the Astral Plane'),
|
|
(34044, 39424, 0, 0, 0, 1, 1, 1, 1, 'The Soulblade'),
|
|
(34044, 39425, 0, 0, 0, 1, 1, 1, 1, 'Cloak of the Dying'),
|
|
(34044, 39426, 0, 0, 0, 1, 1, 1, 1, 'Wand of the Archlich'),
|
|
(34045, 20727, 0, 0, 0, 1, 1, 1, 1, 'Formula: Enchant Gloves - Shadow Power'),
|
|
(34045, 20728, 0, 0, 0, 1, 1, 1, 1, 'Formula: Enchant Gloves - Frost Power'),
|
|
(34045, 20729, 0, 0, 0, 1, 1, 1, 1, 'Formula: Enchant Gloves - Fire Power'),
|
|
(34045, 20730, 0, 0, 0, 1, 1, 1, 1, 'Formula: Enchant Gloves - Healing Power'),
|
|
(34045, 20731, 0, 0, 0, 1, 1, 1, 1, 'Formula: Enchant Gloves - Superior Agility'),
|
|
(34045, 20734, 0, 0, 0, 1, 1, 1, 1, 'Formula: Enchant Cloak - Stealth'),
|
|
(34045, 20736, 0, 0, 0, 1, 1, 1, 1, 'Formula: Enchant Cloak - Dodge'),
|
|
(34046, 21232, 0, 0, 0, 1, 1, 1, 1, 'Imperial Qiraji Armaments'),
|
|
(34046, 21237, 0, 0, 0, 1, 1, 1, 1, 'Imperial Qiraji Regalia'),
|
|
(34050, 29762, 0, 0, 0, 1, 1, 1, 1, 'Pauldrons of the Fallen Hero'),
|
|
(34050, 29763, 0, 0, 0, 1, 1, 1, 1, 'Pauldrons of the Fallen Champion'),
|
|
(34050, 29764, 0, 0, 0, 1, 1, 1, 1, 'Pauldrons of the Fallen Defender'),
|
|
(34051, 28794, 0, 0, 0, 1, 2, 1, 1, 'Axe of the Gronn Lords'),
|
|
(34051, 28802, 0, 0, 0, 1, 2, 1, 1, 'Bloodmaw Magus-Blade'),
|
|
(34051, 28803, 0, 0, 0, 1, 2, 1, 1, 'Cowl of Nature\'s Breath'),
|
|
(34051, 28804, 0, 0, 0, 1, 2, 1, 1, 'Collar of Cho\'gall'),
|
|
(34051, 28810, 0, 0, 0, 1, 2, 1, 1, 'Windshear Boots'),
|
|
(34051, 28822, 0, 0, 0, 1, 2, 1, 1, 'Teeth of Gruul'),
|
|
(34051, 28823, 0, 0, 0, 1, 2, 1, 1, 'Eye of Gruul'),
|
|
(34051, 28824, 0, 0, 0, 1, 2, 1, 1, 'Gauntlets of Martial Perfection'),
|
|
(34051, 28825, 0, 0, 0, 1, 2, 1, 1, 'Aldori Legacy Defender'),
|
|
(34051, 28826, 0, 0, 0, 1, 2, 1, 1, 'Shuriken of Negation'),
|
|
(34051, 28827, 0, 0, 0, 1, 2, 1, 1, 'Gauntlets of the Dragonslayer'),
|
|
(34051, 28828, 0, 0, 0, 1, 2, 1, 1, 'Gronn-Stitched Girdle'),
|
|
(34051, 28830, 0, 0, 0, 1, 2, 1, 1, 'Dragonspine Trophy'),
|
|
(34051, 29765, 0, 0, 0, 1, 1, 1, 1, 'Leggings of the Fallen Hero'),
|
|
(34051, 29766, 0, 0, 0, 1, 1, 1, 1, 'Leggings of the Fallen Champion'),
|
|
(34051, 29767, 0, 0, 0, 1, 1, 1, 1, 'Leggings of the Fallen Defender'),
|
|
(34052, 30280, 0, 0, 0, 1, 1, 1, 1, 'Pattern: Belt of Blasting'),
|
|
(34052, 30281, 0, 0, 0, 1, 1, 1, 1, 'Pattern: Belt of the Long Road'),
|
|
(34052, 30282, 0, 0, 0, 1, 2, 1, 1, 'Pattern: Boots of Blasting'),
|
|
(34052, 30283, 0, 0, 0, 1, 2, 1, 1, 'Pattern: Boots of the Long Road'),
|
|
(34052, 30301, 0, 0, 0, 1, 1, 1, 1, 'Pattern: Belt of Natural Power'),
|
|
(34052, 30302, 0, 0, 0, 1, 1, 1, 1, 'Pattern: Belt of Deep Shadow'),
|
|
(34052, 30303, 0, 0, 0, 1, 1, 1, 1, 'Pattern: Belt of the Black Eagle'),
|
|
(34052, 30304, 0, 0, 0, 1, 1, 1, 1, 'Pattern: Monsoon Belt'),
|
|
(34052, 30305, 0, 0, 0, 1, 2, 1, 1, 'Pattern: Boots of Natural Grace'),
|
|
(34052, 30306, 0, 0, 0, 1, 2, 1, 1, 'Pattern: Boots of Utter Darkness'),
|
|
(34052, 30307, 0, 0, 0, 1, 2, 1, 1, 'Pattern: Boots of the Crimson Hawk'),
|
|
(34052, 30308, 0, 0, 0, 1, 2, 1, 1, 'Pattern: Hurricane Boots'),
|
|
(34052, 30321, 0, 0, 0, 1, 1, 1, 1, 'Plans: Belt of the Guardian'),
|
|
(34052, 30322, 0, 0, 0, 1, 1, 1, 1, 'Plans: Red Belt of Battle'),
|
|
(34052, 30323, 0, 0, 0, 1, 2, 1, 1, 'Plans: Boots of the Protector'),
|
|
(34052, 30324, 0, 0, 0, 1, 2, 1, 1, 'Plans: Red Havoc Boots'),
|
|
(34053, 1, 34377, 8.33333, 0, 1, 1, 1, 1, '(ReferenceTable)'),
|
|
(34053, 29918, 0, 0, 0, 1, 1, 1, 1, 'Mindstorm Wristbands'),
|
|
(34053, 29920, 0, 0, 0, 1, 1, 1, 1, 'Phoenix-Ring of Rebirth'),
|
|
(34053, 29921, 0, 0, 0, 1, 1, 1, 1, 'Fire Crest Breastplate'),
|
|
(34053, 29922, 0, 0, 0, 1, 1, 1, 1, 'Band of Al\'ar'),
|
|
(34053, 29923, 0, 0, 0, 1, 1, 1, 1, 'Talisman of the Sun King'),
|
|
(34053, 29924, 0, 0, 0, 1, 1, 1, 1, 'Netherbane'),
|
|
(34053, 29925, 0, 0, 0, 1, 1, 1, 1, 'Phoenix-Wing Cloak'),
|
|
(34053, 29947, 0, 0, 0, 1, 1, 1, 1, 'Gloves of the Searing Grip'),
|
|
(34053, 29948, 0, 0, 0, 1, 1, 1, 1, 'Claw of the Phoenix'),
|
|
(34053, 29949, 0, 0, 0, 1, 1, 1, 1, 'Arcanite Steam-Pistol'),
|
|
(34053, 30447, 0, 0, 0, 1, 1, 1, 1, 'Tome of Fiery Redemption'),
|
|
(34054, 30248, 0, 0, 0, 1, 1, 1, 1, 'Pauldrons of the Vanquished Champion'),
|
|
(34054, 30249, 0, 0, 0, 1, 1, 1, 1, 'Pauldrons of the Vanquished Defender'),
|
|
(34054, 30250, 0, 0, 0, 1, 1, 1, 1, 'Pauldrons of the Vanquished Hero'),
|
|
(34055, 29950, 0, 0, 0, 1, 1, 1, 1, 'Greaves of the Bloodwarder'),
|
|
(34055, 29951, 0, 0, 0, 1, 1, 1, 1, 'Star-Strider Boots'),
|
|
(34055, 29962, 0, 0, 0, 1, 1, 1, 1, 'Heartrazor'),
|
|
(34055, 29965, 0, 0, 0, 1, 1, 1, 1, 'Girdle of the Righteous Path'),
|
|
(34055, 29966, 0, 0, 0, 1, 1, 1, 1, 'Vambraces of Ending'),
|
|
(34055, 29972, 0, 0, 0, 1, 1, 1, 1, 'Trousers of the Astromancer'),
|
|
(34055, 29976, 0, 0, 0, 1, 1, 1, 1, 'Worldstorm Gauntlets'),
|
|
(34055, 29977, 0, 0, 0, 1, 1, 1, 1, 'Star-Soul Breeches'),
|
|
(34055, 29981, 0, 0, 0, 1, 1, 1, 1, 'Ethereum Life-Staff'),
|
|
(34055, 29982, 0, 0, 0, 1, 1, 1, 1, 'Wand of the Forgotten Star'),
|
|
(34055, 30446, 0, 0, 0, 1, 1, 1, 1, 'Solarian\'s Sapphire'),
|
|
(34055, 30449, 0, 0, 0, 1, 1, 1, 1, 'Void Star Talisman'),
|
|
(34055, 32267, 0, 0, 0, 1, 1, 1, 1, 'Boots of the Resilient'),
|
|
(34056, 29987, 0, 0, 0, 1, 4, 1, 1, 'Gauntlets of the Sun King'),
|
|
(34056, 29988, 0, 0, 0, 1, 4, 1, 1, 'The Nexus Key'),
|
|
(34056, 29989, 0, 0, 0, 1, 4, 1, 1, 'Sunshower Light Cloak'),
|
|
(34056, 29990, 0, 0, 0, 1, 4, 1, 1, 'Crown of the Sun'),
|
|
(34056, 29991, 0, 0, 0, 1, 4, 1, 1, 'Sunhawk Leggings'),
|
|
(34056, 29992, 0, 0, 0, 1, 4, 1, 1, 'Royal Cloak of the Sunstriders'),
|
|
(34056, 29993, 0, 0, 0, 1, 4, 1, 1, 'Twinblade of the Phoenix'),
|
|
(34056, 29994, 0, 0, 0, 1, 4, 1, 1, 'Thalassian Wildercloak'),
|
|
(34056, 29995, 0, 0, 0, 1, 4, 1, 1, 'Leggings of Murderous Intent'),
|
|
(34056, 29996, 0, 0, 0, 1, 4, 1, 1, 'Rod of the Sun King'),
|
|
(34056, 29997, 0, 0, 0, 1, 4, 1, 1, 'Band of the Ranger-General'),
|
|
(34056, 29998, 0, 0, 0, 1, 4, 1, 1, 'Royal Gauntlets of Silvermoon'),
|
|
(34056, 30236, 0, 0, 0, 1, 3, 1, 1, 'Chestguard of the Vanquished Champion'),
|
|
(34056, 30237, 0, 0, 0, 1, 3, 1, 1, 'Chestguard of the Vanquished Defender'),
|
|
(34056, 30238, 0, 0, 0, 1, 3, 1, 1, 'Chestguard of the Vanquished Hero'),
|
|
(34057, 30047, 0, 0, 0, 1, 1, 1, 1, 'Blackfathom Warbands'),
|
|
(34057, 30048, 0, 0, 0, 1, 1, 1, 1, 'Brighthelm of Justice'),
|
|
(34057, 30049, 0, 0, 0, 1, 1, 1, 1, 'Fathomstone'),
|
|
(34057, 30050, 0, 0, 0, 1, 1, 1, 1, 'Boots of the Shifting Nightmare'),
|
|
(34057, 30051, 0, 0, 0, 1, 1, 1, 1, 'Idol of the Crescent Goddess'),
|
|
(34057, 30052, 0, 0, 0, 1, 1, 1, 1, 'Ring of Lethality'),
|
|
(34057, 30053, 0, 0, 0, 1, 1, 1, 1, 'Pauldrons of the Wardancer'),
|
|
(34057, 30054, 0, 0, 0, 1, 1, 1, 1, 'Ranger-General\'s Chestguard'),
|
|
(34057, 30055, 0, 0, 0, 1, 1, 1, 1, 'Shoulderpads of the Stranger'),
|
|
(34057, 30056, 0, 0, 0, 1, 1, 1, 1, 'Robe of Hateful Echoes'),
|
|
(34057, 30629, 0, 0, 0, 1, 1, 1, 1, 'Scarab of Displacement'),
|
|
(34057, 30664, 0, 0, 0, 1, 1, 1, 1, 'Living Root of the Wildheart'),
|
|
(34057, 32516, 0, 0, 0, 1, 1, 1, 1, 'Wraps of Purification'),
|
|
(34057, 33055, 0, 0, 0, 1, 1, 1, 1, 'Band of Vile Aggression'),
|
|
(34058, 30054, 0, 0, 0, 1, 1, 1, 1, 'Ranger-General\'s Chestguard'),
|
|
(34058, 30057, 0, 0, 0, 1, 1, 1, 1, 'Bracers of Eradication'),
|
|
(34058, 30058, 0, 0, 0, 1, 1, 1, 1, 'Mallet of the Tides'),
|
|
(34058, 30059, 0, 0, 0, 1, 1, 1, 1, 'Choker of Animalistic Fury'),
|
|
(34058, 30060, 0, 0, 0, 1, 1, 1, 1, 'Boots of Effortless Striking'),
|
|
(34058, 30061, 0, 0, 0, 1, 1, 1, 1, 'Ancestral Ring of Conquest'),
|
|
(34058, 30062, 0, 0, 0, 1, 1, 1, 1, 'Grove-Bands of Remulos'),
|
|
(34058, 30063, 0, 0, 0, 1, 1, 1, 1, 'Libram of Absolute Truth'),
|
|
(34058, 30064, 0, 0, 0, 1, 1, 1, 1, 'Cord of Screaming Terrors'),
|
|
(34058, 30065, 0, 0, 0, 1, 1, 1, 1, 'Glowing Breastplate of Truth'),
|
|
(34058, 30066, 0, 0, 0, 1, 1, 1, 1, 'Tempest-Strider Boots'),
|
|
(34058, 30067, 0, 0, 0, 1, 1, 1, 1, 'Velvet Boots of the Guardian'),
|
|
(34058, 30665, 0, 0, 0, 1, 1, 1, 1, 'Earring of Soulful Meditation'),
|
|
(34059, 30239, 0, 0, 0, 1, 1, 1, 1, 'Gloves of the Vanquished Champion'),
|
|
(34059, 30240, 0, 0, 0, 1, 1, 1, 1, 'Gloves of the Vanquished Defender'),
|
|
(34059, 30241, 0, 0, 0, 1, 1, 1, 1, 'Gloves of the Vanquished Hero'),
|
|
(34060, 30245, 0, 0, 0, 1, 1, 1, 1, 'Leggings of the Vanquished Champion'),
|
|
(34060, 30246, 0, 0, 0, 1, 1, 1, 1, 'Leggings of the Vanquished Defender'),
|
|
(34060, 30247, 0, 0, 0, 1, 1, 1, 1, 'Leggings of the Vanquished Hero'),
|
|
(34061, 30008, 0, 0, 0, 1, 1, 1, 1, 'Pendant of the Lost Ages'),
|
|
(34061, 30068, 0, 0, 0, 1, 1, 1, 1, 'Girdle of the Tidal Call'),
|
|
(34061, 30075, 0, 0, 0, 1, 1, 1, 1, 'Gnarled Chestpiece of the Ancients'),
|
|
(34061, 30079, 0, 0, 0, 1, 1, 1, 1, 'Illidari Shoulderpads'),
|
|
(34061, 30080, 0, 0, 0, 1, 1, 1, 1, 'Luminescent Rod of the Naaru'),
|
|
(34061, 30081, 0, 0, 0, 1, 1, 1, 1, 'Warboots of Obliteration'),
|
|
(34061, 30082, 0, 0, 0, 1, 1, 1, 1, 'Talon of Azshara'),
|
|
(34061, 30083, 0, 0, 0, 1, 1, 1, 1, 'Ring of Sundered Souls'),
|
|
(34061, 30084, 0, 0, 0, 1, 1, 1, 1, 'Pauldrons of the Argent Sentinel'),
|
|
(34061, 30085, 0, 0, 0, 1, 1, 1, 1, 'Mantle of the Tireless Tracker'),
|
|
(34061, 30098, 0, 0, 0, 1, 1, 1, 1, 'Razor-Scale Battlecloak'),
|
|
(34061, 30720, 0, 0, 0, 1, 1, 1, 1, 'Serpent-Coil Braid'),
|
|
(34061, 33058, 0, 0, 0, 1, 1, 1, 1, 'Band of the Vigilant'),
|
|
(34062, 30102, 0, 0, 0, 1, 4, 1, 1, 'Krakken-Heart Breastplate'),
|
|
(34062, 30103, 0, 0, 0, 1, 4, 1, 1, 'Fang of Vashj'),
|
|
(34062, 30104, 0, 0, 0, 1, 4, 1, 1, 'Cobra-Lash Boots'),
|
|
(34062, 30105, 0, 0, 0, 1, 4, 1, 1, 'Serpent Spine Longbow'),
|
|
(34062, 30106, 0, 0, 0, 1, 4, 1, 1, 'Belt of One-Hundred Deaths'),
|
|
(34062, 30107, 0, 0, 0, 1, 4, 1, 1, 'Vestments of the Sea-Witch'),
|
|
(34062, 30108, 0, 0, 0, 1, 4, 1, 1, 'Lightfathom Scepter'),
|
|
(34062, 30109, 0, 0, 0, 1, 4, 1, 1, 'Ring of Endless Coils'),
|
|
(34062, 30110, 0, 0, 0, 1, 4, 1, 1, 'Coral Band of the Revived'),
|
|
(34062, 30111, 0, 0, 0, 1, 4, 1, 1, 'Runetotem\'s Mantle'),
|
|
(34062, 30112, 0, 0, 0, 1, 4, 1, 1, 'Glorious Gauntlets of Crestfall'),
|
|
(34062, 30242, 0, 0, 0, 1, 3, 1, 1, 'Helm of the Vanquished Champion'),
|
|
(34062, 30243, 0, 0, 0, 1, 3, 1, 1, 'Helm of the Vanquished Defender'),
|
|
(34062, 30244, 0, 0, 0, 1, 3, 1, 1, 'Helm of the Vanquished Hero'),
|
|
(34062, 30621, 0, 0, 0, 1, 4, 1, 1, 'Prism of Inner Calm'),
|
|
(34063, 32285, 0, 0, 0, 1, 1, 1, 1, 'Design: Flashing Crimson Spinel'),
|
|
(34063, 32289, 0, 0, 0, 1, 1, 1, 1, 'Design: Stormy Empyrean Sapphire'),
|
|
(34063, 32295, 0, 0, 0, 1, 1, 1, 1, 'Design: Mystic Lionseye'),
|
|
(34063, 32296, 0, 0, 0, 1, 1, 1, 1, 'Design: Great Lionseye'),
|
|
(34063, 32297, 0, 0, 0, 1, 1, 1, 1, 'Design: Sovereign Shadowsong Amethyst'),
|
|
(34063, 32298, 0, 0, 0, 1, 1, 1, 1, 'Design: Shifting Shadowsong Amethyst'),
|
|
(34063, 32303, 0, 0, 0, 1, 1, 1, 1, 'Design: Inscribed Pyrestone'),
|
|
(34063, 32307, 0, 0, 0, 1, 1, 1, 1, 'Design: Veiled Pyrestone'),
|
|
(34064, 30861, 0, 0, 0, 1, 1, 1, 1, 'Furious Shackles'),
|
|
(34064, 30862, 0, 0, 0, 1, 1, 1, 1, 'Blessed Adamantite Bracers'),
|
|
(34064, 30863, 0, 0, 0, 1, 1, 1, 1, 'Deadly Cuffs'),
|
|
(34064, 30864, 0, 0, 0, 1, 1, 1, 1, 'Bracers of the Pathfinder'),
|
|
(34064, 30865, 0, 0, 0, 1, 1, 1, 1, 'Tracker\'s Blade'),
|
|
(34064, 30866, 0, 0, 0, 1, 1, 1, 1, 'Blood-stained Pauldrons'),
|
|
(34064, 30868, 0, 0, 0, 1, 1, 1, 1, 'Rejuvenating Bracers'),
|
|
(34064, 30869, 0, 0, 0, 1, 1, 1, 1, 'Howling Wind Bracers'),
|
|
(34064, 30870, 0, 0, 0, 1, 1, 1, 1, 'Cuffs of Devastation'),
|
|
(34064, 30871, 0, 0, 0, 1, 1, 1, 1, 'Bracers of Martyrdom'),
|
|
(34064, 30872, 0, 0, 0, 1, 1, 1, 1, 'Chronicle of Dark Secrets'),
|
|
(34064, 30873, 0, 0, 0, 1, 1, 1, 1, 'Stillwater Boots'),
|
|
(34065, 30874, 0, 0, 0, 1, 1, 1, 1, 'The Unbreakable Will'),
|
|
(34065, 30878, 0, 0, 0, 1, 1, 1, 1, 'Glimmering Steel Mantle'),
|
|
(34065, 30879, 0, 0, 0, 1, 1, 1, 1, 'Don Alejandro\'s Money Belt'),
|
|
(34065, 30880, 0, 0, 0, 1, 1, 1, 1, 'Quickstrider Moccasins'),
|
|
(34065, 30881, 0, 0, 0, 1, 1, 1, 1, 'Blade of Infamy'),
|
|
(34065, 30882, 0, 0, 0, 1, 1, 1, 1, 'Bastion of Light'),
|
|
(34065, 30883, 0, 0, 0, 1, 1, 1, 1, 'Pillar of Ferocity'),
|
|
(34065, 30884, 0, 0, 0, 1, 1, 1, 1, 'Hatefury Mantle'),
|
|
(34065, 30885, 0, 0, 0, 1, 1, 1, 1, 'Archbishop\'s Slippers'),
|
|
(34065, 30886, 0, 0, 0, 1, 1, 1, 1, 'Enchanted Leather Sandals'),
|
|
(34065, 30887, 0, 0, 0, 1, 1, 1, 1, 'Golden Links of Restoration'),
|
|
(34065, 30888, 0, 0, 0, 1, 1, 1, 1, 'Anetheron\'s Noose'),
|
|
(34066, 30889, 0, 0, 0, 1, 1, 1, 1, 'Kaz\'rogal\'s Hardened Heart'),
|
|
(34066, 30891, 0, 0, 0, 1, 1, 1, 1, 'Black Featherlight Boots'),
|
|
(34066, 30892, 0, 0, 0, 1, 1, 1, 1, 'Beast-tamer\'s Shoulders'),
|
|
(34066, 30893, 0, 0, 0, 1, 1, 1, 1, 'Sun-touched Chain Leggings'),
|
|
(34066, 30894, 0, 0, 0, 1, 1, 1, 1, 'Blue Suede Shoes'),
|
|
(34066, 30895, 0, 0, 0, 1, 1, 1, 1, 'Angelista\'s Sash'),
|
|
(34066, 30914, 0, 0, 0, 1, 1, 1, 1, 'Belt of the Crescent Moon'),
|
|
(34066, 30915, 0, 0, 0, 1, 1, 1, 1, 'Belt of Seething Fury'),
|
|
(34066, 30916, 0, 0, 0, 1, 1, 1, 1, 'Leggings of Channeled Elements'),
|
|
(34066, 30917, 0, 0, 0, 1, 1, 1, 1, 'Razorfury Mantle'),
|
|
(34066, 30918, 0, 0, 0, 1, 1, 1, 1, 'Hammer of Atonement'),
|
|
(34066, 30919, 0, 0, 0, 1, 1, 1, 1, 'Valestalker Girdle'),
|
|
(34067, 31092, 0, 0, 0, 1, 1, 1, 1, 'Gloves of the Forgotten Conqueror'),
|
|
(34067, 31093, 0, 0, 0, 1, 1, 1, 1, 'Gloves of the Forgotten Vanquisher'),
|
|
(34067, 31094, 0, 0, 0, 1, 1, 1, 1, 'Gloves of the Forgotten Protector'),
|
|
(34068, 30902, 0, 0, 0, 1, 2, 1, 1, 'Cataclysm\'s Edge'),
|
|
(34068, 30903, 0, 0, 0, 1, 2, 1, 1, 'Legguards of Endless Rage'),
|
|
(34068, 30904, 0, 0, 0, 1, 2, 1, 1, 'Savior\'s Grasp'),
|
|
(34068, 30905, 0, 0, 0, 1, 2, 1, 1, 'Midnight Chestguard'),
|
|
(34068, 30906, 0, 0, 0, 1, 2, 1, 1, 'Bristleblitz Striker'),
|
|
(34068, 30907, 0, 0, 0, 1, 2, 1, 1, 'Mail of Fevered Pursuit'),
|
|
(34068, 30908, 0, 0, 0, 1, 2, 1, 1, 'Apostle of Argus'),
|
|
(34068, 30909, 0, 0, 0, 1, 2, 1, 1, 'Antonidas\'s Aegis of Rapt Concentration'),
|
|
(34068, 30910, 0, 0, 0, 1, 2, 1, 1, 'Tempest of Chaos'),
|
|
(34068, 30911, 0, 0, 0, 1, 2, 1, 1, 'Scepter of Purification'),
|
|
(34068, 30912, 0, 0, 0, 1, 2, 1, 1, 'Leggings of Eternity'),
|
|
(34068, 30913, 0, 0, 0, 1, 2, 1, 1, 'Robes of Rhonin'),
|
|
(34068, 31095, 0, 0, 0, 1, 1, 1, 1, 'Helm of the Forgotten Protector'),
|
|
(34068, 31096, 0, 0, 0, 1, 1, 1, 1, 'Helm of the Forgotten Vanquisher'),
|
|
(34068, 31097, 0, 0, 0, 1, 1, 1, 1, 'Helm of the Forgotten Conqueror'),
|
|
(34069, 32736, 0, 0, 0, 1, 1, 1, 1, 'Plans: Swiftsteel Bracers'),
|
|
(34069, 32737, 0, 0, 0, 1, 2, 1, 1, 'Plans: Swiftsteel Shoulders'),
|
|
(34069, 32738, 0, 0, 0, 1, 1, 1, 1, 'Plans: Dawnsteel Bracers'),
|
|
(34069, 32739, 0, 0, 0, 1, 2, 1, 1, 'Plans: Dawnsteel Shoulders'),
|
|
(34069, 32744, 0, 0, 0, 1, 1, 1, 1, 'Pattern: Bracers of Renewed Life'),
|
|
(34069, 32745, 0, 0, 0, 1, 2, 1, 1, 'Pattern: Shoulderpads of Renewed Life'),
|
|
(34069, 32746, 0, 0, 0, 1, 1, 1, 1, 'Pattern: Swiftstrike Bracers'),
|
|
(34069, 32747, 0, 0, 0, 1, 2, 1, 1, 'Pattern: Swiftstrike Shoulders'),
|
|
(34069, 32748, 0, 0, 0, 1, 1, 1, 1, 'Pattern: Bindings of Lightning Reflexes'),
|
|
(34069, 32749, 0, 0, 0, 1, 2, 1, 1, 'Pattern: Shoulders of Lightning Reflexes'),
|
|
(34069, 32750, 0, 0, 0, 1, 1, 1, 1, 'Pattern: Living Earth Bindings'),
|
|
(34069, 32751, 0, 0, 0, 1, 2, 1, 1, 'Pattern: Living Earth Shoulders'),
|
|
(34069, 32752, 0, 0, 0, 1, 1, 1, 1, 'Pattern: Swiftheal Wraps'),
|
|
(34069, 32753, 0, 0, 0, 1, 2, 1, 1, 'Pattern: Swiftheal Mantle'),
|
|
(34069, 32754, 0, 0, 0, 1, 1, 1, 1, 'Pattern: Bracers of Nimble Thought'),
|
|
(34069, 32755, 0, 0, 0, 1, 2, 1, 1, 'Pattern: Mantle of Nimble Thought'),
|
|
(34070, 32232, 0, 0, 0, 1, 1, 1, 1, 'Eternium Shell Bracers'),
|
|
(34070, 32234, 0, 0, 0, 1, 1, 1, 1, 'Fists of Mukoa'),
|
|
(34070, 32236, 0, 0, 0, 1, 1, 1, 1, 'Rising Tide'),
|
|
(34070, 32237, 0, 0, 0, 1, 1, 1, 1, 'The Maelstrom\'s Fury'),
|
|
(34070, 32238, 0, 0, 0, 1, 1, 1, 1, 'Ring of Calming Waves'),
|
|
(34070, 32239, 0, 0, 0, 1, 1, 1, 1, 'Slippers of the Seacaller'),
|
|
(34070, 32240, 0, 0, 0, 1, 1, 1, 1, 'Guise of the Tidal Lurker'),
|
|
(34070, 32241, 0, 0, 0, 1, 1, 1, 1, 'Helm of Soothing Currents'),
|
|
(34070, 32242, 0, 0, 0, 1, 1, 1, 1, 'Boots of Oceanic Fury'),
|
|
(34070, 32243, 0, 0, 0, 1, 1, 1, 1, 'Pearl Inlaid Boots'),
|
|
(34070, 32245, 0, 0, 0, 1, 1, 1, 1, 'Tide-stomper\'s Greaves'),
|
|
(34070, 32247, 0, 0, 0, 1, 1, 1, 1, 'Ring of Captured Storms'),
|
|
(34070, 32248, 0, 0, 0, 1, 1, 1, 1, 'Halberd of Desolation'),
|
|
(34070, 32377, 0, 0, 0, 1, 1, 1, 1, 'Mantle of Darkness'),
|
|
(34071, 32250, 0, 0, 0, 1, 1, 1, 1, 'Pauldrons of Abyssal Fury'),
|
|
(34071, 32251, 0, 0, 0, 1, 1, 1, 1, 'Wraps of Precise Flight'),
|
|
(34071, 32252, 0, 0, 0, 1, 1, 1, 1, 'Nether Shadow Tunic'),
|
|
(34071, 32253, 0, 0, 0, 1, 1, 1, 1, 'Legionkiller'),
|
|
(34071, 32254, 0, 0, 0, 1, 1, 1, 1, 'The Brutalizer'),
|
|
(34071, 32255, 0, 0, 0, 1, 1, 1, 1, 'Felstone Bulwark'),
|
|
(34071, 32256, 0, 0, 0, 1, 1, 1, 1, 'Waistwrap of Infinity'),
|
|
(34071, 32257, 0, 0, 0, 1, 1, 1, 1, 'Idol of the White Stag'),
|
|
(34071, 32258, 0, 0, 0, 1, 1, 1, 1, 'Naturalist\'s Preserving Cinch'),
|
|
(34071, 32259, 0, 0, 0, 1, 1, 1, 1, 'Bands of the Coming Storm'),
|
|
(34071, 32260, 0, 0, 0, 1, 1, 1, 1, 'Choker of Endless Nightmares'),
|
|
(34071, 32261, 0, 0, 0, 1, 1, 1, 1, 'Band of the Abyssal Lord'),
|
|
(34071, 32262, 0, 0, 0, 1, 1, 1, 1, 'Syphon of the Nathrezim'),
|
|
(34072, 32263, 0, 0, 0, 1, 1, 1, 1, 'Praetorian\'s Legguards'),
|
|
(34072, 32264, 0, 0, 0, 1, 1, 1, 1, 'Shoulders of the Hidden Predator'),
|
|
(34072, 32265, 0, 0, 0, 1, 1, 1, 1, 'Shadow-walker\'s Cord'),
|
|
(34072, 32266, 0, 0, 0, 1, 1, 1, 1, 'Ring of Deceitful Intent'),
|
|
(34072, 32268, 0, 0, 0, 1, 1, 1, 1, 'Myrmidon\'s Treads'),
|
|
(34072, 32270, 0, 0, 0, 1, 1, 1, 1, 'Focused Mana Bindings'),
|
|
(34072, 32271, 0, 0, 0, 1, 1, 1, 1, 'Kilt of Immortal Nature'),
|
|
(34072, 32273, 0, 0, 0, 1, 1, 1, 1, 'Amice of Brilliant Light'),
|
|
(34072, 32275, 0, 0, 0, 1, 1, 1, 1, 'Spiritwalker Gauntlets'),
|
|
(34072, 32276, 0, 0, 0, 1, 1, 1, 1, 'Flashfire Girdle'),
|
|
(34072, 32278, 0, 0, 0, 1, 1, 1, 1, 'Grips of Silent Justice'),
|
|
(34072, 32279, 0, 0, 0, 1, 1, 1, 1, 'The Seeker\'s Wristguards'),
|
|
(34072, 32361, 0, 0, 0, 1, 1, 1, 1, 'Blind-Seers Icon'),
|
|
(34072, 32513, 0, 0, 0, 1, 1, 1, 1, 'Wristbands of Divine Influence'),
|
|
(34073, 32280, 0, 0, 0, 1, 1, 1, 1, 'Gauntlets of Enforcement'),
|
|
(34073, 32323, 0, 0, 0, 1, 1, 1, 1, 'Shadowmoon Destroyer\'s Drape'),
|
|
(34073, 32324, 0, 0, 0, 1, 1, 1, 1, 'Insidious Bands'),
|
|
(34073, 32325, 0, 0, 0, 1, 1, 1, 1, 'Rifle of the Stoic Guardian'),
|
|
(34073, 32326, 0, 0, 0, 1, 1, 1, 1, 'Twisted Blades of Zarak'),
|
|
(34073, 32327, 0, 0, 0, 1, 1, 1, 1, 'Robe of the Shadow Council'),
|
|
(34073, 32328, 0, 0, 0, 1, 1, 1, 1, 'Botanist\'s Gloves of Growth'),
|
|
(34073, 32329, 0, 0, 0, 1, 1, 1, 1, 'Cowl of Benevolence'),
|
|
(34073, 32330, 0, 0, 0, 1, 1, 1, 1, 'Totem of Ancestral Guidance'),
|
|
(34073, 32348, 0, 0, 0, 1, 1, 1, 1, 'Soul Cleaver'),
|
|
(34073, 32510, 0, 0, 0, 1, 1, 1, 1, 'Softstep Boots of Tracking'),
|
|
(34073, 32512, 0, 0, 0, 1, 1, 1, 1, 'Girdle of Lordaeron\'s Fallen'),
|
|
(34074, 32269, 0, 0, 0, 1, 1, 1, 1, 'Messenger of Fate'),
|
|
(34074, 32333, 0, 0, 0, 1, 1, 1, 1, 'Girdle of Stability'),
|
|
(34074, 32334, 0, 0, 0, 1, 1, 1, 1, 'Vest of Mounting Assault'),
|
|
(34074, 32335, 0, 0, 0, 1, 1, 1, 1, 'Unstoppable Aggressor\'s Ring'),
|
|
(34074, 32337, 0, 0, 0, 1, 1, 1, 1, 'Shroud of Forgiveness'),
|
|
(34074, 32338, 0, 0, 0, 1, 1, 1, 1, 'Blood-cursed Shoulderpads'),
|
|
(34074, 32339, 0, 0, 0, 1, 1, 1, 1, 'Belt of Primal Majesty'),
|
|
(34074, 32340, 0, 0, 0, 1, 1, 1, 1, 'Garments of Temperance'),
|
|
(34074, 32341, 0, 0, 0, 1, 1, 1, 1, 'Leggings of Divine Retribution'),
|
|
(34074, 32342, 0, 0, 0, 1, 1, 1, 1, 'Girdle of Mighty Resolve'),
|
|
(34074, 32343, 0, 0, 0, 1, 1, 1, 1, 'Wand of Prismatic Focus'),
|
|
(34074, 32344, 0, 0, 0, 1, 1, 1, 1, 'Staff of Immaculate Recovery'),
|
|
(34074, 32501, 0, 0, 0, 1, 1, 1, 1, 'Shadowmoon Insignia'),
|
|
(34075, 32332, 0, 0, 0, 1, 1, 1, 1, 'Torch of the Damned'),
|
|
(34075, 32345, 0, 0, 0, 1, 1, 1, 1, 'Dreadboots of the Legion'),
|
|
(34075, 32346, 0, 0, 0, 1, 1, 1, 1, 'Boneweave Girdle'),
|
|
(34075, 32347, 0, 0, 0, 1, 1, 1, 1, 'Grips of Damnation'),
|
|
(34075, 32349, 0, 0, 0, 1, 1, 1, 1, 'Translucent Spellthread Necklace'),
|
|
(34075, 32350, 0, 0, 0, 1, 1, 1, 1, 'Touch of Inspiration'),
|
|
(34075, 32351, 0, 0, 0, 1, 1, 1, 1, 'Elunite Empowered Bracers'),
|
|
(34075, 32352, 0, 0, 0, 1, 1, 1, 1, 'Naturewarden\'s Treads'),
|
|
(34075, 32353, 0, 0, 0, 1, 1, 1, 1, 'Gloves of Unfailing Faith'),
|
|
(34075, 32354, 0, 0, 0, 1, 1, 1, 1, 'Crown of Empowered Fate'),
|
|
(34075, 32362, 0, 0, 0, 1, 1, 1, 1, 'Pendant of Titans'),
|
|
(34075, 32363, 0, 0, 0, 1, 1, 1, 1, 'Naaru-Blessed Life Rod'),
|
|
(34075, 32517, 0, 0, 0, 1, 1, 1, 1, 'The Wavemender\'s Mantle'),
|
|
(34076, 31101, 0, 0, 0, 1, 1, 1, 1, 'Pauldrons of the Forgotten Conqueror'),
|
|
(34076, 31102, 0, 0, 0, 1, 1, 1, 1, 'Pauldrons of the Forgotten Vanquisher'),
|
|
(34076, 31103, 0, 0, 0, 1, 1, 1, 1, 'Pauldrons of the Forgotten Protector'),
|
|
(34077, 31089, 0, 0, 0, 1, 1, 1, 1, 'Chestguard of the Forgotten Conqueror'),
|
|
(34077, 31090, 0, 0, 0, 1, 1, 1, 1, 'Chestguard of the Forgotten Vanquisher'),
|
|
(34077, 31091, 0, 0, 0, 1, 1, 1, 1, 'Chestguard of the Forgotten Protector'),
|
|
(34077, 32235, 0, 0, 0, 1, 2, 1, 1, 'Cursed Vision of Sargeras'),
|
|
(34077, 32336, 0, 0, 0, 1, 2, 1, 1, 'Black Bow of the Betrayer'),
|
|
(34077, 32374, 0, 0, 0, 1, 2, 1, 1, 'Zhar\'doom, Greatstaff of the Devourer'),
|
|
(34077, 32375, 0, 0, 0, 1, 2, 1, 1, 'Bulwark of Azzinoth'),
|
|
(34077, 32471, 0, 0, 0, 1, 2, 1, 1, 'Shard of Azzinoth'),
|
|
(34077, 32483, 0, 0, 0, 1, 2, 1, 1, 'The Skull of Gul\'dan'),
|
|
(34077, 32496, 0, 0, 0, 1, 2, 1, 1, 'Memento of Tyrande'),
|
|
(34077, 32497, 0, 0, 0, 1, 2, 1, 1, 'Stormrage Signet Ring'),
|
|
(34077, 32500, 0, 0, 0, 1, 2, 1, 1, 'Crystal Spire of Karabor'),
|
|
(34077, 32521, 0, 0, 0, 1, 2, 1, 1, 'Faceplate of the Impenetrable'),
|
|
(34077, 32524, 0, 0, 0, 1, 2, 1, 1, 'Shroud of the Highborne'),
|
|
(34077, 32525, 0, 0, 0, 1, 2, 1, 1, 'Cowl of the Illidari High Lord'),
|
|
(34078, 33298, 0, 0, 0, 1, 1, 1, 1, 'Prowler\'s Strikeblade'),
|
|
(34078, 33388, 0, 0, 0, 1, 1, 1, 1, 'Heartless'),
|
|
(34078, 33389, 0, 0, 0, 1, 1, 1, 1, 'Dagger of Bad Mojo'),
|
|
(34078, 33421, 0, 0, 0, 1, 1, 1, 1, 'Battleworn Tuskguard'),
|
|
(34078, 33432, 0, 0, 0, 1, 1, 1, 1, 'Coif of the Jungle Stalker'),
|
|
(34078, 33446, 0, 0, 0, 1, 1, 1, 1, 'Girdle of Stromgarde\'s Hope'),
|
|
(34078, 33453, 0, 0, 0, 1, 1, 1, 1, 'Hood of Hexing'),
|
|
(34078, 33463, 0, 0, 0, 1, 1, 1, 1, 'Hood of the Third Eye'),
|
|
(34078, 33464, 0, 0, 0, 1, 1, 1, 1, 'Hex Lord\'s Voodoo Pauldrons'),
|
|
(34078, 33465, 0, 0, 0, 1, 1, 1, 1, 'Staff of Primal Fury'),
|
|
(34078, 33592, 0, 0, 0, 1, 1, 1, 1, 'Cloak of Ancient Rituals'),
|
|
(34078, 33828, 0, 0, 0, 1, 1, 1, 1, 'Tome of Diabolic Remedy'),
|
|
(34078, 33829, 0, 0, 0, 1, 1, 1, 1, 'Hex Shrunken Head'),
|
|
(34078, 34029, 0, 0, 0, 1, 1, 1, 1, 'Tiny Voodoo Mask'),
|
|
(34079, 33466, 0, 0, 0, 1, 1, 1, 1, 'Loop of Cursed Bones'),
|
|
(34079, 33467, 0, 0, 0, 1, 1, 1, 1, 'Blade of Twisted Visions'),
|
|
(34079, 33468, 0, 0, 0, 1, 1, 1, 1, 'Dark Blessing'),
|
|
(34079, 33469, 0, 0, 0, 1, 1, 1, 1, 'Hauberk of the Empire\'s Champion'),
|
|
(34079, 33471, 0, 0, 0, 1, 1, 1, 1, 'Two-toed Sandals'),
|
|
(34079, 33473, 0, 0, 0, 1, 1, 1, 1, 'Chestguard of the Warlord'),
|
|
(34079, 33474, 0, 0, 0, 1, 1, 1, 1, 'Ancient Amani Longbow'),
|
|
(34079, 33476, 0, 0, 0, 1, 1, 1, 1, 'Cleaver of the Unforgiving'),
|
|
(34079, 33478, 0, 0, 0, 1, 1, 1, 1, 'Jin\'rohk, The Great Apocalypse'),
|
|
(34079, 33479, 0, 0, 0, 1, 1, 1, 1, 'Grimgrin Faceguard'),
|
|
(34079, 33830, 0, 0, 0, 1, 1, 1, 1, 'Ancient Aqir Artifact'),
|
|
(34079, 33831, 0, 0, 0, 1, 1, 1, 1, 'Berserker\'s Call'),
|
|
(34080, 30722, 0, 0, 0, 1, 1, 1, 1, 'Ethereum Nexus-Reaver'),
|
|
(34080, 30723, 0, 0, 0, 1, 1, 1, 1, 'Talon of the Tempest'),
|
|
(34080, 30724, 0, 0, 0, 1, 1, 1, 1, 'Barrel-Blade Longrifle'),
|
|
(34080, 30725, 0, 0, 0, 1, 1, 1, 1, 'Anger-Spark Gloves'),
|
|
(34080, 30726, 0, 0, 0, 1, 1, 1, 1, 'Archaic Charm of Presence'),
|
|
(34080, 30727, 0, 0, 0, 1, 1, 1, 1, 'Gilded Trousers of Benediction'),
|
|
(34080, 30728, 0, 0, 0, 1, 1, 1, 1, 'Fathom-Helm of the Deeps'),
|
|
(34080, 30729, 0, 0, 0, 1, 1, 1, 1, 'Black-Iron Battlecloak'),
|
|
(34080, 30730, 0, 0, 0, 1, 1, 1, 1, 'Terrorweave Tunic'),
|
|
(34080, 30731, 0, 0, 0, 1, 1, 1, 1, 'Faceguard of the Endless Watch'),
|
|
(34082, 34848, 0, 0, 0, 1, 1, 1, 1, 'Bracers of the Forgotten Conqueror'),
|
|
(34082, 34851, 0, 0, 0, 1, 1, 1, 1, 'Bracers of the Forgotten Protector'),
|
|
(34082, 34852, 0, 0, 0, 1, 1, 1, 1, 'Bracers of the Forgotten Vanquisher'),
|
|
(34083, 34853, 0, 0, 0, 1, 1, 1, 1, 'Belt of the Forgotten Conqueror'),
|
|
(34083, 34854, 0, 0, 0, 1, 1, 1, 1, 'Belt of the Forgotten Protector'),
|
|
(34083, 34855, 0, 0, 0, 1, 1, 1, 1, 'Belt of the Forgotten Vanquisher'),
|
|
(34084, 34856, 0, 0, 0, 1, 1, 1, 1, 'Boots of the Forgotten Conqueror'),
|
|
(34084, 34857, 0, 0, 0, 1, 1, 1, 1, 'Boots of the Forgotten Protector'),
|
|
(34084, 34858, 0, 0, 0, 1, 1, 1, 1, 'Boots of the Forgotten Vanquisher'),
|
|
(34085, 34189, 0, 0, 0, 1, 1, 1, 1, 'Band of Ruinous Delight'),
|
|
(34085, 34190, 0, 0, 0, 1, 1, 1, 1, 'Crimson Paragon\'s Cover'),
|
|
(34085, 34192, 0, 0, 0, 1, 1, 1, 1, 'Pauldrons of Perseverance'),
|
|
(34085, 34193, 0, 0, 0, 1, 1, 1, 1, 'Spaulders of the Thalassian Savior'),
|
|
(34085, 34194, 0, 0, 0, 1, 1, 1, 1, 'Mantle of the Golden Forest'),
|
|
(34085, 34195, 0, 0, 0, 1, 1, 1, 1, 'Shoulderpads of Vehemence'),
|
|
(34085, 34196, 0, 0, 0, 1, 1, 1, 1, 'Golden Bow of Quel\'Thalas'),
|
|
(34085, 34197, 0, 0, 0, 1, 1, 1, 1, 'Shiv of Exsanguination'),
|
|
(34085, 34198, 0, 0, 0, 1, 1, 1, 1, 'Stanchion of Primal Instinct'),
|
|
(34085, 34199, 0, 0, 0, 1, 1, 1, 1, 'Archon\'s Gavel'),
|
|
(34085, 34202, 0, 0, 0, 1, 1, 1, 1, 'Shawl of Wonderment'),
|
|
(34085, 34203, 0, 0, 0, 1, 1, 1, 1, 'Grip of Mannoroth'),
|
|
(34085, 34204, 0, 0, 0, 1, 1, 1, 1, 'Amulet of Unfettered Magics'),
|
|
(34085, 34205, 0, 0, 0, 1, 1, 1, 1, 'Shroud of Redeemed Souls'),
|
|
(34085, 34206, 0, 0, 0, 1, 1, 1, 1, 'Book of Highborne Hymns'),
|
|
(34085, 34208, 0, 0, 0, 1, 1, 1, 1, 'Equilibrium Epaulets'),
|
|
(34085, 34210, 0, 0, 0, 1, 1, 1, 1, 'Amice of the Convoker'),
|
|
(34086, 19716, 0, 0, 0, 1, 1, 1, 1, 'Primal Hakkari Bindings'),
|
|
(34086, 19717, 0, 0, 0, 1, 1, 1, 1, 'Primal Hakkari Armsplint'),
|
|
(34086, 19718, 0, 0, 0, 1, 1, 1, 1, 'Primal Hakkari Stanchion'),
|
|
(34086, 19719, 0, 0, 0, 1, 1, 1, 1, 'Primal Hakkari Girdle'),
|
|
(34086, 19720, 0, 0, 0, 1, 1, 1, 1, 'Primal Hakkari Sash'),
|
|
(34086, 19721, 0, 0, 0, 1, 1, 1, 1, 'Primal Hakkari Shawl'),
|
|
(34086, 19722, 0, 3, 0, 1, 1, 1, 1, 'Primal Hakkari Tabard'),
|
|
(34086, 19723, 0, 3, 0, 1, 1, 1, 1, 'Primal Hakkari Kossack'),
|
|
(34086, 19724, 0, 3, 0, 1, 1, 1, 1, 'Primal Hakkari Aegis'),
|
|
(34087, 19716, 0, 0, 0, 1, 1, 1, 1, 'Primal Hakkari Bindings'),
|
|
(34087, 19717, 0, 0, 0, 1, 1, 1, 1, 'Primal Hakkari Armsplint'),
|
|
(34087, 19718, 0, 0, 0, 1, 1, 1, 1, 'Primal Hakkari Stanchion'),
|
|
(34087, 19719, 0, 0, 0, 1, 1, 1, 1, 'Primal Hakkari Girdle'),
|
|
(34087, 19720, 0, 0, 0, 1, 1, 1, 1, 'Primal Hakkari Sash'),
|
|
(34087, 19721, 0, 0, 0, 1, 1, 1, 1, 'Primal Hakkari Shawl'),
|
|
(34087, 19722, 0, 15, 0, 1, 1, 1, 1, 'Primal Hakkari Tabard'),
|
|
(34087, 19723, 0, 15, 0, 1, 1, 1, 1, 'Primal Hakkari Kossack'),
|
|
(34087, 19724, 0, 15, 0, 1, 1, 1, 1, 'Primal Hakkari Aegis'),
|
|
(34088, 19863, 0, 0, 0, 1, 1, 1, 1, 'Primalist\'s Seal'),
|
|
(34088, 19866, 0, 0, 0, 1, 1, 1, 1, 'Warblade of the Hakkari'),
|
|
(34088, 19867, 0, 0, 0, 1, 1, 1, 1, 'Bloodlord\'s Defender'),
|
|
(34088, 19869, 0, 0, 0, 1, 1, 1, 1, 'Blooddrenched Grips'),
|
|
(34088, 19870, 0, 0, 0, 1, 1, 1, 1, 'Hakkari Loa Cloak'),
|
|
(34088, 19873, 0, 0, 0, 1, 1, 1, 1, 'Overlord\'s Crimson Band'),
|
|
(34088, 19874, 0, 0, 0, 1, 1, 1, 1, 'Halberd of Smiting'),
|
|
(34088, 19877, 0, 0, 0, 1, 1, 1, 1, 'Animist\'s Leggings'),
|
|
(34088, 19878, 0, 0, 0, 1, 1, 1, 1, 'Bloodsoaked Pauldrons'),
|
|
(34088, 19893, 0, 0, 0, 1, 1, 1, 1, 'Zanzil\'s Seal'),
|
|
(34088, 19895, 0, 0, 0, 1, 1, 1, 1, 'Bloodtinged Kilt'),
|
|
(34088, 20038, 0, 0, 0, 1, 1, 1, 1, 'Mandokir\'s Sting'),
|
|
(34089, 19884, 0, 0, 0, 1, 1, 1, 1, 'Jin\'do\'s Judgement'),
|
|
(34089, 19885, 0, 0, 0, 1, 1, 1, 1, 'Jin\'do\'s Evil Eye'),
|
|
(34089, 19886, 0, 0, 0, 1, 1, 1, 1, 'The Hexxer\'s Cover'),
|
|
(34089, 19887, 0, 0, 0, 1, 1, 1, 1, 'Bloodstained Legplates'),
|
|
(34089, 19888, 0, 0, 0, 1, 1, 1, 1, 'Overlord\'s Embrace'),
|
|
(34089, 19889, 0, 0, 0, 1, 1, 1, 1, 'Blooddrenched Leggings'),
|
|
(34089, 19890, 0, 0, 0, 1, 1, 1, 1, 'Jin\'do\'s Hexxer'),
|
|
(34089, 19891, 0, 0, 0, 1, 1, 1, 1, 'Jin\'do\'s Bag of Whammies'),
|
|
(34089, 19892, 0, 0, 0, 1, 1, 1, 1, 'Animist\'s Boots'),
|
|
(34089, 19894, 0, 0, 0, 1, 1, 1, 1, 'Bloodsoaked Gauntlets'),
|
|
(34089, 19929, 0, 0, 0, 1, 1, 1, 1, 'Bloodtinged Gloves'),
|
|
(34090, 19854, 0, 0, 0, 1, 1, 1, 1, 'Zin\'rokh, Destroyer of Worlds'),
|
|
(34090, 19855, 0, 0, 0, 1, 1, 1, 1, 'Bloodsoaked Legplates'),
|
|
(34090, 19859, 0, 0, 0, 1, 1, 1, 1, 'Fang of the Faceless'),
|
|
(34090, 19861, 0, 0, 0, 1, 1, 1, 1, 'Touch of Chaos'),
|
|
(34090, 19862, 0, 0, 0, 1, 1, 1, 1, 'Aegis of the Blood God'),
|
|
(34090, 19865, 0, 0, 0, 1, 1, 1, 1, 'Warblade of the Hakkari'),
|
|
(34090, 19876, 0, 0, 0, 1, 1, 1, 1, 'Soul Corrupter\'s Necklace'),
|
|
(34091, 35198, 0, 0, 0, 1, 1, 1, 1, 'Design: Loop of Forged Power'),
|
|
(34091, 35199, 0, 0, 0, 1, 1, 1, 1, 'Design: Ring of Flowing Life'),
|
|
(34091, 35200, 0, 0, 0, 1, 1, 1, 1, 'Design: Hard Khorium Band'),
|
|
(34091, 35204, 0, 0, 0, 1, 1, 1, 1, 'Pattern: Sunfire Handwraps'),
|
|
(34091, 35205, 0, 0, 0, 1, 1, 1, 1, 'Pattern: Hands of Eternal Light'),
|
|
(34091, 35208, 0, 0, 0, 1, 1, 1, 1, 'Plans: Sunblessed Gauntlets'),
|
|
(34091, 35212, 0, 0, 0, 1, 1, 1, 1, 'Pattern: Leather Gauntlets of the Sun'),
|
|
(34091, 35214, 0, 0, 0, 1, 1, 1, 1, 'Pattern: Gloves of Immortal Dusk'),
|
|
(34091, 35215, 0, 0, 0, 1, 1, 1, 1, 'Pattern: Sun-Drenched Scale Gloves'),
|
|
(34091, 35273, 0, 0, 0, 1, 1, 1, 1, 'Study of Advanced Smelting'),
|
|
(34092, 35186, 0, 0, 0, 1, 1, 1, 1, 'Schematic: Annihilator Holo-Gogs'),
|
|
(34092, 35187, 0, 0, 0, 1, 1, 1, 1, 'Schematic: Justicebringer 3000 Specs'),
|
|
(34092, 35189, 0, 0, 0, 1, 1, 1, 1, 'Schematic: Powerheal 9000 Lens'),
|
|
(34092, 35190, 0, 0, 0, 1, 1, 1, 1, 'Schematic: Hyper-Magnified Moon Specs'),
|
|
(34092, 35191, 0, 0, 0, 1, 1, 1, 1, 'Schematic: Wonderheal XT68 Shades'),
|
|
(34092, 35192, 0, 0, 0, 1, 1, 1, 1, 'Schematic: Primal-Attuned Goggles'),
|
|
(34092, 35193, 0, 0, 0, 1, 1, 1, 1, 'Schematic: Lightning Etched Specs'),
|
|
(34092, 35194, 0, 0, 0, 1, 1, 1, 1, 'Schematic: Surestrike Goggles v3.0'),
|
|
(34092, 35195, 0, 0, 0, 1, 1, 1, 1, 'Schematic: Mayhem Projection Goggles'),
|
|
(34092, 35196, 0, 0, 0, 1, 1, 1, 1, 'Schematic: Hard Khorium Goggles'),
|
|
(34092, 35197, 0, 0, 0, 1, 1, 1, 1, 'Schematic: Quad Deathblow X44 Goggles'),
|
|
(34092, 35201, 0, 0, 0, 1, 1, 1, 1, 'Design: Pendant of Sunfire'),
|
|
(34092, 35203, 0, 0, 0, 1, 1, 1, 1, 'Design: Hard Khorium Choker'),
|
|
(34092, 35206, 0, 0, 0, 1, 1, 1, 1, 'Pattern: Sunfire Robe'),
|
|
(34092, 35207, 0, 0, 0, 1, 1, 1, 1, 'Pattern: Robe of Eternal Light'),
|
|
(34092, 35210, 0, 0, 0, 1, 1, 1, 1, 'Plans: Sunblessed Breastplate'),
|
|
(34092, 35211, 0, 0, 0, 1, 1, 1, 1, 'Plans: Hard Khorium Battleplate'),
|
|
(34092, 35216, 0, 0, 0, 1, 1, 1, 1, 'Pattern: Leather Chestguard of the Sun'),
|
|
(34092, 35217, 0, 0, 0, 1, 1, 1, 1, 'Pattern: Embrace of the Phoenix'),
|
|
(34092, 35218, 0, 0, 0, 1, 1, 1, 1, 'Pattern: Carapace of Sun and Shadow'),
|
|
(34092, 35219, 0, 0, 0, 1, 1, 1, 1, 'Pattern: Sun-Drenched Scale Chestguard'),
|
|
(34093, 32227, 0, 0, 0, 1, 1, 1, 1, 'Crimson Spinel'),
|
|
(34093, 32228, 0, 0, 0, 1, 1, 1, 1, 'Empyrean Sapphire'),
|
|
(34093, 32229, 0, 0, 0, 1, 1, 1, 1, 'Lionseye'),
|
|
(34093, 32230, 0, 0, 0, 1, 1, 1, 1, 'Shadowsong Amethyst'),
|
|
(34093, 32231, 0, 0, 0, 1, 1, 1, 1, 'Pyrestone'),
|
|
(34093, 32249, 0, 0, 0, 1, 1, 1, 1, 'Seaspray Emerald'),
|
|
(34094, 34183, 0, 0, 0, 1, 1, 1, 1, 'Shivering Felspine'),
|
|
(34094, 34346, 0, 0, 0, 1, 1, 1, 1, 'Mounting Vengeance'),
|
|
(34094, 34347, 0, 0, 0, 1, 1, 1, 1, 'Wand of the Demonsoul'),
|
|
(34094, 34348, 0, 0, 0, 1, 1, 1, 1, 'Wand of Cleansing Light'),
|
|
(34094, 34349, 0, 0, 0, 1, 1, 1, 1, 'Blade of Life\'s Inevitability'),
|
|
(34094, 34350, 0, 0, 0, 1, 1, 1, 1, 'Gauntlets of the Ancient Shadowmoon'),
|
|
(34094, 34351, 0, 0, 0, 1, 1, 1, 1, 'Tranquil Majesty Wraps'),
|
|
(34094, 35733, 0, 0, 0, 1, 1, 1, 1, 'Ring of Harmonic Beauty'),
|
|
(34095, 34211, 0, 0, 0, 1, 1, 1, 1, 'Harness of Carnal Instinct'),
|
|
(34095, 34213, 0, 0, 0, 1, 1, 1, 1, 'Ring of Hardened Resolve'),
|
|
(34095, 34214, 0, 0, 0, 1, 1, 1, 1, 'Muramasa'),
|
|
(34095, 34215, 0, 0, 0, 1, 1, 1, 1, 'Warharness of Reckless Fury'),
|
|
(34095, 34216, 0, 0, 0, 1, 1, 1, 1, 'Heroic Judicator\'s Chestguard'),
|
|
(34095, 34228, 0, 0, 0, 1, 1, 1, 1, 'Vicious Hawkstrider Hauberk'),
|
|
(34095, 34229, 0, 0, 0, 1, 1, 1, 1, 'Garments of Serene Shores'),
|
|
(34095, 34230, 0, 0, 0, 1, 1, 1, 1, 'Ring of Omnipotence'),
|
|
(34095, 34231, 0, 0, 0, 1, 1, 1, 1, 'Aegis of Angelic Fortune'),
|
|
(34095, 34232, 0, 0, 0, 1, 1, 1, 1, 'Fel Conquerer Raiments'),
|
|
(34095, 34233, 0, 0, 0, 1, 1, 1, 1, 'Robes of Faltered Light'),
|
|
(34095, 34234, 0, 0, 0, 1, 1, 1, 1, 'Shadowed Gauntlets of Paroxysm'),
|
|
(34095, 34240, 0, 0, 0, 1, 1, 1, 1, 'Gauntlets of the Soothed Soul'),
|
|
(34095, 34427, 0, 0, 0, 1, 1, 1, 1, 'Blackened Naaru Sliver'),
|
|
(34095, 34428, 0, 0, 0, 1, 1, 1, 1, 'Steely Naaru Sliver'),
|
|
(34095, 34429, 0, 0, 0, 1, 1, 1, 1, 'Shifting Naaru Sliver'),
|
|
(34095, 34430, 0, 0, 0, 1, 1, 1, 1, 'Glimmering Naaru Sliver'),
|
|
(34096, 34241, 0, 0, 0, 1, 1, 1, 1, 'Cloak of Unforgivable Sin'),
|
|
(34096, 34242, 0, 0, 0, 1, 1, 1, 1, 'Tattered Cape of Antonidas'),
|
|
(34096, 34243, 0, 0, 0, 1, 1, 1, 1, 'Helm of Burning Righteousness'),
|
|
(34096, 34244, 0, 0, 0, 1, 1, 1, 1, 'Duplicitous Guise'),
|
|
(34096, 34245, 0, 0, 0, 1, 1, 1, 1, 'Cover of Ursol the Wise'),
|
|
(34096, 34332, 0, 0, 0, 1, 1, 1, 1, 'Cowl of Gul\'dan'),
|
|
(34096, 34333, 0, 0, 0, 1, 1, 1, 1, 'Coif of Alleria'),
|
|
(34096, 34339, 0, 0, 0, 1, 1, 1, 1, 'Cowl of Light\'s Purity'),
|
|
(34096, 34340, 0, 0, 0, 1, 1, 1, 1, 'Dark Conjuror\'s Collar'),
|
|
(34096, 34341, 0, 0, 0, 1, 1, 1, 1, 'Borderland Paingrips'),
|
|
(34096, 34342, 0, 0, 0, 1, 1, 1, 1, 'Handguards of the Dawn'),
|
|
(34096, 34343, 0, 0, 0, 1, 1, 1, 1, 'Thalassian Ranger Gauntlets'),
|
|
(34096, 34344, 0, 0, 0, 1, 1, 1, 1, 'Handguards of Defiled Worlds'),
|
|
(34096, 34345, 0, 0, 0, 1, 1, 1, 1, 'Crown of Anasterian'),
|
|
(34098, 39139, 0, 0, 0, 1, 1, 1, 1, 'Ravaging Sabatons'),
|
|
(34098, 39140, 0, 0, 0, 1, 1, 1, 1, 'Knife of Incision'),
|
|
(34098, 39141, 0, 0, 0, 1, 1, 1, 1, 'Deflection Band'),
|
|
(34098, 39146, 0, 0, 0, 1, 1, 1, 1, 'Collar of Dissolution'),
|
|
(34098, 39188, 0, 0, 0, 1, 1, 1, 1, 'Chivalric Chestguard'),
|
|
(34098, 39189, 0, 0, 0, 1, 1, 1, 1, 'Boots of Persistence'),
|
|
(34098, 39190, 0, 0, 0, 1, 1, 1, 1, 'Agonal Sash'),
|
|
(34098, 39191, 0, 0, 0, 1, 1, 1, 1, 'Splint-Bound Leggings'),
|
|
(34098, 39192, 0, 0, 0, 1, 1, 1, 1, 'Gloves of Dark Gestures'),
|
|
(34098, 39193, 0, 0, 0, 1, 1, 1, 1, 'Band of Neglected Pleas'),
|
|
(34099, 39194, 0, 0, 0, 1, 1, 1, 1, 'Rusted-Link Spiked Gauntlets'),
|
|
(34099, 39195, 0, 0, 0, 1, 1, 1, 1, 'Bracers of Lost Sentiments'),
|
|
(34099, 39196, 0, 0, 0, 1, 1, 1, 1, 'Boots of the Worshiper'),
|
|
(34099, 39197, 0, 0, 0, 1, 1, 1, 1, 'Gauntlets of the Master'),
|
|
(34099, 39198, 0, 0, 0, 1, 1, 1, 1, 'Frostblight Pauldrons'),
|
|
(34099, 39199, 0, 0, 0, 1, 1, 1, 1, 'Watchful Eye'),
|
|
(34099, 39200, 0, 0, 0, 1, 1, 1, 1, 'Grieving Spellblade'),
|
|
(34099, 39215, 0, 0, 0, 1, 1, 1, 1, 'Boots of the Follower'),
|
|
(34099, 39216, 0, 0, 0, 1, 1, 1, 1, 'Sash of Mortal Desire'),
|
|
(34099, 39217, 0, 0, 0, 1, 1, 1, 1, 'Avenging Combat Leggings'),
|
|
(34100, 39261, 0, 0, 0, 1, 1, 1, 1, 'Tainted Girdle of Mending'),
|
|
(34100, 39262, 0, 0, 0, 1, 1, 1, 1, 'Gauntlets of Combined Strength'),
|
|
(34100, 39267, 0, 0, 0, 1, 1, 1, 1, 'Abomination Shoulderblades'),
|
|
(34100, 39270, 0, 0, 0, 1, 1, 1, 1, 'Hatestrike'),
|
|
(34100, 39271, 0, 0, 0, 1, 1, 1, 1, 'Blade of Dormant Memories'),
|
|
(34100, 39272, 0, 0, 0, 1, 1, 1, 1, 'Drape of Surgery'),
|
|
(34100, 39273, 0, 0, 0, 1, 1, 1, 1, 'Sullen Cloth Boots'),
|
|
(34100, 39274, 0, 0, 0, 1, 1, 1, 1, 'Retcher\'s Shoulderpads'),
|
|
(34100, 39275, 0, 0, 0, 1, 1, 1, 1, 'Contagion Gloves'),
|
|
(34101, 39276, 0, 0, 0, 1, 1, 1, 1, 'The Skull of Ruin'),
|
|
(34101, 39277, 0, 0, 0, 1, 1, 1, 1, 'Sealing Ring of Grobbulus'),
|
|
(34101, 39278, 0, 0, 0, 1, 1, 1, 1, 'Bands of Anxiety'),
|
|
(34101, 39279, 0, 0, 0, 1, 1, 1, 1, 'Blistered Belt of Decay'),
|
|
(34101, 39280, 0, 0, 0, 1, 1, 1, 1, 'Leggings of Innumerable Barbs'),
|
|
(34101, 39281, 0, 0, 0, 1, 1, 1, 1, 'Infection Repulser'),
|
|
(34101, 39282, 0, 0, 0, 1, 1, 1, 1, 'Bone-Linked Amulet'),
|
|
(34101, 39283, 0, 0, 0, 1, 1, 1, 1, 'Putrescent Bands'),
|
|
(34101, 39284, 0, 0, 0, 1, 1, 1, 1, 'Miasma Mantle'),
|
|
(34101, 39285, 0, 0, 0, 1, 1, 1, 1, 'Handgrips of Turmoil'),
|
|
(34102, 39296, 0, 0, 0, 1, 1, 1, 1, 'Accursed Bow of the Elite'),
|
|
(34102, 39297, 0, 0, 0, 1, 1, 1, 1, 'Cloak of Darkening'),
|
|
(34102, 39298, 0, 0, 0, 1, 1, 1, 1, 'Waistguard of the Tutor'),
|
|
(34102, 39299, 0, 0, 0, 1, 1, 1, 1, 'Rapid Attack Gloves'),
|
|
(34102, 39306, 0, 0, 0, 1, 1, 1, 1, 'Plated Gloves of Relief'),
|
|
(34102, 39307, 0, 0, 0, 1, 1, 1, 1, 'Iron Rings of Endurance'),
|
|
(34102, 39308, 0, 0, 0, 1, 1, 1, 1, 'Girdle of Lenience'),
|
|
(34102, 39309, 0, 0, 0, 1, 1, 1, 1, 'Leggings of the Instructor'),
|
|
(34102, 39310, 0, 0, 0, 1, 1, 1, 1, 'Mantle of the Extensive Mind'),
|
|
(34102, 39311, 0, 0, 0, 1, 1, 1, 1, 'Scepter of Murmuring Spirits'),
|
|
(34103, 39344, 0, 0, 0, 1, 1, 1, 1, 'Slayer of the Lifeless'),
|
|
(34103, 39345, 0, 0, 0, 1, 1, 1, 1, 'Girdle of the Ascended Phantom'),
|
|
(34103, 39369, 0, 0, 0, 1, 1, 1, 1, 'Sabatons of Deathlike Gloom'),
|
|
(34103, 39379, 0, 0, 0, 1, 1, 1, 1, 'Spectral Rider\'s Girdle'),
|
|
(34103, 39386, 0, 0, 0, 1, 1, 1, 1, 'Tunic of Dislocation'),
|
|
(34103, 39388, 0, 0, 0, 1, 1, 1, 1, 'Spirit-World Glass'),
|
|
(34103, 39389, 0, 0, 0, 1, 1, 1, 1, 'Signet of the Malevolent'),
|
|
(34103, 39390, 0, 0, 0, 1, 1, 1, 1, 'Resurgent Phantom Bindings'),
|
|
(34103, 39391, 0, 0, 0, 1, 1, 1, 1, 'Heinous Mail Chestguard'),
|
|
(34103, 39392, 0, 0, 0, 1, 1, 1, 1, 'Veiled Amulet of Life'),
|
|
(34106, 33365, 0, 0, 0, 1, 1, 1, 1, 'Frost-Rimed Cloth Belt'),
|
|
(34106, 33370, 0, 0, 0, 1, 1, 1, 1, 'Frost-Rimed Cloth Shoulderpads'),
|
|
(34106, 33379, 0, 0, 0, 1, 1, 1, 1, 'Frozen Armor'),
|
|
(34106, 33403, 0, 0, 0, 1, 1, 1, 1, 'Frigid Mail Shoulderpads'),
|
|
(34106, 33422, 0, 0, 0, 1, 1, 1, 1, 'Shattered Bow'),
|
|
(34106, 33424, 0, 0, 0, 1, 1, 1, 1, 'Cracked Iron Staff'),
|
|
(34106, 39220, 0, 0, 0, 1, 1, 1, 8, 'Geodesic Fragments'),
|
|
(34106, 43852, 0, 0, 0, 1, 1, 1, 1, 'Thick Fur Clothing Scraps'),
|
|
(34107, 33445, 0, 0, 0, 1, 1, 1, 1, 'Honeymint Tea'),
|
|
(34107, 33454, 0, 0, 0, 1, 1, 1, 1, 'Salted Venison'),
|
|
(34107, 33470, 0, 0, 0, 1, 1, 2, 7, 'Frostweave Cloth'),
|
|
(34107, 34054, 0, 0, 0, 1, 1, 1, 1, 'Infinite Dust'),
|
|
(34107, 37701, 0, 0, 0, 1, 1, 1, 2, 'Crystallized Earth'),
|
|
(34108, 37091, 0, 0, 0, 1, 1, 1, 1, 'Scroll of Intellect VII'),
|
|
(34108, 37092, 0, 0, 0, 1, 1, 1, 1, 'Scroll of Intellect VIII'),
|
|
(34108, 37093, 0, 0, 0, 1, 1, 1, 1, 'Scroll of Stamina VII'),
|
|
(34108, 37094, 0, 0, 0, 1, 1, 1, 1, 'Scroll of Stamina VIII'),
|
|
(34108, 37097, 0, 0, 0, 1, 1, 1, 1, 'Scroll of Spirit VII'),
|
|
(34108, 37098, 0, 0, 0, 1, 1, 1, 1, 'Scroll of Spirit VIII'),
|
|
(34108, 43463, 0, 0, 0, 1, 1, 1, 1, 'Scroll of Agility VII'),
|
|
(34108, 43464, 0, 0, 0, 1, 1, 1, 1, 'Scroll of Agility VIII'),
|
|
(34108, 43465, 0, 0, 0, 1, 1, 1, 1, 'Scroll of Strength VII'),
|
|
(34108, 43466, 0, 0, 0, 1, 1, 1, 1, 'Scroll of Strength VIII'),
|
|
(34109, 36035, 0, 0, 0, 1, 1, 1, 1, 'Condor Belt'),
|
|
(34109, 36043, 0, 0, 0, 1, 1, 1, 1, 'Crystalsong Sash'),
|
|
(34109, 36051, 0, 0, 0, 1, 1, 1, 1, 'Vizier Sash'),
|
|
(34109, 36052, 0, 0, 0, 1, 1, 1, 1, 'Vizier Slippers'),
|
|
(34109, 36059, 0, 0, 0, 1, 1, 1, 1, 'Coldwraith Sash'),
|
|
(34109, 36267, 0, 0, 0, 1, 1, 1, 1, 'Ulduar Girdle'),
|
|
(34109, 36268, 0, 0, 0, 1, 1, 1, 1, 'Ulduar Greaves'),
|
|
(34109, 36270, 0, 0, 0, 1, 1, 1, 1, 'Ulduar Gauntlets'),
|
|
(34109, 36271, 0, 0, 0, 1, 1, 1, 1, 'Ulduar Helm'),
|
|
(34109, 36272, 0, 0, 0, 1, 1, 1, 1, 'Ulduar Legguards'),
|
|
(34109, 36273, 0, 0, 0, 1, 1, 1, 1, 'Ulduar Shoulderguards'),
|
|
(34109, 36274, 0, 0, 0, 1, 1, 1, 1, 'Ulduar Bracers'),
|
|
(34109, 36296, 0, 0, 0, 1, 1, 1, 1, 'Westguard Legplates'),
|
|
(34109, 36394, 0, 0, 0, 1, 1, 1, 1, 'Revenant Bracers'),
|
|
(34109, 43297, 0, 0, 0, 1, 1, 1, 1, 'Damaged Necklace'),
|
|
(34110, 37760, 0, 0, 0, 1, 1, 1, 1, 'Cracklefire Wristguards'),
|
|
(34110, 37761, 0, 0, 0, 1, 1, 1, 1, 'Shimmerthread Girdle'),
|
|
(34110, 37771, 0, 0, 0, 1, 1, 1, 1, 'Wristguards of Verdant Recovery'),
|
|
(34110, 37781, 0, 0, 0, 1, 1, 1, 1, 'Grips of the Warming Heart'),
|
|
(34110, 37794, 0, 0, 0, 1, 1, 1, 1, 'Torta\'s Oversized Choker'),
|
|
(34110, 41777, 0, 0, 0, 1, 1, 1, 1, 'Design: Etched Monarch Topaz'),
|
|
(34110, 41778, 0, 0, 0, 1, 1, 1, 1, 'Design: Resolute Monarch Topaz'),
|
|
(34110, 41779, 0, 0, 0, 1, 1, 1, 1, 'Design: Stalwart Monarch Topaz'),
|
|
(34110, 41780, 0, 0, 0, 1, 1, 1, 1, 'Design: Champion\'s Monarch Topaz'),
|
|
(34110, 41781, 0, 0, 0, 1, 1, 1, 1, 'Design: Misty Forest Emerald'),
|
|
(34110, 41782, 0, 0, 0, 1, 1, 1, 1, 'Design: Shining Forest Emerald'),
|
|
(34110, 41783, 0, 0, 0, 1, 1, 1, 1, 'Design: Purified Twilight Opal'),
|
|
(34110, 41784, 0, 0, 0, 1, 1, 1, 1, 'Design: Sovereign Twilight Opal'),
|
|
(34110, 41785, 0, 0, 0, 1, 1, 1, 1, 'Design: Tenuous Twilight Opal'),
|
|
(34110, 41786, 0, 0, 0, 1, 1, 1, 1, 'Design: Destructive Skyflare Diamond'),
|
|
(34110, 41787, 0, 0, 0, 1, 1, 1, 1, 'Design: Thundering Skyflare Diamond'),
|
|
(34110, 41788, 0, 0, 0, 1, 1, 1, 1, 'Design: Beaming Earthsiege Diamond'),
|
|
(34110, 41789, 0, 0, 0, 1, 1, 1, 1, 'Design: Inscribed Monarch Topaz'),
|
|
(34111, 37254, 0, 0, 0, 1, 1, 1, 1, 'Super Simian Sphere'),
|
|
(34111, 45538, 0, 0, 0, 1, 1, 1, 1, 'Titanstone Pendant'),
|
|
(34111, 46340, 0, 0, 0, 1, 1, 1, 1, 'Adamant Handguards'),
|
|
(34111, 46341, 0, 0, 0, 1, 1, 1, 1, 'Drape of the Spellweaver'),
|
|
(34111, 46342, 0, 0, 0, 1, 1, 1, 1, 'Golemheart Longbow'),
|
|
(34111, 46343, 0, 0, 0, 1, 1, 1, 1, 'Fervor of the Protectorate'),
|
|
(34111, 46344, 0, 0, 0, 1, 1, 1, 1, 'Iceshear Mantle'),
|
|
(34111, 46345, 0, 0, 0, 1, 1, 1, 1, 'Bracers of Righteous Reformation'),
|
|
(34111, 46346, 0, 0, 0, 1, 1, 1, 1, 'Boots of Unsettled Prey'),
|
|
(34111, 46347, 0, 0, 0, 1, 1, 1, 1, 'Cloak of the Dormant Blaze'),
|
|
(34111, 46350, 0, 0, 0, 1, 1, 1, 1, 'Pillar of Fortitude'),
|
|
(34111, 46351, 0, 0, 0, 1, 1, 1, 1, 'Bloodcrush Cudgel'),
|
|
(34112, 1, 34106, 40, 0, 1, 0, 1, 1, '(ReferenceTable)'),
|
|
(34112, 2, 34106, 40, 0, 1, 0, 1, 1, '(ReferenceTable)'),
|
|
(34112, 3, 34107, 20, 0, 1, 0, 1, 1, '(ReferenceTable)'),
|
|
(34112, 4, 34108, 7, 0, 1, 0, 1, 1, '(ReferenceTable)'),
|
|
(34112, 5, 34109, 10, 0, 1, 0, 1, 1, '(ReferenceTable)'),
|
|
(34112, 6, 34110, 3, 0, 1, 0, 1, 1, '(ReferenceTable)'),
|
|
(34112, 7, 34111, 1, 0, 1, 0, 1, 1, '(ReferenceTable)'),
|
|
(34113, 41337, 0, 0, 0, 1, 1, 1, 3, 'Whizzed-Out Gizmo'),
|
|
(34113, 41338, 0, 0, 0, 1, 1, 1, 3, 'Sprung Whirlygig'),
|
|
(34114, 39681, 0, 0, 0, 1, 1, 2, 4, 'Handful of Cobalt Bolts');
|
|
INSERT INTO `reference_loot_template` (`Entry`, `Item`, `Reference`, `Chance`, `QuestRequired`, `LootMode`, `GroupId`, `MinCount`, `MaxCount`, `Comment`) VALUES
|
|
(34114, 39683, 0, 0, 0, 1, 1, 1, 1, 'Froststeel Tube'),
|
|
(34114, 39690, 0, 0, 0, 1, 1, 1, 3, 'Volatile Blasting Trigger'),
|
|
(34115, 1, 34113, 40, 0, 1, 0, 1, 1, '(ReferenceTable)'),
|
|
(34115, 2, 34113, 20, 0, 1, 0, 1, 1, '(ReferenceTable)'),
|
|
(34115, 3, 34114, 20, 0, 1, 0, 1, 1, '(ReferenceTable)'),
|
|
(34133, 40631, 0, 0, 0, 1, 1, 1, 1, 'Crown of the Lost Conqueror'),
|
|
(34133, 40632, 0, 0, 0, 1, 1, 1, 1, 'Crown of the Lost Protector'),
|
|
(34133, 40633, 0, 0, 0, 1, 1, 1, 1, 'Crown of the Lost Vanquisher'),
|
|
(34134, 46037, 0, 0, 0, 1, 1, 1, 1, 'Shoulderplates of the Celestial Watch'),
|
|
(34134, 46038, 0, 0, 0, 1, 1, 1, 1, 'Dark Matter'),
|
|
(34134, 46039, 0, 0, 0, 1, 1, 1, 1, 'Breastplate of the Timeless'),
|
|
(34134, 46040, 0, 0, 0, 1, 1, 1, 1, 'Strength of the Heavens'),
|
|
(34134, 46041, 0, 0, 0, 1, 1, 1, 1, 'Starfall Girdle'),
|
|
(34134, 46042, 0, 0, 0, 1, 1, 1, 1, 'Drape of the Messenger'),
|
|
(34134, 46043, 0, 0, 0, 1, 1, 1, 1, 'Gloves of the Endless Dark'),
|
|
(34134, 46044, 0, 0, 0, 1, 1, 1, 1, 'Observer\'s Mantle'),
|
|
(34134, 46045, 0, 0, 0, 1, 1, 1, 1, 'Pulsar Gloves'),
|
|
(34134, 46046, 0, 0, 0, 1, 1, 1, 1, 'Nebula Band'),
|
|
(34134, 46047, 0, 0, 0, 1, 1, 1, 1, 'Pendant of the Somber Witness'),
|
|
(34134, 46048, 0, 0, 0, 1, 1, 1, 1, 'Band of Lights'),
|
|
(34134, 46049, 0, 0, 0, 1, 1, 1, 1, 'Zodiac Leggings'),
|
|
(34134, 46050, 0, 0, 0, 1, 1, 1, 1, 'Starlight Treads'),
|
|
(34134, 46051, 0, 0, 0, 1, 1, 1, 1, 'Meteorite Crystal'),
|
|
(34135, 40362, 0, 0, 0, 1, 1, 1, 1, 'Gloves of Fast Reactions'),
|
|
(34135, 40363, 0, 0, 0, 1, 1, 1, 1, 'Bone-Inlaid Legguards'),
|
|
(34135, 40365, 0, 0, 0, 1, 1, 1, 1, 'Breastplate of Frozen Pain'),
|
|
(34135, 40366, 0, 0, 0, 1, 1, 1, 1, 'Platehelm of the Great Wyrm'),
|
|
(34135, 40367, 0, 0, 0, 1, 1, 1, 1, 'Boots of the Great Construct'),
|
|
(34135, 40368, 0, 0, 0, 1, 1, 1, 1, 'Murder'),
|
|
(34135, 40369, 0, 0, 0, 1, 1, 1, 1, 'Icy Blast Amulet'),
|
|
(34135, 40370, 0, 0, 0, 1, 1, 1, 1, 'Gatekeeper'),
|
|
(34135, 40371, 0, 0, 0, 1, 1, 1, 1, 'Bandit\'s Insignia'),
|
|
(34135, 40372, 0, 0, 0, 1, 1, 1, 1, 'Rune of Repulsion'),
|
|
(34135, 40373, 0, 0, 0, 1, 1, 1, 1, 'Extract of Necromantic Power'),
|
|
(34135, 40374, 0, 0, 0, 1, 1, 1, 1, 'Cosmic Lights'),
|
|
(34135, 40375, 0, 0, 0, 1, 1, 1, 1, 'Ring of Decaying Beauty'),
|
|
(34135, 40376, 0, 0, 0, 1, 1, 1, 1, 'Legwraps of the Defeated Dragon'),
|
|
(34135, 40377, 0, 0, 0, 1, 1, 1, 1, 'Noble Birthright Pauldrons'),
|
|
(34135, 40378, 0, 0, 0, 1, 1, 1, 1, 'Ceaseless Pity'),
|
|
(34135, 40379, 0, 0, 0, 1, 1, 1, 1, 'Legguards of the Boneyard'),
|
|
(34135, 40380, 0, 0, 0, 1, 1, 1, 1, 'Gloves of Grandeur'),
|
|
(34135, 40381, 0, 0, 0, 1, 1, 1, 1, 'Sympathy'),
|
|
(34135, 40382, 0, 0, 0, 1, 1, 1, 1, 'Soul of the Dead'),
|
|
(34136, 40383, 0, 0, 0, 1, 1, 1, 1, 'Calamity\'s Grasp'),
|
|
(34136, 40384, 0, 0, 0, 1, 1, 1, 1, 'Betrayer of Humanity'),
|
|
(34136, 40385, 0, 0, 0, 1, 1, 1, 1, 'Envoy of Mortality'),
|
|
(34136, 40386, 0, 0, 0, 1, 1, 1, 1, 'Sinister Revenge'),
|
|
(34136, 40387, 0, 0, 0, 1, 1, 1, 1, 'Boundless Ambition'),
|
|
(34136, 40388, 0, 0, 0, 1, 1, 1, 1, 'Journey\'s End'),
|
|
(34136, 40395, 0, 0, 0, 1, 1, 1, 1, 'Torch of Holy Fire'),
|
|
(34136, 40396, 0, 0, 0, 1, 1, 1, 1, 'The Turning Tide'),
|
|
(34136, 40398, 0, 0, 0, 1, 1, 1, 1, 'Leggings of Mortal Arrogance'),
|
|
(34136, 40399, 0, 0, 0, 1, 1, 1, 1, 'Signet of Manifested Pain'),
|
|
(34136, 40400, 0, 0, 0, 1, 1, 1, 1, 'Wall of Terror'),
|
|
(34136, 40401, 0, 0, 0, 1, 1, 1, 1, 'Voice of Reason'),
|
|
(34136, 40402, 0, 0, 0, 1, 1, 1, 1, 'Last Laugh'),
|
|
(34136, 40403, 0, 0, 0, 1, 1, 1, 1, 'Drape of the Deadly Foe'),
|
|
(34136, 40405, 0, 0, 0, 1, 1, 1, 1, 'Cape of the Unworthy Wizard'),
|
|
(34137, 39701, 0, 0, 0, 1, 1, 1, 1, 'Dawnwalkers'),
|
|
(34137, 39702, 0, 0, 0, 1, 1, 1, 1, 'Arachnoid Gold Band'),
|
|
(34137, 39703, 0, 0, 0, 1, 1, 1, 1, 'Rescinding Grips'),
|
|
(34137, 39704, 0, 0, 0, 1, 1, 1, 1, 'Pauldrons of Unnatural Death'),
|
|
(34137, 39706, 0, 0, 0, 1, 1, 1, 1, 'Sabatons of Sudden Reprisal'),
|
|
(34137, 39712, 0, 0, 0, 1, 1, 1, 1, 'Gemmed Wand of the Nerubians'),
|
|
(34137, 39714, 0, 0, 0, 1, 1, 1, 1, 'Webbed Death'),
|
|
(34137, 39716, 0, 0, 0, 1, 1, 1, 1, 'Shield of Assimilation'),
|
|
(34137, 39717, 0, 0, 0, 1, 1, 1, 1, 'Inexorable Sabatons'),
|
|
(34137, 39718, 0, 0, 0, 1, 1, 1, 1, 'Corpse Scarab Handguards'),
|
|
(34137, 39719, 0, 0, 0, 1, 1, 1, 1, 'Mantle of the Locusts'),
|
|
(34137, 39720, 0, 0, 0, 1, 1, 1, 1, 'Leggings of Atrophy'),
|
|
(34137, 39721, 0, 0, 0, 1, 1, 1, 1, 'Sash of the Parlor'),
|
|
(34137, 39722, 0, 0, 0, 1, 1, 1, 1, 'Swarm Bindings'),
|
|
(34137, 40064, 0, 0, 0, 1, 1, 1, 1, 'Thunderstorm Amulet'),
|
|
(34137, 40065, 0, 0, 0, 1, 1, 1, 1, 'Fool\'s Trial'),
|
|
(34137, 40069, 0, 0, 0, 1, 1, 1, 1, 'Heritage'),
|
|
(34137, 40071, 0, 0, 0, 1, 1, 1, 1, 'Chains of Adoration'),
|
|
(34137, 40074, 0, 0, 0, 1, 1, 1, 1, 'Strong-Handed Ring'),
|
|
(34137, 40075, 0, 0, 0, 1, 1, 1, 1, 'Ruthlessness'),
|
|
(34137, 40080, 0, 0, 0, 1, 1, 1, 1, 'Lost Jewel'),
|
|
(34137, 40107, 0, 0, 0, 1, 1, 1, 1, 'Sand-Worn Band'),
|
|
(34137, 40108, 0, 0, 0, 1, 1, 1, 1, 'Seized Beauty'),
|
|
(34138, 39723, 0, 0, 0, 1, 1, 1, 1, 'Fire-Scorched Greathelm'),
|
|
(34138, 39724, 0, 0, 0, 1, 1, 1, 1, 'Cult\'s Chestguard'),
|
|
(34138, 39725, 0, 0, 0, 1, 1, 1, 1, 'Epaulets of the Grieving Servant'),
|
|
(34138, 39726, 0, 0, 0, 1, 1, 1, 1, 'Callous-Hearted Gauntlets'),
|
|
(34138, 39727, 0, 0, 0, 1, 1, 1, 1, 'Dislocating Handguards'),
|
|
(34138, 39728, 0, 0, 0, 1, 1, 1, 1, 'Totem of Misery'),
|
|
(34138, 39729, 0, 0, 0, 1, 1, 1, 1, 'Bracers of the Tyrant'),
|
|
(34138, 39730, 0, 0, 0, 1, 1, 1, 1, 'Widow\'s Fury'),
|
|
(34138, 39731, 0, 0, 0, 1, 1, 1, 1, 'Punctilious Bindings'),
|
|
(34138, 39732, 0, 0, 0, 1, 1, 1, 1, 'Faerlina\'s Madness'),
|
|
(34138, 39733, 0, 0, 0, 1, 1, 1, 1, 'Gloves of Token Respect'),
|
|
(34138, 39734, 0, 0, 0, 1, 1, 1, 1, 'Atonement Greaves'),
|
|
(34138, 39735, 0, 0, 0, 1, 1, 1, 1, 'Belt of False Dignity'),
|
|
(34138, 39756, 0, 0, 0, 1, 1, 1, 1, 'Tunic of Prejudice'),
|
|
(34138, 39757, 0, 0, 0, 1, 1, 1, 1, 'Idol of Worship'),
|
|
(34138, 40064, 0, 0, 0, 1, 1, 1, 1, 'Thunderstorm Amulet'),
|
|
(34138, 40065, 0, 0, 0, 1, 1, 1, 1, 'Fool\'s Trial'),
|
|
(34138, 40069, 0, 0, 0, 1, 1, 1, 1, 'Heritage'),
|
|
(34138, 40071, 0, 0, 0, 1, 1, 1, 1, 'Chains of Adoration'),
|
|
(34138, 40074, 0, 0, 0, 1, 1, 1, 1, 'Strong-Handed Ring'),
|
|
(34138, 40075, 0, 0, 0, 1, 1, 1, 1, 'Ruthlessness'),
|
|
(34138, 40080, 0, 0, 0, 1, 1, 1, 1, 'Lost Jewel'),
|
|
(34138, 40107, 0, 0, 0, 1, 1, 1, 1, 'Sand-Worn Band'),
|
|
(34138, 40108, 0, 0, 0, 1, 1, 1, 1, 'Seized Beauty'),
|
|
(34139, 39758, 0, 0, 0, 1, 1, 1, 1, 'The Jawbone'),
|
|
(34139, 39759, 0, 0, 0, 1, 1, 1, 1, 'Ablative Chitin Girdle'),
|
|
(34139, 39760, 0, 0, 0, 1, 1, 1, 1, 'Helm of Diminished Pride'),
|
|
(34139, 39761, 0, 0, 0, 1, 1, 1, 1, 'Infectious Skitterer Leggings'),
|
|
(34139, 39762, 0, 0, 0, 1, 1, 1, 1, 'Torn Web Wrapping'),
|
|
(34139, 39763, 0, 0, 0, 1, 1, 1, 1, 'Wraith Strike'),
|
|
(34139, 39764, 0, 0, 0, 1, 1, 1, 1, 'Bindings of the Hapless Prey'),
|
|
(34139, 39765, 0, 0, 0, 1, 1, 1, 1, 'Sinner\'s Bindings'),
|
|
(34139, 39766, 0, 0, 0, 1, 1, 1, 1, 'Matriarch\'s Spawn'),
|
|
(34139, 39767, 0, 0, 0, 1, 1, 1, 1, 'Undiminished Battleplate'),
|
|
(34139, 39768, 0, 0, 0, 1, 1, 1, 1, 'Cowl of the Perished'),
|
|
(34139, 40060, 0, 0, 0, 1, 1, 1, 1, 'Distorted Limbs'),
|
|
(34139, 40061, 0, 0, 0, 1, 1, 1, 1, 'Quivering Tunic'),
|
|
(34139, 40062, 0, 0, 0, 1, 1, 1, 1, 'Digested Silken Robes'),
|
|
(34139, 40063, 0, 0, 0, 1, 1, 1, 1, 'Mantle of Shattered Kinship'),
|
|
(34139, 40250, 0, 0, 0, 1, 1, 1, 1, 'Aged Winter Cloak'),
|
|
(34139, 40251, 0, 0, 0, 1, 1, 1, 1, 'Shroud of Luminosity'),
|
|
(34139, 40252, 0, 0, 0, 1, 1, 1, 1, 'Cloak of the Shadowed Sun'),
|
|
(34139, 40253, 0, 0, 0, 1, 1, 1, 1, 'Shawl of the Old Maid'),
|
|
(34139, 40254, 0, 0, 0, 1, 1, 1, 1, 'Cloak of Averted Crisis'),
|
|
(34139, 40255, 0, 0, 0, 1, 1, 1, 1, 'Dying Curse'),
|
|
(34139, 40256, 0, 0, 0, 1, 1, 1, 1, 'Grim Toll'),
|
|
(34139, 40257, 0, 0, 0, 1, 1, 1, 1, 'Defender\'s Code'),
|
|
(34139, 40258, 0, 0, 0, 1, 1, 1, 1, 'Forethought Talisman'),
|
|
(34140, 40064, 0, 0, 0, 1, 1, 1, 1, 'Thunderstorm Amulet'),
|
|
(34140, 40065, 0, 0, 0, 1, 1, 1, 1, 'Fool\'s Trial'),
|
|
(34140, 40069, 0, 0, 0, 1, 1, 1, 1, 'Heritage'),
|
|
(34140, 40071, 0, 0, 0, 1, 1, 1, 1, 'Chains of Adoration'),
|
|
(34140, 40074, 0, 0, 0, 1, 1, 1, 1, 'Strong-Handed Ring'),
|
|
(34140, 40075, 0, 0, 0, 1, 1, 1, 1, 'Ruthlessness'),
|
|
(34140, 40080, 0, 0, 0, 1, 1, 1, 1, 'Lost Jewel'),
|
|
(34140, 40107, 0, 0, 0, 1, 1, 1, 1, 'Sand-Worn Band'),
|
|
(34140, 40108, 0, 0, 0, 1, 1, 1, 1, 'Seized Beauty'),
|
|
(34140, 40259, 0, 0, 0, 1, 1, 1, 1, 'Waistguard of Divine Grace'),
|
|
(34140, 40260, 0, 0, 0, 1, 1, 1, 1, 'Belt of the Tortured'),
|
|
(34140, 40261, 0, 0, 0, 1, 1, 1, 1, 'Crude Discolored Battlegrips'),
|
|
(34140, 40262, 0, 0, 0, 1, 1, 1, 1, 'Gloves of Calculated Risk'),
|
|
(34140, 40263, 0, 0, 0, 1, 1, 1, 1, 'Fleshless Girdle'),
|
|
(34140, 40264, 0, 0, 0, 1, 1, 1, 1, 'Split Greathammer'),
|
|
(34140, 40265, 0, 0, 0, 1, 1, 1, 1, 'Arrowsong'),
|
|
(34140, 40266, 0, 0, 0, 1, 1, 1, 1, 'Hero\'s Surrender'),
|
|
(34140, 40267, 0, 0, 0, 1, 1, 1, 1, 'Totem of Hex'),
|
|
(34140, 40268, 0, 0, 0, 1, 1, 1, 1, 'Libram of Tolerance'),
|
|
(34140, 40269, 0, 0, 0, 1, 1, 1, 1, 'Boots of Persuasion'),
|
|
(34140, 40270, 0, 0, 0, 1, 1, 1, 1, 'Boots of Septic Wounds'),
|
|
(34140, 40271, 0, 0, 0, 1, 1, 1, 1, 'Sash of Solitude'),
|
|
(34140, 40272, 0, 0, 0, 1, 1, 1, 1, 'Girdle of the Gambit'),
|
|
(34140, 40273, 0, 0, 0, 1, 1, 1, 1, 'Surplus Limb'),
|
|
(34141, 40250, 0, 0, 0, 1, 1, 1, 1, 'Aged Winter Cloak'),
|
|
(34141, 40251, 0, 0, 0, 1, 1, 1, 1, 'Shroud of Luminosity'),
|
|
(34141, 40252, 0, 0, 0, 1, 1, 1, 1, 'Cloak of the Shadowed Sun'),
|
|
(34141, 40253, 0, 0, 0, 1, 1, 1, 1, 'Shawl of the Old Maid'),
|
|
(34141, 40254, 0, 0, 0, 1, 1, 1, 1, 'Cloak of Averted Crisis'),
|
|
(34141, 40255, 0, 0, 0, 1, 1, 1, 1, 'Dying Curse'),
|
|
(34141, 40256, 0, 0, 0, 1, 1, 1, 1, 'Grim Toll'),
|
|
(34141, 40257, 0, 0, 0, 1, 1, 1, 1, 'Defender\'s Code'),
|
|
(34141, 40258, 0, 0, 0, 1, 1, 1, 1, 'Forethought Talisman'),
|
|
(34141, 40274, 0, 0, 0, 1, 1, 1, 1, 'Bracers of Liberation'),
|
|
(34141, 40275, 0, 0, 0, 1, 1, 1, 1, 'Depraved Linked Belt'),
|
|
(34141, 40277, 0, 0, 0, 1, 1, 1, 1, 'Tunic of Indulgence'),
|
|
(34141, 40278, 0, 0, 0, 1, 1, 1, 1, 'Girdle of Chivalry'),
|
|
(34141, 40279, 0, 0, 0, 1, 1, 1, 1, 'Chestguard of the Exhausted'),
|
|
(34141, 40280, 0, 0, 0, 1, 1, 1, 1, 'Origin of Nightmares'),
|
|
(34141, 40281, 0, 0, 0, 1, 1, 1, 1, 'Twilight Mist'),
|
|
(34141, 40282, 0, 0, 0, 1, 1, 1, 1, 'Slime Stream Bands'),
|
|
(34141, 40283, 0, 0, 0, 1, 1, 1, 1, 'Fallout Impervious Tunic'),
|
|
(34141, 40284, 0, 0, 0, 1, 1, 1, 1, 'Plague Igniter'),
|
|
(34141, 40285, 0, 0, 0, 1, 1, 1, 1, 'Desecrated Past'),
|
|
(34141, 40287, 0, 0, 0, 1, 1, 1, 1, 'Cowl of Vanity'),
|
|
(34141, 40288, 0, 0, 0, 1, 1, 1, 1, 'Spaulders of Incoherence'),
|
|
(34141, 40289, 0, 0, 0, 1, 1, 1, 1, 'Sympathetic Amice'),
|
|
(34141, 40351, 0, 0, 0, 1, 1, 1, 1, 'Mantle of the Fatigued Sage'),
|
|
(34142, 39717, 0, 0, 0, 1, 1, 1, 1, 'Inexorable Sabatons'),
|
|
(34142, 39718, 0, 0, 0, 1, 1, 1, 1, 'Corpse Scarab Handguards'),
|
|
(34142, 39733, 0, 0, 0, 1, 1, 1, 1, 'Gloves of Token Respect'),
|
|
(34142, 39760, 0, 0, 0, 1, 1, 1, 1, 'Helm of Diminished Pride'),
|
|
(34142, 39768, 0, 0, 0, 1, 1, 1, 1, 'Cowl of the Perished'),
|
|
(34142, 40185, 0, 0, 0, 1, 1, 1, 1, 'Shoulderguards of Opportunity'),
|
|
(34142, 40188, 0, 0, 0, 1, 1, 1, 1, 'Gauntlets of the Disobedient'),
|
|
(34142, 40191, 0, 0, 0, 1, 1, 1, 1, 'Libram of Radiance'),
|
|
(34142, 40193, 0, 0, 0, 1, 1, 1, 1, 'Tunic of Masked Suffering'),
|
|
(34142, 40203, 0, 0, 0, 1, 1, 1, 1, 'Breastplate of Tormented Rage'),
|
|
(34142, 40204, 0, 0, 0, 1, 1, 1, 1, 'Legguards of the Apostle'),
|
|
(34142, 40205, 0, 0, 0, 1, 1, 1, 1, 'Stalk-Skin Belt'),
|
|
(34142, 40206, 0, 0, 0, 1, 1, 1, 1, 'Iron-Spring Jumpers'),
|
|
(34142, 40209, 0, 0, 0, 1, 1, 1, 1, 'Bindings of the Decrepit'),
|
|
(34142, 40242, 0, 0, 0, 1, 1, 1, 1, 'Grotesque Handgrips'),
|
|
(34142, 40247, 0, 0, 0, 1, 1, 1, 1, 'Cowl of Innocent Delight'),
|
|
(34142, 40259, 0, 0, 0, 1, 1, 1, 1, 'Waistguard of Divine Grace'),
|
|
(34142, 40260, 0, 0, 0, 1, 1, 1, 1, 'Belt of the Tortured'),
|
|
(34142, 40270, 0, 0, 0, 1, 1, 1, 1, 'Boots of Septic Wounds'),
|
|
(34142, 40289, 0, 0, 0, 1, 1, 1, 1, 'Sympathetic Amice'),
|
|
(34142, 40296, 0, 0, 0, 1, 1, 1, 1, 'Cover of Silence'),
|
|
(34142, 40297, 0, 0, 0, 1, 1, 1, 1, 'Sabatons of Endurance'),
|
|
(34142, 40302, 0, 0, 0, 1, 1, 1, 1, 'Benefactor\'s Gauntlets'),
|
|
(34142, 40303, 0, 0, 0, 1, 1, 1, 1, 'Wraps of the Persecuted'),
|
|
(34142, 40319, 0, 0, 0, 1, 1, 1, 1, 'Chestpiece of Suspicion'),
|
|
(34142, 40326, 0, 0, 0, 1, 1, 1, 1, 'Boots of Forlorn Wishes'),
|
|
(34142, 40332, 0, 0, 0, 1, 1, 1, 1, 'Abetment Bracers'),
|
|
(34142, 40350, 0, 0, 0, 1, 1, 1, 1, 'Urn of Lost Memories'),
|
|
(34142, 40602, 0, 0, 0, 1, 1, 1, 1, 'Robes of Mutation'),
|
|
(34143, 40294, 0, 0, 0, 1, 1, 1, 1, 'Riveted Abomination Leggings'),
|
|
(34143, 40296, 0, 0, 0, 1, 1, 1, 1, 'Cover of Silence'),
|
|
(34143, 40297, 0, 0, 0, 1, 1, 1, 1, 'Sabatons of Endurance'),
|
|
(34143, 40298, 0, 0, 0, 1, 1, 1, 1, 'Faceguard of the Succumbed'),
|
|
(34143, 40299, 0, 0, 0, 1, 1, 1, 1, 'Pauldrons of the Abandoned'),
|
|
(34143, 40300, 0, 0, 0, 1, 1, 1, 1, 'Spire of Sunset'),
|
|
(34143, 40301, 0, 0, 0, 1, 1, 1, 1, 'Cincture of Polarity'),
|
|
(34143, 40302, 0, 0, 0, 1, 1, 1, 1, 'Benefactor\'s Gauntlets'),
|
|
(34143, 40303, 0, 0, 0, 1, 1, 1, 1, 'Wraps of the Persecuted'),
|
|
(34143, 40304, 0, 0, 0, 1, 1, 1, 1, 'Headpiece of Fungal Bloom'),
|
|
(34144, 40064, 0, 0, 0, 1, 1, 1, 1, 'Thunderstorm Amulet'),
|
|
(34144, 40065, 0, 0, 0, 1, 1, 1, 1, 'Fool\'s Trial'),
|
|
(34144, 40069, 0, 0, 0, 1, 1, 1, 1, 'Heritage'),
|
|
(34144, 40071, 0, 0, 0, 1, 1, 1, 1, 'Chains of Adoration'),
|
|
(34144, 40074, 0, 0, 0, 1, 1, 1, 1, 'Strong-Handed Ring'),
|
|
(34144, 40075, 0, 0, 0, 1, 1, 1, 1, 'Ruthlessness'),
|
|
(34144, 40080, 0, 0, 0, 1, 1, 1, 1, 'Lost Jewel'),
|
|
(34144, 40107, 0, 0, 0, 1, 1, 1, 1, 'Sand-Worn Band'),
|
|
(34144, 40108, 0, 0, 0, 1, 1, 1, 1, 'Seized Beauty'),
|
|
(34144, 40305, 0, 0, 0, 1, 1, 1, 1, 'Spaulders of Egotism'),
|
|
(34144, 40306, 0, 0, 0, 1, 1, 1, 1, 'Bracers of the Unholy Knight'),
|
|
(34144, 40315, 0, 0, 0, 1, 1, 1, 1, 'Shoulderpads of Secret Arts'),
|
|
(34144, 40316, 0, 0, 0, 1, 1, 1, 1, 'Gauntlets of Guiding Touch'),
|
|
(34144, 40317, 0, 0, 0, 1, 1, 1, 1, 'Girdle of Razuvious'),
|
|
(34144, 40318, 0, 0, 0, 1, 1, 1, 1, 'Legplates of Double Strikes'),
|
|
(34144, 40319, 0, 0, 0, 1, 1, 1, 1, 'Chestpiece of Suspicion'),
|
|
(34144, 40320, 0, 0, 0, 1, 1, 1, 1, 'Faithful Steel Sabatons'),
|
|
(34144, 40321, 0, 0, 0, 1, 1, 1, 1, 'Idol of the Shooting Star'),
|
|
(34144, 40322, 0, 0, 0, 1, 1, 1, 1, 'Totem of Dueling'),
|
|
(34144, 40323, 0, 0, 0, 1, 1, 1, 1, 'Esteemed Bindings'),
|
|
(34144, 40324, 0, 0, 0, 1, 1, 1, 1, 'Bands of Mutual Respect'),
|
|
(34144, 40325, 0, 0, 0, 1, 1, 1, 1, 'Bindings of the Expansive Mind'),
|
|
(34144, 40326, 0, 0, 0, 1, 1, 1, 1, 'Boots of Forlorn Wishes'),
|
|
(34144, 40327, 0, 0, 0, 1, 1, 1, 1, 'Girdle of Recuperation'),
|
|
(34145, 40250, 0, 0, 0, 1, 1, 1, 1, 'Aged Winter Cloak'),
|
|
(34145, 40251, 0, 0, 0, 1, 1, 1, 1, 'Shroud of Luminosity'),
|
|
(34145, 40252, 0, 0, 0, 1, 1, 1, 1, 'Cloak of the Shadowed Sun'),
|
|
(34145, 40253, 0, 0, 0, 1, 1, 1, 1, 'Shawl of the Old Maid'),
|
|
(34145, 40254, 0, 0, 0, 1, 1, 1, 1, 'Cloak of Averted Crisis'),
|
|
(34145, 40255, 0, 0, 0, 1, 1, 1, 1, 'Dying Curse'),
|
|
(34145, 40256, 0, 0, 0, 1, 1, 1, 1, 'Grim Toll'),
|
|
(34145, 40257, 0, 0, 0, 1, 1, 1, 1, 'Defender\'s Code'),
|
|
(34145, 40258, 0, 0, 0, 1, 1, 1, 1, 'Forethought Talisman'),
|
|
(34145, 40328, 0, 0, 0, 1, 1, 1, 1, 'Helm of Vital Protection'),
|
|
(34145, 40329, 0, 0, 0, 1, 1, 1, 1, 'Hood of the Exodus'),
|
|
(34145, 40330, 0, 0, 0, 1, 1, 1, 1, 'Bracers of Unrelenting Attack'),
|
|
(34145, 40331, 0, 0, 0, 1, 1, 1, 1, 'Leggings of Failed Escape'),
|
|
(34145, 40332, 0, 0, 0, 1, 1, 1, 1, 'Abetment Bracers'),
|
|
(34145, 40333, 0, 0, 0, 1, 1, 1, 1, 'Leggings of Fleeting Moments'),
|
|
(34145, 40334, 0, 0, 0, 1, 1, 1, 1, 'Burdened Shoulderplates'),
|
|
(34145, 40335, 0, 0, 0, 1, 1, 1, 1, 'Touch of Horror'),
|
|
(34145, 40336, 0, 0, 0, 1, 1, 1, 1, 'Life and Death'),
|
|
(34145, 40337, 0, 0, 0, 1, 1, 1, 1, 'Libram of Resurgence'),
|
|
(34145, 40338, 0, 0, 0, 1, 1, 1, 1, 'Bindings of Yearning'),
|
|
(34145, 40339, 0, 0, 0, 1, 1, 1, 1, 'Gothik\'s Cowl'),
|
|
(34145, 40340, 0, 0, 0, 1, 1, 1, 1, 'Helm of Unleashed Energy'),
|
|
(34145, 40341, 0, 0, 0, 1, 1, 1, 1, 'Shackled Cinch'),
|
|
(34145, 40342, 0, 0, 0, 1, 1, 1, 1, 'Idol of Awakening'),
|
|
(34146, 40286, 0, 0, 0, 1, 1, 1, 1, 'Mantle of the Corrupted'),
|
|
(34146, 40343, 0, 0, 0, 1, 1, 1, 1, 'Armageddon'),
|
|
(34146, 40344, 0, 0, 0, 1, 1, 1, 1, 'Helm of the Grave'),
|
|
(34146, 40345, 0, 0, 0, 1, 1, 1, 1, 'Broken Promise'),
|
|
(34146, 40346, 0, 0, 0, 1, 1, 1, 1, 'Final Voyage'),
|
|
(34146, 40347, 0, 0, 0, 1, 1, 1, 1, 'Zeliek\'s Gauntlets'),
|
|
(34146, 40348, 0, 0, 0, 1, 1, 1, 1, 'Damnation'),
|
|
(34146, 40349, 0, 0, 0, 1, 1, 1, 1, 'Gloves of Peaceful Death'),
|
|
(34146, 40350, 0, 0, 0, 1, 1, 1, 1, 'Urn of Lost Memories'),
|
|
(34146, 40352, 0, 0, 0, 1, 1, 1, 1, 'Leggings of Voracious Shadows'),
|
|
(34147, 40064, 0, 0, 0, 1, 1, 1, 1, 'Thunderstorm Amulet'),
|
|
(34147, 40065, 0, 0, 0, 1, 1, 1, 1, 'Fool\'s Trial'),
|
|
(34147, 40069, 0, 0, 0, 1, 1, 1, 1, 'Heritage'),
|
|
(34147, 40071, 0, 0, 0, 1, 1, 1, 1, 'Chains of Adoration'),
|
|
(34147, 40074, 0, 0, 0, 1, 1, 1, 1, 'Strong-Handed Ring'),
|
|
(34147, 40075, 0, 0, 0, 1, 1, 1, 1, 'Ruthlessness'),
|
|
(34147, 40080, 0, 0, 0, 1, 1, 1, 1, 'Lost Jewel'),
|
|
(34147, 40107, 0, 0, 0, 1, 1, 1, 1, 'Sand-Worn Band'),
|
|
(34147, 40108, 0, 0, 0, 1, 1, 1, 1, 'Seized Beauty'),
|
|
(34147, 40184, 0, 0, 0, 1, 1, 1, 1, 'Crippled Treads'),
|
|
(34147, 40185, 0, 0, 0, 1, 1, 1, 1, 'Shoulderguards of Opportunity'),
|
|
(34147, 40186, 0, 0, 0, 1, 1, 1, 1, 'Thrusting Bands'),
|
|
(34147, 40187, 0, 0, 0, 1, 1, 1, 1, 'Poignant Sabatons'),
|
|
(34147, 40188, 0, 0, 0, 1, 1, 1, 1, 'Gauntlets of the Disobedient'),
|
|
(34147, 40189, 0, 0, 0, 1, 1, 1, 1, 'Angry Dread'),
|
|
(34147, 40190, 0, 0, 0, 1, 1, 1, 1, 'Spinning Fate'),
|
|
(34147, 40191, 0, 0, 0, 1, 1, 1, 1, 'Libram of Radiance'),
|
|
(34147, 40192, 0, 0, 0, 1, 1, 1, 1, 'Accursed Spine'),
|
|
(34147, 40193, 0, 0, 0, 1, 1, 1, 1, 'Tunic of Masked Suffering'),
|
|
(34147, 40196, 0, 0, 0, 1, 1, 1, 1, 'Legguards of the Undisturbed'),
|
|
(34147, 40197, 0, 0, 0, 1, 1, 1, 1, 'Gloves of the Fallen Wizard'),
|
|
(34147, 40198, 0, 0, 0, 1, 1, 1, 1, 'Bands of Impurity'),
|
|
(34147, 40200, 0, 0, 0, 1, 1, 1, 1, 'Belt of Potent Chanting'),
|
|
(34147, 40602, 0, 0, 0, 1, 1, 1, 1, 'Robes of Mutation'),
|
|
(34148, 40201, 0, 0, 0, 1, 1, 1, 1, 'Leggings of Colossal Strides'),
|
|
(34148, 40203, 0, 0, 0, 1, 1, 1, 1, 'Breastplate of Tormented Rage'),
|
|
(34148, 40204, 0, 0, 0, 1, 1, 1, 1, 'Legguards of the Apostle'),
|
|
(34148, 40205, 0, 0, 0, 1, 1, 1, 1, 'Stalk-Skin Belt'),
|
|
(34148, 40206, 0, 0, 0, 1, 1, 1, 1, 'Iron-Spring Jumpers'),
|
|
(34148, 40207, 0, 0, 0, 1, 1, 1, 1, 'Sigil of Awareness'),
|
|
(34148, 40208, 0, 0, 0, 1, 1, 1, 1, 'Cryptfiend\'s Bite'),
|
|
(34148, 40209, 0, 0, 0, 1, 1, 1, 1, 'Bindings of the Decrepit'),
|
|
(34148, 40210, 0, 0, 0, 1, 1, 1, 1, 'Chestguard of Bitter Charms'),
|
|
(34148, 40233, 0, 0, 0, 1, 1, 1, 1, 'The Undeath Carrier'),
|
|
(34148, 40234, 0, 0, 0, 1, 1, 1, 1, 'Heigan\'s Putrid Vestments'),
|
|
(34148, 40235, 0, 0, 0, 1, 1, 1, 1, 'Helm of Pilgrimage'),
|
|
(34148, 40236, 0, 0, 0, 1, 1, 1, 1, 'Serene Echoes'),
|
|
(34148, 40237, 0, 0, 0, 1, 1, 1, 1, 'Eruption-Scarred Boots'),
|
|
(34148, 40238, 0, 0, 0, 1, 1, 1, 1, 'Gloves of the Dancing Bear'),
|
|
(34148, 40250, 0, 0, 0, 1, 1, 1, 1, 'Aged Winter Cloak'),
|
|
(34148, 40251, 0, 0, 0, 1, 1, 1, 1, 'Shroud of Luminosity'),
|
|
(34148, 40252, 0, 0, 0, 1, 1, 1, 1, 'Cloak of the Shadowed Sun'),
|
|
(34148, 40253, 0, 0, 0, 1, 1, 1, 1, 'Shawl of the Old Maid'),
|
|
(34148, 40254, 0, 0, 0, 1, 1, 1, 1, 'Cloak of Averted Crisis'),
|
|
(34148, 40255, 0, 0, 0, 1, 1, 1, 1, 'Dying Curse'),
|
|
(34148, 40256, 0, 0, 0, 1, 1, 1, 1, 'Grim Toll'),
|
|
(34148, 40257, 0, 0, 0, 1, 1, 1, 1, 'Defender\'s Code'),
|
|
(34148, 40258, 0, 0, 0, 1, 1, 1, 1, 'Forethought Talisman'),
|
|
(34149, 40239, 0, 0, 0, 1, 1, 1, 1, 'The Hand of Nerub'),
|
|
(34149, 40240, 0, 0, 0, 1, 1, 1, 1, 'Greaves of Turbulence'),
|
|
(34149, 40241, 0, 0, 0, 1, 1, 1, 1, 'Girdle of Unity'),
|
|
(34149, 40242, 0, 0, 0, 1, 1, 1, 1, 'Grotesque Handgrips'),
|
|
(34149, 40243, 0, 0, 0, 1, 1, 1, 1, 'Footwraps of Vile Deceit'),
|
|
(34149, 40244, 0, 0, 0, 1, 1, 1, 1, 'The Impossible Dream'),
|
|
(34149, 40245, 0, 0, 0, 1, 1, 1, 1, 'Fading Glow'),
|
|
(34149, 40246, 0, 0, 0, 1, 1, 1, 1, 'Boots of Impetuous Ideals'),
|
|
(34149, 40247, 0, 0, 0, 1, 1, 1, 1, 'Cowl of Innocent Delight'),
|
|
(34149, 40249, 0, 0, 0, 1, 1, 1, 1, 'Vest of Vitality'),
|
|
(34150, 33214, 0, 0, 0, 1, 1, 1, 1, 'Akil\'zon\'s Talonblade'),
|
|
(34150, 33215, 0, 0, 0, 1, 1, 1, 1, 'Bloodstained Elven Battlevest'),
|
|
(34150, 33216, 0, 0, 0, 1, 1, 1, 1, 'Chestguard of Hidden Purpose'),
|
|
(34150, 33281, 0, 0, 0, 1, 1, 1, 1, 'Brooch of Nature\'s Mercy'),
|
|
(34150, 33283, 0, 0, 0, 1, 1, 1, 1, 'Amani Punisher'),
|
|
(34150, 33286, 0, 0, 0, 1, 1, 1, 1, 'Mojo-mender\'s Mask'),
|
|
(34150, 33293, 0, 0, 0, 1, 1, 1, 1, 'Signet of Ancient Magics'),
|
|
(34151, 33191, 0, 0, 0, 1, 1, 1, 1, 'Jungle Stompers'),
|
|
(34151, 33203, 0, 0, 0, 1, 1, 1, 1, 'Robes of Heavenly Purpose'),
|
|
(34151, 33206, 0, 0, 0, 1, 1, 1, 1, 'Pauldrons of Primal Fury'),
|
|
(34151, 33211, 0, 0, 0, 1, 1, 1, 1, 'Bladeangel\'s Money Belt'),
|
|
(34151, 33285, 0, 0, 0, 1, 1, 1, 1, 'Fury of the Ursine'),
|
|
(34151, 33327, 0, 0, 0, 1, 1, 1, 1, 'Mask of Introspection'),
|
|
(34151, 33640, 0, 0, 0, 1, 1, 1, 1, 'Fury'),
|
|
(34152, 33326, 0, 0, 0, 1, 1, 1, 1, 'Bulwark of the Amani Empire'),
|
|
(34152, 33328, 0, 0, 0, 1, 1, 1, 1, 'Arrow-fall Chestguard'),
|
|
(34152, 33329, 0, 0, 0, 1, 1, 1, 1, 'Shadowtooth Trollskin Cuirass'),
|
|
(34152, 33332, 0, 0, 0, 1, 1, 1, 1, 'Enamelled Disc of Mojo'),
|
|
(34152, 33354, 0, 0, 0, 1, 1, 1, 1, 'Wub\'s Cursed Hexblade'),
|
|
(34152, 33356, 0, 0, 0, 1, 1, 1, 1, 'Helm of Natural Regeneration'),
|
|
(34152, 33357, 0, 0, 0, 1, 1, 1, 1, 'Footpads of Madness'),
|
|
(34153, 33297, 0, 0, 0, 1, 1, 1, 1, 'The Savage\'s Choker'),
|
|
(34153, 33299, 0, 0, 0, 1, 1, 1, 1, 'Spaulders of the Advocate'),
|
|
(34153, 33300, 0, 0, 0, 1, 1, 1, 1, 'Shoulderpads of Dancing Blades'),
|
|
(34153, 33303, 0, 0, 0, 1, 1, 1, 1, 'Skullshatter Warboots'),
|
|
(34153, 33317, 0, 0, 0, 1, 1, 1, 1, 'Robe of Departed Spirits'),
|
|
(34153, 33322, 0, 0, 0, 1, 1, 1, 1, 'Shimmer-pelt Vest'),
|
|
(34153, 33533, 0, 0, 0, 1, 1, 1, 1, 'Avalanche Leggings'),
|
|
(34154, 45088, 0, 4, 0, 1, 1, 1, 1, 'Plans: Belt of the Titans'),
|
|
(34154, 45089, 0, 4, 0, 1, 1, 1, 1, 'Plans: Battlelord\'s Plate Boots'),
|
|
(34154, 45090, 0, 4, 0, 1, 1, 1, 1, 'Plans: Plate Girdle of Righteousness'),
|
|
(34154, 45091, 0, 4, 0, 1, 1, 1, 1, 'Plans: Treads of Destiny'),
|
|
(34154, 45092, 0, 4, 0, 1, 1, 1, 1, 'Plans: Indestructible Plate Girdle'),
|
|
(34154, 45093, 0, 4, 0, 1, 1, 1, 1, 'Plans: Spiked Deathdealers'),
|
|
(34154, 45094, 0, 4, 0, 1, 1, 1, 1, 'Pattern: Belt of Dragons'),
|
|
(34154, 45095, 0, 4, 0, 1, 1, 1, 1, 'Pattern: Boots of Living Scale'),
|
|
(34154, 45096, 0, 4, 0, 1, 1, 1, 1, 'Pattern: Blue Belt of Chaos'),
|
|
(34154, 45097, 0, 4, 0, 1, 1, 1, 1, 'Pattern: Lightning Grounded Boots'),
|
|
(34154, 45098, 0, 4, 0, 1, 1, 1, 1, 'Pattern: Death-warmed Belt'),
|
|
(34154, 45099, 0, 4, 0, 1, 1, 1, 1, 'Pattern: Footpads of Silence'),
|
|
(34154, 45100, 0, 4, 0, 1, 1, 1, 1, 'Pattern: Belt of Arctic Life'),
|
|
(34154, 45101, 0, 4, 0, 1, 1, 1, 1, 'Pattern: Boots of Wintry Endurance'),
|
|
(34154, 45102, 0, 4, 0, 1, 1, 1, 1, 'Pattern: Sash of Ancient Power'),
|
|
(34154, 45103, 0, 4, 0, 1, 1, 1, 1, 'Pattern: Spellslinger\'s Slippers'),
|
|
(34154, 45104, 0, 4, 0, 1, 1, 1, 1, 'Pattern: Cord of the White Dawn'),
|
|
(34154, 45105, 0, 4, 0, 1, 1, 1, 1, 'Pattern: Savior\'s Slippers'),
|
|
(34154, 46027, 0, 14, 0, 1, 1, 1, 1, 'Formula: Enchant Weapon - Blade Ward'),
|
|
(34154, 46348, 0, 14, 0, 1, 1, 1, 1, 'Formula: Enchant Weapon - Blood Draining'),
|
|
(34155, 37254, 0, 0, 0, 1, 1, 1, 1, 'Super Simian Sphere'),
|
|
(34155, 45538, 0, 0, 0, 1, 1, 1, 1, 'Titanstone Pendant'),
|
|
(34155, 45539, 0, 0, 0, 1, 1, 1, 1, 'Pendant of Focused Energies'),
|
|
(34155, 45540, 0, 0, 0, 1, 1, 1, 1, 'Bladebearer\'s Signet'),
|
|
(34155, 45541, 0, 0, 0, 1, 1, 1, 1, 'Shroud of Alteration'),
|
|
(34155, 45542, 0, 0, 0, 1, 1, 1, 1, 'Greaves of the Stonewarder'),
|
|
(34155, 45543, 0, 0, 0, 1, 1, 1, 1, 'Shoulders of Misfortune'),
|
|
(34155, 45544, 0, 0, 0, 1, 1, 1, 1, 'Leggings of the Tortured Earth'),
|
|
(34155, 45547, 0, 0, 0, 1, 1, 1, 1, 'Relic Hunter\'s Cord'),
|
|
(34155, 45548, 0, 0, 0, 1, 1, 1, 1, 'Belt of the Sleeper'),
|
|
(34155, 45549, 0, 0, 0, 1, 1, 1, 1, 'Grips of Chaos'),
|
|
(34155, 45605, 0, 0, 0, 1, 1, 1, 1, 'Daschal\'s Bite'),
|
|
(34155, 46138, 0, 0, 0, 1, 1, 1, 1, 'Idol of the Flourishing Life'),
|
|
(34156, 1, 34106, 40, 0, 1, 0, 1, 1, '(ReferenceTable)'),
|
|
(34156, 2, 34106, 40, 0, 1, 0, 1, 1, '(ReferenceTable)'),
|
|
(34156, 3, 34107, 30, 0, 1, 0, 1, 1, '(ReferenceTable)'),
|
|
(34156, 4, 34108, 15, 0, 1, 0, 1, 1, '(ReferenceTable)'),
|
|
(34156, 5, 34109, 20, 0, 1, 0, 1, 1, '(ReferenceTable)'),
|
|
(34156, 6, 34110, 5, 0, 1, 0, 1, 1, '(ReferenceTable)'),
|
|
(34156, 7, 34155, 2.5, 0, 1, 0, 1, 1, '(ReferenceTable)'),
|
|
(34166, 40431, 0, 0, 0, 1, 1, 1, 1, 'Fury of the Five Flights'),
|
|
(34166, 40432, 0, 0, 0, 1, 1, 1, 1, 'Illustration of the Dragon Soul'),
|
|
(34166, 40433, 0, 0, 0, 1, 1, 1, 1, 'Wyrmrest Band'),
|
|
(34166, 40437, 0, 0, 0, 1, 1, 1, 1, 'Concealment Shoulderpads'),
|
|
(34166, 40438, 0, 0, 0, 1, 1, 1, 1, 'Council Chamber Epaulets'),
|
|
(34166, 40439, 0, 0, 0, 1, 1, 1, 1, 'Mantle of the Eternal Sentinel'),
|
|
(34166, 40446, 0, 0, 0, 1, 1, 1, 1, 'Dragon Brood Legguards'),
|
|
(34166, 40451, 0, 0, 0, 1, 1, 1, 1, 'Hyaline Helm of the Sniper'),
|
|
(34166, 40453, 0, 0, 0, 1, 1, 1, 1, 'Chestplate of the Great Aspects'),
|
|
(34166, 40455, 0, 0, 0, 1, 1, 1, 1, 'Staff of Restraint'),
|
|
(34170, 47215, 0, 0, 0, 1, 1, 1, 1, 'Tears of the Vanquished'),
|
|
(34170, 47216, 0, 0, 0, 1, 1, 1, 1, 'The Black Heart'),
|
|
(34170, 47220, 0, 0, 0, 1, 1, 1, 1, 'Helm of the Violent Fray'),
|
|
(34170, 47221, 0, 0, 0, 1, 1, 1, 1, 'Shoulderpads of the Infamous Knave'),
|
|
(34170, 47222, 0, 0, 0, 1, 1, 1, 1, 'Uruka\'s Band of Zeal'),
|
|
(34170, 47226, 0, 0, 0, 1, 1, 1, 1, 'Mantle of Inconsolable Fear'),
|
|
(34170, 47227, 0, 0, 0, 1, 1, 1, 1, 'Girdle of the Pallid Knight'),
|
|
(34170, 47228, 0, 0, 0, 1, 1, 1, 1, 'Leggings of the Bloodless Knight'),
|
|
(34170, 47230, 0, 0, 0, 1, 1, 1, 1, 'Handwraps of Surrendered Hope'),
|
|
(34170, 47231, 0, 0, 0, 1, 1, 1, 1, 'Belt of Merciless Cruelty'),
|
|
(34170, 47232, 0, 0, 0, 1, 1, 1, 1, 'Drape of the Undefeated'),
|
|
(34170, 47560, 0, 0, 0, 1, 1, 1, 1, 'Boots of the Crackling Flame'),
|
|
(34171, 47527, 0, 0, 0, 1, 1, 1, 1, 'Embrace of Madness'),
|
|
(34171, 47529, 0, 0, 0, 1, 1, 1, 1, 'Mask of Distant Memory'),
|
|
(34171, 47560, 0, 0, 0, 1, 1, 1, 1, 'Boots of the Crackling Flame'),
|
|
(34171, 47561, 0, 0, 0, 1, 1, 1, 1, 'Gloves of the Dark Exile'),
|
|
(34171, 47562, 0, 0, 0, 1, 1, 1, 1, 'Symbol of Redemption'),
|
|
(34171, 47563, 0, 0, 0, 1, 1, 1, 1, 'Girdle of the Dauntless Conqueror'),
|
|
(34171, 47564, 0, 0, 0, 1, 1, 1, 1, 'Gaze of the Unknown'),
|
|
(34171, 47565, 0, 0, 0, 1, 1, 1, 1, 'Vambraces of Unholy Command'),
|
|
(34171, 47566, 0, 0, 0, 1, 1, 1, 1, 'The Warlord\'s Depravity'),
|
|
(34171, 47567, 0, 0, 0, 1, 1, 1, 1, 'Gauntlets of Revelation'),
|
|
(34171, 47568, 0, 0, 0, 1, 1, 1, 1, 'True-aim Long Rifle'),
|
|
(34171, 47569, 0, 0, 0, 1, 1, 1, 1, 'Spectral Kris'),
|
|
(34171, 49682, 0, 0, 0, 1, 1, 1, 1, 'Black Knight\'s Rondel'),
|
|
(34174, 40474, 0, 0, 0, 1, 1, 1, 1, 'Surge Needle Ring'),
|
|
(34174, 40475, 0, 0, 0, 1, 1, 1, 1, 'Barricade of Eternity'),
|
|
(34174, 40486, 0, 0, 0, 1, 1, 1, 1, 'Necklace of the Glittering Chamber'),
|
|
(34174, 40488, 0, 0, 0, 1, 1, 1, 1, 'Ice Spire Scepter'),
|
|
(34174, 40489, 0, 0, 0, 1, 1, 1, 1, 'Greatstaff of the Nexus'),
|
|
(34174, 40491, 0, 0, 0, 1, 1, 1, 1, 'Hailstorm'),
|
|
(34174, 40497, 0, 0, 0, 1, 1, 1, 1, 'Black Ice'),
|
|
(34174, 40511, 0, 0, 0, 1, 1, 1, 1, 'Focusing Energy Epaulets'),
|
|
(34174, 40519, 0, 0, 0, 1, 1, 1, 1, 'Footsteps of Malygos'),
|
|
(34174, 40526, 0, 0, 0, 1, 1, 1, 1, 'Gown of the Spell-Weaver'),
|
|
(34175, 40194, 0, 0, 0, 1, 1, 1, 1, 'Blanketing Robes of Snow'),
|
|
(34175, 40531, 0, 0, 0, 1, 1, 1, 1, 'Mark of Norgannon'),
|
|
(34175, 40532, 0, 0, 0, 1, 1, 1, 1, 'Living Ice Crystals'),
|
|
(34175, 40539, 0, 0, 0, 1, 1, 1, 1, 'Chestguard of the Recluse'),
|
|
(34175, 40541, 0, 0, 0, 1, 1, 1, 1, 'Frosted Adroit Handguards'),
|
|
(34175, 40543, 0, 0, 0, 1, 1, 1, 1, 'Blue Aspect Helm'),
|
|
(34175, 40547, 0, 0, 0, 1, 1, 1, 1, 'Valorous Dreadnaught Legguards'),
|
|
(34175, 40555, 0, 0, 0, 1, 1, 1, 1, 'Mantle of Dissemination'),
|
|
(34175, 40558, 0, 0, 0, 1, 1, 1, 1, 'Arcanic Tramplers'),
|
|
(34175, 40560, 0, 0, 0, 1, 1, 1, 1, 'Leggings of the Wanton Spellcaster'),
|
|
(34175, 40561, 0, 0, 0, 1, 1, 1, 1, 'Leash of Heedless Magic'),
|
|
(34175, 40562, 0, 0, 0, 1, 1, 1, 1, 'Hood of Rationality'),
|
|
(34175, 40564, 0, 0, 0, 1, 1, 1, 1, 'Winter Spectacle Gloves'),
|
|
(34175, 40566, 0, 0, 0, 1, 1, 1, 1, 'Unravelling Strands of Sanity'),
|
|
(34175, 40588, 0, 0, 0, 1, 1, 1, 1, 'Tunic of the Artifact Guardian'),
|
|
(34175, 40589, 0, 0, 0, 1, 1, 1, 1, 'Legplates of Sovereignty'),
|
|
(34175, 40590, 0, 0, 0, 1, 1, 1, 1, 'Elevated Lair Pauldrons'),
|
|
(34175, 40591, 0, 0, 0, 1, 1, 1, 1, 'Melancholy Sabatons'),
|
|
(34175, 40592, 0, 0, 0, 1, 1, 1, 1, 'Boots of Healing Energies'),
|
|
(34175, 40594, 0, 0, 0, 1, 1, 1, 1, 'Spaulders of Catatonia'),
|
|
(34203, 43959, 0, 0, 0, 1, 1, 1, 1, 'Reins of the Grand Black War Mammoth'),
|
|
(34203, 44083, 0, 0, 0, 1, 1, 1, 1, 'Reins of the Grand Black War Mammoth'),
|
|
(34204, 40807, 0, 0, 0, 1, 1, 1, 1, 'Furious Gladiator\'s Plate Gauntlets'),
|
|
(34204, 40808, 0, 0, 0, 1, 1, 1, 1, 'Furious Gladiator\'s Scaled Gauntlets'),
|
|
(34204, 40809, 0, 0, 0, 1, 1, 1, 1, 'Furious Gladiator\'s Dreadplate Gauntlets'),
|
|
(34204, 40847, 0, 0, 0, 1, 1, 1, 1, 'Furious Gladiator\'s Plate Legguards'),
|
|
(34204, 40849, 0, 0, 0, 1, 1, 1, 1, 'Furious Gladiator\'s Scaled Legguards'),
|
|
(34204, 40881, 0, 0, 0, 1, 1, 1, 1, 'Furious Gladiator\'s Girdle of Triumph'),
|
|
(34204, 40882, 0, 0, 0, 1, 1, 1, 1, 'Furious Gladiator\'s Greaves of Triumph'),
|
|
(34204, 40889, 0, 0, 0, 1, 1, 1, 1, 'Furious Gladiator\'s Bracers of Triumph'),
|
|
(34204, 40927, 0, 0, 0, 1, 1, 1, 1, 'Furious Gladiator\'s Ornamented Gloves'),
|
|
(34204, 40939, 0, 0, 0, 1, 1, 1, 1, 'Furious Gladiator\'s Ornamented Legplates'),
|
|
(34204, 40976, 0, 0, 0, 1, 1, 1, 1, 'Furious Gladiator\'s Girdle of Salvation'),
|
|
(34204, 40977, 0, 0, 0, 1, 1, 1, 1, 'Furious Gladiator\'s Greaves of Salvation'),
|
|
(34204, 40983, 0, 0, 0, 1, 1, 1, 1, 'Furious Gladiator\'s Bracers of Salvation'),
|
|
(34204, 41001, 0, 0, 0, 1, 1, 1, 1, 'Furious Gladiator\'s Ringmail Gauntlets'),
|
|
(34204, 41007, 0, 0, 0, 1, 1, 1, 1, 'Furious Gladiator\'s Mail Gauntlets'),
|
|
(34204, 41027, 0, 0, 0, 1, 1, 1, 1, 'Furious Gladiator\'s Ringmail Leggings'),
|
|
(34204, 41033, 0, 0, 0, 1, 1, 1, 1, 'Furious Gladiator\'s Mail Leggings'),
|
|
(34204, 41051, 0, 0, 0, 1, 1, 1, 1, 'Furious Gladiator\'s Waistguard of Salvation'),
|
|
(34204, 41055, 0, 0, 0, 1, 1, 1, 1, 'Furious Gladiator\'s Sabatons of Salvation'),
|
|
(34204, 41060, 0, 0, 0, 1, 1, 1, 1, 'Furious Gladiator\'s Wristguards of Salvation'),
|
|
(34204, 41065, 0, 0, 0, 1, 1, 1, 1, 'Furious Gladiator\'s Wristguards of Dominance'),
|
|
(34204, 41070, 0, 0, 0, 1, 1, 1, 1, 'Furious Gladiator\'s Waistguard of Dominance'),
|
|
(34204, 41075, 0, 0, 0, 1, 1, 1, 1, 'Furious Gladiator\'s Sabatons of Dominance'),
|
|
(34204, 41137, 0, 0, 0, 1, 1, 1, 1, 'Furious Gladiator\'s Linked Gauntlets'),
|
|
(34204, 41143, 0, 0, 0, 1, 1, 1, 1, 'Furious Gladiator\'s Chain Gauntlets'),
|
|
(34204, 41199, 0, 0, 0, 1, 1, 1, 1, 'Furious Gladiator\'s Linked Leggings'),
|
|
(34204, 41205, 0, 0, 0, 1, 1, 1, 1, 'Furious Gladiator\'s Chain Leggings'),
|
|
(34204, 41225, 0, 0, 0, 1, 1, 1, 1, 'Furious Gladiator\'s Wristguards of Triumph'),
|
|
(34204, 41230, 0, 0, 0, 1, 1, 1, 1, 'Furious Gladiator\'s Sabatons of Triumph'),
|
|
(34204, 41235, 0, 0, 0, 1, 1, 1, 1, 'Furious Gladiator\'s Waistguard of Triumph'),
|
|
(34204, 41287, 0, 0, 0, 1, 1, 1, 1, 'Furious Gladiator\'s Kodohide Gloves'),
|
|
(34204, 41293, 0, 0, 0, 1, 1, 1, 1, 'Furious Gladiator\'s Wyrmhide Gloves'),
|
|
(34204, 41298, 0, 0, 0, 1, 1, 1, 1, 'Furious Gladiator\'s Kodohide Legguards'),
|
|
(34204, 41304, 0, 0, 0, 1, 1, 1, 1, 'Furious Gladiator\'s Wyrmhide Legguards'),
|
|
(34204, 41617, 0, 0, 0, 1, 1, 1, 1, 'Furious Gladiator\'s Belt of Salvation'),
|
|
(34204, 41621, 0, 0, 0, 1, 1, 1, 1, 'Furious Gladiator\'s Boots of Salvation'),
|
|
(34204, 41625, 0, 0, 0, 1, 1, 1, 1, 'Furious Gladiator\'s Armwraps of Salvation'),
|
|
(34204, 41630, 0, 0, 0, 1, 1, 1, 1, 'Furious Gladiator\'s Belt of Dominance'),
|
|
(34204, 41635, 0, 0, 0, 1, 1, 1, 1, 'Furious Gladiator\'s Boots of Dominance'),
|
|
(34204, 41640, 0, 0, 0, 1, 1, 1, 1, 'Furious Gladiator\'s Armwraps of Dominance'),
|
|
(34204, 41655, 0, 0, 0, 1, 1, 1, 1, 'Furious Gladiator\'s Leather Legguards'),
|
|
(34204, 41667, 0, 0, 0, 1, 1, 1, 1, 'Furious Gladiator\'s Dragonhide Legguards'),
|
|
(34204, 41767, 0, 0, 0, 1, 1, 1, 1, 'Furious Gladiator\'s Leather Gloves'),
|
|
(34204, 41773, 0, 0, 0, 1, 1, 1, 1, 'Furious Gladiator\'s Dragonhide Gloves'),
|
|
(34204, 41832, 0, 0, 0, 1, 1, 1, 1, 'Furious Gladiator\'s Belt of Triumph'),
|
|
(34204, 41836, 0, 0, 0, 1, 1, 1, 1, 'Furious Gladiator\'s Boots of Triumph'),
|
|
(34204, 41840, 0, 0, 0, 1, 1, 1, 1, 'Furious Gladiator\'s Armwraps of Triumph'),
|
|
(34204, 41848, 0, 0, 0, 1, 1, 1, 1, 'Savage Gladiator\'s Mooncloth Hood'),
|
|
(34204, 41864, 0, 0, 0, 1, 1, 1, 1, 'Furious Gladiator\'s Mooncloth Leggings'),
|
|
(34204, 41874, 0, 0, 0, 1, 1, 1, 1, 'Furious Gladiator\'s Mooncloth Gloves'),
|
|
(34204, 41881, 0, 0, 0, 1, 1, 1, 1, 'Furious Gladiator\'s Cord of Salvation'),
|
|
(34204, 41885, 0, 0, 0, 1, 1, 1, 1, 'Furious Gladiator\'s Slippers of Salvation'),
|
|
(34204, 41893, 0, 0, 0, 1, 1, 1, 1, 'Furious Gladiator\'s Cuffs of Salvation'),
|
|
(34204, 41898, 0, 0, 0, 1, 1, 1, 1, 'Furious Gladiator\'s Cord of Dominance'),
|
|
(34204, 41903, 0, 0, 0, 1, 1, 1, 1, 'Furious Gladiator\'s Slippers of Dominance'),
|
|
(34204, 41909, 0, 0, 0, 1, 1, 1, 1, 'Furious Gladiator\'s Cuffs of Dominance'),
|
|
(34204, 41927, 0, 0, 0, 1, 1, 1, 1, 'Furious Gladiator\'s Satin Leggings'),
|
|
(34204, 41940, 0, 0, 0, 1, 1, 1, 1, 'Furious Gladiator\'s Satin Gloves'),
|
|
(34204, 41959, 0, 0, 0, 1, 1, 1, 1, 'Furious Gladiator\'s Silk Trousers'),
|
|
(34204, 41971, 0, 0, 0, 1, 1, 1, 1, 'Furious Gladiator\'s Silk Handguards'),
|
|
(34204, 42005, 0, 0, 0, 1, 1, 1, 1, 'Furious Gladiator\'s Felweave Trousers'),
|
|
(34204, 42017, 0, 0, 0, 1, 1, 1, 1, 'Furious Gladiator\'s Felweave Handguards'),
|
|
(34204, 42034, 0, 0, 0, 1, 1, 1, 1, 'Furious Gladiator\'s Pendant of Triumph'),
|
|
(34204, 42035, 0, 0, 0, 1, 1, 1, 1, 'Furious Gladiator\'s Pendant of Victory'),
|
|
(34204, 42036, 0, 0, 0, 1, 1, 1, 1, 'Furious Gladiator\'s Pendant of Dominance'),
|
|
(34204, 42037, 0, 0, 0, 1, 1, 1, 1, 'Furious Gladiator\'s Pendant of Ascendancy'),
|
|
(34204, 42038, 0, 0, 0, 1, 1, 1, 1, 'Furious Gladiator\'s Pendant of Subjugation'),
|
|
(34204, 42039, 0, 0, 0, 1, 1, 1, 1, 'Furious Gladiator\'s Pendant of Deliverance'),
|
|
(34204, 42040, 0, 0, 0, 1, 1, 1, 1, 'Furious Gladiator\'s Pendant of Salvation'),
|
|
(34204, 42069, 0, 0, 0, 1, 1, 1, 1, 'Furious Gladiator\'s Cloak of Dominance'),
|
|
(34204, 42070, 0, 0, 0, 1, 1, 1, 1, 'Furious Gladiator\'s Cloak of Subjugation'),
|
|
(34204, 42071, 0, 0, 0, 1, 1, 1, 1, 'Furious Gladiator\'s Cloak of Ascendancy'),
|
|
(34204, 42072, 0, 0, 0, 1, 1, 1, 1, 'Furious Gladiator\'s Cloak of Salvation'),
|
|
(34204, 42073, 0, 0, 0, 1, 1, 1, 1, 'Furious Gladiator\'s Cloak of Deliverance'),
|
|
(34204, 42074, 0, 0, 0, 1, 1, 1, 1, 'Furious Gladiator\'s Cloak of Triumph'),
|
|
(34204, 42075, 0, 0, 0, 1, 1, 1, 1, 'Furious Gladiator\'s Cloak of Victory'),
|
|
(34204, 42116, 0, 0, 0, 1, 1, 1, 1, 'Furious Gladiator\'s Band of Dominance'),
|
|
(34204, 42117, 0, 0, 0, 1, 1, 1, 1, 'Furious Gladiator\'s Band of Triumph'),
|
|
(34204, 46373, 0, 0, 0, 1, 1, 1, 1, 'Furious Gladiator\'s Pendant of Sundering'),
|
|
(34204, 47750, 0, 0, 0, 1, 2, 1, 1, 'Khadgar\'s Leggings of Conquest'),
|
|
(34204, 47752, 0, 0, 0, 1, 2, 1, 1, 'Khadgar\'s Gauntlets of Conquest'),
|
|
(34204, 47773, 0, 0, 0, 1, 3, 1, 1, 'Sunstrider\'s Gauntlets of Conquest'),
|
|
(34204, 47775, 0, 0, 0, 1, 3, 1, 1, 'Sunstrider\'s Leggings of Conquest'),
|
|
(34204, 47783, 0, 0, 0, 1, 2, 1, 1, 'Kel\'Thuzad\'s Gloves of Conquest'),
|
|
(34204, 47785, 0, 0, 0, 1, 2, 1, 1, 'Kel\'Thuzad\'s Leggings of Conquest'),
|
|
(34204, 47800, 0, 0, 0, 1, 3, 1, 1, 'Gul\'dan\'s Leggings of Conquest'),
|
|
(34204, 47802, 0, 0, 0, 1, 3, 1, 1, 'Gul\'dan\'s Gloves of Conquest'),
|
|
(34204, 47980, 0, 0, 0, 1, 2, 1, 1, 'Velen\'s Leggings of Conquest'),
|
|
(34204, 47982, 0, 0, 0, 1, 2, 1, 1, 'Velen\'s Gloves of Conquest'),
|
|
(34204, 48067, 0, 0, 0, 1, 3, 1, 1, 'Zabra\'s Gloves of Conquest'),
|
|
(34204, 48069, 0, 0, 0, 1, 3, 1, 1, 'Zabra\'s Leggings of Conquest'),
|
|
(34204, 48072, 0, 0, 0, 1, 2, 1, 1, 'Velen\'s Handwraps of Conquest'),
|
|
(34204, 48074, 0, 0, 0, 1, 2, 1, 1, 'Velen\'s Pants of Conquest'),
|
|
(34204, 48097, 0, 0, 0, 1, 3, 1, 1, 'Zabra\'s Handwraps of Conquest'),
|
|
(34204, 48099, 0, 0, 0, 1, 3, 1, 1, 'Zabra\'s Pants of Conquest'),
|
|
(34204, 48130, 0, 0, 0, 1, 2, 1, 1, 'Malfurion\'s Leggings of Conquest'),
|
|
(34204, 48132, 0, 0, 0, 1, 2, 1, 1, 'Malfurion\'s Handguards of Conquest'),
|
|
(34204, 48153, 0, 0, 0, 1, 3, 1, 1, 'Runetotem\'s Handguards of Conquest'),
|
|
(34204, 48155, 0, 0, 0, 1, 3, 1, 1, 'Runetotem\'s Leggings of Conquest'),
|
|
(34204, 48160, 0, 0, 0, 1, 2, 1, 1, 'Malfurion\'s Trousers of Conquest'),
|
|
(34204, 48162, 0, 0, 0, 1, 2, 1, 1, 'Malfurion\'s Gloves of Conquest'),
|
|
(34204, 48183, 0, 0, 0, 1, 3, 1, 1, 'Runetotem\'s Gloves of Conquest'),
|
|
(34204, 48185, 0, 0, 0, 1, 3, 1, 1, 'Runetotem\'s Trousers of Conquest'),
|
|
(34204, 48190, 0, 0, 0, 1, 3, 1, 1, 'Runetotem\'s Legguards of Conquest'),
|
|
(34204, 48192, 0, 0, 0, 1, 3, 1, 1, 'Runetotem\'s Handgrips of Conquest'),
|
|
(34204, 48213, 0, 0, 0, 1, 2, 1, 1, 'Malfurion\'s Handgrips of Conquest'),
|
|
(34204, 48215, 0, 0, 0, 1, 2, 1, 1, 'Malfurion\'s Legguards of Conquest'),
|
|
(34204, 48220, 0, 0, 0, 1, 2, 1, 1, 'VanCleef\'s Legplates of Conquest'),
|
|
(34204, 48222, 0, 0, 0, 1, 2, 1, 1, 'VanCleef\'s Gauntlets of Conquest'),
|
|
(34204, 48244, 0, 0, 0, 1, 3, 1, 1, 'Garona\'s Gauntlets of Conquest'),
|
|
(34204, 48246, 0, 0, 0, 1, 3, 1, 1, 'Garona\'s Legplates of Conquest'),
|
|
(34204, 48252, 0, 0, 0, 1, 2, 1, 1, 'Windrunner\'s Legguards of Conquest'),
|
|
(34204, 48254, 0, 0, 0, 1, 2, 1, 1, 'Windrunner\'s Handguards of Conquest'),
|
|
(34204, 48276, 0, 0, 0, 1, 3, 1, 1, 'Windrunner\'s Handguards of Conquest'),
|
|
(34204, 48278, 0, 0, 0, 1, 3, 1, 1, 'Windrunner\'s Legguards of Conquest'),
|
|
(34204, 48282, 0, 0, 0, 1, 2, 1, 1, 'Nobundo\'s Legguards of Conquest'),
|
|
(34204, 48284, 0, 0, 0, 1, 2, 1, 1, 'Nobundo\'s Handguards of Conquest'),
|
|
(34204, 48296, 0, 0, 0, 1, 3, 1, 1, 'Thrall\'s Handguards of Conquest'),
|
|
(34204, 48298, 0, 0, 0, 1, 3, 1, 1, 'Thrall\'s Legguards of Conquest'),
|
|
(34204, 48312, 0, 0, 0, 1, 2, 1, 1, 'Nobundo\'s Gloves of Conquest'),
|
|
(34204, 48314, 0, 0, 0, 1, 2, 1, 1, 'Nobundo\'s Kilt of Conquest'),
|
|
(34204, 48337, 0, 0, 0, 1, 3, 1, 1, 'Thrall\'s Gloves of Conquest'),
|
|
(34204, 48339, 0, 0, 0, 1, 3, 1, 1, 'Thrall\'s Kilt of Conquest'),
|
|
(34204, 48342, 0, 0, 0, 1, 2, 1, 1, 'Nobundo\'s Grips of Conquest'),
|
|
(34204, 48344, 0, 0, 0, 1, 2, 1, 1, 'Nobundo\'s War-Kilt of Conquest'),
|
|
(34204, 48367, 0, 0, 0, 1, 3, 1, 1, 'Thrall\'s Grips of Conquest'),
|
|
(34204, 48369, 0, 0, 0, 1, 3, 1, 1, 'Thrall\'s War-Kilt of Conquest'),
|
|
(34204, 48373, 0, 0, 0, 1, 2, 1, 1, 'Wrynn\'s Legplates of Conquest'),
|
|
(34204, 48375, 0, 0, 0, 1, 2, 1, 1, 'Wrynn\'s Gauntlets of Conquest'),
|
|
(34204, 48387, 0, 0, 0, 1, 3, 1, 1, 'Hellscream\'s Gauntlets of Conquest'),
|
|
(34204, 48389, 0, 0, 0, 1, 3, 1, 1, 'Hellscream\'s Legplates of Conquest'),
|
|
(34204, 48445, 0, 0, 0, 1, 2, 1, 1, 'Wrynn\'s Legguards of Conquest'),
|
|
(34204, 48449, 0, 0, 0, 1, 2, 1, 1, 'Wrynn\'s Handguards of Conquest'),
|
|
(34204, 48457, 0, 0, 0, 1, 3, 1, 1, 'Hellscream\'s Handguards of Conquest'),
|
|
(34204, 48459, 0, 0, 0, 1, 3, 1, 1, 'Hellscream\'s Legguards of Conquest'),
|
|
(34204, 48476, 0, 0, 0, 1, 2, 1, 1, 'Thassarian\'s Legplates of Conquest'),
|
|
(34204, 48480, 0, 0, 0, 1, 2, 1, 1, 'Thassarian\'s Gauntlets of Conquest'),
|
|
(34204, 48502, 0, 0, 0, 1, 3, 1, 1, 'Koltira\'s Gauntlets of Conquest'),
|
|
(34204, 48504, 0, 0, 0, 1, 3, 1, 1, 'Koltira\'s Legplates of Conquest'),
|
|
(34204, 48533, 0, 0, 0, 1, 2, 1, 1, 'Thassarian\'s Legguards of Conquest'),
|
|
(34204, 48537, 0, 0, 0, 1, 2, 1, 1, 'Thassarian\'s Handguards of Conquest'),
|
|
(34204, 48559, 0, 0, 0, 1, 3, 1, 1, 'Koltira\'s Handguards of Conquest'),
|
|
(34204, 48561, 0, 0, 0, 1, 3, 1, 1, 'Koltira\'s Legguards of Conquest'),
|
|
(34204, 48568, 0, 0, 0, 1, 2, 1, 1, 'Turalyon\'s Greaves of Conquest'),
|
|
(34204, 48574, 0, 0, 0, 1, 2, 1, 1, 'Turalyon\'s Gloves of Conquest'),
|
|
(34204, 48596, 0, 0, 0, 1, 3, 1, 1, 'Liadrin\'s Greaves of Conquest'),
|
|
(34204, 48598, 0, 0, 0, 1, 3, 1, 1, 'Liadrin\'s Gloves of Conquest'),
|
|
(34204, 48603, 0, 0, 0, 1, 2, 1, 1, 'Turalyon\'s Gauntlets of Conquest'),
|
|
(34204, 48605, 0, 0, 0, 1, 2, 1, 1, 'Turalyon\'s Legplates of Conquest'),
|
|
(34204, 48628, 0, 0, 0, 1, 3, 1, 1, 'Liadrin\'s Legplates of Conquest'),
|
|
(34204, 48630, 0, 0, 0, 1, 3, 1, 1, 'Liadrin\'s Gauntlets of Conquest'),
|
|
(34204, 48633, 0, 0, 0, 1, 2, 1, 1, 'Turalyon\'s Handguards of Conquest'),
|
|
(34204, 48635, 0, 0, 0, 1, 2, 1, 1, 'Turalyon\'s Legguards of Conquest'),
|
|
(34204, 48653, 0, 0, 0, 1, 3, 1, 1, 'Liadrin\'s Handguards of Conquest'),
|
|
(34204, 48655, 0, 0, 0, 1, 3, 1, 1, 'Liadrin\'s Legguards of Conquest'),
|
|
(34205, 40810, 0, 0, 0, 1, 1, 1, 1, 'Relentless Gladiator\'s Plate Gauntlets'),
|
|
(34205, 40812, 0, 0, 0, 1, 1, 1, 1, 'Relentless Gladiator\'s Scaled Gauntlets'),
|
|
(34205, 40850, 0, 0, 0, 1, 1, 1, 1, 'Relentless Gladiator\'s Plate Legguards'),
|
|
(34205, 40851, 0, 0, 0, 1, 1, 1, 1, 'Relentless Gladiator\'s Dreadplate Legguards'),
|
|
(34205, 40852, 0, 0, 0, 1, 1, 1, 1, 'Relentless Gladiator\'s Scaled Legguards'),
|
|
(34205, 40883, 0, 0, 0, 1, 1, 1, 1, 'Relentless Gladiator\'s Girdle of Triumph'),
|
|
(34205, 40884, 0, 0, 0, 1, 1, 1, 1, 'Relentless Gladiator\'s Greaves of Triumph'),
|
|
(34205, 40890, 0, 0, 0, 1, 1, 1, 1, 'Relentless Gladiator\'s Bracers of Triumph'),
|
|
(34205, 40928, 0, 0, 0, 1, 1, 1, 1, 'Relentless Gladiator\'s Ornamented Gloves'),
|
|
(34205, 40940, 0, 0, 0, 1, 1, 1, 1, 'Relentless Gladiator\'s Ornamented Legplates'),
|
|
(34205, 40978, 0, 0, 0, 1, 1, 1, 1, 'Relentless Gladiator\'s Girdle of Salvation'),
|
|
(34205, 40979, 0, 0, 0, 1, 1, 1, 1, 'Relentless Gladiator\'s Greaves of Salvation'),
|
|
(34205, 40984, 0, 0, 0, 1, 1, 1, 1, 'Relentless Gladiator\'s Bracers of Salvation'),
|
|
(34205, 41002, 0, 0, 0, 1, 1, 1, 1, 'Relentless Gladiator\'s Ringmail Gauntlets'),
|
|
(34205, 41008, 0, 0, 0, 1, 1, 1, 1, 'Relentless Gladiator\'s Mail Gauntlets'),
|
|
(34205, 41028, 0, 0, 0, 1, 1, 1, 1, 'Relentless Gladiator\'s Ringmail Leggings'),
|
|
(34205, 41034, 0, 0, 0, 1, 1, 1, 1, 'Relentless Gladiator\'s Mail Leggings'),
|
|
(34205, 41052, 0, 0, 0, 1, 1, 1, 1, 'Relentless Gladiator\'s Waistguard of Salvation'),
|
|
(34205, 41056, 0, 0, 0, 1, 1, 1, 1, 'Relentless Gladiator\'s Sabatons of Salvation'),
|
|
(34205, 41061, 0, 0, 0, 1, 1, 1, 1, 'Relentless Gladiator\'s Wristguards of Salvation'),
|
|
(34205, 41066, 0, 0, 0, 1, 1, 1, 1, 'Relentless Gladiator\'s Wristguards of Dominance'),
|
|
(34205, 41071, 0, 0, 0, 1, 1, 1, 1, 'Relentless Gladiator\'s Waistguard of Dominance'),
|
|
(34205, 41076, 0, 0, 0, 1, 1, 1, 1, 'Relentless Gladiator\'s Sabatons of Dominance'),
|
|
(34205, 41138, 0, 0, 0, 1, 1, 1, 1, 'Relentless Gladiator\'s Linked Gauntlets'),
|
|
(34205, 41144, 0, 0, 0, 1, 1, 1, 1, 'Relentless Gladiator\'s Chain Gauntlets'),
|
|
(34205, 41200, 0, 0, 0, 1, 1, 1, 1, 'Relentless Gladiator\'s Linked Leggings'),
|
|
(34205, 41206, 0, 0, 0, 1, 1, 1, 1, 'Relentless Gladiator\'s Chain Leggings'),
|
|
(34205, 41226, 0, 0, 0, 1, 1, 1, 1, 'Relentless Gladiator\'s Wristguards of Triumph'),
|
|
(34205, 41231, 0, 0, 0, 1, 1, 1, 1, 'Relentless Gladiator\'s Sabatons of Triumph'),
|
|
(34205, 41236, 0, 0, 0, 1, 1, 1, 1, 'Relentless Gladiator\'s Waistguard of Triumph'),
|
|
(34205, 41288, 0, 0, 0, 1, 1, 1, 1, 'Relentless Gladiator\'s Kodohide Gloves'),
|
|
(34205, 41294, 0, 0, 0, 1, 1, 1, 1, 'Relentless Gladiator\'s Wyrmhide Gloves'),
|
|
(34205, 41299, 0, 0, 0, 1, 1, 1, 1, 'Relentless Gladiator\'s Kodohide Legguards'),
|
|
(34205, 41305, 0, 0, 0, 1, 1, 1, 1, 'Relentless Gladiator\'s Wyrmhide Legguards'),
|
|
(34205, 41618, 0, 0, 0, 1, 1, 1, 1, 'Relentless Gladiator\'s Belt of Salvation'),
|
|
(34205, 41622, 0, 0, 0, 1, 1, 1, 1, 'Relentless Gladiator\'s Boots of Salvation'),
|
|
(34205, 41626, 0, 0, 0, 1, 1, 1, 1, 'Relentless Gladiator\'s Armwraps of Salvation'),
|
|
(34205, 41631, 0, 0, 0, 1, 1, 1, 1, 'Relentless Gladiator\'s Belt of Dominance'),
|
|
(34205, 41636, 0, 0, 0, 1, 1, 1, 1, 'Relentless Gladiator\'s Boots of Dominance'),
|
|
(34205, 41641, 0, 0, 0, 1, 1, 1, 1, 'Relentless Gladiator\'s Armwraps of Dominance'),
|
|
(34205, 41656, 0, 0, 0, 1, 1, 1, 1, 'Relentless Gladiator\'s Leather Legguards'),
|
|
(34205, 41668, 0, 0, 0, 1, 1, 1, 1, 'Relentless Gladiator\'s Dragonhide Legguards'),
|
|
(34205, 41768, 0, 0, 0, 1, 1, 1, 1, 'Relentless Gladiator\'s Leather Gloves'),
|
|
(34205, 41774, 0, 0, 0, 1, 1, 1, 1, 'Relentless Gladiator\'s Dragonhide Gloves'),
|
|
(34205, 41833, 0, 0, 0, 1, 1, 1, 1, 'Relentless Gladiator\'s Belt of Triumph'),
|
|
(34205, 41837, 0, 0, 0, 1, 1, 1, 1, 'Relentless Gladiator\'s Boots of Triumph'),
|
|
(34205, 41841, 0, 0, 0, 1, 1, 1, 1, 'Relentless Gladiator\'s Armwraps of Triumph'),
|
|
(34205, 41865, 0, 0, 0, 1, 1, 1, 1, 'Relentless Gladiator\'s Mooncloth Leggings'),
|
|
(34205, 41875, 0, 0, 0, 1, 1, 1, 1, 'Relentless Gladiator\'s Mooncloth Gloves'),
|
|
(34205, 41882, 0, 0, 0, 1, 1, 1, 1, 'Relentless Gladiator\'s Cord of Salvation'),
|
|
(34205, 41886, 0, 0, 0, 1, 1, 1, 1, 'Relentless Gladiator\'s Treads of Salvation'),
|
|
(34205, 41894, 0, 0, 0, 1, 1, 1, 1, 'Relentless Gladiator\'s Cuffs of Salvation'),
|
|
(34205, 41899, 0, 0, 0, 1, 1, 1, 1, 'Relentless Gladiator\'s Cord of Dominance'),
|
|
(34205, 41904, 0, 0, 0, 1, 1, 1, 1, 'Relentless Gladiator\'s Treads of Dominance'),
|
|
(34205, 41910, 0, 0, 0, 1, 1, 1, 1, 'Relentless Gladiator\'s Cuffs of Dominance'),
|
|
(34205, 41928, 0, 0, 0, 1, 1, 1, 1, 'Relentless Gladiator\'s Satin Leggings'),
|
|
(34205, 41941, 0, 0, 0, 1, 1, 1, 1, 'Relentless Gladiator\'s Satin Gloves'),
|
|
(34205, 41960, 0, 0, 0, 1, 1, 1, 1, 'Relentless Gladiator\'s Silk Trousers'),
|
|
(34205, 41972, 0, 0, 0, 1, 1, 1, 1, 'Relentless Gladiator\'s Silk Handguards'),
|
|
(34205, 42006, 0, 0, 0, 1, 1, 1, 1, 'Relentless Gladiator\'s Felweave Trousers'),
|
|
(34205, 42018, 0, 0, 0, 1, 1, 1, 1, 'Relentless Gladiator\'s Felweave Handguards'),
|
|
(34205, 42041, 0, 0, 0, 1, 1, 1, 1, 'Relentless Gladiator\'s Pendant of Triumph'),
|
|
(34205, 42042, 0, 0, 0, 1, 1, 1, 1, 'Relentless Gladiator\'s Pendant of Victory'),
|
|
(34205, 42043, 0, 0, 0, 1, 1, 1, 1, 'Relentless Gladiator\'s Pendant of Dominance'),
|
|
(34205, 42044, 0, 0, 0, 1, 1, 1, 1, 'Relentless Gladiator\'s Pendant of Ascendancy'),
|
|
(34205, 42045, 0, 0, 0, 1, 1, 1, 1, 'Relentless Gladiator\'s Pendant of Subjugation'),
|
|
(34205, 42046, 0, 0, 0, 1, 1, 1, 1, 'Relentless Gladiator\'s Pendant of Deliverance'),
|
|
(34205, 42047, 0, 0, 0, 1, 1, 1, 1, 'Relentless Gladiator\'s Pendant of Salvation'),
|
|
(34205, 42076, 0, 0, 0, 1, 1, 1, 1, 'Relentless Gladiator\'s Cloak of Dominance'),
|
|
(34205, 42077, 0, 0, 0, 1, 1, 1, 1, 'Relentless Gladiator\'s Cloak of Subjugation'),
|
|
(34205, 42078, 0, 0, 0, 1, 1, 1, 1, 'Relentless Gladiator\'s Cloak of Ascendancy'),
|
|
(34205, 42079, 0, 0, 0, 1, 1, 1, 1, 'Relentless Gladiator\'s Cloak of Salvation'),
|
|
(34205, 42080, 0, 0, 0, 1, 1, 1, 1, 'Relentless Gladiator\'s Cloak of Deliverance'),
|
|
(34205, 42081, 0, 0, 0, 1, 1, 1, 1, 'Relentless Gladiator\'s Cloak of Triumph'),
|
|
(34205, 42082, 0, 0, 0, 1, 1, 1, 1, 'Relentless Gladiator\'s Cloak of Victory'),
|
|
(34205, 42118, 0, 0, 0, 1, 1, 1, 1, 'Relentless Gladiator\'s Band of Ascendancy'),
|
|
(34205, 42119, 0, 0, 0, 1, 1, 1, 1, 'Relentless Gladiator\'s Band of Victory'),
|
|
(34205, 46374, 0, 0, 0, 1, 1, 1, 1, 'Relentless Gladiator\'s Pendant of Sundering'),
|
|
(34205, 47753, 0, 0, 0, 1, 2, 1, 1, 'Khadgar\'s Gauntlets of Triumph'),
|
|
(34205, 47755, 0, 0, 0, 1, 2, 1, 1, 'Khadgar\'s Leggings of Triumph'),
|
|
(34205, 47770, 0, 0, 0, 1, 3, 1, 1, 'Sunstrider\'s Leggings of Triumph'),
|
|
(34205, 47772, 0, 0, 0, 1, 3, 1, 1, 'Sunstrider\'s Gauntlets of Triumph'),
|
|
(34205, 47780, 0, 0, 0, 1, 2, 1, 1, 'Kel\'Thuzad\'s Leggings of Triumph'),
|
|
(34205, 47782, 0, 0, 0, 1, 2, 1, 1, 'Kel\'Thuzad\'s Gloves of Triumph'),
|
|
(34205, 47803, 0, 0, 0, 1, 3, 1, 1, 'Gul\'dan\'s Gloves of Triumph'),
|
|
(34205, 47805, 0, 0, 0, 1, 3, 1, 1, 'Gul\'dan\'s Leggings of Triumph'),
|
|
(34205, 47983, 0, 0, 0, 1, 2, 1, 1, 'Velen\'s Gloves of Triumph'),
|
|
(34205, 47985, 0, 0, 0, 1, 2, 1, 1, 'Velen\'s Leggings of Triumph'),
|
|
(34205, 48064, 0, 0, 0, 1, 3, 1, 1, 'Zabra\'s Leggings of Triumph'),
|
|
(34205, 48066, 0, 0, 0, 1, 3, 1, 1, 'Zabra\'s Gloves of Triumph'),
|
|
(34205, 48077, 0, 0, 0, 1, 2, 1, 1, 'Velen\'s Handwraps of Triumph'),
|
|
(34205, 48079, 0, 0, 0, 1, 2, 1, 1, 'Velen\'s Pants of Triumph'),
|
|
(34205, 48094, 0, 0, 0, 1, 3, 1, 1, 'Zabra\'s Pants of Triumph'),
|
|
(34205, 48096, 0, 0, 0, 1, 3, 1, 1, 'Zabra\'s Handwraps of Triumph'),
|
|
(34205, 48133, 0, 0, 0, 1, 2, 1, 1, 'Malfurion\'s Handguards of Triumph'),
|
|
(34205, 48135, 0, 0, 0, 1, 2, 1, 1, 'Malfurion\'s Leggings of Triumph'),
|
|
(34205, 48150, 0, 0, 0, 1, 3, 1, 1, 'Runetotem\'s Leggings of Triumph'),
|
|
(34205, 48152, 0, 0, 0, 1, 3, 1, 1, 'Runetotem\'s Handguards of Triumph'),
|
|
(34205, 48163, 0, 0, 0, 1, 2, 1, 1, 'Malfurion\'s Gloves of Triumph'),
|
|
(34205, 48165, 0, 0, 0, 1, 2, 1, 1, 'Malfurion\'s Trousers of Triumph'),
|
|
(34205, 48180, 0, 0, 0, 1, 3, 1, 1, 'Runetotem\'s Trousers of Triumph'),
|
|
(34205, 48182, 0, 0, 0, 1, 3, 1, 1, 'Runetotem\'s Gloves of Triumph'),
|
|
(34205, 48193, 0, 0, 0, 1, 3, 1, 1, 'Runetotem\'s Handgrips of Triumph'),
|
|
(34205, 48195, 0, 0, 0, 1, 3, 1, 1, 'Runetotem\'s Legguards of Triumph'),
|
|
(34205, 48210, 0, 0, 0, 1, 2, 1, 1, 'Malfurion\'s Legguards of Triumph'),
|
|
(34205, 48212, 0, 0, 0, 1, 2, 1, 1, 'Malfurion\'s Handgrips of Triumph'),
|
|
(34205, 48224, 0, 0, 0, 1, 2, 1, 1, 'VanCleef\'s Gauntlets of Triumph'),
|
|
(34205, 48226, 0, 0, 0, 1, 2, 1, 1, 'VanCleef\'s Legplates of Triumph'),
|
|
(34205, 48239, 0, 0, 0, 1, 3, 1, 1, 'Garona\'s Legplates of Triumph'),
|
|
(34205, 48241, 0, 0, 0, 1, 3, 1, 1, 'Garona\'s Gauntlets of Triumph'),
|
|
(34205, 48256, 0, 0, 0, 1, 2, 1, 1, 'Windrunner\'s Handguards of Triumph'),
|
|
(34205, 48258, 0, 0, 0, 1, 2, 1, 1, 'Windrunner\'s Legguards of Triumph'),
|
|
(34205, 48271, 0, 0, 0, 1, 3, 1, 1, 'Windrunner\'s Legguards of Triumph'),
|
|
(34205, 48273, 0, 0, 0, 1, 3, 1, 1, 'Windrunner\'s Handguards of Triumph'),
|
|
(34205, 48286, 0, 0, 0, 1, 2, 1, 1, 'Nobundo\'s Handguards of Triumph'),
|
|
(34205, 48288, 0, 0, 0, 1, 2, 1, 1, 'Nobundo\'s Legguards of Triumph'),
|
|
(34205, 48301, 0, 0, 0, 1, 3, 1, 1, 'Thrall\'s Handguards of Triumph'),
|
|
(34205, 48303, 0, 0, 0, 1, 3, 1, 1, 'Thrall\'s Legguards of Triumph'),
|
|
(34205, 48317, 0, 0, 0, 1, 2, 1, 1, 'Nobundo\'s Gloves of Triumph'),
|
|
(34205, 48319, 0, 0, 0, 1, 2, 1, 1, 'Nobundo\'s Kilt of Triumph'),
|
|
(34205, 48332, 0, 0, 0, 1, 3, 1, 1, 'Thrall\'s Kilt of Triumph'),
|
|
(34205, 48334, 0, 0, 0, 1, 3, 1, 1, 'Thrall\'s Gloves of Triumph'),
|
|
(34205, 48347, 0, 0, 0, 1, 2, 1, 1, 'Nobundo\'s Grips of Triumph'),
|
|
(34205, 48349, 0, 0, 0, 1, 2, 1, 1, 'Nobundo\'s War-Kilt of Triumph'),
|
|
(34205, 48362, 0, 0, 0, 1, 3, 1, 1, 'Thrall\'s War-Kilt of Triumph'),
|
|
(34205, 48364, 0, 0, 0, 1, 3, 1, 1, 'Thrall\'s Grips of Triumph'),
|
|
(34205, 48377, 0, 0, 0, 1, 2, 1, 1, 'Wrynn\'s Gauntlets of Triumph'),
|
|
(34205, 48379, 0, 0, 0, 1, 2, 1, 1, 'Wrynn\'s Legplates of Triumph'),
|
|
(34205, 48392, 0, 0, 0, 1, 3, 1, 1, 'Hellscream\'s Gauntlets of Triumph'),
|
|
(34205, 48394, 0, 0, 0, 1, 3, 1, 1, 'Hellscream\'s Legplates of Triumph'),
|
|
(34205, 48446, 0, 0, 0, 1, 2, 1, 1, 'Wrynn\'s Legguards of Triumph'),
|
|
(34205, 48452, 0, 0, 0, 1, 2, 1, 1, 'Wrynn\'s Handguards of Triumph'),
|
|
(34205, 48462, 0, 0, 0, 1, 3, 1, 1, 'Hellscream\'s Handguards of Triumph'),
|
|
(34205, 48464, 0, 0, 0, 1, 3, 1, 1, 'Hellscream\'s Legguards of Triumph'),
|
|
(34205, 48482, 0, 0, 0, 1, 2, 1, 1, 'Thassarian\'s Gauntlets of Triumph'),
|
|
(34205, 48484, 0, 0, 0, 1, 2, 1, 1, 'Thassarian\'s Legplates of Triumph'),
|
|
(34205, 48497, 0, 0, 0, 1, 3, 1, 1, 'Koltira\'s Legplates of Triumph'),
|
|
(34205, 48499, 0, 0, 0, 1, 3, 1, 1, 'Koltira\'s Gauntlets of Triumph'),
|
|
(34205, 48539, 0, 0, 0, 1, 2, 1, 1, 'Thassarian\'s Handguards of Triumph'),
|
|
(34205, 48541, 0, 0, 0, 1, 2, 1, 1, 'Thassarian\'s Legguards of Triumph'),
|
|
(34205, 48554, 0, 0, 0, 1, 3, 1, 1, 'Koltira\'s Legguards of Triumph'),
|
|
(34205, 48556, 0, 0, 0, 1, 3, 1, 1, 'Koltira\'s Handguards of Triumph'),
|
|
(34205, 48576, 0, 0, 0, 1, 2, 1, 1, 'Turalyon\'s Gloves of Triumph'),
|
|
(34205, 48578, 0, 0, 0, 1, 2, 1, 1, 'Turalyon\'s Greaves of Triumph'),
|
|
(34205, 48591, 0, 0, 0, 1, 3, 1, 1, 'Liadrin\'s Greaves of Triumph'),
|
|
(34205, 48593, 0, 0, 0, 1, 3, 1, 1, 'Liadrin\'s Gloves of Triumph'),
|
|
(34205, 48608, 0, 0, 0, 1, 2, 1, 1, 'Turalyon\'s Gauntlets of Triumph'),
|
|
(34205, 48610, 0, 0, 0, 1, 2, 1, 1, 'Turalyon\'s Legplates of Triumph'),
|
|
(34205, 48623, 0, 0, 0, 1, 3, 1, 1, 'Liadrin\'s Legplates of Triumph'),
|
|
(34205, 48625, 0, 0, 0, 1, 3, 1, 1, 'Liadrin\'s Gauntlets of Triumph'),
|
|
(34205, 48638, 0, 0, 0, 1, 2, 1, 1, 'Turalyon\'s Legguards of Triumph'),
|
|
(34205, 48640, 0, 0, 0, 1, 2, 1, 1, 'Turalyon\'s Handguards of Triumph'),
|
|
(34205, 48658, 0, 0, 0, 1, 3, 1, 1, 'Liadrin\'s Handguards of Triumph'),
|
|
(34205, 48660, 0, 0, 0, 1, 3, 1, 1, 'Liadrin\'s Legguards of Triumph'),
|
|
(34206, 40810, 0, 0, 0, 1, 1, 1, 1, 'Relentless Gladiator\'s Plate Gauntlets'),
|
|
(34206, 40811, 0, 0, 0, 1, 1, 1, 1, 'Relentless Gladiator\'s Dreadplate Gauntlets'),
|
|
(34206, 40812, 0, 0, 0, 1, 1, 1, 1, 'Relentless Gladiator\'s Scaled Gauntlets'),
|
|
(34206, 40850, 0, 0, 0, 1, 1, 1, 1, 'Relentless Gladiator\'s Plate Legguards'),
|
|
(34206, 40851, 0, 0, 0, 1, 1, 1, 1, 'Relentless Gladiator\'s Dreadplate Legguards'),
|
|
(34206, 40852, 0, 0, 0, 1, 1, 1, 1, 'Relentless Gladiator\'s Scaled Legguards'),
|
|
(34206, 40883, 0, 0, 0, 1, 1, 1, 1, 'Relentless Gladiator\'s Girdle of Triumph'),
|
|
(34206, 40884, 0, 0, 0, 1, 1, 1, 1, 'Relentless Gladiator\'s Greaves of Triumph'),
|
|
(34206, 40890, 0, 0, 0, 1, 1, 1, 1, 'Relentless Gladiator\'s Bracers of Triumph'),
|
|
(34206, 40928, 0, 0, 0, 1, 1, 1, 1, 'Relentless Gladiator\'s Ornamented Gloves'),
|
|
(34206, 40940, 0, 0, 0, 1, 1, 1, 1, 'Relentless Gladiator\'s Ornamented Legplates'),
|
|
(34206, 40978, 0, 0, 0, 1, 1, 1, 1, 'Relentless Gladiator\'s Girdle of Salvation'),
|
|
(34206, 40979, 0, 0, 0, 1, 1, 1, 1, 'Relentless Gladiator\'s Greaves of Salvation'),
|
|
(34206, 40984, 0, 0, 0, 1, 1, 1, 1, 'Relentless Gladiator\'s Bracers of Salvation'),
|
|
(34206, 41002, 0, 0, 0, 1, 1, 1, 1, 'Relentless Gladiator\'s Ringmail Gauntlets'),
|
|
(34206, 41008, 0, 0, 0, 1, 1, 1, 1, 'Relentless Gladiator\'s Mail Gauntlets'),
|
|
(34206, 41028, 0, 0, 0, 1, 1, 1, 1, 'Relentless Gladiator\'s Ringmail Leggings'),
|
|
(34206, 41034, 0, 0, 0, 1, 1, 1, 1, 'Relentless Gladiator\'s Mail Leggings'),
|
|
(34206, 41052, 0, 0, 0, 1, 1, 1, 1, 'Relentless Gladiator\'s Waistguard of Salvation'),
|
|
(34206, 41056, 0, 0, 0, 1, 1, 1, 1, 'Relentless Gladiator\'s Sabatons of Salvation'),
|
|
(34206, 41061, 0, 0, 0, 1, 1, 1, 1, 'Relentless Gladiator\'s Wristguards of Salvation'),
|
|
(34206, 41066, 0, 0, 0, 1, 1, 1, 1, 'Relentless Gladiator\'s Wristguards of Dominance'),
|
|
(34206, 41071, 0, 0, 0, 1, 1, 1, 1, 'Relentless Gladiator\'s Waistguard of Dominance'),
|
|
(34206, 41076, 0, 0, 0, 1, 1, 1, 1, 'Relentless Gladiator\'s Sabatons of Dominance'),
|
|
(34206, 41138, 0, 0, 0, 1, 1, 1, 1, 'Relentless Gladiator\'s Linked Gauntlets'),
|
|
(34206, 41144, 0, 0, 0, 1, 1, 1, 1, 'Relentless Gladiator\'s Chain Gauntlets'),
|
|
(34206, 41200, 0, 0, 0, 1, 1, 1, 1, 'Relentless Gladiator\'s Linked Leggings'),
|
|
(34206, 41206, 0, 0, 0, 1, 1, 1, 1, 'Relentless Gladiator\'s Chain Leggings'),
|
|
(34206, 41226, 0, 0, 0, 1, 1, 1, 1, 'Relentless Gladiator\'s Wristguards of Triumph'),
|
|
(34206, 41231, 0, 0, 0, 1, 1, 1, 1, 'Relentless Gladiator\'s Sabatons of Triumph'),
|
|
(34206, 41236, 0, 0, 0, 1, 1, 1, 1, 'Relentless Gladiator\'s Waistguard of Triumph'),
|
|
(34206, 41288, 0, 0, 0, 1, 1, 1, 1, 'Relentless Gladiator\'s Kodohide Gloves'),
|
|
(34206, 41294, 0, 0, 0, 1, 1, 1, 1, 'Relentless Gladiator\'s Wyrmhide Gloves'),
|
|
(34206, 41299, 0, 0, 0, 1, 1, 1, 1, 'Relentless Gladiator\'s Kodohide Legguards'),
|
|
(34206, 41305, 0, 0, 0, 1, 1, 1, 1, 'Relentless Gladiator\'s Wyrmhide Legguards'),
|
|
(34206, 41618, 0, 0, 0, 1, 1, 1, 1, 'Relentless Gladiator\'s Belt of Salvation'),
|
|
(34206, 41622, 0, 0, 0, 1, 1, 1, 1, 'Relentless Gladiator\'s Boots of Salvation'),
|
|
(34206, 41626, 0, 0, 0, 1, 1, 1, 1, 'Relentless Gladiator\'s Armwraps of Salvation'),
|
|
(34206, 41631, 0, 0, 0, 1, 1, 1, 1, 'Relentless Gladiator\'s Belt of Dominance'),
|
|
(34206, 41636, 0, 0, 0, 1, 1, 1, 1, 'Relentless Gladiator\'s Boots of Dominance'),
|
|
(34206, 41641, 0, 0, 0, 1, 1, 1, 1, 'Relentless Gladiator\'s Armwraps of Dominance'),
|
|
(34206, 41656, 0, 0, 0, 1, 1, 1, 1, 'Relentless Gladiator\'s Leather Legguards'),
|
|
(34206, 41668, 0, 0, 0, 1, 1, 1, 1, 'Relentless Gladiator\'s Dragonhide Legguards'),
|
|
(34206, 41768, 0, 0, 0, 1, 1, 1, 1, 'Relentless Gladiator\'s Leather Gloves'),
|
|
(34206, 41774, 0, 0, 0, 1, 1, 1, 1, 'Relentless Gladiator\'s Dragonhide Gloves'),
|
|
(34206, 41833, 0, 0, 0, 1, 1, 1, 1, 'Relentless Gladiator\'s Belt of Triumph'),
|
|
(34206, 41837, 0, 0, 0, 1, 1, 1, 1, 'Relentless Gladiator\'s Boots of Triumph'),
|
|
(34206, 41841, 0, 0, 0, 1, 1, 1, 1, 'Relentless Gladiator\'s Armwraps of Triumph'),
|
|
(34206, 41865, 0, 0, 0, 1, 1, 1, 1, 'Relentless Gladiator\'s Mooncloth Leggings'),
|
|
(34206, 41875, 0, 0, 0, 1, 1, 1, 1, 'Relentless Gladiator\'s Mooncloth Gloves'),
|
|
(34206, 41882, 0, 0, 0, 1, 1, 1, 1, 'Relentless Gladiator\'s Cord of Salvation'),
|
|
(34206, 41886, 0, 0, 0, 1, 1, 1, 1, 'Relentless Gladiator\'s Treads of Salvation'),
|
|
(34206, 41894, 0, 0, 0, 1, 1, 1, 1, 'Relentless Gladiator\'s Cuffs of Salvation'),
|
|
(34206, 41899, 0, 0, 0, 1, 1, 1, 1, 'Relentless Gladiator\'s Cord of Dominance'),
|
|
(34206, 41904, 0, 0, 0, 1, 1, 1, 1, 'Relentless Gladiator\'s Treads of Dominance'),
|
|
(34206, 41910, 0, 0, 0, 1, 1, 1, 1, 'Relentless Gladiator\'s Cuffs of Dominance'),
|
|
(34206, 41928, 0, 0, 0, 1, 1, 1, 1, 'Relentless Gladiator\'s Satin Leggings'),
|
|
(34206, 41941, 0, 0, 0, 1, 1, 1, 1, 'Relentless Gladiator\'s Satin Gloves'),
|
|
(34206, 41960, 0, 0, 0, 1, 1, 1, 1, 'Relentless Gladiator\'s Silk Trousers'),
|
|
(34206, 41972, 0, 0, 0, 1, 1, 1, 1, 'Relentless Gladiator\'s Silk Handguards'),
|
|
(34206, 42006, 0, 0, 0, 1, 1, 1, 1, 'Relentless Gladiator\'s Felweave Trousers'),
|
|
(34206, 42018, 0, 0, 0, 1, 1, 1, 1, 'Relentless Gladiator\'s Felweave Handguards'),
|
|
(34206, 42041, 0, 0, 0, 1, 1, 1, 1, 'Relentless Gladiator\'s Pendant of Triumph'),
|
|
(34206, 42042, 0, 0, 0, 1, 1, 1, 1, 'Relentless Gladiator\'s Pendant of Victory'),
|
|
(34206, 42043, 0, 0, 0, 1, 1, 1, 1, 'Relentless Gladiator\'s Pendant of Dominance'),
|
|
(34206, 42044, 0, 0, 0, 1, 1, 1, 1, 'Relentless Gladiator\'s Pendant of Ascendancy'),
|
|
(34206, 42045, 0, 0, 0, 1, 1, 1, 1, 'Relentless Gladiator\'s Pendant of Subjugation'),
|
|
(34206, 42046, 0, 0, 0, 1, 1, 1, 1, 'Relentless Gladiator\'s Pendant of Deliverance'),
|
|
(34206, 42047, 0, 0, 0, 1, 1, 1, 1, 'Relentless Gladiator\'s Pendant of Salvation'),
|
|
(34206, 42076, 0, 0, 0, 1, 1, 1, 1, 'Relentless Gladiator\'s Cloak of Dominance'),
|
|
(34206, 42077, 0, 0, 0, 1, 1, 1, 1, 'Relentless Gladiator\'s Cloak of Subjugation'),
|
|
(34206, 42078, 0, 0, 0, 1, 1, 1, 1, 'Relentless Gladiator\'s Cloak of Ascendancy'),
|
|
(34206, 42079, 0, 0, 0, 1, 1, 1, 1, 'Relentless Gladiator\'s Cloak of Salvation'),
|
|
(34206, 42080, 0, 0, 0, 1, 1, 1, 1, 'Relentless Gladiator\'s Cloak of Deliverance'),
|
|
(34206, 42081, 0, 0, 0, 1, 1, 1, 1, 'Relentless Gladiator\'s Cloak of Triumph'),
|
|
(34206, 42082, 0, 0, 0, 1, 1, 1, 1, 'Relentless Gladiator\'s Cloak of Victory'),
|
|
(34206, 42118, 0, 0, 0, 1, 1, 1, 1, 'Relentless Gladiator\'s Band of Ascendancy'),
|
|
(34206, 42119, 0, 0, 0, 1, 1, 1, 1, 'Relentless Gladiator\'s Band of Victory'),
|
|
(34206, 46374, 0, 0, 0, 1, 1, 1, 1, 'Relentless Gladiator\'s Pendant of Sundering'),
|
|
(34206, 50079, 0, 0, 0, 1, 1, 1, 1, 'Ymirjar Lord\'s Gauntlets'),
|
|
(34206, 50081, 0, 0, 0, 1, 1, 1, 1, 'Ymirjar Lord\'s Legplates'),
|
|
(34206, 50088, 0, 0, 0, 1, 1, 1, 1, 'Shadowblade Gauntlets'),
|
|
(34206, 50090, 0, 0, 0, 1, 1, 1, 1, 'Shadowblade Legplates'),
|
|
(34206, 50095, 0, 0, 0, 1, 1, 1, 1, 'Scourgelord Gauntlets'),
|
|
(34206, 50097, 0, 0, 0, 1, 1, 1, 1, 'Scourgelord Legplates'),
|
|
(34206, 50107, 0, 0, 0, 1, 1, 1, 1, 'Lasherweave Gauntlets'),
|
|
(34206, 50109, 0, 0, 0, 1, 1, 1, 1, 'Lasherweave Legplates'),
|
|
(34206, 50114, 0, 0, 0, 1, 1, 1, 1, 'Ahn\'Kahar Blood Hunter\'s Handguards'),
|
|
(34206, 50116, 0, 0, 0, 1, 1, 1, 1, 'Ahn\'Kahar Blood Hunter\'s Legguards'),
|
|
(34206, 50240, 0, 0, 0, 1, 1, 1, 1, 'Dark Coven Gloves'),
|
|
(34206, 50242, 0, 0, 0, 1, 1, 1, 1, 'Dark Coven Leggings'),
|
|
(34206, 50275, 0, 0, 0, 1, 1, 1, 1, 'Bloodmage Gloves'),
|
|
(34206, 50277, 0, 0, 0, 1, 1, 1, 1, 'Bloodmage Leggings'),
|
|
(34206, 50325, 0, 0, 0, 1, 1, 1, 1, 'Lightsworn Legplates'),
|
|
(34206, 50327, 0, 0, 0, 1, 1, 1, 1, 'Lightsworn Gauntlets'),
|
|
(34206, 50391, 0, 0, 0, 1, 1, 1, 1, 'Crimson Acolyte Handwraps'),
|
|
(34206, 50393, 0, 0, 0, 1, 1, 1, 1, 'Crimson Acolyte Pants'),
|
|
(34206, 50766, 0, 0, 0, 1, 1, 1, 1, 'Crimson Acolyte Gloves'),
|
|
(34206, 50769, 0, 0, 0, 1, 1, 1, 1, 'Crimson Acolyte Leggings'),
|
|
(34206, 50820, 0, 0, 0, 1, 1, 1, 1, 'Lasherweave Trousers'),
|
|
(34206, 50822, 0, 0, 0, 1, 1, 1, 1, 'Lasherweave Gloves'),
|
|
(34206, 50825, 0, 0, 0, 1, 1, 1, 1, 'Lasherweave Legguards'),
|
|
(34206, 50827, 0, 0, 0, 1, 1, 1, 1, 'Lasherweave Handgrips'),
|
|
(34206, 50831, 0, 0, 0, 1, 1, 1, 1, 'Frost Witch\'s Grips'),
|
|
(34206, 50833, 0, 0, 0, 1, 1, 1, 1, 'Frost Witch\'s War-Kilt'),
|
|
(34206, 50836, 0, 0, 0, 1, 1, 1, 1, 'Frost Witch\'s Handguards'),
|
|
(34206, 50838, 0, 0, 0, 1, 1, 1, 1, 'Frost Witch\'s Legguards'),
|
|
(34206, 50842, 0, 0, 0, 1, 1, 1, 1, 'Frost Witch\'s Gloves'),
|
|
(34206, 50844, 0, 0, 0, 1, 1, 1, 1, 'Frost Witch\'s Kilt'),
|
|
(34206, 50847, 0, 0, 0, 1, 1, 1, 1, 'Ymirjar Lord\'s Legguards'),
|
|
(34206, 50849, 0, 0, 0, 1, 1, 1, 1, 'Ymirjar Lord\'s Handguards'),
|
|
(34206, 50854, 0, 0, 0, 1, 1, 1, 1, 'Scourgelord Legguards'),
|
|
(34206, 50856, 0, 0, 0, 1, 1, 1, 1, 'Scourgelord Handguards'),
|
|
(34206, 50861, 0, 0, 0, 1, 1, 1, 1, 'Lightsworn Legguards'),
|
|
(34206, 50863, 0, 0, 0, 1, 1, 1, 1, 'Lightsworn Handguards'),
|
|
(34206, 50866, 0, 0, 0, 1, 1, 1, 1, 'Lightsworn Greaves'),
|
|
(34206, 50868, 0, 0, 0, 1, 1, 1, 1, 'Lightsworn Gloves'),
|
|
(34207, 51126, 0, 0, 0, 1, 1, 1, 1, 'Sanctified Scourgelord Legplates'),
|
|
(34207, 51128, 0, 0, 0, 1, 1, 1, 1, 'Sanctified Scourgelord Gauntlets'),
|
|
(34207, 51131, 0, 0, 0, 1, 1, 1, 1, 'Sanctified Scourgelord Legguards'),
|
|
(34207, 51132, 0, 0, 0, 1, 1, 1, 1, 'Sanctified Scourgelord Handguards'),
|
|
(34207, 51136, 0, 0, 0, 1, 1, 1, 1, 'Sanctified Lasherweave Legplates'),
|
|
(34207, 51138, 0, 0, 0, 1, 1, 1, 1, 'Sanctified Lasherweave Gauntlets'),
|
|
(34207, 51142, 0, 0, 0, 1, 1, 1, 1, 'Sanctified Lasherweave Legguards'),
|
|
(34207, 51144, 0, 0, 0, 1, 1, 1, 1, 'Sanctified Lasherweave Handgrips'),
|
|
(34207, 51146, 0, 0, 0, 1, 1, 1, 1, 'Sanctified Lasherweave Trousers'),
|
|
(34207, 51148, 0, 0, 0, 1, 1, 1, 1, 'Sanctified Lasherweave Gloves'),
|
|
(34207, 51152, 0, 0, 0, 1, 1, 1, 1, 'Sanctified Ahn\'Kahar Blood Hunter\'s Legguards'),
|
|
(34207, 51154, 0, 0, 0, 1, 1, 1, 1, 'Sanctified Ahn\'Kahar Blood Hunter\'s Handguards'),
|
|
(34207, 51157, 0, 0, 0, 1, 1, 1, 1, 'Sanctified Bloodmage Leggings'),
|
|
(34207, 51159, 0, 0, 0, 1, 1, 1, 1, 'Sanctified Bloodmage Gloves'),
|
|
(34207, 51161, 0, 0, 0, 1, 1, 1, 1, 'Sanctified Lightsworn Legplates'),
|
|
(34207, 51163, 0, 0, 0, 1, 1, 1, 1, 'Sanctified Lightsworn Gauntlets'),
|
|
(34207, 51168, 0, 0, 0, 1, 1, 1, 1, 'Sanctified Lightsworn Greaves'),
|
|
(34207, 51169, 0, 0, 0, 1, 1, 1, 1, 'Sanctified Lightsworn Gloves'),
|
|
(34207, 51171, 0, 0, 0, 1, 1, 1, 1, 'Sanctified Lightsworn Legguards'),
|
|
(34207, 51172, 0, 0, 0, 1, 1, 1, 1, 'Sanctified Lightsworn Handguards'),
|
|
(34207, 51177, 0, 0, 0, 1, 1, 1, 1, 'Sanctified Crimson Acolyte Leggings'),
|
|
(34207, 51179, 0, 0, 0, 1, 1, 1, 1, 'Sanctified Crimson Acolyte Gloves'),
|
|
(34207, 51181, 0, 0, 0, 1, 1, 1, 1, 'Sanctified Crimson Acolyte Pants'),
|
|
(34207, 51183, 0, 0, 0, 1, 1, 1, 1, 'Sanctified Crimson Acolyte Handwraps'),
|
|
(34207, 51186, 0, 0, 0, 1, 1, 1, 1, 'Sanctified Shadowblade Legplates'),
|
|
(34207, 51188, 0, 0, 0, 1, 1, 1, 1, 'Sanctified Shadowblade Gauntlets'),
|
|
(34207, 51191, 0, 0, 0, 1, 1, 1, 1, 'Sanctified Frost Witch\'s Handguards'),
|
|
(34207, 51193, 0, 0, 0, 1, 1, 1, 1, 'Sanctified Frost Witch\'s Legguards'),
|
|
(34207, 51196, 0, 0, 0, 1, 1, 1, 1, 'Sanctified Frost Witch\'s Grips'),
|
|
(34207, 51198, 0, 0, 0, 1, 1, 1, 1, 'Sanctified Frost Witch\'s War-Kilt'),
|
|
(34207, 51201, 0, 0, 0, 1, 1, 1, 1, 'Sanctified Frost Witch\'s Gloves'),
|
|
(34207, 51203, 0, 0, 0, 1, 1, 1, 1, 'Sanctified Frost Witch\'s Kilt'),
|
|
(34207, 51207, 0, 0, 0, 1, 1, 1, 1, 'Sanctified Dark Coven Leggings'),
|
|
(34207, 51209, 0, 0, 0, 1, 1, 1, 1, 'Sanctified Dark Coven Gloves'),
|
|
(34207, 51211, 0, 0, 0, 1, 1, 1, 1, 'Sanctified Ymirjar Lord\'s Legplates'),
|
|
(34207, 51213, 0, 0, 0, 1, 1, 1, 1, 'Sanctified Ymirjar Lord\'s Gauntlets'),
|
|
(34207, 51216, 0, 0, 0, 1, 1, 1, 1, 'Sanctified Ymirjar Lord\'s Legguards'),
|
|
(34207, 51217, 0, 0, 0, 1, 1, 1, 1, 'Sanctified Ymirjar Lord\'s Handguards'),
|
|
(34207, 51327, 0, 0, 0, 1, 1, 1, 1, 'Wrathful Gladiator\'s Cord of Dominance'),
|
|
(34207, 51328, 0, 0, 0, 1, 1, 1, 1, 'Wrathful Gladiator\'s Treads of Dominance'),
|
|
(34207, 51329, 0, 0, 0, 1, 1, 1, 1, 'Wrathful Gladiator\'s Cuffs of Dominance'),
|
|
(34207, 51330, 0, 0, 0, 1, 1, 1, 1, 'Wrathful Gladiator\'s Cloak of Dominance'),
|
|
(34207, 51331, 0, 0, 0, 1, 1, 1, 1, 'Wrathful Gladiator\'s Pendant of Dominance'),
|
|
(34207, 51332, 0, 0, 0, 1, 1, 1, 1, 'Wrathful Gladiator\'s Cloak of Subjugation'),
|
|
(34207, 51333, 0, 0, 0, 1, 1, 1, 1, 'Wrathful Gladiator\'s Pendant of Subjugation'),
|
|
(34207, 51334, 0, 0, 0, 1, 1, 1, 1, 'Wrathful Gladiator\'s Cloak of Ascendancy'),
|
|
(34207, 51335, 0, 0, 0, 1, 1, 1, 1, 'Wrathful Gladiator\'s Pendant of Ascendancy'),
|
|
(34207, 51336, 0, 0, 0, 1, 1, 1, 1, 'Wrathful Gladiator\'s Band of Dominance'),
|
|
(34207, 51340, 0, 0, 0, 1, 1, 1, 1, 'Wrathful Gladiator\'s Belt of Salvation'),
|
|
(34207, 51341, 0, 0, 0, 1, 1, 1, 1, 'Wrathful Gladiator\'s Boots of Salvation'),
|
|
(34207, 51342, 0, 0, 0, 1, 1, 1, 1, 'Wrathful Gladiator\'s Armwraps of Salvation'),
|
|
(34207, 51343, 0, 0, 0, 1, 1, 1, 1, 'Wrathful Gladiator\'s Belt of Dominance'),
|
|
(34207, 51344, 0, 0, 0, 1, 1, 1, 1, 'Wrathful Gladiator\'s Boots of Dominance'),
|
|
(34207, 51345, 0, 0, 0, 1, 1, 1, 1, 'Wrathful Gladiator\'s Armwraps of Dominance'),
|
|
(34207, 51346, 0, 0, 0, 1, 1, 1, 1, 'Wrathful Gladiator\'s Cloak of Salvation'),
|
|
(34207, 51347, 0, 0, 0, 1, 1, 1, 1, 'Wrathful Gladiator\'s Pendant of Salvation'),
|
|
(34207, 51348, 0, 0, 0, 1, 1, 1, 1, 'Wrathful Gladiator\'s Cloak of Deliverance'),
|
|
(34207, 51349, 0, 0, 0, 1, 1, 1, 1, 'Wrathful Gladiator\'s Pendant of Deliverance'),
|
|
(34207, 51350, 0, 0, 0, 1, 1, 1, 1, 'Wrathful Gladiator\'s Waistguard of Triumph'),
|
|
(34207, 51351, 0, 0, 0, 1, 1, 1, 1, 'Wrathful Gladiator\'s Sabatons of Triumph'),
|
|
(34207, 51352, 0, 0, 0, 1, 1, 1, 1, 'Wrathful Gladiator\'s Wristguards of Triumph'),
|
|
(34207, 51353, 0, 0, 0, 1, 1, 1, 1, 'Wrathful Gladiator\'s Pendant of Sundering'),
|
|
(34207, 51354, 0, 0, 0, 1, 1, 1, 1, 'Wrathful Gladiator\'s Cloak of Triumph'),
|
|
(34207, 51355, 0, 0, 0, 1, 1, 1, 1, 'Wrathful Gladiator\'s Pendant of Triumph'),
|
|
(34207, 51356, 0, 0, 0, 1, 1, 1, 1, 'Wrathful Gladiator\'s Cloak of Victory'),
|
|
(34207, 51357, 0, 0, 0, 1, 1, 1, 1, 'Wrathful Gladiator\'s Pendant of Victory'),
|
|
(34207, 51358, 0, 0, 0, 1, 1, 1, 1, 'Wrathful Gladiator\'s Band of Triumph'),
|
|
(34207, 51359, 0, 0, 0, 1, 1, 1, 1, 'Wrathful Gladiator\'s Girdle of Salvation'),
|
|
(34207, 51360, 0, 0, 0, 1, 1, 1, 1, 'Wrathful Gladiator\'s Greaves of Salvation'),
|
|
(34207, 51361, 0, 0, 0, 1, 1, 1, 1, 'Wrathful Gladiator\'s Bracers of Salvation'),
|
|
(34207, 51362, 0, 0, 0, 1, 1, 1, 1, 'Wrathful Gladiator\'s Girdle of Triumph'),
|
|
(34207, 51363, 0, 0, 0, 1, 1, 1, 1, 'Wrathful Gladiator\'s Greaves of Triumph'),
|
|
(34207, 51364, 0, 0, 0, 1, 1, 1, 1, 'Wrathful Gladiator\'s Bracers of Triumph'),
|
|
(34207, 51365, 0, 0, 0, 1, 1, 1, 1, 'Wrathful Gladiator\'s Cord of Salvation'),
|
|
(34207, 51366, 0, 0, 0, 1, 1, 1, 1, 'Wrathful Gladiator\'s Treads of Salvation'),
|
|
(34207, 51367, 0, 0, 0, 1, 1, 1, 1, 'Wrathful Gladiator\'s Cuffs of Salvation'),
|
|
(34207, 51368, 0, 0, 0, 1, 1, 1, 1, 'Wrathful Gladiator\'s Belt of Triumph'),
|
|
(34207, 51369, 0, 0, 0, 1, 1, 1, 1, 'Wrathful Gladiator\'s Boots of Triumph'),
|
|
(34207, 51370, 0, 0, 0, 1, 1, 1, 1, 'Wrathful Gladiator\'s Armwraps of Triumph'),
|
|
(34207, 51371, 0, 0, 0, 1, 1, 1, 1, 'Wrathful Gladiator\'s Waistguard of Salvation'),
|
|
(34207, 51372, 0, 0, 0, 1, 1, 1, 1, 'Wrathful Gladiator\'s Sabatons of Salvation'),
|
|
(34207, 51373, 0, 0, 0, 1, 1, 1, 1, 'Wrathful Gladiator\'s Wristguards of Salvation'),
|
|
(34207, 51374, 0, 0, 0, 1, 1, 1, 1, 'Wrathful Gladiator\'s Waistguard of Dominance'),
|
|
(34207, 51375, 0, 0, 0, 1, 1, 1, 1, 'Wrathful Gladiator\'s Sabatons of Dominance'),
|
|
(34207, 51376, 0, 0, 0, 1, 1, 1, 1, 'Wrathful Gladiator\'s Wristguards of Dominance'),
|
|
(34207, 51414, 0, 0, 0, 1, 1, 1, 1, 'Wrathful Gladiator\'s Dreadplate Gauntlets'),
|
|
(34207, 51416, 0, 0, 0, 1, 1, 1, 1, 'Wrathful Gladiator\'s Dreadplate Legguards'),
|
|
(34207, 51420, 0, 0, 0, 1, 1, 1, 1, 'Wrathful Gladiator\'s Kodohide Gloves'),
|
|
(34207, 51422, 0, 0, 0, 1, 1, 1, 1, 'Wrathful Gladiator\'s Kodohide Legguards'),
|
|
(34207, 51426, 0, 0, 0, 1, 1, 1, 1, 'Wrathful Gladiator\'s Dragonhide Gloves'),
|
|
(34207, 51428, 0, 0, 0, 1, 1, 1, 1, 'Wrathful Gladiator\'s Dragonhide Legguards'),
|
|
(34207, 51434, 0, 0, 0, 1, 1, 1, 1, 'Wrathful Gladiator\'s Wyrmhide Gloves'),
|
|
(34207, 51436, 0, 0, 0, 1, 1, 1, 1, 'Wrathful Gladiator\'s Wyrmhide Legguards'),
|
|
(34207, 51459, 0, 0, 0, 1, 1, 1, 1, 'Wrathful Gladiator\'s Chain Gauntlets'),
|
|
(34207, 51461, 0, 0, 0, 1, 1, 1, 1, 'Wrathful Gladiator\'s Chain Leggings'),
|
|
(34207, 51464, 0, 0, 0, 1, 1, 1, 1, 'Wrathful Gladiator\'s Silk Handguards'),
|
|
(34207, 51466, 0, 0, 0, 1, 1, 1, 1, 'Wrathful Gladiator\'s Silk Trousers'),
|
|
(34207, 51469, 0, 0, 0, 1, 1, 1, 1, 'Wrathful Gladiator\'s Ornamented Gloves'),
|
|
(34207, 51471, 0, 0, 0, 1, 1, 1, 1, 'Wrathful Gladiator\'s Ornamented Legplates'),
|
|
(34207, 51475, 0, 0, 0, 1, 1, 1, 1, 'Wrathful Gladiator\'s Scaled Gauntlets'),
|
|
(34207, 51477, 0, 0, 0, 1, 1, 1, 1, 'Wrathful Gladiator\'s Scaled Legguards'),
|
|
(34207, 51483, 0, 0, 0, 1, 1, 1, 1, 'Wrathful Gladiator\'s Mooncloth Gloves'),
|
|
(34207, 51485, 0, 0, 0, 1, 1, 1, 1, 'Wrathful Gladiator\'s Mooncloth Leggings'),
|
|
(34207, 51488, 0, 0, 0, 1, 1, 1, 1, 'Wrathful Gladiator\'s Satin Gloves'),
|
|
(34207, 51490, 0, 0, 0, 1, 1, 1, 1, 'Wrathful Gladiator\'s Satin Leggings'),
|
|
(34207, 51493, 0, 0, 0, 1, 1, 1, 1, 'Wrathful Gladiator\'s Leather Gloves'),
|
|
(34207, 51495, 0, 0, 0, 1, 1, 1, 1, 'Wrathful Gladiator\'s Leather Legguards'),
|
|
(34207, 51498, 0, 0, 0, 1, 1, 1, 1, 'Wrathful Gladiator\'s Ringmail Gauntlets'),
|
|
(34207, 51500, 0, 0, 0, 1, 1, 1, 1, 'Wrathful Gladiator\'s Ringmail Leggings'),
|
|
(34207, 51504, 0, 0, 0, 1, 1, 1, 1, 'Wrathful Gladiator\'s Linked Gauntlets'),
|
|
(34207, 51506, 0, 0, 0, 1, 1, 1, 1, 'Wrathful Gladiator\'s Linked Leggings'),
|
|
(34207, 51510, 0, 0, 0, 1, 1, 1, 1, 'Wrathful Gladiator\'s Mail Gauntlets'),
|
|
(34207, 51512, 0, 0, 0, 1, 1, 1, 1, 'Wrathful Gladiator\'s Mail Leggings'),
|
|
(34207, 51537, 0, 0, 0, 1, 1, 1, 1, 'Wrathful Gladiator\'s Felweave Handguards'),
|
|
(34207, 51539, 0, 0, 0, 1, 1, 1, 1, 'Wrathful Gladiator\'s Felweave Trousers'),
|
|
(34207, 51542, 0, 0, 0, 1, 1, 1, 1, 'Wrathful Gladiator\'s Plate Gauntlets'),
|
|
(34207, 51544, 0, 0, 0, 1, 1, 1, 1, 'Wrathful Gladiator\'s Plate Legguards'),
|
|
(34208, 40804, 0, 0, 0, 1, 1, 1, 1, 'Deadly Gladiator\'s Plate Gauntlets'),
|
|
(34208, 40805, 0, 0, 0, 1, 1, 1, 1, 'Deadly Gladiator\'s Scaled Gauntlets'),
|
|
(34208, 40806, 0, 0, 0, 1, 1, 1, 1, 'Deadly Gladiator\'s Dreadplate Gauntlets'),
|
|
(34208, 40844, 0, 0, 0, 1, 1, 1, 1, 'Deadly Gladiator\'s Plate Legguards'),
|
|
(34208, 40845, 0, 0, 0, 1, 1, 1, 1, 'Deadly Gladiator\'s Dreadplate Legguards'),
|
|
(34208, 40846, 0, 0, 0, 1, 1, 1, 1, 'Deadly Gladiator\'s Scaled Legguards'),
|
|
(34208, 40879, 0, 0, 0, 1, 1, 1, 1, 'Deadly Gladiator\'s Girdle of Triumph'),
|
|
(34208, 40880, 0, 0, 0, 1, 1, 1, 1, 'Deadly Gladiator\'s Greaves of Triumph'),
|
|
(34208, 40888, 0, 0, 0, 1, 1, 1, 1, 'Deadly Gladiator\'s Bracers of Triumph'),
|
|
(34208, 40926, 0, 0, 0, 1, 1, 1, 1, 'Deadly Gladiator\'s Ornamented Gloves'),
|
|
(34208, 40938, 0, 0, 0, 1, 1, 1, 1, 'Deadly Gladiator\'s Ornamented Legplates'),
|
|
(34208, 40974, 0, 0, 0, 1, 1, 1, 1, 'Deadly Gladiator\'s Girdle of Salvation'),
|
|
(34208, 40975, 0, 0, 0, 1, 1, 1, 1, 'Deadly Gladiator\'s Greaves of Salvation'),
|
|
(34208, 40982, 0, 0, 0, 1, 1, 1, 1, 'Deadly Gladiator\'s Bracers of Salvation'),
|
|
(34208, 41000, 0, 0, 0, 1, 1, 1, 1, 'Deadly Gladiator\'s Ringmail Gauntlets'),
|
|
(34208, 41006, 0, 0, 0, 1, 1, 1, 1, 'Deadly Gladiator\'s Mail Gauntlets'),
|
|
(34208, 41026, 0, 0, 0, 1, 1, 1, 1, 'Deadly Gladiator\'s Ringmail Leggings'),
|
|
(34208, 41032, 0, 0, 0, 1, 1, 1, 1, 'Deadly Gladiator\'s Mail Leggings'),
|
|
(34208, 41048, 0, 0, 0, 1, 1, 1, 1, 'Deadly Gladiator\'s Waistguard of Salvation'),
|
|
(34208, 41054, 0, 0, 0, 1, 1, 1, 1, 'Deadly Gladiator\'s Sabatons of Salvation'),
|
|
(34208, 41059, 0, 0, 0, 1, 1, 1, 1, 'Deadly Gladiator\'s Wristguards of Salvation'),
|
|
(34208, 41064, 0, 0, 0, 1, 1, 1, 1, 'Deadly Gladiator\'s Wristguards of Dominance'),
|
|
(34208, 41069, 0, 0, 0, 1, 1, 1, 1, 'Deadly Gladiator\'s Waistguard of Dominance'),
|
|
(34208, 41074, 0, 0, 0, 1, 1, 1, 1, 'Deadly Gladiator\'s Sabatons of Dominance'),
|
|
(34208, 41136, 0, 0, 0, 1, 1, 1, 1, 'Deadly Gladiator\'s Linked Gauntlets'),
|
|
(34208, 41142, 0, 0, 0, 1, 1, 1, 1, 'Deadly Gladiator\'s Chain Gauntlets'),
|
|
(34208, 41198, 0, 0, 0, 1, 1, 1, 1, 'Deadly Gladiator\'s Linked Leggings'),
|
|
(34208, 41204, 0, 0, 0, 1, 1, 1, 1, 'Deadly Gladiator\'s Chain Leggings'),
|
|
(34208, 41224, 0, 0, 0, 1, 1, 1, 1, 'Deadly Gladiator\'s Wristguards of Triumph'),
|
|
(34208, 41229, 0, 0, 0, 1, 1, 1, 1, 'Deadly Gladiator\'s Sabatons of Triumph'),
|
|
(34208, 41234, 0, 0, 0, 1, 1, 1, 1, 'Deadly Gladiator\'s Waistguard of Triumph'),
|
|
(34208, 41286, 0, 0, 0, 1, 1, 1, 1, 'Deadly Gladiator\'s Kodohide Gloves'),
|
|
(34208, 41292, 0, 0, 0, 1, 1, 1, 1, 'Deadly Gladiator\'s Wyrmhide Gloves'),
|
|
(34208, 41297, 0, 0, 0, 1, 1, 1, 1, 'Deadly Gladiator\'s Kodohide Legguards'),
|
|
(34208, 41303, 0, 0, 0, 1, 1, 1, 1, 'Deadly Gladiator\'s Wyrmhide Legguards'),
|
|
(34208, 41616, 0, 0, 0, 1, 1, 1, 1, 'Deadly Gladiator\'s Belt of Salvation'),
|
|
(34208, 41620, 0, 0, 0, 1, 1, 1, 1, 'Deadly Gladiator\'s Boots of Salvation'),
|
|
(34208, 41624, 0, 0, 0, 1, 1, 1, 1, 'Deadly Gladiator\'s Armwraps of Salvation'),
|
|
(34208, 41629, 0, 0, 0, 1, 1, 1, 1, 'Deadly Gladiator\'s Belt of Dominance'),
|
|
(34208, 41634, 0, 0, 0, 1, 1, 1, 1, 'Deadly Gladiator\'s Boots of Dominance'),
|
|
(34208, 41639, 0, 0, 0, 1, 1, 1, 1, 'Deadly Gladiator\'s Armwraps of Dominance'),
|
|
(34208, 41654, 0, 0, 0, 1, 1, 1, 1, 'Deadly Gladiator\'s Leather Legguards'),
|
|
(34208, 41666, 0, 0, 0, 1, 1, 1, 1, 'Deadly Gladiator\'s Dragonhide Legguards'),
|
|
(34208, 41766, 0, 0, 0, 1, 1, 1, 1, 'Deadly Gladiator\'s Leather Gloves'),
|
|
(34208, 41772, 0, 0, 0, 1, 1, 1, 1, 'Deadly Gladiator\'s Dragonhide Gloves'),
|
|
(34208, 41831, 0, 0, 0, 1, 1, 1, 1, 'Deadly Gladiator\'s Belt of Triumph'),
|
|
(34208, 41835, 0, 0, 0, 1, 1, 1, 1, 'Deadly Gladiator\'s Boots of Triumph'),
|
|
(34208, 41839, 0, 0, 0, 1, 1, 1, 1, 'Deadly Gladiator\'s Armwraps of Triumph'),
|
|
(34208, 41863, 0, 0, 0, 1, 1, 1, 1, 'Deadly Gladiator\'s Mooncloth Leggings'),
|
|
(34208, 41873, 0, 0, 0, 1, 1, 1, 1, 'Deadly Gladiator\'s Mooncloth Gloves'),
|
|
(34208, 41880, 0, 0, 0, 1, 1, 1, 1, 'Deadly Gladiator\'s Cord of Salvation'),
|
|
(34208, 41884, 0, 0, 0, 1, 1, 1, 1, 'Deadly Gladiator\'s Treads of Salvation'),
|
|
(34208, 41892, 0, 0, 0, 1, 1, 1, 1, 'Deadly Gladiator\'s Cuffs of Salvation'),
|
|
(34208, 41897, 0, 0, 0, 1, 1, 1, 1, 'Deadly Gladiator\'s Cord of Dominance'),
|
|
(34208, 41902, 0, 0, 0, 1, 1, 1, 1, 'Deadly Gladiator\'s Treads of Dominance'),
|
|
(34208, 41908, 0, 0, 0, 1, 1, 1, 1, 'Deadly Gladiator\'s Cuffs of Dominance'),
|
|
(34208, 41926, 0, 0, 0, 1, 1, 1, 1, 'Deadly Gladiator\'s Satin Leggings'),
|
|
(34208, 41939, 0, 0, 0, 1, 1, 1, 1, 'Deadly Gladiator\'s Satin Gloves'),
|
|
(34208, 41958, 0, 0, 0, 1, 1, 1, 1, 'Deadly Gladiator\'s Silk Trousers'),
|
|
(34208, 41970, 0, 0, 0, 1, 1, 1, 1, 'Deadly Gladiator\'s Silk Handguards'),
|
|
(34208, 42004, 0, 0, 0, 1, 1, 1, 1, 'Deadly Gladiator\'s Felweave Trousers'),
|
|
(34208, 42016, 0, 0, 0, 1, 1, 1, 1, 'Deadly Gladiator\'s Felweave Handguards'),
|
|
(34208, 42028, 0, 0, 0, 1, 1, 1, 1, 'Deadly Gladiator\'s Pendant of Victory'),
|
|
(34208, 42029, 0, 0, 0, 1, 1, 1, 1, 'Deadly Gladiator\'s Pendant of Dominance'),
|
|
(34208, 42030, 0, 0, 0, 1, 1, 1, 1, 'Deadly Gladiator\'s Pendant of Ascendancy'),
|
|
(34208, 42031, 0, 0, 0, 1, 1, 1, 1, 'Deadly Gladiator\'s Pendant of Subjugation'),
|
|
(34208, 42032, 0, 0, 0, 1, 1, 1, 1, 'Deadly Gladiator\'s Pendant of Deliverance'),
|
|
(34208, 42033, 0, 0, 0, 1, 1, 1, 1, 'Deadly Gladiator\'s Pendant of Salvation'),
|
|
(34208, 42062, 0, 0, 0, 1, 1, 1, 1, 'Deadly Gladiator\'s Cloak of Dominance'),
|
|
(34208, 42063, 0, 0, 0, 1, 1, 1, 1, 'Deadly Gladiator\'s Cloak of Subjugation'),
|
|
(34208, 42064, 0, 0, 0, 1, 1, 1, 1, 'Deadly Gladiator\'s Cloak of Ascendancy'),
|
|
(34208, 42065, 0, 0, 0, 1, 1, 1, 1, 'Deadly Gladiator\'s Cloak of Salvation'),
|
|
(34208, 42066, 0, 0, 0, 1, 1, 1, 1, 'Deadly Gladiator\'s Cloak of Deliverance'),
|
|
(34208, 42067, 0, 0, 0, 1, 1, 1, 1, 'Deadly Gladiator\'s Cloak of Triumph'),
|
|
(34208, 42068, 0, 0, 0, 1, 1, 1, 1, 'Deadly Gladiator\'s Cloak of Victory'),
|
|
(34208, 42114, 0, 0, 0, 1, 1, 1, 1, 'Deadly Gladiator\'s Band of Ascendancy'),
|
|
(34208, 42115, 0, 0, 0, 1, 1, 1, 1, 'Deadly Gladiator\'s Band of Victory'),
|
|
(34208, 45337, 0, 0, 0, 1, 1, 1, 1, 'Valorous Darkruned Handguards'),
|
|
(34208, 45338, 0, 0, 0, 1, 1, 1, 1, 'Valorous Darkruned Legguards'),
|
|
(34208, 45341, 0, 0, 0, 1, 1, 1, 1, 'Valorous Darkruned Gauntlets'),
|
|
(34208, 45343, 0, 0, 0, 1, 1, 1, 1, 'Valorous Darkruned Legplates'),
|
|
(34208, 45345, 0, 0, 0, 1, 1, 1, 1, 'Valorous Nightsong Handguards'),
|
|
(34208, 45347, 0, 0, 0, 1, 1, 1, 1, 'Valorous Nightsong Leggings'),
|
|
(34208, 45351, 0, 0, 0, 1, 1, 1, 1, 'Valorous Nightsong Gloves'),
|
|
(34208, 45353, 0, 0, 0, 1, 1, 1, 1, 'Valorous Nightsong Trousers'),
|
|
(34208, 45355, 0, 0, 0, 1, 1, 1, 1, 'Valorous Nightsong Handgrips'),
|
|
(34208, 45357, 0, 0, 0, 1, 1, 1, 1, 'Valorous Nightsong Legguards'),
|
|
(34208, 45360, 0, 0, 0, 1, 1, 1, 1, 'Valorous Scourgestalker Handguards'),
|
|
(34208, 45362, 0, 0, 0, 1, 1, 1, 1, 'Valorous Scourgestalker Legguards'),
|
|
(34208, 45367, 0, 0, 0, 1, 1, 1, 1, 'Valorous Kirin Tor Leggings'),
|
|
(34208, 45370, 0, 0, 0, 1, 1, 1, 1, 'Valorous Aegis Gloves'),
|
|
(34208, 45371, 0, 0, 0, 1, 1, 1, 1, 'Valorous Aegis Greaves'),
|
|
(34208, 45376, 0, 0, 0, 1, 1, 1, 1, 'Valorous Aegis Gauntlets'),
|
|
(34208, 45379, 0, 0, 0, 1, 1, 1, 1, 'Valorous Aegis Legplates'),
|
|
(34208, 45383, 0, 0, 0, 1, 1, 1, 1, 'Valorous Aegis Handguards'),
|
|
(34208, 45384, 0, 0, 0, 1, 1, 1, 1, 'Valorous Aegis Legguards'),
|
|
(34208, 45387, 0, 0, 0, 1, 1, 1, 1, 'Valorous Gloves of Sanctification'),
|
|
(34208, 45388, 0, 0, 0, 1, 1, 1, 1, 'Valorous Leggings of Sanctification'),
|
|
(34208, 45392, 0, 0, 0, 1, 1, 1, 1, 'Valorous Handwraps of Sanctification'),
|
|
(34208, 45394, 0, 0, 0, 1, 1, 1, 1, 'Valorous Pants of Sanctification'),
|
|
(34208, 45397, 0, 0, 0, 1, 1, 1, 1, 'Valorous Terrorblade Gauntlets'),
|
|
(34208, 45399, 0, 0, 0, 1, 1, 1, 1, 'Valorous Terrorblade Legplates'),
|
|
(34208, 45401, 0, 0, 0, 1, 1, 1, 1, 'Valorous Worldbreaker Handguards'),
|
|
(34208, 45403, 0, 0, 0, 1, 1, 1, 1, 'Valorous Worldbreaker Legguards'),
|
|
(34208, 45406, 0, 0, 0, 1, 1, 1, 1, 'Valorous Worldbreaker Gloves'),
|
|
(34208, 45409, 0, 0, 0, 1, 1, 1, 1, 'Valorous Worldbreaker Kilt'),
|
|
(34208, 45414, 0, 0, 0, 1, 1, 1, 1, 'Valorous Worldbreaker Grips'),
|
|
(34208, 45416, 0, 0, 0, 1, 1, 1, 1, 'Valorous Worldbreaker War-Kilt'),
|
|
(34208, 45419, 0, 0, 0, 1, 1, 1, 1, 'Valorous Deathbringer Gloves'),
|
|
(34208, 45420, 0, 0, 0, 1, 1, 1, 1, 'Valorous Deathbringer Leggings'),
|
|
(34208, 45426, 0, 0, 0, 1, 1, 1, 1, 'Valorous Siegebreaker Handguards'),
|
|
(34208, 45427, 0, 0, 0, 1, 1, 1, 1, 'Valorous Siegebreaker Legguards'),
|
|
(34208, 45430, 0, 0, 0, 1, 1, 1, 1, 'Valorous Siegebreaker Gauntlets'),
|
|
(34208, 45432, 0, 0, 0, 1, 1, 1, 1, 'Valorous Siegebreaker Legplates'),
|
|
(34208, 46131, 0, 0, 0, 1, 1, 1, 1, 'Valorous Kirin Tor Gauntlets'),
|
|
(34209, 39492, 0, 0, 0, 1, 1, 1, 1, 'Heroes\' Frostfire Robe'),
|
|
(34209, 39493, 0, 0, 0, 1, 1, 1, 1, 'Heroes\' Frostfire Leggings'),
|
|
(34209, 39495, 0, 0, 0, 1, 1, 1, 1, 'Heroes\' Frostfire Gloves'),
|
|
(34209, 39497, 0, 0, 0, 1, 1, 1, 1, 'Heroes\' Plagueheart Robe'),
|
|
(34209, 39498, 0, 0, 0, 1, 1, 1, 1, 'Heroes\' Plagueheart Leggings'),
|
|
(34209, 39500, 0, 0, 0, 1, 1, 1, 1, 'Heroes\' Plagueheart Gloves'),
|
|
(34209, 39515, 0, 0, 0, 1, 1, 1, 1, 'Heroes\' Robe of Faith'),
|
|
(34209, 39517, 0, 0, 0, 1, 1, 1, 1, 'Heroes\' Leggings of Faith'),
|
|
(34209, 39519, 0, 0, 0, 1, 1, 1, 1, 'Heroes\' Gloves of Faith'),
|
|
(34209, 39523, 0, 0, 0, 1, 1, 1, 1, 'Heroes\' Raiments of Faith'),
|
|
(34209, 39528, 0, 0, 0, 1, 1, 1, 1, 'Heroes\' Pants of Faith'),
|
|
(34209, 39530, 0, 0, 0, 1, 1, 1, 1, 'Heroes\' Handwraps of Faith'),
|
|
(34209, 39538, 0, 0, 0, 1, 1, 1, 1, 'Heroes\' Dreamwalker Robe'),
|
|
(34209, 39539, 0, 0, 0, 1, 1, 1, 1, 'Heroes\' Dreamwalker Leggings'),
|
|
(34209, 39543, 0, 0, 0, 1, 1, 1, 1, 'Heroes\' Dreamwalker Handguards'),
|
|
(34209, 39544, 0, 0, 0, 1, 1, 1, 1, 'Heroes\' Dreamwalker Gloves'),
|
|
(34209, 39546, 0, 0, 0, 1, 1, 1, 1, 'Heroes\' Dreamwalker Trousers'),
|
|
(34209, 39547, 0, 0, 0, 1, 1, 1, 1, 'Heroes\' Dreamwalker Vestments'),
|
|
(34209, 39554, 0, 0, 0, 1, 1, 1, 1, 'Heroes\' Dreamwalker Raiments'),
|
|
(34209, 39555, 0, 0, 0, 1, 1, 1, 1, 'Heroes\' Dreamwalker Legguards'),
|
|
(34209, 39557, 0, 0, 0, 1, 1, 1, 1, 'Heroes\' Dreamwalker Handgrips'),
|
|
(34209, 39558, 0, 0, 0, 1, 1, 1, 1, 'Heroes\' Bonescythe Breastplate'),
|
|
(34209, 39560, 0, 0, 0, 1, 1, 1, 1, 'Heroes\' Bonescythe Gauntlets'),
|
|
(34209, 39564, 0, 0, 0, 1, 1, 1, 1, 'Heroes\' Bonescythe Legplates'),
|
|
(34209, 39579, 0, 0, 0, 1, 1, 1, 1, 'Heroes\' Cryptstalker Tunic'),
|
|
(34209, 39580, 0, 0, 0, 1, 1, 1, 1, 'Heroes\' Cryptstalker Legguards'),
|
|
(34209, 39582, 0, 0, 0, 1, 1, 1, 1, 'Heroes\' Cryptstalker Handguards'),
|
|
(34209, 39588, 0, 0, 0, 1, 1, 1, 1, 'Heroes\' Earthshatter Tunic'),
|
|
(34209, 39589, 0, 0, 0, 1, 1, 1, 1, 'Heroes\' Earthshatter Legguards'),
|
|
(34209, 39591, 0, 0, 0, 1, 1, 1, 1, 'Heroes\' Earthshatter Handguards'),
|
|
(34209, 39592, 0, 0, 0, 1, 1, 1, 1, 'Heroes\' Earthshatter Hauberk'),
|
|
(34209, 39593, 0, 0, 0, 1, 1, 1, 1, 'Heroes\' Earthshatter Gloves'),
|
|
(34209, 39595, 0, 0, 0, 1, 1, 1, 1, 'Heroes\' Earthshatter Kilt'),
|
|
(34209, 39597, 0, 0, 0, 1, 1, 1, 1, 'Heroes\' Earthshatter Chestguard'),
|
|
(34209, 39606, 0, 0, 0, 1, 1, 1, 1, 'Heroes\' Dreadnaught Battleplate'),
|
|
(34209, 39607, 0, 0, 0, 1, 1, 1, 1, 'Heroes\' Dreadnaught Legplates'),
|
|
(34209, 39609, 0, 0, 0, 1, 1, 1, 1, 'Heroes\' Dreadnaught Gauntlets'),
|
|
(34209, 39611, 0, 0, 0, 1, 1, 1, 1, 'Heroes\' Dreadnaught Breastplate'),
|
|
(34209, 39612, 0, 0, 0, 1, 1, 1, 1, 'Heroes\' Dreadnaught Legguards'),
|
|
(34209, 39617, 0, 0, 0, 1, 1, 1, 1, 'Heroes\' Scourgeborne Battleplate'),
|
|
(34209, 39618, 0, 0, 0, 1, 1, 1, 1, 'Heroes\' Scourgeborne Gauntlets'),
|
|
(34209, 39620, 0, 0, 0, 1, 1, 1, 1, 'Heroes\' Scourgeborne Legplates'),
|
|
(34209, 39622, 0, 0, 0, 1, 1, 1, 1, 'Heroes\' Dreadnaught Handguards'),
|
|
(34209, 39623, 0, 0, 0, 1, 1, 1, 1, 'Heroes\' Scourgeborne Chestguard'),
|
|
(34209, 39624, 0, 0, 0, 1, 1, 1, 1, 'Heroes\' Scourgeborne Handguards'),
|
|
(34209, 39626, 0, 0, 0, 1, 1, 1, 1, 'Heroes\' Scourgeborne Legguards'),
|
|
(34209, 39629, 0, 0, 0, 1, 1, 1, 1, 'Heroes\' Redemption Tunic'),
|
|
(34209, 39630, 0, 0, 0, 1, 1, 1, 1, 'Heroes\' Redemption Greaves'),
|
|
(34209, 39632, 0, 0, 0, 1, 1, 1, 1, 'Heroes\' Redemption Gloves'),
|
|
(34209, 39633, 0, 0, 0, 1, 1, 1, 1, 'Heroes\' Redemption Chestpiece'),
|
|
(34209, 39634, 0, 0, 0, 1, 1, 1, 1, 'Heroes\' Redemption Gauntlets'),
|
|
(34209, 39636, 0, 0, 0, 1, 1, 1, 1, 'Heroes\' Redemption Legplates'),
|
|
(34209, 39638, 0, 0, 0, 1, 1, 1, 1, 'Heroes\' Redemption Breastplate'),
|
|
(34209, 39639, 0, 0, 0, 1, 1, 1, 1, 'Heroes\' Redemption Handguards'),
|
|
(34209, 39641, 0, 0, 0, 1, 1, 1, 1, 'Heroes\' Redemption Legguards'),
|
|
(34209, 40781, 0, 0, 0, 1, 1, 1, 1, 'Hateful Gladiator\'s Dreadplate Chestpiece'),
|
|
(34209, 40782, 0, 0, 0, 1, 1, 1, 1, 'Hateful Gladiator\'s Scaled Chestpiece'),
|
|
(34209, 40783, 0, 0, 0, 1, 1, 1, 1, 'Hateful Gladiator\'s Plate Chestpiece'),
|
|
(34209, 40801, 0, 0, 0, 1, 1, 1, 1, 'Hateful Gladiator\'s Plate Gauntlets'),
|
|
(34209, 40802, 0, 0, 0, 1, 1, 1, 1, 'Hateful Gladiator\'s Scaled Gauntlets'),
|
|
(34209, 40803, 0, 0, 0, 1, 1, 1, 1, 'Hateful Gladiator\'s Dreadplate Gauntlets'),
|
|
(34209, 40840, 0, 0, 0, 1, 1, 1, 1, 'Hateful Gladiator\'s Plate Legguards'),
|
|
(34209, 40841, 0, 0, 0, 1, 1, 1, 1, 'Hateful Gladiator\'s Dreadplate Legguards'),
|
|
(34209, 40842, 0, 0, 0, 1, 1, 1, 1, 'Hateful Gladiator\'s Scaled Legguards'),
|
|
(34209, 40904, 0, 0, 0, 1, 1, 1, 1, 'Hateful Gladiator\'s Ornamented Chestguard'),
|
|
(34209, 40925, 0, 0, 0, 1, 1, 1, 1, 'Hateful Gladiator\'s Ornamented Gloves'),
|
|
(34209, 40937, 0, 0, 0, 1, 1, 1, 1, 'Hateful Gladiator\'s Ornamented Legplates'),
|
|
(34209, 40988, 0, 0, 0, 1, 1, 1, 1, 'Hateful Gladiator\'s Ringmail Armor'),
|
|
(34209, 40989, 0, 0, 0, 1, 1, 1, 1, 'Hateful Gladiator\'s Mail Armor'),
|
|
(34209, 40999, 0, 0, 0, 1, 1, 1, 1, 'Hateful Gladiator\'s Ringmail Gauntlets'),
|
|
(34209, 41005, 0, 0, 0, 1, 1, 1, 1, 'Hateful Gladiator\'s Mail Gauntlets'),
|
|
(34209, 41025, 0, 0, 0, 1, 1, 1, 1, 'Hateful Gladiator\'s Ringmail Leggings'),
|
|
(34209, 41031, 0, 0, 0, 1, 1, 1, 1, 'Hateful Gladiator\'s Mail Leggings'),
|
|
(34209, 41085, 0, 0, 0, 1, 1, 1, 1, 'Hateful Gladiator\'s Chain Armor'),
|
|
(34209, 41135, 0, 0, 0, 1, 1, 1, 1, 'Hateful Gladiator\'s Linked Gauntlets'),
|
|
(34209, 41141, 0, 0, 0, 1, 1, 1, 1, 'Hateful Gladiator\'s Chain Gauntlets'),
|
|
(34209, 41162, 0, 0, 0, 1, 1, 1, 1, 'Hateful Gladiator\'s Linked Leggings'),
|
|
(34209, 41203, 0, 0, 0, 1, 1, 1, 1, 'Hateful Gladiator\'s Chain Leggings'),
|
|
(34209, 41284, 0, 0, 0, 1, 1, 1, 1, 'Hateful Gladiator\'s Kodohide Gloves'),
|
|
(34209, 41291, 0, 0, 0, 1, 1, 1, 1, 'Hateful Gladiator\'s Wyrmhide Gloves'),
|
|
(34209, 41296, 0, 0, 0, 1, 1, 1, 1, 'Hateful Gladiator\'s Kodohide Legguards'),
|
|
(34209, 41302, 0, 0, 0, 1, 1, 1, 1, 'Hateful Gladiator\'s Wyrmhide Legguards'),
|
|
(34209, 41308, 0, 0, 0, 1, 1, 1, 1, 'Hateful Gladiator\'s Kodohide Robes'),
|
|
(34209, 41314, 0, 0, 0, 1, 1, 1, 1, 'Hateful Gladiator\'s Wyrmhide Robes'),
|
|
(34209, 41653, 0, 0, 0, 1, 1, 1, 1, 'Hateful Gladiator\'s Leather Legguards'),
|
|
(34209, 41659, 0, 0, 0, 1, 1, 1, 1, 'Hateful Gladiator\'s Dragonhide Robes'),
|
|
(34209, 41665, 0, 0, 0, 1, 1, 1, 1, 'Hateful Gladiator\'s Dragonhide Legguards'),
|
|
(34209, 41765, 0, 0, 0, 1, 1, 1, 1, 'Hateful Gladiator\'s Leather Gloves'),
|
|
(34209, 41771, 0, 0, 0, 1, 1, 1, 1, 'Hateful Gladiator\'s Dragonhide Gloves'),
|
|
(34209, 41857, 0, 0, 0, 1, 1, 1, 1, 'Hateful Gladiator\'s Mooncloth Robe'),
|
|
(34209, 41862, 0, 0, 0, 1, 1, 1, 1, 'Hateful Gladiator\'s Mooncloth Leggings'),
|
|
(34209, 41872, 0, 0, 0, 1, 1, 1, 1, 'Hateful Gladiator\'s Mooncloth Gloves'),
|
|
(34209, 41919, 0, 0, 0, 1, 1, 1, 1, 'Hateful Gladiator\'s Satin Robe'),
|
|
(34209, 41925, 0, 0, 0, 1, 1, 1, 1, 'Hateful Gladiator\'s Satin Leggings'),
|
|
(34209, 41938, 0, 0, 0, 1, 1, 1, 1, 'Hateful Gladiator\'s Satin Gloves'),
|
|
(34209, 41950, 0, 0, 0, 1, 1, 1, 1, 'Hateful Gladiator\'s Silk Raiment'),
|
|
(34209, 41957, 0, 0, 0, 1, 1, 1, 1, 'Hateful Gladiator\'s Silk Trousers'),
|
|
(34209, 41969, 0, 0, 0, 1, 1, 1, 1, 'Hateful Gladiator\'s Silk Handguards'),
|
|
(34209, 42001, 0, 0, 0, 1, 1, 1, 1, 'Hateful Gladiator\'s Felweave Raiment'),
|
|
(34209, 42003, 0, 0, 0, 1, 1, 1, 1, 'Hateful Gladiator\'s Felweave Trousers'),
|
|
(34209, 42015, 0, 0, 0, 1, 1, 1, 1, 'Hateful Gladiator\'s Felweave Handguards'),
|
|
(34215, 40807, 0, 0, 0, 1, 1, 1, 1, 'Furious Gladiator\'s Plate Gauntlets'),
|
|
(34215, 40808, 0, 0, 0, 1, 1, 1, 1, 'Furious Gladiator\'s Scaled Gauntlets'),
|
|
(34215, 40809, 0, 0, 0, 1, 1, 1, 1, 'Furious Gladiator\'s Dreadplate Gauntlets'),
|
|
(34215, 40847, 0, 0, 0, 1, 1, 1, 1, 'Furious Gladiator\'s Plate Legguards'),
|
|
(34215, 40849, 0, 0, 0, 1, 1, 1, 1, 'Furious Gladiator\'s Scaled Legguards'),
|
|
(34215, 40881, 0, 0, 0, 1, 1, 1, 1, 'Furious Gladiator\'s Girdle of Triumph'),
|
|
(34215, 40882, 0, 0, 0, 1, 1, 1, 1, 'Furious Gladiator\'s Greaves of Triumph'),
|
|
(34215, 40889, 0, 0, 0, 1, 1, 1, 1, 'Furious Gladiator\'s Bracers of Triumph'),
|
|
(34215, 40927, 0, 0, 0, 1, 1, 1, 1, 'Furious Gladiator\'s Ornamented Gloves'),
|
|
(34215, 40939, 0, 0, 0, 1, 1, 1, 1, 'Furious Gladiator\'s Ornamented Legplates'),
|
|
(34215, 40976, 0, 0, 0, 1, 1, 1, 1, 'Furious Gladiator\'s Girdle of Salvation'),
|
|
(34215, 40977, 0, 0, 0, 1, 1, 1, 1, 'Furious Gladiator\'s Greaves of Salvation'),
|
|
(34215, 40983, 0, 0, 0, 1, 1, 1, 1, 'Furious Gladiator\'s Bracers of Salvation'),
|
|
(34215, 41001, 0, 0, 0, 1, 1, 1, 1, 'Furious Gladiator\'s Ringmail Gauntlets'),
|
|
(34215, 41007, 0, 0, 0, 1, 1, 1, 1, 'Furious Gladiator\'s Mail Gauntlets'),
|
|
(34215, 41027, 0, 0, 0, 1, 1, 1, 1, 'Furious Gladiator\'s Ringmail Leggings'),
|
|
(34215, 41033, 0, 0, 0, 1, 1, 1, 1, 'Furious Gladiator\'s Mail Leggings'),
|
|
(34215, 41051, 0, 0, 0, 1, 1, 1, 1, 'Furious Gladiator\'s Waistguard of Salvation'),
|
|
(34215, 41055, 0, 0, 0, 1, 1, 1, 1, 'Furious Gladiator\'s Sabatons of Salvation'),
|
|
(34215, 41060, 0, 0, 0, 1, 1, 1, 1, 'Furious Gladiator\'s Wristguards of Salvation'),
|
|
(34215, 41065, 0, 0, 0, 1, 1, 1, 1, 'Furious Gladiator\'s Wristguards of Dominance'),
|
|
(34215, 41070, 0, 0, 0, 1, 1, 1, 1, 'Furious Gladiator\'s Waistguard of Dominance'),
|
|
(34215, 41075, 0, 0, 0, 1, 1, 1, 1, 'Furious Gladiator\'s Sabatons of Dominance'),
|
|
(34215, 41137, 0, 0, 0, 1, 1, 1, 1, 'Furious Gladiator\'s Linked Gauntlets'),
|
|
(34215, 41143, 0, 0, 0, 1, 1, 1, 1, 'Furious Gladiator\'s Chain Gauntlets'),
|
|
(34215, 41199, 0, 0, 0, 1, 1, 1, 1, 'Furious Gladiator\'s Linked Leggings'),
|
|
(34215, 41205, 0, 0, 0, 1, 1, 1, 1, 'Furious Gladiator\'s Chain Leggings'),
|
|
(34215, 41225, 0, 0, 0, 1, 1, 1, 1, 'Furious Gladiator\'s Wristguards of Triumph'),
|
|
(34215, 41230, 0, 0, 0, 1, 1, 1, 1, 'Furious Gladiator\'s Sabatons of Triumph'),
|
|
(34215, 41235, 0, 0, 0, 1, 1, 1, 1, 'Furious Gladiator\'s Waistguard of Triumph'),
|
|
(34215, 41287, 0, 0, 0, 1, 1, 1, 1, 'Furious Gladiator\'s Kodohide Gloves'),
|
|
(34215, 41293, 0, 0, 0, 1, 1, 1, 1, 'Furious Gladiator\'s Wyrmhide Gloves'),
|
|
(34215, 41298, 0, 0, 0, 1, 1, 1, 1, 'Furious Gladiator\'s Kodohide Legguards'),
|
|
(34215, 41304, 0, 0, 0, 1, 1, 1, 1, 'Furious Gladiator\'s Wyrmhide Legguards'),
|
|
(34215, 41617, 0, 0, 0, 1, 1, 1, 1, 'Furious Gladiator\'s Belt of Salvation'),
|
|
(34215, 41621, 0, 0, 0, 1, 1, 1, 1, 'Furious Gladiator\'s Boots of Salvation'),
|
|
(34215, 41625, 0, 0, 0, 1, 1, 1, 1, 'Furious Gladiator\'s Armwraps of Salvation'),
|
|
(34215, 41630, 0, 0, 0, 1, 1, 1, 1, 'Furious Gladiator\'s Belt of Dominance'),
|
|
(34215, 41635, 0, 0, 0, 1, 1, 1, 1, 'Furious Gladiator\'s Boots of Dominance'),
|
|
(34215, 41640, 0, 0, 0, 1, 1, 1, 1, 'Furious Gladiator\'s Armwraps of Dominance'),
|
|
(34215, 41655, 0, 0, 0, 1, 1, 1, 1, 'Furious Gladiator\'s Leather Legguards'),
|
|
(34215, 41667, 0, 0, 0, 1, 1, 1, 1, 'Furious Gladiator\'s Dragonhide Legguards'),
|
|
(34215, 41767, 0, 0, 0, 1, 1, 1, 1, 'Furious Gladiator\'s Leather Gloves'),
|
|
(34215, 41773, 0, 0, 0, 1, 1, 1, 1, 'Furious Gladiator\'s Dragonhide Gloves'),
|
|
(34215, 41832, 0, 0, 0, 1, 1, 1, 1, 'Furious Gladiator\'s Belt of Triumph'),
|
|
(34215, 41836, 0, 0, 0, 1, 1, 1, 1, 'Furious Gladiator\'s Boots of Triumph'),
|
|
(34215, 41840, 0, 0, 0, 1, 1, 1, 1, 'Furious Gladiator\'s Armwraps of Triumph'),
|
|
(34215, 41864, 0, 0, 0, 1, 1, 1, 1, 'Furious Gladiator\'s Mooncloth Leggings'),
|
|
(34215, 41874, 0, 0, 0, 1, 1, 1, 1, 'Furious Gladiator\'s Mooncloth Gloves'),
|
|
(34215, 41881, 0, 0, 0, 1, 1, 1, 1, 'Furious Gladiator\'s Cord of Salvation'),
|
|
(34215, 41885, 0, 0, 0, 1, 1, 1, 1, 'Furious Gladiator\'s Slippers of Salvation'),
|
|
(34215, 41893, 0, 0, 0, 1, 1, 1, 1, 'Furious Gladiator\'s Cuffs of Salvation'),
|
|
(34215, 41898, 0, 0, 0, 1, 1, 1, 1, 'Furious Gladiator\'s Cord of Dominance'),
|
|
(34215, 41903, 0, 0, 0, 1, 1, 1, 1, 'Furious Gladiator\'s Slippers of Dominance'),
|
|
(34215, 41909, 0, 0, 0, 1, 1, 1, 1, 'Furious Gladiator\'s Cuffs of Dominance'),
|
|
(34215, 41927, 0, 0, 0, 1, 1, 1, 1, 'Furious Gladiator\'s Satin Leggings'),
|
|
(34215, 41940, 0, 0, 0, 1, 1, 1, 1, 'Furious Gladiator\'s Satin Gloves'),
|
|
(34215, 41959, 0, 0, 0, 1, 1, 1, 1, 'Furious Gladiator\'s Silk Trousers'),
|
|
(34215, 41971, 0, 0, 0, 1, 1, 1, 1, 'Furious Gladiator\'s Silk Handguards'),
|
|
(34215, 42005, 0, 0, 0, 1, 1, 1, 1, 'Furious Gladiator\'s Felweave Trousers'),
|
|
(34215, 42017, 0, 0, 0, 1, 1, 1, 1, 'Furious Gladiator\'s Felweave Handguards'),
|
|
(34215, 42034, 0, 0, 0, 1, 1, 1, 1, 'Furious Gladiator\'s Pendant of Triumph'),
|
|
(34215, 42035, 0, 0, 0, 1, 1, 1, 1, 'Furious Gladiator\'s Pendant of Victory'),
|
|
(34215, 42036, 0, 0, 0, 1, 1, 1, 1, 'Furious Gladiator\'s Pendant of Dominance'),
|
|
(34215, 42037, 0, 0, 0, 1, 1, 1, 1, 'Furious Gladiator\'s Pendant of Ascendancy'),
|
|
(34215, 42038, 0, 0, 0, 1, 1, 1, 1, 'Furious Gladiator\'s Pendant of Subjugation'),
|
|
(34215, 42039, 0, 0, 0, 1, 1, 1, 1, 'Furious Gladiator\'s Pendant of Deliverance'),
|
|
(34215, 42040, 0, 0, 0, 1, 1, 1, 1, 'Furious Gladiator\'s Pendant of Salvation'),
|
|
(34215, 42069, 0, 0, 0, 1, 1, 1, 1, 'Furious Gladiator\'s Cloak of Dominance'),
|
|
(34215, 42070, 0, 0, 0, 1, 1, 1, 1, 'Furious Gladiator\'s Cloak of Subjugation'),
|
|
(34215, 42071, 0, 0, 0, 1, 1, 1, 1, 'Furious Gladiator\'s Cloak of Ascendancy'),
|
|
(34215, 42072, 0, 0, 0, 1, 1, 1, 1, 'Furious Gladiator\'s Cloak of Salvation'),
|
|
(34215, 42073, 0, 0, 0, 1, 1, 1, 1, 'Furious Gladiator\'s Cloak of Deliverance'),
|
|
(34215, 42074, 0, 0, 0, 1, 1, 1, 1, 'Furious Gladiator\'s Cloak of Triumph'),
|
|
(34215, 42075, 0, 0, 0, 1, 1, 1, 1, 'Furious Gladiator\'s Cloak of Victory'),
|
|
(34215, 42116, 0, 0, 0, 1, 1, 1, 1, 'Furious Gladiator\'s Band of Dominance'),
|
|
(34215, 42117, 0, 0, 0, 1, 1, 1, 1, 'Furious Gladiator\'s Band of Triumph'),
|
|
(34215, 46113, 0, 0, 0, 1, 1, 1, 1, 'Conqueror\'s Darkruned Gauntlets'),
|
|
(34215, 46116, 0, 0, 0, 1, 1, 1, 1, 'Conqueror\'s Darkruned Legplates'),
|
|
(34215, 46119, 0, 0, 0, 1, 1, 1, 1, 'Conqueror\'s Darkruned Handguards'),
|
|
(34215, 46121, 0, 0, 0, 1, 1, 1, 1, 'Conqueror\'s Darkruned Legguards'),
|
|
(34215, 46124, 0, 0, 0, 1, 1, 1, 1, 'Conqueror\'s Terrorblade Gauntlets'),
|
|
(34215, 46126, 0, 0, 0, 1, 1, 1, 1, 'Conqueror\'s Terrorblade Legplates'),
|
|
(34215, 46132, 0, 0, 0, 1, 1, 1, 1, 'Conqueror\'s Kirin Tor Gauntlets'),
|
|
(34215, 46133, 0, 0, 0, 1, 1, 1, 1, 'Conqueror\'s Kirin Tor Leggings'),
|
|
(34215, 46135, 0, 0, 0, 1, 1, 1, 1, 'Conqueror\'s Deathbringer Gloves'),
|
|
(34215, 46139, 0, 0, 0, 1, 1, 1, 1, 'Conqueror\'s Deathbringer Leggings'),
|
|
(34215, 46142, 0, 0, 0, 1, 1, 1, 1, 'Conqueror\'s Scourgestalker Handguards'),
|
|
(34215, 46144, 0, 0, 0, 1, 1, 1, 1, 'Conqueror\'s Scourgestalker Legguards'),
|
|
(34215, 46148, 0, 0, 0, 1, 1, 1, 1, 'Conqueror\'s Siegebreaker Gauntlets'),
|
|
(34215, 46150, 0, 0, 0, 1, 1, 1, 1, 'Conqueror\'s Siegebreaker Legplates'),
|
|
(34215, 46153, 0, 0, 0, 1, 1, 1, 1, 'Conqueror\'s Aegis Legplates'),
|
|
(34215, 46155, 0, 0, 0, 1, 1, 1, 1, 'Conqueror\'s Aegis Gauntlets'),
|
|
(34215, 46158, 0, 0, 0, 1, 1, 1, 1, 'Conqueror\'s Nightsong Handgrips'),
|
|
(34215, 46160, 0, 0, 0, 1, 1, 1, 1, 'Conqueror\'s Nightsong Legguards'),
|
|
(34215, 46163, 0, 0, 0, 1, 1, 1, 1, 'Conqueror\'s Handwraps of Sanctification'),
|
|
(34215, 46164, 0, 0, 0, 1, 1, 1, 1, 'Conqueror\'s Siegebreaker Handguards'),
|
|
(34215, 46169, 0, 0, 0, 1, 1, 1, 1, 'Conqueror\'s Siegebreaker Legguards'),
|
|
(34215, 46170, 0, 0, 0, 1, 1, 1, 1, 'Conqueror\'s Pants of Sanctification'),
|
|
(34215, 46174, 0, 0, 0, 1, 1, 1, 1, 'Conqueror\'s Aegis Handguards'),
|
|
(34215, 46176, 0, 0, 0, 1, 1, 1, 1, 'Conqueror\'s Aegis Legguards'),
|
|
(34215, 46179, 0, 0, 0, 1, 1, 1, 1, 'Conqueror\'s Aegis Gloves'),
|
|
(34215, 46181, 0, 0, 0, 1, 1, 1, 1, 'Conqueror\'s Aegis Greaves'),
|
|
(34215, 46183, 0, 0, 0, 1, 1, 1, 1, 'Conqueror\'s Nightsong Handguards'),
|
|
(34215, 46185, 0, 0, 0, 1, 1, 1, 1, 'Conqueror\'s Nightsong Leggings'),
|
|
(34215, 46188, 0, 0, 0, 1, 1, 1, 1, 'Conqueror\'s Gloves of Sanctification'),
|
|
(34215, 46189, 0, 0, 0, 1, 1, 1, 1, 'Conqueror\'s Nightsong Gloves'),
|
|
(34215, 46192, 0, 0, 0, 1, 1, 1, 1, 'Conqueror\'s Nightsong Trousers'),
|
|
(34215, 46195, 0, 0, 0, 1, 1, 1, 1, 'Conqueror\'s Leggings of Sanctification'),
|
|
(34215, 46199, 0, 0, 0, 1, 1, 1, 1, 'Conqueror\'s Worldbreaker Handguards'),
|
|
(34215, 46200, 0, 0, 0, 1, 1, 1, 1, 'Conqueror\'s Worldbreaker Grips'),
|
|
(34215, 46202, 0, 0, 0, 1, 1, 1, 1, 'Conqueror\'s Worldbreaker Legguards'),
|
|
(34215, 46207, 0, 0, 0, 1, 1, 1, 1, 'Conqueror\'s Worldbreaker Gloves'),
|
|
(34215, 46208, 0, 0, 0, 1, 1, 1, 1, 'Conqueror\'s Worldbreaker War-Kilt'),
|
|
(34215, 46210, 0, 0, 0, 1, 1, 1, 1, 'Conqueror\'s Worldbreaker Kilt'),
|
|
(34215, 46373, 0, 0, 0, 1, 1, 1, 1, 'Furious Gladiator\'s Pendant of Sundering'),
|
|
(34216, 40415, 0, 0, 0, 1, 1, 1, 1, 'Valorous Frostfire Gloves'),
|
|
(34216, 40417, 0, 0, 0, 1, 1, 1, 1, 'Valorous Frostfire Leggings'),
|
|
(34216, 40418, 0, 0, 0, 1, 1, 1, 1, 'Valorous Frostfire Robe'),
|
|
(34216, 40420, 0, 0, 0, 1, 1, 1, 1, 'Valorous Plagueheart Gloves'),
|
|
(34216, 40422, 0, 0, 0, 1, 1, 1, 1, 'Valorous Plagueheart Leggings'),
|
|
(34216, 40423, 0, 0, 0, 1, 1, 1, 1, 'Valorous Plagueheart Robe'),
|
|
(34216, 40445, 0, 0, 0, 1, 1, 1, 1, 'Valorous Gloves of Faith'),
|
|
(34216, 40448, 0, 0, 0, 1, 1, 1, 1, 'Valorous Leggings of Faith'),
|
|
(34216, 40449, 0, 0, 0, 1, 1, 1, 1, 'Valorous Robe of Faith'),
|
|
(34216, 40454, 0, 0, 0, 1, 1, 1, 1, 'Valorous Handwraps of Faith'),
|
|
(34216, 40457, 0, 0, 0, 1, 1, 1, 1, 'Valorous Pants of Faith'),
|
|
(34216, 40458, 0, 0, 0, 1, 1, 1, 1, 'Valorous Raiments of Faith'),
|
|
(34216, 40460, 0, 0, 0, 1, 1, 1, 1, 'Valorous Dreamwalker Handguards'),
|
|
(34216, 40462, 0, 0, 0, 1, 1, 1, 1, 'Valorous Dreamwalker Leggings'),
|
|
(34216, 40463, 0, 0, 0, 1, 1, 1, 1, 'Valorous Dreamwalker Robe'),
|
|
(34216, 40466, 0, 0, 0, 1, 1, 1, 1, 'Valorous Dreamwalker Gloves'),
|
|
(34216, 40468, 0, 0, 0, 1, 1, 1, 1, 'Valorous Dreamwalker Trousers'),
|
|
(34216, 40469, 0, 0, 0, 1, 1, 1, 1, 'Valorous Dreamwalker Vestments'),
|
|
(34216, 40471, 0, 0, 0, 1, 1, 1, 1, 'Valorous Dreamwalker Raiments'),
|
|
(34216, 40472, 0, 0, 0, 1, 1, 1, 1, 'Valorous Dreamwalker Handgrips'),
|
|
(34216, 40493, 0, 0, 0, 1, 1, 1, 1, 'Valorous Dreamwalker Legguards'),
|
|
(34216, 40495, 0, 0, 0, 1, 1, 1, 1, 'Valorous Bonescythe Breastplate'),
|
|
(34216, 40496, 0, 0, 0, 1, 1, 1, 1, 'Valorous Bonescythe Gauntlets'),
|
|
(34216, 40500, 0, 0, 0, 1, 1, 1, 1, 'Valorous Bonescythe Legplates'),
|
|
(34216, 40503, 0, 0, 0, 1, 1, 1, 1, 'Valorous Cryptstalker Tunic'),
|
|
(34216, 40504, 0, 0, 0, 1, 1, 1, 1, 'Valorous Cryptstalker Handguards'),
|
|
(34216, 40506, 0, 0, 0, 1, 1, 1, 1, 'Valorous Cryptstalker Legguards'),
|
|
(34216, 40508, 0, 0, 0, 1, 1, 1, 1, 'Valorous Earthshatter Tunic'),
|
|
(34216, 40509, 0, 0, 0, 1, 1, 1, 1, 'Valorous Earthshatter Handguards'),
|
|
(34216, 40512, 0, 0, 0, 1, 1, 1, 1, 'Valorous Earthshatter Legguards'),
|
|
(34216, 40514, 0, 0, 0, 1, 1, 1, 1, 'Valorous Earthshatter Hauberk'),
|
|
(34216, 40515, 0, 0, 0, 1, 1, 1, 1, 'Valorous Earthshatter Gloves'),
|
|
(34216, 40517, 0, 0, 0, 1, 1, 1, 1, 'Valorous Earthshatter Kilt'),
|
|
(34216, 40520, 0, 0, 0, 1, 1, 1, 1, 'Valorous Earthshatter Grips'),
|
|
(34216, 40522, 0, 0, 0, 1, 1, 1, 1, 'Valorous Earthshatter War-Kilt'),
|
|
(34216, 40523, 0, 0, 0, 1, 1, 1, 1, 'Valorous Earthshatter Chestguard'),
|
|
(34216, 40525, 0, 0, 0, 1, 1, 1, 1, 'Valorous Dreadnaught Battleplate'),
|
|
(34216, 40527, 0, 0, 0, 1, 1, 1, 1, 'Valorous Dreadnaught Gauntlets'),
|
|
(34216, 40529, 0, 0, 0, 1, 1, 1, 1, 'Valorous Dreadnaught Legplates'),
|
|
(34216, 40544, 0, 0, 0, 1, 1, 1, 1, 'Valorous Dreadnaught Breastplate'),
|
|
(34216, 40545, 0, 0, 0, 1, 1, 1, 1, 'Valorous Dreadnaught Handguards'),
|
|
(34216, 40547, 0, 0, 0, 1, 1, 1, 1, 'Valorous Dreadnaught Legguards'),
|
|
(34216, 40550, 0, 0, 0, 1, 1, 1, 1, 'Valorous Scourgeborne Battleplate'),
|
|
(34216, 40552, 0, 0, 0, 1, 1, 1, 1, 'Valorous Scourgeborne Gauntlets'),
|
|
(34216, 40556, 0, 0, 0, 1, 1, 1, 1, 'Valorous Scourgeborne Legplates'),
|
|
(34216, 40559, 0, 0, 0, 1, 1, 1, 1, 'Valorous Scourgeborne Chestguard'),
|
|
(34216, 40563, 0, 0, 0, 1, 1, 1, 1, 'Valorous Scourgeborne Handguards'),
|
|
(34216, 40567, 0, 0, 0, 1, 1, 1, 1, 'Valorous Scourgeborne Legguards'),
|
|
(34216, 40569, 0, 0, 0, 1, 1, 1, 1, 'Valorous Redemption Tunic'),
|
|
(34216, 40570, 0, 0, 0, 1, 1, 1, 1, 'Valorous Redemption Gloves'),
|
|
(34216, 40572, 0, 0, 0, 1, 1, 1, 1, 'Valorous Redemption Greaves'),
|
|
(34216, 40574, 0, 0, 0, 1, 1, 1, 1, 'Valorous Redemption Chestpiece'),
|
|
(34216, 40575, 0, 0, 0, 1, 1, 1, 1, 'Valorous Redemption Gauntlets'),
|
|
(34216, 40577, 0, 0, 0, 1, 1, 1, 1, 'Valorous Redemption Legplates'),
|
|
(34216, 40579, 0, 0, 0, 1, 1, 1, 1, 'Valorous Redemption Breastplate'),
|
|
(34216, 40580, 0, 0, 0, 1, 1, 1, 1, 'Valorous Redemption Handguards'),
|
|
(34216, 40583, 0, 0, 0, 1, 1, 1, 1, 'Valorous Redemption Legguards'),
|
|
(34216, 40784, 0, 0, 0, 1, 1, 1, 1, 'Deadly Gladiator\'s Dreadplate Chestpiece'),
|
|
(34216, 40785, 0, 0, 0, 1, 1, 1, 1, 'Deadly Gladiator\'s Scaled Chestpiece'),
|
|
(34216, 40786, 0, 0, 0, 1, 1, 1, 1, 'Deadly Gladiator\'s Plate Chestpiece'),
|
|
(34216, 40804, 0, 0, 0, 1, 1, 1, 1, 'Deadly Gladiator\'s Plate Gauntlets'),
|
|
(34216, 40805, 0, 0, 0, 1, 1, 1, 1, 'Deadly Gladiator\'s Scaled Gauntlets'),
|
|
(34216, 40806, 0, 0, 0, 1, 1, 1, 1, 'Deadly Gladiator\'s Dreadplate Gauntlets'),
|
|
(34216, 40844, 0, 0, 0, 1, 1, 1, 1, 'Deadly Gladiator\'s Plate Legguards'),
|
|
(34216, 40845, 0, 0, 0, 1, 1, 1, 1, 'Deadly Gladiator\'s Dreadplate Legguards'),
|
|
(34216, 40846, 0, 0, 0, 1, 1, 1, 1, 'Deadly Gladiator\'s Scaled Legguards'),
|
|
(34216, 40905, 0, 0, 0, 1, 1, 1, 1, 'Deadly Gladiator\'s Ornamented Chestguard'),
|
|
(34216, 40926, 0, 0, 0, 1, 1, 1, 1, 'Deadly Gladiator\'s Ornamented Gloves'),
|
|
(34216, 40938, 0, 0, 0, 1, 1, 1, 1, 'Deadly Gladiator\'s Ornamented Legplates'),
|
|
(34216, 40990, 0, 0, 0, 1, 1, 1, 1, 'Deadly Gladiator\'s Ringmail Armor'),
|
|
(34216, 40991, 0, 0, 0, 1, 1, 1, 1, 'Deadly Gladiator\'s Mail Armor'),
|
|
(34216, 41000, 0, 0, 0, 1, 1, 1, 1, 'Deadly Gladiator\'s Ringmail Gauntlets'),
|
|
(34216, 41006, 0, 0, 0, 1, 1, 1, 1, 'Deadly Gladiator\'s Mail Gauntlets'),
|
|
(34216, 41026, 0, 0, 0, 1, 1, 1, 1, 'Deadly Gladiator\'s Ringmail Leggings'),
|
|
(34216, 41032, 0, 0, 0, 1, 1, 1, 1, 'Deadly Gladiator\'s Mail Leggings'),
|
|
(34216, 41080, 0, 0, 0, 1, 1, 1, 1, 'Deadly Gladiator\'s Linked Armor'),
|
|
(34216, 41086, 0, 0, 0, 1, 1, 1, 1, 'Deadly Gladiator\'s Chain Armor'),
|
|
(34216, 41136, 0, 0, 0, 1, 1, 1, 1, 'Deadly Gladiator\'s Linked Gauntlets'),
|
|
(34216, 41142, 0, 0, 0, 1, 1, 1, 1, 'Deadly Gladiator\'s Chain Gauntlets'),
|
|
(34216, 41198, 0, 0, 0, 1, 1, 1, 1, 'Deadly Gladiator\'s Linked Leggings'),
|
|
(34216, 41204, 0, 0, 0, 1, 1, 1, 1, 'Deadly Gladiator\'s Chain Leggings'),
|
|
(34216, 41286, 0, 0, 0, 1, 1, 1, 1, 'Deadly Gladiator\'s Kodohide Gloves'),
|
|
(34216, 41292, 0, 0, 0, 1, 1, 1, 1, 'Deadly Gladiator\'s Wyrmhide Gloves'),
|
|
(34216, 41297, 0, 0, 0, 1, 1, 1, 1, 'Deadly Gladiator\'s Kodohide Legguards'),
|
|
(34216, 41303, 0, 0, 0, 1, 1, 1, 1, 'Deadly Gladiator\'s Wyrmhide Legguards'),
|
|
(34216, 41309, 0, 0, 0, 1, 1, 1, 1, 'Deadly Gladiator\'s Kodohide Robes'),
|
|
(34216, 41315, 0, 0, 0, 1, 1, 1, 1, 'Deadly Gladiator\'s Wyrmhide Robes'),
|
|
(34216, 41649, 0, 0, 0, 1, 1, 1, 1, 'Deadly Gladiator\'s Leather Tunic'),
|
|
(34216, 41654, 0, 0, 0, 1, 1, 1, 1, 'Deadly Gladiator\'s Leather Legguards'),
|
|
(34216, 41660, 0, 0, 0, 1, 1, 1, 1, 'Deadly Gladiator\'s Dragonhide Robes'),
|
|
(34216, 41666, 0, 0, 0, 1, 1, 1, 1, 'Deadly Gladiator\'s Dragonhide Legguards'),
|
|
(34216, 41766, 0, 0, 0, 1, 1, 1, 1, 'Deadly Gladiator\'s Leather Gloves'),
|
|
(34216, 41772, 0, 0, 0, 1, 1, 1, 1, 'Deadly Gladiator\'s Dragonhide Gloves'),
|
|
(34216, 41858, 0, 0, 0, 1, 1, 1, 1, 'Deadly Gladiator\'s Mooncloth Robe'),
|
|
(34216, 41863, 0, 0, 0, 1, 1, 1, 1, 'Deadly Gladiator\'s Mooncloth Leggings'),
|
|
(34216, 41873, 0, 0, 0, 1, 1, 1, 1, 'Deadly Gladiator\'s Mooncloth Gloves'),
|
|
(34216, 41920, 0, 0, 0, 1, 1, 1, 1, 'Deadly Gladiator\'s Satin Robe'),
|
|
(34216, 41926, 0, 0, 0, 1, 1, 1, 1, 'Deadly Gladiator\'s Satin Leggings'),
|
|
(34216, 41939, 0, 0, 0, 1, 1, 1, 1, 'Deadly Gladiator\'s Satin Gloves'),
|
|
(34216, 41951, 0, 0, 0, 1, 1, 1, 1, 'Deadly Gladiator\'s Silk Raiment'),
|
|
(34216, 41958, 0, 0, 0, 1, 1, 1, 1, 'Deadly Gladiator\'s Silk Trousers'),
|
|
(34216, 41970, 0, 0, 0, 1, 1, 1, 1, 'Deadly Gladiator\'s Silk Handguards'),
|
|
(34216, 41997, 0, 0, 0, 1, 1, 1, 1, 'Deadly Gladiator\'s Felweave Raiment'),
|
|
(34216, 42004, 0, 0, 0, 1, 1, 1, 1, 'Deadly Gladiator\'s Felweave Trousers'),
|
|
(34216, 42016, 0, 0, 0, 1, 1, 1, 1, 'Deadly Gladiator\'s Felweave Handguards'),
|
|
(34230, 50339, 0, 0, 0, 1, 1, 1, 1, 'Sliver of Pure Ice'),
|
|
(34230, 50759, 0, 0, 0, 1, 1, 1, 1, 'Bone Warden\'s Splitter'),
|
|
(34230, 50760, 0, 0, 0, 1, 1, 1, 1, 'Bonebreaker Scepter'),
|
|
(34230, 50761, 0, 0, 0, 1, 1, 1, 1, 'Citadel Enforcer\'s Claymore'),
|
|
(34230, 50762, 0, 0, 0, 1, 1, 1, 1, 'Linked Scourge Vertebrae'),
|
|
(34230, 50763, 0, 0, 0, 1, 1, 1, 1, 'Marrowgar\'s Scratching Choker'),
|
|
(34230, 50764, 0, 0, 0, 1, 1, 1, 1, 'Shawl of Nerubian Silk'),
|
|
(34230, 50771, 0, 0, 0, 1, 1, 1, 1, 'Frost Needle'),
|
|
(34230, 50772, 0, 0, 0, 1, 1, 1, 1, 'Ancient Skeletal Boots'),
|
|
(34230, 50773, 0, 0, 0, 1, 1, 1, 1, 'Cord of the Patronizing Practitioner'),
|
|
(34230, 50774, 0, 0, 0, 1, 1, 1, 1, 'Coldwraith Bracers'),
|
|
(34230, 50775, 0, 0, 0, 1, 1, 1, 1, 'Corrupted Silverplate Leggings'),
|
|
(34231, 50342, 0, 0, 0, 1, 1, 1, 1, 'Whispering Fanged Skull'),
|
|
(34231, 50776, 0, 0, 0, 1, 1, 1, 1, 'Njorndar Bone Bow'),
|
|
(34231, 50777, 0, 0, 0, 1, 1, 1, 1, 'Handgrips of Frost and Sleet'),
|
|
(34231, 50778, 0, 0, 0, 1, 1, 1, 1, 'Soulthief\'s Braided Belt'),
|
|
(34231, 50779, 0, 0, 0, 1, 1, 1, 1, 'Deathspeaker Zealot\'s Helm'),
|
|
(34231, 50780, 0, 0, 0, 1, 1, 1, 1, 'Chestguard of the Frigid Noose'),
|
|
(34231, 50781, 0, 0, 0, 1, 1, 1, 1, 'Scourgelord\'s Baton'),
|
|
(34231, 50782, 0, 0, 0, 1, 1, 1, 1, 'Sister\'s Handshrouds'),
|
|
(34231, 50783, 0, 0, 0, 1, 1, 1, 1, 'Boots of the Frozen Seed'),
|
|
(34231, 50784, 0, 0, 0, 1, 1, 1, 1, 'Deathspeaker Disciple\'s Belt'),
|
|
(34231, 50785, 0, 0, 0, 1, 1, 1, 1, 'Bracers of Dark Blessings'),
|
|
(34231, 50786, 0, 0, 0, 1, 1, 1, 1, 'Ghoul Commander\'s Cuirass'),
|
|
(34232, 50810, 0, 0, 0, 1, 1, 1, 1, 'Gutbuster'),
|
|
(34232, 50811, 0, 0, 0, 1, 1, 1, 1, 'Festering Fingerguards'),
|
|
(34232, 50812, 0, 0, 0, 1, 1, 1, 1, 'Taldron\'s Long Neglected Boots'),
|
|
(34232, 50852, 0, 0, 0, 1, 1, 1, 1, 'Precious\'s Putrid Collar'),
|
|
(34232, 50858, 0, 0, 0, 1, 1, 1, 1, 'Plague-Soaked Leather Leggings'),
|
|
(34232, 50859, 0, 0, 0, 1, 1, 1, 1, 'Cloak of Many Skins'),
|
|
(34232, 50966, 0, 0, 0, 1, 1, 1, 1, 'Abracadaver'),
|
|
(34232, 50967, 0, 0, 0, 1, 1, 1, 1, 'Festergut\'s Gaseous Gloves'),
|
|
(34232, 50985, 0, 0, 0, 1, 1, 1, 1, 'Wrists of Septic Shock'),
|
|
(34232, 50986, 0, 0, 0, 1, 1, 1, 1, 'Signet of Putrefaction'),
|
|
(34232, 50988, 0, 0, 0, 1, 1, 1, 1, 'Bloodstained Surgeon\'s Shoulderguards'),
|
|
(34232, 50990, 0, 0, 0, 1, 1, 1, 1, 'Kilt of Untreated Wounds'),
|
|
(34233, 50998, 0, 0, 0, 1, 1, 1, 1, 'Shaft of Glacial Ice'),
|
|
(34233, 50999, 0, 0, 0, 1, 1, 1, 1, 'Gluth\'s Fetching Knife'),
|
|
(34233, 51000, 0, 0, 0, 1, 1, 1, 1, 'Flesh-Shaper\'s Gurney Strap'),
|
|
(34233, 51001, 0, 0, 0, 1, 1, 1, 1, 'Rotface\'s Rupturing Ring'),
|
|
(34233, 51002, 0, 0, 0, 1, 1, 1, 1, 'Taldron\'s Short-Sighted Helm'),
|
|
(34233, 51003, 0, 0, 0, 1, 1, 1, 1, 'Abomination Knuckles'),
|
|
(34233, 51004, 0, 0, 0, 1, 1, 1, 1, 'Lockjaw'),
|
|
(34233, 51005, 0, 0, 0, 1, 1, 1, 1, 'Gloves of Broken Fingers'),
|
|
(34233, 51006, 0, 0, 0, 1, 1, 1, 1, 'Shuffling Shoes'),
|
|
(34233, 51007, 0, 0, 0, 1, 1, 1, 1, 'Ether-Soaked Bracers'),
|
|
(34233, 51008, 0, 0, 0, 1, 1, 1, 1, 'Choker of Filthy Diamonds'),
|
|
(34233, 51009, 0, 0, 0, 1, 1, 1, 1, 'Chestguard of the Failed Experiment'),
|
|
(34234, 50341, 0, 0, 0, 1, 1, 1, 1, 'Unidentifiable Organ'),
|
|
(34234, 51010, 0, 0, 0, 1, 1, 1, 1, 'The Facelifter'),
|
|
(34234, 51011, 0, 0, 0, 1, 1, 1, 1, 'Flesh-Carving Scalpel'),
|
|
(34234, 51012, 0, 0, 0, 1, 1, 1, 1, 'Infected Choker'),
|
|
(34234, 51013, 0, 0, 0, 1, 1, 1, 1, 'Discarded Bag of Entrails'),
|
|
(34234, 51014, 0, 0, 0, 1, 1, 1, 1, 'Scalpel-Sharpening Shoulderguards'),
|
|
(34234, 51015, 0, 0, 0, 1, 1, 1, 1, 'Shoulderpads of the Morbid Ritual'),
|
|
(34234, 51016, 0, 0, 0, 1, 1, 1, 1, 'Pendant of Split Veins'),
|
|
(34234, 51017, 0, 0, 0, 1, 1, 1, 1, 'Cauterized Cord'),
|
|
(34234, 51018, 0, 0, 0, 1, 1, 1, 1, 'Chestplate of Septic Stitches'),
|
|
(34234, 51019, 0, 0, 0, 1, 1, 1, 1, 'Rippling Flesh Kilt'),
|
|
(34234, 51020, 0, 0, 0, 1, 1, 1, 1, 'Shoulders of Ruinous Senility'),
|
|
(34235, 51021, 0, 0, 0, 1, 1, 1, 1, 'Soulbreaker'),
|
|
(34235, 51022, 0, 0, 0, 1, 1, 1, 1, 'Hersir\'s Greatspear'),
|
|
(34235, 51023, 0, 0, 0, 1, 1, 1, 1, 'Taldaram\'s Soft Slippers'),
|
|
(34235, 51024, 0, 0, 0, 1, 1, 1, 1, 'Thrice Fanged Signet'),
|
|
(34235, 51025, 0, 0, 0, 1, 1, 1, 1, 'Battle-Maiden\'s Legguards'),
|
|
(34235, 51325, 0, 0, 0, 1, 1, 1, 1, 'Blood-Drinker\'s Girdle'),
|
|
(34235, 51326, 0, 0, 0, 1, 1, 1, 1, 'Wand of Ruby Claret'),
|
|
(34235, 51379, 0, 0, 0, 1, 1, 1, 1, 'Bloodsoul Raiment'),
|
|
(34235, 51380, 0, 0, 0, 1, 1, 1, 1, 'Pale Corpse Boots'),
|
|
(34235, 51381, 0, 0, 0, 1, 1, 1, 1, 'Cerise Coiled Ring'),
|
|
(34235, 51382, 0, 0, 0, 1, 1, 1, 1, 'Heartsick Mender\'s Cape'),
|
|
(34235, 51383, 0, 0, 0, 1, 1, 1, 1, 'Spaulders of the Blood Princes'),
|
|
(34236, 51384, 0, 0, 0, 1, 1, 1, 1, 'Bloodsipper'),
|
|
(34236, 51385, 0, 0, 0, 1, 1, 1, 1, 'Stakethrower'),
|
|
(34236, 51386, 0, 0, 0, 1, 1, 1, 1, 'Throatrender Handguards'),
|
|
(34236, 51387, 0, 0, 0, 1, 1, 1, 1, 'Seal of the Twilight Queen'),
|
|
(34236, 51548, 0, 0, 0, 1, 1, 1, 1, 'Collar of Haughty Disdain'),
|
|
(34236, 51550, 0, 0, 0, 1, 1, 1, 1, 'Ivory-Inlaid Leggings'),
|
|
(34236, 51551, 0, 0, 0, 1, 1, 1, 1, 'Chestguard of Siphoned Elements'),
|
|
(34236, 51552, 0, 0, 0, 1, 1, 1, 1, 'Shoulderpads of the Searing Kiss'),
|
|
(34236, 51553, 0, 0, 0, 1, 1, 1, 1, 'Lana\'thel\'s Bloody Nail'),
|
|
(34236, 51554, 0, 0, 0, 1, 1, 1, 1, 'Cowl of Malefic Repose'),
|
|
(34236, 51555, 0, 0, 0, 1, 1, 1, 1, 'Tightening Waistband'),
|
|
(34236, 51556, 0, 0, 0, 1, 1, 1, 1, 'Veincrusher Gauntlets'),
|
|
(34237, 51779, 0, 0, 0, 1, 1, 1, 1, 'Rimetooth Pendant'),
|
|
(34237, 51782, 0, 0, 0, 1, 1, 1, 1, 'Etched Dragonbone Girdle'),
|
|
(34237, 51783, 0, 0, 0, 1, 1, 1, 1, 'Vambraces of the Frost Wyrm Queen'),
|
|
(34237, 51784, 0, 0, 0, 1, 1, 1, 1, 'Splintershard'),
|
|
(34237, 51785, 0, 0, 0, 1, 1, 1, 1, 'Wyrmwing Treads'),
|
|
(34237, 51786, 0, 0, 0, 1, 1, 1, 1, 'Legplates of Aetheric Strife'),
|
|
(34237, 51787, 0, 0, 0, 1, 1, 1, 1, 'Scourge Fanged Stompers'),
|
|
(34237, 51788, 0, 0, 0, 1, 1, 1, 1, 'Bleak Coldarra Carver'),
|
|
(34237, 51789, 0, 0, 0, 1, 1, 1, 1, 'Icicle Shapers'),
|
|
(34237, 51790, 0, 0, 0, 1, 1, 1, 1, 'Robes of Azure Downfall'),
|
|
(34237, 51791, 0, 0, 0, 1, 1, 1, 1, 'Lost Pavise of the Blue Flight'),
|
|
(34237, 51792, 0, 0, 0, 1, 1, 1, 1, 'Shoulderguards of Crystalline Bone'),
|
|
(34238, 51795, 0, 0, 0, 1, 1, 1, 1, 'Troggbane, Axe of the Frostborne King'),
|
|
(34238, 51796, 0, 0, 0, 1, 1, 1, 1, 'Warmace of Menethil'),
|
|
(34238, 51797, 0, 0, 0, 1, 1, 1, 1, 'Tainted Twig of Nordrassil'),
|
|
(34238, 51798, 0, 0, 0, 1, 1, 1, 1, 'Valius, Gavel of the Lightbringer'),
|
|
(34238, 51799, 0, 0, 0, 1, 1, 1, 1, 'Halion, Staff of Forgotten Love'),
|
|
(34238, 51800, 0, 0, 0, 1, 1, 1, 1, 'Stormfury, Black Blade of the Betrayer'),
|
|
(34238, 51801, 0, 0, 0, 1, 1, 1, 1, 'Pugius, Fist of Defiance'),
|
|
(34238, 51802, 0, 0, 0, 1, 1, 1, 1, 'Windrunner\'s Heartseeker'),
|
|
(34238, 51803, 0, 0, 0, 1, 1, 1, 1, 'Tel\'thas, Dagger of the Blood King'),
|
|
(34240, 50798, 0, 0, 0, 1, 1, 1, 1, 'Ramaladni\'s Blade of Culling'),
|
|
(34240, 50799, 0, 0, 0, 1, 1, 1, 1, 'Scourge Stranglers'),
|
|
(34240, 50800, 0, 0, 0, 1, 1, 1, 1, 'Hauberk of a Thousand Cuts'),
|
|
(34240, 50801, 0, 0, 0, 1, 1, 1, 1, 'Blade-Scored Carapace'),
|
|
(34240, 50802, 0, 0, 0, 1, 1, 1, 1, 'Gargoyle Spit Bracers'),
|
|
(34240, 50803, 0, 0, 0, 1, 1, 1, 1, 'Saurfang\'s Cold-Forged Band'),
|
|
(34240, 50804, 0, 0, 0, 1, 1, 1, 1, 'Icecrown Spire Sandals'),
|
|
(34240, 50805, 0, 0, 0, 1, 1, 1, 1, 'Mag\'hari Chieftain\'s Staff'),
|
|
(34240, 50806, 0, 0, 0, 1, 1, 1, 1, 'Leggings of Unrelenting Blood'),
|
|
(34240, 50807, 0, 0, 0, 1, 1, 1, 1, 'Thaumaturge\'s Crackling Cowl'),
|
|
(34240, 50808, 0, 0, 0, 1, 1, 1, 1, 'Deathforged Legplates'),
|
|
(34240, 50809, 0, 0, 0, 1, 1, 1, 1, 'Soulcleave Pendant'),
|
|
(34241, 51561, 0, 0, 0, 1, 1, 1, 1, 'Dreamhunter\'s Carbine'),
|
|
(34241, 51562, 0, 0, 0, 1, 1, 1, 1, 'Oxheart'),
|
|
(34241, 51563, 0, 0, 0, 1, 1, 1, 1, 'Taiga Bindings'),
|
|
(34241, 51564, 0, 0, 0, 1, 1, 1, 1, 'Ironrope Belt of Ymirjar'),
|
|
(34241, 51565, 0, 0, 0, 1, 1, 1, 1, 'Skinned Whelp Shoulders'),
|
|
(34241, 51566, 0, 0, 0, 1, 1, 1, 1, 'Legguards of the Twisted Dream'),
|
|
(34241, 51582, 0, 0, 0, 1, 1, 1, 1, 'Sister Svalna\'s Aether Staff'),
|
|
(34241, 51583, 0, 0, 0, 1, 1, 1, 1, 'Stormbringer Gloves'),
|
|
(34241, 51584, 0, 0, 0, 1, 1, 1, 1, 'Lich Wrappings'),
|
|
(34241, 51585, 0, 0, 0, 1, 1, 1, 1, 'Sister Svalna\'s Spangenhelm'),
|
|
(34241, 51586, 0, 0, 0, 1, 1, 1, 1, 'Emerald Saint\'s Spaulders'),
|
|
(34241, 51777, 0, 0, 0, 1, 1, 1, 1, 'Leggings of the Refracted Mind'),
|
|
(34242, 49949, 0, 0, 0, 1, 1, 1, 1, 'Band of the Bone Colossus'),
|
|
(34242, 49950, 0, 0, 0, 1, 1, 1, 1, 'Frostbitten Fur Boots'),
|
|
(34242, 49951, 0, 0, 0, 1, 1, 1, 1, 'Gendarme\'s Cuirass'),
|
|
(34242, 49952, 0, 0, 0, 1, 1, 1, 1, 'Snowserpent Mail Helm'),
|
|
(34242, 49960, 0, 0, 0, 1, 1, 1, 1, 'Bracers of Dark Reckoning'),
|
|
(34242, 49964, 0, 0, 0, 1, 1, 1, 1, 'Legguards of Lost Hope'),
|
|
(34242, 49967, 0, 0, 0, 1, 1, 1, 1, 'Marrowgar\'s Frigid Eye'),
|
|
(34242, 49968, 0, 0, 0, 1, 1, 1, 1, 'Frozen Bonespike'),
|
|
(34242, 49975, 0, 0, 0, 1, 1, 1, 1, 'Bone Sentinel\'s Amulet'),
|
|
(34242, 49976, 0, 0, 0, 1, 1, 1, 1, 'Bulwark of Smouldering Steel'),
|
|
(34242, 49977, 0, 0, 0, 1, 1, 1, 1, 'Loop of the Endless Labyrinth'),
|
|
(34242, 49978, 0, 0, 0, 1, 1, 1, 1, 'Crushing Coldwraith Belt'),
|
|
(34242, 49979, 0, 0, 0, 1, 1, 1, 1, 'Handguards of Winter\'s Respite'),
|
|
(34242, 49980, 0, 0, 0, 1, 1, 1, 1, 'Rusted Bonespike Pauldrons'),
|
|
(34242, 50415, 0, 0, 0, 1, 1, 1, 1, 'Bryntroll, the Bone Arbiter'),
|
|
(34243, 49982, 0, 0, 0, 1, 1, 1, 1, 'Heartpierce'),
|
|
(34243, 49983, 0, 0, 0, 1, 1, 1, 1, 'Blood-Soaked Saronite Stompers'),
|
|
(34243, 49985, 0, 0, 0, 1, 1, 1, 1, 'Juggernaut Band'),
|
|
(34243, 49986, 0, 0, 0, 1, 1, 1, 1, 'Broken Ram Skull Helm'),
|
|
(34243, 49987, 0, 0, 0, 1, 1, 1, 1, 'Cultist\'s Bloodsoaked Spaulders'),
|
|
(34243, 49988, 0, 0, 0, 1, 1, 1, 1, 'Leggings of Northern Lights'),
|
|
(34243, 49989, 0, 0, 0, 1, 1, 1, 1, 'Ahn\'kahar Onyx Neckguard'),
|
|
(34243, 49990, 0, 0, 0, 1, 1, 1, 1, 'Ring of Maddening Whispers'),
|
|
(34243, 49991, 0, 0, 0, 1, 1, 1, 1, 'Shoulders of Mercy Killing'),
|
|
(34243, 49992, 0, 0, 0, 1, 1, 1, 1, 'Nibelung'),
|
|
(34243, 49993, 0, 0, 0, 1, 1, 1, 1, 'Necrophotic Greaves'),
|
|
(34243, 49994, 0, 0, 0, 1, 1, 1, 1, 'The Lady\'s Brittle Bracers'),
|
|
(34243, 49995, 0, 0, 0, 1, 1, 1, 1, 'Fallen Lord\'s Handguards'),
|
|
(34243, 49996, 0, 0, 0, 1, 1, 1, 1, 'Deathwhisper Raiment'),
|
|
(34243, 50034, 0, 0, 0, 1, 1, 1, 1, 'Zod\'s Repeating Longbow'),
|
|
(34244, 50035, 0, 0, 0, 1, 1, 1, 1, 'Black Bruise'),
|
|
(34244, 50036, 0, 0, 0, 1, 1, 1, 1, 'Belt of Broken Bones'),
|
|
(34244, 50037, 0, 0, 0, 1, 1, 1, 1, 'Fleshrending Gauntlets'),
|
|
(34244, 50038, 0, 0, 0, 1, 1, 1, 1, 'Carapace of Forgotten Kings'),
|
|
(34244, 50040, 0, 0, 0, 1, 1, 1, 1, 'Distant Land'),
|
|
(34244, 50041, 0, 0, 0, 1, 1, 1, 1, 'Leather of Stitched Scourge Parts'),
|
|
(34244, 50042, 0, 0, 0, 1, 1, 1, 1, 'Gangrenous Leggings'),
|
|
(34244, 50056, 0, 0, 0, 1, 1, 1, 1, 'Plaguebringer\'s Stained Pants'),
|
|
(34244, 50059, 0, 0, 0, 1, 1, 1, 1, 'Horrific Flesh Epaulets'),
|
|
(34244, 50060, 0, 0, 0, 1, 1, 1, 1, 'Faceplate of the Forgotten'),
|
|
(34244, 50061, 0, 0, 0, 1, 1, 1, 1, 'Holiday\'s Grace'),
|
|
(34244, 50062, 0, 0, 0, 1, 1, 1, 1, 'Plague Scientist\'s Boots'),
|
|
(34244, 50063, 0, 0, 0, 1, 1, 1, 1, 'Lingering Illness'),
|
|
(34244, 50064, 0, 0, 0, 1, 1, 1, 1, 'Unclean Surgical Gloves'),
|
|
(34244, 50413, 0, 0, 0, 1, 1, 1, 1, 'Nerub\'ar Stalker\'s Cord'),
|
|
(34244, 50414, 0, 0, 0, 1, 1, 1, 1, 'Might of Blight'),
|
|
(34245, 50016, 0, 0, 0, 1, 1, 1, 1, 'Rib Spreader'),
|
|
(34245, 50019, 0, 0, 0, 1, 1, 1, 1, 'Winding Sheet'),
|
|
(34245, 50020, 0, 0, 0, 1, 1, 1, 1, 'Raging Behemoth\'s Shoulderplates'),
|
|
(34245, 50021, 0, 0, 0, 1, 1, 1, 1, 'Aldriana\'s Gloves of Secrecy'),
|
|
(34245, 50022, 0, 0, 0, 1, 1, 1, 1, 'Dual-Bladed Pauldrons'),
|
|
(34245, 50023, 0, 0, 0, 1, 1, 1, 1, 'Bile-Encrusted Medallion'),
|
|
(34245, 50024, 0, 0, 0, 1, 1, 1, 1, 'Blightborne Warplate'),
|
|
(34245, 50025, 0, 0, 0, 1, 1, 1, 1, 'Seal of Many Mouths'),
|
|
(34245, 50026, 0, 0, 0, 1, 1, 1, 1, 'Helm of the Elder Moon'),
|
|
(34245, 50027, 0, 0, 0, 1, 1, 1, 1, 'Rot-Resistant Breastplate'),
|
|
(34245, 50028, 0, 0, 0, 1, 1, 1, 1, 'Trauma'),
|
|
(34245, 50030, 0, 0, 0, 1, 1, 1, 1, 'Bloodsunder\'s Bracers'),
|
|
(34245, 50032, 0, 0, 0, 1, 1, 1, 1, 'Death Surgeon\'s Sleeves'),
|
|
(34245, 50033, 0, 0, 0, 1, 1, 1, 1, 'Corpse-Impaling Spike'),
|
|
(34245, 50353, 0, 0, 0, 1, 1, 1, 1, 'Dislodged Foreign Object'),
|
|
(34247, 50065, 0, 0, 0, 1, 1, 1, 1, 'Icecrown Glacial Wall'),
|
|
(34247, 50178, 0, 0, 0, 1, 1, 1, 1, 'Bloodfall'),
|
|
(34247, 50180, 0, 0, 0, 1, 1, 1, 1, 'Lana\'thel\'s Chain of Flagellation'),
|
|
(34247, 50181, 0, 0, 0, 1, 1, 1, 1, 'Dying Light'),
|
|
(34247, 50182, 0, 0, 0, 1, 1, 1, 1, 'Blood Queen\'s Crimson Choker'),
|
|
(34247, 50354, 0, 0, 0, 1, 1, 1, 1, 'Bauble of True Blood'),
|
|
(34248, 49919, 0, 0, 0, 1, 1, 1, 1, 'Cryptmaker'),
|
|
(34248, 50071, 0, 0, 0, 1, 1, 1, 1, 'Treads of the Wasteland'),
|
|
(34248, 50072, 0, 0, 0, 1, 1, 1, 1, 'Landsoul\'s Horned Greathelm'),
|
|
(34248, 50073, 0, 0, 0, 1, 1, 1, 1, 'Geistlord\'s Punishment Sack'),
|
|
(34248, 50074, 0, 0, 0, 1, 1, 1, 1, 'Royal Crimson Cloak'),
|
|
(34248, 50075, 0, 0, 0, 1, 1, 1, 1, 'Taldaram\'s Plated Fists'),
|
|
(34248, 50170, 0, 0, 0, 1, 1, 1, 1, 'Valanar\'s Other Signet Ring'),
|
|
(34248, 50171, 0, 0, 0, 1, 1, 1, 1, 'Shoulders of Frost-Tipped Thorns'),
|
|
(34248, 50172, 0, 0, 0, 1, 1, 1, 1, 'Sanguine Silk Robes'),
|
|
(34248, 50173, 0, 0, 0, 1, 1, 1, 1, 'Shadow Silk Spindle'),
|
|
(34248, 50174, 0, 0, 0, 1, 1, 1, 1, 'Incarnadine Band of Mending'),
|
|
(34248, 50175, 0, 0, 0, 1, 1, 1, 1, 'Crypt Keeper\'s Bracers'),
|
|
(34248, 50176, 0, 0, 0, 1, 1, 1, 1, 'San\'layn Ritualist Gloves'),
|
|
(34248, 50177, 0, 0, 0, 1, 1, 1, 1, 'Mail of Crimson Coins'),
|
|
(34248, 50184, 0, 0, 0, 1, 1, 1, 1, 'Keleseth\'s Seducer'),
|
|
(34249, 50360, 0, 0, 0, 1, 1, 1, 1, 'Phylactery of the Nameless Lich'),
|
|
(34249, 50361, 0, 0, 0, 1, 1, 1, 1, 'Sindragosa\'s Flawless Fang'),
|
|
(34249, 50421, 0, 0, 0, 1, 1, 1, 1, 'Sindragosa\'s Cruel Claw'),
|
|
(34249, 50423, 0, 0, 0, 1, 1, 1, 1, 'Sundial of Eternal Dusk'),
|
|
(34249, 50424, 0, 0, 0, 1, 1, 1, 1, 'Memory of Malygos'),
|
|
(34250, 49981, 0, 0, 0, 1, 1, 1, 1, 'Fal\'inrush, Defender of Quel\'thalas'),
|
|
(34250, 49997, 0, 0, 0, 1, 1, 1, 1, 'Mithrios, Bronzebeard\'s Legacy'),
|
|
(34250, 50012, 0, 0, 0, 1, 1, 1, 1, 'Havoc\'s Call, Blade of Lordaeron Kings'),
|
|
(34250, 50070, 0, 0, 0, 1, 1, 1, 1, 'Glorenzelg, High-Blade of the Silver Hand'),
|
|
(34250, 50425, 0, 0, 0, 1, 1, 1, 1, 'Oathbinder, Charge of the Ranger-General'),
|
|
(34250, 50426, 0, 0, 0, 1, 1, 1, 1, 'Heaven\'s Fall, Kryss of a Thousand Lies'),
|
|
(34250, 50427, 0, 0, 0, 1, 1, 1, 1, 'Bloodsurge, Kel\'Thuzad\'s Blade of Agony'),
|
|
(34250, 50428, 0, 0, 0, 1, 1, 1, 1, 'Royal Scepter of Terenas II'),
|
|
(34250, 50429, 0, 0, 0, 1, 1, 1, 1, 'Archus, Greatstaff of Antonidas'),
|
|
(34251, 49998, 0, 0, 0, 1, 1, 1, 1, 'Shadowvault Slayer\'s Cloak'),
|
|
(34251, 49999, 0, 0, 0, 1, 1, 1, 1, 'Skeleton Lord\'s Circle'),
|
|
(34251, 50000, 0, 0, 0, 1, 1, 1, 1, 'Scourge Hunter\'s Vambraces'),
|
|
(34251, 50001, 0, 0, 0, 1, 1, 1, 1, 'Ikfirus\'s Sack of Wonder'),
|
|
(34251, 50002, 0, 0, 0, 1, 1, 1, 1, 'Polar Bear Claw Bracers'),
|
|
(34251, 50003, 0, 0, 0, 1, 1, 1, 1, 'Boneguard Commander\'s Pauldrons'),
|
|
(34251, 50005, 0, 0, 0, 1, 1, 1, 1, 'Amulet of the Silent Eulogy'),
|
|
(34251, 50006, 0, 0, 0, 1, 1, 1, 1, 'Corp\'rethar Ceremonial Crown'),
|
|
(34251, 50008, 0, 0, 0, 1, 1, 1, 1, 'Ring of Rapid Ascent'),
|
|
(34251, 50009, 0, 0, 0, 1, 1, 1, 1, 'Boots of Unnatural Growth'),
|
|
(34251, 50010, 0, 0, 0, 1, 1, 1, 1, 'Waistband of Righteous Fury'),
|
|
(34251, 50011, 0, 0, 0, 1, 1, 1, 1, 'Gunship Captain\'s Mittens'),
|
|
(34251, 50352, 0, 0, 0, 1, 1, 1, 1, 'Corpse Tongue Coin'),
|
|
(34251, 50359, 0, 0, 0, 1, 1, 1, 1, 'Althor\'s Abacus'),
|
|
(34251, 50411, 0, 0, 0, 1, 1, 1, 1, 'Scourgeborne Waraxe'),
|
|
(34252, 50014, 0, 0, 0, 1, 1, 1, 1, 'Greatcloak of the Turned Champion'),
|
|
(34252, 50015, 0, 0, 0, 1, 1, 1, 1, 'Belt of the Blood Nova'),
|
|
(34252, 50333, 0, 0, 0, 1, 1, 1, 1, 'Toskk\'s Maximized Wristguards'),
|
|
(34252, 50362, 0, 0, 0, 1, 1, 1, 1, 'Deathbringer\'s Will'),
|
|
(34252, 50412, 0, 0, 0, 1, 1, 1, 1, 'Bloodvenom Blade'),
|
|
(34253, 50183, 0, 0, 0, 1, 1, 1, 1, 'Lungbreaker'),
|
|
(34253, 50185, 0, 0, 0, 1, 1, 1, 1, 'Devium\'s Eternally Cold Ring'),
|
|
(34253, 50186, 0, 0, 0, 1, 1, 1, 1, 'Frostbrood Sapphire Ring'),
|
|
(34253, 50187, 0, 0, 0, 1, 1, 1, 1, 'Coldwraith Links'),
|
|
(34253, 50188, 0, 0, 0, 1, 1, 1, 1, 'Anub\'ar Stalker\'s Gloves'),
|
|
(34253, 50190, 0, 0, 0, 1, 1, 1, 1, 'Grinning Skull Greatboots'),
|
|
(34253, 50192, 0, 0, 0, 1, 1, 1, 1, 'Scourge Reaver\'s Legplates'),
|
|
(34253, 50195, 0, 0, 0, 1, 1, 1, 1, 'Noose of Malachite'),
|
|
(34253, 50199, 0, 0, 0, 1, 1, 1, 1, 'Leggings of Dying Candles'),
|
|
(34253, 50202, 0, 0, 0, 1, 1, 1, 1, 'Snowstorm Helm'),
|
|
(34253, 50205, 0, 0, 0, 1, 1, 1, 1, 'Frostbinder\'s Shredded Cape'),
|
|
(34253, 50416, 0, 0, 0, 1, 1, 1, 1, 'Boots of the Funeral March'),
|
|
(34253, 50417, 0, 0, 0, 1, 1, 1, 1, 'Bracers of Eternal Dreaming'),
|
|
(34253, 50418, 0, 0, 0, 1, 1, 1, 1, 'Robe of the Waking Nightmare'),
|
|
(34253, 50472, 0, 0, 0, 1, 1, 1, 1, 'Nightmare Ender'),
|
|
(34254, 50346, 0, 0, 0, 1, 1, 1, 1, 'Sliver of Pure Ice'),
|
|
(34254, 51928, 0, 0, 0, 1, 1, 1, 1, 'Corrupted Silverplate Leggings'),
|
|
(34254, 51929, 0, 0, 0, 1, 1, 1, 1, 'Coldwraith Bracers'),
|
|
(34254, 51930, 0, 0, 0, 1, 1, 1, 1, 'Cord of the Patronizing Practitioner'),
|
|
(34254, 51931, 0, 0, 0, 1, 1, 1, 1, 'Ancient Skeletal Boots'),
|
|
(34254, 51932, 0, 0, 0, 1, 1, 1, 1, 'Frost Needle'),
|
|
(34254, 51933, 0, 0, 0, 1, 1, 1, 1, 'Shawl of Nerubian Silk'),
|
|
(34254, 51934, 0, 0, 0, 1, 1, 1, 1, 'Marrowgar\'s Scratching Choker'),
|
|
(34254, 51935, 0, 0, 0, 1, 1, 1, 1, 'Linked Scourge Vertebrae'),
|
|
(34254, 51936, 0, 0, 0, 1, 1, 1, 1, 'Citadel Enforcer\'s Claymore'),
|
|
(34254, 51937, 0, 0, 0, 1, 1, 1, 1, 'Bonebreaker Scepter'),
|
|
(34254, 51938, 0, 0, 0, 1, 1, 1, 1, 'Bone Warden\'s Splitter'),
|
|
(34255, 50343, 0, 0, 0, 1, 1, 1, 1, 'Whispering Fanged Skull'),
|
|
(34255, 51917, 0, 0, 0, 1, 1, 1, 1, 'Ghoul Commander\'s Cuirass'),
|
|
(34255, 51918, 0, 0, 0, 1, 1, 1, 1, 'Bracers of Dark Blessings'),
|
|
(34255, 51919, 0, 0, 0, 1, 1, 1, 1, 'Deathspeaker Disciple\'s Belt'),
|
|
(34255, 51920, 0, 0, 0, 1, 1, 1, 1, 'Boots of the Frozen Seed'),
|
|
(34255, 51921, 0, 0, 0, 1, 1, 1, 1, 'Sister\'s Handshrouds'),
|
|
(34255, 51922, 0, 0, 0, 1, 1, 1, 1, 'Scourgelord\'s Baton'),
|
|
(34255, 51923, 0, 0, 0, 1, 1, 1, 1, 'Chestguard of the Frigid Noose'),
|
|
(34255, 51924, 0, 0, 0, 1, 1, 1, 1, 'Deathspeaker Zealot\'s Helm'),
|
|
(34255, 51925, 0, 0, 0, 1, 1, 1, 1, 'Soulthief\'s Braided Belt'),
|
|
(34255, 51926, 0, 0, 0, 1, 1, 1, 1, 'Handgrips of Frost and Sleet'),
|
|
(34255, 51927, 0, 0, 0, 1, 1, 1, 1, 'Njorndar Bone Bow'),
|
|
(34256, 51882, 0, 0, 0, 1, 1, 1, 1, 'Kilt of Untreated Wounds'),
|
|
(34256, 51883, 0, 0, 0, 1, 1, 1, 1, 'Bloodstained Surgeon\'s Shoulderguards'),
|
|
(34256, 51884, 0, 0, 0, 1, 1, 1, 1, 'Signet of Putrefaction'),
|
|
(34256, 51885, 0, 0, 0, 1, 1, 1, 1, 'Wrists of Septic Shock'),
|
|
(34256, 51886, 0, 0, 0, 1, 1, 1, 1, 'Festergut\'s Gaseous Gloves'),
|
|
(34256, 51887, 0, 0, 0, 1, 1, 1, 1, 'Abracadaver'),
|
|
(34256, 51888, 0, 0, 0, 1, 1, 1, 1, 'Cloak of Many Skins'),
|
|
(34256, 51889, 0, 0, 0, 1, 1, 1, 1, 'Plague-Soaked Leather Leggings'),
|
|
(34256, 51890, 0, 0, 0, 1, 1, 1, 1, 'Precious\'s Putrid Collar'),
|
|
(34256, 51891, 0, 0, 0, 1, 1, 1, 1, 'Taldron\'s Long Neglected Boots'),
|
|
(34256, 51892, 0, 0, 0, 1, 1, 1, 1, 'Festering Fingerguards'),
|
|
(34256, 51893, 0, 0, 0, 1, 1, 1, 1, 'Gutbuster'),
|
|
(34257, 51870, 0, 0, 0, 1, 1, 1, 1, 'Chestguard of the Failed Experiment'),
|
|
(34257, 51871, 0, 0, 0, 1, 1, 1, 1, 'Choker of Filthy Diamonds'),
|
|
(34257, 51872, 0, 0, 0, 1, 1, 1, 1, 'Ether-Soaked Bracers'),
|
|
(34257, 51873, 0, 0, 0, 1, 1, 1, 1, 'Shuffling Shoes'),
|
|
(34257, 51874, 0, 0, 0, 1, 1, 1, 1, 'Gloves of Broken Fingers'),
|
|
(34257, 51875, 0, 0, 0, 1, 1, 1, 1, 'Lockjaw'),
|
|
(34257, 51876, 0, 0, 0, 1, 1, 1, 1, 'Abomination Knuckles'),
|
|
(34257, 51877, 0, 0, 0, 1, 1, 1, 1, 'Taldron\'s Short-Sighted Helm'),
|
|
(34257, 51878, 0, 0, 0, 1, 1, 1, 1, 'Rotface\'s Rupturing Ring'),
|
|
(34257, 51879, 0, 0, 0, 1, 1, 1, 1, 'Flesh-Shaper\'s Gurney Strap'),
|
|
(34257, 51880, 0, 0, 0, 1, 1, 1, 1, 'Gluth\'s Fetching Knife'),
|
|
(34257, 51881, 0, 0, 0, 1, 1, 1, 1, 'Shaft of Glacial Ice'),
|
|
(34258, 50344, 0, 0, 0, 1, 1, 1, 1, 'Unidentifiable Organ'),
|
|
(34258, 51859, 0, 0, 0, 1, 1, 1, 1, 'Shoulders of Ruinous Senility'),
|
|
(34258, 51860, 0, 0, 0, 1, 1, 1, 1, 'Rippling Flesh Kilt'),
|
|
(34258, 51861, 0, 0, 0, 1, 1, 1, 1, 'Chestplate of Septic Stitches'),
|
|
(34258, 51862, 0, 0, 0, 1, 1, 1, 1, 'Cauterized Cord'),
|
|
(34258, 51863, 0, 0, 0, 1, 1, 1, 1, 'Pendant of Split Veins'),
|
|
(34258, 51864, 0, 0, 0, 1, 1, 1, 1, 'Shoulderpads of the Morbid Ritual'),
|
|
(34258, 51865, 0, 0, 0, 1, 1, 1, 1, 'Scalpel-Sharpening Shoulderguards'),
|
|
(34258, 51866, 0, 0, 0, 1, 1, 1, 1, 'Discarded Bag of Entrails'),
|
|
(34258, 51867, 0, 0, 0, 1, 1, 1, 1, 'Infected Choker'),
|
|
(34258, 51868, 0, 0, 0, 1, 1, 1, 1, 'Flesh-Carving Scalpel'),
|
|
(34258, 51869, 0, 0, 0, 1, 1, 1, 1, 'The Facelifter'),
|
|
(34259, 51847, 0, 0, 0, 1, 1, 1, 1, 'Spaulders of the Blood Princes'),
|
|
(34259, 51848, 0, 0, 0, 1, 1, 1, 1, 'Heartsick Mender\'s Cape'),
|
|
(34259, 51849, 0, 0, 0, 1, 1, 1, 1, 'Cerise Coiled Ring'),
|
|
(34259, 51850, 0, 0, 0, 1, 1, 1, 1, 'Pale Corpse Boots'),
|
|
(34259, 51851, 0, 0, 0, 1, 1, 1, 1, 'Bloodsoul Raiment'),
|
|
(34259, 51852, 0, 0, 0, 1, 1, 1, 1, 'Wand of Ruby Claret'),
|
|
(34259, 51853, 0, 0, 0, 1, 1, 1, 1, 'Blood-Drinker\'s Girdle'),
|
|
(34259, 51854, 0, 0, 0, 1, 1, 1, 1, 'Battle-Maiden\'s Legguards'),
|
|
(34259, 51855, 0, 0, 0, 1, 1, 1, 1, 'Thrice Fanged Signet'),
|
|
(34259, 51856, 0, 0, 0, 1, 1, 1, 1, 'Taldaram\'s Soft Slippers'),
|
|
(34259, 51857, 0, 0, 0, 1, 1, 1, 1, 'Hersir\'s Greatspear'),
|
|
(34259, 51858, 0, 0, 0, 1, 1, 1, 1, 'Soulbreaker'),
|
|
(34260, 51835, 0, 0, 0, 1, 1, 1, 1, 'Veincrusher Gauntlets'),
|
|
(34260, 51836, 0, 0, 0, 1, 1, 1, 1, 'Tightening Waistband'),
|
|
(34260, 51837, 0, 0, 0, 1, 1, 1, 1, 'Cowl of Malefic Repose'),
|
|
(34260, 51838, 0, 0, 0, 1, 1, 1, 1, 'Lana\'thel\'s Bloody Nail'),
|
|
(34260, 51839, 0, 0, 0, 1, 1, 1, 1, 'Shoulderpads of the Searing Kiss'),
|
|
(34260, 51840, 0, 0, 0, 1, 1, 1, 1, 'Chestguard of Siphoned Elements'),
|
|
(34260, 51841, 0, 0, 0, 1, 1, 1, 1, 'Ivory-Inlaid Leggings'),
|
|
(34260, 51842, 0, 0, 0, 1, 1, 1, 1, 'Collar of Haughty Disdain'),
|
|
(34260, 51843, 0, 0, 0, 1, 1, 1, 1, 'Seal of the Twilight Queen'),
|
|
(34260, 51844, 0, 0, 0, 1, 1, 1, 1, 'Throatrender Handguards'),
|
|
(34260, 51845, 0, 0, 0, 1, 1, 1, 1, 'Stakethrower'),
|
|
(34260, 51846, 0, 0, 0, 1, 1, 1, 1, 'Bloodsipper'),
|
|
(34261, 51811, 0, 0, 0, 1, 1, 1, 1, 'Shoulderguards of Crystalline Bone'),
|
|
(34261, 51812, 0, 0, 0, 1, 1, 1, 1, 'Lost Pavise of the Blue Flight'),
|
|
(34261, 51813, 0, 0, 0, 1, 1, 1, 1, 'Robes of Azure Downfall'),
|
|
(34261, 51814, 0, 0, 0, 1, 1, 1, 1, 'Icicle Shapers'),
|
|
(34261, 51815, 0, 0, 0, 1, 1, 1, 1, 'Bleak Coldarra Carver'),
|
|
(34261, 51816, 0, 0, 0, 1, 1, 1, 1, 'Scourge Fanged Stompers'),
|
|
(34261, 51817, 0, 0, 0, 1, 1, 1, 1, 'Legplates of Aetheric Strife'),
|
|
(34261, 51818, 0, 0, 0, 1, 1, 1, 1, 'Wyrmwing Treads'),
|
|
(34261, 51819, 0, 0, 0, 1, 1, 1, 1, 'Splintershard'),
|
|
(34261, 51820, 0, 0, 0, 1, 1, 1, 1, 'Vambraces of the Frost Wyrm Queen'),
|
|
(34261, 51821, 0, 0, 0, 1, 1, 1, 1, 'Etched Dragonbone Girdle'),
|
|
(34261, 51822, 0, 0, 0, 1, 1, 1, 1, 'Rimetooth Pendant'),
|
|
(34262, 51939, 0, 0, 0, 1, 1, 1, 1, 'Tel\'thas, Dagger of the Blood King'),
|
|
(34262, 51940, 0, 0, 0, 1, 1, 1, 1, 'Windrunner\'s Heartseeker'),
|
|
(34262, 51941, 0, 0, 0, 1, 1, 1, 1, 'Pugius, Fist of Defiance'),
|
|
(34262, 51942, 0, 0, 0, 1, 1, 1, 1, 'Stormfury, Black Blade of the Betrayer'),
|
|
(34262, 51943, 0, 0, 0, 1, 1, 1, 1, 'Halion, Staff of Forgotten Love'),
|
|
(34262, 51944, 0, 0, 0, 1, 1, 1, 1, 'Valius, Gavel of the Lightbringer'),
|
|
(34262, 51945, 0, 0, 0, 1, 1, 1, 1, 'Tainted Twig of Nordrassil'),
|
|
(34262, 51946, 0, 0, 0, 1, 1, 1, 1, 'Warmace of Menethil'),
|
|
(34262, 51947, 0, 0, 0, 1, 1, 1, 1, 'Troggbane, Axe of the Frostborne King'),
|
|
(34263, 50345, 0, 0, 0, 1, 1, 1, 1, 'Muradin\'s Spyglass'),
|
|
(34263, 51906, 0, 0, 0, 1, 1, 1, 1, 'Ice-Reinforced Vrykul Helm'),
|
|
(34263, 51907, 0, 0, 0, 1, 1, 1, 1, 'Bracers of Pale Illumination'),
|
|
(34263, 51908, 0, 0, 0, 1, 1, 1, 1, 'Cord of Dark Suffering'),
|
|
(34263, 51909, 0, 0, 0, 1, 1, 1, 1, 'Neverending Winter'),
|
|
(34263, 51910, 0, 0, 0, 1, 1, 1, 1, 'Midnight Sun'),
|
|
(34263, 51911, 0, 0, 0, 1, 1, 1, 1, 'Pauldrons of Lost Hope'),
|
|
(34263, 51912, 0, 0, 0, 1, 1, 1, 1, 'Saronite Gargoyle Cloak'),
|
|
(34263, 51913, 0, 0, 0, 1, 1, 1, 1, 'Abomination\'s Bloody Ring'),
|
|
(34263, 51914, 0, 0, 0, 1, 1, 1, 1, 'Icecrown Rampart Bracers'),
|
|
(34263, 51915, 0, 0, 0, 1, 1, 1, 1, 'Bone Drake\'s Enameled Boots'),
|
|
(34263, 51916, 0, 0, 0, 1, 1, 1, 1, 'Frost Giant\'s Cleaver'),
|
|
(34264, 51894, 0, 0, 0, 1, 1, 1, 1, 'Soulcleave Pendant'),
|
|
(34264, 51895, 0, 0, 0, 1, 1, 1, 1, 'Deathforged Legplates'),
|
|
(34264, 51896, 0, 0, 0, 1, 1, 1, 1, 'Thaumaturge\'s Crackling Cowl'),
|
|
(34264, 51897, 0, 0, 0, 1, 1, 1, 1, 'Leggings of Unrelenting Blood'),
|
|
(34264, 51898, 0, 0, 0, 1, 1, 1, 1, 'Mag\'hari Chieftain\'s Staff'),
|
|
(34264, 51899, 0, 0, 0, 1, 1, 1, 1, 'Icecrown Spire Sandals'),
|
|
(34264, 51900, 0, 0, 0, 1, 1, 1, 1, 'Saurfang\'s Cold-Forged Band'),
|
|
(34264, 51901, 0, 0, 0, 1, 1, 1, 1, 'Gargoyle Spit Bracers'),
|
|
(34264, 51902, 0, 0, 0, 1, 1, 1, 1, 'Blade-Scored Carapace'),
|
|
(34264, 51903, 0, 0, 0, 1, 1, 1, 1, 'Hauberk of a Thousand Cuts'),
|
|
(34264, 51904, 0, 0, 0, 1, 1, 1, 1, 'Scourge Stranglers'),
|
|
(34264, 51905, 0, 0, 0, 1, 1, 1, 1, 'Ramaladni\'s Blade of Culling'),
|
|
(34265, 51823, 0, 0, 0, 1, 1, 1, 1, 'Leggings of the Refracted Mind'),
|
|
(34265, 51824, 0, 0, 0, 1, 1, 1, 1, 'Emerald Saint\'s Spaulders'),
|
|
(34265, 51825, 0, 0, 0, 1, 1, 1, 1, 'Sister Svalna\'s Spangenhelm'),
|
|
(34265, 51826, 0, 0, 0, 1, 1, 1, 1, 'Lich Wrappings'),
|
|
(34265, 51827, 0, 0, 0, 1, 1, 1, 1, 'Stormbringer Gloves'),
|
|
(34265, 51828, 0, 0, 0, 1, 1, 1, 1, 'Sister Svalna\'s Aether Staff'),
|
|
(34265, 51829, 0, 0, 0, 1, 1, 1, 1, 'Legguards of the Twisted Dream'),
|
|
(34265, 51830, 0, 0, 0, 1, 1, 1, 1, 'Skinned Whelp Shoulders'),
|
|
(34265, 51831, 0, 0, 0, 1, 1, 1, 1, 'Ironrope Belt of Ymirjar'),
|
|
(34265, 51832, 0, 0, 0, 1, 1, 1, 1, 'Taiga Bindings'),
|
|
(34265, 51833, 0, 0, 0, 1, 1, 1, 1, 'Oxheart'),
|
|
(34265, 51834, 0, 0, 0, 1, 1, 1, 1, 'Dreamhunter\'s Carbine'),
|
|
(34266, 50604, 0, 0, 0, 1, 1, 1, 1, 'Band of the Bone Colossus'),
|
|
(34266, 50605, 0, 0, 0, 1, 1, 1, 1, 'Snowserpent Mail Helm'),
|
|
(34266, 50606, 0, 0, 0, 1, 1, 1, 1, 'Gendarme\'s Cuirass'),
|
|
(34266, 50607, 0, 0, 0, 1, 1, 1, 1, 'Frostbitten Fur Boots'),
|
|
(34266, 50608, 0, 0, 0, 1, 1, 1, 1, 'Frozen Bonespike'),
|
|
(34266, 50609, 0, 0, 0, 1, 1, 1, 1, 'Bone Sentinel\'s Amulet'),
|
|
(34266, 50610, 0, 0, 0, 1, 1, 1, 1, 'Marrowgar\'s Frigid Eye'),
|
|
(34266, 50611, 0, 0, 0, 1, 1, 1, 1, 'Bracers of Dark Reckoning'),
|
|
(34266, 50612, 0, 0, 0, 1, 1, 1, 1, 'Legguards of Lost Hope'),
|
|
(34266, 50613, 0, 0, 0, 1, 1, 1, 1, 'Crushing Coldwraith Belt'),
|
|
(34266, 50614, 0, 0, 0, 1, 1, 1, 1, 'Loop of the Endless Labyrinth'),
|
|
(34266, 50615, 0, 0, 0, 1, 1, 1, 1, 'Handguards of Winter\'s Respite'),
|
|
(34266, 50616, 0, 0, 0, 1, 1, 1, 1, 'Bulwark of Smouldering Steel'),
|
|
(34266, 50617, 0, 0, 0, 1, 1, 1, 1, 'Rusted Bonespike Pauldrons'),
|
|
(34266, 50709, 0, 0, 0, 1, 1, 1, 1, 'Bryntroll, the Bone Arbiter'),
|
|
(34267, 50638, 0, 0, 0, 1, 1, 1, 1, 'Zod\'s Repeating Longbow'),
|
|
(34267, 50639, 0, 0, 0, 1, 1, 1, 1, 'Blood-Soaked Saronite Stompers'),
|
|
(34267, 50640, 0, 0, 0, 1, 1, 1, 1, 'Broken Ram Skull Helm'),
|
|
(34267, 50641, 0, 0, 0, 1, 1, 1, 1, 'Heartpierce'),
|
|
(34267, 50642, 0, 0, 0, 1, 1, 1, 1, 'Juggernaut Band'),
|
|
(34267, 50643, 0, 0, 0, 1, 1, 1, 1, 'Shoulders of Mercy Killing'),
|
|
(34267, 50644, 0, 0, 0, 1, 1, 1, 1, 'Ring of Maddening Whispers'),
|
|
(34267, 50645, 0, 0, 0, 1, 1, 1, 1, 'Leggings of Northern Lights'),
|
|
(34267, 50646, 0, 0, 0, 1, 1, 1, 1, 'Cultist\'s Bloodsoaked Spaulders'),
|
|
(34267, 50647, 0, 0, 0, 1, 1, 1, 1, 'Ahn\'kahar Onyx Neckguard'),
|
|
(34267, 50648, 0, 0, 0, 1, 1, 1, 1, 'Nibelung'),
|
|
(34267, 50649, 0, 0, 0, 1, 1, 1, 1, 'Deathwhisper Raiment'),
|
|
(34267, 50650, 0, 0, 0, 1, 1, 1, 1, 'Fallen Lord\'s Handguards'),
|
|
(34267, 50651, 0, 0, 0, 1, 1, 1, 1, 'The Lady\'s Brittle Bracers'),
|
|
(34267, 50652, 0, 0, 0, 1, 1, 1, 1, 'Necrophotic Greaves'),
|
|
(34268, 50688, 0, 0, 0, 1, 1, 1, 1, 'Nerub\'ar Stalker\'s Cord'),
|
|
(34268, 50689, 0, 0, 0, 1, 1, 1, 1, 'Carapace of Forgotten Kings'),
|
|
(34268, 50690, 0, 0, 0, 1, 1, 1, 1, 'Fleshrending Gauntlets'),
|
|
(34268, 50691, 0, 0, 0, 1, 1, 1, 1, 'Belt of Broken Bones'),
|
|
(34268, 50692, 0, 0, 0, 1, 1, 1, 1, 'Black Bruise'),
|
|
(34268, 50693, 0, 0, 0, 1, 1, 1, 1, 'Might of Blight'),
|
|
(34268, 50694, 0, 0, 0, 1, 1, 1, 1, 'Plaguebringer\'s Stained Pants'),
|
|
(34268, 50695, 0, 0, 0, 1, 1, 1, 1, 'Distant Land'),
|
|
(34268, 50696, 0, 0, 0, 1, 1, 1, 1, 'Leather of Stitched Scourge Parts'),
|
|
(34268, 50697, 0, 0, 0, 1, 1, 1, 1, 'Gangrenous Leggings'),
|
|
(34268, 50698, 0, 0, 0, 1, 1, 1, 1, 'Horrific Flesh Epaulets'),
|
|
(34268, 50699, 0, 0, 0, 1, 1, 1, 1, 'Plague Scientist\'s Boots'),
|
|
(34268, 50700, 0, 0, 0, 1, 1, 1, 1, 'Holiday\'s Grace'),
|
|
(34268, 50701, 0, 0, 0, 1, 1, 1, 1, 'Faceplate of the Forgotten'),
|
|
(34268, 50702, 0, 0, 0, 1, 1, 1, 1, 'Lingering Illness'),
|
|
(34268, 50703, 0, 0, 0, 1, 1, 1, 1, 'Unclean Surgical Gloves'),
|
|
(34269, 50348, 0, 0, 0, 1, 1, 1, 1, 'Dislodged Foreign Object'),
|
|
(34269, 50673, 0, 0, 0, 1, 1, 1, 1, 'Dual-Bladed Pauldrons'),
|
|
(34269, 50674, 0, 0, 0, 1, 1, 1, 1, 'Raging Behemoth\'s Shoulderplates'),
|
|
(34269, 50675, 0, 0, 0, 1, 1, 1, 1, 'Aldriana\'s Gloves of Secrecy'),
|
|
(34269, 50676, 0, 0, 0, 1, 1, 1, 1, 'Rib Spreader'),
|
|
(34269, 50677, 0, 0, 0, 1, 1, 1, 1, 'Winding Sheet'),
|
|
(34269, 50678, 0, 0, 0, 1, 1, 1, 1, 'Seal of Many Mouths'),
|
|
(34269, 50679, 0, 0, 0, 1, 1, 1, 1, 'Helm of the Elder Moon'),
|
|
(34269, 50680, 0, 0, 0, 1, 1, 1, 1, 'Rot-Resistant Breastplate'),
|
|
(34269, 50681, 0, 0, 0, 1, 1, 1, 1, 'Blightborne Warplate'),
|
|
(34269, 50682, 0, 0, 0, 1, 1, 1, 1, 'Bile-Encrusted Medallion'),
|
|
(34269, 50684, 0, 0, 0, 1, 1, 1, 1, 'Corpse-Impaling Spike'),
|
|
(34269, 50685, 0, 0, 0, 1, 1, 1, 1, 'Trauma'),
|
|
(34269, 50686, 0, 0, 0, 1, 1, 1, 1, 'Death Surgeon\'s Sleeves'),
|
|
(34269, 50687, 0, 0, 0, 1, 1, 1, 1, 'Bloodsunder\'s Bracers'),
|
|
(34271, 50603, 0, 0, 0, 1, 1, 1, 1, 'Cryptmaker'),
|
|
(34271, 50710, 0, 0, 0, 1, 1, 1, 1, 'Keleseth\'s Seducer'),
|
|
(34271, 50711, 0, 0, 0, 1, 1, 1, 1, 'Treads of the Wasteland'),
|
|
(34271, 50712, 0, 0, 0, 1, 1, 1, 1, 'Landsoul\'s Horned Greathelm'),
|
|
(34271, 50713, 0, 0, 0, 1, 1, 1, 1, 'Geistlord\'s Punishment Sack'),
|
|
(34271, 50714, 0, 0, 0, 1, 1, 1, 1, 'Valanar\'s Other Signet Ring'),
|
|
(34271, 50715, 0, 0, 0, 1, 1, 1, 1, 'Shoulders of Frost-Tipped Thorns'),
|
|
(34271, 50716, 0, 0, 0, 1, 1, 1, 1, 'Taldaram\'s Plated Fists'),
|
|
(34271, 50717, 0, 0, 0, 1, 1, 1, 1, 'Sanguine Silk Robes'),
|
|
(34271, 50718, 0, 0, 0, 1, 1, 1, 1, 'Royal Crimson Cloak'),
|
|
(34271, 50719, 0, 0, 0, 1, 1, 1, 1, 'Shadow Silk Spindle'),
|
|
(34271, 50720, 0, 0, 0, 1, 1, 1, 1, 'Incarnadine Band of Mending'),
|
|
(34271, 50721, 0, 0, 0, 1, 1, 1, 1, 'Crypt Keeper\'s Bracers'),
|
|
(34271, 50722, 0, 0, 0, 1, 1, 1, 1, 'San\'layn Ritualist Gloves'),
|
|
(34271, 50723, 0, 0, 0, 1, 1, 1, 1, 'Mail of Crimson Coins'),
|
|
(34272, 50724, 0, 0, 0, 1, 1, 1, 1, 'Blood Queen\'s Crimson Choker'),
|
|
(34272, 50725, 0, 0, 0, 1, 1, 1, 1, 'Dying Light'),
|
|
(34272, 50726, 0, 0, 0, 1, 1, 1, 1, 'Bauble of True Blood'),
|
|
(34272, 50727, 0, 0, 0, 1, 1, 1, 1, 'Bloodfall'),
|
|
(34272, 50728, 0, 0, 0, 1, 1, 1, 1, 'Lana\'thel\'s Chain of Flagellation'),
|
|
(34272, 50729, 0, 0, 0, 1, 1, 1, 1, 'Icecrown Glacial Wall'),
|
|
(34273, 50364, 0, 0, 0, 1, 1, 1, 1, 'Sindragosa\'s Flawless Fang'),
|
|
(34273, 50365, 0, 0, 0, 1, 1, 1, 1, 'Phylactery of the Nameless Lich'),
|
|
(34273, 50633, 0, 0, 0, 1, 1, 1, 1, 'Sindragosa\'s Cruel Claw'),
|
|
(34273, 50635, 0, 0, 0, 1, 1, 1, 1, 'Sundial of Eternal Dusk'),
|
|
(34273, 50636, 0, 0, 0, 1, 1, 1, 1, 'Memory of Malygos'),
|
|
(34274, 50730, 0, 0, 0, 1, 1, 1, 1, 'Glorenzelg, High-Blade of the Silver Hand'),
|
|
(34274, 50731, 0, 0, 0, 1, 1, 1, 1, 'Archus, Greatstaff of Antonidas'),
|
|
(34274, 50732, 0, 0, 0, 1, 1, 1, 1, 'Bloodsurge, Kel\'Thuzad\'s Blade of Agony'),
|
|
(34274, 50733, 0, 0, 0, 1, 1, 1, 1, 'Fal\'inrush, Defender of Quel\'thalas'),
|
|
(34274, 50734, 0, 0, 0, 1, 1, 1, 1, 'Royal Scepter of Terenas II'),
|
|
(34274, 50735, 0, 0, 0, 1, 1, 1, 1, 'Oathbinder, Charge of the Ranger-General'),
|
|
(34274, 50736, 0, 0, 0, 1, 1, 1, 1, 'Heaven\'s Fall, Kryss of a Thousand Lies'),
|
|
(34274, 50737, 0, 0, 0, 1, 1, 1, 1, 'Havoc\'s Call, Blade of Lordaeron Kings'),
|
|
(34274, 50738, 0, 0, 0, 1, 1, 1, 1, 'Mithrios, Bronzebeard\'s Legacy'),
|
|
(34275, 50349, 0, 0, 0, 1, 1, 1, 1, 'Corpse Tongue Coin'),
|
|
(34275, 50366, 0, 0, 0, 1, 1, 1, 1, 'Althor\'s Abacus'),
|
|
(34275, 50653, 0, 0, 0, 1, 1, 1, 1, 'Shadowvault Slayer\'s Cloak'),
|
|
(34275, 50654, 0, 0, 0, 1, 1, 1, 1, 'Scourgeborne Waraxe'),
|
|
(34275, 50655, 0, 0, 0, 1, 1, 1, 1, 'Scourge Hunter\'s Vambraces'),
|
|
(34275, 50656, 0, 0, 0, 1, 1, 1, 1, 'Ikfirus\'s Sack of Wonder'),
|
|
(34275, 50657, 0, 0, 0, 1, 1, 1, 1, 'Skeleton Lord\'s Circle'),
|
|
(34275, 50658, 0, 0, 0, 1, 1, 1, 1, 'Amulet of the Silent Eulogy'),
|
|
(34275, 50659, 0, 0, 0, 1, 1, 1, 1, 'Polar Bear Claw Bracers'),
|
|
(34275, 50660, 0, 0, 0, 1, 1, 1, 1, 'Boneguard Commander\'s Pauldrons'),
|
|
(34275, 50661, 0, 0, 0, 1, 1, 1, 1, 'Corp\'rethar Ceremonial Crown'),
|
|
(34275, 50663, 0, 0, 0, 1, 1, 1, 1, 'Gunship Captain\'s Mittens'),
|
|
(34275, 50664, 0, 0, 0, 1, 1, 1, 1, 'Ring of Rapid Ascent'),
|
|
(34275, 50665, 0, 0, 0, 1, 1, 1, 1, 'Boots of Unnatural Growth'),
|
|
(34275, 50667, 0, 0, 0, 1, 1, 1, 1, 'Waistband of Righteous Fury'),
|
|
(34276, 50363, 0, 0, 0, 1, 1, 1, 1, 'Deathbringer\'s Will'),
|
|
(34276, 50668, 0, 0, 0, 1, 1, 1, 1, 'Greatcloak of the Turned Champion'),
|
|
(34276, 50670, 0, 0, 0, 1, 1, 1, 1, 'Toskk\'s Maximized Wristguards'),
|
|
(34276, 50671, 0, 0, 0, 1, 1, 1, 1, 'Belt of the Blood Nova'),
|
|
(34276, 50672, 0, 0, 0, 1, 1, 1, 1, 'Bloodvenom Blade'),
|
|
(34277, 50618, 0, 0, 0, 1, 1, 1, 1, 'Frostbrood Sapphire Ring'),
|
|
(34277, 50619, 0, 0, 0, 1, 1, 1, 1, 'Anub\'ar Stalker\'s Gloves'),
|
|
(34277, 50620, 0, 0, 0, 1, 1, 1, 1, 'Coldwraith Links'),
|
|
(34277, 50621, 0, 0, 0, 1, 1, 1, 1, 'Lungbreaker'),
|
|
(34277, 50622, 0, 0, 0, 1, 1, 1, 1, 'Devium\'s Eternally Cold Ring'),
|
|
(34277, 50623, 0, 0, 0, 1, 1, 1, 1, 'Leggings of Dying Candles'),
|
|
(34277, 50624, 0, 0, 0, 1, 1, 1, 1, 'Scourge Reaver\'s Legplates'),
|
|
(34277, 50625, 0, 0, 0, 1, 1, 1, 1, 'Grinning Skull Greatboots'),
|
|
(34277, 50626, 0, 0, 0, 1, 1, 1, 1, 'Snowstorm Helm'),
|
|
(34277, 50627, 0, 0, 0, 1, 1, 1, 1, 'Noose of Malachite'),
|
|
(34277, 50628, 0, 0, 0, 1, 1, 1, 1, 'Frostbinder\'s Shredded Cape'),
|
|
(34277, 50629, 0, 0, 0, 1, 1, 1, 1, 'Robe of the Waking Nightmare'),
|
|
(34277, 50630, 0, 0, 0, 1, 1, 1, 1, 'Bracers of Eternal Dreaming'),
|
|
(34277, 50631, 0, 0, 0, 1, 1, 1, 1, 'Nightmare Ender'),
|
|
(34277, 50632, 0, 0, 0, 1, 1, 1, 1, 'Boots of the Funeral March'),
|
|
(34278, 52025, 0, 0, 0, 1, 1, 1, 1, 'Vanquisher\'s Mark of Sanctification'),
|
|
(34278, 52026, 0, 0, 0, 1, 1, 1, 1, 'Protector\'s Mark of Sanctification'),
|
|
(34278, 52027, 0, 0, 0, 1, 1, 1, 1, 'Conqueror\'s Mark of Sanctification'),
|
|
(34279, 52028, 0, 0, 0, 1, 1, 1, 1, 'Vanquisher\'s Mark of Sanctification'),
|
|
(34279, 52029, 0, 0, 0, 1, 1, 1, 1, 'Protector\'s Mark of Sanctification'),
|
|
(34279, 52030, 0, 0, 0, 1, 1, 1, 1, 'Conqueror\'s Mark of Sanctification'),
|
|
(34280, 53103, 0, 0, 0, 1, 1, 1, 1, 'Baltharus\' Gift'),
|
|
(34280, 53110, 0, 0, 0, 1, 1, 1, 1, 'Zarithrian\'s Offering'),
|
|
(34280, 53111, 0, 0, 0, 1, 1, 1, 1, 'Scion\'s Treads'),
|
|
(34280, 53112, 0, 0, 0, 1, 1, 1, 1, 'Bracers of the Heir'),
|
|
(34280, 53113, 0, 0, 0, 1, 1, 1, 1, 'Twilight Scale Shoulders'),
|
|
(34280, 53114, 0, 0, 0, 1, 1, 1, 1, 'Gloaming Sark'),
|
|
(34280, 53115, 0, 0, 0, 1, 1, 1, 1, 'Abduction\'s Cover'),
|
|
(34280, 53116, 0, 0, 0, 1, 1, 1, 1, 'Saviana\'s Tribute'),
|
|
(34280, 53117, 0, 0, 0, 1, 1, 1, 1, 'Changeling Gloves'),
|
|
(34280, 53118, 0, 0, 0, 1, 1, 1, 1, 'Misbegotten Belt'),
|
|
(34280, 53119, 0, 0, 0, 1, 1, 1, 1, 'Boots of Divided Being'),
|
|
(34280, 53121, 0, 0, 0, 1, 1, 1, 1, 'Surrogate Belt'),
|
|
(34281, 54556, 0, 0, 0, 1, 1, 1, 1, 'Abduction\'s Cover'),
|
|
(34281, 54557, 0, 0, 0, 1, 1, 1, 1, 'Baltharus\' Gift'),
|
|
(34281, 54558, 0, 0, 0, 1, 1, 1, 1, 'Boots of Divided Being'),
|
|
(34281, 54559, 0, 0, 0, 1, 1, 1, 1, 'Bracers of the Heir'),
|
|
(34281, 54560, 0, 0, 0, 1, 1, 1, 1, 'Changeling Gloves'),
|
|
(34281, 54561, 0, 0, 0, 1, 1, 1, 1, 'Gloaming Sark'),
|
|
(34281, 54562, 0, 0, 0, 1, 1, 1, 1, 'Misbegotten Belt'),
|
|
(34281, 54563, 0, 0, 0, 1, 1, 1, 1, 'Saviana\'s Tribute'),
|
|
(34281, 54564, 0, 0, 0, 1, 1, 1, 1, 'Scion\'s Treads'),
|
|
(34281, 54565, 0, 0, 0, 1, 1, 1, 1, 'Surrogate Belt'),
|
|
(34281, 54566, 0, 0, 0, 1, 1, 1, 1, 'Twilight Scale Shoulders'),
|
|
(34281, 54567, 0, 0, 0, 1, 1, 1, 1, 'Zarithrian\'s Offering'),
|
|
(34282, 53125, 0, 0, 0, 1, 1, 1, 1, 'Apocalypse\'s Advance'),
|
|
(34282, 53126, 0, 0, 0, 1, 1, 1, 1, 'Umbrage Armbands'),
|
|
(34282, 53127, 0, 0, 0, 1, 1, 1, 1, 'Returning Footfalls'),
|
|
(34282, 53129, 0, 0, 0, 1, 1, 1, 1, 'Treads of Impending Resurrection'),
|
|
(34282, 53132, 0, 0, 0, 1, 1, 1, 1, 'Penumbra Pendant'),
|
|
(34282, 53133, 0, 0, 0, 1, 1, 1, 1, 'Signet of Twilight'),
|
|
(34282, 53134, 0, 0, 0, 1, 1, 1, 1, 'Phaseshifter\'s Bracers'),
|
|
(34282, 53486, 0, 0, 0, 1, 1, 1, 1, 'Bracers of Fiery Night'),
|
|
(34282, 53487, 0, 0, 0, 1, 1, 1, 1, 'Foreshadow Steps'),
|
|
(34282, 53488, 0, 0, 0, 1, 1, 1, 1, 'Split Shape Belt'),
|
|
(34282, 53489, 0, 0, 0, 1, 1, 1, 1, 'Cloak of Burning Dusk'),
|
|
(34282, 53490, 0, 0, 0, 1, 1, 1, 1, 'Ring of Phased Regeneration'),
|
|
(34283, 54576, 0, 0, 0, 1, 1, 1, 1, 'Signet of Twilight'),
|
|
(34283, 54577, 0, 0, 0, 1, 1, 1, 1, 'Returning Footfalls'),
|
|
(34283, 54578, 0, 0, 0, 1, 1, 1, 1, 'Apocalypse\'s Advance'),
|
|
(34283, 54579, 0, 0, 0, 1, 1, 1, 1, 'Treads of Impending Resurrection'),
|
|
(34283, 54580, 0, 0, 0, 1, 1, 1, 1, 'Umbrage Armbands'),
|
|
(34283, 54581, 0, 0, 0, 1, 1, 1, 1, 'Penumbra Pendant'),
|
|
(34283, 54582, 0, 0, 0, 1, 1, 1, 1, 'Bracers of Fiery Night'),
|
|
(34283, 54583, 0, 0, 0, 1, 1, 1, 1, 'Cloak of Burning Dusk'),
|
|
(34283, 54584, 0, 0, 0, 1, 1, 1, 1, 'Phaseshifter\'s Bracers'),
|
|
(34283, 54585, 0, 0, 0, 1, 1, 1, 1, 'Ring of Phased Regeneration'),
|
|
(34283, 54586, 0, 0, 0, 1, 1, 1, 1, 'Foreshadow Steps'),
|
|
(34283, 54587, 0, 0, 0, 1, 1, 1, 1, 'Split Shape Belt'),
|
|
(34284, 49074, 0, 0, 0, 1, 1, 1, 1, 'Coren\'s Chromium Coaster'),
|
|
(34284, 49076, 0, 0, 0, 1, 1, 1, 1, 'Mithril Pocketwatch'),
|
|
(34284, 49078, 0, 0, 0, 1, 1, 1, 1, 'Ancient Pickled Egg'),
|
|
(34284, 49080, 0, 0, 0, 1, 1, 1, 1, 'Brawler\'s Souvenir'),
|
|
(34284, 49116, 0, 0, 0, 1, 1, 1, 1, 'Bitter Balebrew Charm'),
|
|
(34284, 49118, 0, 0, 0, 1, 1, 1, 1, 'Bubbling Brightbrew Charm'),
|
|
(34285, 48708, 0, 0, 0, 1, 1, 1, 1, 'Spellstorm Blade'),
|
|
(34285, 48709, 0, 0, 0, 1, 1, 1, 1, 'Heartcrusher'),
|
|
(34285, 48710, 0, 0, 0, 1, 1, 1, 1, 'Paragon\'s Breadth'),
|
|
(34285, 48711, 0, 0, 0, 1, 1, 1, 1, 'Rhok\'shalla, the Shadow\'s Bane'),
|
|
(34285, 48712, 0, 0, 0, 1, 1, 1, 1, 'The Spinebreaker'),
|
|
(34285, 48713, 0, 0, 0, 1, 1, 1, 1, 'Lothar\'s Edge'),
|
|
(34285, 48714, 0, 0, 0, 1, 1, 1, 1, 'Honor of the Fallen'),
|
|
(34286, 48671, 0, 0, 0, 1, 1, 1, 1, 'Drape of Bitter Incantation'),
|
|
(34286, 48672, 0, 0, 0, 1, 1, 1, 1, 'Shawl of Fervent Crusader'),
|
|
(34286, 48673, 0, 0, 0, 1, 1, 1, 1, 'Cloak of the Silver Covenant'),
|
|
(34286, 48674, 0, 0, 0, 1, 1, 1, 1, 'Cloak of the Victorious Combatant'),
|
|
(34286, 48675, 0, 0, 0, 1, 1, 1, 1, 'Cloak of the Unmoving Guardian'),
|
|
(34287, 47506, 0, 0, 0, 1, 1, 1, 1, 'Silverwing Defender'),
|
|
(34287, 47515, 0, 0, 0, 1, 1, 1, 1, 'Decimation'),
|
|
(34287, 47517, 0, 0, 0, 1, 1, 1, 1, 'Blade of the Unbroken Covenant'),
|
|
(34287, 47519, 0, 0, 0, 1, 1, 1, 1, 'Catastrophe'),
|
|
(34287, 47521, 0, 0, 0, 1, 1, 1, 1, 'BRK-1000'),
|
|
(34287, 47524, 0, 0, 0, 1, 1, 1, 1, 'Clemency'),
|
|
(34287, 47526, 0, 0, 0, 1, 1, 1, 1, 'Remorseless'),
|
|
(34288, 47545, 0, 0, 0, 1, 1, 1, 1, 'Vereesa\'s Dexterity'),
|
|
(34288, 47547, 0, 0, 0, 1, 1, 1, 1, 'Varian\'s Furor'),
|
|
(34288, 47549, 0, 0, 0, 1, 1, 1, 1, 'Magni\'s Resolution'),
|
|
(34288, 47552, 0, 0, 0, 1, 1, 1, 1, 'Jaina\'s Radiance'),
|
|
(34288, 47553, 0, 0, 0, 1, 1, 1, 1, 'Bolvar\'s Devotion'),
|
|
(34289, 48693, 0, 0, 0, 1, 1, 1, 1, 'Heartsmasher'),
|
|
(34289, 48695, 0, 0, 0, 1, 1, 1, 1, 'Mor\'kosh, the Bloodreaver'),
|
|
(34289, 48697, 0, 0, 0, 1, 1, 1, 1, 'Frenzystrike Longbow'),
|
|
(34289, 48699, 0, 0, 0, 1, 1, 1, 1, 'Blood and Glory'),
|
|
(34289, 48701, 0, 0, 0, 1, 1, 1, 1, 'Spellharvest'),
|
|
(34289, 48703, 0, 0, 0, 1, 1, 1, 1, 'The Facebreaker'),
|
|
(34289, 48705, 0, 0, 0, 1, 1, 1, 1, 'Attrition'),
|
|
(34290, 48666, 0, 0, 0, 1, 1, 1, 1, 'Drape of the Sunreavers'),
|
|
(34290, 48667, 0, 0, 0, 1, 1, 1, 1, 'Shawl of the Devout Crusader'),
|
|
(34290, 48668, 0, 0, 0, 1, 1, 1, 1, 'Cloak of Serrated Blades'),
|
|
(34290, 48669, 0, 0, 0, 1, 1, 1, 1, 'Cloak of the Triumphant Combatant'),
|
|
(34290, 48670, 0, 0, 0, 1, 1, 1, 1, 'Cloak of the Unflinching Guardian'),
|
|
(34291, 47513, 0, 0, 0, 1, 1, 1, 1, 'Orgrim\'s Deflector'),
|
|
(34291, 47516, 0, 0, 0, 1, 1, 1, 1, 'Fleshrender'),
|
|
(34291, 47518, 0, 0, 0, 1, 1, 1, 1, 'Mortalis'),
|
|
(34291, 47520, 0, 0, 0, 1, 1, 1, 1, 'Grievance'),
|
|
(34291, 47523, 0, 0, 0, 1, 1, 1, 1, 'Fezzik\'s Autocannon'),
|
|
(34291, 47525, 0, 0, 0, 1, 1, 1, 1, 'Sufferance'),
|
|
(34291, 47528, 0, 0, 0, 1, 1, 1, 1, 'Cudgel of the Damned'),
|
|
(34292, 47546, 0, 0, 0, 1, 1, 1, 1, 'Sylvanas\' Cunning'),
|
|
(34292, 47548, 0, 0, 0, 1, 1, 1, 1, 'Garrosh\'s Rage'),
|
|
(34292, 47550, 0, 0, 0, 1, 1, 1, 1, 'Cairne\'s Endurance'),
|
|
(34292, 47551, 0, 0, 0, 1, 1, 1, 1, 'Aethas\' Intensity'),
|
|
(34292, 47554, 0, 0, 0, 1, 1, 1, 1, 'Lady Liadrin\'s Conviction'),
|
|
(34293, 47557, 0, 0, 0, 1, 1, 1, 1, 'Regalia of the Grand Conqueror'),
|
|
(34293, 47558, 0, 0, 0, 1, 1, 1, 1, 'Regalia of the Grand Protector'),
|
|
(34293, 47559, 0, 0, 0, 1, 1, 1, 1, 'Regalia of the Grand Vanquisher'),
|
|
(34294, 47578, 0, 0, 0, 1, 1, 1, 1, 'Carnivorous Band'),
|
|
(34294, 47607, 0, 0, 0, 1, 1, 1, 1, 'Collar of Ceaseless Torment'),
|
|
(34294, 47608, 0, 0, 0, 1, 1, 1, 1, 'Acidmaw Boots'),
|
|
(34294, 47609, 0, 0, 0, 1, 1, 1, 1, 'Gauntlets of Rising Anger'),
|
|
(34294, 47610, 0, 0, 0, 1, 1, 1, 1, 'Armbands of the Northern Stalker'),
|
|
(34294, 47611, 0, 0, 0, 1, 1, 1, 1, 'Dreadscale Armguards'),
|
|
(34294, 47612, 0, 0, 0, 1, 1, 1, 1, 'Rod of Imprisoned Souls'),
|
|
(34294, 47613, 0, 0, 0, 1, 1, 1, 1, 'Shoulderpads of the Glacial Wilds'),
|
|
(34294, 47614, 0, 0, 0, 1, 1, 1, 1, 'Girdle of the Impaler'),
|
|
(34294, 47615, 0, 0, 0, 1, 1, 1, 1, 'Belt of the Frozen Reach'),
|
|
(34294, 47616, 0, 0, 0, 1, 1, 1, 1, 'Shoulderguards of the Spirit Walker'),
|
|
(34294, 47617, 0, 0, 0, 1, 1, 1, 1, 'Icehowl Cinch'),
|
|
(34295, 47618, 0, 0, 0, 1, 1, 1, 1, 'Firestorm Ring'),
|
|
(34295, 47619, 0, 0, 0, 1, 1, 1, 1, 'Amulet of Binding Elements'),
|
|
(34295, 47620, 0, 0, 0, 1, 1, 1, 1, 'Leggings of the Demonic Messenger'),
|
|
(34295, 47621, 0, 0, 0, 1, 1, 1, 1, 'Girdle of the Farseer'),
|
|
(34295, 47663, 0, 0, 0, 1, 1, 1, 1, 'Felspark Bindings'),
|
|
(34295, 47669, 0, 0, 0, 1, 1, 1, 1, 'Belt of the Winter Solstice'),
|
|
(34295, 47676, 0, 0, 0, 1, 1, 1, 1, 'Dirk of the Night Watch'),
|
|
(34295, 47679, 0, 0, 0, 1, 1, 1, 1, 'Endurance of the Infernal'),
|
|
(34295, 47680, 0, 0, 0, 1, 1, 1, 1, 'Armguards of the Nether Lord'),
|
|
(34295, 47683, 0, 0, 0, 1, 1, 1, 1, 'Sentinel Scouting Greaves'),
|
|
(34295, 47703, 0, 0, 0, 1, 1, 1, 1, 'Planestalker Signet'),
|
|
(34295, 47711, 0, 0, 0, 1, 1, 1, 1, 'Girdle of the Nether Champion'),
|
|
(34295, 49235, 0, 0, 0, 1, 1, 1, 1, 'Boots of Tortured Space'),
|
|
(34296, 47700, 0, 0, 0, 1, 1, 1, 1, 'Loop of the Twin Val\'kyr'),
|
|
(34296, 47736, 0, 0, 0, 1, 1, 1, 1, 'Icefall Blade'),
|
|
(34296, 47737, 0, 0, 0, 1, 1, 1, 1, 'Reckoning'),
|
|
(34296, 47738, 0, 0, 0, 1, 1, 1, 1, 'Sabatons of the Lingering Vortex'),
|
|
(34296, 47739, 0, 0, 0, 1, 1, 1, 1, 'Armor of Shifting Shadows'),
|
|
(34296, 47740, 0, 0, 0, 1, 1, 1, 1, 'The Diplomat'),
|
|
(34297, 47742, 0, 0, 0, 1, 1, 1, 1, 'Chalice of Benedictus'),
|
|
(34297, 47743, 0, 0, 0, 1, 1, 1, 1, 'Enlightenment'),
|
|
(34297, 47744, 0, 0, 0, 1, 1, 1, 1, 'Gloves of the Azure Prophet'),
|
|
(34297, 47745, 0, 0, 0, 1, 1, 1, 1, 'Gloves of Looming Shadow'),
|
|
(34297, 47746, 0, 0, 0, 1, 1, 1, 1, 'Helm of the Snowy Grotto'),
|
|
(34297, 47747, 0, 0, 0, 1, 1, 1, 1, 'Darkbane Pendant'),
|
|
(34297, 49231, 0, 0, 0, 1, 1, 1, 1, 'Boots of the Grieving Soul'),
|
|
(34298, 47741, 0, 0, 0, 1, 1, 1, 1, 'Baelgun\'s Heavy Crossbow'),
|
|
(34298, 47808, 0, 0, 0, 1, 1, 1, 1, 'The Lion\'s Maw'),
|
|
(34298, 47809, 0, 0, 0, 1, 1, 1, 1, 'Argent Resolve'),
|
|
(34298, 47810, 0, 0, 0, 1, 1, 1, 1, 'Crusader\'s Glory'),
|
|
(34298, 47811, 0, 0, 0, 1, 1, 1, 1, 'Chestguard of the Warden'),
|
|
(34298, 47812, 0, 0, 0, 1, 1, 1, 1, 'Vigilant Ward'),
|
|
(34298, 47813, 0, 0, 0, 1, 1, 1, 1, 'Helmet of the Crypt Lord'),
|
|
(34298, 47814, 0, 0, 0, 1, 1, 1, 1, 'Westfall Saber'),
|
|
(34298, 47815, 0, 0, 0, 1, 1, 1, 1, 'Cold Convergence'),
|
|
(34298, 47816, 0, 0, 0, 1, 1, 1, 1, 'The Grinder'),
|
|
(34298, 47829, 0, 0, 0, 1, 1, 1, 1, 'Pauldrons of the Timeless Hunter'),
|
|
(34298, 47830, 0, 0, 0, 1, 1, 1, 1, 'Legplates of the Silver Hand'),
|
|
(34298, 47832, 0, 0, 0, 1, 1, 1, 1, 'Spaulders of the Snow Bandit'),
|
|
(34298, 47834, 0, 0, 0, 1, 1, 1, 1, 'Fordragon Blades'),
|
|
(34298, 47835, 0, 0, 0, 1, 1, 1, 1, 'Bulwark of the Royal Guard'),
|
|
(34298, 47836, 0, 0, 0, 1, 1, 1, 1, 'Legplates of the Immortal Spider'),
|
|
(34298, 47837, 0, 0, 0, 1, 1, 1, 1, 'Cinch of the Undying'),
|
|
(34298, 47838, 0, 0, 0, 1, 1, 1, 1, 'Vestments of the Sleepless'),
|
|
(34299, 47717, 0, 0, 0, 1, 1, 1, 1, 'Faceplate of the Silver Champion'),
|
|
(34299, 47718, 0, 0, 0, 1, 1, 1, 1, 'Helm of the Silver Ranger'),
|
|
(34299, 47719, 0, 0, 0, 1, 1, 1, 1, 'Gloves of the Silver Assassin'),
|
|
(34299, 47720, 0, 0, 0, 1, 1, 1, 1, 'Pauldrons of the Silver Defender'),
|
|
(34299, 47721, 0, 0, 0, 1, 1, 1, 1, 'Sandals of the Silver Magus'),
|
|
(34299, 47724, 0, 0, 0, 1, 1, 1, 1, 'Blade of the Silver Disciple'),
|
|
(34299, 47725, 0, 0, 0, 1, 1, 1, 1, 'Victor\'s Call'),
|
|
(34299, 47726, 0, 0, 0, 1, 1, 1, 1, 'Talisman of Volatile Power'),
|
|
(34299, 47727, 0, 0, 0, 1, 1, 1, 1, 'Fervor of the Frostborn'),
|
|
(34299, 47728, 0, 0, 0, 1, 1, 1, 1, 'Binding Light'),
|
|
(34300, 47849, 0, 0, 0, 1, 1, 1, 1, 'Collar of Unending Torment'),
|
|
(34300, 47850, 0, 0, 0, 1, 1, 1, 1, 'Bracers of the Northern Stalker'),
|
|
(34300, 47851, 0, 0, 0, 1, 1, 1, 1, 'Gauntlets of Mounting Anger'),
|
|
(34300, 47852, 0, 0, 0, 1, 1, 1, 1, 'Dreadscale Bracers'),
|
|
(34300, 47853, 0, 0, 0, 1, 1, 1, 1, 'Acidmaw Treads'),
|
|
(34300, 47854, 0, 0, 0, 1, 1, 1, 1, 'Gormok\'s Band'),
|
|
(34300, 47855, 0, 0, 0, 1, 1, 1, 1, 'Icehowl Binding'),
|
|
(34300, 47856, 0, 0, 0, 1, 1, 1, 1, 'Scepter of Imprisoned Souls'),
|
|
(34300, 47857, 0, 0, 0, 1, 1, 1, 1, 'Pauldrons of the Glacial Wilds'),
|
|
(34300, 47858, 0, 0, 0, 1, 1, 1, 1, 'Girdle of the Frozen Reach'),
|
|
(34300, 47859, 0, 0, 0, 1, 1, 1, 1, 'Belt of the Impaler'),
|
|
(34300, 47860, 0, 0, 0, 1, 1, 1, 1, 'Pauldrons of the Spirit Walker'),
|
|
(34301, 47861, 0, 0, 0, 1, 1, 1, 1, 'Felspark Bracers'),
|
|
(34301, 47862, 0, 0, 0, 1, 1, 1, 1, 'Firestorm Band'),
|
|
(34301, 47863, 0, 0, 0, 1, 1, 1, 1, 'Belt of the Bloodhoof Emissary'),
|
|
(34301, 47864, 0, 0, 0, 1, 1, 1, 1, 'Pendant of Binding Elements'),
|
|
(34301, 47865, 0, 0, 0, 1, 1, 1, 1, 'Legwraps of the Demonic Messenger'),
|
|
(34301, 47866, 0, 0, 0, 1, 1, 1, 1, 'Darkspear Ritual Binding'),
|
|
(34301, 47867, 0, 0, 0, 1, 1, 1, 1, 'Warsong Poacher\'s Greaves'),
|
|
(34301, 47868, 0, 0, 0, 1, 1, 1, 1, 'Planestalker Band'),
|
|
(34301, 47869, 0, 0, 0, 1, 1, 1, 1, 'Armplates of the Nether Lord'),
|
|
(34301, 47870, 0, 0, 0, 1, 1, 1, 1, 'Belt of the Nether Champion'),
|
|
(34301, 47871, 0, 0, 0, 1, 1, 1, 1, 'Orcish Deathblade'),
|
|
(34301, 47872, 0, 0, 0, 1, 1, 1, 1, 'Fortitude of the Infernal'),
|
|
(34301, 49236, 0, 0, 0, 1, 1, 1, 1, 'Sabatons of Tortured Space'),
|
|
(34302, 47883, 0, 0, 0, 1, 1, 1, 1, 'Widebarrel Flintlock'),
|
|
(34302, 47884, 0, 0, 0, 1, 1, 1, 1, 'Edge of Agony'),
|
|
(34302, 47885, 0, 0, 0, 1, 1, 1, 1, 'Greaves of the Lingering Vortex'),
|
|
(34302, 47886, 0, 0, 0, 1, 1, 1, 1, 'Nemesis Blade'),
|
|
(34302, 47887, 0, 0, 0, 1, 1, 1, 1, 'Vest of Shifting Shadows'),
|
|
(34302, 47888, 0, 0, 0, 1, 1, 1, 1, 'Band of the Twin Val\'kyr'),
|
|
(34303, 47889, 0, 0, 0, 1, 1, 1, 1, 'Looming Shadow Wraps'),
|
|
(34303, 47890, 0, 0, 0, 1, 1, 1, 1, 'Darkbane Amulet'),
|
|
(34303, 47891, 0, 0, 0, 1, 1, 1, 1, 'Helm of the High Mesa'),
|
|
(34303, 47892, 0, 0, 0, 1, 1, 1, 1, 'Illumination'),
|
|
(34303, 47893, 0, 0, 0, 1, 1, 1, 1, 'Sen\'jin Ritualist Gloves'),
|
|
(34303, 47913, 0, 0, 0, 1, 1, 1, 1, 'Lightbane Focus'),
|
|
(34303, 49232, 0, 0, 0, 1, 1, 1, 1, 'Sandals of the Grieving Soul'),
|
|
(34304, 47894, 0, 0, 0, 1, 1, 1, 1, 'Mace of the Earthborn Chieftain'),
|
|
(34304, 47895, 0, 0, 0, 1, 1, 1, 1, 'Pride of the Kor\'kron'),
|
|
(34304, 47896, 0, 0, 0, 1, 1, 1, 1, 'Stoneskin Chestplate'),
|
|
(34304, 47897, 0, 0, 0, 1, 1, 1, 1, 'Helm of the Crypt Lord'),
|
|
(34304, 47898, 0, 0, 0, 1, 1, 1, 1, 'Frostblade Hatchet'),
|
|
(34304, 47899, 0, 0, 0, 1, 1, 1, 1, 'Ardent Guard'),
|
|
(34304, 47900, 0, 0, 0, 1, 1, 1, 1, 'Perdition'),
|
|
(34304, 47901, 0, 0, 0, 1, 1, 1, 1, 'Pauldrons of the Shadow Hunter'),
|
|
(34304, 47902, 0, 0, 0, 1, 1, 1, 1, 'Legplates of Redeemed Blood'),
|
|
(34304, 47903, 0, 0, 0, 1, 1, 1, 1, 'Forsaken Bonecarver'),
|
|
(34304, 47904, 0, 0, 0, 1, 1, 1, 1, 'Shoulderpads of the Snow Bandit'),
|
|
(34304, 47905, 0, 0, 0, 1, 1, 1, 1, 'Blackhorn Bludgeon'),
|
|
(34304, 47906, 0, 0, 0, 1, 1, 1, 1, 'Robes of the Sleepless'),
|
|
(34304, 47907, 0, 0, 0, 1, 1, 1, 1, 'Darkmaw Crossbow'),
|
|
(34304, 47908, 0, 0, 0, 1, 1, 1, 1, 'Sunwalker Legguards'),
|
|
(34304, 47909, 0, 0, 0, 1, 1, 1, 1, 'Belt of the Eternal'),
|
|
(34304, 47910, 0, 0, 0, 1, 1, 1, 1, 'Aegis of the Coliseum'),
|
|
(34304, 47911, 0, 0, 0, 1, 1, 1, 1, 'Anguish'),
|
|
(34305, 47873, 0, 0, 0, 1, 1, 1, 1, 'Sunreaver Magus\' Sandals'),
|
|
(34305, 47874, 0, 0, 0, 1, 1, 1, 1, 'Sunreaver Disciple\'s Blade'),
|
|
(34305, 47875, 0, 0, 0, 1, 1, 1, 1, 'Sunreaver Ranger\'s Helm'),
|
|
(34305, 47876, 0, 0, 0, 1, 1, 1, 1, 'Sunreaver Champion\'s Faceplate'),
|
|
(34305, 47877, 0, 0, 0, 1, 1, 1, 1, 'Sunreaver Defender\'s Pauldrons'),
|
|
(34305, 47878, 0, 0, 0, 1, 1, 1, 1, 'Sunreaver Assassin\'s Gloves'),
|
|
(34305, 47879, 0, 0, 0, 1, 1, 1, 1, 'Fetish of Volatile Power'),
|
|
(34305, 47880, 0, 0, 0, 1, 1, 1, 1, 'Binding Stone'),
|
|
(34305, 47881, 0, 0, 0, 1, 1, 1, 1, 'Vengeance of the Forsaken'),
|
|
(34305, 47882, 0, 0, 0, 1, 1, 1, 1, 'Eitrigg\'s Oath'),
|
|
(34306, 47915, 0, 0, 0, 1, 1, 1, 1, 'Collar of Ceaseless Torment'),
|
|
(34306, 47916, 0, 0, 0, 1, 1, 1, 1, 'Armbands of the Northern Stalker'),
|
|
(34306, 47917, 0, 0, 0, 1, 1, 1, 1, 'Gauntlets of Rising Anger'),
|
|
(34306, 47918, 0, 0, 0, 1, 1, 1, 1, 'Dreadscale Armguards'),
|
|
(34306, 47919, 0, 0, 0, 1, 1, 1, 1, 'Acidmaw Boots'),
|
|
(34306, 47920, 0, 0, 0, 1, 1, 1, 1, 'Carnivorous Band'),
|
|
(34306, 47921, 0, 0, 0, 1, 1, 1, 1, 'Icehowl Cinch'),
|
|
(34306, 47922, 0, 0, 0, 1, 1, 1, 1, 'Rod of Imprisoned Souls'),
|
|
(34306, 47923, 0, 0, 0, 1, 1, 1, 1, 'Shoulderpads of the Glacial Wilds'),
|
|
(34306, 47924, 0, 0, 0, 1, 1, 1, 1, 'Belt of the Frozen Reach'),
|
|
(34306, 47925, 0, 0, 0, 1, 1, 1, 1, 'Girdle of the Impaler'),
|
|
(34306, 47926, 0, 0, 0, 1, 1, 1, 1, 'Shoulderguards of the Spirit Walker'),
|
|
(34307, 47927, 0, 0, 0, 1, 1, 1, 1, 'Felspark Bindings'),
|
|
(34307, 47928, 0, 0, 0, 1, 1, 1, 1, 'Firestorm Ring'),
|
|
(34307, 47929, 0, 0, 0, 1, 1, 1, 1, 'Belt of the Winter Solstice'),
|
|
(34307, 47930, 0, 0, 0, 1, 1, 1, 1, 'Amulet of Binding Elements'),
|
|
(34307, 47931, 0, 0, 0, 1, 1, 1, 1, 'Leggings of the Demonic Messenger'),
|
|
(34307, 47932, 0, 0, 0, 1, 1, 1, 1, 'Girdle of the Farseer'),
|
|
(34307, 47933, 0, 0, 0, 1, 1, 1, 1, 'Sentinel Scouting Greaves'),
|
|
(34307, 47934, 0, 0, 0, 1, 1, 1, 1, 'Planestalker Signet'),
|
|
(34307, 47935, 0, 0, 0, 1, 1, 1, 1, 'Armguards of the Nether Lord'),
|
|
(34307, 47937, 0, 0, 0, 1, 1, 1, 1, 'Girdle of the Nether Champion'),
|
|
(34307, 47938, 0, 0, 0, 1, 1, 1, 1, 'Dirk of the Night Watch'),
|
|
(34307, 47939, 0, 0, 0, 1, 1, 1, 1, 'Endurance of the Infernal'),
|
|
(34307, 49238, 0, 0, 0, 1, 1, 1, 1, 'Boots of Tortured Space'),
|
|
(34308, 47950, 0, 0, 0, 1, 1, 1, 1, 'The Diplomat'),
|
|
(34308, 47951, 0, 0, 0, 1, 1, 1, 1, 'Reckoning'),
|
|
(34308, 47952, 0, 0, 0, 1, 1, 1, 1, 'Sabatons of the Lingering Vortex'),
|
|
(34308, 47953, 0, 0, 0, 1, 1, 1, 1, 'Icefall Blade'),
|
|
(34308, 47954, 0, 0, 0, 1, 1, 1, 1, 'Armor of Shifting Shadows'),
|
|
(34308, 47955, 0, 0, 0, 1, 1, 1, 1, 'Loop of the Twin Val\'kyr'),
|
|
(34309, 47956, 0, 0, 0, 1, 1, 1, 1, 'Gloves of Looming Shadow'),
|
|
(34309, 47957, 0, 0, 0, 1, 1, 1, 1, 'Darkbane Pendant'),
|
|
(34309, 47958, 0, 0, 0, 1, 1, 1, 1, 'Chalice of Benedictus'),
|
|
(34309, 47959, 0, 0, 0, 1, 1, 1, 1, 'Helm of the Snowy Grotto'),
|
|
(34309, 47960, 0, 0, 0, 1, 1, 1, 1, 'Enlightenment'),
|
|
(34309, 47961, 0, 0, 0, 1, 1, 1, 1, 'Gloves of the Azure Prophet'),
|
|
(34309, 49234, 0, 0, 0, 1, 1, 1, 1, 'Boots of the Grieving Soul'),
|
|
(34310, 47962, 0, 0, 0, 1, 1, 1, 1, 'Argent Resolve'),
|
|
(34310, 47963, 0, 0, 0, 1, 1, 1, 1, 'Vigilant Ward'),
|
|
(34310, 47964, 0, 0, 0, 1, 1, 1, 1, 'Chestguard of the Warden'),
|
|
(34310, 47965, 0, 0, 0, 1, 1, 1, 1, 'Helmet of the Crypt Lord'),
|
|
(34310, 47966, 0, 0, 0, 1, 1, 1, 1, 'The Lion\'s Maw'),
|
|
(34310, 47967, 0, 0, 0, 1, 1, 1, 1, 'Crusader\'s Glory'),
|
|
(34310, 47968, 0, 0, 0, 1, 1, 1, 1, 'Cold Convergence'),
|
|
(34310, 47969, 0, 0, 0, 1, 1, 1, 1, 'Pauldrons of the Timeless Hunter'),
|
|
(34310, 47970, 0, 0, 0, 1, 1, 1, 1, 'Legplates of the Silver Hand'),
|
|
(34310, 47971, 0, 0, 0, 1, 1, 1, 1, 'Westfall Saber'),
|
|
(34310, 47972, 0, 0, 0, 1, 1, 1, 1, 'Spaulders of the Snow Bandit'),
|
|
(34310, 47973, 0, 0, 0, 1, 1, 1, 1, 'The Grinder'),
|
|
(34310, 47974, 0, 0, 0, 1, 1, 1, 1, 'Vestments of the Sleepless'),
|
|
(34310, 47975, 0, 0, 0, 1, 1, 1, 1, 'Baelgun\'s Heavy Crossbow'),
|
|
(34310, 47976, 0, 0, 0, 1, 1, 1, 1, 'Legplates of the Immortal Spider'),
|
|
(34310, 47977, 0, 0, 0, 1, 1, 1, 1, 'Cinch of the Undying'),
|
|
(34310, 47978, 0, 0, 0, 1, 1, 1, 1, 'Bulwark of the Royal Guard'),
|
|
(34310, 47979, 0, 0, 0, 1, 1, 1, 1, 'Fordragon Blades'),
|
|
(34311, 47940, 0, 0, 0, 1, 1, 1, 1, 'Sandals of the Silver Magus'),
|
|
(34311, 47941, 0, 0, 0, 1, 1, 1, 1, 'Blade of the Silver Disciple'),
|
|
(34311, 47942, 0, 0, 0, 1, 1, 1, 1, 'Helm of the Silver Ranger'),
|
|
(34311, 47943, 0, 0, 0, 1, 1, 1, 1, 'Faceplate of the Silver Champion'),
|
|
(34311, 47944, 0, 0, 0, 1, 1, 1, 1, 'Pauldrons of the Silver Defender'),
|
|
(34311, 47945, 0, 0, 0, 1, 1, 1, 1, 'Gloves of the Silver Assassin'),
|
|
(34311, 47946, 0, 0, 0, 1, 1, 1, 1, 'Talisman of Volatile Power'),
|
|
(34311, 47947, 0, 0, 0, 1, 1, 1, 1, 'Binding Light'),
|
|
(34311, 47948, 0, 0, 0, 1, 1, 1, 1, 'Victor\'s Call'),
|
|
(34311, 47949, 0, 0, 0, 1, 1, 1, 1, 'Fervor of the Frostborn'),
|
|
(34312, 47622, 0, 0, 0, 1, 1, 1, 1, 'Plans: Breastplate of the White Knight'),
|
|
(34312, 47623, 0, 0, 0, 1, 1, 1, 1, 'Plans: Saronite Swordbreakers'),
|
|
(34312, 47624, 0, 0, 0, 1, 1, 1, 1, 'Plans: Titanium Razorplate'),
|
|
(34312, 47625, 0, 0, 0, 1, 1, 1, 1, 'Plans: Titanium Spikeguards'),
|
|
(34312, 47626, 0, 0, 0, 1, 1, 1, 1, 'Plans: Sunforged Breastplate'),
|
|
(34312, 47627, 0, 0, 0, 1, 1, 1, 1, 'Plans: Sunforged Bracers'),
|
|
(34313, 47988, 0, 0, 0, 1, 1, 1, 1, 'Collar of Unending Torment'),
|
|
(34313, 47989, 0, 0, 0, 1, 1, 1, 1, 'Bracers of the Northern Stalker'),
|
|
(34313, 47990, 0, 0, 0, 1, 1, 1, 1, 'Gauntlets of Mounting Anger'),
|
|
(34313, 47991, 0, 0, 0, 1, 1, 1, 1, 'Dreadscale Bracers'),
|
|
(34313, 47992, 0, 0, 0, 1, 1, 1, 1, 'Acidmaw Treads'),
|
|
(34313, 47993, 0, 0, 0, 1, 1, 1, 1, 'Gormok\'s Band'),
|
|
(34313, 47994, 0, 0, 0, 1, 1, 1, 1, 'Icehowl Binding'),
|
|
(34313, 47995, 0, 0, 0, 1, 1, 1, 1, 'Scepter of Imprisoned Souls'),
|
|
(34313, 47996, 0, 0, 0, 1, 1, 1, 1, 'Pauldrons of the Glacial Wilds'),
|
|
(34313, 47997, 0, 0, 0, 1, 1, 1, 1, 'Girdle of the Frozen Reach'),
|
|
(34313, 47998, 0, 0, 0, 1, 1, 1, 1, 'Belt of the Impaler'),
|
|
(34313, 47999, 0, 0, 0, 1, 1, 1, 1, 'Pauldrons of the Spirit Walker'),
|
|
(34314, 48000, 0, 0, 0, 1, 1, 1, 1, 'Felspark Bracers'),
|
|
(34314, 48001, 0, 0, 0, 1, 1, 1, 1, 'Firestorm Band'),
|
|
(34314, 48002, 0, 0, 0, 1, 1, 1, 1, 'Belt of the Bloodhoof Emissary'),
|
|
(34314, 48003, 0, 0, 0, 1, 1, 1, 1, 'Pendant of Binding Elements'),
|
|
(34314, 48004, 0, 0, 0, 1, 1, 1, 1, 'Legwraps of the Demonic Messenger'),
|
|
(34314, 48005, 0, 0, 0, 1, 1, 1, 1, 'Darkspear Ritual Binding'),
|
|
(34314, 48006, 0, 0, 0, 1, 1, 1, 1, 'Warsong Poacher\'s Greaves'),
|
|
(34314, 48007, 0, 0, 0, 1, 1, 1, 1, 'Planestalker Band'),
|
|
(34314, 48008, 0, 0, 0, 1, 1, 1, 1, 'Armplates of the Nether Lord'),
|
|
(34314, 48009, 0, 0, 0, 1, 1, 1, 1, 'Belt of the Nether Champion'),
|
|
(34314, 48010, 0, 0, 0, 1, 1, 1, 1, 'Orcish Deathblade'),
|
|
(34314, 48011, 0, 0, 0, 1, 1, 1, 1, 'Fortitude of the Infernal'),
|
|
(34314, 49237, 0, 0, 0, 1, 1, 1, 1, 'Sabatons of Tortured Space'),
|
|
(34315, 48022, 0, 0, 0, 1, 1, 1, 1, 'Widebarrel Flintlock'),
|
|
(34315, 48023, 0, 0, 0, 1, 1, 1, 1, 'Edge of Agony'),
|
|
(34315, 48024, 0, 0, 0, 1, 1, 1, 1, 'Greaves of the Lingering Vortex'),
|
|
(34315, 48025, 0, 0, 0, 1, 1, 1, 1, 'Nemesis Blade'),
|
|
(34315, 48026, 0, 0, 0, 1, 1, 1, 1, 'Vest of Shifting Shadows'),
|
|
(34315, 48027, 0, 0, 0, 1, 1, 1, 1, 'Band of the Twin Val\'kyr'),
|
|
(34316, 48028, 0, 0, 0, 1, 1, 1, 1, 'Looming Shadow Wraps'),
|
|
(34316, 48030, 0, 0, 0, 1, 1, 1, 1, 'Darkbane Amulet'),
|
|
(34316, 48032, 0, 0, 0, 1, 1, 1, 1, 'Lightbane Focus'),
|
|
(34316, 48034, 0, 0, 0, 1, 1, 1, 1, 'Helm of the High Mesa'),
|
|
(34316, 48036, 0, 0, 0, 1, 1, 1, 1, 'Illumination'),
|
|
(34316, 48038, 0, 0, 0, 1, 1, 1, 1, 'Sen\'jin Ritualist Gloves'),
|
|
(34316, 49233, 0, 0, 0, 1, 1, 1, 1, 'Sandals of the Grieving Soul'),
|
|
(34317, 48039, 0, 0, 0, 1, 1, 1, 1, 'Mace of the Earthborn Chieftain'),
|
|
(34317, 48040, 0, 0, 0, 1, 1, 1, 1, 'Pride of the Kor\'kron'),
|
|
(34317, 48041, 0, 0, 0, 1, 1, 1, 1, 'Stoneskin Chestplate'),
|
|
(34317, 48042, 0, 0, 0, 1, 1, 1, 1, 'Helm of the Crypt Lord'),
|
|
(34317, 48043, 0, 0, 0, 1, 1, 1, 1, 'Frostblade Hatchet'),
|
|
(34317, 48044, 0, 0, 0, 1, 1, 1, 1, 'Ardent Guard'),
|
|
(34317, 48045, 0, 0, 0, 1, 1, 1, 1, 'Perdition'),
|
|
(34317, 48046, 0, 0, 0, 1, 1, 1, 1, 'Pauldrons of the Shadow Hunter'),
|
|
(34317, 48047, 0, 0, 0, 1, 1, 1, 1, 'Legplates of the Redeemed Blood Knight'),
|
|
(34317, 48048, 0, 0, 0, 1, 1, 1, 1, 'Forsaken Bonecarver'),
|
|
(34317, 48049, 0, 0, 0, 1, 1, 1, 1, 'Shoulderpads of the Snow Bandit'),
|
|
(34317, 48050, 0, 0, 0, 1, 1, 1, 1, 'Blackhorn Bludgeon'),
|
|
(34317, 48051, 0, 0, 0, 1, 1, 1, 1, 'Robes of the Sleepless'),
|
|
(34317, 48052, 0, 0, 0, 1, 1, 1, 1, 'Darkmaw Crossbow'),
|
|
(34317, 48053, 0, 0, 0, 1, 1, 1, 1, 'Sunwalker Legguards'),
|
|
(34317, 48054, 0, 0, 0, 1, 1, 1, 1, 'Belt of the Eternal'),
|
|
(34317, 48055, 0, 0, 0, 1, 1, 1, 1, 'Aegis of the Coliseum'),
|
|
(34317, 48056, 0, 0, 0, 1, 1, 1, 1, 'Anguish'),
|
|
(34318, 48012, 0, 0, 0, 1, 1, 1, 1, 'Sunreaver Magus\' Sandals'),
|
|
(34318, 48013, 0, 0, 0, 1, 1, 1, 1, 'Sunreaver Disciple\'s Blade'),
|
|
(34318, 48014, 0, 0, 0, 1, 1, 1, 1, 'Sunreaver Ranger\'s Helm'),
|
|
(34318, 48015, 0, 0, 0, 1, 1, 1, 1, 'Sunreaver Champion\'s Faceplate'),
|
|
(34318, 48016, 0, 0, 0, 1, 1, 1, 1, 'Sunreaver Defender\'s Pauldrons'),
|
|
(34318, 48017, 0, 0, 0, 1, 1, 1, 1, 'Sunreaver Assassin\'s Gloves'),
|
|
(34318, 48018, 0, 0, 0, 1, 1, 1, 1, 'Fetish of Volatile Power'),
|
|
(34318, 48019, 0, 0, 0, 1, 1, 1, 1, 'Binding Stone'),
|
|
(34318, 48020, 0, 0, 0, 1, 1, 1, 1, 'Vengeance of the Forsaken'),
|
|
(34318, 48021, 0, 0, 0, 1, 1, 1, 1, 'Eitrigg\'s Oath'),
|
|
(34319, 47640, 0, 0, 0, 1, 1, 1, 1, 'Plans: Breastplate of the White Knight'),
|
|
(34319, 47641, 0, 0, 0, 1, 1, 1, 1, 'Plans: Saronite Swordbreakers'),
|
|
(34319, 47642, 0, 0, 0, 1, 1, 1, 1, 'Plans: Sunforged Bracers'),
|
|
(34319, 47643, 0, 0, 0, 1, 1, 1, 1, 'Plans: Sunforged Breastplate'),
|
|
(34319, 47644, 0, 0, 0, 1, 1, 1, 1, 'Plans: Titanium Razorplate'),
|
|
(34319, 47645, 0, 0, 0, 1, 1, 1, 1, 'Plans: Titanium Spikeguards'),
|
|
(34320, 46958, 0, 0, 0, 1, 1, 1, 1, 'Steel Bladebreaker'),
|
|
(34320, 46959, 0, 0, 0, 1, 1, 1, 1, 'Band of the Violent Temperment'),
|
|
(34320, 46960, 0, 0, 0, 1, 1, 1, 1, 'Breastplate of Cruel Intent'),
|
|
(34320, 46961, 0, 0, 0, 1, 1, 1, 1, 'Boneshatter Armplates'),
|
|
(34320, 46962, 0, 0, 0, 1, 1, 1, 1, 'Chestplate of the Towering Monstrosity'),
|
|
(34320, 46963, 0, 0, 0, 1, 1, 1, 1, 'Crystal Plated Vanguard'),
|
|
(34320, 46970, 0, 0, 0, 1, 1, 1, 1, 'Drape of the Untamed Predator'),
|
|
(34320, 46972, 0, 0, 0, 1, 1, 1, 1, 'Cord of the Tenebrous Mist'),
|
|
(34320, 46974, 0, 0, 0, 1, 1, 1, 1, 'Leggings of the Broken Beast'),
|
|
(34320, 46976, 0, 0, 0, 1, 1, 1, 1, 'Shawl of the Refreshing Winds'),
|
|
(34320, 46979, 0, 0, 0, 1, 1, 1, 1, 'Blade of Tarasque'),
|
|
(34320, 46985, 0, 0, 0, 1, 1, 1, 1, 'Boots of the Courageous'),
|
|
(34320, 46988, 0, 0, 0, 1, 1, 1, 1, 'Boots of the Unrelenting Storm'),
|
|
(34320, 46990, 0, 0, 0, 1, 1, 1, 1, 'Belt of the Ice Burrower'),
|
|
(34320, 46992, 0, 0, 0, 1, 1, 1, 1, 'Flowing Vestments of Ascent'),
|
|
(34321, 46994, 0, 0, 0, 1, 1, 1, 1, 'Talonstrike'),
|
|
(34321, 46996, 0, 0, 0, 1, 1, 1, 1, 'Lionhead Slasher'),
|
|
(34321, 46997, 0, 0, 0, 1, 1, 1, 1, 'Dawnbreaker Greaves'),
|
|
(34321, 46999, 0, 0, 0, 1, 1, 1, 1, 'Bloodbath Belt'),
|
|
(34321, 47000, 0, 0, 0, 1, 1, 1, 1, 'Cuirass of Calamitous Fate'),
|
|
(34321, 47041, 0, 0, 0, 1, 1, 1, 1, 'Solace of the Defeated'),
|
|
(34321, 47042, 0, 0, 0, 1, 1, 1, 1, 'Pride of the Eredar'),
|
|
(34321, 47043, 0, 0, 0, 1, 1, 1, 1, 'Charge of the Demon Lord'),
|
|
(34321, 47051, 0, 0, 0, 1, 1, 1, 1, 'Leggings of the Soothing Touch'),
|
|
(34321, 47052, 0, 0, 0, 1, 1, 1, 1, 'Legguards of Feverish Dedication'),
|
|
(34321, 47053, 0, 0, 0, 1, 1, 1, 1, 'Symbol of Transgression'),
|
|
(34321, 47055, 0, 0, 0, 1, 1, 1, 1, 'Bracers of the Autumn Willow'),
|
|
(34321, 47056, 0, 0, 0, 1, 1, 1, 1, 'Bracers of Cloudy Omen'),
|
|
(34321, 47057, 0, 0, 0, 1, 1, 1, 1, 'Legplates of Failing Light'),
|
|
(34321, 47223, 0, 0, 0, 1, 1, 1, 1, 'Ring of the Darkmender'),
|
|
(34322, 47104, 0, 0, 0, 1, 1, 1, 1, 'Twin Spike'),
|
|
(34322, 47105, 0, 0, 0, 1, 1, 1, 1, 'The Executioner\'s Malice'),
|
|
(34322, 47106, 0, 0, 0, 1, 1, 1, 1, 'Sabatons of Ruthless Judgment'),
|
|
(34322, 47107, 0, 0, 0, 1, 1, 1, 1, 'Belt of the Merciless Killer'),
|
|
(34322, 47108, 0, 0, 0, 1, 1, 1, 1, 'Bracers of the Shieldmaiden'),
|
|
(34322, 47114, 0, 0, 0, 1, 1, 1, 1, 'Lupine Longstaff'),
|
|
(34322, 47115, 0, 0, 0, 1, 1, 1, 1, 'Death\'s Verdict'),
|
|
(34322, 47116, 0, 0, 0, 1, 1, 1, 1, 'The Arbiter\'s Muse'),
|
|
(34322, 47121, 0, 0, 0, 1, 1, 1, 1, 'Legguards of Ascension'),
|
|
(34322, 47126, 0, 0, 0, 1, 1, 1, 1, 'Skyweaver Robes'),
|
|
(34323, 47138, 0, 0, 0, 1, 1, 1, 1, 'Chalice of Searing Light'),
|
|
(34323, 47139, 0, 0, 0, 1, 1, 1, 1, 'Wail of the Val\'kyr'),
|
|
(34323, 47140, 0, 0, 0, 1, 1, 1, 1, 'Cord of Pale Thorns'),
|
|
(34323, 47141, 0, 0, 0, 1, 1, 1, 1, 'Bindings of Dark Essence'),
|
|
(34323, 47142, 0, 0, 0, 1, 1, 1, 1, 'Breastplate of the Frozen Lake'),
|
|
(34324, 47054, 0, 0, 0, 1, 1, 1, 1, 'Band of Deplorable Violence'),
|
|
(34324, 47148, 0, 0, 0, 1, 1, 1, 1, 'Stormpike Cleaver'),
|
|
(34324, 47149, 0, 0, 0, 1, 1, 1, 1, 'Signet of the Traitor King'),
|
|
(34324, 47150, 0, 0, 0, 1, 1, 1, 1, 'Greaves of the 7th Legion'),
|
|
(34324, 47151, 0, 0, 0, 1, 1, 1, 1, 'Bracers of Dark Determination'),
|
|
(34324, 47152, 0, 0, 0, 1, 1, 1, 1, 'Belt of Deathly Dominion'),
|
|
(34324, 47182, 0, 0, 0, 1, 1, 1, 1, 'Reign of the Unliving'),
|
|
(34324, 47183, 0, 0, 0, 1, 1, 1, 1, 'Strength of the Nerub'),
|
|
(34324, 47184, 0, 0, 0, 1, 1, 1, 1, 'Legguards of the Lurking Threat'),
|
|
(34324, 47186, 0, 0, 0, 1, 1, 1, 1, 'Legwraps of the Awakening'),
|
|
(34324, 47187, 0, 0, 0, 1, 1, 1, 1, 'Leggings of the Deepening Void'),
|
|
(34324, 47193, 0, 0, 0, 1, 1, 1, 1, 'Misery\'s End'),
|
|
(34324, 47194, 0, 0, 0, 1, 1, 1, 1, 'Footpads of the Icy Floe'),
|
|
(34324, 47195, 0, 0, 0, 1, 1, 1, 1, 'Belt of the Forgotten Martyr'),
|
|
(34324, 47203, 0, 0, 0, 1, 1, 1, 1, 'Armbands of the Ashen Saint'),
|
|
(34324, 47204, 0, 0, 0, 1, 1, 1, 1, 'Chestguard of Flowing Elements'),
|
|
(34324, 47225, 0, 0, 0, 1, 1, 1, 1, 'Maiden\'s Favor'),
|
|
(34324, 47233, 0, 0, 0, 1, 1, 1, 1, 'Archon Glaive'),
|
|
(34324, 47234, 0, 0, 0, 1, 1, 1, 1, 'Gloves of Bitter Reprisal'),
|
|
(34324, 47235, 0, 0, 0, 1, 1, 1, 1, 'Gloves of the Lifeless Touch'),
|
|
(34325, 47069, 0, 0, 0, 1, 1, 1, 1, 'Justicebringer'),
|
|
(34325, 47070, 0, 0, 0, 1, 1, 1, 1, 'Ring of Callous Aggression'),
|
|
(34325, 47071, 0, 0, 0, 1, 1, 1, 1, 'Treads of the Icewalker'),
|
|
(34325, 47072, 0, 0, 0, 1, 1, 1, 1, 'Girdle of Bloodied Scars'),
|
|
(34325, 47073, 0, 0, 0, 1, 1, 1, 1, 'Bracers of the Untold Massacre'),
|
|
(34325, 47079, 0, 0, 0, 1, 1, 1, 1, 'Bastion of Purity'),
|
|
(34325, 47080, 0, 0, 0, 1, 1, 1, 1, 'Satrina\'s Impeding Scarab'),
|
|
(34325, 47081, 0, 0, 0, 1, 1, 1, 1, 'Cord of Biting Cold'),
|
|
(34325, 47082, 0, 0, 0, 1, 1, 1, 1, 'Chestplate of the Frostborn Hero'),
|
|
(34325, 47083, 0, 0, 0, 1, 1, 1, 1, 'Legguards of Concealed Hatred'),
|
|
(34325, 47089, 0, 0, 0, 1, 1, 1, 1, 'Cloak of Displacement'),
|
|
(34325, 47090, 0, 0, 0, 1, 1, 1, 1, 'Boots of Tremoring Earth'),
|
|
(34325, 47092, 0, 0, 0, 1, 1, 1, 1, 'Boots of the Mourning Widow'),
|
|
(34325, 47093, 0, 0, 0, 1, 1, 1, 1, 'Vambraces of the Broken Bond'),
|
|
(34325, 47094, 0, 0, 0, 1, 1, 1, 1, 'Vestments of the Shattered Fellowship'),
|
|
(34326, 47622, 0, 0, 0, 1, 1, 1, 1, 'Plans: Breastplate of the White Knight'),
|
|
(34326, 47623, 0, 0, 0, 1, 1, 1, 1, 'Plans: Saronite Swordbreakers'),
|
|
(34326, 47624, 0, 0, 0, 1, 1, 1, 1, 'Plans: Titanium Razorplate'),
|
|
(34326, 47625, 0, 0, 0, 1, 1, 1, 1, 'Plans: Titanium Spikeguards'),
|
|
(34326, 47626, 0, 0, 0, 1, 1, 1, 1, 'Plans: Sunforged Breastplate'),
|
|
(34326, 47627, 0, 0, 0, 1, 1, 1, 1, 'Plans: Sunforged Bracers'),
|
|
(34326, 47628, 0, 0, 0, 1, 1, 1, 1, 'Pattern: Ensorcelled Nerubian Breastplate'),
|
|
(34326, 47629, 0, 0, 0, 1, 1, 1, 1, 'Pattern: Black Chitin Bracers'),
|
|
(34326, 47630, 0, 0, 0, 1, 1, 1, 1, 'Pattern: Crusader\'s Dragonscale Breastplate'),
|
|
(34326, 47631, 0, 0, 0, 1, 1, 1, 1, 'Pattern: Crusader\'s Dragonscale Bracers'),
|
|
(34326, 47632, 0, 0, 0, 1, 1, 1, 1, 'Pattern: Lunar Eclipse Robes'),
|
|
(34326, 47633, 0, 0, 0, 1, 1, 1, 1, 'Pattern: Moonshadow Armguards'),
|
|
(34326, 47634, 0, 0, 0, 1, 1, 1, 1, 'Pattern: Knightbane Carapace'),
|
|
(34326, 47635, 0, 0, 0, 1, 1, 1, 1, 'Pattern: Bracers of Swift Death'),
|
|
(34326, 47654, 0, 0, 0, 1, 1, 1, 1, 'Pattern: Bejeweled Wizard\'s Bracers'),
|
|
(34326, 47655, 0, 0, 0, 1, 1, 1, 1, 'Pattern: Merlin\'s Robe'),
|
|
(34326, 47656, 0, 0, 0, 1, 1, 1, 1, 'Pattern: Royal Moonshroud Bracers'),
|
|
(34326, 47657, 0, 0, 0, 1, 1, 1, 1, 'Pattern: Royal Moonshroud Robe'),
|
|
(34327, 47251, 0, 0, 0, 1, 1, 1, 1, 'Cuirass of Cruel Intent'),
|
|
(34327, 47252, 0, 0, 0, 1, 1, 1, 1, 'Ring of the Violent Temperament'),
|
|
(34327, 47253, 0, 0, 0, 1, 1, 1, 1, 'Boneshatter Vambraces'),
|
|
(34327, 47254, 0, 0, 0, 1, 1, 1, 1, 'Hauberk of the Towering Monstrosity'),
|
|
(34327, 47255, 0, 0, 0, 1, 1, 1, 1, 'Stygian Bladebreaker'),
|
|
(34327, 47256, 0, 0, 0, 1, 1, 1, 1, 'Drape of the Refreshing Winds'),
|
|
(34327, 47257, 0, 0, 0, 1, 1, 1, 1, 'Cloak of the Untamed Predator'),
|
|
(34327, 47258, 0, 0, 0, 1, 1, 1, 1, 'Belt of the Tenebrous Mist'),
|
|
(34327, 47259, 0, 0, 0, 1, 1, 1, 1, 'Legwraps of the Broken Beast'),
|
|
(34327, 47260, 0, 0, 0, 1, 1, 1, 1, 'Forlorn Barrier'),
|
|
(34327, 47261, 0, 0, 0, 1, 1, 1, 1, 'Barb of Tarasque'),
|
|
(34327, 47262, 0, 0, 0, 1, 1, 1, 1, 'Boots of the Harsh Winter'),
|
|
(34327, 47263, 0, 0, 0, 1, 1, 1, 1, 'Sabatons of the Courageous'),
|
|
(34327, 47264, 0, 0, 0, 1, 1, 1, 1, 'Flowing Robes of Ascent'),
|
|
(34327, 47265, 0, 0, 0, 1, 1, 1, 1, 'Binding of the Ice Burrower'),
|
|
(34328, 47266, 0, 0, 0, 1, 1, 1, 1, 'Blood Fury'),
|
|
(34328, 47267, 0, 0, 0, 1, 1, 1, 1, 'Death\'s Head Crossbow'),
|
|
(34328, 47268, 0, 0, 0, 1, 1, 1, 1, 'Bloodbath Girdle'),
|
|
(34328, 47269, 0, 0, 0, 1, 1, 1, 1, 'Dawnbreaker Sabatons'),
|
|
(34328, 47270, 0, 0, 0, 1, 1, 1, 1, 'Vest of Calamitous Fate'),
|
|
(34328, 47271, 0, 0, 0, 1, 1, 1, 1, 'Solace of the Fallen'),
|
|
(34328, 47272, 0, 0, 0, 1, 1, 1, 1, 'Charge of the Eredar'),
|
|
(34328, 47273, 0, 0, 0, 1, 1, 1, 1, 'Legplates of Feverish Dedication'),
|
|
(34328, 47274, 0, 0, 0, 1, 1, 1, 1, 'Pants of the Soothing Touch'),
|
|
(34328, 47275, 0, 0, 0, 1, 1, 1, 1, 'Pride of the Demon Lord'),
|
|
(34328, 47276, 0, 0, 0, 1, 1, 1, 1, 'Talisman of Heedless Sins'),
|
|
(34328, 47277, 0, 0, 0, 1, 1, 1, 1, 'Bindings of the Autumn Willow'),
|
|
(34328, 47278, 0, 0, 0, 1, 1, 1, 1, 'Circle of the Darkmender'),
|
|
(34328, 47279, 0, 0, 0, 1, 1, 1, 1, 'Leggings of Failing Light'),
|
|
(34328, 47280, 0, 0, 0, 1, 1, 1, 1, 'Wristwraps of Cloudy Omen'),
|
|
(34329, 47296, 0, 0, 0, 1, 1, 1, 1, 'Greaves of Ruthless Judgment'),
|
|
(34329, 47297, 0, 0, 0, 1, 1, 1, 1, 'The Executioner\'s Vice'),
|
|
(34329, 47298, 0, 0, 0, 1, 1, 1, 1, 'Armguards of the Shieldmaiden'),
|
|
(34329, 47299, 0, 0, 0, 1, 1, 1, 1, 'Belt of the Pitiless Killer'),
|
|
(34329, 47300, 0, 0, 0, 1, 1, 1, 1, 'Gouge of the Frigid Heart'),
|
|
(34329, 47301, 0, 0, 0, 1, 1, 1, 1, 'Skyweaver Vestments'),
|
|
(34329, 47302, 0, 0, 0, 1, 1, 1, 1, 'Twin\'s Pact'),
|
|
(34329, 47303, 0, 0, 0, 1, 1, 1, 1, 'Death\'s Choice'),
|
|
(34329, 47304, 0, 0, 0, 1, 1, 1, 1, 'Legplates of Ascension'),
|
|
(34329, 47305, 0, 0, 0, 1, 1, 1, 1, 'Legionnaire\'s Gorget'),
|
|
(34330, 47306, 0, 0, 0, 1, 1, 1, 1, 'Dark Essence Bindings'),
|
|
(34330, 47307, 0, 0, 0, 1, 1, 1, 1, 'Cry of the Val\'kyr'),
|
|
(34330, 47308, 0, 0, 0, 1, 1, 1, 1, 'Belt of Pale Thorns'),
|
|
(34330, 47309, 0, 0, 0, 1, 1, 1, 1, 'Mystifying Charm'),
|
|
(34330, 47310, 0, 0, 0, 1, 1, 1, 1, 'Chestplate of the Frozen Lake'),
|
|
(34331, 47311, 0, 0, 0, 1, 1, 1, 1, 'Waistguard of Deathly Dominion'),
|
|
(34331, 47312, 0, 0, 0, 1, 1, 1, 1, 'Greaves of the Saronite Citadel'),
|
|
(34331, 47313, 0, 0, 0, 1, 1, 1, 1, 'Armbands of Dark Determination'),
|
|
(34331, 47314, 0, 0, 0, 1, 1, 1, 1, 'Hellscream Slicer'),
|
|
(34331, 47315, 0, 0, 0, 1, 1, 1, 1, 'Band of the Traitor King'),
|
|
(34331, 47316, 0, 0, 0, 1, 1, 1, 1, 'Reign of the Dead'),
|
|
(34331, 47317, 0, 0, 0, 1, 1, 1, 1, 'Breeches of the Deepening Void'),
|
|
(34331, 47318, 0, 0, 0, 1, 1, 1, 1, 'Leggings of the Awakening'),
|
|
(34331, 47319, 0, 0, 0, 1, 1, 1, 1, 'Leggings of the Lurking Threat'),
|
|
(34331, 47320, 0, 0, 0, 1, 1, 1, 1, 'Might of the Nerub'),
|
|
(34331, 47321, 0, 0, 0, 1, 1, 1, 1, 'Boots of the Icy Floe'),
|
|
(34331, 47322, 0, 0, 0, 1, 1, 1, 1, 'Suffering\'s End'),
|
|
(34331, 47323, 0, 0, 0, 1, 1, 1, 1, 'Girdle of the Forgotten Martyr'),
|
|
(34331, 47324, 0, 0, 0, 1, 1, 1, 1, 'Bindings of the Ashen Saint'),
|
|
(34331, 47325, 0, 0, 0, 1, 1, 1, 1, 'Cuirass of Flowing Elements'),
|
|
(34331, 47326, 0, 0, 0, 1, 1, 1, 1, 'Handwraps of the Lifeless Touch'),
|
|
(34331, 47327, 0, 0, 0, 1, 1, 1, 1, 'Lurid Manifestation'),
|
|
(34331, 47328, 0, 0, 0, 1, 1, 1, 1, 'Maiden\'s Adoration'),
|
|
(34331, 47329, 0, 0, 0, 1, 1, 1, 1, 'Hellion Glaive'),
|
|
(34331, 47330, 0, 0, 0, 1, 1, 1, 1, 'Gauntlets of Bitter Reprisal'),
|
|
(34332, 47281, 0, 0, 0, 1, 1, 1, 1, 'Bracers of the Silent Massacre'),
|
|
(34332, 47282, 0, 0, 0, 1, 1, 1, 1, 'Band of Callous Aggression'),
|
|
(34332, 47283, 0, 0, 0, 1, 1, 1, 1, 'Belt of Bloodied Scars'),
|
|
(34332, 47284, 0, 0, 0, 1, 1, 1, 1, 'Icewalker Treads'),
|
|
(34332, 47285, 0, 0, 0, 1, 1, 1, 1, 'Dual-blade Butcher'),
|
|
(34332, 47286, 0, 0, 0, 1, 1, 1, 1, 'Belt of Biting Cold'),
|
|
(34332, 47287, 0, 0, 0, 1, 1, 1, 1, 'Bastion of Resolve'),
|
|
(34332, 47288, 0, 0, 0, 1, 1, 1, 1, 'Chestplate of the Frostwolf Hero'),
|
|
(34332, 47289, 0, 0, 0, 1, 1, 1, 1, 'Leggings of Concealed Hatred'),
|
|
(34332, 47290, 0, 0, 0, 1, 1, 1, 1, 'Juggernaut\'s Vitality'),
|
|
(34332, 47291, 0, 0, 0, 1, 1, 1, 1, 'Shroud of Displacement'),
|
|
(34332, 47292, 0, 0, 0, 1, 1, 1, 1, 'Robes of the Shattered Fellowship'),
|
|
(34332, 47293, 0, 0, 0, 1, 1, 1, 1, 'Sandals of the Mourning Widow'),
|
|
(34332, 47294, 0, 0, 0, 1, 1, 1, 1, 'Bracers of the Broken Bond'),
|
|
(34332, 47295, 0, 0, 0, 1, 1, 1, 1, 'Sabatons of Tremoring Earth'),
|
|
(34333, 47636, 0, 0, 0, 1, 1, 1, 1, 'Pattern: Royal Moonshroud Robe'),
|
|
(34333, 47637, 0, 0, 0, 1, 1, 1, 1, 'Pattern: Royal Moonshroud Bracers'),
|
|
(34333, 47638, 0, 0, 0, 1, 1, 1, 1, 'Pattern: Merlin\'s Robe'),
|
|
(34333, 47639, 0, 0, 0, 1, 1, 1, 1, 'Pattern: Bejeweled Wizard\'s Bracers'),
|
|
(34333, 47640, 0, 0, 0, 1, 1, 1, 1, 'Plans: Breastplate of the White Knight'),
|
|
(34333, 47641, 0, 0, 0, 1, 1, 1, 1, 'Plans: Saronite Swordbreakers'),
|
|
(34333, 47642, 0, 0, 0, 1, 1, 1, 1, 'Plans: Sunforged Bracers'),
|
|
(34333, 47643, 0, 0, 0, 1, 1, 1, 1, 'Plans: Sunforged Breastplate'),
|
|
(34333, 47644, 0, 0, 0, 1, 1, 1, 1, 'Plans: Titanium Razorplate'),
|
|
(34333, 47645, 0, 0, 0, 1, 1, 1, 1, 'Plans: Titanium Spikeguards'),
|
|
(34333, 47646, 0, 0, 0, 1, 1, 1, 1, 'Pattern: Black Chitin Bracers'),
|
|
(34333, 47647, 0, 0, 0, 1, 1, 1, 1, 'Pattern: Bracers of Swift Death'),
|
|
(34333, 47648, 0, 0, 0, 1, 1, 1, 1, 'Pattern: Crusader\'s Dragonscale Bracers'),
|
|
(34333, 47649, 0, 0, 0, 1, 1, 1, 1, 'Pattern: Crusader\'s Dragonscale Breastplate'),
|
|
(34333, 47650, 0, 0, 0, 1, 1, 1, 1, 'Pattern: Ensorcelled Nerubian Breastplate'),
|
|
(34333, 47651, 0, 0, 0, 1, 1, 1, 1, 'Pattern: Knightbane Carapace'),
|
|
(34333, 47652, 0, 0, 0, 1, 1, 1, 1, 'Pattern: Lunar Eclipse Robes'),
|
|
(34333, 47653, 0, 0, 0, 1, 1, 1, 1, 'Pattern: Moonshadow Armguards'),
|
|
(34334, 46964, 0, 0, 0, 1, 1, 1, 1, 'Crystal Plated Vanguard'),
|
|
(34334, 46965, 0, 0, 0, 1, 1, 1, 1, 'Breastplate of Cruel Intent'),
|
|
(34334, 46966, 0, 0, 0, 1, 1, 1, 1, 'Band of the Violent Temperment'),
|
|
(34334, 46967, 0, 0, 0, 1, 1, 1, 1, 'Boneshatter Armplates'),
|
|
(34334, 46968, 0, 0, 0, 1, 1, 1, 1, 'Chestplate of the Towering Monstrosity'),
|
|
(34334, 46969, 0, 0, 0, 1, 1, 1, 1, 'Steel Bladebreaker'),
|
|
(34334, 46971, 0, 0, 0, 1, 1, 1, 1, 'Drape of the Untamed Predator'),
|
|
(34334, 46973, 0, 0, 0, 1, 1, 1, 1, 'Cord of the Tenebrous Mist'),
|
|
(34334, 46975, 0, 0, 0, 1, 1, 1, 1, 'Leggings of the Broken Beast'),
|
|
(34334, 46977, 0, 0, 0, 1, 1, 1, 1, 'Shawl of the Refreshing Winds'),
|
|
(34334, 46980, 0, 0, 0, 1, 1, 1, 1, 'Blade of Tarasque'),
|
|
(34334, 46986, 0, 0, 0, 1, 1, 1, 1, 'Boots of the Courageous'),
|
|
(34334, 46989, 0, 0, 0, 1, 1, 1, 1, 'Boots of the Unrelenting Storm'),
|
|
(34334, 46991, 0, 0, 0, 1, 1, 1, 1, 'Belt of the Ice Burrower'),
|
|
(34334, 46993, 0, 0, 0, 1, 1, 1, 1, 'Flowing Vestments of Ascent'),
|
|
(34335, 46995, 0, 0, 0, 1, 1, 1, 1, 'Talonstrike'),
|
|
(34335, 47001, 0, 0, 0, 1, 1, 1, 1, 'Lionhead Slasher'),
|
|
(34335, 47002, 0, 0, 0, 1, 1, 1, 1, 'Bloodbath Belt'),
|
|
(34335, 47003, 0, 0, 0, 1, 1, 1, 1, 'Dawnbreaker Greaves'),
|
|
(34335, 47004, 0, 0, 0, 1, 1, 1, 1, 'Cuirass of Calamitous Fate'),
|
|
(34335, 47059, 0, 0, 0, 1, 1, 1, 1, 'Solace of the Defeated'),
|
|
(34335, 47060, 0, 0, 0, 1, 1, 1, 1, 'Charge of the Demon Lord'),
|
|
(34335, 47061, 0, 0, 0, 1, 1, 1, 1, 'Legguards of Feverish Dedication'),
|
|
(34335, 47062, 0, 0, 0, 1, 1, 1, 1, 'Leggings of the Soothing Touch'),
|
|
(34335, 47063, 0, 0, 0, 1, 1, 1, 1, 'Pride of the Eredar'),
|
|
(34335, 47064, 0, 0, 0, 1, 1, 1, 1, 'Symbol of Transgression'),
|
|
(34335, 47066, 0, 0, 0, 1, 1, 1, 1, 'Bracers of the Autumn Willow'),
|
|
(34335, 47067, 0, 0, 0, 1, 1, 1, 1, 'Legplates of Failing Light'),
|
|
(34335, 47068, 0, 0, 0, 1, 1, 1, 1, 'Bracers of Cloudy Omen'),
|
|
(34335, 47224, 0, 0, 0, 1, 1, 1, 1, 'Ring of the Darkmender'),
|
|
(34336, 47109, 0, 0, 0, 1, 1, 1, 1, 'Sabatons of Ruthless Judgment'),
|
|
(34336, 47110, 0, 0, 0, 1, 1, 1, 1, 'The Executioner\'s Malice'),
|
|
(34336, 47111, 0, 0, 0, 1, 1, 1, 1, 'Bracers of the Shieldmaiden'),
|
|
(34336, 47112, 0, 0, 0, 1, 1, 1, 1, 'Belt of the Merciless Killer'),
|
|
(34336, 47113, 0, 0, 0, 1, 1, 1, 1, 'Twin Spike'),
|
|
(34336, 47129, 0, 0, 0, 1, 1, 1, 1, 'Skyweaver Robes'),
|
|
(34336, 47130, 0, 0, 0, 1, 1, 1, 1, 'Lupine Longstaff'),
|
|
(34336, 47131, 0, 0, 0, 1, 1, 1, 1, 'Death\'s Verdict'),
|
|
(34336, 47132, 0, 0, 0, 1, 1, 1, 1, 'Legguards of Ascension'),
|
|
(34336, 47133, 0, 0, 0, 1, 1, 1, 1, 'The Arbiter\'s Muse'),
|
|
(34337, 47143, 0, 0, 0, 1, 1, 1, 1, 'Bindings of Dark Essence'),
|
|
(34337, 47144, 0, 0, 0, 1, 1, 1, 1, 'Wail of the Val\'kyr'),
|
|
(34337, 47145, 0, 0, 0, 1, 1, 1, 1, 'Cord of Pale Thorns'),
|
|
(34337, 47146, 0, 0, 0, 1, 1, 1, 1, 'Chalice of Searing Light'),
|
|
(34337, 47147, 0, 0, 0, 1, 1, 1, 1, 'Breastplate of the Frozen Lake'),
|
|
(34338, 47153, 0, 0, 0, 1, 1, 1, 1, 'Belt of Deathly Dominion'),
|
|
(34338, 47154, 0, 0, 0, 1, 1, 1, 1, 'Greaves of the 7th Legion'),
|
|
(34338, 47155, 0, 0, 0, 1, 1, 1, 1, 'Bracers of Dark Determination'),
|
|
(34338, 47156, 0, 0, 0, 1, 1, 1, 1, 'Stormpike Cleaver'),
|
|
(34338, 47157, 0, 0, 0, 1, 1, 1, 1, 'Signet of the Traitor King'),
|
|
(34338, 47188, 0, 0, 0, 1, 1, 1, 1, 'Reign of the Unliving'),
|
|
(34338, 47189, 0, 0, 0, 1, 1, 1, 1, 'Leggings of the Deepening Void'),
|
|
(34338, 47190, 0, 0, 0, 1, 1, 1, 1, 'Legwraps of the Awakening'),
|
|
(34338, 47191, 0, 0, 0, 1, 1, 1, 1, 'Legguards of the Lurking Threat'),
|
|
(34338, 47192, 0, 0, 0, 1, 1, 1, 1, 'Strength of the Nerub'),
|
|
(34338, 47205, 0, 0, 0, 1, 1, 1, 1, 'Footpads of the Icy Floe'),
|
|
(34338, 47206, 0, 0, 0, 1, 1, 1, 1, 'Misery\'s End'),
|
|
(34338, 47207, 0, 0, 0, 1, 1, 1, 1, 'Belt of the Forgotten Martyr'),
|
|
(34338, 47208, 0, 0, 0, 1, 1, 1, 1, 'Armbands of the Ashen Saint'),
|
|
(34338, 47209, 0, 0, 0, 1, 1, 1, 1, 'Chestguard of Flowing Elements'),
|
|
(34338, 47236, 0, 0, 0, 1, 1, 1, 1, 'Gloves of the Lifeless Touch'),
|
|
(34338, 47237, 0, 0, 0, 1, 1, 1, 1, 'Band of Deplorable Violence'),
|
|
(34338, 47238, 0, 0, 0, 1, 1, 1, 1, 'Maiden\'s Favor'),
|
|
(34338, 47239, 0, 0, 0, 1, 1, 1, 1, 'Archon Glaive'),
|
|
(34338, 47240, 0, 0, 0, 1, 1, 1, 1, 'Gloves of Bitter Reprisal'),
|
|
(34339, 47074, 0, 0, 0, 1, 1, 1, 1, 'Bracers of the Untold Massacre'),
|
|
(34339, 47075, 0, 0, 0, 1, 1, 1, 1, 'Ring of Callous Aggression'),
|
|
(34339, 47076, 0, 0, 0, 1, 1, 1, 1, 'Girdle of Bloodied Scars'),
|
|
(34339, 47077, 0, 0, 0, 1, 1, 1, 1, 'Treads of the Icewalker'),
|
|
(34339, 47078, 0, 0, 0, 1, 1, 1, 1, 'Justicebringer'),
|
|
(34339, 47084, 0, 0, 0, 1, 1, 1, 1, 'Cord of Biting Cold'),
|
|
(34339, 47085, 0, 0, 0, 1, 1, 1, 1, 'Bastion of Purity'),
|
|
(34339, 47086, 0, 0, 0, 1, 1, 1, 1, 'Chestplate of the Frostborn Hero'),
|
|
(34339, 47087, 0, 0, 0, 1, 1, 1, 1, 'Legguards of Concealed Hatred'),
|
|
(34339, 47088, 0, 0, 0, 1, 1, 1, 1, 'Satrina\'s Impeding Scarab'),
|
|
(34339, 47095, 0, 0, 0, 1, 1, 1, 1, 'Cloak of Displacement'),
|
|
(34339, 47096, 0, 0, 0, 1, 1, 1, 1, 'Vestments of the Shattered Fellowship'),
|
|
(34339, 47097, 0, 0, 0, 1, 1, 1, 1, 'Boots of the Mourning Widow'),
|
|
(34339, 47098, 0, 0, 0, 1, 1, 1, 1, 'Vambraces of the Broken Bond'),
|
|
(34339, 47099, 0, 0, 0, 1, 1, 1, 1, 'Boots of Tremoring Earth'),
|
|
(34340, 47622, 0, 0, 0, 1, 1, 1, 1, 'Plans: Breastplate of the White Knight'),
|
|
(34340, 47623, 0, 0, 0, 1, 1, 1, 1, 'Plans: Saronite Swordbreakers'),
|
|
(34340, 47624, 0, 0, 0, 1, 1, 1, 1, 'Plans: Titanium Razorplate'),
|
|
(34340, 47625, 0, 0, 0, 1, 1, 1, 1, 'Plans: Titanium Spikeguards'),
|
|
(34340, 47626, 0, 0, 0, 1, 1, 1, 1, 'Plans: Sunforged Breastplate'),
|
|
(34340, 47627, 0, 0, 0, 1, 1, 1, 1, 'Plans: Sunforged Bracers'),
|
|
(34340, 47628, 0, 0, 0, 1, 1, 1, 1, 'Pattern: Ensorcelled Nerubian Breastplate'),
|
|
(34340, 47629, 0, 0, 0, 1, 1, 1, 1, 'Pattern: Black Chitin Bracers'),
|
|
(34340, 47630, 0, 0, 0, 1, 1, 1, 1, 'Pattern: Crusader\'s Dragonscale Breastplate'),
|
|
(34340, 47631, 0, 0, 0, 1, 1, 1, 1, 'Pattern: Crusader\'s Dragonscale Bracers'),
|
|
(34340, 47632, 0, 0, 0, 1, 1, 1, 1, 'Pattern: Lunar Eclipse Robes'),
|
|
(34340, 47633, 0, 0, 0, 1, 1, 1, 1, 'Pattern: Moonshadow Armguards'),
|
|
(34340, 47634, 0, 0, 0, 1, 1, 1, 1, 'Pattern: Knightbane Carapace'),
|
|
(34340, 47635, 0, 0, 0, 1, 1, 1, 1, 'Pattern: Bracers of Swift Death'),
|
|
(34340, 47654, 0, 0, 0, 1, 1, 1, 1, 'Pattern: Bejeweled Wizard\'s Bracers'),
|
|
(34340, 47655, 0, 0, 0, 1, 1, 1, 1, 'Pattern: Merlin\'s Robe'),
|
|
(34340, 47656, 0, 0, 0, 1, 1, 1, 1, 'Pattern: Royal Moonshroud Bracers'),
|
|
(34340, 47657, 0, 0, 0, 1, 1, 1, 1, 'Pattern: Royal Moonshroud Robe'),
|
|
(34341, 47412, 0, 0, 0, 1, 1, 1, 1, 'Cuirass of Cruel Intent'),
|
|
(34341, 47413, 0, 0, 0, 1, 1, 1, 1, 'Ring of the Violent Temperament'),
|
|
(34341, 47414, 0, 0, 0, 1, 1, 1, 1, 'Boneshatter Vambraces'),
|
|
(34341, 47415, 0, 0, 0, 1, 1, 1, 1, 'Hauberk of the Towering Monstrosity'),
|
|
(34341, 47416, 0, 0, 0, 1, 1, 1, 1, 'Stygian Bladebreaker'),
|
|
(34341, 47417, 0, 0, 0, 1, 1, 1, 1, 'Drape of the Refreshing Winds'),
|
|
(34341, 47418, 0, 0, 0, 1, 1, 1, 1, 'Cloak of the Untamed Predator'),
|
|
(34341, 47419, 0, 0, 0, 1, 1, 1, 1, 'Belt of the Tenebrous Mist'),
|
|
(34341, 47420, 0, 0, 0, 1, 1, 1, 1, 'Legwraps of the Broken Beast'),
|
|
(34341, 47421, 0, 0, 0, 1, 1, 1, 1, 'Forlorn Barrier'),
|
|
(34341, 47422, 0, 0, 0, 1, 1, 1, 1, 'Barb of Tarasque'),
|
|
(34341, 47423, 0, 0, 0, 1, 1, 1, 1, 'Boots of the Harsh Winter'),
|
|
(34341, 47424, 0, 0, 0, 1, 1, 1, 1, 'Sabatons of the Courageous'),
|
|
(34341, 47425, 0, 0, 0, 1, 1, 1, 1, 'Flowing Robes of Ascent'),
|
|
(34341, 47426, 0, 0, 0, 1, 1, 1, 1, 'Binding of the Ice Burrower'),
|
|
(34342, 47427, 0, 0, 0, 1, 1, 1, 1, 'Blood Fury'),
|
|
(34342, 47428, 0, 0, 0, 1, 1, 1, 1, 'Death\'s Head Crossbow'),
|
|
(34342, 47429, 0, 0, 0, 1, 1, 1, 1, 'Bloodbath Girdle'),
|
|
(34342, 47430, 0, 0, 0, 1, 1, 1, 1, 'Dawnbreaker Sabatons'),
|
|
(34342, 47431, 0, 0, 0, 1, 1, 1, 1, 'Vest of Calamitous Fate'),
|
|
(34342, 47432, 0, 0, 0, 1, 1, 1, 1, 'Solace of the Fallen'),
|
|
(34342, 47433, 0, 0, 0, 1, 1, 1, 1, 'Charge of the Eredar'),
|
|
(34342, 47434, 0, 0, 0, 1, 1, 1, 1, 'Legplates of Feverish Dedication'),
|
|
(34342, 47435, 0, 0, 0, 1, 1, 1, 1, 'Pants of the Soothing Touch'),
|
|
(34342, 47436, 0, 0, 0, 1, 1, 1, 1, 'Pride of the Demon Lord'),
|
|
(34342, 47437, 0, 0, 0, 1, 1, 1, 1, 'Talisman of Heedless Sins'),
|
|
(34342, 47438, 0, 0, 0, 1, 1, 1, 1, 'Bindings of the Autumn Willow'),
|
|
(34342, 47439, 0, 0, 0, 1, 1, 1, 1, 'Circle of the Darkmender'),
|
|
(34342, 47440, 0, 0, 0, 1, 1, 1, 1, 'Leggings of Failing Light'),
|
|
(34342, 47441, 0, 0, 0, 1, 1, 1, 1, 'Wristwraps of Cloudy Omen'),
|
|
(34343, 47457, 0, 0, 0, 1, 1, 1, 1, 'Greaves of Ruthless Judgment'),
|
|
(34343, 47458, 0, 0, 0, 1, 1, 1, 1, 'The Executioner\'s Vice'),
|
|
(34343, 47459, 0, 0, 0, 1, 1, 1, 1, 'Armguards of the Shieldmaiden'),
|
|
(34343, 47460, 0, 0, 0, 1, 1, 1, 1, 'Belt of the Pitiless Killer'),
|
|
(34343, 47461, 0, 0, 0, 1, 1, 1, 1, 'Gouge of the Frigid Heart'),
|
|
(34343, 47462, 0, 0, 0, 1, 1, 1, 1, 'Skyweaver Vestments'),
|
|
(34343, 47463, 0, 0, 0, 1, 1, 1, 1, 'Twin\'s Pact'),
|
|
(34343, 47464, 0, 0, 0, 1, 1, 1, 1, 'Death\'s Choice'),
|
|
(34343, 47465, 0, 0, 0, 1, 1, 1, 1, 'Legplates of Ascension'),
|
|
(34343, 47466, 0, 0, 0, 1, 1, 1, 1, 'Legionnaire\'s Gorget'),
|
|
(34344, 47467, 0, 0, 0, 1, 1, 1, 1, 'Dark Essence Bindings'),
|
|
(34344, 47468, 0, 0, 0, 1, 1, 1, 1, 'Cry of the Val\'kyr'),
|
|
(34344, 47469, 0, 0, 0, 1, 1, 1, 1, 'Belt of Pale Thorns'),
|
|
(34344, 47470, 0, 0, 0, 1, 1, 1, 1, 'Mystifying Charm'),
|
|
(34344, 47471, 0, 0, 0, 1, 1, 1, 1, 'Chestplate of the Frozen Lake'),
|
|
(34345, 47472, 0, 0, 0, 1, 1, 1, 1, 'Waistguard of Deathly Dominion'),
|
|
(34345, 47473, 0, 0, 0, 1, 1, 1, 1, 'Greaves of the Saronite Citadel'),
|
|
(34345, 47474, 0, 0, 0, 1, 1, 1, 1, 'Armbands of Dark Determination'),
|
|
(34345, 47475, 0, 0, 0, 1, 1, 1, 1, 'Hellscream Slicer'),
|
|
(34345, 47476, 0, 0, 0, 1, 1, 1, 1, 'Band of the Traitor King'),
|
|
(34345, 47477, 0, 0, 0, 1, 1, 1, 1, 'Reign of the Dead'),
|
|
(34345, 47478, 0, 0, 0, 1, 1, 1, 1, 'Breeches of the Deepening Void'),
|
|
(34345, 47479, 0, 0, 0, 1, 1, 1, 1, 'Leggings of the Awakening'),
|
|
(34345, 47480, 0, 0, 0, 1, 1, 1, 1, 'Leggings of the Lurking Threat'),
|
|
(34345, 47481, 0, 0, 0, 1, 1, 1, 1, 'Might of the Nerub'),
|
|
(34345, 47482, 0, 0, 0, 1, 1, 1, 1, 'Boots of the Icy Floe'),
|
|
(34345, 47483, 0, 0, 0, 1, 1, 1, 1, 'Suffering\'s End'),
|
|
(34345, 47484, 0, 0, 0, 1, 1, 1, 1, 'Girdle of the Forgotten Martyr'),
|
|
(34345, 47485, 0, 0, 0, 1, 1, 1, 1, 'Bindings of the Ashen Saint'),
|
|
(34345, 47486, 0, 0, 0, 1, 1, 1, 1, 'Cuirass of Flowing Elements'),
|
|
(34345, 47487, 0, 0, 0, 1, 1, 1, 1, 'Handwraps of the Lifeless Touch'),
|
|
(34345, 47489, 0, 0, 0, 1, 1, 1, 1, 'Lurid Manifestation'),
|
|
(34345, 47490, 0, 0, 0, 1, 1, 1, 1, 'Maiden\'s Adoration'),
|
|
(34345, 47491, 0, 0, 0, 1, 1, 1, 1, 'Hellion Glaive'),
|
|
(34345, 47492, 0, 0, 0, 1, 1, 1, 1, 'Gauntlets of Bitter Reprisal'),
|
|
(34346, 47442, 0, 0, 0, 1, 1, 1, 1, 'Bracers of the Silent Massacre'),
|
|
(34346, 47443, 0, 0, 0, 1, 1, 1, 1, 'Band of Callous Aggression'),
|
|
(34346, 47444, 0, 0, 0, 1, 1, 1, 1, 'Belt of Bloodied Scars'),
|
|
(34346, 47445, 0, 0, 0, 1, 1, 1, 1, 'Icewalker Treads'),
|
|
(34346, 47446, 0, 0, 0, 1, 1, 1, 1, 'Dual-blade Butcher'),
|
|
(34346, 47447, 0, 0, 0, 1, 1, 1, 1, 'Belt of Biting Cold'),
|
|
(34346, 47448, 0, 0, 0, 1, 1, 1, 1, 'Bastion of Resolve'),
|
|
(34346, 47449, 0, 0, 0, 1, 1, 1, 1, 'Chestplate of the Frostwolf Hero'),
|
|
(34346, 47450, 0, 0, 0, 1, 1, 1, 1, 'Leggings of Concealed Hatred'),
|
|
(34346, 47451, 0, 0, 0, 1, 1, 1, 1, 'Juggernaut\'s Vitality'),
|
|
(34346, 47452, 0, 0, 0, 1, 1, 1, 1, 'Shroud of Displacement'),
|
|
(34346, 47453, 0, 0, 0, 1, 1, 1, 1, 'Robes of the Shattered Fellowship'),
|
|
(34346, 47454, 0, 0, 0, 1, 1, 1, 1, 'Sandals of the Mourning Widow'),
|
|
(34346, 47455, 0, 0, 0, 1, 1, 1, 1, 'Bracers of the Broken Bond'),
|
|
(34346, 47456, 0, 0, 0, 1, 1, 1, 1, 'Sabatons of Tremoring Earth'),
|
|
(34347, 47636, 0, 0, 0, 1, 1, 1, 1, 'Pattern: Royal Moonshroud Robe'),
|
|
(34347, 47637, 0, 0, 0, 1, 1, 1, 1, 'Pattern: Royal Moonshroud Bracers'),
|
|
(34347, 47638, 0, 0, 0, 1, 1, 1, 1, 'Pattern: Merlin\'s Robe'),
|
|
(34347, 47639, 0, 0, 0, 1, 1, 1, 1, 'Pattern: Bejeweled Wizard\'s Bracers'),
|
|
(34347, 47640, 0, 0, 0, 1, 1, 1, 1, 'Plans: Breastplate of the White Knight'),
|
|
(34347, 47641, 0, 0, 0, 1, 1, 1, 1, 'Plans: Saronite Swordbreakers'),
|
|
(34347, 47642, 0, 0, 0, 1, 1, 1, 1, 'Plans: Sunforged Bracers'),
|
|
(34347, 47643, 0, 0, 0, 1, 1, 1, 1, 'Plans: Sunforged Breastplate'),
|
|
(34347, 47644, 0, 0, 0, 1, 1, 1, 1, 'Plans: Titanium Razorplate'),
|
|
(34347, 47645, 0, 0, 0, 1, 1, 1, 1, 'Plans: Titanium Spikeguards'),
|
|
(34347, 47646, 0, 0, 0, 1, 1, 1, 1, 'Pattern: Black Chitin Bracers'),
|
|
(34347, 47647, 0, 0, 0, 1, 1, 1, 1, 'Pattern: Bracers of Swift Death'),
|
|
(34347, 47648, 0, 0, 0, 1, 1, 1, 1, 'Pattern: Crusader\'s Dragonscale Bracers'),
|
|
(34347, 47649, 0, 0, 0, 1, 1, 1, 1, 'Pattern: Crusader\'s Dragonscale Breastplate'),
|
|
(34347, 47650, 0, 0, 0, 1, 1, 1, 1, 'Pattern: Ensorcelled Nerubian Breastplate'),
|
|
(34347, 47651, 0, 0, 0, 1, 1, 1, 1, 'Pattern: Knightbane Carapace'),
|
|
(34347, 47652, 0, 0, 0, 1, 1, 1, 1, 'Pattern: Lunar Eclipse Robes'),
|
|
(34347, 47653, 0, 0, 0, 1, 1, 1, 1, 'Pattern: Moonshadow Armguards'),
|
|
(34349, 47241, 0, 100, 0, 1, 0, 1, 1, 'Emblem of Triumph'),
|
|
(34350, 45087, 0, 0, 0, 1, 1, 1, 1, 'Runed Orb'),
|
|
(34351, 45282, 0, 0, 0, 1, 1, 1, 1, 'Ironsoul'),
|
|
(34351, 45283, 0, 0, 0, 1, 1, 1, 1, 'Flamewatch Armguards'),
|
|
(34351, 45284, 0, 0, 0, 1, 1, 1, 1, 'Kinetic Ripper'),
|
|
(34351, 45285, 0, 0, 0, 1, 1, 1, 1, 'Might of the Leviathan'),
|
|
(34351, 45286, 0, 0, 0, 1, 1, 1, 1, 'Pyrite Infuser'),
|
|
(34351, 45287, 0, 0, 0, 1, 1, 1, 1, 'Firesoul'),
|
|
(34351, 45288, 0, 0, 0, 1, 1, 1, 1, 'Firestrider Chestguard'),
|
|
(34351, 45289, 0, 0, 0, 1, 1, 1, 1, 'Lifespark Visage'),
|
|
(34351, 45291, 0, 0, 0, 1, 1, 1, 1, 'Combustion Bracers'),
|
|
(34351, 45292, 0, 0, 0, 1, 1, 1, 1, 'Energy Siphon'),
|
|
(34352, 45106, 0, 0, 0, 1, 1, 1, 1, 'Strength of the Automaton'),
|
|
(34352, 45107, 0, 0, 0, 1, 1, 1, 1, 'Iron Riveted War Helm'),
|
|
(34352, 45108, 0, 0, 0, 1, 1, 1, 1, 'Mechanist\'s Bindings'),
|
|
(34352, 45109, 0, 0, 0, 1, 1, 1, 1, 'Gloves of the Fiery Behemoth'),
|
|
(34352, 45111, 0, 0, 0, 1, 1, 1, 1, 'Mimiron\'s Inferno Couplings'),
|
|
(34352, 45112, 0, 0, 0, 1, 1, 1, 1, 'The Leviathan\'s Coil'),
|
|
(34352, 45113, 0, 0, 0, 1, 1, 1, 1, 'Glowing Ring of Reclamation'),
|
|
(34352, 45114, 0, 0, 0, 1, 1, 1, 1, 'Steamcaller\'s Totem'),
|
|
(34352, 45115, 0, 0, 0, 1, 1, 1, 1, 'Leviathan Fueling Manual'),
|
|
(34352, 45116, 0, 0, 0, 1, 1, 1, 1, 'Freya\'s Choker of Warding'),
|
|
(34352, 45117, 0, 0, 0, 1, 1, 1, 1, 'Constructor\'s Handwraps'),
|
|
(34352, 45118, 0, 0, 0, 1, 1, 1, 1, 'Steamworker\'s Goggles'),
|
|
(34352, 45119, 0, 0, 0, 1, 1, 1, 1, 'Embrace of the Leviathan'),
|
|
(34353, 45309, 0, 0, 0, 1, 1, 1, 1, 'Rifle of the Platinum Guard'),
|
|
(34353, 45310, 0, 0, 0, 1, 1, 1, 1, 'Gauntlets of the Iron Furnace'),
|
|
(34353, 45311, 0, 0, 0, 1, 1, 1, 1, 'Relentless Edge'),
|
|
(34353, 45312, 0, 0, 0, 1, 1, 1, 1, 'Gloves of Smoldering Touch'),
|
|
(34353, 45313, 0, 0, 0, 1, 1, 1, 1, 'Furnace Stone'),
|
|
(34353, 45314, 0, 0, 0, 1, 1, 1, 1, 'Igniter Rod'),
|
|
(34353, 45316, 0, 0, 0, 1, 1, 1, 1, 'Armbraces of the Vibrant Flame'),
|
|
(34353, 45317, 0, 0, 0, 1, 1, 1, 1, 'Shawl of the Caretaker'),
|
|
(34353, 45318, 0, 0, 0, 1, 1, 1, 1, 'Drape of Fuming Anger'),
|
|
(34353, 45321, 0, 0, 0, 1, 1, 1, 1, 'Pauldrons of Tempered Will'),
|
|
(34354, 45157, 0, 0, 0, 1, 1, 1, 1, 'Cindershard Ring'),
|
|
(34354, 45158, 0, 0, 0, 1, 1, 1, 1, 'Heart of Iron'),
|
|
(34354, 45161, 0, 0, 0, 1, 1, 1, 1, 'Girdle of Embers'),
|
|
(34354, 45162, 0, 0, 0, 1, 1, 1, 1, 'Flamestalker Boots'),
|
|
(34354, 45164, 0, 0, 0, 1, 1, 1, 1, 'Helm of the Furnace Master'),
|
|
(34354, 45165, 0, 0, 0, 1, 1, 1, 1, 'Worldcarver'),
|
|
(34354, 45166, 0, 0, 0, 1, 1, 1, 1, 'Charred Saronite Greaves'),
|
|
(34354, 45167, 0, 0, 0, 1, 1, 1, 1, 'Lifeforge Breastplate'),
|
|
(34354, 45168, 0, 0, 0, 1, 1, 1, 1, 'Pyrelight Circle'),
|
|
(34354, 45169, 0, 0, 0, 1, 1, 1, 1, 'Totem of the Dancing Flame'),
|
|
(34354, 45170, 0, 0, 0, 1, 1, 1, 1, 'Scepter of Creation'),
|
|
(34354, 45171, 0, 0, 0, 1, 1, 1, 1, 'Intensity'),
|
|
(34354, 45185, 0, 0, 0, 1, 1, 1, 1, 'Flamewrought Cinch'),
|
|
(34354, 45186, 0, 0, 0, 1, 1, 1, 1, 'Soot-Covered Mantle'),
|
|
(34354, 45187, 0, 0, 0, 1, 1, 1, 1, 'Wristguards of the Firetender'),
|
|
(34355, 45298, 0, 0, 0, 1, 1, 1, 1, 'Razorscale Talon'),
|
|
(34355, 45299, 0, 0, 0, 1, 1, 1, 1, 'Dragonsteel Faceplate'),
|
|
(34355, 45301, 0, 0, 0, 1, 1, 1, 1, 'Bracers of the Smothering Inferno'),
|
|
(34355, 45302, 0, 0, 0, 1, 1, 1, 1, 'Treads of the Invader'),
|
|
(34355, 45303, 0, 0, 0, 1, 1, 1, 1, 'Band of Draconic Guile'),
|
|
(34355, 45304, 0, 0, 0, 1, 1, 1, 1, 'Stormtempered Girdle'),
|
|
(34355, 45305, 0, 0, 0, 1, 1, 1, 1, 'Breastplate of the Afterlife'),
|
|
(34355, 45306, 0, 0, 0, 1, 1, 1, 1, 'Binding of the Dragon Matriarch'),
|
|
(34355, 45307, 0, 0, 0, 1, 1, 1, 1, 'Ironscale Leggings'),
|
|
(34355, 45308, 0, 0, 0, 1, 1, 1, 1, 'Eye of the Broodmother'),
|
|
(34356, 45137, 0, 0, 0, 1, 1, 1, 1, 'Veranus\' Bane'),
|
|
(34356, 45138, 0, 0, 0, 1, 1, 1, 1, 'Drape of the Drakerider'),
|
|
(34356, 45139, 0, 0, 0, 1, 1, 1, 1, 'Dragonslayer\'s Brace'),
|
|
(34356, 45140, 0, 0, 0, 1, 1, 1, 1, 'Razorscale Shoulderguards'),
|
|
(34356, 45141, 0, 0, 0, 1, 1, 1, 1, 'Proto-hide Leggings'),
|
|
(34356, 45142, 0, 0, 0, 1, 1, 1, 1, 'Remorse'),
|
|
(34356, 45143, 0, 0, 0, 1, 1, 1, 1, 'Saronite Mesh Legguards'),
|
|
(34356, 45144, 0, 0, 0, 1, 1, 1, 1, 'Sigil of Deflection'),
|
|
(34356, 45146, 0, 0, 0, 1, 1, 1, 1, 'Shackles of the Odalisque'),
|
|
(34356, 45147, 0, 0, 0, 1, 1, 1, 1, 'Guiding Star'),
|
|
(34356, 45148, 0, 0, 0, 1, 1, 1, 1, 'Living Flame'),
|
|
(34356, 45149, 0, 0, 0, 1, 1, 1, 1, 'Bracers of the Broodmother'),
|
|
(34356, 45150, 0, 0, 0, 1, 1, 1, 1, 'Collar of the Wyrmhunter'),
|
|
(34356, 45151, 0, 0, 0, 1, 1, 1, 1, 'Belt of the Fallen Wyrm'),
|
|
(34356, 45510, 0, 0, 0, 1, 1, 1, 1, 'Libram of Discord'),
|
|
(34357, 45675, 0, 0, 0, 1, 1, 1, 1, 'Power Enhancing Loop'),
|
|
(34357, 45676, 0, 0, 0, 1, 1, 1, 1, 'Chestplate of Vicious Potency'),
|
|
(34357, 45677, 0, 0, 0, 1, 1, 1, 1, 'Treacherous Shoulderpads'),
|
|
(34357, 45679, 0, 0, 0, 1, 1, 1, 1, 'Gloves of Taut Grip'),
|
|
(34357, 45680, 0, 0, 0, 1, 1, 1, 1, 'Armbands of the Construct'),
|
|
(34357, 45682, 0, 0, 0, 1, 1, 1, 1, 'Pulsing Spellshield'),
|
|
(34357, 45685, 0, 0, 0, 1, 1, 1, 1, 'Plasma Foil'),
|
|
(34357, 45686, 0, 0, 0, 1, 1, 1, 1, 'Vest of the Glowing Crescent'),
|
|
(34357, 45687, 0, 0, 0, 1, 1, 1, 1, 'Helm of Veiled Energies'),
|
|
(34357, 45694, 0, 0, 0, 1, 1, 1, 1, 'Conductive Cord'),
|
|
(34358, 45246, 0, 0, 0, 1, 1, 1, 1, 'Golem-Shard Sticker'),
|
|
(34358, 45247, 0, 0, 0, 1, 1, 1, 1, 'Signet of the Earthshaker'),
|
|
(34358, 45248, 0, 0, 0, 1, 1, 1, 1, 'Clockwork Legplates'),
|
|
(34358, 45249, 0, 0, 0, 1, 1, 1, 1, 'Brass-lined Boots'),
|
|
(34358, 45250, 0, 0, 0, 1, 1, 1, 1, 'Crazed Construct Ring'),
|
|
(34358, 45251, 0, 0, 0, 1, 1, 1, 1, 'Shoulderplates of the Deconstructor'),
|
|
(34358, 45252, 0, 0, 0, 1, 1, 1, 1, 'Horologist\'s Wristguards'),
|
|
(34358, 45253, 0, 0, 0, 1, 1, 1, 1, 'Mantle of Wavering Calm'),
|
|
(34358, 45254, 0, 0, 0, 1, 1, 1, 1, 'Sigil of the Vengeful Heart'),
|
|
(34358, 45255, 0, 0, 0, 1, 1, 1, 1, 'Thunderfall Totem'),
|
|
(34358, 45256, 0, 0, 0, 1, 1, 1, 1, 'Twisted Visage'),
|
|
(34358, 45257, 0, 0, 0, 1, 1, 1, 1, 'Quartz Crystal Wand'),
|
|
(34358, 45258, 0, 0, 0, 1, 1, 1, 1, 'Sandals of Rash Temperament'),
|
|
(34358, 45259, 0, 0, 0, 1, 1, 1, 1, 'Quartz-studded Harness'),
|
|
(34358, 45260, 0, 0, 0, 1, 1, 1, 1, 'Boots of Hasty Revival'),
|
|
(34359, 45322, 0, 0, 0, 1, 1, 1, 1, 'Cloak of the Iron Council'),
|
|
(34359, 45324, 0, 0, 0, 1, 1, 1, 1, 'Leggings of Swift Reflexes'),
|
|
(34359, 45329, 0, 0, 0, 1, 1, 1, 1, 'Circlet of True Sight'),
|
|
(34359, 45330, 0, 0, 0, 1, 1, 1, 1, 'Greaves of Iron Intensity'),
|
|
(34359, 45331, 0, 0, 0, 1, 1, 1, 1, 'Rune-Etched Nightblade'),
|
|
(34359, 45332, 0, 0, 0, 1, 1, 1, 1, 'Stormtip'),
|
|
(34359, 45333, 0, 0, 0, 1, 1, 1, 1, 'Belt of the Iron Servant'),
|
|
(34359, 45378, 0, 0, 0, 1, 1, 1, 1, 'Boots of the Petrified Forest'),
|
|
(34359, 45418, 0, 0, 0, 1, 1, 1, 1, 'Lady Maye\'s Sapphire Ring'),
|
|
(34359, 45423, 0, 0, 0, 1, 1, 1, 1, 'Runetouch Wristwraps'),
|
|
(34360, 45193, 0, 0, 0, 1, 1, 1, 1, 'Insurmountable Fervor'),
|
|
(34360, 45224, 0, 0, 0, 1, 1, 1, 1, 'Drape of the Lithe'),
|
|
(34360, 45225, 0, 0, 0, 1, 1, 1, 1, 'Steelbreaker\'s Embrace'),
|
|
(34360, 45226, 0, 0, 0, 1, 1, 1, 1, 'Ancient Iron Heaume'),
|
|
(34360, 45227, 0, 0, 0, 1, 1, 1, 1, 'Iron-studded Mantle'),
|
|
(34360, 45228, 0, 0, 0, 1, 1, 1, 1, 'Handguards of the Enclave'),
|
|
(34360, 45232, 0, 0, 0, 1, 1, 1, 1, 'Runed Ironhide Boots'),
|
|
(34360, 45233, 0, 0, 0, 1, 1, 1, 1, 'Stormrune Edge'),
|
|
(34360, 45234, 0, 0, 0, 1, 1, 1, 1, 'Rapture'),
|
|
(34360, 45235, 0, 0, 0, 1, 1, 1, 1, 'Radiant Seal'),
|
|
(34360, 45236, 0, 0, 0, 1, 1, 1, 1, 'Unblinking Eye'),
|
|
(34360, 45237, 0, 0, 0, 1, 1, 1, 1, 'Phaelia\'s Vestments of the Sprouting Seed'),
|
|
(34360, 45238, 0, 0, 0, 1, 1, 1, 1, 'Overload Legwraps'),
|
|
(34360, 45239, 0, 0, 0, 1, 1, 1, 1, 'Runeshaper\'s Gloves'),
|
|
(34360, 45240, 0, 0, 0, 1, 1, 1, 1, 'Raiments of the Iron Council'),
|
|
(34361, 45695, 0, 0, 0, 1, 1, 1, 1, 'Spire of Withering Dreams'),
|
|
(34361, 45696, 0, 0, 0, 1, 1, 1, 1, 'Mark of the Unyielding'),
|
|
(34361, 45697, 0, 0, 0, 1, 1, 1, 1, 'Shoulderguards of the Solemn Watch'),
|
|
(34361, 45698, 0, 0, 0, 1, 1, 1, 1, 'Sabatons of the Iron Watcher'),
|
|
(34361, 45699, 0, 0, 0, 1, 1, 1, 1, 'Pendant of the Piercing Glare'),
|
|
(34361, 45700, 0, 0, 0, 1, 1, 1, 1, 'Stoneguard'),
|
|
(34361, 45701, 0, 0, 0, 1, 1, 1, 1, 'Greaves of the Earthbinder'),
|
|
(34361, 45702, 0, 0, 0, 1, 1, 1, 1, 'Emerald Signet Ring'),
|
|
(34361, 45703, 0, 0, 0, 1, 1, 1, 1, 'Spark of Hope'),
|
|
(34361, 45704, 0, 0, 0, 1, 1, 1, 1, 'Shawl of the Shattered Giant'),
|
|
(34362, 45261, 0, 0, 0, 1, 1, 1, 1, 'Giant\'s Bane'),
|
|
(34362, 45262, 0, 0, 0, 1, 1, 1, 1, 'Necklace of Unerring Mettle'),
|
|
(34362, 45263, 0, 0, 0, 1, 1, 1, 1, 'Wrathstone'),
|
|
(34362, 45264, 0, 0, 0, 1, 1, 1, 1, 'Decimator\'s Armguards'),
|
|
(34362, 45265, 0, 0, 0, 1, 1, 1, 1, 'Shoulderpads of the Monolith'),
|
|
(34362, 45266, 0, 0, 0, 1, 1, 1, 1, 'Malice'),
|
|
(34362, 45267, 0, 0, 0, 1, 1, 1, 1, 'Saronite Plated Legguards'),
|
|
(34362, 45268, 0, 0, 0, 1, 1, 1, 1, 'Gloves of the Pythonic Guardian'),
|
|
(34362, 45269, 0, 0, 0, 1, 1, 1, 1, 'Unfaltering Armguards'),
|
|
(34362, 45270, 0, 0, 0, 1, 1, 1, 1, 'Idol of the Crying Wind'),
|
|
(34362, 45271, 0, 0, 0, 1, 1, 1, 1, 'Ironmender'),
|
|
(34362, 45272, 0, 0, 0, 1, 1, 1, 1, 'Robes of the Umbral Brute'),
|
|
(34362, 45273, 0, 0, 0, 1, 1, 1, 1, 'Handwraps of Plentiful Recovery'),
|
|
(34362, 45274, 0, 0, 0, 1, 1, 1, 1, 'Leggings of the Stoneweaver'),
|
|
(34362, 45275, 0, 0, 0, 1, 1, 1, 1, 'Bracers of Unleashed Magic'),
|
|
(34363, 45707, 0, 0, 0, 1, 1, 1, 1, 'Shieldwall of the Breaker'),
|
|
(34363, 45708, 0, 0, 0, 1, 1, 1, 1, 'Archaedas\' Lost Legplates'),
|
|
(34363, 45709, 0, 0, 0, 1, 1, 1, 1, 'Nimble Climber\'s Belt'),
|
|
(34363, 45711, 0, 0, 0, 1, 1, 1, 1, 'Ironaya\'s Discarded Mantle'),
|
|
(34363, 45712, 0, 0, 0, 1, 1, 1, 1, 'Chestplate of Titanic Fury'),
|
|
(34363, 45713, 0, 0, 0, 1, 1, 1, 1, 'Nurturing Touch'),
|
|
(34363, 45832, 0, 0, 0, 1, 1, 1, 1, 'Mantle of the Preserver'),
|
|
(34363, 45864, 0, 0, 0, 1, 1, 1, 1, 'Cover of the Keepers'),
|
|
(34363, 45865, 0, 0, 0, 1, 1, 1, 1, 'Raiments of the Corrupted'),
|
|
(34363, 45866, 0, 0, 0, 1, 1, 1, 1, 'Elemental Focus Stone'),
|
|
(34364, 45315, 0, 0, 0, 1, 1, 1, 1, 'Stonerender'),
|
|
(34364, 45319, 0, 0, 0, 1, 1, 1, 1, 'Cloak of the Makers'),
|
|
(34364, 45320, 0, 0, 0, 1, 1, 1, 1, 'Shoulderplates of the Eternal'),
|
|
(34364, 45325, 0, 0, 0, 1, 1, 1, 1, 'Gloves of the Stonereaper'),
|
|
(34364, 45326, 0, 0, 0, 1, 1, 1, 1, 'Platinum Band of the Aesir'),
|
|
(34364, 45327, 0, 0, 0, 1, 1, 1, 1, 'Siren\'s Cry'),
|
|
(34364, 45334, 0, 0, 0, 1, 1, 1, 1, 'Unbreakable Chestguard'),
|
|
(34364, 45434, 0, 0, 0, 1, 1, 1, 1, 'Greaves of the Rockmender'),
|
|
(34364, 45435, 0, 0, 0, 1, 1, 1, 1, 'Cowl of the Absolute'),
|
|
(34364, 45436, 0, 0, 0, 1, 1, 1, 1, 'Libram of the Resolute'),
|
|
(34364, 45437, 0, 0, 0, 1, 1, 1, 1, 'Runescribed Blade'),
|
|
(34364, 45438, 0, 0, 0, 1, 1, 1, 1, 'Ring of the Faithful Servant'),
|
|
(34364, 45439, 0, 0, 0, 1, 1, 1, 1, 'Unwavering Stare'),
|
|
(34364, 45440, 0, 0, 0, 1, 1, 1, 1, 'Amice of the Stoic Watch'),
|
|
(34364, 45441, 0, 0, 0, 1, 1, 1, 1, 'Sandals of the Ancient Keeper'),
|
|
(34365, 45934, 0, 0, 0, 1, 1, 1, 1, 'Unraveling Reach'),
|
|
(34365, 45935, 0, 0, 0, 1, 1, 1, 1, 'Ironbark Faceguard'),
|
|
(34365, 45936, 0, 0, 0, 1, 1, 1, 1, 'Legplates of Flourishing Resolve'),
|
|
(34365, 45940, 0, 0, 0, 1, 1, 1, 1, 'Tunic of the Limber Stalker'),
|
|
(34365, 45941, 0, 0, 0, 1, 1, 1, 1, 'Chestguard of the Lasher'),
|
|
(34366, 45479, 0, 0, 0, 1, 1, 1, 1, 'The Lifebinder'),
|
|
(34366, 45480, 0, 0, 0, 1, 1, 1, 1, 'Nymph Heart Charm'),
|
|
(34366, 45481, 0, 0, 0, 1, 1, 1, 1, 'Gauntlets of Ruthless Reprisal'),
|
|
(34366, 45482, 0, 0, 0, 1, 1, 1, 1, 'Leggings of the Lifetender'),
|
|
(34366, 45483, 0, 0, 0, 1, 1, 1, 1, 'Boots of the Servant'),
|
|
(34367, 45454, 0, 0, 0, 1, 1, 1, 1, 'Frost-bound Chain Bracers'),
|
|
(34367, 45458, 0, 0, 0, 1, 1, 1, 1, 'Stormedge'),
|
|
(34367, 45872, 0, 0, 0, 1, 1, 1, 1, 'Avalanche'),
|
|
(34367, 45873, 0, 0, 0, 1, 1, 1, 1, 'Winter\'s Frigid Embrace'),
|
|
(34367, 45874, 0, 0, 0, 1, 1, 1, 1, 'Signet of Winter'),
|
|
(34368, 45450, 0, 0, 0, 1, 1, 1, 1, 'Northern Barrier'),
|
|
(34368, 45451, 0, 0, 0, 1, 1, 1, 1, 'Frozen Loop'),
|
|
(34368, 45452, 0, 0, 0, 1, 1, 1, 1, 'Frostplate Greaves'),
|
|
(34368, 45453, 0, 0, 0, 1, 1, 1, 1, 'Winter\'s Icy Embrace'),
|
|
(34368, 45454, 0, 0, 0, 1, 1, 1, 1, 'Frost-bound Chain Bracers'),
|
|
(34369, 45972, 0, 0, 0, 1, 1, 1, 1, 'Pulse Baton'),
|
|
(34369, 45973, 0, 0, 0, 1, 1, 1, 1, 'Stylish Power Cape'),
|
|
(34369, 45974, 0, 0, 0, 1, 1, 1, 1, 'Shoulderguards of Assimilation'),
|
|
(34369, 45975, 0, 0, 0, 1, 1, 1, 1, 'Cable of the Metrognome'),
|
|
(34369, 45976, 0, 0, 0, 1, 1, 1, 1, 'Static Charge Handwraps'),
|
|
(34370, 45489, 0, 0, 0, 1, 1, 1, 1, 'Insanity\'s Grip'),
|
|
(34370, 45490, 0, 0, 0, 1, 1, 1, 1, 'Pandora\'s Plea'),
|
|
(34370, 45491, 0, 0, 0, 1, 1, 1, 1, 'Waistguard of the Creator'),
|
|
(34370, 45492, 0, 0, 0, 1, 1, 1, 1, 'Malleable Steelweave Mantle'),
|
|
(34370, 45493, 0, 0, 0, 1, 1, 1, 1, 'Asimov\'s Drape'),
|
|
(34371, 45892, 0, 0, 0, 1, 1, 1, 1, 'Legacy of Thunder'),
|
|
(34371, 45893, 0, 0, 0, 1, 1, 1, 1, 'Guise of the Midgard Serpent'),
|
|
(34371, 45894, 0, 0, 0, 1, 1, 1, 1, 'Leggings of Unstable Discharge'),
|
|
(34371, 45895, 0, 0, 0, 1, 1, 1, 1, 'Belt of the Blood Pit'),
|
|
(34371, 45927, 0, 0, 0, 1, 1, 1, 1, 'Handwraps of Resonance'),
|
|
(34372, 45463, 0, 0, 0, 1, 1, 1, 1, 'Vulmir, the Northern Tempest'),
|
|
(34372, 45466, 0, 0, 0, 1, 1, 1, 1, 'Scale of Fates'),
|
|
(34372, 45467, 0, 0, 0, 1, 1, 1, 1, 'Belt of the Betrayed'),
|
|
(34372, 45468, 0, 0, 0, 1, 1, 1, 1, 'Leggings of Lost Love'),
|
|
(34372, 45469, 0, 0, 0, 1, 1, 1, 1, 'Sif\'s Promise'),
|
|
(34373, 45996, 0, 0, 0, 1, 1, 1, 1, 'Hoperender'),
|
|
(34373, 45997, 0, 0, 0, 1, 1, 1, 1, 'Gauntlets of the Wretched'),
|
|
(34373, 46008, 0, 0, 0, 1, 1, 1, 1, 'Choker of the Abyss'),
|
|
(34373, 46009, 0, 0, 0, 1, 1, 1, 1, 'Bindings of the Depths'),
|
|
(34373, 46010, 0, 0, 0, 1, 1, 1, 1, 'Darkstone Ring'),
|
|
(34373, 46011, 0, 0, 0, 1, 1, 1, 1, 'Shadowbite'),
|
|
(34373, 46012, 0, 0, 0, 1, 1, 1, 1, 'Vestments of the Piercing Light'),
|
|
(34373, 46013, 0, 0, 0, 1, 1, 1, 1, 'Underworld Mantle'),
|
|
(34373, 46014, 0, 0, 0, 1, 1, 1, 1, 'Saronite Animus Cloak'),
|
|
(34373, 46015, 0, 0, 0, 1, 1, 1, 1, 'Pendant of Endless Despair'),
|
|
(34374, 45145, 0, 0, 0, 1, 1, 1, 1, 'Libram of the Sacred Shield'),
|
|
(34374, 45501, 0, 0, 0, 1, 1, 1, 1, 'Boots of the Underdweller'),
|
|
(34374, 45502, 0, 0, 0, 1, 1, 1, 1, 'Helm of the Faceless'),
|
|
(34374, 45503, 0, 0, 0, 1, 1, 1, 1, 'Metallic Loop of the Sufferer'),
|
|
(34374, 45504, 0, 0, 0, 1, 1, 1, 1, 'Darkcore Leggings'),
|
|
(34374, 45505, 0, 0, 0, 1, 1, 1, 1, 'Belt of Clinging Hope'),
|
|
(34374, 45507, 0, 0, 0, 1, 1, 1, 1, 'The General\'s Heart'),
|
|
(34374, 45508, 0, 0, 0, 1, 1, 1, 1, 'Belt of the Darkspeaker'),
|
|
(34374, 45509, 0, 0, 0, 1, 1, 1, 1, 'Idol of the Corruptor'),
|
|
(34374, 45512, 0, 0, 0, 1, 1, 1, 1, 'Grips of the Unbroken'),
|
|
(34374, 45513, 0, 0, 0, 1, 1, 1, 1, 'Boots of the Forgotten Depths'),
|
|
(34374, 45514, 0, 0, 0, 1, 1, 1, 1, 'Mantle of the Unknowing'),
|
|
(34374, 45515, 0, 0, 0, 1, 1, 1, 1, 'Ring of the Vacant Eye'),
|
|
(34375, 46016, 0, 0, 0, 1, 1, 1, 1, 'Abaddon'),
|
|
(34375, 46018, 0, 0, 0, 1, 1, 1, 1, 'Deliverance'),
|
|
(34375, 46019, 0, 0, 0, 1, 1, 1, 1, 'Leggings of the Insatiable'),
|
|
(34375, 46021, 0, 0, 0, 1, 1, 1, 1, 'Royal Seal of King Llane'),
|
|
(34375, 46022, 0, 0, 0, 1, 1, 1, 1, 'Pendant of a Thousand Maws'),
|
|
(34375, 46024, 0, 0, 0, 1, 1, 1, 1, 'Kingsbane'),
|
|
(34375, 46025, 0, 0, 0, 1, 1, 1, 1, 'Devotion'),
|
|
(34375, 46028, 0, 0, 0, 1, 1, 1, 1, 'Faceguard of the Eyeless Horror'),
|
|
(34375, 46030, 0, 0, 0, 1, 1, 1, 1, 'Treads of the Dragon Council'),
|
|
(34375, 46031, 0, 0, 0, 1, 1, 1, 1, 'Touch of Madness'),
|
|
(34376, 45521, 0, 0, 0, 1, 1, 1, 1, 'Earthshaper'),
|
|
(34376, 45522, 0, 0, 0, 1, 1, 1, 1, 'Blood of the Old God'),
|
|
(34376, 45523, 0, 0, 0, 1, 1, 1, 1, 'Garona\'s Guise'),
|
|
(34376, 45524, 0, 0, 0, 1, 1, 1, 1, 'Chestguard of Insidious Intent'),
|
|
(34376, 45525, 0, 0, 0, 1, 1, 1, 1, 'Godbane Signet'),
|
|
(34376, 45527, 0, 0, 0, 1, 1, 1, 1, 'Soulscribe'),
|
|
(34376, 45529, 0, 0, 0, 1, 1, 1, 1, 'Shawl of Haunted Memories'),
|
|
(34376, 45530, 0, 0, 0, 1, 1, 1, 1, 'Sanity\'s Bond'),
|
|
(34376, 45531, 0, 0, 0, 1, 1, 1, 1, 'Chestguard of the Fallen God'),
|
|
(34376, 45532, 0, 0, 0, 1, 1, 1, 1, 'Cowl of Dark Whispers'),
|
|
(34377, 30448, 0, 0, 0, 1, 1, 1, 1, 'Talon of Al\'ar'),
|
|
(34377, 32944, 0, 0, 0, 1, 1, 1, 1, 'Talon of the Phoenix'),
|
|
(34379, 50452, 0, 6, 0, 1, 1, 1, 1, 'Wodin\'s Lucky Necklace'),
|
|
(34379, 50453, 0, 5, 0, 1, 1, 1, 1, 'Ring of Rotting Sinew'),
|
|
(34380, 40634, 0, 0, 0, 1, 1, 1, 1, 'Legplates of the Lost Conqueror'),
|
|
(34380, 40635, 0, 0, 0, 1, 1, 1, 1, 'Legplates of the Lost Protector'),
|
|
(34380, 40636, 0, 0, 0, 1, 1, 1, 1, 'Legplates of the Lost Vanquisher'),
|
|
(34381, 40637, 0, 0, 0, 1, 1, 1, 1, 'Mantle of the Lost Conqueror'),
|
|
(34381, 40638, 0, 0, 0, 1, 1, 1, 1, 'Mantle of the Lost Protector'),
|
|
(34381, 40639, 0, 0, 0, 1, 1, 1, 1, 'Mantle of the Lost Vanquisher'),
|
|
(34382, 40625, 0, 0, 0, 1, 1, 1, 1, 'Breastplate of the Lost Conqueror'),
|
|
(34382, 40626, 0, 0, 0, 1, 1, 1, 1, 'Breastplate of the Lost Protector'),
|
|
(34382, 40627, 0, 0, 0, 1, 1, 1, 1, 'Breastplate of the Lost Vanquisher'),
|
|
(34383, 40625, 0, 0, 0, 1, 1, 1, 1, 'Breastplate of the Lost Conqueror'),
|
|
(34383, 40626, 0, 0, 0, 1, 1, 1, 1, 'Breastplate of the Lost Protector'),
|
|
(34383, 40627, 0, 0, 0, 1, 1, 1, 1, 'Breastplate of the Lost Vanquisher'),
|
|
(34383, 40634, 0, 0, 0, 1, 1, 1, 1, 'Legplates of the Lost Conqueror'),
|
|
(34383, 40635, 0, 0, 0, 1, 1, 1, 1, 'Legplates of the Lost Protector'),
|
|
(34383, 40636, 0, 0, 0, 1, 1, 1, 1, 'Legplates of the Lost Vanquisher'),
|
|
(34383, 40637, 0, 0, 0, 1, 1, 1, 1, 'Mantle of the Lost Conqueror'),
|
|
(34383, 40638, 0, 0, 0, 1, 1, 1, 1, 'Mantle of the Lost Protector'),
|
|
(34383, 40639, 0, 0, 0, 1, 1, 1, 1, 'Mantle of the Lost Vanquisher'),
|
|
(35001, 27475, 0, 0, 0, 1, 3, 1, 1, 'Gauntlets of the Bold'),
|
|
(35001, 27510, 0, 0, 0, 1, 3, 1, 1, 'Tidefury Gauntlets'),
|
|
(35001, 27737, 0, 0, 0, 1, 2, 1, 1, 'Moonglade Shoulders'),
|
|
(35001, 27738, 0, 0, 0, 1, 2, 1, 1, 'Incanter\'s Pauldrons'),
|
|
(35001, 27795, 0, 0, 0, 1, 2, 1, 1, 'Sash of Serpentra'),
|
|
(35001, 27799, 0, 0, 0, 1, 2, 1, 1, 'Vermillion Robes of the Dominant'),
|
|
(35001, 27801, 0, 0, 0, 1, 2, 1, 1, 'Beast Lord Mantle'),
|
|
(35001, 27804, 0, 0, 0, 1, 3, 1, 1, 'Devilshark Cape'),
|
|
(35001, 27805, 0, 0, 0, 1, 3, 1, 1, 'Ring of the Silver Hand'),
|
|
(35001, 27806, 0, 0, 0, 1, 3, 1, 1, 'Fathomheart Gauntlets'),
|
|
(35001, 27874, 0, 0, 0, 1, 3, 1, 1, 'Beast Lord Leggings'),
|
|
(35001, 28203, 0, 0, 0, 1, 2, 1, 1, 'Breastplate of the Righteous'),
|
|
(35002, 27778, 0, 0, 0, 1, 2, 1, 1, 'Spaulders of Oblivion'),
|
|
(35002, 27803, 0, 0, 0, 1, 2, 1, 1, 'Shoulderguards of the Bold'),
|
|
(35002, 27902, 0, 0, 0, 1, 2, 1, 1, 'Silent Slippers of Meditation'),
|
|
(35002, 27903, 0, 0, 0, 1, 2, 1, 1, 'Sonic Spear'),
|
|
(35002, 27905, 0, 0, 0, 1, 2, 1, 1, 'Greatsword of Horrid Dreams'),
|
|
(35002, 27908, 0, 0, 0, 1, 2, 1, 1, 'Leggings of Assassination'),
|
|
(35002, 27909, 0, 0, 0, 1, 2, 1, 1, 'Tidefury Kilt'),
|
|
(35002, 27910, 0, 0, 0, 1, 2, 1, 1, 'Silvermoon Crest Shield'),
|
|
(35002, 27912, 0, 0, 0, 1, 2, 1, 1, 'Harness of the Deep Currents'),
|
|
(35002, 27913, 0, 0, 0, 1, 2, 1, 1, 'Whispering Blade of Slaying'),
|
|
(35002, 28230, 0, 0, 0, 1, 2, 1, 1, 'Hallowed Garments'),
|
|
(35002, 28232, 0, 0, 0, 1, 2, 1, 1, 'Robe of Oblivion'),
|
|
(35003, 27474, 0, 0, 0, 1, 2, 1, 1, 'Beast Lord Handguards'),
|
|
(35003, 27527, 0, 0, 0, 1, 2, 1, 1, 'Greaves of the Shatterer'),
|
|
(35003, 27528, 0, 0, 0, 1, 2, 1, 1, 'Gauntlets of Desolation'),
|
|
(35003, 27529, 0, 0, 0, 1, 2, 1, 1, 'Figurine of the Colossus'),
|
|
(35003, 27531, 0, 0, 0, 1, 2, 1, 1, 'Wastewalker Gloves'),
|
|
(35003, 27533, 0, 0, 0, 1, 2, 1, 1, 'Demonblood Eviscerator'),
|
|
(35003, 27534, 0, 0, 0, 1, 2, 1, 1, 'Hortus\' Seal of Brilliance'),
|
|
(35003, 27535, 0, 0, 0, 1, 2, 1, 1, 'Gauntlets of the Righteous'),
|
|
(35003, 27536, 0, 0, 0, 1, 2, 1, 1, 'Hallowed Handwraps'),
|
|
(35003, 27537, 0, 0, 0, 1, 2, 1, 1, 'Gloves of Oblivion'),
|
|
(35003, 27538, 0, 0, 0, 1, 2, 1, 1, 'Lightsworn Hammer'),
|
|
(35003, 27540, 0, 0, 0, 1, 2, 1, 1, 'Nexus Torch'),
|
|
(35004, 27509, 0, 0, 0, 1, 2, 1, 1, 'Handgrips of Assassination'),
|
|
(35004, 27839, 0, 0, 0, 1, 2, 1, 1, 'Legplates of the Righteous'),
|
|
(35004, 27873, 0, 0, 0, 1, 2, 1, 1, 'Moonglade Pants'),
|
|
(35004, 27977, 0, 0, 0, 1, 2, 1, 1, 'Legplates of the Bold'),
|
|
(35004, 28188, 0, 0, 0, 1, 3, 1, 1, 'Bloodfire Greatstaff'),
|
|
(35004, 28189, 0, 0, 0, 1, 3, 1, 1, 'Latro\'s Shifting Sword'),
|
|
(35004, 28190, 0, 0, 0, 1, 3, 1, 1, 'Scarab of the Infinite Cycle'),
|
|
(35004, 28192, 0, 0, 0, 1, 3, 1, 1, 'Helm of Desolation'),
|
|
(35004, 28193, 0, 0, 0, 1, 3, 1, 1, 'Mana-Etched Crown'),
|
|
(35004, 28194, 0, 0, 0, 1, 2, 1, 1, 'Primal Surge Bracers'),
|
|
(35004, 28206, 0, 0, 0, 1, 3, 1, 1, 'Cowl of the Guiltless'),
|
|
(35004, 28207, 0, 0, 0, 1, 2, 1, 1, 'Pauldrons of the Crimson Flight'),
|
|
(35005, 27899, 0, 0, 0, 1, 5, 1, 1, 'Mana Wrath'),
|
|
(35005, 28202, 0, 0, 0, 1, 2, 1, 1, 'Moonglade Robe'),
|
|
(35005, 28204, 0, 0, 0, 1, 2, 1, 1, 'Tunic of Assassination'),
|
|
(35005, 28265, 0, 0, 0, 1, 2, 1, 1, 'Dath\'Remar\'s Ring of Defense'),
|
|
(35005, 28266, 0, 0, 0, 1, 2, 1, 1, 'Molten Earth Kilt'),
|
|
(35005, 28267, 0, 0, 0, 1, 2, 1, 1, 'Edge of the Cosmos'),
|
|
(35005, 28269, 0, 0, 0, 1, 2, 1, 1, 'Baba\'s Cloak of Arcanistry'),
|
|
(35005, 28275, 0, 0, 0, 1, 5, 1, 1, 'Beast Lord Helm'),
|
|
(35005, 28278, 0, 0, 0, 1, 5, 1, 1, 'Incanter\'s Cowl'),
|
|
(35005, 28285, 0, 0, 0, 1, 5, 1, 1, 'Helm of the Righteous'),
|
|
(35005, 28286, 0, 0, 0, 1, 5, 1, 1, 'Telescopic Sharprifle'),
|
|
(35005, 28288, 0, 0, 0, 1, 5, 1, 1, 'Abacus of Violent Odds'),
|
|
(35006, 28228, 0, 0, 0, 1, 2, 1, 1, 'Beast Lord Cuirass'),
|
|
(35006, 28229, 0, 0, 0, 1, 2, 1, 1, 'Incanter\'s Robe'),
|
|
(35006, 28341, 0, 0, 0, 1, 2, 1, 1, 'Warpstaff of Arcanum'),
|
|
(35006, 28342, 0, 0, 0, 1, 2, 1, 1, 'Warp Infused Drape'),
|
|
(35006, 28343, 0, 0, 0, 1, 2, 1, 1, 'Jagged Bark Pendant'),
|
|
(35006, 28345, 0, 0, 0, 1, 2, 1, 1, 'Warp Splinter\'s Thorn'),
|
|
(35006, 28347, 0, 0, 0, 1, 2, 1, 1, 'Warpscale Leggings'),
|
|
(35006, 28348, 0, 0, 0, 1, 3, 1, 1, 'Moonglade Cowl'),
|
|
(35006, 28349, 0, 0, 0, 1, 3, 1, 1, 'Tidefury Helm'),
|
|
(35006, 28350, 0, 0, 0, 1, 3, 1, 1, 'Warhelm of the Bold'),
|
|
(35006, 28367, 0, 0, 0, 1, 3, 1, 1, 'Greatsword of Forlorn Visions'),
|
|
(35006, 28370, 0, 0, 0, 1, 3, 1, 1, 'Bangle of Endless Blessings'),
|
|
(35006, 28371, 0, 0, 0, 1, 3, 1, 1, 'Netherfury Cape'),
|
|
(35008, 35294, 0, 0, 0, 1, 3, 1, 1, 'Recipe: Elixir of Empowerment'),
|
|
(35008, 35295, 0, 0, 0, 1, 3, 1, 1, 'Recipe: Haste Potion'),
|
|
(35008, 35296, 0, 0, 0, 1, 3, 1, 1, 'Plans: Adamantite Weapon Chain'),
|
|
(35008, 35297, 0, 0, 0, 1, 3, 1, 1, 'Formula: Enchant Boots - Boar\'s Speed'),
|
|
(35008, 35298, 0, 0, 0, 1, 3, 1, 1, 'Formula: Enchant Boots - Vitality'),
|
|
(35008, 35299, 0, 0, 0, 1, 3, 1, 1, 'Formula: Enchant Boots - Cat\'s Swiftness'),
|
|
(35008, 35300, 0, 0, 0, 1, 3, 1, 1, 'Pattern: Windstrike Gloves'),
|
|
(35008, 35301, 0, 0, 0, 1, 3, 1, 1, 'Pattern: Netherdrake Gloves'),
|
|
(35008, 35302, 0, 0, 0, 1, 3, 1, 1, 'Pattern: Cobrascale Gloves'),
|
|
(35008, 35303, 0, 0, 0, 1, 3, 1, 1, 'Pattern: Gloves of the Living Touch'),
|
|
(35008, 35304, 0, 0, 0, 1, 3, 1, 1, 'Design: Solid Star of Elune'),
|
|
(35008, 35305, 0, 0, 0, 1, 3, 1, 1, 'Design: Runed Living Ruby'),
|
|
(35008, 35306, 0, 0, 0, 1, 3, 1, 1, 'Design: Bright Living Ruby'),
|
|
(35008, 35307, 0, 0, 0, 1, 3, 1, 1, 'Design: Rigid Dawnstone'),
|
|
(35008, 35308, 0, 0, 0, 1, 3, 1, 1, 'Pattern: Unyielding Bracers'),
|
|
(35008, 35309, 0, 0, 0, 1, 3, 1, 1, 'Pattern: Unyielding Girdle'),
|
|
(35008, 35310, 0, 0, 0, 1, 3, 1, 1, 'Schematic: Healing Potion Injector'),
|
|
(35008, 35311, 0, 0, 0, 1, 3, 1, 1, 'Schematic: Mana Potion Injector'),
|
|
(35009, 17707, 0, 13.3, 0, 1, 1, 1, 1, 'Gemshard Heart'),
|
|
(35009, 17710, 0, 13.3, 0, 1, 1, 1, 1, 'Charstone Dirk'),
|
|
(35009, 17711, 0, 13.3, 0, 1, 1, 1, 1, 'Elemental Rockridge Leggings'),
|
|
(35009, 17713, 0, 16.6, 0, 1, 1, 1, 1, 'Blackstone Ring'),
|
|
(35009, 17714, 0, 16.6, 0, 1, 1, 1, 1, 'Bracers of the Stone Princess'),
|
|
(35009, 17715, 0, 13.3, 0, 1, 1, 1, 1, 'Eye of Theradras'),
|
|
(35009, 17766, 0, 13.3, 0, 1, 1, 1, 1, 'Princess Theradras\' Scepter'),
|
|
(35009, 17780, 0, 0.3, 0, 1, 1, 1, 1, 'Blade of Eternal Darkness'),
|
|
(35010, 10783, 0, 11.11, 0, 1, 1, 1, 1, 'Atal\'ai Spaulders'),
|
|
(35010, 10784, 0, 8.33, 0, 1, 1, 1, 1, 'Atal\'ai Breastplate'),
|
|
(35010, 10785, 0, 13.9, 0, 1, 1, 1, 1, 'Atal\'ai Leggings'),
|
|
(35010, 10786, 0, 22.22, 0, 1, 1, 1, 1, 'Atal\'ai Boots'),
|
|
(35010, 10787, 0, 19.44, 0, 1, 1, 1, 1, 'Atal\'ai Gloves'),
|
|
(35010, 10788, 0, 25, 0, 1, 1, 1, 1, 'Atal\'ai Girdle'),
|
|
(35011, 10795, 0, 0, 0, 1, 1, 1, 1, 'Drakeclaw Band'),
|
|
(35011, 10796, 0, 0, 0, 1, 1, 1, 1, 'Drakestone'),
|
|
(35011, 10797, 0, 0, 0, 1, 1, 1, 1, 'Firebreather'),
|
|
(35011, 12243, 0, 0, 0, 1, 1, 1, 1, 'Smoldering Claw'),
|
|
(35011, 12463, 0, 0, 0, 1, 1, 1, 1, 'Drakefang Butcher'),
|
|
(35011, 12464, 0, 0, 0, 1, 1, 1, 1, 'Bloodfire Talons'),
|
|
(35011, 12465, 0, 0, 0, 1, 1, 1, 1, 'Nightfall Drape'),
|
|
(35011, 12466, 0, 0, 0, 1, 1, 1, 1, 'Dawnspire Cord'),
|
|
(35012, 10838, 0, 15, 0, 1, 1, 1, 1, 'Might of Hakkar'),
|
|
(35012, 10842, 0, 0, 0, 1, 1, 1, 1, 'Windscale Sarong'),
|
|
(35012, 10843, 0, 0, 0, 1, 1, 1, 1, 'Featherskin Cape'),
|
|
(35012, 10844, 0, 15, 0, 1, 1, 1, 1, 'Spire of Hakkar'),
|
|
(35012, 10845, 0, 0, 0, 1, 1, 1, 1, 'Warrior\'s Embrace'),
|
|
(35012, 10846, 0, 0, 0, 1, 1, 1, 1, 'Bloodshot Greaves'),
|
|
(35012, 12462, 0, 1, 0, 1, 1, 1, 1, 'Embrace of the Wind Serpent'),
|
|
(35013, 10828, 0, 15, 0, 1, 1, 1, 1, 'Dire Nail'),
|
|
(35013, 10829, 0, 0, 0, 1, 1, 1, 1, 'The Dragon\'s Eye'),
|
|
(35013, 10833, 0, 0, 0, 1, 1, 1, 1, 'Horns of Eranikus'),
|
|
(35013, 10835, 0, 0, 0, 1, 1, 1, 1, 'Crest of Supremacy'),
|
|
(35013, 10836, 0, 0, 0, 1, 1, 1, 1, 'Rod of Corrosion'),
|
|
(35013, 10837, 0, 15, 0, 1, 1, 1, 1, 'Tooth of Eranikus'),
|
|
(35013, 10847, 0, 1, 0, 1, 1, 1, 1, 'Dragon\'s Call'),
|
|
(35014, 11684, 0, 1, 0, 1, 1, 1, 1, 'Ironfoe'),
|
|
(35014, 11815, 0, 0, 0, 1, 1, 1, 1, 'Hand of Justice'),
|
|
(35014, 11924, 0, 0, 0, 1, 1, 1, 1, 'Robes of the Royal Crown'),
|
|
(35014, 11928, 0, 0, 0, 1, 1, 1, 1, 'Thaurissan\'s Royal Scepter'),
|
|
(35014, 11930, 0, 0, 0, 1, 1, 1, 1, 'The Emperor\'s New Cape'),
|
|
(35014, 11931, 0, 0, 0, 1, 1, 1, 1, 'Dreadforge Retaliator'),
|
|
(35014, 11932, 0, 0, 0, 1, 1, 1, 1, 'Guiding Stave of Wisdom'),
|
|
(35014, 11933, 0, 0, 0, 1, 1, 1, 1, 'Imperial Jewel'),
|
|
(35014, 11934, 0, 0, 0, 1, 1, 1, 1, 'Emperor\'s Seal'),
|
|
(35014, 22204, 0, 0, 0, 1, 1, 1, 1, 'Wristguards of Renown'),
|
|
(35014, 22207, 0, 0, 0, 1, 1, 1, 1, 'Sash of the Grand Hunt'),
|
|
(35015, 1973, 0, 0, 0, 1, 1, 1, 1, 'Orb of Deception'),
|
|
(35015, 4696, 0, 0, 0, 1, 1, 1, 1, 'Lapidis Tankard of Tidesippe'),
|
|
(35015, 5267, 0, 0, 0, 1, 1, 1, 1, 'Scarlet Kris'),
|
|
(35015, 6622, 0, 0, 0, 1, 1, 1, 1, 'Sword of Zeal'),
|
|
(35015, 9402, 0, 0, 0, 1, 1, 1, 1, 'Earthborn Kilt'),
|
|
(35015, 13000, 0, 0, 0, 1, 1, 1, 1, 'Staff of Hale Magefire'),
|
|
(35015, 13001, 0, 0, 0, 1, 1, 1, 1, 'Maiden\'s Circle'),
|
|
(35015, 13002, 0, 0, 0, 1, 1, 1, 1, 'Lady Alizabeth\'s Pendant'),
|
|
(35015, 13004, 0, 0, 0, 1, 1, 1, 1, 'Torch of Austen'),
|
|
(35015, 13006, 0, 0, 0, 1, 1, 1, 1, 'Mass of McGowan'),
|
|
(35015, 13007, 0, 0, 0, 1, 1, 1, 1, 'Mageflame Cloak'),
|
|
(35015, 13015, 0, 0, 0, 1, 1, 1, 1, 'Serathil'),
|
|
(35015, 13023, 0, 0, 0, 1, 1, 1, 1, 'Eaglehorn Long Bow'),
|
|
(35015, 13028, 0, 0, 0, 1, 1, 1, 1, 'Bludstone Hammer'),
|
|
(35015, 13036, 0, 0, 0, 1, 1, 1, 1, 'Assassination Blade'),
|
|
(35015, 13044, 0, 0, 0, 1, 1, 1, 1, 'Demonslayer'),
|
|
(35015, 13047, 0, 0, 0, 1, 1, 1, 1, 'Twig of the World Tree'),
|
|
(35015, 13053, 0, 0, 0, 1, 1, 1, 1, 'Doombringer'),
|
|
(35015, 13060, 0, 0, 0, 1, 1, 1, 1, 'The Needler'),
|
|
(35015, 13070, 0, 0, 0, 1, 1, 1, 1, 'Sapphiron\'s Scale Boots'),
|
|
(35015, 13072, 0, 0, 0, 1, 1, 1, 1, 'Stonegrip Gauntlets'),
|
|
(35015, 13075, 0, 0, 0, 1, 1, 1, 1, 'Direwing Legguards'),
|
|
(35015, 13077, 0, 0, 0, 1, 1, 1, 1, 'Girdle of Uther'),
|
|
(35015, 13083, 0, 0, 0, 1, 1, 1, 1, 'Garrett Family Crest'),
|
|
(35015, 13091, 0, 0, 0, 1, 1, 1, 1, 'Medallion of Grand Marshal Morris'),
|
|
(35015, 13096, 0, 0, 0, 1, 1, 1, 1, 'Band of the Hierophant'),
|
|
(35015, 13101, 0, 0, 0, 1, 1, 1, 1, 'Wolfrunner Shoes'),
|
|
(35015, 13107, 0, 0, 0, 1, 1, 1, 1, 'Magiskull Cuffs'),
|
|
(35015, 13113, 0, 0, 0, 1, 1, 1, 1, 'Feathermoon Headdress'),
|
|
(35015, 13116, 0, 0, 0, 1, 1, 1, 1, 'Spaulders of the Unseen'),
|
|
(35015, 13118, 0, 0, 0, 1, 1, 1, 1, 'Serpentine Sash'),
|
|
(35015, 13123, 0, 0, 0, 1, 1, 1, 1, 'Dreamwalker Armor'),
|
|
(35015, 13133, 0, 0, 0, 1, 1, 1, 1, 'Drakesfire Epaulets'),
|
|
(35015, 13135, 0, 0, 0, 1, 1, 1, 1, 'Lordly Armguards'),
|
|
(35015, 13146, 0, 0, 0, 1, 1, 1, 1, 'Shell Launcher Shotgun'),
|
|
(35015, 23197, 0, 0, 0, 1, 1, 1, 1, 'Idol of the Moon'),
|
|
(35015, 23199, 0, 0, 0, 1, 1, 1, 1, 'Totem of the Storm'),
|
|
(35015, 23203, 0, 0, 0, 1, 1, 1, 1, 'Libram of Fervor'),
|
|
(35015, 24222, 0, 0, 0, 1, 1, 1, 1, 'The Shadowfoot Stabber'),
|
|
(35016, 18332, 0, 0, 0, 1, 2, 1, 1, 'Libram of Rapidity'),
|
|
(35016, 18333, 0, 0, 0, 1, 2, 1, 1, 'Libram of Focus'),
|
|
(35016, 18356, 0, 0, 0, 1, 1, 1, 1, 'Garona: A Study on Stealth and Treachery'),
|
|
(35016, 18357, 0, 0, 0, 1, 1, 1, 1, 'Codex of Defense'),
|
|
(35016, 18358, 0, 0, 0, 1, 1, 1, 1, 'The Arcanist\'s Cookbook'),
|
|
(35016, 18359, 0, 0, 0, 1, 1, 1, 1, 'The Light and How to Swing It'),
|
|
(35016, 18360, 0, 0, 0, 1, 1, 1, 1, 'Harnessing Shadows'),
|
|
(35016, 18361, 0, 0, 0, 1, 1, 1, 1, 'The Greatest Race of Hunters'),
|
|
(35016, 18362, 0, 0, 0, 1, 1, 1, 1, 'Holy Bologna: What the Light Won\'t Tell You'),
|
|
(35016, 18363, 0, 0, 0, 1, 1, 1, 1, 'Frost Shock and You'),
|
|
(35016, 18364, 0, 0, 0, 1, 1, 1, 1, 'The Emerald Dream'),
|
|
(35016, 18401, 0, 0, 0, 1, 1, 1, 1, 'Foror\'s Compendium of Dragon Slaying'),
|
|
(35017, 18309, 0, 0, 0, 1, 1, 1, 1, 'Gloves of Restoration'),
|
|
(35017, 18310, 0, 0, 0, 1, 1, 1, 1, 'Fiendish Machete'),
|
|
(35017, 18312, 0, 0, 0, 1, 1, 1, 1, 'Energized Chestplate'),
|
|
(35017, 18314, 0, 0, 0, 1, 1, 1, 1, 'Ring of Demonic Guile'),
|
|
(35017, 18315, 0, 0, 0, 1, 1, 1, 1, 'Ring of Demonic Potency'),
|
|
(35017, 18318, 0, 0, 0, 1, 1, 1, 1, 'Merciful Greaves'),
|
|
(35017, 18321, 0, 0, 0, 1, 1, 1, 1, 'Energetic Rod'),
|
|
(35017, 18326, 0, 0, 0, 1, 1, 1, 1, 'Razor Gauntlets'),
|
|
(35017, 18327, 0, 0, 0, 1, 1, 1, 1, 'Whipvine Cord'),
|
|
(35017, 18328, 0, 0, 0, 1, 1, 1, 1, 'Shadewood Cloak'),
|
|
(35018, 18450, 0, 0, 0, 1, 1, 1, 1, 'Robe of Combustion'),
|
|
(35018, 18451, 0, 0, 0, 1, 1, 1, 1, 'Hyena Hide Belt'),
|
|
(35018, 18458, 0, 0, 0, 1, 1, 1, 1, 'Modest Armguards'),
|
|
(35018, 18459, 0, 0, 0, 1, 1, 1, 1, 'Gallant\'s Wristguards'),
|
|
(35018, 18460, 0, 0, 0, 1, 1, 1, 1, 'Unsophisticated Hand Cannon'),
|
|
(35018, 18462, 0, 0, 0, 1, 1, 1, 1, 'Jagged Bone Fist'),
|
|
(35018, 18463, 0, 0, 0, 1, 1, 1, 1, 'Ogre Pocket Knife'),
|
|
(35018, 18464, 0, 0, 0, 1, 1, 1, 1, 'Gordok Nose Ring'),
|
|
(35018, 18493, 0, 0, 0, 1, 1, 1, 1, 'Bulky Iron Spaulders'),
|
|
(35018, 18494, 0, 0, 0, 1, 1, 1, 1, 'Denwatcher\'s Shoulders'),
|
|
(35018, 18496, 0, 0, 0, 1, 1, 1, 1, 'Heliotrope Cloak'),
|
|
(35018, 18497, 0, 0, 0, 1, 1, 1, 1, 'Sublime Wristguards'),
|
|
(35018, 18498, 0, 0, 0, 1, 1, 1, 1, 'Hedgecutter'),
|
|
(35019, 18520, 0, 0, 0, 1, 1, 1, 1, 'Barbarous Blade'),
|
|
(35019, 18521, 0, 0, 0, 1, 1, 1, 1, 'Grimy Metal Boots'),
|
|
(35019, 18522, 0, 0, 0, 1, 1, 1, 1, 'Band of the Ogre King'),
|
|
(35019, 18523, 0, 0, 0, 1, 1, 1, 1, 'Brightly Glowing Stone'),
|
|
(35019, 18524, 0, 0, 0, 1, 1, 1, 1, 'Leggings of Destruction'),
|
|
(35019, 18525, 0, 0, 0, 1, 1, 1, 1, 'Bracers of Prosperity'),
|
|
(35019, 18526, 0, 0, 0, 1, 1, 1, 1, 'Crown of the Ogre King'),
|
|
(35019, 18527, 0, 0, 0, 1, 1, 1, 1, 'Harmonious Gauntlets'),
|
|
(35020, 18370, 0, 0, 0, 1, 1, 1, 1, 'Vigilance Charm'),
|
|
(35020, 18372, 0, 0, 0, 1, 1, 1, 1, 'Blade of the New Moon'),
|
|
(35020, 18377, 0, 0, 0, 1, 1, 1, 1, 'Quickdraw Gloves'),
|
|
(35020, 18379, 0, 0, 0, 1, 1, 1, 1, 'Odious Greaves'),
|
|
(35020, 18381, 0, 0, 0, 1, 1, 1, 1, 'Evil Eye Pendant'),
|
|
(35020, 18384, 0, 0, 0, 1, 1, 1, 1, 'Bile-etched Spaulders'),
|
|
(35020, 18385, 0, 0, 0, 1, 1, 1, 1, 'Robe of Everlasting Night'),
|
|
(35020, 18389, 0, 0, 0, 1, 1, 1, 1, 'Cloak of the Cosmos'),
|
|
(35020, 18391, 0, 0, 0, 1, 1, 1, 1, 'Eyestalk Cord'),
|
|
(35020, 18394, 0, 0, 0, 1, 1, 1, 1, 'Demon Howl Wristguards'),
|
|
(35021, 18373, 0, 0, 0, 1, 1, 1, 1, 'Chestplate of Tranquility'),
|
|
(35021, 18375, 0, 0, 0, 1, 1, 1, 1, 'Bracers of the Eclipse'),
|
|
(35021, 18376, 0, 0, 0, 1, 1, 1, 1, 'Timeworn Mace'),
|
|
(35021, 18378, 0, 0, 0, 1, 1, 1, 1, 'Silvermoon Leggings'),
|
|
(35021, 18380, 0, 0, 0, 1, 1, 1, 1, 'Eldritch Reinforced Legplates'),
|
|
(35021, 18382, 0, 0, 0, 1, 1, 1, 1, 'Fluctuating Cloak'),
|
|
(35021, 18388, 0, 0, 0, 1, 1, 1, 1, 'Stoneshatter'),
|
|
(35021, 18392, 0, 0, 0, 1, 1, 1, 1, 'Distracting Dagger'),
|
|
(35021, 18395, 0, 0, 0, 1, 1, 1, 1, 'Emerald Flame Ring'),
|
|
(35021, 18396, 0, 0, 0, 1, 1, 1, 1, 'Mind Carver'),
|
|
(35022, 12583, 0, 8, 0, 1, 1, 1, 1, 'Blackhand Doomsaw'),
|
|
(35022, 12587, 0, 0, 0, 1, 1, 1, 1, 'Eye of Rend'),
|
|
(35022, 12590, 0, 2, 0, 1, 1, 1, 1, 'Felstriker'),
|
|
(35022, 12935, 0, 0, 0, 1, 1, 1, 1, 'Warmaster Legguards'),
|
|
(35022, 12936, 0, 0, 0, 1, 1, 1, 1, 'Battleborn Armbraces'),
|
|
(35022, 12939, 0, 8, 0, 1, 1, 1, 1, 'Dal\'Rend\'s Tribal Guardian'),
|
|
(35022, 12940, 0, 8, 0, 1, 1, 1, 1, 'Dal\'Rend\'s Sacred Charge'),
|
|
(35022, 16733, 0, 0, 0, 1, 1, 1, 1, 'Spaulders of Valor'),
|
|
(35022, 18102, 0, 0, 0, 1, 1, 1, 1, 'Dragonrider Boots'),
|
|
(35022, 18103, 0, 0, 0, 1, 1, 1, 1, 'Band of Rumination'),
|
|
(35022, 18104, 0, 0, 0, 1, 1, 1, 1, 'Feralsurge Girdle'),
|
|
(35022, 22247, 0, 0, 0, 1, 1, 1, 1, 'Faith Healer\'s Boots'),
|
|
(35023, 12709, 0, 0, 0, 1, 1, 1, 1, 'Finkle\'s Skinner'),
|
|
(35023, 12963, 0, 0, 0, 1, 1, 1, 1, 'Blademaster Leggings'),
|
|
(35023, 12964, 0, 20, 0, 1, 1, 1, 1, 'Tristam Legguards'),
|
|
(35023, 12965, 0, 0, 0, 1, 1, 1, 1, 'Spiritshroud Leggings'),
|
|
(35023, 12966, 0, 0, 0, 1, 1, 1, 1, 'Blackmist Armguards'),
|
|
(35023, 12967, 0, 20, 0, 1, 1, 1, 1, 'Bloodmoon Cloak'),
|
|
(35023, 12968, 0, 0, 0, 1, 1, 1, 1, 'Frostweaver Cape'),
|
|
(35023, 12969, 0, 0, 0, 1, 1, 1, 1, 'Seeping Willow'),
|
|
(35023, 16729, 0, 0, 0, 1, 1, 1, 1, 'Lightforge Spaulders'),
|
|
(35023, 22311, 0, 0, 0, 1, 1, 1, 1, 'Ironweave Boots'),
|
|
(35024, 22302, 0, 0, 0, 1, 1, 1, 1, 'Ironweave Cowl'),
|
|
(35024, 22335, 0, 0, 0, 1, 1, 1, 1, 'Lord Valthalak\'s Staff of Command'),
|
|
(35024, 22336, 0, 0, 0, 1, 1, 1, 1, 'Draconian Aegis of the Legion'),
|
|
(35024, 22337, 0, 0, 0, 1, 1, 1, 1, 'Shroud of Domination'),
|
|
(35024, 22339, 0, 0, 0, 1, 1, 1, 1, 'Rune Band of Wizardry'),
|
|
(35024, 22340, 0, 0, 0, 1, 1, 1, 1, 'Pendant of Celerity'),
|
|
(35024, 22342, 0, 0, 0, 1, 1, 1, 1, 'Leggings of Torment'),
|
|
(35024, 22343, 0, 0, 0, 1, 1, 1, 1, 'Handguards of Savagery'),
|
|
(35025, 12592, 0, 2, 0, 1, 1, 1, 1, 'Blackblade of Shahram'),
|
|
(35025, 12602, 0, 18, 0, 1, 1, 1, 1, 'Draconian Deflector'),
|
|
(35025, 13098, 0, 18, 0, 1, 1, 1, 1, 'Painweaver Band'),
|
|
(35025, 13141, 0, 0, 0, 1, 1, 1, 1, 'Tooth of Gnarr'),
|
|
(35025, 13142, 0, 18, 0, 1, 1, 1, 1, 'Brigam Girdle'),
|
|
(35025, 22253, 0, 0, 0, 1, 1, 1, 1, 'Tome of the Lost'),
|
|
(35025, 22267, 0, 0, 0, 1, 1, 1, 1, 'Spellweaver\'s Turban'),
|
|
(35025, 22268, 0, 8, 0, 1, 1, 1, 1, 'Draconic Infused Emblem'),
|
|
(35025, 22269, 0, 18, 0, 1, 1, 1, 1, 'Shadow Prowler\'s Cloak'),
|
|
(35026, 13380, 0, 0, 0, 1, 1, 1, 1, 'Willey\'s Portable Howitzer'),
|
|
(35026, 13381, 0, 0, 0, 1, 1, 1, 1, 'Master Cannoneer Boots'),
|
|
(35026, 13382, 0, 0, 0, 1, 1, 1, 1, 'Cannonball Runner'),
|
|
(35026, 16708, 0, 0, 0, 1, 1, 1, 1, 'Shadowcraft Spaulders'),
|
|
(35026, 18721, 0, 0, 0, 1, 1, 1, 1, 'Barrage Girdle'),
|
|
(35026, 22403, 0, 0, 0, 1, 1, 1, 1, 'Diana\'s Pearl Necklace'),
|
|
(35026, 22404, 0, 0, 0, 1, 1, 1, 1, 'Willey\'s Back Scratcher'),
|
|
(35026, 22405, 0, 0, 0, 1, 1, 1, 1, 'Mantle of the Scarlet Crusade'),
|
|
(35026, 22406, 0, 0, 0, 1, 1, 1, 1, 'Redemption'),
|
|
(35026, 22407, 0, 0, 0, 1, 1, 1, 1, 'Helm of the New Moon'),
|
|
(35027, 12103, 0, 0, 0, 1, 1, 1, 1, 'Star of Mystaria'),
|
|
(35027, 13348, 0, 0, 0, 1, 1, 1, 1, 'Demonshear'),
|
|
(35027, 13353, 0, 2, 0, 1, 1, 1, 1, 'Book of the Dead'),
|
|
(35027, 13358, 0, 0, 0, 1, 1, 1, 1, 'Wyrmtongue Shoulders'),
|
|
(35027, 13359, 0, 0, 0, 1, 1, 1, 1, 'Crown of Tyranny'),
|
|
(35027, 13360, 0, 0, 0, 1, 1, 1, 1, 'Gift of the Elven Magi'),
|
|
(35027, 13369, 0, 0, 0, 1, 1, 1, 1, 'Fire Striders'),
|
|
(35027, 16725, 0, 0, 0, 1, 1, 1, 1, 'Lightforge Boots'),
|
|
(35027, 18717, 0, 0, 0, 1, 1, 1, 1, 'Hammer of the Grand Crusader'),
|
|
(35027, 18718, 0, 0, 0, 1, 1, 1, 1, 'Grand Crusader\'s Helm'),
|
|
(35027, 18720, 0, 0, 0, 1, 1, 1, 1, 'Shroud of the Nathrezim'),
|
|
(35028, 13340, 0, 0, 0, 1, 1, 1, 1, 'Cape of the Black Baron'),
|
|
(35028, 13344, 0, 0, 0, 1, 1, 1, 1, 'Dracorian Gauntlets'),
|
|
(35028, 13345, 0, 0, 0, 1, 1, 1, 1, 'Seal of Rivendare'),
|
|
(35028, 13346, 0, 0, 0, 1, 1, 1, 1, 'Robes of the Exalted'),
|
|
(35028, 13349, 0, 0, 0, 1, 1, 1, 1, 'Scepter of the Unholy'),
|
|
(35028, 13361, 0, 6, 0, 1, 1, 1, 1, 'Skullforge Reaver'),
|
|
(35028, 13368, 0, 6, 0, 1, 1, 1, 1, 'Bonescraper'),
|
|
(35028, 13505, 0, 1, 0, 1, 1, 1, 1, 'Runeblade of Baron Rivendare'),
|
|
(35028, 22408, 0, 0, 0, 1, 1, 1, 1, 'Ritssyn\'s Wand of Bad Mojo'),
|
|
(35028, 22409, 0, 0, 0, 1, 1, 1, 1, 'Tunic of the Crescent Moon'),
|
|
(35028, 22410, 0, 0, 0, 1, 1, 1, 1, 'Gauntlets of Deftness'),
|
|
(35028, 22411, 0, 0, 0, 1, 1, 1, 1, 'Helm of the Executioner'),
|
|
(35028, 22412, 0, 0, 0, 1, 1, 1, 1, 'Thuzadin Mantle'),
|
|
(35030, 13314, 0, 0.36, 0, 1, 1, 1, 1, 'Alanna\'s Embrace'),
|
|
(35030, 13952, 0, 0, 0, 1, 1, 1, 1, 'Iceblade Hacker'),
|
|
(35030, 14340, 0, 0, 0, 1, 1, 1, 1, 'Freezing Lich Robes'),
|
|
(35030, 14487, 0, 0, 0, 1, 1, 1, 1, 'Bonechill Hammer'),
|
|
(35030, 14502, 0, 0, 0, 1, 1, 1, 1, 'Frostbite Girdle'),
|
|
(35030, 14503, 0, 0, 0, 1, 1, 1, 1, 'Death\'s Clutch'),
|
|
(35030, 14522, 0, 0, 0, 1, 1, 1, 1, 'Maelstrom Leggings'),
|
|
(35030, 14525, 0, 0, 0, 1, 1, 1, 1, 'Boneclenched Gauntlets'),
|
|
(35030, 16689, 0, 0, 0, 1, 1, 1, 1, 'Magister\'s Mantle'),
|
|
(35030, 18693, 0, 0, 0, 1, 1, 1, 1, 'Shivery Handwraps'),
|
|
(35030, 18694, 0, 0, 0, 1, 1, 1, 1, 'Shadowy Mail Greaves'),
|
|
(35030, 18695, 0, 0, 0, 1, 1, 1, 1, 'Spellbound Tome'),
|
|
(35030, 18696, 0, 0, 0, 1, 1, 1, 1, 'Intricately Runed Shield'),
|
|
(35031, 14611, 0, 0, 0, 1, 1, 1, 1, 'Bloodmail Hauberk'),
|
|
(35031, 14612, 0, 0, 0, 1, 1, 1, 1, 'Bloodmail Legguards'),
|
|
(35031, 14614, 0, 0, 0, 1, 1, 1, 1, 'Bloodmail Belt'),
|
|
(35031, 14615, 0, 0, 0, 1, 1, 1, 1, 'Bloodmail Gauntlets'),
|
|
(35031, 14616, 0, 0, 0, 1, 1, 1, 1, 'Bloodmail Boots'),
|
|
(35031, 14620, 0, 0, 0, 1, 1, 1, 1, 'Deathbone Girdle'),
|
|
(35031, 14621, 0, 0, 0, 1, 1, 1, 1, 'Deathbone Sabatons'),
|
|
(35031, 14622, 0, 0, 0, 1, 1, 1, 1, 'Deathbone Gauntlets'),
|
|
(35031, 14623, 0, 0, 0, 1, 1, 1, 1, 'Deathbone Legguards'),
|
|
(35031, 14624, 0, 0, 0, 1, 1, 1, 1, 'Deathbone Chestplate'),
|
|
(35031, 14626, 0, 0, 0, 1, 1, 1, 1, 'Necropile Robe'),
|
|
(35031, 14629, 0, 0, 0, 1, 1, 1, 1, 'Necropile Cuffs'),
|
|
(35031, 14631, 0, 0, 0, 1, 1, 1, 1, 'Necropile Boots'),
|
|
(35031, 14632, 0, 0, 0, 1, 1, 1, 1, 'Necropile Leggings'),
|
|
(35031, 14633, 0, 0, 0, 1, 1, 1, 1, 'Necropile Mantle'),
|
|
(35031, 14636, 0, 0, 0, 1, 1, 1, 1, 'Cadaverous Belt'),
|
|
(35031, 14637, 0, 0, 0, 1, 1, 1, 1, 'Cadaverous Armor'),
|
|
(35031, 14638, 0, 0, 0, 1, 1, 1, 1, 'Cadaverous Leggings'),
|
|
(35031, 14640, 0, 0, 0, 1, 1, 1, 1, 'Cadaverous Gloves'),
|
|
(35031, 14641, 0, 0, 0, 1, 1, 1, 1, 'Cadaverous Walkers'),
|
|
(35031, 18680, 0, 0, 0, 1, 1, 1, 1, 'Ancient Bone Bow'),
|
|
(35031, 18681, 0, 0, 0, 1, 1, 1, 1, 'Burial Shawl'),
|
|
(35031, 18682, 0, 0, 0, 1, 1, 1, 1, 'Ghoul Skin Leggings'),
|
|
(35031, 18683, 0, 0, 0, 1, 1, 1, 1, 'Hammer of the Vesper'),
|
|
(35031, 18684, 0, 0, 0, 1, 1, 1, 1, 'Dimly Opalescent Ring'),
|
|
(35031, 23200, 0, 0, 0, 1, 1, 1, 1, 'Totem of Sustaining'),
|
|
(35031, 23201, 0, 0, 0, 1, 1, 1, 1, 'Libram of Divinity'),
|
|
(35032, 35636, 0, 0, 0, 1, 1, 1, 1, 'Tharon\'ja\'s Aegis'),
|
|
(35032, 35637, 0, 0, 0, 1, 1, 1, 1, 'Muradin\'s Lost Greaves'),
|
|
(35032, 35638, 0, 0, 0, 1, 1, 1, 1, 'Helmet of Living Flesh'),
|
|
(35033, 35595, 0, 0, 0, 1, 1, 1, 1, 'Glacier Sharpened Vileblade'),
|
|
(35033, 35596, 0, 0, 0, 1, 1, 1, 1, 'Attuned Crystalline Boots'),
|
|
(35033, 35597, 0, 0, 0, 1, 1, 1, 1, 'Band of Glittering Permafrost'),
|
|
(35034, 33470, 0, 100, 0, 1, 0, 1, 7, 'Frostweave Cloth'),
|
|
(35034, 37728, 0, 0, 0, 1, 1, 1, 1, 'Cloak of the Enemy'),
|
|
(35034, 37729, 0, 0, 0, 1, 1, 1, 1, 'Grips of Sculptured Icicles'),
|
|
(35034, 37730, 0, 0, 0, 1, 1, 1, 1, 'Cleric\'s Linen Shoes'),
|
|
(35034, 37731, 0, 0, 0, 1, 1, 1, 1, 'Opposed Stasis Leggings'),
|
|
(35034, 39152, 0, 25, 0, 1, 0, 1, 1, 'Manual: Heavy Frostweave Bandage'),
|
|
(35034, 43228, 0, 100, 0, 1, 0, 4, 4, 'Stone Keeper\'s Shard'),
|
|
(35034, 43852, 0, 8.5, 0, 1, 0, 1, 1, 'Thick Fur Clothing Scraps'),
|
|
(35035, 35661, 0, 0, 0, 1, 1, 1, 1, 'Signet of Arachnathid Command'),
|
|
(35035, 35662, 0, 0, 0, 1, 1, 1, 1, 'Wing Cover Girdle'),
|
|
(35035, 35663, 0, 0, 0, 1, 1, 1, 1, 'Charmed Silken Cord'),
|
|
(35036, 35612, 0, 0, 0, 1, 1, 1, 1, 'Mantle of Echoing Bats'),
|
|
(35036, 35613, 0, 0, 0, 1, 1, 1, 1, 'Pyramid Embossed Belt'),
|
|
(35036, 35614, 0, 0, 0, 1, 1, 1, 1, 'Volazj\'s Sabatons'),
|
|
(35037, 34109, 0, 0, 0, 1, 1, 1, 1, 'Weather-Beaten Journal'),
|
|
(35037, 37107, 0, 0, 0, 1, 1, 1, 1, 'Leeka\'s Shield'),
|
|
(35037, 37108, 0, 0, 0, 1, 1, 1, 1, 'Dreadlord\'s Blade'),
|
|
(35037, 37110, 0, 0, 0, 1, 1, 1, 1, 'Gauntlets of Dark Conversion'),
|
|
(35037, 37111, 0, 0, 0, 1, 1, 1, 1, 'Soul Preserver'),
|
|
(35037, 37112, 0, 0, 0, 1, 1, 1, 1, 'Beguiling Scepter'),
|
|
(35037, 37113, 0, 0, 0, 1, 1, 1, 1, 'Demonic Fabric Bands'),
|
|
(35037, 37114, 0, 0, 0, 1, 1, 1, 1, 'Gloves of Northern Lordaeron'),
|
|
(35038, 35590, 0, 0, 0, 1, 1, 1, 1, 'Drakkari Hunting Bow'),
|
|
(35038, 35591, 0, 0, 0, 1, 1, 1, 1, 'Shoulderguards of the Ice Troll'),
|
|
(35038, 35592, 0, 0, 0, 1, 1, 1, 1, 'Hauberk of Totemic Mastery'),
|
|
(35038, 43158, 0, 100, 0, 1, 0, 1, 1, 'Drakkari Colossus Fragment'),
|
|
(35038, 43228, 0, 100, 0, 1, 0, 4, 4, 'Stone Keeper\'s Shard'),
|
|
(35039, 43305, 0, 0, 0, 1, 1, 1, 1, 'Shroud of Akali'),
|
|
(35039, 43306, 0, 0, 0, 1, 1, 1, 1, 'Gal\'darah\'s Signet'),
|
|
(35039, 43309, 0, 0, 0, 1, 1, 1, 1, 'Amulet of the Stampede'),
|
|
(35040, 33470, 0, 100, 0, 1, 0, 1, 7, 'Frostweave Cloth'),
|
|
(35040, 37634, 0, 0, 0, 1, 1, 1, 1, 'Bracers of the Divine Elemental'),
|
|
(35040, 37635, 0, 0, 0, 1, 1, 1, 1, 'Pauldrons of the Colossus'),
|
|
(35040, 37636, 0, 0, 0, 1, 1, 1, 1, 'Helm of Cheated Fate'),
|
|
(35040, 37637, 0, 0, 0, 1, 1, 1, 1, 'Living Mojo Belt'),
|
|
(35040, 39152, 0, 25, 0, 1, 0, 1, 1, 'Manual: Heavy Frostweave Bandage'),
|
|
(35040, 43158, 0, 100, 0, 1, 0, 1, 1, 'Drakkari Colossus Fragment'),
|
|
(35040, 43228, 0, 100, 0, 1, 0, 2, 4, 'Stone Keeper\'s Shard'),
|
|
(35040, 43852, 0, 8.5, 0, 1, 0, 1, 1, 'Thick Fur Clothing Scraps'),
|
|
(35041, 36961, 0, 0, 0, 1, 1, 1, 1, 'Dragonflight Great-Ring'),
|
|
(35041, 36962, 0, 0, 0, 1, 1, 1, 1, 'Wyrmclaw Battleaxe'),
|
|
(35041, 36969, 0, 0, 0, 1, 1, 1, 1, 'Helm of the Ley-Guardian'),
|
|
(35041, 36971, 0, 0, 0, 1, 1, 1, 1, 'Headguard of Westrift'),
|
|
(35041, 36972, 0, 0, 0, 1, 1, 1, 1, 'Tome of Arcane Phenomena'),
|
|
(35041, 36973, 0, 0, 0, 1, 1, 1, 1, 'Vestments of the Scholar'),
|
|
(35041, 36974, 0, 0, 0, 1, 1, 1, 1, 'Eregos\' Ornamented Chestguard'),
|
|
(35041, 36975, 0, 0, 0, 1, 1, 1, 1, 'Malygos\' Favor'),
|
|
(35042, 35649, 0, 0, 0, 1, 1, 1, 1, 'Jailer\'s Baton'),
|
|
(35042, 35650, 0, 0, 0, 1, 1, 1, 1, 'Boots of the Portal Guardian'),
|
|
(35042, 35651, 0, 0, 0, 1, 1, 1, 1, 'Plate Claws of the Dragon'),
|
|
(35043, 36988, 0, 0, 0, 1, 1, 1, 1, 'Chaotic Spiral Amulet'),
|
|
(35043, 36989, 0, 0, 0, 1, 1, 1, 1, 'Ancient Measuring Rod'),
|
|
(35043, 36991, 0, 0, 0, 1, 1, 1, 1, 'Raiments of the Titans'),
|
|
(35043, 36992, 0, 0, 0, 1, 1, 1, 1, 'Leather-Braced Chain Leggings'),
|
|
(35043, 36993, 0, 0, 0, 1, 1, 1, 1, 'Seal of the Pantheon'),
|
|
(35043, 36994, 0, 0, 0, 1, 1, 1, 1, 'Projectile Activator'),
|
|
(35043, 36995, 0, 0, 0, 1, 1, 1, 1, 'Fists of Loken'),
|
|
(35043, 36996, 0, 0, 0, 1, 1, 1, 1, 'Hood of the Furtive Assassin'),
|
|
(35044, 35678, 0, 0, 0, 1, 1, 1, 1, 'Ironshaper\'s Legplates'),
|
|
(35044, 35679, 0, 0, 0, 1, 1, 1, 1, 'Static Cowl'),
|
|
(35044, 35680, 0, 0, 0, 1, 1, 1, 1, 'Amulet of Wills'),
|
|
(35045, 33470, 0, 100, 0, 1, 0, 1, 7, 'Frostweave Cloth'),
|
|
(35045, 35573, 0, 0, 0, 1, 1, 1, 1, 'Arm Blade of Augelmir'),
|
|
(35045, 35574, 0, 0, 0, 1, 1, 1, 1, 'Chestplate of the Northern Lights'),
|
|
(35045, 35575, 0, 0, 0, 1, 1, 1, 1, 'Skarvald\'s Dragonskin Habergeon'),
|
|
(35045, 43228, 0, 100, 0, 1, 0, 1, 1, 'Stone Keeper\'s Shard'),
|
|
(35046, 33330, 0, 100, 1, 1, 0, 1, 1, 'Ingvar\'s Head'),
|
|
(35047, 33330, 0, 100, 1, 1, 0, 1, 1, 'Ingvar\'s Head'),
|
|
(35048, 35576, 0, 0, 0, 1, 1, 1, 1, 'Ingvar\'s Monolithic Cleaver'),
|
|
(35048, 35577, 0, 0, 0, 1, 1, 1, 1, 'Holistic Patchwork Breeches'),
|
|
(35048, 35578, 0, 0, 0, 1, 1, 1, 1, 'Overlaid Chain Spaulders'),
|
|
(35049, 33470, 0, 100, 0, 1, 0, 2, 7, 'Frostweave Cloth'),
|
|
(35049, 37181, 0, 0, 0, 1, 1, 1, 1, 'Dagger of Betrayal'),
|
|
(35049, 37182, 0, 0, 0, 1, 1, 1, 1, 'Helmet of the Constructor'),
|
|
(35049, 37183, 0, 0, 0, 1, 1, 1, 1, 'Bindings of the Tunneler'),
|
|
(35049, 37184, 0, 0, 0, 1, 1, 1, 1, 'Dalronn\'s Jerkin'),
|
|
(35049, 39152, 0, 25, 0, 1, 0, 1, 1, 'Manual: Heavy Frostweave Bandage'),
|
|
(35049, 43228, 0, 100, 0, 1, 0, 1, 4, 'Stone Keeper\'s Shard'),
|
|
(35049, 43852, 0, 3, 0, 1, 0, 1, 1, 'Thick Fur Clothing Scraps'),
|
|
(35050, 37058, 0, 0, 0, 1, 1, 1, 1, 'Signet of Ranulf'),
|
|
(35050, 37060, 0, 0, 0, 1, 1, 1, 1, 'Jeweled Coronation Sword'),
|
|
(35050, 37061, 0, 0, 0, 1, 1, 1, 1, 'Tor\'s Crest'),
|
|
(35050, 37062, 0, 0, 0, 1, 1, 1, 1, 'Crown of Forgotten Kings'),
|
|
(35050, 37064, 0, 0, 0, 1, 1, 1, 1, 'Vestige of Haldor'),
|
|
(35050, 37065, 0, 0, 0, 1, 1, 1, 1, 'Ymiron\'s Blade'),
|
|
(35050, 37066, 0, 0, 0, 1, 1, 1, 1, 'Ancient Royal Legguards'),
|
|
(35050, 37067, 0, 0, 0, 1, 1, 1, 1, 'Ceremonial Pyre Mantle'),
|
|
(35051, 49789, 0, 0, 0, 1, 1, 1, 1, 'Heartshiver'),
|
|
(35051, 49790, 0, 0, 0, 1, 1, 1, 1, 'Blood Boil Lancet'),
|
|
(35051, 49791, 0, 0, 0, 1, 1, 1, 1, 'Lost Reliquary Chestguard'),
|
|
(35051, 49792, 0, 0, 0, 1, 1, 1, 1, 'Accursed Crawling Cape'),
|
|
(35051, 49793, 0, 0, 0, 1, 1, 1, 1, 'Tower of the Mouldering Corpse'),
|
|
(35051, 49794, 0, 0, 0, 1, 1, 1, 1, 'Legplates of Frozen Granite'),
|
|
(35051, 49795, 0, 0, 0, 1, 1, 1, 1, 'Sollerets of Suffering'),
|
|
(35051, 49796, 0, 0, 0, 1, 1, 1, 1, 'Essence of Anger'),
|
|
(35051, 49797, 0, 0, 0, 1, 1, 1, 1, 'Brace Guards of the Starless Night'),
|
|
(35051, 49798, 0, 0, 0, 1, 1, 1, 1, 'Soul Screaming Boots'),
|
|
(35051, 49799, 0, 0, 0, 1, 1, 1, 1, 'Coil of Missing Gems'),
|
|
(35051, 49800, 0, 0, 0, 1, 1, 1, 1, 'Spiteful Signet'),
|
|
(35052, 50198, 0, 0, 0, 1, 1, 1, 1, 'Needle-Encrusted Scorpion'),
|
|
(35052, 50203, 0, 0, 0, 1, 1, 1, 1, 'Blood Weeper'),
|
|
(35052, 50206, 0, 0, 0, 1, 1, 1, 1, 'Frayed Scoundrel\'s Cap'),
|
|
(35052, 50207, 0, 0, 0, 1, 1, 1, 1, 'Black Spire Sabatons'),
|
|
(35052, 50208, 0, 0, 0, 1, 1, 1, 1, 'Pauldrons of the Souleater'),
|
|
(35052, 50209, 0, 0, 0, 1, 1, 1, 1, 'Essence of Suffering'),
|
|
(35052, 50210, 0, 0, 0, 1, 1, 1, 1, 'Seethe'),
|
|
(35052, 50211, 0, 0, 0, 1, 1, 1, 1, 'Arcane Loops of Anger'),
|
|
(35052, 50212, 0, 0, 0, 1, 1, 1, 1, 'Essence of Desire'),
|
|
(35052, 50213, 0, 0, 0, 1, 1, 1, 1, 'Mord\'rethar Robes'),
|
|
(35052, 50214, 0, 0, 0, 1, 1, 1, 1, 'Helm of the Spirit Shock'),
|
|
(35052, 50215, 0, 0, 0, 1, 1, 1, 1, 'Recovered Reliquary Boots'),
|
|
(35053, 49827, 0, 0, 0, 1, 1, 1, 1, 'Ghoulslicer'),
|
|
(35053, 49828, 0, 0, 0, 1, 1, 1, 1, 'Marwyn\'s Macabre Fingertips'),
|
|
(35053, 49829, 0, 0, 0, 1, 1, 1, 1, 'Valonforth\'s Tarnished Pauldrons'),
|
|
(35053, 49830, 0, 0, 0, 1, 1, 1, 1, 'Fallen Sentry\'s Hood'),
|
|
(35053, 49831, 0, 0, 0, 1, 1, 1, 1, 'Muddied Boots of Brill'),
|
|
(35053, 49832, 0, 0, 0, 1, 1, 1, 1, 'Eerie Runeblade Polisher'),
|
|
(35054, 49833, 0, 0, 0, 1, 1, 1, 1, 'Splintered Icecrown Parapet'),
|
|
(35054, 49834, 0, 0, 0, 1, 1, 1, 1, 'Frayed Abomination Stitching Shoulders'),
|
|
(35054, 49835, 0, 0, 0, 1, 1, 1, 1, 'Splintered Door of the Citadel'),
|
|
(35054, 49836, 0, 0, 0, 1, 1, 1, 1, 'Frostsworn Bone Leggings'),
|
|
(35054, 49837, 0, 0, 0, 1, 1, 1, 1, 'Mitts of Burning Hail'),
|
|
(35054, 49838, 0, 0, 0, 1, 1, 1, 1, 'Carpal Tunnelers'),
|
|
(35055, 50290, 0, 0, 0, 1, 1, 1, 1, 'Falric\'s Wrist-Chopper'),
|
|
(35055, 50291, 0, 0, 0, 1, 1, 1, 1, 'Soulsplinter'),
|
|
(35055, 50292, 0, 0, 0, 1, 1, 1, 1, 'Bracer of Worn Molars'),
|
|
(35055, 50293, 0, 0, 0, 1, 1, 1, 1, 'Spaulders of Black Betrayal'),
|
|
(35055, 50294, 0, 0, 0, 1, 1, 1, 1, 'Chestpiece of High Treason'),
|
|
(35055, 50295, 0, 0, 0, 1, 1, 1, 1, 'Spiked Toestompers'),
|
|
(35056, 50260, 0, 0, 0, 1, 1, 1, 1, 'Ephemeral Snowflake'),
|
|
(35056, 50296, 0, 0, 0, 1, 1, 1, 1, 'Orca-Hunter\'s Harpoon'),
|
|
(35056, 50297, 0, 0, 0, 1, 1, 1, 1, 'Frostsworn Bone Chestpiece'),
|
|
(35056, 50298, 0, 0, 0, 1, 1, 1, 1, 'Sightless Crown of Ulmaas'),
|
|
(35056, 50299, 0, 0, 0, 1, 1, 1, 1, 'Suspiciously Soft Gloves'),
|
|
(35056, 50300, 0, 0, 0, 1, 1, 1, 1, 'Choking Hauberk'),
|
|
(35057, 49801, 0, 0, 0, 1, 1, 1, 1, 'Unspeakable Secret'),
|
|
(35057, 49802, 0, 0, 0, 1, 1, 1, 1, 'Garfrost\'s Two-Ton Hammer'),
|
|
(35057, 49803, 0, 0, 0, 1, 1, 1, 1, 'Ring of Carnelian and Bone'),
|
|
(35057, 49804, 0, 0, 0, 1, 1, 1, 1, 'Polished Mirror Helm'),
|
|
(35057, 49805, 0, 0, 0, 1, 1, 1, 1, 'Ice-Steeped Sandals'),
|
|
(35057, 49806, 0, 0, 0, 1, 1, 1, 1, 'Flayer\'s Black Belt'),
|
|
(35058, 49807, 0, 0, 0, 1, 1, 1, 1, 'Krick\'s Beetle Stabber'),
|
|
(35058, 49808, 0, 0, 0, 1, 1, 1, 1, 'Bent Gold Belt'),
|
|
(35058, 49809, 0, 0, 0, 1, 1, 1, 1, 'Wristguards of Subterranean Moss'),
|
|
(35058, 49810, 0, 0, 0, 1, 1, 1, 1, 'Scabrous Zombie Leather Belt'),
|
|
(35058, 49811, 0, 0, 0, 1, 1, 1, 1, 'Black Dragonskin Breeches'),
|
|
(35058, 49812, 0, 0, 0, 1, 1, 1, 1, 'Purloined Wedding Ring'),
|
|
(35059, 49813, 0, 0, 0, 1, 1, 1, 1, 'Rimebane Rifle'),
|
|
(35059, 49816, 0, 0, 0, 1, 1, 1, 1, 'Scourgelord\'s Frigid Chestplate'),
|
|
(35059, 49817, 0, 0, 0, 1, 1, 1, 1, 'Shaggy Wyrmleather Leggings'),
|
|
(35059, 49818, 0, 0, 0, 1, 1, 1, 1, 'Painfully Sharp Choker'),
|
|
(35059, 49819, 0, 0, 0, 1, 1, 1, 1, 'Skeleton Lord\'s Cranium'),
|
|
(35059, 49820, 0, 0, 0, 1, 1, 1, 1, 'Gondria\'s Spectral Bracer'),
|
|
(35059, 49821, 0, 0, 0, 1, 1, 1, 1, 'Protector of Frigid Souls'),
|
|
(35059, 49822, 0, 0, 0, 1, 1, 1, 1, 'Rimewoven Silks'),
|
|
(35059, 49823, 0, 0, 0, 1, 1, 1, 1, 'Cloak of the Fallen Cardinal'),
|
|
(35059, 49824, 0, 0, 0, 1, 1, 1, 1, 'Horns of the Spurned Val\'kyr'),
|
|
(35059, 49825, 0, 0, 0, 1, 1, 1, 1, 'Palebone Robes'),
|
|
(35059, 49826, 0, 0, 0, 1, 1, 1, 1, 'Shroud of Rime'),
|
|
(35060, 50227, 0, 0, 0, 1, 1, 1, 1, 'Surgeon\'s Needle'),
|
|
(35060, 50228, 0, 0, 0, 1, 1, 1, 1, 'Barbed Ymirheim Choker'),
|
|
(35060, 50229, 0, 0, 0, 1, 1, 1, 1, 'Legguards of the Frosty Depths'),
|
|
(35060, 50230, 0, 0, 0, 1, 1, 1, 1, 'Malykriss Vambraces'),
|
|
(35060, 50233, 0, 0, 0, 1, 1, 1, 1, 'Spurned Val\'kyr Shoulderguards'),
|
|
(35060, 50234, 0, 0, 0, 1, 1, 1, 1, 'Shoulderplates of Frozen Blood'),
|
|
(35061, 50235, 0, 0, 0, 1, 1, 1, 1, 'Ick\'s Rotting Thumb'),
|
|
(35061, 50262, 0, 0, 0, 1, 1, 1, 1, 'Felglacier Bolter'),
|
|
(35061, 50263, 0, 0, 0, 1, 1, 1, 1, 'Braid of Salt and Fire'),
|
|
(35061, 50264, 0, 0, 0, 1, 1, 1, 1, 'Chewed Leather Wristguards'),
|
|
(35061, 50265, 0, 0, 0, 1, 1, 1, 1, 'Blackened Ghoul Skin Leggings'),
|
|
(35061, 50266, 0, 0, 0, 1, 1, 1, 1, 'Ancient Polar Bear Hide'),
|
|
(35062, 50259, 0, 0, 0, 1, 1, 1, 1, 'Nevermelting Ice Crystal'),
|
|
(35062, 50267, 0, 0, 0, 1, 1, 1, 1, 'Tyrannical Beheader'),
|
|
(35062, 50268, 0, 0, 0, 1, 1, 1, 1, 'Rimefang\'s Claw'),
|
|
(35062, 50269, 0, 0, 0, 1, 1, 1, 1, 'Fleshwerk Leggings'),
|
|
(35062, 50270, 0, 0, 0, 1, 1, 1, 1, 'Belt of Rotted Fingernails'),
|
|
(35062, 50271, 0, 0, 0, 1, 1, 1, 1, 'Band of Stained Souls'),
|
|
(35062, 50272, 0, 0, 0, 1, 1, 1, 1, 'Frost Wyrm Ribcage'),
|
|
(35062, 50273, 0, 0, 0, 1, 1, 1, 1, 'Engraved Gargoyle Femur'),
|
|
(35062, 50283, 0, 0, 0, 1, 1, 1, 1, 'Mudslide Boots'),
|
|
(35062, 50284, 0, 0, 0, 1, 1, 1, 1, 'Rusty Frozen Fingerguards'),
|
|
(35062, 50285, 0, 0, 0, 1, 1, 1, 1, 'Icebound Bronze Cuirass'),
|
|
(35062, 50286, 0, 0, 0, 1, 1, 1, 1, 'Prelate\'s Snowshoes'),
|
|
(35063, 33364, 0, 0, 0, 1, 1, 1, 1, 'Thread-Bare Cloth Vest'),
|
|
(35063, 33365, 0, 0, 0, 1, 1, 1, 1, 'Frost-Rimed Cloth Belt'),
|
|
(35063, 33366, 0, 0, 0, 1, 1, 1, 1, 'Frost-Rimed Cloth Boots'),
|
|
(35063, 33367, 0, 0, 0, 1, 1, 1, 1, 'Frost-Rimed Cloth Bracers'),
|
|
(35063, 33368, 0, 0, 0, 1, 1, 1, 1, 'Frost-Rimed Cloth Gloves'),
|
|
(35063, 33369, 0, 0, 0, 1, 1, 1, 1, 'Frost-Rimed Cloth Pants'),
|
|
(35063, 33370, 0, 0, 0, 1, 1, 1, 1, 'Frost-Rimed Cloth Shoulderpads'),
|
|
(35063, 33371, 0, 0, 0, 1, 1, 1, 1, 'Frost-Rimed Cloth Vest'),
|
|
(35063, 33379, 0, 0, 0, 1, 1, 1, 1, 'Frozen Armor'),
|
|
(35063, 33380, 0, 0, 0, 1, 1, 1, 1, 'Frozen Belt'),
|
|
(35063, 33381, 0, 0, 0, 1, 1, 1, 1, 'Frozen Boots'),
|
|
(35063, 33382, 0, 0, 0, 1, 1, 1, 1, 'Frozen Bracers'),
|
|
(35063, 33383, 0, 0, 0, 1, 1, 1, 1, 'Frozen Gloves'),
|
|
(35063, 33384, 0, 0, 0, 1, 1, 1, 1, 'Frozen Pants'),
|
|
(35063, 33385, 0, 0, 0, 1, 1, 1, 1, 'Frozen Shoulderpads'),
|
|
(35063, 33397, 0, 0, 0, 1, 1, 1, 1, 'Frigid Mail Armor'),
|
|
(35063, 33398, 0, 0, 0, 1, 1, 1, 1, 'Frigid Mail Belt'),
|
|
(35063, 33399, 0, 0, 0, 1, 1, 1, 1, 'Frigid Mail Boots'),
|
|
(35063, 33400, 0, 0, 0, 1, 1, 1, 1, 'Frigid Mail Bracers'),
|
|
(35063, 33401, 0, 0, 0, 1, 1, 1, 1, 'Frigid Mail Gloves'),
|
|
(35063, 33402, 0, 0, 0, 1, 1, 1, 1, 'Frigid Mail Pants'),
|
|
(35063, 33403, 0, 0, 0, 1, 1, 1, 1, 'Frigid Mail Shoulderpads'),
|
|
(35063, 33412, 0, 0, 0, 1, 1, 1, 1, 'Frost-Worn Plate Belt'),
|
|
(35063, 33413, 0, 0, 0, 1, 1, 1, 1, 'Frost-Worn Plate Boots'),
|
|
(35063, 33414, 0, 0, 0, 1, 1, 1, 1, 'Frost-Worn Plate Bracers'),
|
|
(35063, 33415, 0, 0, 0, 1, 1, 1, 1, 'Frost-Worn Plate Chestpiece'),
|
|
(35063, 33416, 0, 0, 0, 1, 1, 1, 1, 'Frost-Worn Plate Gloves'),
|
|
(35063, 33417, 0, 0, 0, 1, 1, 1, 1, 'Frost-Worn Plate Pants'),
|
|
(35063, 33419, 0, 0, 0, 1, 1, 1, 1, 'Frost-Worn Plate Shoulderpads'),
|
|
(35063, 33422, 0, 0, 0, 1, 1, 1, 1, 'Shattered Bow'),
|
|
(35063, 33423, 0, 0, 0, 1, 1, 1, 1, 'Rime-Covered Mace'),
|
|
(35063, 33424, 0, 0, 0, 1, 1, 1, 1, 'Cracked Iron Staff'),
|
|
(35063, 33425, 0, 0, 0, 1, 1, 1, 1, 'Ice-Pitted Blade'),
|
|
(35063, 33426, 0, 0, 0, 1, 1, 1, 1, 'Chipped Timber Axe'),
|
|
(35063, 33427, 0, 0, 0, 1, 1, 1, 1, 'Frost-Encrusted Rifle'),
|
|
(35063, 33428, 0, 0, 0, 1, 1, 1, 1, 'Dulled Shiv'),
|
|
(35063, 33429, 0, 0, 0, 1, 1, 1, 1, 'Ice Cleaver'),
|
|
(35063, 33430, 0, 0, 0, 1, 1, 1, 1, 'Abandoned Greatsword'),
|
|
(35063, 33431, 0, 0, 0, 1, 1, 1, 1, 'Icesmashing Mace'),
|
|
(35063, 33433, 0, 0, 0, 1, 1, 1, 1, 'Frigid Mail Circlet'),
|
|
(35063, 33434, 0, 0, 0, 1, 1, 1, 1, 'Frozen Leather Helmet'),
|
|
(35063, 33435, 0, 0, 0, 1, 1, 1, 1, 'Frost-Worn Plate Helmet'),
|
|
(35063, 43852, 0, 70, 0, 1, 1, 1, 1, 'Thick Fur Clothing Scraps'),
|
|
(35064, 33445, 0, 0, 0, 1, 1, 1, 1, 'Honeymint Tea'),
|
|
(35064, 33447, 0, 0, 0, 1, 1, 1, 1, 'Runic Healing Potion'),
|
|
(35064, 33448, 0, 0, 0, 1, 1, 1, 1, 'Runic Mana Potion'),
|
|
(35064, 33454, 0, 0, 0, 1, 1, 1, 1, 'Salted Venison'),
|
|
(35064, 33470, 0, 0, 0, 1, 1, 2, 7, 'Frostweave Cloth'),
|
|
(35064, 35947, 0, 0, 0, 1, 1, 1, 1, 'Sparkling Frostcap'),
|
|
(35065, 37091, 0, 0, 0, 1, 1, 1, 1, 'Scroll of Intellect VII'),
|
|
(35065, 37092, 0, 0, 0, 1, 1, 1, 1, 'Scroll of Intellect VIII'),
|
|
(35065, 37093, 0, 0, 0, 1, 1, 1, 1, 'Scroll of Stamina VII'),
|
|
(35065, 37094, 0, 0, 0, 1, 1, 1, 1, 'Scroll of Stamina VIII'),
|
|
(35065, 37097, 0, 0, 0, 1, 1, 1, 1, 'Scroll of Spirit VII'),
|
|
(35065, 37098, 0, 0, 0, 1, 1, 1, 1, 'Scroll of Spirit VIII'),
|
|
(35065, 43463, 0, 0, 0, 1, 1, 1, 1, 'Scroll of Agility VII'),
|
|
(35065, 43464, 0, 0, 0, 1, 1, 1, 1, 'Scroll of Agility VIII'),
|
|
(35065, 43465, 0, 0, 0, 1, 1, 1, 1, 'Scroll of Strength VII'),
|
|
(35065, 43466, 0, 0, 0, 1, 1, 1, 1, 'Scroll of Strength VIII'),
|
|
(35066, 36035, 0, 0, 0, 1, 1, 1, 1, 'Condor Belt'),
|
|
(35066, 36036, 0, 0, 0, 1, 1, 1, 1, 'Condor Sandals'),
|
|
(35066, 36037, 0, 0, 0, 1, 1, 1, 1, 'Condor Robe'),
|
|
(35066, 36038, 0, 0, 0, 1, 1, 1, 1, 'Condor Gloves'),
|
|
(35066, 36039, 0, 0, 0, 1, 1, 1, 1, 'Condor Headpiece'),
|
|
(35066, 36040, 0, 0, 0, 1, 1, 1, 1, 'Condor Pants'),
|
|
(35066, 36041, 0, 0, 0, 1, 1, 1, 1, 'Condor Shoulderpads'),
|
|
(35066, 36042, 0, 0, 0, 1, 1, 1, 1, 'Condor Bindings'),
|
|
(35066, 36043, 0, 0, 0, 1, 1, 1, 1, 'Crystalsong Sash'),
|
|
(35066, 36044, 0, 0, 0, 1, 1, 1, 1, 'Crystalsong Slippers'),
|
|
(35066, 36045, 0, 0, 0, 1, 1, 1, 1, 'Crystalsong Robe'),
|
|
(35066, 36046, 0, 0, 0, 1, 1, 1, 1, 'Crystalsong Gloves'),
|
|
(35066, 36047, 0, 0, 0, 1, 1, 1, 1, 'Crystalsong Crown'),
|
|
(35066, 36048, 0, 0, 0, 1, 1, 1, 1, 'Crystalsong Leggings'),
|
|
(35066, 36049, 0, 0, 0, 1, 1, 1, 1, 'Crystalsong Mantle'),
|
|
(35066, 36050, 0, 0, 0, 1, 1, 1, 1, 'Crystalsong Bracelets'),
|
|
(35066, 36051, 0, 0, 0, 1, 1, 1, 1, 'Vizier Sash'),
|
|
(35066, 36052, 0, 0, 0, 1, 1, 1, 1, 'Vizier Slippers'),
|
|
(35066, 36053, 0, 0, 0, 1, 1, 1, 1, 'Vizier Robe'),
|
|
(35066, 36054, 0, 0, 0, 1, 1, 1, 1, 'Vizier Gloves'),
|
|
(35066, 36055, 0, 0, 0, 1, 1, 1, 1, 'Vizier Hood'),
|
|
(35066, 36056, 0, 0, 0, 1, 1, 1, 1, 'Vizier Leggings'),
|
|
(35066, 36057, 0, 0, 0, 1, 1, 1, 1, 'Vizier Mantle'),
|
|
(35066, 36058, 0, 0, 0, 1, 1, 1, 1, 'Vizier Bracelets'),
|
|
(35066, 36147, 0, 0, 0, 1, 1, 1, 1, 'Pygmy Belt'),
|
|
(35066, 36148, 0, 0, 0, 1, 1, 1, 1, 'Pygmy Boots'),
|
|
(35066, 36149, 0, 0, 0, 1, 1, 1, 1, 'Pygmy Tunic'),
|
|
(35066, 36150, 0, 0, 0, 1, 1, 1, 1, 'Pygmy Gloves'),
|
|
(35066, 36151, 0, 0, 0, 1, 1, 1, 1, 'Pygmy Helmet'),
|
|
(35066, 36152, 0, 0, 0, 1, 1, 1, 1, 'Pygmy Pants'),
|
|
(35066, 36153, 0, 0, 0, 1, 1, 1, 1, 'Pygmy Shoulders'),
|
|
(35066, 36154, 0, 0, 0, 1, 1, 1, 1, 'Pygmy Bindings'),
|
|
(35066, 36155, 0, 0, 0, 1, 1, 1, 1, 'Wendigo Girdle'),
|
|
(35066, 36156, 0, 0, 0, 1, 1, 1, 1, 'Wendigo Boots'),
|
|
(35066, 36157, 0, 0, 0, 1, 1, 1, 1, 'Wendigo Chestpiece'),
|
|
(35066, 36158, 0, 0, 0, 1, 1, 1, 1, 'Wendigo Gloves'),
|
|
(35066, 36159, 0, 0, 0, 1, 1, 1, 1, 'Wendigo Hood'),
|
|
(35066, 36160, 0, 0, 0, 1, 1, 1, 1, 'Wendigo Legguards'),
|
|
(35066, 36161, 0, 0, 0, 1, 1, 1, 1, 'Wendigo Pauldrons'),
|
|
(35066, 36162, 0, 0, 0, 1, 1, 1, 1, 'Wendigo Bands'),
|
|
(35066, 36163, 0, 0, 0, 1, 1, 1, 1, 'Webspinner Cord'),
|
|
(35066, 36164, 0, 0, 0, 1, 1, 1, 1, 'Webspinner Boots'),
|
|
(35066, 36165, 0, 0, 0, 1, 1, 1, 1, 'Webspinner Vest'),
|
|
(35066, 36166, 0, 0, 0, 1, 1, 1, 1, 'Webspinner Gloves'),
|
|
(35066, 36167, 0, 0, 0, 1, 1, 1, 1, 'Webspinner Hood'),
|
|
(35066, 36168, 0, 0, 0, 1, 1, 1, 1, 'Webspinner Leggings'),
|
|
(35066, 36169, 0, 0, 0, 1, 1, 1, 1, 'Webspinner Shoulderguards'),
|
|
(35066, 36170, 0, 0, 0, 1, 1, 1, 1, 'Webspinner Bindings'),
|
|
(35066, 36259, 0, 0, 0, 1, 1, 1, 1, 'Cormorant Waistband'),
|
|
(35066, 36260, 0, 0, 0, 1, 1, 1, 1, 'Cormorant Footwraps'),
|
|
(35066, 36261, 0, 0, 0, 1, 1, 1, 1, 'Cormorant Chain Vest'),
|
|
(35066, 36262, 0, 0, 0, 1, 1, 1, 1, 'Cormorant Gloves'),
|
|
(35066, 36263, 0, 0, 0, 1, 1, 1, 1, 'Cormorant Helm'),
|
|
(35066, 36264, 0, 0, 0, 1, 1, 1, 1, 'Cormorant Leggings'),
|
|
(35066, 36265, 0, 0, 0, 1, 1, 1, 1, 'Cormorant Mantle'),
|
|
(35066, 36266, 0, 0, 0, 1, 1, 1, 1, 'Cormorant Bracelets'),
|
|
(35066, 36267, 0, 0, 0, 1, 1, 1, 1, 'Ulduar Girdle'),
|
|
(35066, 36268, 0, 0, 0, 1, 1, 1, 1, 'Ulduar Greaves'),
|
|
(35066, 36269, 0, 0, 0, 1, 1, 1, 1, 'Ulduar Breastplate'),
|
|
(35066, 36270, 0, 0, 0, 1, 1, 1, 1, 'Ulduar Gauntlets'),
|
|
(35066, 36271, 0, 0, 0, 1, 1, 1, 1, 'Ulduar Helm'),
|
|
(35066, 36272, 0, 0, 0, 1, 1, 1, 1, 'Ulduar Legguards'),
|
|
(35066, 36273, 0, 0, 0, 1, 1, 1, 1, 'Ulduar Shoulderguards'),
|
|
(35066, 36274, 0, 0, 0, 1, 1, 1, 1, 'Ulduar Bracers'),
|
|
(35066, 36275, 0, 0, 0, 1, 1, 1, 1, 'Spiderlord Belt'),
|
|
(35066, 36276, 0, 0, 0, 1, 1, 1, 1, 'Spiderlord Boots'),
|
|
(35066, 36277, 0, 0, 0, 1, 1, 1, 1, 'Spiderlord Chestpiece'),
|
|
(35066, 36278, 0, 0, 0, 1, 1, 1, 1, 'Spiderlord Gauntlets'),
|
|
(35066, 36279, 0, 0, 0, 1, 1, 1, 1, 'Spiderlord Helm'),
|
|
(35066, 36280, 0, 0, 0, 1, 1, 1, 1, 'Spiderlord Legguards'),
|
|
(35066, 36281, 0, 0, 0, 1, 1, 1, 1, 'Spiderlord Spaulders'),
|
|
(35066, 36282, 0, 0, 0, 1, 1, 1, 1, 'Spiderlord Bracers'),
|
|
(35066, 36371, 0, 0, 0, 1, 1, 1, 1, 'Kraken Girdle'),
|
|
(35066, 36372, 0, 0, 0, 1, 1, 1, 1, 'Kraken Greaves'),
|
|
(35066, 36373, 0, 0, 0, 1, 1, 1, 1, 'Kraken Breastplate'),
|
|
(35066, 36374, 0, 0, 0, 1, 1, 1, 1, 'Kraken Gauntlets'),
|
|
(35066, 36375, 0, 0, 0, 1, 1, 1, 1, 'Kraken Helm'),
|
|
(35066, 36376, 0, 0, 0, 1, 1, 1, 1, 'Kraken Legplates'),
|
|
(35066, 36377, 0, 0, 0, 1, 1, 1, 1, 'Kraken Epaulets'),
|
|
(35066, 36378, 0, 0, 0, 1, 1, 1, 1, 'Kraken Vambraces'),
|
|
(35066, 36379, 0, 0, 0, 1, 1, 1, 1, 'Golem Girdle'),
|
|
(35066, 36380, 0, 0, 0, 1, 1, 1, 1, 'Golem Sabatons'),
|
|
(35066, 36381, 0, 0, 0, 1, 1, 1, 1, 'Golem Breastplate'),
|
|
(35066, 36382, 0, 0, 0, 1, 1, 1, 1, 'Golem Gauntlets'),
|
|
(35066, 36383, 0, 0, 0, 1, 1, 1, 1, 'Golem Helmet'),
|
|
(35066, 36384, 0, 0, 0, 1, 1, 1, 1, 'Golem Legplates'),
|
|
(35066, 36385, 0, 0, 0, 1, 1, 1, 1, 'Golem Pauldrons'),
|
|
(35066, 36386, 0, 0, 0, 1, 1, 1, 1, 'Golem Vambraces'),
|
|
(35066, 36387, 0, 0, 0, 1, 1, 1, 1, 'Revenant Belt'),
|
|
(35066, 36388, 0, 0, 0, 1, 1, 1, 1, 'Revenant Greaves'),
|
|
(35066, 36389, 0, 0, 0, 1, 1, 1, 1, 'Revenant Armor'),
|
|
(35066, 36390, 0, 0, 0, 1, 1, 1, 1, 'Revenant Gauntlets'),
|
|
(35066, 36391, 0, 0, 0, 1, 1, 1, 1, 'Revenant Helmet'),
|
|
(35066, 36392, 0, 0, 0, 1, 1, 1, 1, 'Revenant Legguards'),
|
|
(35066, 36393, 0, 0, 0, 1, 1, 1, 1, 'Revenant Epaulets'),
|
|
(35066, 36394, 0, 0, 0, 1, 1, 1, 1, 'Revenant Bracers'),
|
|
(35066, 36413, 0, 0, 0, 1, 1, 1, 1, 'Dyed Taffeta Cape'),
|
|
(35066, 36414, 0, 0, 0, 1, 1, 1, 1, 'Mammoth Fur Cloak'),
|
|
(35066, 36415, 0, 0, 0, 1, 1, 1, 1, 'Vintage Satin Cloak'),
|
|
(35066, 36427, 0, 0, 0, 1, 1, 1, 1, 'Engraved Ring'),
|
|
(35066, 36428, 0, 0, 0, 1, 1, 1, 1, 'Bouquet Ring'),
|
|
(35066, 36429, 0, 0, 0, 1, 1, 1, 1, 'Spur Ring'),
|
|
(35066, 36441, 0, 0, 0, 1, 1, 1, 1, 'Pearl Woven Choker'),
|
|
(35066, 36442, 0, 0, 0, 1, 1, 1, 1, 'Silken Cord Amulet'),
|
|
(35066, 36443, 0, 0, 0, 1, 1, 1, 1, 'Platinum Medallion'),
|
|
(35066, 36455, 0, 0, 0, 1, 1, 1, 1, 'Plated Bulwark'),
|
|
(35066, 36456, 0, 0, 0, 1, 1, 1, 1, 'Icy Kite Shield'),
|
|
(35066, 36457, 0, 0, 0, 1, 1, 1, 1, 'Ivory Shield'),
|
|
(35066, 36469, 0, 0, 0, 1, 1, 1, 1, 'Lidless Orb'),
|
|
(35066, 36470, 0, 0, 0, 1, 1, 1, 1, 'Gilded Scepter'),
|
|
(35066, 36471, 0, 0, 0, 1, 1, 1, 1, 'Ice Crystal'),
|
|
(35066, 36483, 0, 0, 0, 1, 1, 1, 1, 'Mandible Edge'),
|
|
(35066, 36484, 0, 0, 0, 1, 1, 1, 1, 'Etched Dagger'),
|
|
(35066, 36485, 0, 0, 0, 1, 1, 1, 1, 'Sinuous Keris'),
|
|
(35066, 36497, 0, 0, 0, 1, 1, 1, 1, 'Adamant Mallet'),
|
|
(35066, 36498, 0, 0, 0, 1, 1, 1, 1, 'Nerubian Mace'),
|
|
(35066, 36499, 0, 0, 0, 1, 1, 1, 1, 'Frigid War-Mace'),
|
|
(35066, 36511, 0, 0, 0, 1, 1, 1, 1, 'Arctic War Hammer'),
|
|
(35066, 36512, 0, 0, 0, 1, 1, 1, 1, 'Onerous Mallet'),
|
|
(35066, 36513, 0, 0, 0, 1, 1, 1, 1, 'Lode-Headed Hammer'),
|
|
(35066, 36525, 0, 0, 0, 1, 1, 1, 1, 'Craggy Machete'),
|
|
(35066, 36526, 0, 0, 0, 1, 1, 1, 1, 'Sleeted Longsword'),
|
|
(35066, 36527, 0, 0, 0, 1, 1, 1, 1, 'Blackened Blade'),
|
|
(35066, 36539, 0, 0, 0, 1, 1, 1, 1, 'Chilled Warblade'),
|
|
(35066, 36540, 0, 0, 0, 1, 1, 1, 1, 'Petrified Sword'),
|
|
(35066, 36541, 0, 0, 0, 1, 1, 1, 1, 'Wintry Claymore'),
|
|
(35066, 36553, 0, 0, 0, 1, 1, 1, 1, 'Desecrated Staff'),
|
|
(35066, 36554, 0, 0, 0, 1, 1, 1, 1, 'Cursed Staff'),
|
|
(35066, 36555, 0, 0, 0, 1, 1, 1, 1, 'Minion Staff'),
|
|
(35066, 36567, 0, 0, 0, 1, 1, 1, 1, 'Six-Fingered Claws'),
|
|
(35066, 36568, 0, 0, 0, 1, 1, 1, 1, 'Hollowed Bone Knuckles'),
|
|
(35066, 36569, 0, 0, 0, 1, 1, 1, 1, 'Savage Talons'),
|
|
(35066, 36581, 0, 0, 0, 1, 1, 1, 1, 'Wolvar Handaxe'),
|
|
(35066, 36582, 0, 0, 0, 1, 1, 1, 1, 'Ice Pick'),
|
|
(35066, 36583, 0, 0, 0, 1, 1, 1, 1, 'Skeletal Hacker'),
|
|
(35066, 36595, 0, 0, 0, 1, 1, 1, 1, 'Planate Broadaxe'),
|
|
(35066, 36596, 0, 0, 0, 1, 1, 1, 1, 'Rupturing Axe'),
|
|
(35066, 36597, 0, 0, 0, 1, 1, 1, 1, 'Ice-Splintering Axe'),
|
|
(35066, 36609, 0, 0, 0, 1, 1, 1, 1, 'Abandoned Spear'),
|
|
(35066, 36610, 0, 0, 0, 1, 1, 1, 1, 'Plagued Pike'),
|
|
(35066, 36611, 0, 0, 0, 1, 1, 1, 1, 'Bleak Scythe'),
|
|
(35066, 36623, 0, 0, 0, 1, 1, 1, 1, 'Harnessed Longbow'),
|
|
(35066, 36624, 0, 0, 0, 1, 1, 1, 1, 'Shrieking Bow'),
|
|
(35066, 36625, 0, 0, 0, 1, 1, 1, 1, 'Massive Recurved Bow'),
|
|
(35066, 36637, 0, 0, 0, 1, 1, 1, 1, 'Horrific Crossbow'),
|
|
(35066, 36638, 0, 0, 0, 1, 1, 1, 1, 'Bloody Crossbow'),
|
|
(35066, 36639, 0, 0, 0, 1, 1, 1, 1, 'Brutal Ballista'),
|
|
(35066, 36651, 0, 0, 0, 1, 1, 1, 1, 'Muzzled Musket'),
|
|
(35066, 36652, 0, 0, 0, 1, 1, 1, 1, 'Stocky Shotgun'),
|
|
(35066, 36653, 0, 0, 0, 1, 1, 1, 1, 'Precipice Longrifle'),
|
|
(35066, 36665, 0, 0, 0, 1, 1, 1, 1, 'Wasteland Wand'),
|
|
(35066, 36666, 0, 0, 0, 1, 1, 1, 1, 'Polar Wand'),
|
|
(35066, 36667, 0, 0, 0, 1, 1, 1, 1, 'Solid Ice Wand'),
|
|
(35066, 36679, 0, 0, 0, 1, 1, 1, 1, 'Singing Dagger'),
|
|
(35066, 36680, 0, 0, 0, 1, 1, 1, 1, 'Mystic Fang'),
|
|
(35066, 36681, 0, 0, 0, 1, 1, 1, 1, 'Wisdom Carver'),
|
|
(35066, 36693, 0, 0, 0, 1, 1, 1, 1, 'Serene Hammer'),
|
|
(35066, 36694, 0, 0, 0, 1, 1, 1, 1, 'Beatific Mace'),
|
|
(35066, 36695, 0, 0, 0, 1, 1, 1, 1, 'Dogmatic Scepter'),
|
|
(35066, 36707, 0, 0, 0, 1, 1, 1, 1, 'Cascading Water Staff'),
|
|
(35066, 36708, 0, 0, 0, 1, 1, 1, 1, 'Snow Blossom Staff'),
|
|
(35066, 36709, 0, 0, 0, 1, 1, 1, 1, 'Crystal Woodstaff'),
|
|
(35066, 36721, 0, 0, 0, 1, 1, 1, 1, 'Dragon\'s Teeth'),
|
|
(35066, 36722, 0, 0, 0, 1, 1, 1, 1, 'Pyramid Throwing Star'),
|
|
(35066, 36723, 0, 0, 0, 1, 1, 1, 1, 'Clawed Shuriken'),
|
|
(35066, 43297, 0, 0, 0, 1, 1, 1, 1, 'Damaged Necklace'),
|
|
(35067, 37760, 0, 0, 0, 1, 1, 1, 1, 'Cracklefire Wristguards'),
|
|
(35067, 37761, 0, 0, 0, 1, 1, 1, 1, 'Shimmerthread Girdle'),
|
|
(35067, 37770, 0, 0, 0, 1, 1, 1, 1, 'Bulge-Concealing Breastplate'),
|
|
(35067, 37771, 0, 0, 0, 1, 1, 1, 1, 'Wristguards of Verdant Recovery'),
|
|
(35067, 37780, 0, 0, 0, 1, 1, 1, 1, 'Condor-Bone Chestguard'),
|
|
(35067, 37781, 0, 0, 0, 1, 1, 1, 1, 'Grips of the Warming Heart'),
|
|
(35067, 37792, 0, 0, 0, 1, 1, 1, 1, 'Agin\'s Crushing Carapace'),
|
|
(35067, 37793, 0, 0, 0, 1, 1, 1, 1, 'Skullcage of Eternal Terror'),
|
|
(35067, 37794, 0, 0, 0, 1, 1, 1, 1, 'Torta\'s Oversized Choker'),
|
|
(35067, 37822, 0, 0, 0, 1, 1, 1, 1, 'Twisted Puzzle-Ring'),
|
|
(35067, 37824, 0, 0, 0, 1, 1, 1, 1, 'Gwyneth\'s Runed Dragonwand'),
|
|
(35067, 41777, 0, 0, 0, 1, 1, 1, 1, 'Design: Etched Monarch Topaz'),
|
|
(35067, 41778, 0, 0, 0, 1, 1, 1, 1, 'Design: Resolute Monarch Topaz'),
|
|
(35067, 41779, 0, 0, 0, 1, 1, 1, 1, 'Design: Stalwart Monarch Topaz'),
|
|
(35067, 41780, 0, 0, 0, 1, 1, 1, 1, 'Design: Champion\'s Monarch Topaz'),
|
|
(35067, 41781, 0, 0, 0, 1, 1, 1, 1, 'Design: Misty Forest Emerald'),
|
|
(35067, 41782, 0, 0, 0, 1, 1, 1, 1, 'Design: Shining Forest Emerald'),
|
|
(35067, 41783, 0, 0, 0, 1, 1, 1, 1, 'Design: Purified Twilight Opal'),
|
|
(35067, 41784, 0, 0, 0, 1, 1, 1, 1, 'Design: Sovereign Twilight Opal'),
|
|
(35067, 41785, 0, 0, 0, 1, 1, 1, 1, 'Design: Tenuous Twilight Opal'),
|
|
(35067, 41786, 0, 0, 0, 1, 1, 1, 1, 'Design: Destructive Skyflare Diamond'),
|
|
(35067, 41787, 0, 0, 0, 1, 1, 1, 1, 'Design: Thundering Skyflare Diamond'),
|
|
(35067, 41788, 0, 0, 0, 1, 1, 1, 1, 'Design: Beaming Earthsiege Diamond'),
|
|
(35067, 41789, 0, 0, 0, 1, 1, 1, 1, 'Design: Inscribed Monarch Topaz'),
|
|
(35068, 50444, 0, 0, 0, 1, 1, 1, 1, 'Rowan\'s Rifle of Silver Bullets'),
|
|
(35068, 50447, 0, 0, 0, 1, 1, 1, 1, 'Harbinger\'s Bone Band'),
|
|
(35068, 50449, 0, 0, 0, 1, 1, 1, 1, 'Stiffened Corpse Shoulderpads'),
|
|
(35068, 50450, 0, 0, 0, 1, 1, 1, 1, 'Leggings of Dubious Charms'),
|
|
(35068, 50451, 0, 0, 0, 1, 1, 1, 1, 'Belt of the Lonely Noble'),
|
|
(35068, 50452, 0, 0, 0, 1, 1, 1, 1, 'Wodin\'s Lucky Necklace'),
|
|
(35068, 50453, 0, 0, 0, 1, 1, 1, 1, 'Ring of Rotting Sinew'),
|
|
(35069, 1, 35063, 40, 0, 1, 0, 1, 1, '(ReferenceTable)'),
|
|
(35069, 2, 35063, 40, 0, 1, 0, 1, 1, '(ReferenceTable)'),
|
|
(35069, 3, 35064, 20, 0, 1, 0, 1, 1, '(ReferenceTable)'),
|
|
(35069, 4, 35065, 7, 0, 1, 0, 1, 1, '(ReferenceTable)'),
|
|
(35069, 5, 35066, 10, 0, 1, 0, 1, 1, '(ReferenceTable)'),
|
|
(35069, 6, 35067, 3, 0, 1, 0, 1, 1, '(ReferenceTable)'),
|
|
(35069, 7, 35068, 2, 0, 1, 0, 1, 1, '(ReferenceTable)'),
|
|
(35069, 8, 35074, 1, 0, 1, 0, 1, 1, '(ReferenceTable)'),
|
|
(35070, 49852, 0, 0, 0, 1, 1, 1, 1, 'Coffin Nail'),
|
|
(35070, 49853, 0, 0, 0, 1, 1, 1, 1, 'Titanium Links of Lore'),
|
|
(35070, 49854, 0, 0, 0, 1, 1, 1, 1, 'Mantle of Tattered Feathers'),
|
|
(35070, 49855, 0, 0, 0, 1, 1, 1, 1, 'Plated Grips of Korth\'azz'),
|
|
(35071, 1, 35063, 40, 0, 1, 0, 1, 1, '(ReferenceTable)'),
|
|
(35071, 2, 35063, 40, 0, 1, 0, 1, 1, '(ReferenceTable)'),
|
|
(35071, 3, 35064, 20, 0, 1, 0, 1, 1, '(ReferenceTable)'),
|
|
(35071, 4, 35065, 7, 0, 1, 0, 1, 1, '(ReferenceTable)'),
|
|
(35071, 5, 35066, 10, 0, 1, 0, 1, 1, '(ReferenceTable)'),
|
|
(35071, 6, 35067, 3, 0, 1, 0, 1, 1, '(ReferenceTable)'),
|
|
(35071, 7, 35070, 2, 0, 1, 0, 1, 1, '(ReferenceTable)'),
|
|
(35071, 8, 35074, 1, 0, 1, 0, 1, 1, '(ReferenceTable)'),
|
|
(35072, 50315, 0, 0, 0, 1, 1, 1, 1, 'Seven-Fingered Claws'),
|
|
(35072, 50318, 0, 0, 0, 1, 1, 1, 1, 'Ghostly Wristwraps'),
|
|
(35072, 50319, 0, 0, 0, 1, 1, 1, 1, 'Unsharpened Ice Razor'),
|
|
(35073, 1, 35063, 40, 0, 1, 0, 1, 1, '(ReferenceTable)'),
|
|
(35073, 2, 35063, 40, 0, 1, 0, 1, 1, '(ReferenceTable)'),
|
|
(35073, 3, 35064, 20, 0, 1, 0, 1, 1, '(ReferenceTable)'),
|
|
(35073, 4, 35065, 7, 0, 1, 0, 1, 1, '(ReferenceTable)'),
|
|
(35073, 5, 35066, 10, 0, 1, 0, 1, 1, '(ReferenceTable)'),
|
|
(35073, 6, 35067, 3, 0, 1, 0, 1, 1, '(ReferenceTable)'),
|
|
(35073, 7, 35072, 2, 0, 1, 0, 1, 1, '(ReferenceTable)'),
|
|
(35073, 8, 35074, 1, 0, 1, 0, 1, 1, '(ReferenceTable)'),
|
|
(35073, 50379, 0, 0.08, 0, 1, 0, 1, 1, 'Battered Hilt'),
|
|
(35073, 50380, 0, 0.08, 0, 1, 0, 1, 1, 'Battered Hilt'),
|
|
(35074, 37254, 0, 0, 0, 1, 1, 1, 1, 'Super Simian Sphere'),
|
|
(35074, 37835, 0, 0, 0, 1, 1, 1, 1, 'Je\'Tze\'s Bell'),
|
|
(35074, 44308, 0, 0, 0, 1, 1, 1, 1, 'Signet of Edward the Odd'),
|
|
(35074, 44309, 0, 0, 0, 1, 1, 1, 1, 'Sash of Jordan'),
|
|
(35074, 44310, 0, 0, 0, 1, 1, 1, 1, 'Namlak\'s Supernumerary Sticker'),
|
|
(35074, 44311, 0, 0, 0, 1, 1, 1, 1, 'Avool\'s Sword of Jin'),
|
|
(35074, 44312, 0, 0, 0, 1, 1, 1, 1, 'Wapach\'s Spaulders of Solidarity'),
|
|
(35074, 44313, 0, 0, 0, 1, 1, 1, 1, 'Zom\'s Crackling Bulwark'),
|
|
(35077, 33425, 0, 0, 0, 1, 1, 1, 1, 'Ice-Pitted Blade'),
|
|
(35077, 33427, 0, 0, 0, 1, 1, 1, 1, 'Frost-Encrusted Rifle'),
|
|
(35077, 43852, 0, 0, 0, 1, 1, 1, 1, 'Thick Fur Clothing Scraps'),
|
|
(35078, 33445, 0, 0, 0, 1, 1, 1, 1, 'Honeymint Tea'),
|
|
(35078, 33447, 0, 0, 0, 1, 1, 1, 1, 'Runic Healing Potion'),
|
|
(35078, 33448, 0, 0, 0, 1, 1, 1, 1, 'Runic Mana Potion'),
|
|
(35078, 33470, 0, 0, 0, 1, 1, 2, 7, 'Frostweave Cloth'),
|
|
(35078, 35947, 0, 0, 0, 1, 1, 1, 1, 'Sparkling Frostcap'),
|
|
(35079, 37091, 0, 0, 0, 1, 1, 1, 1, 'Scroll of Intellect VII'),
|
|
(35079, 37092, 0, 0, 0, 1, 1, 1, 1, 'Scroll of Intellect VIII'),
|
|
(35079, 37093, 0, 0, 0, 1, 1, 1, 1, 'Scroll of Stamina VII'),
|
|
(35079, 37094, 0, 0, 0, 1, 1, 1, 1, 'Scroll of Stamina VIII'),
|
|
(35079, 37097, 0, 0, 0, 1, 1, 1, 1, 'Scroll of Spirit VII'),
|
|
(35079, 37098, 0, 0, 0, 1, 1, 1, 1, 'Scroll of Spirit VIII'),
|
|
(35079, 43463, 0, 0, 0, 1, 1, 1, 1, 'Scroll of Agility VII'),
|
|
(35079, 43464, 0, 0, 0, 1, 1, 1, 1, 'Scroll of Agility VIII'),
|
|
(35079, 43465, 0, 0, 0, 1, 1, 1, 1, 'Scroll of Strength VII'),
|
|
(35079, 43466, 0, 0, 0, 1, 1, 1, 1, 'Scroll of Strength VIII'),
|
|
(35080, 36035, 0, 0, 0, 1, 1, 1, 1, 'Condor Belt'),
|
|
(35080, 36036, 0, 0, 0, 1, 1, 1, 1, 'Condor Sandals'),
|
|
(35080, 36037, 0, 0, 0, 1, 1, 1, 1, 'Condor Robe'),
|
|
(35080, 36038, 0, 0, 0, 1, 1, 1, 1, 'Condor Gloves'),
|
|
(35080, 36039, 0, 0, 0, 1, 1, 1, 1, 'Condor Headpiece'),
|
|
(35080, 36040, 0, 0, 0, 1, 1, 1, 1, 'Condor Pants'),
|
|
(35080, 36041, 0, 0, 0, 1, 1, 1, 1, 'Condor Shoulderpads'),
|
|
(35080, 36042, 0, 0, 0, 1, 1, 1, 1, 'Condor Bindings'),
|
|
(35080, 36043, 0, 0, 0, 1, 1, 1, 1, 'Crystalsong Sash'),
|
|
(35080, 36044, 0, 0, 0, 1, 1, 1, 1, 'Crystalsong Slippers'),
|
|
(35080, 36045, 0, 0, 0, 1, 1, 1, 1, 'Crystalsong Robe'),
|
|
(35080, 36046, 0, 0, 0, 1, 1, 1, 1, 'Crystalsong Gloves'),
|
|
(35080, 36047, 0, 0, 0, 1, 1, 1, 1, 'Crystalsong Crown'),
|
|
(35080, 36048, 0, 0, 0, 1, 1, 1, 1, 'Crystalsong Leggings'),
|
|
(35080, 36049, 0, 0, 0, 1, 1, 1, 1, 'Crystalsong Mantle'),
|
|
(35080, 36050, 0, 0, 0, 1, 1, 1, 1, 'Crystalsong Bracelets'),
|
|
(35080, 36051, 0, 0, 0, 1, 1, 1, 1, 'Vizier Sash'),
|
|
(35080, 36052, 0, 0, 0, 1, 1, 1, 1, 'Vizier Slippers'),
|
|
(35080, 36053, 0, 0, 0, 1, 1, 1, 1, 'Vizier Robe'),
|
|
(35080, 36054, 0, 0, 0, 1, 1, 1, 1, 'Vizier Gloves'),
|
|
(35080, 36055, 0, 0, 0, 1, 1, 1, 1, 'Vizier Hood'),
|
|
(35080, 36056, 0, 0, 0, 1, 1, 1, 1, 'Vizier Leggings'),
|
|
(35080, 36057, 0, 0, 0, 1, 1, 1, 1, 'Vizier Mantle'),
|
|
(35080, 36058, 0, 0, 0, 1, 1, 1, 1, 'Vizier Bracelets'),
|
|
(35080, 36059, 0, 0, 0, 1, 1, 1, 1, 'Coldwraith Sash'),
|
|
(35080, 36060, 0, 0, 0, 1, 1, 1, 1, 'Coldwraith Boots'),
|
|
(35080, 36061, 0, 0, 0, 1, 1, 1, 1, 'Coldwraith Robe'),
|
|
(35080, 36062, 0, 0, 0, 1, 1, 1, 1, 'Coldwraith Handwraps'),
|
|
(35080, 36063, 0, 0, 0, 1, 1, 1, 1, 'Coldwraith Cowl'),
|
|
(35080, 36064, 0, 0, 0, 1, 1, 1, 1, 'Coldwraith Pants'),
|
|
(35080, 36065, 0, 0, 0, 1, 1, 1, 1, 'Coldwraith Mantle'),
|
|
(35080, 36066, 0, 0, 0, 1, 1, 1, 1, 'Coldwraith Bindings'),
|
|
(35080, 36147, 0, 0, 0, 1, 1, 1, 1, 'Pygmy Belt'),
|
|
(35080, 36148, 0, 0, 0, 1, 1, 1, 1, 'Pygmy Boots'),
|
|
(35080, 36149, 0, 0, 0, 1, 1, 1, 1, 'Pygmy Tunic'),
|
|
(35080, 36150, 0, 0, 0, 1, 1, 1, 1, 'Pygmy Gloves'),
|
|
(35080, 36151, 0, 0, 0, 1, 1, 1, 1, 'Pygmy Helmet'),
|
|
(35080, 36152, 0, 0, 0, 1, 1, 1, 1, 'Pygmy Pants'),
|
|
(35080, 36153, 0, 0, 0, 1, 1, 1, 1, 'Pygmy Shoulders'),
|
|
(35080, 36154, 0, 0, 0, 1, 1, 1, 1, 'Pygmy Bindings'),
|
|
(35080, 36155, 0, 0, 0, 1, 1, 1, 1, 'Wendigo Girdle'),
|
|
(35080, 36156, 0, 0, 0, 1, 1, 1, 1, 'Wendigo Boots'),
|
|
(35080, 36157, 0, 0, 0, 1, 1, 1, 1, 'Wendigo Chestpiece'),
|
|
(35080, 36158, 0, 0, 0, 1, 1, 1, 1, 'Wendigo Gloves'),
|
|
(35080, 36159, 0, 0, 0, 1, 1, 1, 1, 'Wendigo Hood'),
|
|
(35080, 36160, 0, 0, 0, 1, 1, 1, 1, 'Wendigo Legguards'),
|
|
(35080, 36161, 0, 0, 0, 1, 1, 1, 1, 'Wendigo Pauldrons'),
|
|
(35080, 36162, 0, 0, 0, 1, 1, 1, 1, 'Wendigo Bands'),
|
|
(35080, 36163, 0, 0, 0, 1, 1, 1, 1, 'Webspinner Cord'),
|
|
(35080, 36164, 0, 0, 0, 1, 1, 1, 1, 'Webspinner Boots'),
|
|
(35080, 36165, 0, 0, 0, 1, 1, 1, 1, 'Webspinner Vest'),
|
|
(35080, 36166, 0, 0, 0, 1, 1, 1, 1, 'Webspinner Gloves'),
|
|
(35080, 36167, 0, 0, 0, 1, 1, 1, 1, 'Webspinner Hood'),
|
|
(35080, 36168, 0, 0, 0, 1, 1, 1, 1, 'Webspinner Leggings'),
|
|
(35080, 36169, 0, 0, 0, 1, 1, 1, 1, 'Webspinner Shoulderguards'),
|
|
(35080, 36170, 0, 0, 0, 1, 1, 1, 1, 'Webspinner Bindings'),
|
|
(35080, 36171, 0, 0, 0, 1, 1, 1, 1, 'Geist Belt'),
|
|
(35080, 36172, 0, 0, 0, 1, 1, 1, 1, 'Geist Boots'),
|
|
(35080, 36173, 0, 0, 0, 1, 1, 1, 1, 'Geist Tunic'),
|
|
(35080, 36174, 0, 0, 0, 1, 1, 1, 1, 'Geist Gloves'),
|
|
(35080, 36175, 0, 0, 0, 1, 1, 1, 1, 'Geist Hood'),
|
|
(35080, 36176, 0, 0, 0, 1, 1, 1, 1, 'Geist Legguards'),
|
|
(35080, 36177, 0, 0, 0, 1, 1, 1, 1, 'Geist Shoulders'),
|
|
(35080, 36178, 0, 0, 0, 1, 1, 1, 1, 'Geist Wristguards'),
|
|
(35080, 36259, 0, 0, 0, 1, 1, 1, 1, 'Cormorant Waistband'),
|
|
(35080, 36260, 0, 0, 0, 1, 1, 1, 1, 'Cormorant Footwraps'),
|
|
(35080, 36261, 0, 0, 0, 1, 1, 1, 1, 'Cormorant Chain Vest'),
|
|
(35080, 36262, 0, 0, 0, 1, 1, 1, 1, 'Cormorant Gloves'),
|
|
(35080, 36263, 0, 0, 0, 1, 1, 1, 1, 'Cormorant Helm'),
|
|
(35080, 36264, 0, 0, 0, 1, 1, 1, 1, 'Cormorant Leggings'),
|
|
(35080, 36265, 0, 0, 0, 1, 1, 1, 1, 'Cormorant Mantle'),
|
|
(35080, 36266, 0, 0, 0, 1, 1, 1, 1, 'Cormorant Bracelets'),
|
|
(35080, 36267, 0, 0, 0, 1, 1, 1, 1, 'Ulduar Girdle'),
|
|
(35080, 36268, 0, 0, 0, 1, 1, 1, 1, 'Ulduar Greaves'),
|
|
(35080, 36269, 0, 0, 0, 1, 1, 1, 1, 'Ulduar Breastplate'),
|
|
(35080, 36270, 0, 0, 0, 1, 1, 1, 1, 'Ulduar Gauntlets'),
|
|
(35080, 36271, 0, 0, 0, 1, 1, 1, 1, 'Ulduar Helm'),
|
|
(35080, 36272, 0, 0, 0, 1, 1, 1, 1, 'Ulduar Legguards'),
|
|
(35080, 36273, 0, 0, 0, 1, 1, 1, 1, 'Ulduar Shoulderguards'),
|
|
(35080, 36274, 0, 0, 0, 1, 1, 1, 1, 'Ulduar Bracers'),
|
|
(35080, 36275, 0, 0, 0, 1, 1, 1, 1, 'Spiderlord Belt'),
|
|
(35080, 36276, 0, 0, 0, 1, 1, 1, 1, 'Spiderlord Boots'),
|
|
(35080, 36277, 0, 0, 0, 1, 1, 1, 1, 'Spiderlord Chestpiece'),
|
|
(35080, 36278, 0, 0, 0, 1, 1, 1, 1, 'Spiderlord Gauntlets'),
|
|
(35080, 36279, 0, 0, 0, 1, 1, 1, 1, 'Spiderlord Helm'),
|
|
(35080, 36280, 0, 0, 0, 1, 1, 1, 1, 'Spiderlord Legguards'),
|
|
(35080, 36281, 0, 0, 0, 1, 1, 1, 1, 'Spiderlord Spaulders'),
|
|
(35080, 36282, 0, 0, 0, 1, 1, 1, 1, 'Spiderlord Bracers'),
|
|
(35080, 36283, 0, 0, 0, 1, 1, 1, 1, 'Spectral Waistband'),
|
|
(35080, 36284, 0, 0, 0, 1, 1, 1, 1, 'Spectral Greaves'),
|
|
(35080, 36285, 0, 0, 0, 1, 1, 1, 1, 'Spectral Armor'),
|
|
(35080, 36286, 0, 0, 0, 1, 1, 1, 1, 'Spectral Gauntlets'),
|
|
(35080, 36287, 0, 0, 0, 1, 1, 1, 1, 'Spectral Helmet'),
|
|
(35080, 36288, 0, 0, 0, 1, 1, 1, 1, 'Spectral Legwraps'),
|
|
(35080, 36289, 0, 0, 0, 1, 1, 1, 1, 'Spectral Mantle'),
|
|
(35080, 36290, 0, 0, 0, 1, 1, 1, 1, 'Spectral Bracelets'),
|
|
(35080, 36371, 0, 0, 0, 1, 1, 1, 1, 'Kraken Girdle'),
|
|
(35080, 36372, 0, 0, 0, 1, 1, 1, 1, 'Kraken Greaves'),
|
|
(35080, 36373, 0, 0, 0, 1, 1, 1, 1, 'Kraken Breastplate'),
|
|
(35080, 36374, 0, 0, 0, 1, 1, 1, 1, 'Kraken Gauntlets'),
|
|
(35080, 36375, 0, 0, 0, 1, 1, 1, 1, 'Kraken Helm'),
|
|
(35080, 36376, 0, 0, 0, 1, 1, 1, 1, 'Kraken Legplates'),
|
|
(35080, 36377, 0, 0, 0, 1, 1, 1, 1, 'Kraken Epaulets'),
|
|
(35080, 36378, 0, 0, 0, 1, 1, 1, 1, 'Kraken Vambraces'),
|
|
(35080, 36379, 0, 0, 0, 1, 1, 1, 1, 'Golem Girdle'),
|
|
(35080, 36380, 0, 0, 0, 1, 1, 1, 1, 'Golem Sabatons'),
|
|
(35080, 36381, 0, 0, 0, 1, 1, 1, 1, 'Golem Breastplate'),
|
|
(35080, 36382, 0, 0, 0, 1, 1, 1, 1, 'Golem Gauntlets'),
|
|
(35080, 36383, 0, 0, 0, 1, 1, 1, 1, 'Golem Helmet'),
|
|
(35080, 36384, 0, 0, 0, 1, 1, 1, 1, 'Golem Legplates'),
|
|
(35080, 36385, 0, 0, 0, 1, 1, 1, 1, 'Golem Pauldrons'),
|
|
(35080, 36386, 0, 0, 0, 1, 1, 1, 1, 'Golem Vambraces'),
|
|
(35080, 36387, 0, 0, 0, 1, 1, 1, 1, 'Revenant Belt'),
|
|
(35080, 36388, 0, 0, 0, 1, 1, 1, 1, 'Revenant Greaves'),
|
|
(35080, 36389, 0, 0, 0, 1, 1, 1, 1, 'Revenant Armor'),
|
|
(35080, 36390, 0, 0, 0, 1, 1, 1, 1, 'Revenant Gauntlets'),
|
|
(35080, 36391, 0, 0, 0, 1, 1, 1, 1, 'Revenant Helmet'),
|
|
(35080, 36392, 0, 0, 0, 1, 1, 1, 1, 'Revenant Legguards'),
|
|
(35080, 36393, 0, 0, 0, 1, 1, 1, 1, 'Revenant Epaulets'),
|
|
(35080, 36394, 0, 0, 0, 1, 1, 1, 1, 'Revenant Bracers'),
|
|
(35080, 36395, 0, 0, 0, 1, 1, 1, 1, 'Necropolis Girdle'),
|
|
(35080, 36396, 0, 0, 0, 1, 1, 1, 1, 'Necropolis Sabatons'),
|
|
(35080, 36397, 0, 0, 0, 1, 1, 1, 1, 'Necropolis Breastplate'),
|
|
(35080, 36398, 0, 0, 0, 1, 1, 1, 1, 'Necropolis Gloves'),
|
|
(35080, 36399, 0, 0, 0, 1, 1, 1, 1, 'Necropolis Helm'),
|
|
(35080, 36400, 0, 0, 0, 1, 1, 1, 1, 'Necropolis Legplates'),
|
|
(35080, 36401, 0, 0, 0, 1, 1, 1, 1, 'Necropolis Epaulets'),
|
|
(35080, 36402, 0, 0, 0, 1, 1, 1, 1, 'Necropolis Vambraces'),
|
|
(35080, 36413, 0, 0, 0, 1, 1, 1, 1, 'Dyed Taffeta Cape'),
|
|
(35080, 36414, 0, 0, 0, 1, 1, 1, 1, 'Mammoth Fur Cloak'),
|
|
(35080, 36415, 0, 0, 0, 1, 1, 1, 1, 'Vintage Satin Cloak'),
|
|
(35080, 36416, 0, 0, 0, 1, 1, 1, 1, 'Regal Cloak'),
|
|
(35080, 36427, 0, 0, 0, 1, 1, 1, 1, 'Engraved Ring'),
|
|
(35080, 36428, 0, 0, 0, 1, 1, 1, 1, 'Bouquet Ring'),
|
|
(35080, 36429, 0, 0, 0, 1, 1, 1, 1, 'Spur Ring'),
|
|
(35080, 36430, 0, 0, 0, 1, 1, 1, 1, 'Puzzle Ring'),
|
|
(35080, 36441, 0, 0, 0, 1, 1, 1, 1, 'Pearl Woven Choker'),
|
|
(35080, 36442, 0, 0, 0, 1, 1, 1, 1, 'Silken Cord Amulet'),
|
|
(35080, 36443, 0, 0, 0, 1, 1, 1, 1, 'Platinum Medallion'),
|
|
(35080, 36444, 0, 0, 0, 1, 1, 1, 1, 'Ice Encrusted Amulet'),
|
|
(35080, 36456, 0, 0, 0, 1, 1, 1, 1, 'Icy Kite Shield'),
|
|
(35080, 36457, 0, 0, 0, 1, 1, 1, 1, 'Ivory Shield'),
|
|
(35080, 36458, 0, 0, 0, 1, 1, 1, 1, 'Frozen Shield'),
|
|
(35080, 36470, 0, 0, 0, 1, 1, 1, 1, 'Gilded Scepter'),
|
|
(35080, 36471, 0, 0, 0, 1, 1, 1, 1, 'Ice Crystal'),
|
|
(35080, 36472, 0, 0, 0, 1, 1, 1, 1, 'Carved Rod'),
|
|
(35080, 36484, 0, 0, 0, 1, 1, 1, 1, 'Etched Dagger'),
|
|
(35080, 36485, 0, 0, 0, 1, 1, 1, 1, 'Sinuous Keris'),
|
|
(35080, 36486, 0, 0, 0, 1, 1, 1, 1, 'Ornate Pugio'),
|
|
(35080, 36498, 0, 0, 0, 1, 1, 1, 1, 'Nerubian Mace'),
|
|
(35080, 36499, 0, 0, 0, 1, 1, 1, 1, 'Frigid War-Mace'),
|
|
(35080, 36500, 0, 0, 0, 1, 1, 1, 1, 'Gargoyle\'s Mace'),
|
|
(35080, 36512, 0, 0, 0, 1, 1, 1, 1, 'Onerous Mallet'),
|
|
(35080, 36513, 0, 0, 0, 1, 1, 1, 1, 'Lode-Headed Hammer'),
|
|
(35080, 36514, 0, 0, 0, 1, 1, 1, 1, 'Kingly Battlehammer'),
|
|
(35080, 36526, 0, 0, 0, 1, 1, 1, 1, 'Sleeted Longsword'),
|
|
(35080, 36527, 0, 0, 0, 1, 1, 1, 1, 'Blackened Blade'),
|
|
(35080, 36528, 0, 0, 0, 1, 1, 1, 1, 'Skeleton\'s Sword'),
|
|
(35080, 36540, 0, 0, 0, 1, 1, 1, 1, 'Petrified Sword'),
|
|
(35080, 36541, 0, 0, 0, 1, 1, 1, 1, 'Wintry Claymore'),
|
|
(35080, 36542, 0, 0, 0, 1, 1, 1, 1, 'Invasion Blade'),
|
|
(35080, 36554, 0, 0, 0, 1, 1, 1, 1, 'Cursed Staff'),
|
|
(35080, 36555, 0, 0, 0, 1, 1, 1, 1, 'Minion Staff'),
|
|
(35080, 36556, 0, 0, 0, 1, 1, 1, 1, 'Apocalyptic Staff'),
|
|
(35080, 36568, 0, 0, 0, 1, 1, 1, 1, 'Hollowed Bone Knuckles'),
|
|
(35080, 36569, 0, 0, 0, 1, 1, 1, 1, 'Savage Talons'),
|
|
(35080, 36570, 0, 0, 0, 1, 1, 1, 1, 'Corrupted Scythes'),
|
|
(35080, 36582, 0, 0, 0, 1, 1, 1, 1, 'Ice Pick'),
|
|
(35080, 36583, 0, 0, 0, 1, 1, 1, 1, 'Skeletal Hacker'),
|
|
(35080, 36584, 0, 0, 0, 1, 1, 1, 1, 'Snowy Edge'),
|
|
(35080, 36596, 0, 0, 0, 1, 1, 1, 1, 'Rupturing Axe'),
|
|
(35080, 36597, 0, 0, 0, 1, 1, 1, 1, 'Ice-Splintering Axe'),
|
|
(35080, 36598, 0, 0, 0, 1, 1, 1, 1, 'Scarlet Battle Axe'),
|
|
(35080, 36610, 0, 0, 0, 1, 1, 1, 1, 'Plagued Pike'),
|
|
(35080, 36611, 0, 0, 0, 1, 1, 1, 1, 'Bleak Scythe'),
|
|
(35080, 36612, 0, 0, 0, 1, 1, 1, 1, 'Scourge War Spear'),
|
|
(35080, 36624, 0, 0, 0, 1, 1, 1, 1, 'Shrieking Bow'),
|
|
(35080, 36625, 0, 0, 0, 1, 1, 1, 1, 'Massive Recurved Bow'),
|
|
(35080, 36626, 0, 0, 0, 1, 1, 1, 1, 'Military Compound Bow'),
|
|
(35080, 36638, 0, 0, 0, 1, 1, 1, 1, 'Bloody Crossbow'),
|
|
(35080, 36639, 0, 0, 0, 1, 1, 1, 1, 'Brutal Ballista'),
|
|
(35080, 36640, 0, 0, 0, 1, 1, 1, 1, 'Scourge Crossbow'),
|
|
(35080, 36652, 0, 0, 0, 1, 1, 1, 1, 'Stocky Shotgun'),
|
|
(35080, 36653, 0, 0, 0, 1, 1, 1, 1, 'Precipice Longrifle'),
|
|
(35080, 36654, 0, 0, 0, 1, 1, 1, 1, 'Harsh-Winter Rifle'),
|
|
(35080, 36666, 0, 0, 0, 1, 1, 1, 1, 'Polar Wand'),
|
|
(35080, 36667, 0, 0, 0, 1, 1, 1, 1, 'Solid Ice Wand'),
|
|
(35080, 36668, 0, 0, 0, 1, 1, 1, 1, 'Mindless Wand'),
|
|
(35080, 36680, 0, 0, 0, 1, 1, 1, 1, 'Mystic Fang'),
|
|
(35080, 36681, 0, 0, 0, 1, 1, 1, 1, 'Wisdom Carver'),
|
|
(35080, 36682, 0, 0, 0, 1, 1, 1, 1, 'Seduced Blade'),
|
|
(35080, 36694, 0, 0, 0, 1, 1, 1, 1, 'Beatific Mace'),
|
|
(35080, 36695, 0, 0, 0, 1, 1, 1, 1, 'Dogmatic Scepter'),
|
|
(35080, 36696, 0, 0, 0, 1, 1, 1, 1, 'Graced Scepter'),
|
|
(35080, 36708, 0, 0, 0, 1, 1, 1, 1, 'Snow Blossom Staff'),
|
|
(35080, 36709, 0, 0, 0, 1, 1, 1, 1, 'Crystal Woodstaff'),
|
|
(35080, 36710, 0, 0, 0, 1, 1, 1, 1, 'Avalanche Staff'),
|
|
(35080, 36722, 0, 0, 0, 1, 1, 1, 1, 'Pyramid Throwing Star'),
|
|
(35080, 36723, 0, 0, 0, 1, 1, 1, 1, 'Clawed Shuriken'),
|
|
(35080, 36724, 0, 0, 0, 1, 1, 1, 1, 'Frozen Throwing Blades'),
|
|
(35081, 34052, 0, 0, 0, 1, 1, 1, 1, 'Dream Shard'),
|
|
(35081, 37760, 0, 0, 0, 1, 1, 1, 1, 'Cracklefire Wristguards'),
|
|
(35081, 37761, 0, 0, 0, 1, 1, 1, 1, 'Shimmerthread Girdle'),
|
|
(35081, 37770, 0, 0, 0, 1, 1, 1, 1, 'Bulge-Concealing Breastplate'),
|
|
(35081, 37771, 0, 0, 0, 1, 1, 1, 1, 'Wristguards of Verdant Recovery'),
|
|
(35081, 37780, 0, 0, 0, 1, 1, 1, 1, 'Condor-Bone Chestguard'),
|
|
(35081, 37781, 0, 0, 0, 1, 1, 1, 1, 'Grips of the Warming Heart'),
|
|
(35081, 37793, 0, 0, 0, 1, 1, 1, 1, 'Skullcage of Eternal Terror'),
|
|
(35081, 37794, 0, 0, 0, 1, 1, 1, 1, 'Torta\'s Oversized Choker'),
|
|
(35081, 37822, 0, 0, 0, 1, 1, 1, 1, 'Twisted Puzzle-Ring'),
|
|
(35081, 37824, 0, 0, 0, 1, 1, 1, 1, 'Gwyneth\'s Runed Dragonwand'),
|
|
(35081, 41777, 0, 0, 0, 1, 1, 1, 1, 'Design: Etched Monarch Topaz'),
|
|
(35081, 41778, 0, 0, 0, 1, 1, 1, 1, 'Design: Resolute Monarch Topaz'),
|
|
(35081, 41779, 0, 0, 0, 1, 1, 1, 1, 'Design: Stalwart Monarch Topaz'),
|
|
(35081, 41780, 0, 0, 0, 1, 1, 1, 1, 'Design: Champion\'s Monarch Topaz'),
|
|
(35081, 41781, 0, 0, 0, 1, 1, 1, 1, 'Design: Misty Forest Emerald'),
|
|
(35081, 41782, 0, 0, 0, 1, 1, 1, 1, 'Design: Shining Forest Emerald'),
|
|
(35081, 41783, 0, 0, 0, 1, 1, 1, 1, 'Design: Purified Twilight Opal'),
|
|
(35081, 41784, 0, 0, 0, 1, 1, 1, 1, 'Design: Sovereign Twilight Opal'),
|
|
(35081, 41785, 0, 0, 0, 1, 1, 1, 1, 'Design: Tenuous Twilight Opal'),
|
|
(35081, 41786, 0, 0, 0, 1, 1, 1, 1, 'Design: Destructive Skyflare Diamond'),
|
|
(35081, 41787, 0, 0, 0, 1, 1, 1, 1, 'Design: Thundering Skyflare Diamond'),
|
|
(35081, 41788, 0, 0, 0, 1, 1, 1, 1, 'Design: Beaming Earthsiege Diamond'),
|
|
(35081, 41789, 0, 0, 0, 1, 1, 1, 1, 'Design: Inscribed Monarch Topaz'),
|
|
(35081, 43624, 0, 0, 0, 1, 1, 1, 1, 'Titanium Lockbox'),
|
|
(35082, 39427, 0, 0, 0, 1, 1, 1, 1, 'Omen of Ruin'),
|
|
(35082, 39467, 0, 0, 0, 1, 1, 1, 1, 'Minion Bracers'),
|
|
(35082, 39468, 0, 0, 0, 1, 1, 1, 1, 'The Stray'),
|
|
(35082, 39470, 0, 0, 0, 1, 1, 1, 1, 'Medallion of the Disgraced'),
|
|
(35082, 39472, 0, 0, 0, 1, 1, 1, 1, 'Chain of Latent Energies'),
|
|
(35082, 39473, 0, 0, 0, 1, 1, 1, 1, 'Contortion'),
|
|
(35083, 1, 35077, 40, 0, 1, 0, 1, 1, '(ReferenceTable)'),
|
|
(35083, 2, 35077, 40, 0, 1, 0, 1, 1, '(ReferenceTable)'),
|
|
(35083, 3, 35078, 20, 0, 1, 0, 1, 1, '(ReferenceTable)'),
|
|
(35083, 4, 35079, 7, 0, 1, 0, 1, 1, '(ReferenceTable)'),
|
|
(35083, 5, 35080, 10, 0, 1, 0, 1, 1, '(ReferenceTable)'),
|
|
(35083, 6, 35081, 3, 0, 1, 0, 1, 1, '(ReferenceTable)'),
|
|
(35083, 7, 35082, 1, 0, 1, 0, 1, 1, '(ReferenceTable)'),
|
|
(35084, 40406, 0, 0, 0, 1, 1, 1, 1, 'Inevitable Defeat'),
|
|
(35084, 40407, 0, 0, 0, 1, 1, 1, 1, 'Silent Crusader'),
|
|
(35084, 40408, 0, 0, 0, 1, 1, 1, 1, 'Haunting Call'),
|
|
(35084, 40409, 0, 0, 0, 1, 1, 1, 1, 'Boots of the Escaped Captive'),
|
|
(35084, 40410, 0, 0, 0, 1, 1, 1, 1, 'Shadow of the Ghoul'),
|
|
(35084, 40412, 0, 0, 0, 1, 1, 1, 1, 'Ousted Bead Necklace'),
|
|
(35084, 40414, 0, 0, 0, 1, 1, 1, 1, 'Shoulderguards of the Undaunted'),
|
|
(35085, 1, 35077, 40, 0, 1, 0, 1, 1, '(ReferenceTable)'),
|
|
(35085, 2, 35077, 40, 0, 1, 0, 1, 1, '(ReferenceTable)'),
|
|
(35085, 3, 35078, 20, 0, 1, 0, 1, 1, '(ReferenceTable)'),
|
|
(35085, 4, 35079, 7, 0, 1, 0, 1, 1, '(ReferenceTable)'),
|
|
(35085, 5, 35080, 10, 0, 1, 0, 1, 1, '(ReferenceTable)'),
|
|
(35085, 6, 35081, 3, 0, 1, 0, 1, 1, '(ReferenceTable)'),
|
|
(35085, 7, 35084, 1, 0, 1, 0, 1, 1, '(ReferenceTable)'),
|
|
(35086, 40426, 0, 0, 0, 1, 1, 1, 1, 'Signet of the Accord'),
|
|
(35086, 40427, 0, 0, 0, 1, 1, 1, 1, 'Circle of Arcane Streams'),
|
|
(35086, 40428, 0, 0, 0, 1, 1, 1, 1, 'Titan\'s Outlook'),
|
|
(35086, 40429, 0, 0, 0, 1, 1, 1, 1, 'Crimson Steel'),
|
|
(35086, 40430, 0, 0, 0, 1, 1, 1, 1, 'Majestic Dragon Figurine'),
|
|
(35087, 40613, 0, 0, 0, 1, 1, 1, 1, 'Gloves of the Lost Conqueror'),
|
|
(35087, 40614, 0, 0, 0, 1, 1, 1, 1, 'Gloves of the Lost Protector'),
|
|
(35087, 40615, 0, 0, 0, 1, 1, 1, 1, 'Gloves of the Lost Vanquisher'),
|
|
(35088, 43988, 0, 0, 0, 2, 1, 1, 1, 'Gale-Proof Cloak'),
|
|
(35088, 43989, 0, 0, 0, 2, 1, 1, 1, 'Remembrance Girdle'),
|
|
(35088, 43990, 0, 0, 0, 2, 1, 1, 1, 'Blade-Scarred Tunic'),
|
|
(35088, 43991, 0, 0, 0, 2, 1, 1, 1, 'Legguards of Composure'),
|
|
(35088, 43992, 0, 0, 0, 2, 1, 1, 1, 'Volitant Amulet'),
|
|
(35089, 43993, 0, 0, 0, 4, 1, 1, 1, 'Greatring of Collision'),
|
|
(35089, 43994, 0, 0, 0, 4, 1, 1, 1, 'Belabored Legplates'),
|
|
(35089, 43995, 0, 0, 0, 4, 1, 1, 1, 'Enamored Cowl'),
|
|
(35089, 43996, 0, 0, 0, 4, 1, 1, 1, 'Sabatons of Firmament'),
|
|
(35089, 43998, 0, 0, 0, 4, 1, 1, 1, 'Chestguard of Flagrant Prowess'),
|
|
(35090, 43986, 0, 0, 0, 8, 5, 1, 1, 'Reins of the Black Drake'),
|
|
(35091, 49839, 0, 0, 0, 1, 1, 1, 1, 'Mourning Malice'),
|
|
(35091, 49840, 0, 0, 0, 1, 1, 1, 1, 'Hate-Forged Cleaver'),
|
|
(35091, 49841, 0, 0, 0, 1, 1, 1, 1, 'Blackened Geist Ribs'),
|
|
(35091, 49842, 0, 0, 0, 1, 1, 1, 1, 'Tapestry of the Frozen Throne'),
|
|
(35091, 49843, 0, 0, 0, 1, 1, 1, 1, 'Crystalline Citadel Gauntlets'),
|
|
(35091, 49844, 0, 0, 0, 1, 1, 1, 1, 'Crypt Fiend Slayer'),
|
|
(35091, 49845, 0, 0, 0, 1, 1, 1, 1, 'Bone Golem Scapula'),
|
|
(35091, 49846, 0, 0, 0, 1, 1, 1, 1, 'Chilled Heart of the Glacier'),
|
|
(35091, 49847, 0, 0, 0, 1, 1, 1, 1, 'Legguards of Untimely Demise'),
|
|
(35091, 49848, 0, 0, 0, 1, 1, 1, 1, 'Grim Lasher Shoulderguards'),
|
|
(35091, 49849, 0, 0, 0, 1, 1, 1, 1, 'Tattered Glacial-Woven Hood'),
|
|
(35091, 49851, 0, 0, 0, 1, 1, 1, 1, 'Greathelm of the Silver Hand'),
|
|
(35092, 50302, 0, 0, 0, 1, 1, 1, 1, 'Liar\'s Tongue'),
|
|
(35092, 50303, 0, 0, 0, 1, 1, 1, 1, 'Black Icicle'),
|
|
(35092, 50304, 0, 0, 0, 1, 1, 1, 1, 'Hoarfrost Gauntlets'),
|
|
(35092, 50305, 0, 0, 0, 1, 1, 1, 1, 'Grinning Skull Boots'),
|
|
(35092, 50306, 0, 0, 0, 1, 1, 1, 1, 'The Lady\'s Promise'),
|
|
(35092, 50308, 0, 0, 0, 1, 1, 1, 1, 'Blighted Leather Footpads'),
|
|
(35092, 50309, 0, 0, 0, 1, 1, 1, 1, 'Shriveled Heart'),
|
|
(35092, 50310, 0, 0, 0, 1, 1, 1, 1, 'Fossilized Ammonite Choker'),
|
|
(35092, 50311, 0, 0, 0, 1, 1, 1, 1, 'Second Helm of the Executioner'),
|
|
(35092, 50312, 0, 0, 0, 1, 1, 1, 1, 'Chestguard of Broken Branches'),
|
|
(35092, 50313, 0, 0, 0, 1, 1, 1, 1, 'Oath of Empress Zoe'),
|
|
(35092, 50314, 0, 0, 0, 1, 1, 1, 1, 'Strip of Remorse'),
|
|
(35093, 27452, 0, 0, 0, 1, 1, 1, 1, 'Light Scribe Bands'),
|
|
(35093, 27453, 0, 0, 0, 1, 1, 1, 1, 'Averinn\'s Ring of Slaying'),
|
|
(35093, 27454, 0, 0, 0, 1, 1, 1, 1, 'Volcanic Pauldrons'),
|
|
(35093, 27455, 0, 0, 0, 1, 1, 1, 1, 'Irondrake Faceguard'),
|
|
(35093, 27456, 0, 0, 0, 1, 1, 1, 1, 'Raiments of Nature\'s Breath'),
|
|
(35093, 27457, 0, 0, 0, 1, 1, 1, 1, 'Life Bearer\'s Gauntlets'),
|
|
(35093, 27458, 0, 0, 0, 1, 1, 1, 1, 'Oceansong Kilt'),
|
|
(35093, 27459, 0, 0, 0, 1, 1, 1, 1, 'Vambraces of Daring'),
|
|
(35093, 27460, 0, 0, 0, 1, 1, 1, 1, 'Reavers\' Ring'),
|
|
(35093, 27461, 0, 0, 0, 1, 1, 1, 1, 'Chestguard of the Prowler'),
|
|
(35094, 30592, 0, 0, 0, 1, 1, 1, 1, 'Steady Chrysoprase'),
|
|
(35094, 30593, 0, 0, 0, 1, 1, 1, 1, 'Iridescent Fire Opal'),
|
|
(35094, 30594, 0, 0, 0, 1, 1, 1, 1, 'Effulgent Chrysoprase'),
|
|
(39534, 32589, 0, 0, 0, 1, 1, 1, 1, 'Hellfire-Encased Pendant'),
|
|
(39534, 32590, 0, 0, 0, 1, 1, 1, 1, 'Nethervoid Cloak'),
|
|
(39534, 32591, 0, 0, 0, 1, 1, 1, 1, 'Choker of Serrated Blades'),
|
|
(39534, 32592, 0, 0, 0, 1, 1, 1, 1, 'Chestguard of Relentless Storms'),
|
|
(39534, 32609, 0, 0, 0, 1, 1, 1, 1, 'Boots of the Divine Light'),
|
|
(39534, 32736, 0, 0, 0, 1, 1, 1, 1, 'Plans: Swiftsteel Bracers'),
|
|
(39534, 32739, 0, 0, 0, 1, 1, 1, 1, 'Plans: Dawnsteel Shoulders'),
|
|
(39534, 32745, 0, 0, 0, 1, 1, 1, 1, 'Pattern: Shoulderpads of Renewed Life'),
|
|
(39534, 32746, 0, 0, 0, 1, 1, 1, 1, 'Pattern: Swiftstrike Bracers'),
|
|
(39534, 32748, 0, 0, 0, 1, 1, 1, 1, 'Pattern: Bindings of Lightning Reflexes'),
|
|
(39534, 32751, 0, 0, 0, 1, 1, 1, 1, 'Pattern: Living Earth Shoulders'),
|
|
(39534, 32752, 0, 0, 0, 1, 1, 1, 1, 'Pattern: Swiftheal Wraps'),
|
|
(39534, 32755, 0, 0, 0, 1, 1, 1, 1, 'Pattern: Mantle of Nimble Thought'),
|
|
(39534, 32945, 0, 0, 0, 1, 1, 1, 1, 'Fist of Molten Fury'),
|
|
(39534, 32946, 0, 0, 0, 1, 1, 1, 1, 'Claw of Molten Fury'),
|
|
(39534, 34009, 0, 0, 0, 1, 1, 1, 1, 'Hammer of Judgement'),
|
|
(39534, 34010, 0, 0, 0, 1, 1, 1, 1, 'Pepe\'s Shroud of Pacification'),
|
|
(43000, 31882, 0, 0, 0, 1, 1, 1, 1, 'Ace of Blessings'),
|
|
(43000, 31892, 0, 0, 0, 1, 1, 1, 1, 'Ace of Storms'),
|
|
(43000, 31901, 0, 0, 0, 1, 1, 1, 1, 'Ace of Furies'),
|
|
(43000, 31910, 0, 0, 0, 1, 1, 1, 1, 'Ace of Lunacy'),
|
|
(43001, 27768, 0, 0, 0, 1, 2, 1, 1, 'Oracle Belt of Timeless Mystery'),
|
|
(43001, 27769, 0, 0, 0, 1, 2, 1, 1, 'Endbringer'),
|
|
(43001, 27770, 0, 0, 0, 1, 2, 1, 1, 'Argussian Compass'),
|
|
(43001, 27771, 0, 0, 0, 1, 2, 1, 1, 'Doomplate Shoulderguards'),
|
|
(43001, 27772, 0, 0, 0, 1, 2, 1, 1, 'Stormshield of Renewal'),
|
|
(43001, 27773, 0, 0, 0, 1, 2, 1, 1, 'Barbaric Legstraps'),
|
|
(43001, 27779, 0, 0, 0, 1, 2, 1, 1, 'Bone Chain Necklace'),
|
|
(43001, 27780, 0, 0, 0, 1, 2, 1, 1, 'Ring of Fabled Hope'),
|
|
(43001, 27781, 0, 0, 0, 1, 2, 1, 1, 'Demonfang Ritual Helm'),
|
|
(43001, 27896, 0, 0, 0, 1, 2, 1, 1, 'Alembic of Infernal Power'),
|
|
(43001, 27907, 0, 0, 0, 1, 2, 1, 1, 'Mana-Etched Pantaloons'),
|
|
(43001, 27938, 0, 0, 0, 1, 2, 1, 1, 'Savage Mask of the Lynx Lord'),
|
|
(43002, 30606, 0, 0, 0, 1, 3, 1, 1, 'Lambent Chrysoprase'),
|
|
(43002, 30607, 0, 0, 0, 1, 3, 1, 1, 'Splendid Fire Opal'),
|
|
(43002, 30608, 0, 0, 0, 1, 3, 1, 1, 'Radiant Chrysoprase'),
|
|
(43003, 30575, 0, 0, 0, 1, 4, 1, 1, 'Nimble Fire Opal'),
|
|
(43003, 30581, 0, 0, 0, 1, 4, 1, 1, 'Durable Fire Opal'),
|
|
(43003, 30582, 0, 0, 0, 1, 4, 1, 1, 'Deadly Fire Opal'),
|
|
(43004, 30603, 0, 0, 0, 1, 1, 1, 1, 'Royal Tanzanite'),
|
|
(43004, 30604, 0, 0, 0, 1, 1, 1, 1, 'Resplendent Fire Opal'),
|
|
(43004, 30605, 0, 0, 0, 1, 1, 1, 1, 'Vivid Chrysoprase'),
|
|
(43005, 30593, 0, 0, 0, 1, 2, 1, 1, 'Iridescent Fire Opal'),
|
|
(43005, 30594, 0, 0, 0, 1, 2, 1, 1, 'Effulgent Chrysoprase'),
|
|
(43006, 30583, 0, 0, 0, 1, 2, 1, 1, 'Timeless Chrysoprase'),
|
|
(43006, 30584, 0, 0, 0, 1, 2, 1, 1, 'Enscribed Fire Opal'),
|
|
(43006, 30585, 0, 0, 0, 1, 2, 1, 1, 'Glistening Fire Opal'),
|
|
(43007, 30552, 0, 0, 0, 1, 3, 1, 1, 'Blessed Tanzanite'),
|
|
(43007, 30553, 0, 0, 0, 1, 3, 1, 1, 'Pristine Fire Opal'),
|
|
(43007, 30554, 0, 0, 0, 1, 3, 1, 1, 'Stalwart Fire Opal'),
|
|
(43008, 30586, 0, 0, 0, 1, 3, 1, 1, 'Seer\'s Chrysoprase'),
|
|
(43008, 30587, 0, 0, 0, 1, 3, 1, 1, 'Champion\'s Fire Opal'),
|
|
(43008, 30588, 0, 0, 0, 1, 3, 1, 1, 'Potent Fire Opal'),
|
|
(43009, 30564, 0, 0, 0, 1, 3, 1, 1, 'Shining Fire Opal'),
|
|
(43009, 30565, 0, 0, 0, 1, 3, 1, 1, 'Assassin\'s Fire Opal'),
|
|
(43009, 30566, 0, 0, 0, 1, 3, 1, 1, 'Defender\'s Tanzanite'),
|
|
(43010, 30556, 0, 0, 0, 1, 3, 1, 1, 'Glinting Fire Opal'),
|
|
(43010, 30560, 0, 0, 0, 1, 3, 1, 1, 'Rune Covered Chrysoprase'),
|
|
(43010, 30563, 0, 0, 0, 1, 3, 1, 1, 'Regal Tanzanite'),
|
|
(43011, 30589, 0, 0, 0, 1, 3, 1, 1, 'Dazzling Chrysoprase'),
|
|
(43011, 30590, 0, 0, 0, 1, 3, 1, 1, 'Enduring Chrysoprase'),
|
|
(43011, 30591, 0, 0, 0, 1, 3, 1, 1, 'Empowered Fire Opal'),
|
|
(43012, 30549, 0, 0, 0, 1, 3, 1, 1, 'Shifting Tanzanite'),
|
|
(43012, 30550, 0, 0, 0, 1, 3, 1, 1, 'Sundered Chrysoprase'),
|
|
(43012, 30551, 0, 0, 0, 1, 3, 1, 1, 'Infused Fire Opal'),
|
|
(43013, 30600, 0, 0, 0, 1, 3, 1, 1, 'Fluorescent Tanzanite'),
|
|
(43013, 30601, 0, 0, 0, 1, 3, 1, 1, 'Beaming Fire Opal'),
|
|
(43013, 30602, 0, 0, 0, 1, 3, 1, 1, 'Jagged Chrysoprase'),
|
|
(43014, 30555, 0, 0, 0, 1, 3, 1, 1, 'Glowing Tanzanite'),
|
|
(43014, 30556, 0, 0, 0, 1, 3, 1, 1, 'Glinting Fire Opal'),
|
|
(43014, 30558, 0, 0, 0, 1, 3, 1, 1, 'Glimmering Fire Opal'),
|
|
(43015, 30546, 0, 0, 0, 1, 3, 1, 1, 'Sovereign Tanzanite'),
|
|
(43015, 30547, 0, 0, 0, 1, 3, 1, 1, 'Luminous Fire Opal'),
|
|
(43015, 30548, 0, 0, 0, 1, 3, 1, 1, 'Polished Chrysoprase'),
|
|
(43016, 30572, 0, 0, 0, 1, 3, 1, 1, 'Imperial Tanzanite'),
|
|
(43016, 30573, 0, 0, 0, 1, 3, 1, 1, 'Mysterious Fire Opal'),
|
|
(43016, 30574, 0, 0, 0, 1, 3, 1, 1, 'Brutal Tanzanite'),
|
|
(44000, 765, 0, 0.4, 0, 1, 1, 1, 1, 'Silverleaf'),
|
|
(44000, 785, 0, 0, 0, 1, 1, 1, 1, 'Mageroyal'),
|
|
(44000, 1645, 0, 2, 0, 1, 1, 1, 1, 'Moonberry Juice'),
|
|
(44000, 2447, 0, 0.7, 0, 1, 1, 1, 1, 'Peacebloom'),
|
|
(44000, 2449, 0, 0.6, 0, 1, 1, 1, 1, 'Earthroot'),
|
|
(44000, 2450, 0, 0, 0, 1, 1, 1, 1, 'Briarthorn'),
|
|
(44000, 2452, 0, 0, 0, 1, 1, 1, 1, 'Swiftthistle'),
|
|
(44000, 2453, 0, 0, 0, 1, 1, 1, 1, 'Bruiseweed'),
|
|
(44000, 3357, 0, 0, 0, 1, 1, 1, 1, 'Liferoot'),
|
|
(44000, 3358, 0, 0.4, 0, 1, 1, 1, 1, 'Khadgar\'s Whisker'),
|
|
(44000, 3669, 0, 12, 0, 1, 1, 1, 1, 'Gelatinous Goo'),
|
|
(44000, 3670, 0, 11, 0, 1, 1, 1, 1, 'Large Slimy Bone'),
|
|
(44000, 3671, 0, 11, 0, 1, 1, 1, 1, 'Lifeless Skull'),
|
|
(44000, 3673, 0, 12, 0, 1, 1, 1, 6, 'Broken Arrow'),
|
|
(44000, 3674, 0, 11, 0, 1, 1, 1, 1, 'Decomposed Boot'),
|
|
(44000, 3676, 0, 12, 0, 1, 1, 1, 1, 'Slimy Ichor'),
|
|
(44000, 3818, 0, 0, 0, 1, 1, 1, 1, 'Fadeleaf'),
|
|
(44000, 3819, 0, 0.6, 0, 1, 1, 1, 1, 'Wintersbite'),
|
|
(44000, 3820, 0, 0, 0, 1, 1, 1, 1, 'Stranglekelp'),
|
|
(44000, 3851, 0, 0.4, 0, 1, 1, 1, 1, 'Solid Iron Maul'),
|
|
(44000, 3928, 0, 1.4, 0, 1, 1, 1, 1, 'Superior Healing Potion'),
|
|
(44000, 4419, 0, 0.2, 0, 1, 1, 1, 1, 'Scroll of Intellect III'),
|
|
(44000, 4422, 0, 0.2, 0, 1, 1, 1, 1, 'Scroll of Stamina III'),
|
|
(44000, 4608, 0, 5, 0, 1, 1, 1, 1, 'Raw Black Truffle'),
|
|
(44000, 4625, 0, 0.4, 0, 1, 1, 1, 1, 'Firebloom'),
|
|
(44000, 6149, 0, 0.9, 0, 1, 1, 1, 1, 'Greater Mana Potion'),
|
|
(44000, 7296, 0, 11, 0, 1, 1, 1, 1, 'Extinguished Torch'),
|
|
(44000, 8831, 0, 0, 0, 1, 1, 1, 1, 'Purple Lotus'),
|
|
(44000, 8836, 0, 0, 0, 1, 1, 1, 1, 'Arthas\' Tears'),
|
|
(44000, 8838, 0, 0.6, 0, 1, 1, 1, 1, 'Sungrass'),
|
|
(44000, 8839, 0, 0, 0, 1, 1, 1, 1, 'Blindweed'),
|
|
(44000, 8845, 0, 0.4, 0, 1, 1, 1, 1, 'Ghost Mushroom'),
|
|
(44000, 8846, 0, 0.4, 0, 1, 1, 1, 1, 'Gromsblood'),
|
|
(44001, 33314, 0, 100, 0, 1, 0, 1, 1, 'Vrykul Scroll of Ascension'),
|
|
(44002, 33345, 0, 100, 0, 1, 0, 1, 1, 'Vrykul Scroll of Ascension'),
|
|
(44003, 34090, 0, 100, 0, 1, 0, 1, 1, 'Mezhen\'s Writings'),
|
|
(44004, 34091, 0, 100, 0, 1, 0, 1, 1, 'Mezhen\'s Writings'),
|
|
(44005, 42203, 0, 100, 0, 1, 0, 1, 1, 'Dark Armor Plate'),
|
|
(44006, 16645, 0, 0, 0, 1, 1, 1, 1, 'Shredder Operating Manual - Page 1'),
|
|
(44006, 16646, 0, 0, 0, 1, 1, 1, 1, 'Shredder Operating Manual - Page 2'),
|
|
(44006, 16647, 0, 0, 0, 1, 1, 1, 1, 'Shredder Operating Manual - Page 3'),
|
|
(44006, 16648, 0, 0, 0, 1, 1, 1, 1, 'Shredder Operating Manual - Page 4'),
|
|
(44006, 16649, 0, 0, 0, 1, 1, 1, 1, 'Shredder Operating Manual - Page 5'),
|
|
(44006, 16650, 0, 0, 0, 1, 1, 1, 1, 'Shredder Operating Manual - Page 6'),
|
|
(44006, 16651, 0, 0, 0, 1, 1, 1, 1, 'Shredder Operating Manual - Page 7'),
|
|
(44006, 16652, 0, 0, 0, 1, 1, 1, 1, 'Shredder Operating Manual - Page 8'),
|
|
(44006, 16653, 0, 0, 0, 1, 1, 1, 1, 'Shredder Operating Manual - Page 9'),
|
|
(44006, 16654, 0, 0, 0, 1, 1, 1, 1, 'Shredder Operating Manual - Page 10'),
|
|
(44006, 16655, 0, 0, 0, 1, 1, 1, 1, 'Shredder Operating Manual - Page 11'),
|
|
(44006, 16656, 0, 0, 0, 1, 1, 1, 1, 'Shredder Operating Manual - Page 12'),
|
|
(44007, 117, 0, 10, 0, 1, 0, 1, 1, 'Tough Jerky'),
|
|
(44007, 118, 0, 3, 0, 1, 0, 1, 1, 'Minor Healing Potion'),
|
|
(44007, 159, 0, 5, 0, 1, 0, 1, 1, 'Refreshing Spring Water'),
|
|
(44007, 2589, 0, 35, 0, 1, 0, 1, 2, 'Linen Cloth'),
|
|
(44007, 24073, 24073, 15, 0, 1, 1, 1, 1, '(ReferenceTable)'),
|
|
(44007, 24074, 24074, 1, 0, 1, 1, 1, 1, '(ReferenceTable)'),
|
|
(44007, 24700, 24700, 1, 0, 1, 0, 1, 1, '(ReferenceTable)'),
|
|
(44007, 24720, 24720, 3, 0, 1, 0, 1, 1, '(ReferenceTable)'),
|
|
(44008, 4359, 0, 40, 0, 1, 1, 1, 1, 'Handful of Copper Bolts'),
|
|
(44008, 4361, 0, 40, 0, 1, 1, 1, 1, 'Copper Tube'),
|
|
(44008, 4363, 0, 0, 0, 1, 1, 1, 1, 'Copper Modulator'),
|
|
(44009, 856, 0, 0, 0, 1, 1, 1, 1, 'Blue Leather Bag'),
|
|
(44009, 2657, 0, 0, 0, 1, 1, 1, 1, 'Red Leather Bag'),
|
|
(44009, 5573, 0, 0, 0, 1, 1, 1, 1, 'Green Leather Bag'),
|
|
(44009, 5574, 0, 0, 0, 1, 1, 1, 1, 'White Leather Bag'),
|
|
(44010, 804, 0, 0, 0, 1, 1, 1, 1, 'Large Blue Sack'),
|
|
(44010, 857, 0, 0, 0, 1, 1, 1, 1, 'Large Red Sack'),
|
|
(44010, 5575, 0, 0, 0, 1, 1, 1, 1, 'Large Green Sack'),
|
|
(44010, 5576, 0, 0, 0, 1, 1, 1, 1, 'Large Brown Sack'),
|
|
(44011, 2725, 0, 0, 0, 1, 1, 1, 1, 'Green Hills of Stranglethorn - Page 1'),
|
|
(44011, 2728, 0, 0, 0, 1, 1, 1, 1, 'Green Hills of Stranglethorn - Page 4'),
|
|
(44011, 2730, 0, 0, 0, 1, 1, 1, 1, 'Green Hills of Stranglethorn - Page 6'),
|
|
(44011, 2732, 0, 0, 0, 1, 1, 1, 1, 'Green Hills of Stranglethorn - Page 8'),
|
|
(44011, 2734, 0, 0, 0, 1, 1, 1, 1, 'Green Hills of Stranglethorn - Page 10'),
|
|
(44011, 2735, 0, 0, 0, 1, 1, 1, 1, 'Green Hills of Stranglethorn - Page 11'),
|
|
(44011, 2738, 0, 0, 0, 1, 1, 1, 1, 'Green Hills of Stranglethorn - Page 14'),
|
|
(44011, 2740, 0, 0, 0, 1, 1, 1, 1, 'Green Hills of Stranglethorn - Page 16'),
|
|
(44011, 2742, 0, 0, 0, 1, 1, 1, 1, 'Green Hills of Stranglethorn - Page 18'),
|
|
(44011, 2744, 0, 0, 0, 1, 1, 1, 1, 'Green Hills of Stranglethorn - Page 20'),
|
|
(44011, 2745, 0, 0, 0, 1, 1, 1, 1, 'Green Hills of Stranglethorn - Page 21'),
|
|
(44011, 2748, 0, 0, 0, 1, 1, 1, 1, 'Green Hills of Stranglethorn - Page 24'),
|
|
(44011, 2749, 0, 0, 0, 1, 1, 1, 1, 'Green Hills of Stranglethorn - Page 25'),
|
|
(44011, 2750, 0, 0, 0, 1, 1, 1, 1, 'Green Hills of Stranglethorn - Page 26'),
|
|
(44011, 2751, 0, 0, 0, 1, 1, 1, 1, 'Green Hills of Stranglethorn - Page 27'),
|
|
(44012, 22450, 0, 100, 0, 1, 0, 1, 1, 'Void Crystal'),
|
|
(45000, 929, 0, 2, 0, 1, 0, 1, 1, 'Healing Potion'),
|
|
(45000, 1205, 0, 3, 0, 1, 0, 1, 1, 'Melon Juice'),
|
|
(45000, 2589, 0, 15, 0, 1, 2, 1, 3, 'Linen Cloth'),
|
|
(45000, 2592, 0, 30, 0, 1, 2, 1, 2, 'Wool Cloth'),
|
|
(45000, 3385, 0, 1, 0, 1, 0, 1, 1, 'Lesser Mana Potion'),
|
|
(45000, 3770, 0, 5, 0, 1, 0, 1, 1, 'Mutton Chop'),
|
|
(45000, 4306, 0, 5, 0, 1, 2, 1, 1, 'Silk Cloth'),
|
|
(45000, 24059, 24059, 80, 0, 1, 1, 1, 1, '(ReferenceTable)'),
|
|
(45000, 24061, 24061, 2, 0, 1, 1, 1, 1, '(ReferenceTable)'),
|
|
(45000, 24105, 24105, 18, 0, 1, 1, 1, 1, '(ReferenceTable)'),
|
|
(45000, 24722, 24722, 1, 0, 1, 0, 1, 1, '(ReferenceTable)'),
|
|
(45000, 24732, 24732, 1, 0, 1, 0, 1, 1, '(ReferenceTable)'),
|
|
(45000, 44010, 44010, 0.5, 0, 1, 0, 1, 1, '(ReferenceTable)'),
|
|
(45001, 929, 0, 2, 0, 1, 0, 1, 1, 'Healing Potion'),
|
|
(45001, 1205, 0, 3, 0, 1, 0, 1, 1, 'Melon Juice'),
|
|
(45001, 3385, 0, 1, 0, 1, 0, 1, 1, 'Lesser Mana Potion'),
|
|
(45001, 3770, 0, 5, 0, 1, 0, 1, 1, 'Mutton Chop'),
|
|
(45001, 24059, 24059, 80, 0, 1, 1, 1, 1, '(ReferenceTable)'),
|
|
(45001, 24065, 24065, 1, 0, 1, 1, 1, 1, '(ReferenceTable)'),
|
|
(45001, 24067, 24067, 1, 0, 1, 1, 1, 1, '(ReferenceTable)'),
|
|
(45001, 24107, 24107, 18, 0, 1, 1, 1, 1, '(ReferenceTable)'),
|
|
(45001, 24722, 24722, 1, 0, 1, 0, 1, 1, '(ReferenceTable)'),
|
|
(45001, 24732, 24732, 1, 0, 1, 0, 1, 1, '(ReferenceTable)'),
|
|
(45001, 44010, 44010, 0.5, 0, 1, 0, 1, 1, '(ReferenceTable)'),
|
|
(45002, 1697, 0, 33, 0, 1, 0, 1, 1, 'Keen Raptor Tooth'),
|
|
(45002, 3180, 0, 10, 0, 1, 0, 1, 1, 'Flecked Raptor Scale'),
|
|
(45002, 3685, 0, 60, 0, 1, 0, 1, 1, 'Raptor Egg'),
|
|
(45002, 5635, 0, 8, 0, 1, 0, 1, 1, 'Sharp Claw'),
|
|
(45002, 24063, 24063, 3, 0, 1, 1, 1, 1, '(ReferenceTable)'),
|
|
(45002, 24107, 24107, 20, 0, 1, 1, 1, 1, '(ReferenceTable)'),
|
|
(45002, 24732, 24732, 1, 0, 1, 0, 1, 1, '(ReferenceTable)'),
|
|
(45003, 730, 0, 40, 0, 1, 0, 1, 1, 'Murloc Eye'),
|
|
(45003, 929, 0, 2, 0, 1, 0, 1, 1, 'Healing Potion'),
|
|
(45003, 1205, 0, 2, 0, 1, 0, 1, 1, 'Melon Juice'),
|
|
(45003, 1468, 0, 35, 0, 1, 0, 1, 1, 'Murloc Fin'),
|
|
(45003, 3385, 0, 1, 0, 1, 0, 1, 1, 'Lesser Mana Potion'),
|
|
(45003, 5524, 0, 30, 0, 1, 0, 1, 1, 'Thick-shelled Clam'),
|
|
(45003, 5784, 0, 20, 0, 1, 0, 1, 1, 'Slimy Murloc Scale'),
|
|
(45003, 6308, 0, 5, 0, 1, 0, 1, 3, 'Raw Bristle Whisker Catfish'),
|
|
(45003, 17057, 0, 30, 0, 1, 0, 1, 1, 'Shiny Fish Scales'),
|
|
(45003, 24722, 24722, 2, 0, 1, 0, 1, 1, '(ReferenceTable)'),
|
|
(45003, 44010, 44010, 0.5, 0, 1, 0, 1, 1, '(ReferenceTable)'),
|
|
(45004, 929, 0, 1.5, 0, 1, 0, 1, 1, 'Healing Potion'),
|
|
(45004, 1205, 0, 3, 0, 1, 0, 1, 1, 'Melon Juice'),
|
|
(45004, 2592, 0, 12, 0, 1, 0, 1, 2, 'Wool Cloth'),
|
|
(45004, 3337, 0, 38, 1, 1, 0, 1, 1, 'Dragonmaw War Banner'),
|
|
(45004, 3385, 0, 0.5, 0, 1, 0, 1, 1, 'Lesser Mana Potion'),
|
|
(45004, 3770, 0, 5, 0, 1, 0, 1, 1, 'Mutton Chop'),
|
|
(45004, 4306, 0, 28, 0, 1, 0, 1, 2, 'Silk Cloth'),
|
|
(45004, 7131, 0, 100, 1, 1, 0, 2, 2, 'Dragonmaw Shinbone'),
|
|
(45004, 24722, 24722, 1, 0, 1, 0, 1, 1, '(ReferenceTable)'),
|
|
(45004, 44010, 44010, 0.5, 0, 1, 0, 1, 1, '(ReferenceTable)'),
|
|
(45005, 765, 0, 0, 0, 1, 1, 1, 1, 'Silverleaf'),
|
|
(45005, 785, 0, 0, 0, 1, 1, 1, 1, 'Mageroyal'),
|
|
(45005, 2449, 0, 0, 0, 1, 1, 1, 1, 'Earthroot'),
|
|
(45005, 2450, 0, 0, 0, 1, 1, 1, 1, 'Briarthorn'),
|
|
(45005, 2452, 0, 0, 0, 1, 1, 1, 1, 'Swiftthistle'),
|
|
(45005, 2453, 0, 0, 0, 1, 1, 1, 1, 'Bruiseweed'),
|
|
(45006, 117, 0, 9, 0, 1, 0, 1, 1, 'Tough Jerky'),
|
|
(45006, 118, 0, 3, 0, 1, 0, 1, 2, 'Minor Healing Potion'),
|
|
(45006, 159, 0, 4, 0, 1, 0, 1, 2, 'Refreshing Spring Water'),
|
|
(45006, 2589, 0, 33, 0, 1, 0, 1, 2, 'Linen Cloth'),
|
|
(45006, 2591, 0, 22, 0, 1, 0, 1, 1, 'Dirty Trogg Cloth'),
|
|
(45006, 24073, 24073, 20, 0, 1, 1, 1, 1, '(ReferenceTable)'),
|
|
(45006, 24074, 24074, 1, 0, 1, 1, 1, 1, '(ReferenceTable)'),
|
|
(45006, 24700, 24700, 1, 0, 1, 0, 1, 1, '(ReferenceTable)'),
|
|
(45006, 44007, 44007, 0.5, 0, 1, 0, 1, 1, '(ReferenceTable)'),
|
|
(45008, 858, 0, 1.7, 0, 1, 2, 1, 1, 'Lesser Healing Potion'),
|
|
(45008, 1179, 0, 3, 0, 1, 0, 1, 1, 'Ice Cold Milk'),
|
|
(45008, 2455, 0, 0.8, 0, 1, 2, 1, 2, 'Minor Mana Potion'),
|
|
(45008, 2589, 0, 40, 0, 1, 0, 1, 3, 'Linen Cloth'),
|
|
(45008, 3110, 0, 38, 1, 1, 0, 1, 1, 'Tunnel Rat Ear'),
|
|
(45008, 4537, 0, 5, 0, 1, 0, 1, 1, 'Tel\'Abim Banana'),
|
|
(45008, 24073, 24073, 15, 0, 1, 1, 1, 1, '(ReferenceTable)'),
|
|
(45008, 24100, 24100, 1, 0, 1, 1, 1, 1, '(ReferenceTable)'),
|
|
(45008, 24720, 24720, 1, 0, 1, 1, 1, 1, '(ReferenceTable)'),
|
|
(45008, 24730, 24730, 1, 0, 1, 1, 1, 1, '(ReferenceTable)'),
|
|
(45009, 858, 0, 1.8, 0, 1, 3, 1, 1, 'Lesser Healing Potion'),
|
|
(45009, 1179, 0, 3, 0, 1, 0, 1, 1, 'Ice Cold Milk'),
|
|
(45009, 2287, 0, 6, 0, 1, 0, 1, 1, 'Haunch of Meat'),
|
|
(45009, 2455, 0, 0.7, 0, 1, 3, 1, 1, 'Minor Mana Potion'),
|
|
(45009, 2589, 0, 22, 0, 1, 2, 1, 5, 'Linen Cloth'),
|
|
(45009, 2592, 0, 24, 0, 1, 2, 1, 4, 'Wool Cloth'),
|
|
(45009, 2609, 0, 10, 1, 1, 0, 1, 1, 'Disarming Colloid'),
|
|
(45009, 24070, 24070, 20, 0, 1, 1, 1, 1, '(ReferenceTable)'),
|
|
(45009, 24104, 24104, 2, 0, 1, 1, 1, 1, '(ReferenceTable)'),
|
|
(45009, 24720, 24720, 1, 0, 1, 1, 1, 1, '(ReferenceTable)'),
|
|
(45009, 24732, 24732, 1, 0, 1, 1, 1, 1, '(ReferenceTable)'),
|
|
(45009, 44009, 44009, 0.5, 0, 1, 1, 1, 1, '(ReferenceTable)'),
|
|
(45010, 36918, 0, 0, 0, 1, 1, 1, 1, 'Scarlet Ruby'),
|
|
(45010, 36921, 0, 0, 0, 1, 1, 1, 1, 'Autumn\'s Glow'),
|
|
(45010, 36924, 0, 0, 0, 1, 1, 1, 1, 'Sky Sapphire'),
|
|
(45010, 36927, 0, 0, 0, 1, 1, 1, 1, 'Twilight Opal'),
|
|
(45010, 36930, 0, 0, 0, 1, 1, 1, 1, 'Monarch Topaz'),
|
|
(45010, 36933, 0, 0, 0, 1, 1, 1, 1, 'Forest Emerald'),
|
|
(45100, 54569, 0, 0, 0, 1, 1, 1, 1, 'Sharpened Twilight Scale'),
|
|
(45100, 54571, 0, 0, 0, 1, 1, 1, 1, 'Petrified Twilight Scale'),
|
|
(45100, 54572, 0, 0, 0, 1, 1, 1, 1, 'Charred Twilight Scale'),
|
|
(45100, 54573, 0, 0, 0, 1, 1, 1, 1, 'Glowing Twilight Scale'),
|
|
(45101, 54588, 0, 0, 0, 1, 1, 1, 1, 'Charred Twilight Scale'),
|
|
(45101, 54589, 0, 0, 0, 1, 1, 1, 1, 'Glowing Twilight Scale'),
|
|
(45101, 54590, 0, 0, 0, 1, 1, 1, 1, 'Sharpened Twilight Scale'),
|
|
(45101, 54591, 0, 0, 0, 1, 1, 1, 1, 'Petrified Twilight Scale'),
|
|
(50010, 51804, 0, 0, 0, 1, 1, 1, 1, 'Winking Eye of Love'),
|
|
(50010, 51805, 0, 0, 0, 1, 1, 1, 1, 'Heartbreak Charm'),
|
|
(50010, 51806, 0, 0, 0, 1, 1, 1, 1, 'Shard of Pirouetting Happiness'),
|
|
(50010, 51807, 0, 0, 0, 1, 1, 1, 1, 'Sweet Perfume Broach'),
|
|
(50010, 51808, 0, 0, 0, 1, 1, 1, 1, 'Choker of the Pure Heart'),
|
|
(50012, 22236, 0, 0, 0, 1, 1, 1, 1, 'Buttermilk Delight'),
|
|
(50012, 22237, 0, 0, 0, 1, 1, 1, 1, 'Dark Desire'),
|
|
(50012, 22238, 0, 0, 0, 1, 1, 1, 1, 'Very Berry Cream'),
|
|
(50012, 22239, 0, 0, 0, 1, 1, 1, 1, 'Sweet Surprise'),
|
|
(50013, 35623, 0, 43, 0, 1, 0, 2, 6, 'Eternal Air'),
|
|
(50013, 35624, 0, 42, 0, 1, 0, 4, 10, 'Eternal Earth'),
|
|
(50013, 35627, 0, 43, 0, 1, 0, 2, 10, 'Eternal Shadow'),
|
|
(50013, 36860, 0, 42, 0, 1, 0, 2, 6, 'Eternal Fire'),
|
|
(50013, 39681, 0, 21, 0, 1, 0, 8, 10, 'Handful of Cobalt Bolts'),
|
|
(50013, 39682, 0, 22, 0, 1, 0, 5, 5, 'Overcharged Capacitor'),
|
|
(50013, 39686, 0, 26, 0, 1, 0, 2, 3, 'Neo-Dynamic Gear Assembly'),
|
|
(50013, 39690, 0, 30, 0, 1, 0, 16, 19, 'Volatile Blasting Trigger'),
|
|
(50013, 49050, 0, 2, 0, 1, 0, 1, 1, 'Schematic: Jeeves'),
|
|
(50014, 39681, 0, 10, 0, 1, 0, 1, 4, 'Handful of Cobalt Bolts'),
|
|
(50014, 39686, 0, 1.2, 0, 1, 0, 1, 1, 'Neo-Dynamic Gear Assembly'),
|
|
(50014, 39690, 0, 13, 0, 1, 0, 1, 3, 'Volatile Blasting Trigger'),
|
|
(50014, 41337, 0, 42, 0, 1, 0, 1, 1, 'Whizzed-Out Gizmo'),
|
|
(50014, 41338, 0, 33, 0, 1, 0, 1, 1, 'Sprung Whirlygig'),
|
|
(50014, 49050, 0, 0.8, 0, 1, 0, 1, 1, 'Schematic: Jeeves'),
|
|
(50015, 39681, 0, 5, 0, 1, 0, 2, 4, 'Handful of Cobalt Bolts'),
|
|
(50015, 39682, 0, 0.5, 0, 1, 0, 1, 1, 'Overcharged Capacitor'),
|
|
(50015, 39686, 0, 0.5, 0, 1, 0, 1, 1, 'Neo-Dynamic Gear Assembly'),
|
|
(50015, 39690, 0, 8, 0, 1, 0, 1, 3, 'Volatile Blasting Trigger'),
|
|
(50015, 41337, 0, 42, 0, 1, 0, 1, 3, 'Whizzed-Out Gizmo'),
|
|
(50015, 41338, 0, 43.5, 0, 1, 0, 1, 3, 'Sprung Whirlygig'),
|
|
(50015, 49050, 0, 0.5, 0, 1, 0, 1, 1, 'Schematic: Jeeves'),
|
|
(50016, 39681, 0, 9.5, 0, 1, 0, 2, 4, 'Handful of Cobalt Bolts'),
|
|
(50016, 39686, 0, 0.5, 0, 1, 0, 1, 1, 'Neo-Dynamic Gear Assembly'),
|
|
(50016, 39690, 0, 9.5, 0, 1, 0, 1, 3, 'Volatile Blasting Trigger'),
|
|
(50016, 41337, 0, 40, 0, 1, 0, 1, 3, 'Whizzed-Out Gizmo'),
|
|
(50016, 41338, 0, 40, 0, 1, 0, 1, 3, 'Sprung Whirlygig'),
|
|
(50016, 49050, 0, 0.5, 0, 1, 0, 1, 1, 'Schematic: Jeeves'),
|
|
(50017, 39681, 0, 4, 0, 1, 0, 2, 4, 'Handful of Cobalt Bolts'),
|
|
(50017, 39682, 0, 0.5, 0, 1, 0, 1, 1, 'Overcharged Capacitor'),
|
|
(50017, 39686, 0, 0.5, 0, 1, 0, 1, 1, 'Neo-Dynamic Gear Assembly'),
|
|
(50017, 39690, 0, 9, 0, 1, 0, 1, 3, 'Volatile Blasting Trigger'),
|
|
(50017, 41337, 0, 42, 0, 1, 0, 1, 3, 'Whizzed-Out Gizmo'),
|
|
(50017, 41338, 0, 43, 0, 1, 0, 1, 3, 'Sprung Whirlygig'),
|
|
(50017, 49050, 0, 1, 0, 1, 0, 1, 1, 'Schematic: Jeeves'),
|
|
(185090, 23857, 0, 0, 0, 1, 1, 1, 1, 'Legacy of the Mountain King'),
|
|
(185090, 23862, 0, 0, 0, 1, 1, 1, 1, 'Redemption of the Fallen'),
|
|
(185090, 23864, 0, 0, 0, 1, 1, 1, 1, 'Torment of the Worgen'),
|
|
(185090, 23865, 0, 0, 0, 1, 1, 1, 1, 'Wrath of the Titans'),
|
|
(526760, 36918, 0, 0, 0, 1, 1, 1, 3, 'Scarlet Ruby'),
|
|
(526760, 36921, 0, 0, 0, 1, 1, 1, 3, 'Autumn\'s Glow'),
|
|
(526760, 36924, 0, 0, 0, 1, 1, 1, 3, 'Sky Sapphire'),
|
|
(526760, 36927, 0, 0, 0, 1, 1, 1, 3, 'Twilight Opal'),
|
|
(526760, 36930, 0, 0, 0, 1, 1, 1, 3, 'Monarch Topaz'),
|
|
(526760, 36933, 0, 0, 0, 1, 1, 1, 3, 'Forest Emerald'),
|
|
(526780, 866, 0, 0, 0, 1, 1, 1, 1, 'Monk\'s Staff'),
|
|
(526780, 1521, 0, 0, 0, 1, 1, 1, 1, 'Lumbering Ogre Axe'),
|
|
(526780, 1529, 0, 0, 0, 1, 1, 1, 1, 'Jade'),
|
|
(526780, 1613, 0, 0, 0, 1, 1, 1, 1, 'Spiritchaser Staff'),
|
|
(526780, 1624, 0, 0, 0, 1, 1, 1, 1, 'Skullsplitter Helm'),
|
|
(526780, 1625, 0, 0, 0, 1, 1, 1, 1, 'Exquisite Flamberge'),
|
|
(526780, 1640, 0, 0, 0, 1, 1, 1, 1, 'Monstrous War Axe'),
|
|
(526780, 1659, 0, 0, 0, 1, 1, 1, 1, 'Engineering Gloves'),
|
|
(526780, 1664, 0, 0, 0, 1, 1, 1, 1, 'Spellforce Rod'),
|
|
(526780, 1685, 0, 0, 0, 1, 1, 1, 1, 'Troll-hide Bag'),
|
|
(526780, 2623, 0, 0, 0, 1, 1, 1, 1, 'Holy Diadem'),
|
|
(526780, 2624, 0, 0, 0, 1, 1, 1, 1, 'Thinking Cap'),
|
|
(526780, 3187, 0, 0, 0, 1, 1, 1, 1, 'Sacrificial Kris'),
|
|
(526780, 3430, 0, 0, 0, 1, 1, 1, 1, 'Sniper Rifle'),
|
|
(526780, 3864, 0, 0, 0, 1, 1, 1, 1, 'Citrine'),
|
|
(526780, 3914, 0, 0, 0, 1, 1, 1, 1, 'Journeyman\'s Backpack'),
|
|
(526780, 4044, 0, 0, 0, 1, 1, 1, 1, 'Aurora Pants'),
|
|
(526780, 4045, 0, 0, 0, 1, 1, 1, 1, 'Mistscape Bracers'),
|
|
(526780, 4046, 0, 0, 0, 1, 1, 1, 1, 'Mistscape Pants'),
|
|
(526780, 4047, 0, 0, 0, 1, 1, 1, 1, 'Mistscape Boots'),
|
|
(526780, 4058, 0, 0, 0, 1, 1, 1, 1, 'Glyphed Breastplate'),
|
|
(526780, 4060, 0, 0, 0, 1, 1, 1, 1, 'Glyphed Leggings'),
|
|
(526780, 4061, 0, 0, 0, 1, 1, 1, 1, 'Imperial Leather Bracers'),
|
|
(526780, 4062, 0, 0, 0, 1, 1, 1, 1, 'Imperial Leather Pants'),
|
|
(526780, 4063, 0, 0, 0, 1, 1, 1, 1, 'Imperial Leather Gloves'),
|
|
(526780, 4068, 0, 0, 0, 1, 1, 1, 1, 'Chief Brigadier Shield'),
|
|
(526780, 4070, 0, 0, 0, 1, 1, 1, 1, 'Jouster\'s Crest'),
|
|
(526780, 4079, 0, 0, 0, 1, 1, 1, 1, 'Chief Brigadier Leggings'),
|
|
(526780, 4080, 0, 0, 0, 1, 1, 1, 1, 'Blackforge Cowl'),
|
|
(526780, 4083, 0, 0, 0, 1, 1, 1, 1, 'Blackforge Gauntlets'),
|
|
(526780, 4087, 0, 0, 0, 1, 1, 1, 1, 'Trueshot Bow'),
|
|
(526780, 4725, 0, 0, 0, 1, 1, 1, 1, 'Chief Brigadier Pauldrons'),
|
|
(526780, 4734, 0, 0, 0, 1, 1, 1, 1, 'Mistscape Mantle'),
|
|
(526780, 4735, 0, 0, 0, 1, 1, 1, 1, 'Mistscape Cloak'),
|
|
(526780, 4736, 0, 0, 0, 1, 1, 1, 1, 'Mistscape Sash'),
|
|
(526780, 4737, 0, 0, 0, 1, 1, 1, 1, 'Imperial Leather Spaulders'),
|
|
(526780, 4738, 0, 0, 0, 1, 1, 1, 1, 'Imperial Leather Belt'),
|
|
(526780, 5011, 0, 0, 0, 1, 1, 1, 1, 'Welken Ring'),
|
|
(526780, 5079, 0, 0, 0, 1, 1, 1, 1, 'Cold Basilisk Eye'),
|
|
(526780, 5215, 0, 0, 0, 1, 1, 1, 1, 'Ember Wand'),
|
|
(526780, 5216, 0, 0, 0, 1, 1, 1, 1, 'Umbral Wand'),
|
|
(526780, 5608, 0, 0, 0, 1, 1, 1, 1, 'Living Cowl'),
|
|
(526780, 6411, 0, 0, 0, 1, 1, 1, 1, 'Chief Brigadier Armor'),
|
|
(526780, 6415, 0, 0, 0, 1, 1, 1, 1, 'Aurora Robe'),
|
|
(526780, 6423, 0, 0, 0, 1, 1, 1, 1, 'Blackforge Greaves'),
|
|
(526780, 6424, 0, 0, 0, 1, 1, 1, 1, 'Blackforge Cape'),
|
|
(526780, 6425, 0, 0, 0, 1, 1, 1, 1, 'Blackforge Girdle'),
|
|
(526780, 6426, 0, 0, 0, 1, 1, 1, 1, 'Blackforge Bracers'),
|
|
(526780, 6428, 0, 0, 0, 1, 1, 1, 1, 'Mistscape Gloves'),
|
|
(526780, 6429, 0, 0, 0, 1, 1, 1, 1, 'Mistscape Wizard Hat'),
|
|
(526780, 6431, 0, 0, 0, 1, 1, 1, 1, 'Imperial Leather Boots'),
|
|
(526780, 6432, 0, 0, 0, 1, 1, 1, 1, 'Imperial Cloak'),
|
|
(526780, 6433, 0, 0, 0, 1, 1, 1, 1, 'Imperial Leather Helm'),
|
|
(526780, 7112, 0, 0, 0, 1, 1, 1, 1, 'Aurora Armor'),
|
|
(526780, 7332, 0, 0, 0, 1, 1, 1, 1, 'Regal Armor'),
|
|
(526780, 7429, 0, 0, 0, 1, 1, 1, 1, 'Twilight Armor'),
|
|
(526780, 7430, 0, 0, 0, 1, 1, 1, 1, 'Twilight Robe'),
|
|
(526780, 7439, 0, 0, 0, 1, 1, 1, 1, 'Sentinel Breastplate'),
|
|
(526780, 7468, 0, 0, 0, 1, 1, 1, 1, 'Regal Robe'),
|
|
(526780, 7469, 0, 0, 0, 1, 1, 1, 1, 'Regal Leggings'),
|
|
(526780, 7470, 0, 0, 0, 1, 1, 1, 1, 'Regal Wizard Hat'),
|
|
(526780, 7471, 0, 0, 0, 1, 1, 1, 1, 'Regal Gloves'),
|
|
(526780, 7472, 0, 0, 0, 1, 1, 1, 1, 'Regal Boots'),
|
|
(526780, 7473, 0, 0, 0, 1, 1, 1, 1, 'Regal Mantle'),
|
|
(526780, 7474, 0, 0, 0, 1, 1, 1, 1, 'Regal Cloak'),
|
|
(526780, 7475, 0, 0, 0, 1, 1, 1, 1, 'Regal Cuffs'),
|
|
(526780, 7476, 0, 0, 0, 1, 1, 1, 1, 'Regal Sash'),
|
|
(526780, 7477, 0, 0, 0, 1, 1, 1, 1, 'Ranger Tunic'),
|
|
(526780, 7478, 0, 0, 0, 1, 1, 1, 1, 'Ranger Leggings'),
|
|
(526780, 7479, 0, 0, 0, 1, 1, 1, 1, 'Ranger Helm'),
|
|
(526780, 7480, 0, 0, 0, 1, 1, 1, 1, 'Ranger Gloves'),
|
|
(526780, 7481, 0, 0, 0, 1, 1, 1, 1, 'Ranger Boots'),
|
|
(526780, 7482, 0, 0, 0, 1, 1, 1, 1, 'Ranger Shoulders'),
|
|
(526780, 7483, 0, 0, 0, 1, 1, 1, 1, 'Ranger Cloak'),
|
|
(526780, 7484, 0, 0, 0, 1, 1, 1, 1, 'Ranger Wristguards'),
|
|
(526780, 7485, 0, 0, 0, 1, 1, 1, 1, 'Ranger Cord'),
|
|
(526780, 7486, 0, 0, 0, 1, 1, 1, 1, 'Captain\'s Breastplate'),
|
|
(526780, 7487, 0, 0, 0, 1, 1, 1, 1, 'Captain\'s Leggings'),
|
|
(526780, 7488, 0, 0, 0, 1, 1, 1, 1, 'Captain\'s Circlet'),
|
|
(526780, 7489, 0, 0, 0, 1, 1, 1, 1, 'Captain\'s Gauntlets'),
|
|
(526780, 7490, 0, 0, 0, 1, 1, 1, 1, 'Captain\'s Boots'),
|
|
(526780, 7491, 0, 0, 0, 1, 1, 1, 1, 'Captain\'s Shoulderguards'),
|
|
(526780, 7493, 0, 0, 0, 1, 1, 1, 1, 'Captain\'s Bracers'),
|
|
(526780, 7494, 0, 0, 0, 1, 1, 1, 1, 'Captain\'s Waistguard'),
|
|
(526780, 7495, 0, 0, 0, 1, 1, 1, 1, 'Captain\'s Buckler'),
|
|
(526780, 7496, 0, 0, 0, 1, 1, 1, 1, 'Field Plate Shield'),
|
|
(526780, 7522, 0, 0, 0, 1, 1, 1, 1, 'Gossamer Boots'),
|
|
(526780, 7524, 0, 0, 0, 1, 1, 1, 1, 'Gossamer Cape'),
|
|
(526780, 7525, 0, 0, 0, 1, 1, 1, 1, 'Gossamer Bracers'),
|
|
(526780, 7533, 0, 0, 0, 1, 1, 1, 1, 'Cabalist Cloak'),
|
|
(526780, 7534, 0, 0, 0, 1, 1, 1, 1, 'Cabalist Bracers'),
|
|
(526780, 7544, 0, 0, 0, 1, 1, 1, 1, 'Champion\'s Cape'),
|
|
(526780, 7545, 0, 0, 0, 1, 1, 1, 1, 'Champion\'s Bracers'),
|
|
(526780, 7552, 0, 0, 0, 1, 1, 1, 1, 'Falcon\'s Hook'),
|
|
(526780, 7555, 0, 0, 0, 1, 1, 1, 1, 'Regal Star'),
|
|
(526780, 7556, 0, 0, 0, 1, 1, 1, 1, 'Twilight Orb'),
|
|
(526780, 7610, 0, 0, 0, 1, 1, 1, 1, 'Aurora Sphere'),
|
|
(526780, 8120, 0, 0, 0, 1, 1, 1, 1, 'Heraldic Cloak'),
|
|
(526780, 8137, 0, 0, 0, 1, 1, 1, 1, 'Chromite Bracers'),
|
|
(526780, 8139, 0, 0, 0, 1, 1, 1, 1, 'Chromite Gauntlets'),
|
|
(526780, 8140, 0, 0, 0, 1, 1, 1, 1, 'Chromite Girdle'),
|
|
(526780, 8141, 0, 0, 0, 1, 1, 1, 1, 'Chromite Greaves'),
|
|
(526780, 8142, 0, 0, 0, 1, 1, 1, 1, 'Chromite Barbute'),
|
|
(526780, 8144, 0, 0, 0, 1, 1, 1, 1, 'Chromite Pauldrons'),
|
|
(526780, 8156, 0, 0, 0, 1, 1, 1, 1, 'Jouster\'s Wristguards'),
|
|
(526780, 8157, 0, 0, 0, 1, 1, 1, 1, 'Jouster\'s Chestplate'),
|
|
(526780, 8158, 0, 0, 0, 1, 1, 1, 1, 'Jouster\'s Gauntlets'),
|
|
(526780, 8159, 0, 0, 0, 1, 1, 1, 1, 'Jouster\'s Girdle'),
|
|
(526780, 8160, 0, 0, 0, 1, 1, 1, 1, 'Jouster\'s Greaves'),
|
|
(526780, 8161, 0, 0, 0, 1, 1, 1, 1, 'Jouster\'s Visor'),
|
|
(526780, 8162, 0, 0, 0, 1, 1, 1, 1, 'Jouster\'s Legplates'),
|
|
(526780, 8163, 0, 0, 0, 1, 1, 1, 1, 'Jouster\'s Pauldrons'),
|
|
(526780, 8194, 0, 0, 0, 1, 1, 1, 1, 'Goblin Nutcracker'),
|
|
(526780, 8196, 0, 0, 0, 1, 1, 1, 1, 'Ebon Scimitar'),
|
|
(526780, 9285, 0, 0, 0, 1, 1, 1, 1, 'Field Plate Vambraces'),
|
|
(526780, 9286, 0, 0, 0, 1, 1, 1, 1, 'Field Plate Armor'),
|
|
(526780, 9287, 0, 0, 0, 1, 1, 1, 1, 'Field Plate Gauntlets'),
|
|
(526780, 9288, 0, 0, 0, 1, 1, 1, 1, 'Field Plate Girdle'),
|
|
(526780, 9289, 0, 0, 0, 1, 1, 1, 1, 'Field Plate Boots'),
|
|
(526780, 9290, 0, 0, 0, 1, 1, 1, 1, 'Field Plate Helmet'),
|
|
(526780, 9291, 0, 0, 0, 1, 1, 1, 1, 'Field Plate Leggings'),
|
|
(526780, 9292, 0, 0, 0, 1, 1, 1, 1, 'Field Plate Pauldrons'),
|
|
(526780, 9874, 0, 0, 0, 1, 1, 1, 1, 'Sorcerer Drape'),
|
|
(526780, 9876, 0, 0, 0, 1, 1, 1, 1, 'Sorcerer Slippers'),
|
|
(526780, 9878, 0, 0, 0, 1, 1, 1, 1, 'Sorcerer Hat'),
|
|
(526780, 9880, 0, 0, 0, 1, 1, 1, 1, 'Sorcerer Gloves'),
|
|
(526780, 9881, 0, 0, 0, 1, 1, 1, 1, 'Sorcerer Mantle'),
|
|
(526780, 9882, 0, 0, 0, 1, 1, 1, 1, 'Sorcerer Sphere'),
|
|
(526780, 9883, 0, 0, 0, 1, 1, 1, 1, 'Sorcerer Pants'),
|
|
(526780, 9884, 0, 0, 0, 1, 1, 1, 1, 'Sorcerer Robe'),
|
|
(526780, 9885, 0, 0, 0, 1, 1, 1, 1, 'Huntsman\'s Boots'),
|
|
(526780, 9887, 0, 0, 0, 1, 1, 1, 1, 'Huntsman\'s Armor'),
|
|
(526780, 9889, 0, 0, 0, 1, 1, 1, 1, 'Huntsman\'s Cap'),
|
|
(526780, 9892, 0, 0, 0, 1, 1, 1, 1, 'Huntsman\'s Gloves'),
|
|
(526780, 9893, 0, 0, 0, 1, 1, 1, 1, 'Huntsman\'s Leggings'),
|
|
(526780, 9894, 0, 0, 0, 1, 1, 1, 1, 'Huntsman\'s Shoulders'),
|
|
(526780, 9895, 0, 0, 0, 1, 1, 1, 1, 'Jazeraint Boots'),
|
|
(526780, 9897, 0, 0, 0, 1, 1, 1, 1, 'Jazeraint Chestguard'),
|
|
(526780, 9899, 0, 0, 0, 1, 1, 1, 1, 'Jazeraint Shield'),
|
|
(526780, 9900, 0, 0, 0, 1, 1, 1, 1, 'Jazeraint Gauntlets'),
|
|
(526780, 9901, 0, 0, 0, 1, 1, 1, 1, 'Jazeraint Belt'),
|
|
(526780, 9902, 0, 0, 0, 1, 1, 1, 1, 'Jazeraint Helm'),
|
|
(526780, 9903, 0, 0, 0, 1, 1, 1, 1, 'Jazeraint Leggings'),
|
|
(526780, 9904, 0, 0, 0, 1, 1, 1, 1, 'Jazeraint Pauldrons'),
|
|
(526780, 9906, 0, 0, 0, 1, 1, 1, 1, 'Royal Sash'),
|
|
(526780, 9907, 0, 0, 0, 1, 1, 1, 1, 'Royal Boots'),
|
|
(526780, 9908, 0, 0, 0, 1, 1, 1, 1, 'Royal Cape'),
|
|
(526780, 9909, 0, 0, 0, 1, 1, 1, 1, 'Royal Bands'),
|
|
(526780, 9910, 0, 0, 0, 1, 1, 1, 1, 'Royal Gloves'),
|
|
(526780, 9912, 0, 0, 0, 1, 1, 1, 1, 'Royal Amice'),
|
|
(526780, 9915, 0, 0, 0, 1, 1, 1, 1, 'Royal Headband'),
|
|
(526780, 9916, 0, 0, 0, 1, 1, 1, 1, 'Tracker\'s Belt'),
|
|
(526780, 9917, 0, 0, 0, 1, 1, 1, 1, 'Tracker\'s Boots'),
|
|
(526780, 9918, 0, 0, 0, 1, 1, 1, 1, 'Brigade Defender'),
|
|
(526780, 9919, 0, 0, 0, 1, 1, 1, 1, 'Tracker\'s Cloak'),
|
|
(526780, 9920, 0, 0, 0, 1, 1, 1, 1, 'Tracker\'s Gloves'),
|
|
(526780, 9921, 0, 0, 0, 1, 1, 1, 1, 'Tracker\'s Headband'),
|
|
(526780, 9923, 0, 0, 0, 1, 1, 1, 1, 'Tracker\'s Shoulderpads'),
|
|
(526780, 9925, 0, 0, 0, 1, 1, 1, 1, 'Tracker\'s Wristguards'),
|
|
(526780, 9926, 0, 0, 0, 1, 1, 1, 1, 'Brigade Boots'),
|
|
(526780, 9927, 0, 0, 0, 1, 1, 1, 1, 'Brigade Bracers'),
|
|
(526780, 9928, 0, 0, 0, 1, 1, 1, 1, 'Brigade Breastplate'),
|
|
(526780, 9929, 0, 0, 0, 1, 1, 1, 1, 'Brigade Cloak'),
|
|
(526780, 9930, 0, 0, 0, 1, 1, 1, 1, 'Brigade Gauntlets'),
|
|
(526780, 9931, 0, 0, 0, 1, 1, 1, 1, 'Brigade Girdle'),
|
|
(526780, 9932, 0, 0, 0, 1, 1, 1, 1, 'Brigade Circlet'),
|
|
(526780, 9933, 0, 0, 0, 1, 1, 1, 1, 'Brigade Leggings'),
|
|
(526780, 9934, 0, 0, 0, 1, 1, 1, 1, 'Brigade Pauldrons'),
|
|
(526780, 9935, 0, 0, 0, 1, 1, 1, 1, 'Embossed Plate Shield'),
|
|
(526780, 9959, 0, 0, 0, 1, 1, 1, 1, 'Warmonger\'s Cloak'),
|
|
(526780, 9966, 0, 0, 0, 1, 1, 1, 1, 'Embossed Plate Armor'),
|
|
(526780, 9967, 0, 0, 0, 1, 1, 1, 1, 'Embossed Plate Gauntlets'),
|
|
(526780, 9968, 0, 0, 0, 1, 1, 1, 1, 'Embossed Plate Girdle'),
|
|
(526780, 9969, 0, 0, 0, 1, 1, 1, 1, 'Embossed Plate Helmet'),
|
|
(526780, 9970, 0, 0, 0, 1, 1, 1, 1, 'Embossed Plate Leggings'),
|
|
(526780, 9971, 0, 0, 0, 1, 1, 1, 1, 'Embossed Plate Pauldrons'),
|
|
(526780, 9972, 0, 0, 0, 1, 1, 1, 1, 'Embossed Plate Bracers'),
|
|
(526780, 9973, 0, 0, 0, 1, 1, 1, 1, 'Embossed Plate Boots'),
|
|
(526780, 10088, 0, 0, 0, 1, 1, 1, 1, 'Gothic Plate Girdle'),
|
|
(526780, 10089, 0, 0, 0, 1, 1, 1, 1, 'Gothic Sabatons'),
|
|
(526780, 10094, 0, 0, 0, 1, 1, 1, 1, 'Gothic Plate Vambraces'),
|
|
(526780, 11972, 0, 0, 0, 1, 1, 1, 1, 'Carnelian Loop'),
|
|
(526780, 11973, 0, 0, 0, 1, 1, 1, 1, 'Hematite Link'),
|
|
(526780, 11987, 0, 0, 0, 1, 1, 1, 1, 'Iridium Circle'),
|
|
(526780, 11998, 0, 0, 0, 1, 1, 1, 1, 'Jet Loop'),
|
|
(526780, 12011, 0, 0, 0, 1, 1, 1, 1, 'Forest Hoop'),
|
|
(526780, 12012, 0, 0, 0, 1, 1, 1, 1, 'Marsh Ring'),
|
|
(526780, 12022, 0, 0, 0, 1, 1, 1, 1, 'Iridium Chain'),
|
|
(526780, 12023, 0, 0, 0, 1, 1, 1, 1, 'Tellurium Necklace'),
|
|
(526780, 12031, 0, 0, 0, 1, 1, 1, 1, 'Lodestone Necklace'),
|
|
(526780, 12042, 0, 0, 0, 1, 1, 1, 1, 'Marsh Chain'),
|
|
(526780, 14216, 0, 0, 0, 1, 1, 1, 1, 'Geomancer\'s Jerkin'),
|
|
(526780, 14220, 0, 0, 0, 1, 1, 1, 1, 'Geomancer\'s Cap'),
|
|
(526780, 14225, 0, 0, 0, 1, 1, 1, 1, 'Geomancer\'s Wraps'),
|
|
(526780, 14228, 0, 0, 0, 1, 1, 1, 1, 'Embersilk Coronet'),
|
|
(526780, 14230, 0, 0, 0, 1, 1, 1, 1, 'Embersilk Tunic'),
|
|
(526780, 14233, 0, 0, 0, 1, 1, 1, 1, 'Embersilk Leggings'),
|
|
(526780, 14234, 0, 0, 0, 1, 1, 1, 1, 'Embersilk Robes'),
|
|
(526780, 14238, 0, 0, 0, 1, 1, 1, 1, 'Darkmist Boots'),
|
|
(526780, 14240, 0, 0, 0, 1, 1, 1, 1, 'Darkmist Bands'),
|
|
(526780, 14241, 0, 0, 0, 1, 1, 1, 1, 'Darkmist Handguards'),
|
|
(526780, 14242, 0, 0, 0, 1, 1, 1, 1, 'Darkmist Pants'),
|
|
(526780, 14243, 0, 0, 0, 1, 1, 1, 1, 'Darkmist Mantle'),
|
|
(526780, 14245, 0, 0, 0, 1, 1, 1, 1, 'Darkmist Girdle'),
|
|
(526780, 14246, 0, 0, 0, 1, 1, 1, 1, 'Darkmist Wizard Hat'),
|
|
(526780, 14247, 0, 0, 0, 1, 1, 1, 1, 'Lunar Mantle'),
|
|
(526780, 14248, 0, 0, 0, 1, 1, 1, 1, 'Lunar Bindings'),
|
|
(526780, 14250, 0, 0, 0, 1, 1, 1, 1, 'Lunar Slippers'),
|
|
(526780, 14251, 0, 0, 0, 1, 1, 1, 1, 'Lunar Cloak'),
|
|
(526780, 14252, 0, 0, 0, 1, 1, 1, 1, 'Lunar Coronet'),
|
|
(526780, 14253, 0, 0, 0, 1, 1, 1, 1, 'Lunar Handwraps'),
|
|
(526780, 14255, 0, 0, 0, 1, 1, 1, 1, 'Lunar Belt'),
|
|
(526780, 14257, 0, 0, 0, 1, 1, 1, 1, 'Lunar Leggings'),
|
|
(526780, 14258, 0, 0, 0, 1, 1, 1, 1, 'Bloodwoven Cord'),
|
|
(526780, 14260, 0, 0, 0, 1, 1, 1, 1, 'Bloodwoven Bracers'),
|
|
(526780, 14261, 0, 0, 0, 1, 1, 1, 1, 'Bloodwoven Cloak'),
|
|
(526780, 14262, 0, 0, 0, 1, 1, 1, 1, 'Bloodwoven Mitts'),
|
|
(526780, 14270, 0, 0, 0, 1, 1, 1, 1, 'Gaea\'s Cloak'),
|
|
(526780, 14417, 0, 0, 0, 1, 1, 1, 1, 'Silksand Tunic'),
|
|
(526780, 14421, 0, 0, 0, 1, 1, 1, 1, 'Silksand Circlet'),
|
|
(526780, 14422, 0, 0, 0, 1, 1, 1, 1, 'Silksand Gloves'),
|
|
(526780, 14423, 0, 0, 0, 1, 1, 1, 1, 'Silksand Shoulder Pads'),
|
|
(526780, 14424, 0, 0, 0, 1, 1, 1, 1, 'Silksand Legwraps'),
|
|
(526780, 14425, 0, 0, 0, 1, 1, 1, 1, 'Silksand Wraps'),
|
|
(526780, 14428, 0, 0, 0, 1, 1, 1, 1, 'Windchaser Footpads'),
|
|
(526780, 14429, 0, 0, 0, 1, 1, 1, 1, 'Windchaser Cuffs'),
|
|
(526780, 14430, 0, 0, 0, 1, 1, 1, 1, 'Windchaser Cloak'),
|
|
(526780, 14431, 0, 0, 0, 1, 1, 1, 1, 'Windchaser Handguards'),
|
|
(526780, 14432, 0, 0, 0, 1, 1, 1, 1, 'Windchaser Amice'),
|
|
(526780, 14435, 0, 0, 0, 1, 1, 1, 1, 'Windchaser Cinch'),
|
|
(526780, 14591, 0, 0, 0, 1, 1, 1, 1, 'Hawkeye\'s Helm'),
|
|
(526780, 14592, 0, 0, 0, 1, 1, 1, 1, 'Hawkeye\'s Tunic'),
|
|
(526780, 14598, 0, 0, 0, 1, 1, 1, 1, 'Warden\'s Waistband'),
|
|
(526780, 14599, 0, 0, 0, 1, 1, 1, 1, 'Warden\'s Footpads'),
|
|
(526780, 14600, 0, 0, 0, 1, 1, 1, 1, 'Warden\'s Wristbands'),
|
|
(526780, 14601, 0, 0, 0, 1, 1, 1, 1, 'Warden\'s Wraps'),
|
|
(526780, 14603, 0, 0, 0, 1, 1, 1, 1, 'Warden\'s Mantle'),
|
|
(526780, 14604, 0, 0, 0, 1, 1, 1, 1, 'Warden\'s Wizard Hat'),
|
|
(526780, 14605, 0, 0, 0, 1, 1, 1, 1, 'Warden\'s Woolies'),
|
|
(526780, 14606, 0, 0, 0, 1, 1, 1, 1, 'Warden\'s Gloves'),
|
|
(526780, 14652, 0, 0, 0, 1, 1, 1, 1, 'Scorpashi Sash'),
|
|
(526780, 14654, 0, 0, 0, 1, 1, 1, 1, 'Scorpashi Wristbands'),
|
|
(526780, 14656, 0, 0, 0, 1, 1, 1, 1, 'Scorpashi Cape'),
|
|
(526780, 14768, 0, 0, 0, 1, 1, 1, 1, 'Ravager\'s Armor'),
|
|
(526780, 14769, 0, 0, 0, 1, 1, 1, 1, 'Ravager\'s Sandals'),
|
|
(526780, 14770, 0, 0, 0, 1, 1, 1, 1, 'Ravager\'s Armguards'),
|
|
(526780, 14772, 0, 0, 0, 1, 1, 1, 1, 'Ravager\'s Handwraps'),
|
|
(526780, 14774, 0, 0, 0, 1, 1, 1, 1, 'Ravager\'s Crown'),
|
|
(526780, 14775, 0, 0, 0, 1, 1, 1, 1, 'Ravager\'s Woolies'),
|
|
(526780, 14776, 0, 0, 0, 1, 1, 1, 1, 'Ravager\'s Mantle'),
|
|
(526780, 14777, 0, 0, 0, 1, 1, 1, 1, 'Ravager\'s Shield'),
|
|
(526780, 14778, 0, 0, 0, 1, 1, 1, 1, 'Khan\'s Bindings'),
|
|
(526780, 14781, 0, 0, 0, 1, 1, 1, 1, 'Khan\'s Cloak'),
|
|
(526780, 14782, 0, 0, 0, 1, 1, 1, 1, 'Khan\'s Gloves'),
|
|
(526780, 14821, 0, 0, 0, 1, 1, 1, 1, 'Symbolic Breastplate'),
|
|
(526780, 14825, 0, 0, 0, 1, 1, 1, 1, 'Symbolic Crest'),
|
|
(526780, 14826, 0, 0, 0, 1, 1, 1, 1, 'Symbolic Gauntlets'),
|
|
(526780, 14827, 0, 0, 0, 1, 1, 1, 1, 'Symbolic Belt'),
|
|
(526780, 14828, 0, 0, 0, 1, 1, 1, 1, 'Symbolic Greaves'),
|
|
(526780, 14829, 0, 0, 0, 1, 1, 1, 1, 'Symbolic Legplates'),
|
|
(526780, 14830, 0, 0, 0, 1, 1, 1, 1, 'Symbolic Pauldrons'),
|
|
(526780, 14831, 0, 0, 0, 1, 1, 1, 1, 'Symbolic Crown'),
|
|
(526780, 14832, 0, 0, 0, 1, 1, 1, 1, 'Symbolic Vambraces'),
|
|
(526780, 14833, 0, 0, 0, 1, 1, 1, 1, 'Tyrant\'s Gauntlets'),
|
|
(526780, 14834, 0, 0, 0, 1, 1, 1, 1, 'Tyrant\'s Armguards'),
|
|
(526780, 14838, 0, 0, 0, 1, 1, 1, 1, 'Tyrant\'s Belt'),
|
|
(526780, 14839, 0, 0, 0, 1, 1, 1, 1, 'Tyrant\'s Greaves'),
|
|
(526780, 14841, 0, 0, 0, 1, 1, 1, 1, 'Tyrant\'s Epaulets'),
|
|
(526780, 14895, 0, 0, 0, 1, 1, 1, 1, 'Saltstone Surcoat'),
|
|
(526780, 14896, 0, 0, 0, 1, 1, 1, 1, 'Saltstone Sabatons'),
|
|
(526780, 14897, 0, 0, 0, 1, 1, 1, 1, 'Saltstone Gauntlets'),
|
|
(526780, 14898, 0, 0, 0, 1, 1, 1, 1, 'Saltstone Girdle'),
|
|
(526780, 14899, 0, 0, 0, 1, 1, 1, 1, 'Saltstone Helm'),
|
|
(526780, 14900, 0, 0, 0, 1, 1, 1, 1, 'Saltstone Legplates'),
|
|
(526780, 14901, 0, 0, 0, 1, 1, 1, 1, 'Saltstone Shoulder Pads'),
|
|
(526780, 14902, 0, 0, 0, 1, 1, 1, 1, 'Saltstone Shield'),
|
|
(526780, 14903, 0, 0, 0, 1, 1, 1, 1, 'Saltstone Armsplints'),
|
|
(526780, 14905, 0, 0, 0, 1, 1, 1, 1, 'Brutish Gauntlets'),
|
|
(526780, 14906, 0, 0, 0, 1, 1, 1, 1, 'Brutish Belt'),
|
|
(526780, 14909, 0, 0, 0, 1, 1, 1, 1, 'Brutish Shoulders'),
|
|
(526780, 14910, 0, 0, 0, 1, 1, 1, 1, 'Brutish Armguards'),
|
|
(526780, 14940, 0, 0, 0, 1, 1, 1, 1, 'Warbringer\'s Sabatons '),
|
|
(526780, 14941, 0, 0, 0, 1, 1, 1, 1, 'Warbringer\'s Armsplints'),
|
|
(526780, 14942, 0, 0, 0, 1, 1, 1, 1, 'Warbringer\'s Gauntlets'),
|
|
(526780, 14943, 0, 0, 0, 1, 1, 1, 1, 'Warbringer\'s Belt'),
|
|
(526780, 14944, 0, 0, 0, 1, 1, 1, 1, 'Warbringer\'s Crown'),
|
|
(526780, 14945, 0, 0, 0, 1, 1, 1, 1, 'Warbringer\'s Legguards'),
|
|
(526780, 14946, 0, 0, 0, 1, 1, 1, 1, 'Warbringer\'s Spaulders'),
|
|
(526780, 14956, 0, 0, 0, 1, 1, 1, 1, 'Bloodforged Bindings'),
|
|
(526780, 15152, 0, 0, 0, 1, 1, 1, 1, 'Nocturnal Shoes'),
|
|
(526780, 15156, 0, 0, 0, 1, 1, 1, 1, 'Nocturnal Cap'),
|
|
(526780, 15157, 0, 0, 0, 1, 1, 1, 1, 'Nocturnal Leggings'),
|
|
(526780, 15158, 0, 0, 0, 1, 1, 1, 1, 'Nocturnal Shoulder Pads'),
|
|
(526780, 15159, 0, 0, 0, 1, 1, 1, 1, 'Nocturnal Tunic'),
|
|
(526780, 15161, 0, 0, 0, 1, 1, 1, 1, 'Imposing Belt'),
|
|
(526780, 15162, 0, 0, 0, 1, 1, 1, 1, 'Imposing Boots'),
|
|
(526780, 15163, 0, 0, 0, 1, 1, 1, 1, 'Imposing Bracers'),
|
|
(526780, 15165, 0, 0, 0, 1, 1, 1, 1, 'Imposing Cape'),
|
|
(526780, 15166, 0, 0, 0, 1, 1, 1, 1, 'Imposing Gloves'),
|
|
(526780, 15168, 0, 0, 0, 1, 1, 1, 1, 'Imposing Pants'),
|
|
(526780, 15169, 0, 0, 0, 1, 1, 1, 1, 'Imposing Shoulders'),
|
|
(526780, 15214, 0, 0, 0, 1, 1, 1, 1, 'Nobles Brand'),
|
|
(526780, 15215, 0, 0, 0, 1, 1, 1, 1, 'Furious Falchion'),
|
|
(526780, 15234, 0, 0, 0, 1, 1, 1, 1, 'Greater Scythe'),
|
|
(526780, 15244, 0, 0, 0, 1, 1, 1, 1, 'Razor Blade'),
|
|
(526780, 15251, 0, 0, 0, 1, 1, 1, 1, 'Headstriker Sword'),
|
|
(526780, 15261, 0, 0, 0, 1, 1, 1, 1, 'Sequoia Branch'),
|
|
(526780, 15287, 0, 0, 0, 1, 1, 1, 1, 'Crusader Bow'),
|
|
(526780, 15359, 0, 0, 0, 1, 1, 1, 1, 'Trickster\'s Vest'),
|
|
(526780, 15363, 0, 0, 0, 1, 1, 1, 1, 'Trickster\'s Headdress'),
|
|
(526780, 15366, 0, 0, 0, 1, 1, 1, 1, 'Trickster\'s Leggings'),
|
|
(526780, 15369, 0, 0, 0, 1, 1, 1, 1, 'Wolf Rider\'s Belt'),
|
|
(526780, 15370, 0, 0, 0, 1, 1, 1, 1, 'Wolf Rider\'s Boots'),
|
|
(526780, 15371, 0, 0, 0, 1, 1, 1, 1, 'Wolf Rider\'s Cloak'),
|
|
(526780, 15372, 0, 0, 0, 1, 1, 1, 1, 'Wolf Rider\'s Gloves'),
|
|
(526780, 15374, 0, 0, 0, 1, 1, 1, 1, 'Wolf Rider\'s Leggings'),
|
|
(526780, 15375, 0, 0, 0, 1, 1, 1, 1, 'Wolf Rider\'s Shoulder Pads'),
|
|
(526780, 15377, 0, 0, 0, 1, 1, 1, 1, 'Wolf Rider\'s Wristbands'),
|
|
(526780, 15382, 0, 0, 0, 1, 1, 1, 1, 'Rageclaw Cloak'),
|
|
(526780, 15567, 0, 0, 0, 1, 1, 1, 1, 'Marauder\'s Tunic'),
|
|
(526780, 15569, 0, 0, 0, 1, 1, 1, 1, 'Marauder\'s Crest'),
|
|
(526780, 15574, 0, 0, 0, 1, 1, 1, 1, 'Marauder\'s Shoulder Pads'),
|
|
(526780, 15578, 0, 0, 0, 1, 1, 1, 1, 'Sparkleshell Breastplate'),
|
|
(526780, 15580, 0, 0, 0, 1, 1, 1, 1, 'Sparkleshell Headwrap'),
|
|
(526780, 15582, 0, 0, 0, 1, 1, 1, 1, 'Sparkleshell Legguards'),
|
|
(526780, 15583, 0, 0, 0, 1, 1, 1, 1, 'Sparkleshell Shoulder Pads'),
|
|
(526780, 15584, 0, 0, 0, 1, 1, 1, 1, 'Sparkleshell Shield'),
|
|
(526780, 15589, 0, 0, 0, 1, 1, 1, 1, 'Steadfast Stompers'),
|
|
(526780, 15591, 0, 0, 0, 1, 1, 1, 1, 'Steadfast Breastplate'),
|
|
(526780, 15592, 0, 0, 0, 1, 1, 1, 1, 'Steadfast Buckler'),
|
|
(526780, 15593, 0, 0, 0, 1, 1, 1, 1, 'Steadfast Coronet'),
|
|
(526780, 15596, 0, 0, 0, 1, 1, 1, 1, 'Steadfast Legplates'),
|
|
(526780, 15597, 0, 0, 0, 1, 1, 1, 1, 'Steadfast Shoulders'),
|
|
(526780, 15599, 0, 0, 0, 1, 1, 1, 1, 'Ancient Greaves'),
|
|
(526780, 15600, 0, 0, 0, 1, 1, 1, 1, 'Ancient Vambraces'),
|
|
(526780, 15602, 0, 0, 0, 1, 1, 1, 1, 'Ancient Crown'),
|
|
(526780, 15603, 0, 0, 0, 1, 1, 1, 1, 'Ancient Cloak'),
|
|
(526780, 15605, 0, 0, 0, 1, 1, 1, 1, 'Ancient Gauntlets'),
|
|
(526780, 15606, 0, 0, 0, 1, 1, 1, 1, 'Ancient Belt'),
|
|
(526780, 15607, 0, 0, 0, 1, 1, 1, 1, 'Ancient Legguards'),
|
|
(526780, 15608, 0, 0, 0, 1, 1, 1, 1, 'Ancient Pauldrons'),
|
|
(526780, 15610, 0, 0, 0, 1, 1, 1, 1, 'Bonelink Bracers'),
|
|
(526780, 15611, 0, 0, 0, 1, 1, 1, 1, 'Bonelink Cape'),
|
|
(526780, 15612, 0, 0, 0, 1, 1, 1, 1, 'Bonelink Gauntlets'),
|
|
(526780, 15613, 0, 0, 0, 1, 1, 1, 1, 'Bonelink Belt'),
|
|
(526780, 15614, 0, 0, 0, 1, 1, 1, 1, 'Bonelink Sabatons'),
|
|
(526780, 15617, 0, 0, 0, 1, 1, 1, 1, 'Bonelink Epaulets'),
|
|
(526780, 15624, 0, 0, 0, 1, 1, 1, 1, 'Gryphon Cloak'),
|
|
(526780, 15964, 0, 0, 0, 1, 1, 1, 1, 'Silksand Star'),
|
|
(526780, 15978, 0, 0, 0, 1, 1, 1, 1, 'Geomancer\'s Rod'),
|
|
(526780, 15979, 0, 0, 0, 1, 1, 1, 1, 'Embersilk Stave'),
|
|
(526790, 864, 0, 0, 0, 1, 1, 1, 1, 'Knightly Longsword'),
|
|
(526790, 866, 0, 0, 0, 1, 1, 1, 1, 'Monk\'s Staff'),
|
|
(526790, 1207, 0, 0, 0, 1, 1, 1, 1, 'Murphstar'),
|
|
(526790, 1280, 0, 0, 0, 1, 1, 1, 1, 'Cloaked Hood'),
|
|
(526790, 1465, 0, 0, 0, 1, 1, 1, 1, 'Tigerbane'),
|
|
(526790, 1521, 0, 0, 0, 1, 1, 1, 1, 'Lumbering Ogre Axe'),
|
|
(526790, 1529, 0, 0, 0, 1, 1, 1, 1, 'Jade'),
|
|
(526790, 1613, 0, 0, 0, 1, 1, 1, 1, 'Spiritchaser Staff'),
|
|
(526790, 1624, 0, 0, 0, 1, 1, 1, 1, 'Skullsplitter Helm'),
|
|
(526790, 1625, 0, 0, 0, 1, 1, 1, 1, 'Exquisite Flamberge'),
|
|
(526790, 1640, 0, 0, 0, 1, 1, 1, 1, 'Monstrous War Axe'),
|
|
(526790, 1659, 0, 0, 0, 1, 1, 1, 1, 'Engineering Gloves'),
|
|
(526790, 1664, 0, 0, 0, 1, 1, 1, 1, 'Spellforce Rod'),
|
|
(526790, 1685, 0, 0, 0, 1, 1, 1, 1, 'Troll-hide Bag'),
|
|
(526790, 1725, 0, 0, 0, 1, 1, 1, 1, 'Large Knapsack'),
|
|
(526790, 1988, 0, 0, 0, 1, 1, 1, 1, 'Chief Brigadier Gauntlets'),
|
|
(526790, 2620, 0, 0, 0, 1, 1, 1, 1, 'Augural Shroud'),
|
|
(526790, 2623, 0, 0, 0, 1, 1, 1, 1, 'Holy Diadem'),
|
|
(526790, 2624, 0, 0, 0, 1, 1, 1, 1, 'Thinking Cap'),
|
|
(526790, 3187, 0, 0, 0, 1, 1, 1, 1, 'Sacrificial Kris'),
|
|
(526790, 3430, 0, 0, 0, 1, 1, 1, 1, 'Sniper Rifle'),
|
|
(526790, 3864, 0, 0, 0, 1, 1, 1, 1, 'Citrine'),
|
|
(526790, 3914, 0, 0, 0, 1, 1, 1, 1, 'Journeyman\'s Backpack'),
|
|
(526790, 4041, 0, 0, 0, 1, 1, 1, 1, 'Aurora Cowl'),
|
|
(526790, 4042, 0, 0, 0, 1, 1, 1, 1, 'Aurora Gloves'),
|
|
(526790, 4043, 0, 0, 0, 1, 1, 1, 1, 'Aurora Bracers'),
|
|
(526790, 4044, 0, 0, 0, 1, 1, 1, 1, 'Aurora Pants'),
|
|
(526790, 4045, 0, 0, 0, 1, 1, 1, 1, 'Mistscape Bracers'),
|
|
(526790, 4046, 0, 0, 0, 1, 1, 1, 1, 'Mistscape Pants'),
|
|
(526790, 4047, 0, 0, 0, 1, 1, 1, 1, 'Mistscape Boots'),
|
|
(526790, 4058, 0, 0, 0, 1, 1, 1, 1, 'Glyphed Breastplate'),
|
|
(526790, 4060, 0, 0, 0, 1, 1, 1, 1, 'Glyphed Leggings'),
|
|
(526790, 4061, 0, 0, 0, 1, 1, 1, 1, 'Imperial Leather Bracers'),
|
|
(526790, 4062, 0, 0, 0, 1, 1, 1, 1, 'Imperial Leather Pants'),
|
|
(526790, 4063, 0, 0, 0, 1, 1, 1, 1, 'Imperial Leather Gloves'),
|
|
(526790, 4067, 0, 0, 0, 1, 1, 1, 1, 'Glyphed Buckler'),
|
|
(526790, 4068, 0, 0, 0, 1, 1, 1, 1, 'Chief Brigadier Shield'),
|
|
(526790, 4070, 0, 0, 0, 1, 1, 1, 1, 'Jouster\'s Crest'),
|
|
(526790, 4078, 0, 0, 0, 1, 1, 1, 1, 'Chief Brigadier Coif'),
|
|
(526790, 4079, 0, 0, 0, 1, 1, 1, 1, 'Chief Brigadier Leggings'),
|
|
(526790, 4080, 0, 0, 0, 1, 1, 1, 1, 'Blackforge Cowl'),
|
|
(526790, 4083, 0, 0, 0, 1, 1, 1, 1, 'Blackforge Gauntlets'),
|
|
(526790, 4087, 0, 0, 0, 1, 1, 1, 1, 'Trueshot Bow'),
|
|
(526790, 4725, 0, 0, 0, 1, 1, 1, 1, 'Chief Brigadier Pauldrons'),
|
|
(526790, 4727, 0, 0, 0, 1, 1, 1, 1, 'Chief Brigadier Girdle'),
|
|
(526790, 4729, 0, 0, 0, 1, 1, 1, 1, 'Aurora Mantle'),
|
|
(526790, 4731, 0, 0, 0, 1, 1, 1, 1, 'Glyphed Epaulets'),
|
|
(526790, 4734, 0, 0, 0, 1, 1, 1, 1, 'Mistscape Mantle'),
|
|
(526790, 4735, 0, 0, 0, 1, 1, 1, 1, 'Mistscape Cloak'),
|
|
(526790, 4736, 0, 0, 0, 1, 1, 1, 1, 'Mistscape Sash'),
|
|
(526790, 4737, 0, 0, 0, 1, 1, 1, 1, 'Imperial Leather Spaulders'),
|
|
(526790, 4738, 0, 0, 0, 1, 1, 1, 1, 'Imperial Leather Belt'),
|
|
(526790, 5011, 0, 0, 0, 1, 1, 1, 1, 'Welken Ring'),
|
|
(526790, 5079, 0, 0, 0, 1, 1, 1, 1, 'Cold Basilisk Eye'),
|
|
(526790, 5215, 0, 0, 0, 1, 1, 1, 1, 'Ember Wand'),
|
|
(526790, 5216, 0, 0, 0, 1, 1, 1, 1, 'Umbral Wand'),
|
|
(526790, 5608, 0, 0, 0, 1, 1, 1, 1, 'Living Cowl'),
|
|
(526790, 5624, 0, 0, 0, 1, 1, 1, 1, 'Circlet of the Order'),
|
|
(526790, 6411, 0, 0, 0, 1, 1, 1, 1, 'Chief Brigadier Armor'),
|
|
(526790, 6412, 0, 0, 0, 1, 1, 1, 1, 'Chief Brigadier Boots'),
|
|
(526790, 6415, 0, 0, 0, 1, 1, 1, 1, 'Aurora Robe'),
|
|
(526790, 6416, 0, 0, 0, 1, 1, 1, 1, 'Aurora Boots'),
|
|
(526790, 6419, 0, 0, 0, 1, 1, 1, 1, 'Glyphed Mitts'),
|
|
(526790, 6420, 0, 0, 0, 1, 1, 1, 1, 'Glyphed Boots'),
|
|
(526790, 6421, 0, 0, 0, 1, 1, 1, 1, 'Glyphed Belt'),
|
|
(526790, 6422, 0, 0, 0, 1, 1, 1, 1, 'Glyphed Helm'),
|
|
(526790, 6423, 0, 0, 0, 1, 1, 1, 1, 'Blackforge Greaves'),
|
|
(526790, 6424, 0, 0, 0, 1, 1, 1, 1, 'Blackforge Cape'),
|
|
(526790, 6425, 0, 0, 0, 1, 1, 1, 1, 'Blackforge Girdle'),
|
|
(526790, 6426, 0, 0, 0, 1, 1, 1, 1, 'Blackforge Bracers'),
|
|
(526790, 6428, 0, 0, 0, 1, 1, 1, 1, 'Mistscape Gloves'),
|
|
(526790, 6429, 0, 0, 0, 1, 1, 1, 1, 'Mistscape Wizard Hat'),
|
|
(526790, 6431, 0, 0, 0, 1, 1, 1, 1, 'Imperial Leather Boots'),
|
|
(526790, 6432, 0, 0, 0, 1, 1, 1, 1, 'Imperial Cloak'),
|
|
(526790, 6433, 0, 0, 0, 1, 1, 1, 1, 'Imperial Leather Helm'),
|
|
(526790, 7112, 0, 0, 0, 1, 1, 1, 1, 'Aurora Armor'),
|
|
(526790, 7332, 0, 0, 0, 1, 1, 1, 1, 'Regal Armor'),
|
|
(526790, 7429, 0, 0, 0, 1, 1, 1, 1, 'Twilight Armor'),
|
|
(526790, 7430, 0, 0, 0, 1, 1, 1, 1, 'Twilight Robe'),
|
|
(526790, 7431, 0, 0, 0, 1, 1, 1, 1, 'Twilight Pants'),
|
|
(526790, 7432, 0, 0, 0, 1, 1, 1, 1, 'Twilight Cowl'),
|
|
(526790, 7435, 0, 0, 0, 1, 1, 1, 1, 'Twilight Mantle'),
|
|
(526790, 7439, 0, 0, 0, 1, 1, 1, 1, 'Sentinel Breastplate'),
|
|
(526790, 7440, 0, 0, 0, 1, 1, 1, 1, 'Sentinel Trousers'),
|
|
(526790, 7441, 0, 0, 0, 1, 1, 1, 1, 'Sentinel Cap'),
|
|
(526790, 7445, 0, 0, 0, 1, 1, 1, 1, 'Sentinel Shoulders'),
|
|
(526790, 7454, 0, 0, 0, 1, 1, 1, 1, 'Knight\'s Breastplate'),
|
|
(526790, 7455, 0, 0, 0, 1, 1, 1, 1, 'Knight\'s Legguards'),
|
|
(526790, 7456, 0, 0, 0, 1, 1, 1, 1, 'Knight\'s Headguard'),
|
|
(526790, 7459, 0, 0, 0, 1, 1, 1, 1, 'Knight\'s Pauldrons'),
|
|
(526790, 7463, 0, 0, 0, 1, 1, 1, 1, 'Sentinel Buckler'),
|
|
(526790, 7465, 0, 0, 0, 1, 1, 1, 1, 'Knight\'s Crest'),
|
|
(526790, 7468, 0, 0, 0, 1, 1, 1, 1, 'Regal Robe'),
|
|
(526790, 7469, 0, 0, 0, 1, 1, 1, 1, 'Regal Leggings'),
|
|
(526790, 7470, 0, 0, 0, 1, 1, 1, 1, 'Regal Wizard Hat'),
|
|
(526790, 7471, 0, 0, 0, 1, 1, 1, 1, 'Regal Gloves'),
|
|
(526790, 7472, 0, 0, 0, 1, 1, 1, 1, 'Regal Boots'),
|
|
(526790, 7473, 0, 0, 0, 1, 1, 1, 1, 'Regal Mantle'),
|
|
(526790, 7474, 0, 0, 0, 1, 1, 1, 1, 'Regal Cloak'),
|
|
(526790, 7475, 0, 0, 0, 1, 1, 1, 1, 'Regal Cuffs'),
|
|
(526790, 7476, 0, 0, 0, 1, 1, 1, 1, 'Regal Sash'),
|
|
(526790, 7477, 0, 0, 0, 1, 1, 1, 1, 'Ranger Tunic'),
|
|
(526790, 7478, 0, 0, 0, 1, 1, 1, 1, 'Ranger Leggings'),
|
|
(526790, 7479, 0, 0, 0, 1, 1, 1, 1, 'Ranger Helm'),
|
|
(526790, 7480, 0, 0, 0, 1, 1, 1, 1, 'Ranger Gloves'),
|
|
(526790, 7481, 0, 0, 0, 1, 1, 1, 1, 'Ranger Boots'),
|
|
(526790, 7482, 0, 0, 0, 1, 1, 1, 1, 'Ranger Shoulders'),
|
|
(526790, 7483, 0, 0, 0, 1, 1, 1, 1, 'Ranger Cloak'),
|
|
(526790, 7484, 0, 0, 0, 1, 1, 1, 1, 'Ranger Wristguards'),
|
|
(526790, 7485, 0, 0, 0, 1, 1, 1, 1, 'Ranger Cord'),
|
|
(526790, 7486, 0, 0, 0, 1, 1, 1, 1, 'Captain\'s Breastplate'),
|
|
(526790, 7487, 0, 0, 0, 1, 1, 1, 1, 'Captain\'s Leggings'),
|
|
(526790, 7488, 0, 0, 0, 1, 1, 1, 1, 'Captain\'s Circlet'),
|
|
(526790, 7489, 0, 0, 0, 1, 1, 1, 1, 'Captain\'s Gauntlets'),
|
|
(526790, 7490, 0, 0, 0, 1, 1, 1, 1, 'Captain\'s Boots'),
|
|
(526790, 7491, 0, 0, 0, 1, 1, 1, 1, 'Captain\'s Shoulderguards'),
|
|
(526790, 7492, 0, 0, 0, 1, 1, 1, 1, 'Captain\'s Cloak'),
|
|
(526790, 7493, 0, 0, 0, 1, 1, 1, 1, 'Captain\'s Bracers'),
|
|
(526790, 7494, 0, 0, 0, 1, 1, 1, 1, 'Captain\'s Waistguard'),
|
|
(526790, 7495, 0, 0, 0, 1, 1, 1, 1, 'Captain\'s Buckler'),
|
|
(526790, 7496, 0, 0, 0, 1, 1, 1, 1, 'Field Plate Shield'),
|
|
(526790, 7522, 0, 0, 0, 1, 1, 1, 1, 'Gossamer Boots'),
|
|
(526790, 7524, 0, 0, 0, 1, 1, 1, 1, 'Gossamer Cape'),
|
|
(526790, 7525, 0, 0, 0, 1, 1, 1, 1, 'Gossamer Bracers'),
|
|
(526790, 7533, 0, 0, 0, 1, 1, 1, 1, 'Cabalist Cloak'),
|
|
(526790, 7534, 0, 0, 0, 1, 1, 1, 1, 'Cabalist Bracers'),
|
|
(526790, 7544, 0, 0, 0, 1, 1, 1, 1, 'Champion\'s Cape'),
|
|
(526790, 7545, 0, 0, 0, 1, 1, 1, 1, 'Champion\'s Bracers'),
|
|
(526790, 7552, 0, 0, 0, 1, 1, 1, 1, 'Falcon\'s Hook'),
|
|
(526790, 7555, 0, 0, 0, 1, 1, 1, 1, 'Regal Star'),
|
|
(526790, 7556, 0, 0, 0, 1, 1, 1, 1, 'Twilight Orb'),
|
|
(526790, 7610, 0, 0, 0, 1, 1, 1, 1, 'Aurora Sphere'),
|
|
(526790, 8120, 0, 0, 0, 1, 1, 1, 1, 'Heraldic Cloak'),
|
|
(526790, 8137, 0, 0, 0, 1, 1, 1, 1, 'Chromite Bracers'),
|
|
(526790, 8139, 0, 0, 0, 1, 1, 1, 1, 'Chromite Gauntlets'),
|
|
(526790, 8140, 0, 0, 0, 1, 1, 1, 1, 'Chromite Girdle'),
|
|
(526790, 8141, 0, 0, 0, 1, 1, 1, 1, 'Chromite Greaves'),
|
|
(526790, 8142, 0, 0, 0, 1, 1, 1, 1, 'Chromite Barbute'),
|
|
(526790, 8144, 0, 0, 0, 1, 1, 1, 1, 'Chromite Pauldrons'),
|
|
(526790, 8156, 0, 0, 0, 1, 1, 1, 1, 'Jouster\'s Wristguards'),
|
|
(526790, 8157, 0, 0, 0, 1, 1, 1, 1, 'Jouster\'s Chestplate'),
|
|
(526790, 8158, 0, 0, 0, 1, 1, 1, 1, 'Jouster\'s Gauntlets'),
|
|
(526790, 8159, 0, 0, 0, 1, 1, 1, 1, 'Jouster\'s Girdle'),
|
|
(526790, 8160, 0, 0, 0, 1, 1, 1, 1, 'Jouster\'s Greaves'),
|
|
(526790, 8161, 0, 0, 0, 1, 1, 1, 1, 'Jouster\'s Visor'),
|
|
(526790, 8162, 0, 0, 0, 1, 1, 1, 1, 'Jouster\'s Legplates'),
|
|
(526790, 8163, 0, 0, 0, 1, 1, 1, 1, 'Jouster\'s Pauldrons'),
|
|
(526790, 8194, 0, 0, 0, 1, 1, 1, 1, 'Goblin Nutcracker'),
|
|
(526790, 8196, 0, 0, 0, 1, 1, 1, 1, 'Ebon Scimitar'),
|
|
(526790, 9285, 0, 0, 0, 1, 1, 1, 1, 'Field Plate Vambraces'),
|
|
(526790, 9286, 0, 0, 0, 1, 1, 1, 1, 'Field Plate Armor'),
|
|
(526790, 9287, 0, 0, 0, 1, 1, 1, 1, 'Field Plate Gauntlets'),
|
|
(526790, 9288, 0, 0, 0, 1, 1, 1, 1, 'Field Plate Girdle'),
|
|
(526790, 9289, 0, 0, 0, 1, 1, 1, 1, 'Field Plate Boots'),
|
|
(526790, 9290, 0, 0, 0, 1, 1, 1, 1, 'Field Plate Helmet'),
|
|
(526790, 9291, 0, 0, 0, 1, 1, 1, 1, 'Field Plate Leggings'),
|
|
(526790, 9292, 0, 0, 0, 1, 1, 1, 1, 'Field Plate Pauldrons'),
|
|
(526790, 9382, 0, 0, 0, 1, 1, 1, 1, 'Tromping Miner\'s Boots'),
|
|
(526790, 9844, 0, 0, 0, 1, 1, 1, 1, 'Conjurer\'s Vest'),
|
|
(526790, 9852, 0, 0, 0, 1, 1, 1, 1, 'Conjurer\'s Robe'),
|
|
(526790, 9854, 0, 0, 0, 1, 1, 1, 1, 'Archer\'s Jerkin'),
|
|
(526790, 9866, 0, 0, 0, 1, 1, 1, 1, 'Renegade Chestguard'),
|
|
(526790, 9874, 0, 0, 0, 1, 1, 1, 1, 'Sorcerer Drape'),
|
|
(526790, 9875, 0, 0, 0, 1, 1, 1, 1, 'Sorcerer Sash'),
|
|
(526790, 9876, 0, 0, 0, 1, 1, 1, 1, 'Sorcerer Slippers'),
|
|
(526790, 9877, 0, 0, 0, 1, 1, 1, 1, 'Sorcerer Cloak'),
|
|
(526790, 9878, 0, 0, 0, 1, 1, 1, 1, 'Sorcerer Hat'),
|
|
(526790, 9879, 0, 0, 0, 1, 1, 1, 1, 'Sorcerer Bracelets'),
|
|
(526790, 9880, 0, 0, 0, 1, 1, 1, 1, 'Sorcerer Gloves'),
|
|
(526790, 9881, 0, 0, 0, 1, 1, 1, 1, 'Sorcerer Mantle'),
|
|
(526790, 9882, 0, 0, 0, 1, 1, 1, 1, 'Sorcerer Sphere'),
|
|
(526790, 9883, 0, 0, 0, 1, 1, 1, 1, 'Sorcerer Pants'),
|
|
(526790, 9884, 0, 0, 0, 1, 1, 1, 1, 'Sorcerer Robe'),
|
|
(526790, 9885, 0, 0, 0, 1, 1, 1, 1, 'Huntsman\'s Boots'),
|
|
(526790, 9886, 0, 0, 0, 1, 1, 1, 1, 'Huntsman\'s Bands'),
|
|
(526790, 9887, 0, 0, 0, 1, 1, 1, 1, 'Huntsman\'s Armor'),
|
|
(526790, 9889, 0, 0, 0, 1, 1, 1, 1, 'Huntsman\'s Cap'),
|
|
(526790, 9890, 0, 0, 0, 1, 1, 1, 1, 'Huntsman\'s Cape'),
|
|
(526790, 9891, 0, 0, 0, 1, 1, 1, 1, 'Huntsman\'s Belt'),
|
|
(526790, 9892, 0, 0, 0, 1, 1, 1, 1, 'Huntsman\'s Gloves'),
|
|
(526790, 9893, 0, 0, 0, 1, 1, 1, 1, 'Huntsman\'s Leggings'),
|
|
(526790, 9894, 0, 0, 0, 1, 1, 1, 1, 'Huntsman\'s Shoulders'),
|
|
(526790, 9895, 0, 0, 0, 1, 1, 1, 1, 'Jazeraint Boots'),
|
|
(526790, 9896, 0, 0, 0, 1, 1, 1, 1, 'Jazeraint Bracers'),
|
|
(526790, 9897, 0, 0, 0, 1, 1, 1, 1, 'Jazeraint Chestguard'),
|
|
(526790, 9898, 0, 0, 0, 1, 1, 1, 1, 'Jazeraint Cloak'),
|
|
(526790, 9899, 0, 0, 0, 1, 1, 1, 1, 'Jazeraint Shield'),
|
|
(526790, 9900, 0, 0, 0, 1, 1, 1, 1, 'Jazeraint Gauntlets'),
|
|
(526790, 9901, 0, 0, 0, 1, 1, 1, 1, 'Jazeraint Belt'),
|
|
(526790, 9902, 0, 0, 0, 1, 1, 1, 1, 'Jazeraint Helm'),
|
|
(526790, 9903, 0, 0, 0, 1, 1, 1, 1, 'Jazeraint Leggings'),
|
|
(526790, 9904, 0, 0, 0, 1, 1, 1, 1, 'Jazeraint Pauldrons'),
|
|
(526790, 9906, 0, 0, 0, 1, 1, 1, 1, 'Royal Sash'),
|
|
(526790, 9907, 0, 0, 0, 1, 1, 1, 1, 'Royal Boots'),
|
|
(526790, 9908, 0, 0, 0, 1, 1, 1, 1, 'Royal Cape'),
|
|
(526790, 9909, 0, 0, 0, 1, 1, 1, 1, 'Royal Bands'),
|
|
(526790, 9910, 0, 0, 0, 1, 1, 1, 1, 'Royal Gloves'),
|
|
(526790, 9912, 0, 0, 0, 1, 1, 1, 1, 'Royal Amice'),
|
|
(526790, 9915, 0, 0, 0, 1, 1, 1, 1, 'Royal Headband'),
|
|
(526790, 9916, 0, 0, 0, 1, 1, 1, 1, 'Tracker\'s Belt'),
|
|
(526790, 9917, 0, 0, 0, 1, 1, 1, 1, 'Tracker\'s Boots'),
|
|
(526790, 9918, 0, 0, 0, 1, 1, 1, 1, 'Brigade Defender'),
|
|
(526790, 9919, 0, 0, 0, 1, 1, 1, 1, 'Tracker\'s Cloak'),
|
|
(526790, 9920, 0, 0, 0, 1, 1, 1, 1, 'Tracker\'s Gloves'),
|
|
(526790, 9921, 0, 0, 0, 1, 1, 1, 1, 'Tracker\'s Headband'),
|
|
(526790, 9923, 0, 0, 0, 1, 1, 1, 1, 'Tracker\'s Shoulderpads'),
|
|
(526790, 9925, 0, 0, 0, 1, 1, 1, 1, 'Tracker\'s Wristguards'),
|
|
(526790, 9926, 0, 0, 0, 1, 1, 1, 1, 'Brigade Boots'),
|
|
(526790, 9927, 0, 0, 0, 1, 1, 1, 1, 'Brigade Bracers'),
|
|
(526790, 9928, 0, 0, 0, 1, 1, 1, 1, 'Brigade Breastplate'),
|
|
(526790, 9929, 0, 0, 0, 1, 1, 1, 1, 'Brigade Cloak'),
|
|
(526790, 9930, 0, 0, 0, 1, 1, 1, 1, 'Brigade Gauntlets'),
|
|
(526790, 9931, 0, 0, 0, 1, 1, 1, 1, 'Brigade Girdle'),
|
|
(526790, 9932, 0, 0, 0, 1, 1, 1, 1, 'Brigade Circlet'),
|
|
(526790, 9933, 0, 0, 0, 1, 1, 1, 1, 'Brigade Leggings'),
|
|
(526790, 9934, 0, 0, 0, 1, 1, 1, 1, 'Brigade Pauldrons'),
|
|
(526790, 9935, 0, 0, 0, 1, 1, 1, 1, 'Embossed Plate Shield'),
|
|
(526790, 9959, 0, 0, 0, 1, 1, 1, 1, 'Warmonger\'s Cloak'),
|
|
(526790, 9966, 0, 0, 0, 1, 1, 1, 1, 'Embossed Plate Armor'),
|
|
(526790, 9967, 0, 0, 0, 1, 1, 1, 1, 'Embossed Plate Gauntlets'),
|
|
(526790, 9968, 0, 0, 0, 1, 1, 1, 1, 'Embossed Plate Girdle'),
|
|
(526790, 9969, 0, 0, 0, 1, 1, 1, 1, 'Embossed Plate Helmet'),
|
|
(526790, 9970, 0, 0, 0, 1, 1, 1, 1, 'Embossed Plate Leggings'),
|
|
(526790, 9971, 0, 0, 0, 1, 1, 1, 1, 'Embossed Plate Pauldrons'),
|
|
(526790, 9972, 0, 0, 0, 1, 1, 1, 1, 'Embossed Plate Bracers'),
|
|
(526790, 9973, 0, 0, 0, 1, 1, 1, 1, 'Embossed Plate Boots'),
|
|
(526790, 10088, 0, 0, 0, 1, 1, 1, 1, 'Gothic Plate Girdle'),
|
|
(526790, 10089, 0, 0, 0, 1, 1, 1, 1, 'Gothic Sabatons'),
|
|
(526790, 10094, 0, 0, 0, 1, 1, 1, 1, 'Gothic Plate Vambraces'),
|
|
(526790, 11972, 0, 0, 0, 1, 1, 1, 1, 'Carnelian Loop'),
|
|
(526790, 11973, 0, 0, 0, 1, 1, 1, 1, 'Hematite Link'),
|
|
(526790, 11986, 0, 0, 0, 1, 1, 1, 1, 'Thallium Hoop'),
|
|
(526790, 11987, 0, 0, 0, 1, 1, 1, 1, 'Iridium Circle'),
|
|
(526790, 11997, 0, 0, 0, 1, 1, 1, 1, 'Greenstone Circle'),
|
|
(526790, 11998, 0, 0, 0, 1, 1, 1, 1, 'Jet Loop'),
|
|
(526790, 12011, 0, 0, 0, 1, 1, 1, 1, 'Forest Hoop'),
|
|
(526790, 12012, 0, 0, 0, 1, 1, 1, 1, 'Marsh Ring'),
|
|
(526790, 12022, 0, 0, 0, 1, 1, 1, 1, 'Iridium Chain'),
|
|
(526790, 12023, 0, 0, 0, 1, 1, 1, 1, 'Tellurium Necklace'),
|
|
(526790, 12030, 0, 0, 0, 1, 1, 1, 1, 'Jet Chain'),
|
|
(526790, 12031, 0, 0, 0, 1, 1, 1, 1, 'Lodestone Necklace'),
|
|
(526790, 12040, 0, 0, 0, 1, 1, 1, 1, 'Forest Pendant'),
|
|
(526790, 12042, 0, 0, 0, 1, 1, 1, 1, 'Marsh Chain'),
|
|
(526790, 14216, 0, 0, 0, 1, 1, 1, 1, 'Geomancer\'s Jerkin'),
|
|
(526790, 14220, 0, 0, 0, 1, 1, 1, 1, 'Geomancer\'s Cap'),
|
|
(526790, 14223, 0, 0, 0, 1, 1, 1, 1, 'Geomancer\'s Spaulders'),
|
|
(526790, 14224, 0, 0, 0, 1, 1, 1, 1, 'Geomancer\'s Trousers'),
|
|
(526790, 14225, 0, 0, 0, 1, 1, 1, 1, 'Geomancer\'s Wraps'),
|
|
(526790, 14228, 0, 0, 0, 1, 1, 1, 1, 'Embersilk Coronet'),
|
|
(526790, 14230, 0, 0, 0, 1, 1, 1, 1, 'Embersilk Tunic'),
|
|
(526790, 14231, 0, 0, 0, 1, 1, 1, 1, 'Embersilk Mitts'),
|
|
(526790, 14232, 0, 0, 0, 1, 1, 1, 1, 'Embersilk Mantle'),
|
|
(526790, 14233, 0, 0, 0, 1, 1, 1, 1, 'Embersilk Leggings'),
|
|
(526790, 14234, 0, 0, 0, 1, 1, 1, 1, 'Embersilk Robes'),
|
|
(526790, 14236, 0, 0, 0, 1, 1, 1, 1, 'Embersilk Boots'),
|
|
(526790, 14238, 0, 0, 0, 1, 1, 1, 1, 'Darkmist Boots'),
|
|
(526790, 14239, 0, 0, 0, 1, 1, 1, 1, 'Darkmist Cape'),
|
|
(526790, 14240, 0, 0, 0, 1, 1, 1, 1, 'Darkmist Bands'),
|
|
(526790, 14241, 0, 0, 0, 1, 1, 1, 1, 'Darkmist Handguards'),
|
|
(526790, 14242, 0, 0, 0, 1, 1, 1, 1, 'Darkmist Pants'),
|
|
(526790, 14243, 0, 0, 0, 1, 1, 1, 1, 'Darkmist Mantle'),
|
|
(526790, 14245, 0, 0, 0, 1, 1, 1, 1, 'Darkmist Girdle'),
|
|
(526790, 14246, 0, 0, 0, 1, 1, 1, 1, 'Darkmist Wizard Hat'),
|
|
(526790, 14247, 0, 0, 0, 1, 1, 1, 1, 'Lunar Mantle'),
|
|
(526790, 14248, 0, 0, 0, 1, 1, 1, 1, 'Lunar Bindings'),
|
|
(526790, 14250, 0, 0, 0, 1, 1, 1, 1, 'Lunar Slippers'),
|
|
(526790, 14251, 0, 0, 0, 1, 1, 1, 1, 'Lunar Cloak'),
|
|
(526790, 14252, 0, 0, 0, 1, 1, 1, 1, 'Lunar Coronet'),
|
|
(526790, 14253, 0, 0, 0, 1, 1, 1, 1, 'Lunar Handwraps'),
|
|
(526790, 14255, 0, 0, 0, 1, 1, 1, 1, 'Lunar Belt'),
|
|
(526790, 14257, 0, 0, 0, 1, 1, 1, 1, 'Lunar Leggings'),
|
|
(526790, 14258, 0, 0, 0, 1, 1, 1, 1, 'Bloodwoven Cord'),
|
|
(526790, 14260, 0, 0, 0, 1, 1, 1, 1, 'Bloodwoven Bracers'),
|
|
(526790, 14261, 0, 0, 0, 1, 1, 1, 1, 'Bloodwoven Cloak'),
|
|
(526790, 14262, 0, 0, 0, 1, 1, 1, 1, 'Bloodwoven Mitts'),
|
|
(526790, 14270, 0, 0, 0, 1, 1, 1, 1, 'Gaea\'s Cloak'),
|
|
(526790, 14407, 0, 0, 0, 1, 1, 1, 1, 'Stonecloth Vest'),
|
|
(526790, 14410, 0, 0, 0, 1, 1, 1, 1, 'Stonecloth Circlet'),
|
|
(526790, 14413, 0, 0, 0, 1, 1, 1, 1, 'Stonecloth Robe'),
|
|
(526790, 14417, 0, 0, 0, 1, 1, 1, 1, 'Silksand Tunic'),
|
|
(526790, 14418, 0, 0, 0, 1, 1, 1, 1, 'Silksand Boots'),
|
|
(526790, 14419, 0, 0, 0, 1, 1, 1, 1, 'Silksand Bracers'),
|
|
(526790, 14420, 0, 0, 0, 1, 1, 1, 1, 'Silksand Cape'),
|
|
(526790, 14421, 0, 0, 0, 1, 1, 1, 1, 'Silksand Circlet'),
|
|
(526790, 14422, 0, 0, 0, 1, 1, 1, 1, 'Silksand Gloves'),
|
|
(526790, 14423, 0, 0, 0, 1, 1, 1, 1, 'Silksand Shoulder Pads'),
|
|
(526790, 14424, 0, 0, 0, 1, 1, 1, 1, 'Silksand Legwraps'),
|
|
(526790, 14425, 0, 0, 0, 1, 1, 1, 1, 'Silksand Wraps'),
|
|
(526790, 14426, 0, 0, 0, 1, 1, 1, 1, 'Silksand Girdle'),
|
|
(526790, 14428, 0, 0, 0, 1, 1, 1, 1, 'Windchaser Footpads'),
|
|
(526790, 14429, 0, 0, 0, 1, 1, 1, 1, 'Windchaser Cuffs'),
|
|
(526790, 14430, 0, 0, 0, 1, 1, 1, 1, 'Windchaser Cloak'),
|
|
(526790, 14431, 0, 0, 0, 1, 1, 1, 1, 'Windchaser Handguards'),
|
|
(526790, 14432, 0, 0, 0, 1, 1, 1, 1, 'Windchaser Amice'),
|
|
(526790, 14435, 0, 0, 0, 1, 1, 1, 1, 'Windchaser Cinch'),
|
|
(526790, 14591, 0, 0, 0, 1, 1, 1, 1, 'Hawkeye\'s Helm'),
|
|
(526790, 14592, 0, 0, 0, 1, 1, 1, 1, 'Hawkeye\'s Tunic'),
|
|
(526790, 14595, 0, 0, 0, 1, 1, 1, 1, 'Hawkeye\'s Breeches'),
|
|
(526790, 14596, 0, 0, 0, 1, 1, 1, 1, 'Hawkeye\'s Epaulets'),
|
|
(526790, 14598, 0, 0, 0, 1, 1, 1, 1, 'Warden\'s Waistband'),
|
|
(526790, 14599, 0, 0, 0, 1, 1, 1, 1, 'Warden\'s Footpads'),
|
|
(526790, 14600, 0, 0, 0, 1, 1, 1, 1, 'Warden\'s Wristbands'),
|
|
(526790, 14601, 0, 0, 0, 1, 1, 1, 1, 'Warden\'s Wraps'),
|
|
(526790, 14602, 0, 0, 0, 1, 1, 1, 1, 'Warden\'s Cloak'),
|
|
(526790, 14603, 0, 0, 0, 1, 1, 1, 1, 'Warden\'s Mantle'),
|
|
(526790, 14604, 0, 0, 0, 1, 1, 1, 1, 'Warden\'s Wizard Hat'),
|
|
(526790, 14605, 0, 0, 0, 1, 1, 1, 1, 'Warden\'s Woolies'),
|
|
(526790, 14606, 0, 0, 0, 1, 1, 1, 1, 'Warden\'s Gloves'),
|
|
(526790, 14652, 0, 0, 0, 1, 1, 1, 1, 'Scorpashi Sash'),
|
|
(526790, 14654, 0, 0, 0, 1, 1, 1, 1, 'Scorpashi Wristbands'),
|
|
(526790, 14656, 0, 0, 0, 1, 1, 1, 1, 'Scorpashi Cape'),
|
|
(526790, 14760, 0, 0, 0, 1, 1, 1, 1, 'Enduring Breastplate'),
|
|
(526790, 14765, 0, 0, 0, 1, 1, 1, 1, 'Enduring Circlet'),
|
|
(526790, 14767, 0, 0, 0, 1, 1, 1, 1, 'Enduring Pauldrons'),
|
|
(526790, 14768, 0, 0, 0, 1, 1, 1, 1, 'Ravager\'s Armor'),
|
|
(526790, 14769, 0, 0, 0, 1, 1, 1, 1, 'Ravager\'s Sandals'),
|
|
(526790, 14770, 0, 0, 0, 1, 1, 1, 1, 'Ravager\'s Armguards'),
|
|
(526790, 14771, 0, 0, 0, 1, 1, 1, 1, 'Ravager\'s Cloak'),
|
|
(526790, 14772, 0, 0, 0, 1, 1, 1, 1, 'Ravager\'s Handwraps'),
|
|
(526790, 14773, 0, 0, 0, 1, 1, 1, 1, 'Ravager\'s Cord'),
|
|
(526790, 14774, 0, 0, 0, 1, 1, 1, 1, 'Ravager\'s Crown'),
|
|
(526790, 14775, 0, 0, 0, 1, 1, 1, 1, 'Ravager\'s Woolies'),
|
|
(526790, 14776, 0, 0, 0, 1, 1, 1, 1, 'Ravager\'s Mantle'),
|
|
(526790, 14777, 0, 0, 0, 1, 1, 1, 1, 'Ravager\'s Shield'),
|
|
(526790, 14778, 0, 0, 0, 1, 1, 1, 1, 'Khan\'s Bindings'),
|
|
(526790, 14781, 0, 0, 0, 1, 1, 1, 1, 'Khan\'s Cloak'),
|
|
(526790, 14782, 0, 0, 0, 1, 1, 1, 1, 'Khan\'s Gloves'),
|
|
(526790, 14821, 0, 0, 0, 1, 1, 1, 1, 'Symbolic Breastplate'),
|
|
(526790, 14825, 0, 0, 0, 1, 1, 1, 1, 'Symbolic Crest'),
|
|
(526790, 14826, 0, 0, 0, 1, 1, 1, 1, 'Symbolic Gauntlets'),
|
|
(526790, 14827, 0, 0, 0, 1, 1, 1, 1, 'Symbolic Belt'),
|
|
(526790, 14828, 0, 0, 0, 1, 1, 1, 1, 'Symbolic Greaves'),
|
|
(526790, 14829, 0, 0, 0, 1, 1, 1, 1, 'Symbolic Legplates'),
|
|
(526790, 14830, 0, 0, 0, 1, 1, 1, 1, 'Symbolic Pauldrons'),
|
|
(526790, 14831, 0, 0, 0, 1, 1, 1, 1, 'Symbolic Crown'),
|
|
(526790, 14832, 0, 0, 0, 1, 1, 1, 1, 'Symbolic Vambraces'),
|
|
(526790, 14833, 0, 0, 0, 1, 1, 1, 1, 'Tyrant\'s Gauntlets'),
|
|
(526790, 14834, 0, 0, 0, 1, 1, 1, 1, 'Tyrant\'s Armguards'),
|
|
(526790, 14838, 0, 0, 0, 1, 1, 1, 1, 'Tyrant\'s Belt'),
|
|
(526790, 14839, 0, 0, 0, 1, 1, 1, 1, 'Tyrant\'s Greaves'),
|
|
(526790, 14841, 0, 0, 0, 1, 1, 1, 1, 'Tyrant\'s Epaulets'),
|
|
(526790, 14895, 0, 0, 0, 1, 1, 1, 1, 'Saltstone Surcoat'),
|
|
(526790, 14896, 0, 0, 0, 1, 1, 1, 1, 'Saltstone Sabatons'),
|
|
(526790, 14897, 0, 0, 0, 1, 1, 1, 1, 'Saltstone Gauntlets'),
|
|
(526790, 14898, 0, 0, 0, 1, 1, 1, 1, 'Saltstone Girdle'),
|
|
(526790, 14899, 0, 0, 0, 1, 1, 1, 1, 'Saltstone Helm'),
|
|
(526790, 14900, 0, 0, 0, 1, 1, 1, 1, 'Saltstone Legplates'),
|
|
(526790, 14901, 0, 0, 0, 1, 1, 1, 1, 'Saltstone Shoulder Pads'),
|
|
(526790, 14902, 0, 0, 0, 1, 1, 1, 1, 'Saltstone Shield'),
|
|
(526790, 14903, 0, 0, 0, 1, 1, 1, 1, 'Saltstone Armsplints'),
|
|
(526790, 14905, 0, 0, 0, 1, 1, 1, 1, 'Brutish Gauntlets'),
|
|
(526790, 14906, 0, 0, 0, 1, 1, 1, 1, 'Brutish Belt'),
|
|
(526790, 14909, 0, 0, 0, 1, 1, 1, 1, 'Brutish Shoulders'),
|
|
(526790, 14910, 0, 0, 0, 1, 1, 1, 1, 'Brutish Armguards'),
|
|
(526790, 14940, 0, 0, 0, 1, 1, 1, 1, 'Warbringer\'s Sabatons '),
|
|
(526790, 14941, 0, 0, 0, 1, 1, 1, 1, 'Warbringer\'s Armsplints'),
|
|
(526790, 14942, 0, 0, 0, 1, 1, 1, 1, 'Warbringer\'s Gauntlets'),
|
|
(526790, 14943, 0, 0, 0, 1, 1, 1, 1, 'Warbringer\'s Belt'),
|
|
(526790, 14944, 0, 0, 0, 1, 1, 1, 1, 'Warbringer\'s Crown'),
|
|
(526790, 14945, 0, 0, 0, 1, 1, 1, 1, 'Warbringer\'s Legguards'),
|
|
(526790, 14946, 0, 0, 0, 1, 1, 1, 1, 'Warbringer\'s Spaulders'),
|
|
(526790, 14956, 0, 0, 0, 1, 1, 1, 1, 'Bloodforged Bindings'),
|
|
(526790, 15146, 0, 0, 0, 1, 1, 1, 1, 'Ghostwalker Crown'),
|
|
(526790, 15152, 0, 0, 0, 1, 1, 1, 1, 'Nocturnal Shoes'),
|
|
(526790, 15154, 0, 0, 0, 1, 1, 1, 1, 'Nocturnal Sash'),
|
|
(526790, 15155, 0, 0, 0, 1, 1, 1, 1, 'Nocturnal Gloves'),
|
|
(526790, 15156, 0, 0, 0, 1, 1, 1, 1, 'Nocturnal Cap'),
|
|
(526790, 15157, 0, 0, 0, 1, 1, 1, 1, 'Nocturnal Leggings'),
|
|
(526790, 15158, 0, 0, 0, 1, 1, 1, 1, 'Nocturnal Shoulder Pads'),
|
|
(526790, 15159, 0, 0, 0, 1, 1, 1, 1, 'Nocturnal Tunic'),
|
|
(526790, 15160, 0, 0, 0, 1, 1, 1, 1, 'Nocturnal Wristbands'),
|
|
(526790, 15161, 0, 0, 0, 1, 1, 1, 1, 'Imposing Belt'),
|
|
(526790, 15162, 0, 0, 0, 1, 1, 1, 1, 'Imposing Boots'),
|
|
(526790, 15163, 0, 0, 0, 1, 1, 1, 1, 'Imposing Bracers'),
|
|
(526790, 15165, 0, 0, 0, 1, 1, 1, 1, 'Imposing Cape'),
|
|
(526790, 15166, 0, 0, 0, 1, 1, 1, 1, 'Imposing Gloves'),
|
|
(526790, 15168, 0, 0, 0, 1, 1, 1, 1, 'Imposing Pants'),
|
|
(526790, 15169, 0, 0, 0, 1, 1, 1, 1, 'Imposing Shoulders'),
|
|
(526790, 15214, 0, 0, 0, 1, 1, 1, 1, 'Nobles Brand'),
|
|
(526790, 15215, 0, 0, 0, 1, 1, 1, 1, 'Furious Falchion'),
|
|
(526790, 15233, 0, 0, 0, 1, 1, 1, 1, 'Savage Axe'),
|
|
(526790, 15234, 0, 0, 0, 1, 1, 1, 1, 'Greater Scythe'),
|
|
(526790, 15244, 0, 0, 0, 1, 1, 1, 1, 'Razor Blade'),
|
|
(526790, 15251, 0, 0, 0, 1, 1, 1, 1, 'Headstriker Sword'),
|
|
(526790, 15260, 0, 0, 0, 1, 1, 1, 1, 'Stone Hammer'),
|
|
(526790, 15261, 0, 0, 0, 1, 1, 1, 1, 'Sequoia Branch'),
|
|
(526790, 15287, 0, 0, 0, 1, 1, 1, 1, 'Crusader Bow'),
|
|
(526790, 15322, 0, 0, 0, 1, 1, 1, 1, 'Smoothbore Gun'),
|
|
(526790, 15353, 0, 0, 0, 1, 1, 1, 1, 'Headhunter\'s Headdress'),
|
|
(526790, 15359, 0, 0, 0, 1, 1, 1, 1, 'Trickster\'s Vest'),
|
|
(526790, 15360, 0, 0, 0, 1, 1, 1, 1, 'Trickster\'s Bindings'),
|
|
(526790, 15362, 0, 0, 0, 1, 1, 1, 1, 'Trickster\'s Boots'),
|
|
(526790, 15363, 0, 0, 0, 1, 1, 1, 1, 'Trickster\'s Headdress'),
|
|
(526790, 15365, 0, 0, 0, 1, 1, 1, 1, 'Trickster\'s Handwraps'),
|
|
(526790, 15366, 0, 0, 0, 1, 1, 1, 1, 'Trickster\'s Leggings'),
|
|
(526790, 15367, 0, 0, 0, 1, 1, 1, 1, 'Trickster\'s Protector'),
|
|
(526790, 15368, 0, 0, 0, 1, 1, 1, 1, 'Trickster\'s Pauldrons'),
|
|
(526790, 15369, 0, 0, 0, 1, 1, 1, 1, 'Wolf Rider\'s Belt'),
|
|
(526790, 15370, 0, 0, 0, 1, 1, 1, 1, 'Wolf Rider\'s Boots'),
|
|
(526790, 15371, 0, 0, 0, 1, 1, 1, 1, 'Wolf Rider\'s Cloak'),
|
|
(526790, 15372, 0, 0, 0, 1, 1, 1, 1, 'Wolf Rider\'s Gloves'),
|
|
(526790, 15374, 0, 0, 0, 1, 1, 1, 1, 'Wolf Rider\'s Leggings'),
|
|
(526790, 15375, 0, 0, 0, 1, 1, 1, 1, 'Wolf Rider\'s Shoulder Pads'),
|
|
(526790, 15377, 0, 0, 0, 1, 1, 1, 1, 'Wolf Rider\'s Wristbands'),
|
|
(526790, 15382, 0, 0, 0, 1, 1, 1, 1, 'Rageclaw Cloak'),
|
|
(526790, 15565, 0, 0, 0, 1, 1, 1, 1, 'Marauder\'s Boots'),
|
|
(526790, 15567, 0, 0, 0, 1, 1, 1, 1, 'Marauder\'s Tunic'),
|
|
(526790, 15569, 0, 0, 0, 1, 1, 1, 1, 'Marauder\'s Crest'),
|
|
(526790, 15572, 0, 0, 0, 1, 1, 1, 1, 'Marauder\'s Circlet'),
|
|
(526790, 15573, 0, 0, 0, 1, 1, 1, 1, 'Marauder\'s Leggings'),
|
|
(526790, 15574, 0, 0, 0, 1, 1, 1, 1, 'Marauder\'s Shoulder Pads'),
|
|
(526790, 15576, 0, 0, 0, 1, 1, 1, 1, 'Sparkleshell Sabatons'),
|
|
(526790, 15578, 0, 0, 0, 1, 1, 1, 1, 'Sparkleshell Breastplate'),
|
|
(526790, 15580, 0, 0, 0, 1, 1, 1, 1, 'Sparkleshell Headwrap'),
|
|
(526790, 15581, 0, 0, 0, 1, 1, 1, 1, 'Sparkleshell Gauntlets'),
|
|
(526790, 15582, 0, 0, 0, 1, 1, 1, 1, 'Sparkleshell Legguards'),
|
|
(526790, 15583, 0, 0, 0, 1, 1, 1, 1, 'Sparkleshell Shoulder Pads'),
|
|
(526790, 15584, 0, 0, 0, 1, 1, 1, 1, 'Sparkleshell Shield'),
|
|
(526790, 15589, 0, 0, 0, 1, 1, 1, 1, 'Steadfast Stompers'),
|
|
(526790, 15591, 0, 0, 0, 1, 1, 1, 1, 'Steadfast Breastplate'),
|
|
(526790, 15592, 0, 0, 0, 1, 1, 1, 1, 'Steadfast Buckler'),
|
|
(526790, 15593, 0, 0, 0, 1, 1, 1, 1, 'Steadfast Coronet'),
|
|
(526790, 15595, 0, 0, 0, 1, 1, 1, 1, 'Steadfast Gloves'),
|
|
(526790, 15596, 0, 0, 0, 1, 1, 1, 1, 'Steadfast Legplates'),
|
|
(526790, 15597, 0, 0, 0, 1, 1, 1, 1, 'Steadfast Shoulders'),
|
|
(526790, 15598, 0, 0, 0, 1, 1, 1, 1, 'Steadfast Girdle'),
|
|
(526790, 15599, 0, 0, 0, 1, 1, 1, 1, 'Ancient Greaves'),
|
|
(526790, 15600, 0, 0, 0, 1, 1, 1, 1, 'Ancient Vambraces'),
|
|
(526790, 15602, 0, 0, 0, 1, 1, 1, 1, 'Ancient Crown'),
|
|
(526790, 15603, 0, 0, 0, 1, 1, 1, 1, 'Ancient Cloak'),
|
|
(526790, 15605, 0, 0, 0, 1, 1, 1, 1, 'Ancient Gauntlets'),
|
|
(526790, 15606, 0, 0, 0, 1, 1, 1, 1, 'Ancient Belt'),
|
|
(526790, 15607, 0, 0, 0, 1, 1, 1, 1, 'Ancient Legguards'),
|
|
(526790, 15608, 0, 0, 0, 1, 1, 1, 1, 'Ancient Pauldrons'),
|
|
(526790, 15610, 0, 0, 0, 1, 1, 1, 1, 'Bonelink Bracers'),
|
|
(526790, 15611, 0, 0, 0, 1, 1, 1, 1, 'Bonelink Cape'),
|
|
(526790, 15612, 0, 0, 0, 1, 1, 1, 1, 'Bonelink Gauntlets'),
|
|
(526790, 15613, 0, 0, 0, 1, 1, 1, 1, 'Bonelink Belt'),
|
|
(526790, 15614, 0, 0, 0, 1, 1, 1, 1, 'Bonelink Sabatons'),
|
|
(526790, 15617, 0, 0, 0, 1, 1, 1, 1, 'Bonelink Epaulets'),
|
|
(526790, 15624, 0, 0, 0, 1, 1, 1, 1, 'Gryphon Cloak'),
|
|
(526790, 15918, 0, 0, 0, 1, 1, 1, 1, 'Conjurer\'s Sphere'),
|
|
(526790, 15963, 0, 0, 0, 1, 1, 1, 1, 'Stonecloth Branch'),
|
|
(526790, 15964, 0, 0, 0, 1, 1, 1, 1, 'Silksand Star'),
|
|
(526790, 15978, 0, 0, 0, 1, 1, 1, 1, 'Geomancer\'s Rod'),
|
|
(526790, 15979, 0, 0, 0, 1, 1, 1, 1, 'Embersilk Stave'),
|
|
(526790, 15990, 0, 0, 0, 1, 1, 1, 1, 'Enduring Shield');
|
|
|
|
/*!40103 SET TIME_ZONE=IFNULL(@OLD_TIME_ZONE, 'system') */;
|
|
/*!40101 SET SQL_MODE=IFNULL(@OLD_SQL_MODE, '') */;
|
|
/*!40014 SET FOREIGN_KEY_CHECKS=IFNULL(@OLD_FOREIGN_KEY_CHECKS, 1) */;
|
|
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
|
|
/*!40111 SET SQL_NOTES=IFNULL(@OLD_SQL_NOTES, 1) */;
|