diff options
Diffstat (limited to 'sql')
91 files changed, 13899 insertions, 3 deletions
diff --git a/sql/base/auth_database.sql b/sql/base/auth_database.sql index a1337fbca12..76cddd7e45d 100644 --- a/sql/base/auth_database.sql +++ b/sql/base/auth_database.sql @@ -1,8 +1,8 @@ --- MySQL dump 10.15 Distrib 10.0.10-MariaDB, for Win64 (x86) +-- MySQL dump 10.15 Distrib 10.0.12-MariaDB, for Win64 (x86) -- -- Host: localhost Database: auth -- ------------------------------------------------------ --- Server version 10.0.10-MariaDB +-- Server version 10.0.12-MariaDB /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; @@ -34,6 +34,7 @@ CREATE TABLE `account` ( `reg_mail` varchar(255) NOT NULL DEFAULT '', `joindate` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, `last_ip` varchar(15) NOT NULL DEFAULT '127.0.0.1', + `last_attempt_ip` varchar(15) NOT NULL DEFAULT '127.0.0.1', `failed_logins` int(10) unsigned NOT NULL DEFAULT '0', `locked` tinyint(3) unsigned NOT NULL DEFAULT '0', `lock_country` varchar(2) NOT NULL DEFAULT '00', @@ -240,6 +241,36 @@ LOCK TABLES `logs` WRITE; UNLOCK TABLES; -- +-- Table structure for table `logs_ip_actions` +-- + +DROP TABLE IF EXISTS `logs_ip_actions`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `logs_ip_actions` ( + `id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Unique Identifier', + `account_id` int(10) unsigned NOT NULL COMMENT 'Account ID', + `character_guid` int(10) unsigned NOT NULL COMMENT 'Character Guid', + `type` tinyint(3) unsigned NOT NULL, + `ip` varchar(15) NOT NULL DEFAULT '127.0.0.1', + `systemnote` text COMMENT 'Notes inserted by system', + `unixtime` int(10) unsigned NOT NULL COMMENT 'Unixtime', + `time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'Timestamp', + `comment` text COMMENT 'Allows users to add a comment', + PRIMARY KEY (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Used to log ips of individual actions'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `logs_ip_actions` +-- + +LOCK TABLES `logs_ip_actions` WRITE; +/*!40000 ALTER TABLE `logs_ip_actions` DISABLE KEYS */; +/*!40000 ALTER TABLE `logs_ip_actions` ENABLE KEYS */; +UNLOCK TABLES; + +-- -- Table structure for table `rbac_account_permissions` -- @@ -440,4 +471,4 @@ UNLOCK TABLES; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; /*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; --- Dump completed on 2014-04-28 13:43:54 +-- Dump completed on 2014-06-25 18:37:31 diff --git a/sql/updates/auth/2014_04_26_00_rbac_permissions.sql b/sql/updates/auth/2014_04_26_00_auth_rbac_permissions.sql index 11beed8f106..11beed8f106 100644 --- a/sql/updates/auth/2014_04_26_00_rbac_permissions.sql +++ b/sql/updates/auth/2014_04_26_00_auth_rbac_permissions.sql diff --git a/sql/updates/auth/2014_04_28_00_rbac_permissions.sql b/sql/updates/auth/2014_04_28_00_auth_rbac_permissions.sql index 290052764dd..290052764dd 100644 --- a/sql/updates/auth/2014_04_28_00_rbac_permissions.sql +++ b/sql/updates/auth/2014_04_28_00_auth_rbac_permissions.sql diff --git a/sql/updates/auth/2014_06_23_00_auth_action_ip_logger.sql b/sql/updates/auth/2014_06_23_00_auth_action_ip_logger.sql new file mode 100644 index 00000000000..375b97d35fc --- /dev/null +++ b/sql/updates/auth/2014_06_23_00_auth_action_ip_logger.sql @@ -0,0 +1,17 @@ +ALTER TABLE `account` ADD COLUMN `last_attempt_ip` VARCHAR(15) NOT NULL DEFAULT '127.0.0.1' AFTER `last_ip`; + +CREATE TABLE `logs_ip_actions` ( +`id` INT(10) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'Unique Identifier', +`account_id` INT(10) UNSIGNED NOT NULL COMMENT 'Account ID', +`character_guid` INT(10) UNSIGNED NOT NULL COMMENT 'Character Guid', +`type` TINYINT(3) UNSIGNED NOT NULL, +`ip` VARCHAR(15) NOT NULL DEFAULT '127.0.0.1', +`systemnote` TEXT NULL COMMENT 'Notes inserted by system', +`unixtime` INT(10) UNSIGNED NOT NULL COMMENT 'Unixtime', +`time` TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'Timestamp', +`comment` TEXT NULL COMMENT 'Allows users to add a comment', +PRIMARY KEY (`id`) +) +COMMENT='Used to log ips of individual actions' +COLLATE='utf8_general_ci' +ENGINE=InnoDB; diff --git a/sql/updates/characters/2014_04_30_00_character_queststatus_seasonal.sql b/sql/updates/characters/2014_04_30_00_characters_character_queststatus_seasonal.sql index 0c063b29df0..0c063b29df0 100644 --- a/sql/updates/characters/2014_04_30_00_character_queststatus_seasonal.sql +++ b/sql/updates/characters/2014_04_30_00_characters_character_queststatus_seasonal.sql diff --git a/sql/updates/world/2014_06_03_world_creature.sql b/sql/updates/world/2014_06_03_00_world_creature.sql index 81953785fd5..81953785fd5 100644 --- a/sql/updates/world/2014_06_03_world_creature.sql +++ b/sql/updates/world/2014_06_03_00_world_creature.sql diff --git a/sql/updates/world/2014_06_11_01_world_spell_script_names.sql b/sql/updates/world/2014_06_11_01_world_spell_script_names.sql new file mode 100644 index 00000000000..433f1cf8b09 --- /dev/null +++ b/sql/updates/world/2014_06_11_01_world_spell_script_names.sql @@ -0,0 +1,3 @@ +-- +DELETE FROM `spell_script_names` WHERE `spell_id` = 50842; +INSERT INTO `spell_script_names` (`spell_id`, `ScriptName`) VALUES (50842, 'spell_dk_pestilence'); diff --git a/sql/updates/world/2014_06_11_02_world_fish_junk_loot_template.sql b/sql/updates/world/2014_06_11_02_world_fish_junk_loot_template.sql new file mode 100644 index 00000000000..a8dc813d4b2 --- /dev/null +++ b/sql/updates/world/2014_06_11_02_world_fish_junk_loot_template.sql @@ -0,0 +1,20 @@ +SET @FISH_JUNK_GROUP := 11799; +SET @FISH_JUNK_LOOTMODE := 32768; + +DELETE FROM fishing_loot_template WHERE `item`=@FISH_JUNK_GROUP; +INSERT INTO fishing_loot_template (`entry`, `item`, `ChanceOrQuestChance`, `lootmode`, `groupid`, `mincountOrRef`, `maxcount`) VALUES +(1, @FISH_JUNK_GROUP, 100, @FISH_JUNK_LOOTMODE, 1, -@FISH_JUNK_GROUP, 1); + +DELETE FROM reference_loot_template WHERE `entry`=@FISH_JUNK_GROUP; +INSERT INTO reference_loot_template (`entry`, `item`, `ChanceOrQuestChance`, `lootmode`, `groupid`, `mincountOrRef`, `maxcount`) VALUES +(@FISH_JUNK_GROUP, 45190, 15, @FISH_JUNK_LOOTMODE, 1, 1, 1), -- [Driftwood] +(@FISH_JUNK_GROUP, 45191, 2, @FISH_JUNK_LOOTMODE, 1, 1, 1), -- [Water Snail] +(@FISH_JUNK_GROUP, 45194, 15, @FISH_JUNK_LOOTMODE, 1, 1, 1), -- [Tangled Fishing Line] +(@FISH_JUNK_GROUP, 45195, 5, @FISH_JUNK_LOOTMODE, 1, 1, 1), -- [Empty Rum Bottle] +(@FISH_JUNK_GROUP, 45196, 15, @FISH_JUNK_LOOTMODE, 1, 1, 1), -- [Tattered Cloth] +(@FISH_JUNK_GROUP, 45197, 5, @FISH_JUNK_LOOTMODE, 1, 1, 1), -- [Tree Branch] +(@FISH_JUNK_GROUP, 45198, 15, @FISH_JUNK_LOOTMODE, 1, 1, 1), -- [Weeds] +(@FISH_JUNK_GROUP, 45199, 5, @FISH_JUNK_LOOTMODE, 1, 1, 1), -- [Old Boot] +(@FISH_JUNK_GROUP, 45200, 15, @FISH_JUNK_LOOTMODE, 1, 1, 1), -- [Sickly Fish] +(@FISH_JUNK_GROUP, 45201, 3, @FISH_JUNK_LOOTMODE, 1, 1, 1), -- [Rock] +(@FISH_JUNK_GROUP, 45202, 5, @FISH_JUNK_LOOTMODE, 1, 1, 1); -- [Water Snail] diff --git a/sql/updates/world/2014_06_12_00_world_quest_template.sql b/sql/updates/world/2014_06_12_00_world_quest_template.sql new file mode 100644 index 00000000000..333aac99b0b --- /dev/null +++ b/sql/updates/world/2014_06_12_00_world_quest_template.sql @@ -0,0 +1,3 @@ +-- +UPDATE `quest_template` SET `RequestItemsText` = 'By Nozdormu''s teeth!' WHERE `id` = 24428; +UPDATE `quest_template` SET `OfferRewardText` = 'What? How did you get this? Isn''t she... Never mind the details, I suppose. You''ll be wanting one of these baubles as recompense, no doubt.' WHERE `id` = 24428; diff --git a/sql/updates/world/2014_06_12_01_world_gossip_menu_option.sql b/sql/updates/world/2014_06_12_01_world_gossip_menu_option.sql new file mode 100644 index 00000000000..ee423e3eaea --- /dev/null +++ b/sql/updates/world/2014_06_12_01_world_gossip_menu_option.sql @@ -0,0 +1,2 @@ +-- +UPDATE `gossip_menu_option` SET `action_menu_id`=1143 WHERE `menu_id`=1142 AND `id`=0; diff --git a/sql/updates/world/2014_06_14_00_world_creature_template.sql b/sql/updates/world/2014_06_14_00_world_creature_template.sql new file mode 100644 index 00000000000..19a2063571f --- /dev/null +++ b/sql/updates/world/2014_06_14_00_world_creature_template.sql @@ -0,0 +1 @@ +UPDATE `creature_template` SET `unit_class`=4,`unit_flags2`=0x10000 WHERE `entry` IN (37672,38285,38605,38786,38787,38788,38789,38790); -- Mutated Abomination diff --git a/sql/updates/world/2014_06_14_01_world_misc.sql b/sql/updates/world/2014_06_14_01_world_misc.sql new file mode 100644 index 00000000000..05261164241 --- /dev/null +++ b/sql/updates/world/2014_06_14_01_world_misc.sql @@ -0,0 +1,49 @@ +DELETE FROM `gossip_menu_option` WHERE `menu_id`=10389; +INSERT INTO `gossip_menu_option` (`menu_id`, `id`, `option_icon`, `option_text`, `OptionBroadcastTextID`, `option_id`, `box_coded`, `box_money`, `box_text`) VALUES +(10389, 0, 0, 'Teleport to the Expedition Base Camp.', 33919, 1, 0, 0, ''), -- 194569 +(10389, 1, 0, 'Teleport to the Formation Grounds.', 33920, 1, 0, 0, ''), -- 194569 +(10389, 3, 0, 'Teleport to the Colossal Forge.', 33921, 1, 0, 0, ''), -- 194569 +(10389, 4, 0, 'Teleport to the Scrapyard.', 33922, 1, 0, 0, ''), -- 194569 +(10389, 5, 0, 'Teleport to the Antechamber of Ulduar.', 33923, 1, 0, 0, ''), -- 194569 +(10389, 6, 0, 'Teleport to the Shattered Walkway.', 33924, 1, 0, 0, ''), -- 194569 +(10389, 10, 0, 'Teleport to the Conservatory of Life.', 33926, 1, 0, 0, ''), -- 194569 +(10389, 12, 0, 'Teleport to the Spark of Imagination.', 33927, 1, 0, 0, ''), -- 194569 +(10389, 15, 0, 'Teleport to the Prison of Yogg-Saron.', 33928, 1, 0, 0, ''); -- 194569 + +UPDATE `gameobject_template` SET AIName = 'SmartGameObjectAI', `ScriptName` = '' WHERE `entry`=194569; + +SET @Entry := 194569; +DELETE FROM `smart_scripts` WHERE `entryorguid`=@Entry; +DELETE FROM `smart_scripts` WHERE `source_type`=9 AND `entryorguid`=@Script; +INSERT INTO `smart_scripts` VALUES +-- Expedition Base Camp Teleport +(@ENTRY,1,0,9,62,0,100,0,10389,0,0,0,11,64014,0,0,0,0,0,7,0,0,0,0,0,0,0,'Ulduar Teleporter - On gossip select 0 - Cast "Expedition Base Camp Teleport"'), +-- Formation Grounds Teleport +(@ENTRY,1,1,9,62,0,100,0,10389,1,0,0,11,64032,0,0,0,0,0,7,0,0,0,0,0,0,0,'Ulduar Teleporter - On gossip select 1 - Cast "Formation Grounds Teleport"'), +-- Colossal Forge Teleport +(@ENTRY,1,2,9,62,0,100,0,10389,3,0,0,11,64028,0,0,0,0,0,7,0,0,0,0,0,0,0,'Ulduar Teleporter - On gossip select 3 - Cast "Colossal Forge Teleport"'), +-- Scrapyard Teleport +(@ENTRY,1,3,9,62,0,100,0,10389,4,0,0,11,64031,0,0,0,0,0,7,0,0,0,0,0,0,0,'Ulduar Teleporter - On gossip select 4 - Cast "Scrapyard Teleport"'), +-- Antechamber Teleport +(@ENTRY,1,4,9,62,0,100,0,10389,5,0,0,11,64030,0,0,0,0,0,7,0,0,0,0,0,0,0,'Ulduar Teleporter - On gossip select 5 - Cast "Antechamber Teleport"'), +-- Shattered Walkway Teleport +(@ENTRY,1,5,9,62,0,100,0,10389,6,0,0,11,64029,0,0,0,0,0,7,0,0,0,0,0,0,0,'Ulduar Teleporter - On gossip select 6 - Cast "Shattered Walkway Teleport"'), +-- Conservatory Teleport +(@ENTRY,1,6,9,62,0,100,0,10389,10,0,0,11,64024,0,0,0,0,0,7,0,0,0,0,0,0,0,'Ulduar Teleporter - On gossip select 10 - Cast "Conservatory Teleport"'), +-- Halls of Invention Teleport +(@ENTRY,1,7,9,62,0,100,0,10389,12,0,0,11,64025,0,0,0,0,0,7,0,0,0,0,0,0,0,'Ulduar Teleporter - On gossip select 12 - Cast "Halls of Invention Teleport"'), +-- Prison of Yogg-Saron Teleport +(@ENTRY,1,8,9,62,0,100,0,10389,15,0,0,11,65042,0,0,0,0,0,7,0,0,0,0,0,0,0,'Ulduar Teleporter - On gossip select 15 - Cast "Prison of Yogg-Saron Teleport"'), +-- Close gossip +(@ENTRY,1,9,0,61,0,100,0,0,0,0,0,72,0,0,0,0,0,0,7,0,0,0,0,0,0,0,'Ulduar Teleporter - Linked with Previous Event - Close gossip'); + +DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId`=15 AND `SourceGroup`=10389; +INSERT INTO `conditions` (`SourceTypeOrReferenceId`, `SourceGroup`, `SourceEntry`, `SourceId`, `ElseGroup`, `ConditionTypeOrReference`, `ConditionTarget`, `ConditionValue1`, `ConditionValue2`, `ConditionValue3`, `NegativeCondition`, `ErrorType`, `ErrorTextId`, `ScriptName`, `Comment`) VALUES +(15, 10389, 1, 0, 0, 13, 1, 20, 2, 0, 0, 0, 0, '', 'Show options for gossip only if 2 Collossus death'), +(15, 10389, 3, 0, 0, 13, 1, 0, 3, 2, 0, 0, 0, '', 'Show options for gossip only if BOSS_LEVIATHAN done'), +(15, 10389, 4, 0, 0, 13, 1, 3, 3, 2, 0, 0, 0, '', 'Show options for gossip only if BOSS_XT002 done'), +(15, 10389, 5, 0, 0, 13, 1, 3, 3, 2, 0, 0, 0, '', 'Show options for gossip only if BOSS_XT002 done'), +(15, 10389, 6, 0, 0, 13, 1, 5, 3, 2, 0, 0, 0, '', 'Show options for gossip only if BOSS_KOLOGARN done'), +(15, 10389, 12, 0, 0, 13, 1, 5, 3, 2, 0, 0, 0, '', 'Show options for gossip only if BOSS_KOLOGARN done'), +(15, 10389, 10, 0, 0, 13, 1, 6, 3, 2, 0, 0, 0, '', 'Show options for gossip only if BOSS_AURIAYA done'), +(15, 10389, 15, 0, 0, 13, 1, 14, 3, 2, 0, 0, 0, '', 'Show options for gossip only if BOSS_VEZAX done'); diff --git a/sql/updates/world/2014_06_14_02_world_spell_script_names.sql b/sql/updates/world/2014_06_14_02_world_spell_script_names.sql new file mode 100644 index 00000000000..53b1f2f6286 --- /dev/null +++ b/sql/updates/world/2014_06_14_02_world_spell_script_names.sql @@ -0,0 +1,9 @@ +DELETE FROM `spell_script_names` WHERE `ScriptName` = 'spell_ulduar_teleporter'; +INSERT INTO `spell_script_names` (`spell_id`, `ScriptName`) VALUES +(64014, 'spell_ulduar_teleporter'), +(64032, 'spell_ulduar_teleporter'), +(64028, 'spell_ulduar_teleporter'), +(64030, 'spell_ulduar_teleporter'), +(64029, 'spell_ulduar_teleporter'), +(64025, 'spell_ulduar_teleporter'), +(65042, 'spell_ulduar_teleporter'); diff --git a/sql/updates/world/2014_06_14_03_world_smart_scripts.sql b/sql/updates/world/2014_06_14_03_world_smart_scripts.sql new file mode 100644 index 00000000000..ffd0ed03963 --- /dev/null +++ b/sql/updates/world/2014_06_14_03_world_smart_scripts.sql @@ -0,0 +1 @@ +UPDATE `smart_scripts` SET `event_type`=61 WHERE `entryorguid`=6221 AND `id` IN (9,10); diff --git a/sql/updates/world/2014_06_14_04_world_trinity_string.sql b/sql/updates/world/2014_06_14_04_world_trinity_string.sql new file mode 100644 index 00000000000..b110a7de6d2 --- /dev/null +++ b/sql/updates/world/2014_06_14_04_world_trinity_string.sql @@ -0,0 +1,3 @@ +DELETE FROM `trinity_string` WHERE `entry`=11009; +INSERT INTO `trinity_string` (`entry`, `content_default`) VALUES +(11009, 'Flags Extra: %u'); diff --git a/sql/updates/world/2014_06_15_00_world_spell_script_names.sql b/sql/updates/world/2014_06_15_00_world_spell_script_names.sql new file mode 100644 index 00000000000..84123740083 --- /dev/null +++ b/sql/updates/world/2014_06_15_00_world_spell_script_names.sql @@ -0,0 +1,3 @@ +DELETE FROM `spell_script_names` WHERE `spell_id`=42005; +INSERT INTO `spell_script_names` (`spell_id`, `ScriptName`) VALUES +(42005, 'spell_gurtogg_bloodboil_bloodboil'); diff --git a/sql/updates/world/2014_06_15_01_world_creature_template.sql b/sql/updates/world/2014_06_15_01_world_creature_template.sql new file mode 100644 index 00000000000..48358811c94 --- /dev/null +++ b/sql/updates/world/2014_06_15_01_world_creature_template.sql @@ -0,0 +1,7 @@ +-- inherit vehicleid and accessory from normal mode npc +UPDATE `creature_template` SET `VehicleId`=0 WHERE `entry` IN ( +30935, -- Drakkari Rhino (1) +31749, -- Hover Disk (1) +31748, -- Hover Disk (1) +37626 -- Iceborn Proto-Drake (1) +); diff --git a/sql/updates/world/2014_06_15_02_world_spell_group.sql b/sql/updates/world/2014_06_15_02_world_spell_group.sql new file mode 100644 index 00000000000..4a4be6f23cd --- /dev/null +++ b/sql/updates/world/2014_06_15_02_world_spell_group.sql @@ -0,0 +1,700 @@ + +TRUNCATE `spell_group`; +TRUNCATE `spell_group_stack_rules`; + +INSERT INTO `spell_group` (`id`, `spell_id`) VALUES +-- Battle Elixirs +(1, 2367), +(1, 2374), +(1, 3160), +(1, 3164), +(1, 7844), +(1, 8212), +(1, 10667), +(1, 10669), +(1, 11328), +(1, 11334), +(1, 11390), +(1, 11405), +(1, 11406), +(1, 11474), +(1, 16322), +(1, 16323), +(1, 16329), +(1, 17038), +(1, 17537), +(1, 17538), +(1, 17539), +(1, 17624), +(1, 17626), +(1, 17627), +(1, 17628), +(1, 17629), +(1, 21920), +(1, 26276), +(1, 28486), +(1, 28488), +(1, 28490), +(1, 28491), +(1, 28493), +(1, 28497), +(1, 28501), +(1, 28503), +(1, 28518), +(1, 28519), +(1, 28520), +(1, 28521), +(1, 28540), +(1, 33720), +(1, 33721), +(1, 33726), +(1, 38954), +(1, 40567), +(1, 40568), +(1, 40572), +(1, 40573), +(1, 40575), +(1, 40576), +(1, 41608), +(1, 41609), +(1, 41610), +(1, 41611), +(1, 42735), +(1, 45373), +(1, 46837), +(1, 46839), +(1, 53746), +(1, 53748), +(1, 53749), +(1, 53752), +(1, 53755), +(1, 53758), +(1, 53760), +(1, 54212), +(1, 54452), +(1, 54494), +(1, 60340), +(1, 60341), +(1, 60344), +(1, 60345), +(1, 60346), +(1, 62380), +(1, 67016), +(1, 67017), +(1, 67018), + +-- Guardian Elixirs +(2, 673), +(2, 2378), +(2, 2380), +(2, 3166), +(2, 3219), +(2, 3220), +(2, 3222), +(2, 3223), +(2, 3593), +(2, 10668), +(2, 10692), +(2, 10693), +(2, 11319), +(2, 11348), +(2, 11349), +(2, 11364), +(2, 11371), +(2, 11396), +(2, 15231), +(2, 15233), +(2, 16321), +(2, 16325), +(2, 16326), +(2, 16327), +(2, 17535), +(2, 17624), +(2, 17626), +(2, 17627), +(2, 17628), +(2, 17629), +(2, 24361), +(2, 24363), +(2, 24382), +(2, 24383), +(2, 24417), +(2, 27652), +(2, 27653), +(2, 28502), +(2, 28509), +(2, 28514), +(2, 28518), +(2, 28519), +(2, 28520), +(2, 28521), +(2, 28540), +(2, 29348), +(2, 39625), +(2, 39626), +(2, 39627), +(2, 39628), +(2, 40567), +(2, 40568), +(2, 40572), +(2, 40573), +(2, 40575), +(2, 40576), +(2, 41608), +(2, 41609), +(2, 41610), +(2, 41611), +(2, 42735), +(2, 46837), +(2, 46839), +(2, 53747), +(2, 53751), +(2, 53752), +(2, 53755), +(2, 53758), +(2, 53760), +(2, 53763), +(2, 53764), +(2, 54212), +(2, 60343), +(2, 60347), +(2, 62380), +(2, 67016), +(2, 67017), +(2, 67018), + +-- 'only works in the Blade's Edge Mountains Plateaus and Gruul's Lair' +(3, 40567), +(3, 40568), +(3, 40572), +(3, 40573), +(3, 40575), +(3, 40576), + +-- 'Only active in Tempest Keep, Serpentshrine Cavern, Caverns of Time: Mount Hyjal, Black Temple and the Sunwell Plateau' +(4, 41608), +(4, 41609), +(4, 41610), +(4, 41611), +(4, 46837), +(4, 46839), + +-- Well Fed +(1001, 18125), +(1001, 18141), +(1001, 19705), +(1001, 19706), +(1001, 19708), +(1001, 19709), +(1001, 19710), +(1001, 19711), +(1001, 23697), +(1001, 24799), +(1001, 24870), +(1001, 25694), +(1001, 25941), +(1001, 33254), +(1001, 33256), +(1001, 33257), +(1001, 33259), +(1001, 33261), +(1001, 33263), +(1001, 33265), +(1001, 33268), +(1001, 33272), +(1001, 35272), +(1001, 40323), +(1001, 42293), +(1001, 43722), +(1001, 43764), +(1001, 43771), +(1001, 44097), +(1001, 44098), +(1001, 44099), +(1001, 44100), +(1001, 44101), +(1001, 44102), +(1001, 44104), +(1001, 44105), +(1001, 44106), +(1001, 45245), +(1001, 45619), +(1001, 46682), +(1001, 46687), +(1001, 46899), +(1001, 53284), +(1001, 57079), +(1001, 57097), +(1001, 57100), +(1001, 57102), +(1001, 57107), +(1001, 57111), +(1001, 57139), +(1001, 57286), +(1001, 57288), +(1001, 57291), +(1001, 57294), +(1001, 57325), +(1001, 57327), +(1001, 57329), +(1001, 57332), +(1001, 57334), +(1001, 57356), +(1001, 57358), +(1001, 57360), +(1001, 57363), +(1001, 57365), +(1001, 57367), +(1001, 57371), +(1001, 57373), +(1001, 57399), +(1001, 58468), +(1001, 58479), +(1001, 59230), +(1001, 62349), +(1001, 64057), +(1001, 65247), +(1001, 65365), +(1001, 65410), +(1001, 65412), +(1001, 65414), +(1001, 65415), +(1001, 65416), +(1001, 66623), +(1001, 66624), +(1001, 69559), + +-- Blessing of Might +(1002, 19740), +(1002, 25782), +(1002, 56520), + +-- Battle Shout +(1003, 6673), + +-- BoM & Battle Shout +(1004, -1003), +(1004, -1002), + +-- Blessing of Wisdom +(1005, 19742), +(1005, 25894), +(1005, 56521), + +-- Blessing of Kings +(1006, 20217), +(1006, 25898), +(1006, 43223), +(1006, 56525), +(1006, 58054), +(1006, 72586), + +-- Blessing of Sanctuary +(1007, 20911), +(1007, 25899), + +-- Blessing of Protection (is this deprecated?) +(1008, 23415), +(1008, 41450), + +-- Blessing of Light (deprecated) +(1009, 32770), + +-- Paladin Blessings +(1010, -1009), +(1010, -1008), +(1010, -1007), +(1010, -1006), +(1010, -1005), +(1010, -1002), + +-- Warrior Shouts +(1011, -1003), +(1011, -1091), -- Commanding Shout + +(1012, 55749), -- Acid Spit (Rank 1) +(1013, 8647), -- Expose Armor +(1014, 7386), -- Sunder Armor + +-- Major Armor Reduction +(1015, -1014), +(1015, -1013), +(1015, -1012), +(1015, -1063), -- Curse of Weakness + +-- Faerie Fire +(1016, 770), +(1016, 16857), + +(1017, 56626), -- Sting (Rank 1) + +-- Minor Armor Reduction +(1019, -1017), +(1019, -1016), + +(1020, 55610), -- Improved Icy Talons +(1021, 8515), -- Windfury Totem (Rank 1) + +-- Melee Haste +(1022, -1021), +(1022, -1020), + +(1023, 24932), -- Leader of the Pack +(1024, 29801), -- Rampage (Passive) + +-- Melee Critical Increase +(1025, -1024), +(1025, -1023), + +(1026, 53137), -- Abomination's Might (Rank 1) +(1027, 19506), -- Trueshot Aura +(1028, 30802), -- Unleashed Rage (Rank 1) + +-- 10% Attack Power +(1029, -1028), +(1029, -1027), +(1029, -1026), + +(1030, 33878), -- Mangle (Bear) (Rank 1) +(1031, 33876), -- Mangle (Cat) (Rank 1) +(1032, 46856), -- Trauma (Rank 1) + +-- Bleed Damage Increase +(1033, -1032), +(1033, -1031), +(1033, -1030), + +(1034, 24907), -- Moonkin Aura +(1035, 51466), -- Elemental Oath (Rank 1) + +-- Spell Critical Increase +(1036, -1035), +(1036, -1034), + +-- Spell Critical Increase Debuff +(1037, 12579), +(1037, 17794), +(1037, 17797), +(1037, 17798), +(1037, 17799), +(1037, 17800), +(1037, 22959), + +-- BoK/BoS stat increase +(1038, -1006), -- Blessing of Kings +(1038, 67480), -- Blessing of Sanctuary + +(1045, 52109), -- Flametongue Totem (Rank 1) + +-- Totem of Wrath +(1046, 57658), +(1046, 57660), +(1046, 57662), +(1046, 57663), + +(1047, 48090), -- Demonic Pact + +-- Spell Damage Increase +(1048, -1047), +(1048, -1046), +(1048, -1045), + +(1050, 33191), -- Misery (Rank 1) + +-- Hit Chance Increase +(1051, -1016), -- Faerie Fire +(1051, -1050), + +(1052, 7294), -- Retribution Aura +(1053, 63531), -- Sanctified Retribution + +-- Spell Haste +(1054, -1052), +(1054, -1053), +(1054, 50170), -- Improved Moonkin Form (Rank 1) + +-- Ferocious Inspiration +(1055, 75446), +(1055, 75447), +(1055, 75593), + +-- Raid Damage % Bonus +(1056, -1052), +(1056, -1053), +(1056, -1055), +(1056, 31579), -- Arcane Empowerment (Rank 1) + +(1057, 13218), -- Wound Poison + +-- Target Critical Increase +(1058, -1057), +(1058, 2818), +(1058, 3409), +(1058, 5760), +(1058, 21183), +(1058, 30708), + +-- Melee/Ranged Slow +(1059, 89), -- Cripple (Rank 1) +(1059, 6136), -- Chilled (Rank 1) +(1059, 6343), -- Thunder Clap (Rank 1) +(1059, 6360), -- Soothing Kiss (Rank 1) +(1059, 7321), -- Chilled (Rank 1) +(1059, 8042), -- Earth Shock (Rank 1) +(1059, 16914), -- Hurricane (Rank 1) +(1059, 20005), -- Chilled +(1059, 27648), -- Thunderfury +(1059, 51693), -- Waylay +(1059, 55095), -- Frost Fever +(1059, 58179), -- Infected Wounds +(1059, 58180), -- Infected Wounds +(1059, 58181), -- Infected Wounds +(1059, 68055), -- Judgements of the Just (Rank 1) + +-- Target Hit Chance Decrease +(1060, 5570), -- Insect Swarm (Rank 1) +(1060, 3043), -- Scorpid Sting + +-- Healing Debuffs +(1061, -1057), -- Wound Poison (Rank 1) +(1061, 19434), -- Aimed Shot (Rank 1) +(1061, 12294), -- Mortal Strike (Rank 1) +(1061, 46910), -- Furious Attacks (Rank 1) + +-- Attack Power Debuff +(1062, -1063), -- Curse of Weakness +(1062, 99), -- Demoralizing Roar (Rank 1) +(1062, 1160), -- Demoralizing Shout (Rank 1) +(1062, 67), -- Vindication + +(1063, 702), -- Curse of Weakness +(1064, 8076), -- Strength of Earth (Rank 1) +(1065, 57330), -- Horn of Winter (Rank 1) +(1066, 8118), -- Strength (Rank 1) +(1067, 8115), -- Agility (Rank 1) +(1068, 8096), -- Intellect (Rank 1) +(1069, 8099), -- Stamina (Level 1) +(1070, 8112), -- Spirit (Rank 1) +(1071, 8091), -- Armor (Rank 1) +(1072, 1459), -- Arcane Intellect (Rank 1) +(1073, 54424), -- Fel Intelligence (Rank 1) +(1074, 1243), -- Power Word: Fortitude (Rank 1) +(1075, 21562), -- Prayer of Fortitude (Rank 1) +(1076, 14752), -- Divine Spirit (Rank 1) +(1077, 27681), -- Prayer of Spirit (Rank 1) +(1078, 1126), -- Mark of the Wild (Rank 1) +(1079, 21849), -- Gift of the Wild (Rank 1) +(1080, 23028), -- Arcane Brilliance (Rank 1) +(1081, 61024), -- Dalaran Intellect (Rank 7) +(1082, 61316), -- Dalaran Brilliance (Rank 3) + +-- Intellect Buffs +(1083, -1068), -- Intellect (Rank 1) +(1083, -1072), -- Arcane Intellect (Rank 1) +(1083, -1073), -- Fel Intelligence (Rank 1) +(1083, -1081), -- Dalaran Intellect (Rank 7) +(1083, -1082), -- Dalaran Brilliance (Rank 3) + +-- Stamina Buffs +(1084, -1074), -- Power Word: Fortitude (Rank 1) +(1084, -1069), -- Stamina (Level 1) +(1084, -1075), -- Prayer of Fortitude (Rank 1) +(1084, 72590), -- Fortitude + +-- Spirit Buffs +(1085, -1070), -- Spirit (Rank 1) +(1085, -1076), -- Divine Spirit (Rank 1) +(1085, -1077), -- Prayer of Spirit (Rank 1) +(1085, -1073), -- Fel Intelligence (Rank 1) + +-- Armor Buffs +(1086, -1071), -- Armor (Rank 1) +(1086, 8072), -- Stoneskin + +-- All Stat Type Buffs +(1087, -1078), -- Mark of the Wild (Rank 1) +(1087, -1071), -- Armor (Rank 1) +(1087, -1068), -- Intellect (Rank 1) +(1087, -1069), -- Stamina (Level 1) +(1087, -1070), -- Spirit (Rank 1) +(1087, -1067), -- Agility (Rank 1) +(1087, -1066), -- Strength (Rank 1) +(1087, -1079), -- Gift of the Wild (Rank 1) +(1087, 72588), -- Gift of the Wild + +-- Strength and Agility Buffs +(1088, -1064), -- Strength of Earth (Rank 1) +(1088, -1065), -- Horn of Winter (Rank 1) + +-- Strength Buffs +(1089, -1066), -- Strength (Rank 1) +(1089, -1085), -- Strength of Earth + HoW + +-- Agility Buffs +(1090, -1067), -- Agility (Rank 1) +(1090, -1085), -- Strength of Earth + HoW + +(1091, 469), -- Commanding Shout (Rank 1) +(1092, 6307), -- Blood Pact (Rank 1) + +-- Flat Health Buffs +(1093, -1091), +(1093, -1092), + +-- Healing Received Buffs +(1094, 34123), -- Tree of Life (Passive) +(1094, 63514), -- Improved Devotion Aura (Rank 10) + +-- Physical Damage Taken Buff +(1095, 14893), -- Inspiration (Rank 1) +(1095, 16177), -- Ancestral Fortitude (Rank 1) + +-- Casting Time Debuffs +(1096, 1714), -- Curse of Tongues (Rank 1) +(1096, 31589), -- Slow +(1096, 5760), -- Mind-numbing Poison + +-- Mage Snares +(1097, 122), -- Frost Nova (Rank 1) +(1097, 33395), -- Freeze +(1097, 55080), -- Shattered Barrier + +-- Shadow Protection +(1098, 976), -- Shadow Protection (Rank 1) +(1098, 27683), -- Prayer of Shadow Protection (Rank 1) + +-- Immolate & Unstable Assfriction +(1099, 348), -- Immolate (Rank 1) +(1099, 30108), -- Unstable Assfriction (Rank 1) + +-- Dampen/Amplify Magic +(1100, 604), -- Dampen Magic (Rank 1) +(1100, 1008), -- Amplify Magic (Rank 1) + +-- Spell Damage Taken Debuffs +(1101, 1490), -- Curse of the Elements (Rank 1) +(1101, 51726), -- Ebon Plague +(1101, 51734), -- Ebon Plague +(1101, 51735), -- Ebon Plague +(1101, 60431), -- Earth and Moon +(1101, 60432), -- Earth and Moon +(1101, 60433), -- Earth and Moon + +-- Introspection +(1102, 40055), -- Introspection +(1102, 40165), -- Introspection +(1102, 40166), -- Introspection +(1102, 40167), -- Introspection + +-- Apexis Emanations +(1103, 40623), -- Apexis Emanations +(1103, 40625), -- Apexis Emanations +(1103, 40626), -- Apexis Emanations + +-- Enrage Buffs +(1104, 12880), -- Enrage (Rank 1) +(1104, 57514), -- Enrage (Rank 1) +(1104, 57518), -- Enrage (Rank 1) + +-- BoW & Mana Spring +(1105, 5677), +(1105, -1005), + +-- Heroic Presence Racials +(1106, 6562), -- Heroic Presence (Racial Passive) +(1106, 28878), -- Heroic Presence (Racial Passive) + +-- Damage Done Buffs +(1107, 49016), -- Hysteria +(1107, 57933), -- Tricks of the Trade +(1107, 12292), -- Death Wish +(1107, 12042), -- Arcane Power +(1107, 34471), -- The Beast Within +(1107, 31884), -- Avenging Wrath + +-- Physical Damage Taken Debuffs +(1108, 30069), -- Blood Frenzy (Rank 1) +(1108, 58684), -- Savage Combat (Rank 1) + +-- Scholazar Buffs +(1109, 51442), -- Blessing of the Sparkling Hare +(1109, 52119), -- Jaloot's Intensity + +-- Corporeality +(1110, 74826), -- Corporeality +(1110, 74827), -- Corporeality +(1110, 74828), -- Corporeality +(1110, 74829), -- Corporeality +(1110, 74830), -- Corporeality +(1110, 74831), -- Corporeality +(1110, 74832), -- Corporeality +(1110, 74833), -- Corporeality +(1110, 74834), -- Corporeality +(1110, 74835), -- Corporeality +(1110, 74836); -- Corporeality + +SET @SPELL_GROUP_STACK_RULE_EXCLUSIVE := 1; -- A unit can only have one of these +SET @SPELL_GROUP_STACK_RULE_EXCLUSIVE_FROM_SAME_CASTER := 2; -- A unit can have one of these, per caster +SET @SPELL_GROUP_STACK_RULE_EXCLUSIVE_SAME_EFFECT := 3; -- A unit can have several of these, but only the strongest count +SET @SPELL_GROUP_STACK_RULE_EXCLUSIVE_HIGHEST := 4; -- A unit can only have one of these, the strongest + +INSERT INTO `spell_group_stack_rules` (`group_id`, `stack_rule`) VALUES +(1, @SPELL_GROUP_STACK_RULE_EXCLUSIVE), -- Battle Elixirs +(2, @SPELL_GROUP_STACK_RULE_EXCLUSIVE), -- Guardian Elixirs +(1001, @SPELL_GROUP_STACK_RULE_EXCLUSIVE), -- Well Fed +(1002, @SPELL_GROUP_STACK_RULE_EXCLUSIVE_HIGHEST), -- Blessing of Might +(1003, @SPELL_GROUP_STACK_RULE_EXCLUSIVE_HIGHEST), -- Battle Shout +(1004, @SPELL_GROUP_STACK_RULE_EXCLUSIVE_HIGHEST), -- BoM & Batte Shout +(1005, @SPELL_GROUP_STACK_RULE_EXCLUSIVE_HIGHEST), -- Blessing of Wisdom +(1006, @SPELL_GROUP_STACK_RULE_EXCLUSIVE), -- Blessing of Kings +(1007, @SPELL_GROUP_STACK_RULE_EXCLUSIVE), -- Blessing of Sanctuary +(1008, @SPELL_GROUP_STACK_RULE_EXCLUSIVE), -- Blessing of Protection +(1009, @SPELL_GROUP_STACK_RULE_EXCLUSIVE), -- Blessing of Light +(1010, @SPELL_GROUP_STACK_RULE_EXCLUSIVE_FROM_SAME_CASTER), -- Paladin Blessings +(1011, @SPELL_GROUP_STACK_RULE_EXCLUSIVE_FROM_SAME_CASTER), -- Warrior Shouts +(1015, @SPELL_GROUP_STACK_RULE_EXCLUSIVE), -- Major Armor Reduction +(1016, @SPELL_GROUP_STACK_RULE_EXCLUSIVE_HIGHEST), -- Faerie Fire +(1019, @SPELL_GROUP_STACK_RULE_EXCLUSIVE), -- Minor Armor Reduction +(1022, @SPELL_GROUP_STACK_RULE_EXCLUSIVE_HIGHEST), -- Melee Haste +(1025, @SPELL_GROUP_STACK_RULE_EXCLUSIVE_HIGHEST), -- Melee Critical Increase +(1029, @SPELL_GROUP_STACK_RULE_EXCLUSIVE), -- 10% Attack Power +(1033, @SPELL_GROUP_STACK_RULE_EXCLUSIVE), -- Bleed Damage Increase +(1036, @SPELL_GROUP_STACK_RULE_EXCLUSIVE_HIGHEST), -- Spell Critical Increase +(1037, @SPELL_GROUP_STACK_RULE_EXCLUSIVE_SAME_EFFECT), -- Spell Critical Increase Debuff +(1038, @SPELL_GROUP_STACK_RULE_EXCLUSIVE_SAME_EFFECT), -- BoK/BoS stat increase +(1046, @SPELL_GROUP_STACK_RULE_EXCLUSIVE_HIGHEST), -- Totem of Wrath +(1048, @SPELL_GROUP_STACK_RULE_EXCLUSIVE_HIGHEST), -- Spell Damage Increase +(1051, @SPELL_GROUP_STACK_RULE_EXCLUSIVE_HIGHEST), -- Hit Chance Increase +(1054, @SPELL_GROUP_STACK_RULE_EXCLUSIVE_HIGHEST), -- Spell Haste +(1055, @SPELL_GROUP_STACK_RULE_EXCLUSIVE_HIGHEST), -- Ferocious Inspiration +(1056, @SPELL_GROUP_STACK_RULE_EXCLUSIVE_HIGHEST), -- Raid Damage % Bonus +(1058, @SPELL_GROUP_STACK_RULE_EXCLUSIVE_HIGHEST), -- Target Critical Increase +(1059, @SPELL_GROUP_STACK_RULE_EXCLUSIVE_SAME_EFFECT), -- Melee/Ranged Slow +(1060, @SPELL_GROUP_STACK_RULE_EXCLUSIVE), -- Target Hit Chance Decrease +(1061, @SPELL_GROUP_STACK_RULE_EXCLUSIVE_HIGHEST), -- Healing Debuffs +(1062, @SPELL_GROUP_STACK_RULE_EXCLUSIVE_HIGHEST), -- Attack Power Debuff +(1083, @SPELL_GROUP_STACK_RULE_EXCLUSIVE_HIGHEST), -- Intellect Buffs +(1084, @SPELL_GROUP_STACK_RULE_EXCLUSIVE_HIGHEST), -- Stamina Buffs +(1085, @SPELL_GROUP_STACK_RULE_EXCLUSIVE_HIGHEST), -- Spirit Buffs +(1086, @SPELL_GROUP_STACK_RULE_EXCLUSIVE_HIGHEST), -- Armor Buffs +(1087, @SPELL_GROUP_STACK_RULE_EXCLUSIVE_HIGHEST), -- All Stat Type Buffs +(1088, @SPELL_GROUP_STACK_RULE_EXCLUSIVE_HIGHEST), -- Strength and Agility Buffs +(1089, @SPELL_GROUP_STACK_RULE_EXCLUSIVE_HIGHEST), -- Strength Buffs +(1090, @SPELL_GROUP_STACK_RULE_EXCLUSIVE_HIGHEST), -- Agility Buffs +(1093, @SPELL_GROUP_STACK_RULE_EXCLUSIVE_HIGHEST), -- Flat Health Buffs +(1094, @SPELL_GROUP_STACK_RULE_EXCLUSIVE_HIGHEST), -- Healing Received Buffs +(1095, @SPELL_GROUP_STACK_RULE_EXCLUSIVE_HIGHEST), -- Physical Damage Taken Buffs +(1096, @SPELL_GROUP_STACK_RULE_EXCLUSIVE_HIGHEST), -- Casting Time Debuffs +(1097, @SPELL_GROUP_STACK_RULE_EXCLUSIVE), -- Mage Snares +(1098, @SPELL_GROUP_STACK_RULE_EXCLUSIVE_HIGHEST), -- Shadow Protection +(1099, @SPELL_GROUP_STACK_RULE_EXCLUSIVE_FROM_SAME_CASTER), -- Immolate & Unstable Assfriction +(1100, @SPELL_GROUP_STACK_RULE_EXCLUSIVE), -- Dampen/Amplify Magic +(1101, @SPELL_GROUP_STACK_RULE_EXCLUSIVE_SAME_EFFECT), -- Spell Damage Taken Debuff +(1104, @SPELL_GROUP_STACK_RULE_EXCLUSIVE), -- Enrage Buffs +(1105, @SPELL_GROUP_STACK_RULE_EXCLUSIVE_HIGHEST), -- BoW & Mana Spring +(1106, @SPELL_GROUP_STACK_RULE_EXCLUSIVE), -- Heroic Presence Racials +(1107, @SPELL_GROUP_STACK_RULE_EXCLUSIVE_HIGHEST), -- Damage Done Buffs +(1108, @SPELL_GROUP_STACK_RULE_EXCLUSIVE_HIGHEST), -- Physical Damage Taken Debuffs +(1109, @SPELL_GROUP_STACK_RULE_EXCLUSIVE), -- Scholazar Buffs +(1110, @SPELL_GROUP_STACK_RULE_EXCLUSIVE); -- Corporeality + diff --git a/sql/updates/world/2014_06_16_00_world_spell_group.sql b/sql/updates/world/2014_06_16_00_world_spell_group.sql new file mode 100644 index 00000000000..363030eeaa1 --- /dev/null +++ b/sql/updates/world/2014_06_16_00_world_spell_group.sql @@ -0,0 +1,3 @@ + +-- Target Critical Increase Debuffs should stack, and only the higher effect apply +UPDATE spell_group_stack_rules SET stack_rule=3 WHERE group_id=1058; diff --git a/sql/updates/world/2014_06_17_00_world_creature.sql b/sql/updates/world/2014_06_17_00_world_creature.sql new file mode 100644 index 00000000000..d2c40d74cc7 --- /dev/null +++ b/sql/updates/world/2014_06_17_00_world_creature.sql @@ -0,0 +1,5 @@ +-- +SET @CGUID = 950; +DELETE FROM `creature` WHERE `guid` = @CGUID; +INSERT INTO `creature` (`guid`, `id`, `map`, `spawnMask`, `phaseMask`, `position_x`, `position_y`, `position_z`, `orientation`, `spawntimesecs`, `spawndist`, `MovementType`) VALUES +(@CGUID, 37552, 530, 1, 1, 11792.01, -7065.793, 25.94043, 5.009095, 120, 0, 0); diff --git a/sql/updates/world/2014_06_17_00_world_spell_group.sql b/sql/updates/world/2014_06_17_00_world_spell_group.sql new file mode 100644 index 00000000000..7d109800a42 --- /dev/null +++ b/sql/updates/world/2014_06_17_00_world_spell_group.sql @@ -0,0 +1,3 @@ + +DELETE FROM spell_group WHERE id=1059 AND spell_id=58180; +DELETE FROM spell_group WHERE id=1059 AND spell_id=58181; diff --git a/sql/updates/world/2014_06_20_00_world_spell_dbc.sql b/sql/updates/world/2014_06_20_00_world_spell_dbc.sql new file mode 100644 index 00000000000..aa390501232 --- /dev/null +++ b/sql/updates/world/2014_06_20_00_world_spell_dbc.sql @@ -0,0 +1,4416 @@ +DELETE FROM `spell_dbc` WHERE `Id` IN (19, 84, 262, 263, 278, 279, 482, 794, 1134, 1177, 1206, 1628, 1629, 1905, 2095, 2463, 3386, 4051, 4289, 4308, 4334, 4793, 4952, 5120, 5402, 5429, 5431, 5510, 5511, 5610, 5667, 6440, 6467, 6591, 6592, 6593, 6594, 7336, 7337, 7338, 7339, 7392, 7462, 8320, 8327, 8328, 8392, 8603, 8655, 8894, 9033, 9124, 9127, 9135, 9144, 9173, 9204, 9205, 9372, 9439, 9772, 10095, 10264, 10731, 10829, 10830, 10868, 11475, 11515, 11518, 11521, 11523, 11524, 11526, 11527, 11560, 11591, 11592, 11632, 11633, 11634, 11635, 11636, 11645, 11755, 11756, 11794, 11796, 11797, 11798, 11799, 11800, 11801, 11803, 11804, 11819, 11822, 11823, 11830, 11838, 11855, 11878, 11904, 11961, 11966, 12002, 12038, 12094, 12288, 12345, 12483, 12546, 12552, 12602, 12660, 12681, 12682, 12689, 12690, 12694, 12707, 12728, 12844, 12939, 12949, 13167, 13260, 13320, 13767, 13835, 13909, 14170, 14252, 14291, 14307, 14313, 14329, 14801, 14802, 15127, 15227, 15650, 15782, 16076, 16134, 16135, 16140, 16331, 16364, 16365, 16369, 16370, 16371, 16420, 16423, 16424, 16426, 16499, 16507, 16548, 16563, 16619, 16630, 16631, 16721, 16743, 16771, 17042, 17043, 17044, 17085, 17163, 17186, 17225, 17226, 17310, 17372, 17408, 17442, 17472, 17507, 17621, 17674, 17681, 17694, 17772, 17774, 18268, 18348, 18349, 18350, 18380, 18383, 18391, 18430, 18433, 18461, 18759, 18793, 18804, 18908, 18941, 18947, 18955, 18959, 18967, 18971, 18973, 18993, 18997, 19033, 19195, 19394, 19396, 19433, 19436, 19515, 19527, 19614, 19626, 19640, 19707, 19768, 19806, 19810, 19824, 19826, 19827, 19828, 19829, 19951, 20001, 20027, 20171, 20172, 20226, 20273, 20275, 20311, 20409, 20482, 20492, 20493, 20494, 20495, 20507, 20538, 20544, 20546, 20548, 20556, 20563, 20693, 20723, 20734, 20785, 20809, 20861, 20862, 20863, 21087, 21090, 21094, 21108, 21110, 21111, 21112, 21113, 21114, 21115, 21116, 21117, 21129, 21130, 21173, 21190, 21247, 21287, 21353, 21387, 21545, 21548, 21554, 21561, 21709, 21727, 21733, 21767, 21789, 21795, 21827, 21828, 21830, 21859, 21863, 21864, 21865, 21867, 21883, 21886, 21900, 21901, 21902, 21903, 21904, 21905, 21906, 21907, 21908, 21914, 21917, 21934, 21988, 21989, 22049, 22050, 22190, 22208, 22209, 22210, 22211, 22269, 22276, 22282, 22283, 22285, 22286, 22287, 22288, 22352, 22353, 22354, 22391, 22483, 22520, 22647, 22652, 22653, 22679, 22697, 22701, 22707, 22716, 22755, 22764, 22765, 22787, 22788, 22803, 22821, 22837, 22841, 22843, 22847, 22879, 22880, 22881, 22882, 22904, 22913, 22925, 22941, 22942, 22943, 22944, 22958, 22970, 23021, 23022, 23031, 23032, 23057, 23118, 23119, 23121, 23137, 23156, 23173, 23175, 23177, 23185, 23195, 23199, 23200, 23201, 23209, 23253, 23255, 23258, 23307, 23311, 23317, 23318, 23319, 23320, 23321, 23322, 23323, 23324, 23325, 23326, 23329, 23330, 23343, 23344, 23345, 23346, 23347, 23348, 23349, 23350, 23351, 23352, 23353, 23361, 23362, 23363, 23383, 23384, 23385, 23386, 23387, 23388, 23390, 23405, 23406, 23407, 23408, 23424, 23439, 23464, 23479, 23484, 23487, 23499, 23500, 23501, 23502, 23503, 23518, 23519, 23523, 23524, 23525, 23526, 23527, 23528, 23529, 23532, 23533, 23534, 23535, 23536, 23644, 23648, 23649, 23763, 23764, 23770, 23776, 23777, 23779, 23790, 23845, 23878, 23896, 23897, 23932, 23933, 23934, 23935, 23936, 23937, 23938, 23939, 23940, 23941, 23942, 23943, 23944, 23945, 23946, 23973, 23975, 23998, 23999, 24000, 24001, 24007, 24008, 24009, 24010, 24012, 24013, 24014, 24015, 24019, 24038, 24039, 24040, 24041, 24044, 24045, 24046, 24047, 24055, 24056, 24057, 24059, 24060, 24066, 24067, 24068, 24069, 24070, 24072, 24073, 24074, 24075, 24076, 24077, 24078, 24079, 24080, 24081, 24082, 24086, 24087, 24089, 24150, 24181, 24182, 24205, 24206, 24215, 24218, 24219, 24237, 24247, 24249, 24250, 24304, 24310, 24342, 24343, 24344, 24345, 24349, 24395, 24396, 24397, 24474, 24620, 24635, 24638, 24639, 24642, 24643, 24644, 24645, 24650, 24651, 24652, 24678, 24679, 24692, 24693, 24700, 24722, 24743, 24754, 24779, 24781, 24796, 24805, 24806, 24807, 24810, 24863, 24868, 24886, 24906, 24920, 24931, 24936, 24938, 24948, 24956, 24958, 24959, 25044, 25108, 25142, 25151, 25153, 25157, 25175, 25184, 25186, 25192, 25193, 25194, 25200, 25374, 25410, 25473, 25503, 25592, 25600, 25604, 25657, 25667, 25676, 25680, 25684, 25708, 25711, 25724, 25726, 25728, 25731, 25752, 25753, 25754, 25757, 25758, 25763, 25764, 25765, 25769, 25773, 25775, 25784, 25785, 25789, 25792, 25830, 25833, 25834, 25835, 25842, 25844, 25885, 25897, 25904, 25905, 25921, 25922, 25923, 25924, 25925, 25926, 25927, 25928, 25929, 25930, 25931, 25932, 25933, 25934, 25935, 25936, 25944, 25945, 25994, 25998, 26002, 26014, 26015, 26057, 26075, 26076, 26080, 26092, 26096, 26101, 26104, 26105, 26133, 26140, 26144, 26145, 26146, 26147, 26148, 26149, 26150, 26151, 26152, 26156, 26159, 26160, 26161, 26162, 26163, 26164, 26165, 26182, 26183, 26191, 26199, 26200, 26205, 26209, 26210, 26212, 26213, 26214, 26215, 26216, 26217, 26220, 26222, 26224, 26229, 26230, 26231, 26236, 26237, 26239, 26240, 26241, 26242, 26243, 26244, 26245, 26246, 26247, 26248, 26249, 26250, 26251, 26252, 26253, 26254, 26255, 26256, 26257, 26264, 26268, 26270, 26285, 26300, 26301, 26302, 26303, 26305, 26306, 26307, 26308, 26309, 26310, 26311, 26312, 26313, 26314, 26315, 26316, 26317, 26318, 26319, 26320, 26321, 26322, 26323, 26324, 26340, 26341, 26342, 26357, 26358, 26359, 26360, 26361, 26362, 26382, 26383, 26384, 26396, 26397, 26398, 26399, 26404, 26447, 26457, 26477, 26479, 26483, 26484, 26485, 26486, 26487, 26491, 26492, 26493, 26494, 26495, 26496, 26497, 26498, 26499, 26500, 26501, 26502, 26503, 26504, 26505, 26506, 26507, 26508, 26509, 26510, 26511, 26512, 26513, 26514, 26515, 26520, 26523, 26524, 26525, 26538, 26539, 26542, 26543, 26544, 26553, 26559, 26564, 26567, 26569, 26570, 26577, 26579, 26582, 26585, 26589, 26591, 26592, 26594, 26602, 26603, 26617, 26619, 26626, 26627, 26628, 26630, 26631, 26632, 26633, 26634, 26637, 26644, 26648, 26651, 26658, 26668, 26670, 26671, 26672, 26673, 26674, 26675, 26676, 26684, 26685, 26741, 26744, 26766, 26767, 26768, 26769, 26787, 26837, 26838, 26870, 26886, 26973, 26974, 27027, 27178, 27537, 27542, 27544, 27558, 27560, 27562, 27563, 27566, 27597, 27598, 27600, 27627, 27628, 27629, 27630, 27631, 27643, 27644, 27645, 27654, 27674, 27678, 27690, 27691, 27692, 27693, 27694, 27742, 27748, 27749, 27770, 27773, 27791, 27884, 27887, 27896, 27921, 27930, 27932, 27933, 27934, 27938, 27939, 27998, 27999, 28000, 28001, 28007, 28008, 28009, 28010, 28011, 28033, 28034, 28035, 28082, 28083, 28090, 28091, 28094, 28098, 28108, 28110, 28115, 28116, 28117, 28129, 28138, 28139, 28140, 28162, 28164, 28166, 28175, 28177, 28179, 28188, 28190, 28203, 28216, 28217, 28218, 28227, 28235, 28236, 28237, 28238, 28266, 28283, 28289, 28290, 28291, 28292, 28298, 28300, 28302, 28307, 28312, 28316, 28345, 28349, 28359, 28364, 28384, 28388, 28409, 28415, 28416, 28417, 28421, 28422, 28423, 28425, 28426, 28427, 28432, 28446, 28452, 28453, 28454, 28455, 28469, 28523, 28529, 28532, 28534, 28535, 28561, 28617, 28618, 28619, 28620, 28621, 28625, 28627, 28628, 28629, 28663, 28713, 28748, 28781, 28797, 28838, 28868, 28874, 28881, 28885, 28886, 28908, 28909, 28919, 28920, 28921, 28923, 28926, 28929, 28930, 28935, 28937, 28939, 28940, 28941, 28942, 28943, 28945, 28946, 28949, 28951, 28952, 28954, 28956, 28958, 28959, 28961, 28992, 28994, 29009, 29010, 29011, 29012, 29013, 29014, 29015, 29016, 29017, 29018, 29019, 29020, 29021, 29022, 29023, 29024, 29025, 29026, 29027, 29028, 29030, 29031, 29032, 29033, 29034, 29035, 29036, 29037, 29046, 29050, 29052, 29103, 29104, 29108, 29110, 29111, 29141, 29149, 29153, 29154, 29156, 29218, 29230, 29241, 29242, 29243, 29244, 29245, 29246, 29250, 29252, 29261, 29263, 29265, 29270, 29272, 29275, 29280, 29281, 29282, 29283, 29284, 29285, 29286, 29287, 29288, 29296, 29327, 29329, 29330, 29336, 29337, 29344, 29345, 29351, 29372, 29376, 29377, 29378, 29379, 29391, 29392, 29393, 29394, 29396, 29397, 29398, 29399, 29400, 29401, 29404, 29409, 29410, 29411, 29412, 29429, 29430, 29431, 29433, 29434, 29493, 29498, 29499, 29508, 29509, 29510, 29518, 29523, 29526, 29530, 29532, 29536, 29681, 29682, 29710, 29713, 29767, 29785, 29800, 29805, 29806, 29807, 29826, 29827, 29828, 29829, 29856, 29857, 29863, 29867, 29868, 29869, 29871, 29873, 29874, 29875, 29878, 29894, 29895, 29898, 29899, 29931, 29934, 29936, 29950, 29971, 29984, 29985, 29986, 29988, 29993, 29994, 29995, 29996, 29997, 30005, 30011, 30028, 30058, 30059, 30076, 30078, 30082, 30083, 30097, 30106, 30114, 30116, 30117, 30118, 30119, 30123, 30126, 30132, 30133, 30134, 30135, 30136, 30137, 30139, 30150, 30176, 30182, 30185, 30186, 30188, 30189, 30191, 30192, 30193, 30196, 30203, 30204, 30209, 30215, 30228, 30236, 30239, 30240, 30241, 30243, 30259, 30268, 30272, 30274, 30275, 30276, 30277, 30278, 30279, 30287, 30333, 30352, 30382, 30396, 30411, 30415, 30420, 30436, 30438, 30439, 30440, 30441, 30444, 30445, 30480, 30492, 30509, 30517, 30518, 30521, 30525, 30535, 30576, 30620, 30623, 30627, 30629, 30630, 30634, 30642, 30655, 30693, 30694, 30696, 30698, 30699, 30726, 30733, 30734, 30737, 30743, 30747, 30748, 30773, 30774, 30781, 30785, 30786, 30788, 30789, 30791, 30792, 30793, 30794, 30795, 30796, 30797, 30825, 30826, 30827, 30828, 30855, 30897, 30899, 30929, 30948, 30949, 30954, 30955, 30956, 30957, 30958, 30959, 30960, 30961, 30962, 30963, 30966, 30975, 30976, 30982, 30983, 30993, 30998, 31001, 31010, 31011, 31030, 31031, 31207, 31248, 31251, 31253, 31254, 31265, 31291, 31313, 31314, 31318, 31321, 31322, 31323, 31327, 31342, 31348, 31351, 31352, 31353, 31354, 31355, 31356, 31357, 31360, 31362, 31374, 31375, 31388, 31391, 31392, 31393, 31395, 31421, 31514, 31518, 31520, 31522, 31524, 31525, 31528, 31529, 31530, 31531, 31544, 31545, 31562, 31564, 31580, 31592, 31593, 31594, 31632, 31636, 31637, 31691, 31692, 31693, 31708, 31720, 31728, 31746, 31752, 31753, 31763, 31767, 31768, 31770, 31773, 31774, 31775, 31776, 31777, 31788, 31800, 31887, 31888, 31899, 31912, 31913, 31917, 31918, 31919, 31924, 31937, 31940, 31952, 31957, 31959, 31960, 31968, 31989, 31995, 32031, 32044, 32046, 32047, 32048, 32050, 32058, 32059, 32061, 32068, 32069, 32070, 32072, 32073, 32075, 32081, 32086, 32113, 32114, 32116, 32117, 32118, 32123, 32128, 32147, 32151, 32152, 32153, 32156, 32157, 32165, 32171, 32184, 32185, 32186, 32187, 32188, 32210, 32213, 32218, 32222, 32229, 32252, 32257, 32258, 32283, 32291, 32299, 32313, 32326, 32331, 32333, 32335, 32336, 32340, 32341, 32342, 32360, 32425, 32432, 32433, 32438, 32444, 32460, 32551, 32555, 32558, 32559, 32561, 32562, 32565, 32579, 32586, 32611, 32613, 32617, 32619, 32620, 32621, 32624, 32625, 32626, 32627, 32628, 32629, 32630, 32631, 32632, 32634, 32635, 32673, 32687, 32718, 32719, 32726, 32762, 32763, 32781, 32782, 32798, 32799, 32800, 32827, 32887, 32891, 32892, 32893, 32941, 32949, 32985, 33003, 33007, 33008, 33011, 33121, 33122, 33137, 33189, 33228, 33229, 33242, 33244, 33281, 33282, 33317, 33318, 33319, 33320, 33330, 33347, 33348, 33349, 33350, 33351, 33352, 33353, 33354, 33355, 33362, 33363, 33364, 33366, 33367, 33374, 33375, 33376, 33399, 33408, 33420, 33460, 33495, 33497, 33505, 33514, 33515, 33516, 33517, 33518, 33519, 33520, 33521, 33524, 33544, 33558, 33567, 33568, 33595, 33609, 33610, 33611, 33612, 33613, 33614, 33615, 33616, 33621, 33629, 33635, 33636, 33639, 33645, 33673, 33677, 33680, 33681, 33682, 33683, 33687, 33722, 33730, 33734, 33761, 33765, 33766, 33767, 33769, 33797, 33801, 33815, 33823, 33842, 33843, 33845, 33892, 33893, 33897, 33901, 33903, 33921, 33922, 33927, 33931, 33936, 33952, 34015, 34021, 34022, 34028, 34029, 34034, 34064, 34065, 34081, 34084, 34103, 34116, 34118, 34122, 34124, 34125, 34127, 34134, 34147, 34148, 34160, 34174, 34175, 34188, 34192, 34193, 34194, 34195, 34196, 34197, 34198, 34220, 34242, 34255, 34257, 34265, 34266, 34327, 34328, 34362, 34364, 34369, 34377, 34405, 34408, 34434, 34443, 34450, 34521, 34527, 34532, 34549, 34572, 34573, 34575, 34628, 34651, 34652, 34668, 34689, 34701, 34703, 34704, 34705, 34706, 34707, 34708, 34710, 34711, 34721, 34726, 34755, 34777, 34781, 34792, 34805, 34810, 34813, 34817, 34818, 34819, 34822, 34825, 34843, 34853, 34876, 34878, 34884, 34901, 34915, 34928, 34966, 34989, 34993, 34994, 34997, 35006, 35019, 35023, 35051, 35073, 35094, 35119, 35127, 35128, 35130, 35134, 35136, 35138, 35142, 35143, 35145, 35146, 35148, 35153, 35154, 35171, 35173, 35174, 35208, 35210, 35237, 35241, 35256, 35264, 35274, 35277, 35281, 35284, 35340, 35343, 35344, 35366, 35368, 35374, 35375, 35378, 35379, 35384, 35393, 35398, 35414, 35430, 35463, 35467, 35469, 35479, 35484, 35485, 35496, 35503, 35505, 35586, 35642, 35657, 35658, 35659, 35660, 35661, 35662, 35663, 35664, 35665, 35666, 35667, 35668, 35669, 35670, 35671, 35672, 35674, 35675, 35676, 35677, 35678, 35680, 35687, 35688, 35689, 35690, 35721, 35722, 35723, 35729, 35731, 35737, 35762, 35765, 35773, 35852, 35861, 35862, 35863, 35864, 35880, 35881, 35883, 35884, 35885, 35904, 35905, 35906, 35934, 35937, 35938, 35939, 36014, 36019, 36024, 36026, 36036, 36042, 36043, 36044, 36045, 36046, 36047, 36048, 36049, 36050, 36053, 36063, 36087, 36106, 36112, 36116, 36168, 36172, 36180, 36183, 36184, 36186, 36188, 36189, 36190, 36192, 36195, 36202, 36215, 36216, 36217, 36218, 36219, 36221, 36222, 36223, 36229, 36230, 36231, 36232, 36233, 36234, 36235, 36236, 36272, 36273, 36287, 36294, 36303, 36309, 36377, 36379, 36388, 36403, 36407, 36419, 36420, 36421, 36443, 36445, 36451, 36454, 36466, 36485, 36491, 36492, 36493, 36504, 36505, 36521, 36547, 36551, 36557, 36560, 36564, 36566, 36569, 36579, 36581, 36584, 36585, 36595, 36596, 36597, 36598, 36600, 36605, 36610, 36614, 36615, 36616, 36618, 36626, 36666, 36685, 36687, 36688, 36689, 36691, 36715, 36724, 36726, 36793, 36794, 36799, 36818, 36850, 36853, 36855, 36865, 36869, 36870, 36874, 36875, 36898, 36925, 36928, 36930, 36933, 36934, 36942, 36975, 36993, 37010, 37025, 37026, 37061, 37064, 37070, 37084, 37085, 37086, 37088, 37100, 37101, 37105, 37127, 37130, 37137, 37177, 37178, 37215, 37244, 37245, 37246, 37269, 37280, 37308, 37326, 37347, 37356, 37357, 37358, 37373, 37394, 37403, 37415, 37419, 37442, 37457, 37458, 37490, 37491, 37492, 37524, 37534, 37545, 37562, 37575, 37576, 37606, 37639, 37643, 37644, 37653, 37659, 37663, 37677, 37680, 37682, 37684, 37686, 37687, 37698, 37699, 37701, 37702, 37703, 37707, 37708, 37715, 37724, 37725, 37726, 37731, 37732, 37733, 37735, 37741, 37753, 37756, 37757, 37758, 37765, 37766, 37767, 37769, 37771, 37772, 37773, 37774, 37780, 37781, 37782, 37783, 37785, 37791, 37812, 37814, 37815, 37827, 37828, 37829, 37831, 37832, 37835, 37845, 37866, 37870, 37872, 37900, 37901, 37902, 37903, 37909, 37911, 37912, 37914, 37915, 37916, 37923, 37925, 37926, 37927, 37928, 37929, 37931, 37932, 37938, 37943, 37947, 37948, 37949, 37953, 37955, 37957, 37963, 37969, 37971, 37977, 38005, 38013, 38018, 38019, 38036, 38037, 38038, 38039, 38040, 38041, 38060, 38062, 38077, 38079, 38096, 38098, 38111, 38114, 38117, 38118, 38124, 38131, 38137, 38140, 38172, 38179, 38180, 38181, 38186, 38188, 38189, 38190, 38191, 38192, 38198, 38199, 38200, 38201, 38211, 38228, 38241, 38242, 38244, 38247, 38248, 38251, 38255, 38261, 38266, 38268, 38270, 38271, 38278, 38283, 38286, 38287, 38288, 38291, 38323, 38352, 38355, 38359, 38375, 38381, 38402, 38403, 38404, 38405, 38409, 38423, 38440, 38450, 38454, 38489, 38490, 38492, 38493, 38512, 38514, 38518, 38521, 38525, 38527, 38529, 38532, 38545, 38547, 38548, 38578, 38587, 38600, 38640, 38651, 38656, 38662, 38666, 38667, 38668, 38670, 38671, 38674, 38675, 38676, 38677, 38678, 38679, 38681, 38685, 38686, 38687, 38689, 38705, 38706, 38709, 38710, 38713, 38716, 38726, 38727, 38735, 38745, 38747, 38749, 38752, 38756, 38786, 38789, 38803, 38854, 38865, 38872, 38873, 38874, 38878, 38888, 38889, 38890, 38922, 38928, 38931, 38937, 38953, 38955, 38956, 38957, 38958, 38969, 38970, 38972, 38975, 38978, 38982, 38983, 38984, 39014, 39041, 39074, 39080, 39081, 39086, 39110, 39111, 39115, 39118, 39137, 39142, 39152, 39162, 39167, 39173, 39186, 39191, 39203, 39240, 39241, 39243, 39245, 39247, 39250, 39254, 39260, 39265, 39276, 39279, 39292, 39301, 39302, 39304, 39305, 39308, 39310, 39311, 39324, 39325, 39326, 39327, 39333, 39336, 39351, 39366, 39379, 39388, 39389, 39392, 39394, 39397, 39402, 39424, 39426, 39428, 39430, 39431, 39448, 39485, 39491, 39492, 39493, 39494, 39496, 39506, 39514, 39515, 39517, 39518, 39519, 39523, 39524, 39525, 39526, 39532, 39537, 39539, 39540, 39541, 39549, 39553, 39554, 39555, 39561, 39562, 39563, 39570, 39571, 39572, 39573, 39603, 39604, 39605, 39619, 39624, 39651, 39652, 39653, 39654, 39655, 39657, 39663, 39664, 39688, 39689, 39701, 39726, 39787, 39795, 39797, 39799, 39892, 39929, 39960, 40015, 40068, 40092, 40093, 40101, 40115, 40144, 40161, 40229, 40242, 40257, 40269, 40271, 40320, 40354, 40410, 40418, 40421, 40422, 40426, 40435, 40448, 40467, 40500, 40541, 40550, 40551, 40552, 40589, 40609, 40720, 40725, 40746, 40759, 40800, 40804, 40805, 40806, 40807, 40808, 40809, 40813, 40820, 40829, 40853, 40908, 40910, 40911, 40912, 40913, 40914, 40915, 40916, 40918, 40919, 40920, 40921, 40922, 40923, 40925, 40941, 40947, 40950, 40988, 40996, 41000, 41012, 41018, 41025, 41048, 41087, 41088, 41096, 41127, 41140, 41243, 41258, 41288, 41401, 41424, 41529, 41530, 41531, 41532, 41536, 41576, 41577, 41582, 41585, 41599, 41612, 41613, 41627, 41628, 41824, 41910, 41919, 41923, 41925, 41927, 41928, 41929, 41930, 41934, 41935, 41951, 41963, 41967, 41977, 41979, 41991, 41994, 41996, 41998, 42000, 42001, 42011, 42026, 42037, 42092, 42117, 42123, 42126, 42130, 42148, 42163, 42172, 42173, 42174, 42236, 42237, 42238, 42239, 42240, 42241, 42416, 42437, 42446, 42449, 42451, 42461, 42462, 42465, 42538, 42543, 42686, 42698, 42699, 42700, 42701, 42738, 42752, 42773, 42778, 42819, 42825, 42877, 42911, 42935, 42959, 42960, 42961, 42962, 42983, 42990, 43027, 43029, 43031, 43062, 43099, 43169, 43173, 43226, 43247, 43248, 43250, 43251, 43252, 43253, 43254, 43295, 43296, 43318, 43319, 43336, 43349, 43350, 43360, 43372, 43388, 43397, 43412, 43462, 43500, 43502, 43513, 43536, 43537, 43538, 43624, 43645, 43675, 43793, 43801, 43830, 43888, 43920, 43989, 44034, 44039, 44118, 44195, 44228, 44230, 44236, 44239, 44277, 44278, 44288, 44356, 44409, 44421, 44428, 44453, 44476, 44733, 44734, 44736, 44763, 44764, 44802, 44803, 44830, 44918, 44919, 44920, 44921, 44922, 44923, 44924, 44925, 44926, 44927, 44928, 44929, 44930, 44931, 44932, 44962, 44964, 44988, 44989, 44990, 44991, 44992, 44995, 44996, 45073, 45074, 45077, 45079, 45080, 45081, 45092, 45107, 45116, 45126, 45128, 45132, 45142, 45146, 45147, 45155, 45156, 45157, 45158, 45159, 45160, 45161, 45162, 45163, 45164, 45165, 45166, 45167, 45168, 45169, 45170, 45178, 45179, 45194, 45196, 45198, 45210, 45249, 45250, 45258, 45272, 45303, 45304, 45305, 45306, 45308, 45318, 45331, 45367, 45370, 45393, 45394, 45396, 45398, 45413, 45434, 45435, 45436, 45454, 45488, 45489, 45498, 45499, 45500, 45501, 45518, 45519, 45520, 45521, 45538, 45652, 45687, 45688, 45689, 45701, 45704, 45705, 45706, 45707, 45708, 45709, 45710, 45711, 45712, 45718, 45734, 45763, 45764, 45766, 45784, 45810, 45812, 45847, 45904, 45965, 45966, 46061, 46179, 46204, 46207, 46209, 46210, 46211, 46212, 46213, 46215, 46216, 46220, 46226, 46248, 46249, 46250, 46252, 46253, 46254, 46255, 46256, 46257, 46258, 46259, 46347, 46370, 46407, 46523, 46741, 46752, 46756, 46790, 46893, 46894, 46918, 46919, 46958, 46959, 46966, 46986, 47019, 47036, 47040, 47047, 47067, 47090, 47102, 47121, 47132, 47135, 47136, 47140, 47141, 47142, 47194, 47222, 47275, 47312, 47319, 47401, 47416, 47419, 47477, 47513, 47522, 47529, 47531, 47544, 47545, 47548, 47561, 47605, 47606, 47607, 47608, 47609, 47612, 47613, 47620, 47621, 47622, 47623, 47624, 47625, 47626, 47630, 47631, 47639, 47640, 47641, 47642, 47643, 47644, 47645, 47646, 47647, 47648, 47649, 47650, 47652, 47680, 47725, 47734, 47796, 47802, 47945, 47971, 47973, 48043, 48197, 48215, 48220, 48255, 48322, 48338, 48372, 48373, 48429, 48439, 48526, 48581, 48607, 48615, 48688, 48713, 48787, 48804, 48902, 48958, 49060, 49074, 49108, 49112, 49115, 49120, 49164, 49167, 49168, 49169, 49183, 49201, 49212, 49227, 49229, 49265, 49286, 49339, 49341, 49371, 49373, 49374, 49382, 49386, 49412, 49413, 49447, 49450, 49465, 49470, 49473, 49492, 49496, 49502, 49577, 49578, 49579, 49580, 49582, 49583, 49591, 49615, 49740, 49741, 49812, 49813, 49819, 49831, 49833, 49849, 49850, 49866, 49885, 49951, 49953, 50042, 50074, 50076, 50136, 50157, 50158, 50159, 50160, 50209, 50210, 50211, 50277, 50460, 50474, 50539, 50543, 50561, 50567, 50570, 50571, 50591, 50594, 50754, 50755, 50814, 50815, 50816, 50847, 50848, 50849, 50850, 50851, 50852, 50912, 50925, 50932, 50996, 51106, 51117, 51118, 51119, 51133, 51324, 51452, 51453, 51455, 51604, 51704, 51741, 51824, 51826, 51828, 51829, 51860, 51896, 51905, 51947, 51948, 52001, 52040, 52178, 52304, 52380, 52434, 52477, 52557, 52558, 52563, 52765, 52769, 52848, 52947, 53050, 53682, 53732, 53785, 54033, 54073, 54091, 54130, 54239, 54352, 54437, 54541, 54542, 55351, 55422, 55583, 55584, 55585, 55654, 55657, 55698, 55733, 55827, 55828, 55829, 55830, 55831, 55846, 55892, 55893, 55956, 55967, 55985, 55990, 56068, 56069, 56097, 56204, 56210, 56213, 56215, 56306, 56428, 56561, 56866, 57059, 57065, 57093, 57368, 57540, 57576, 57577, 57805, 57867, 57868, 57936, 57995, 57996, 57997, 57998, 57999, 58002, 58003, 58004, 58005, 58006, 58007, 58011, 58014, 58018, 58019, 58028, 58029, 58030, 58031, 58034, 58041, 58043, 58082, 58086, 58087, 58088, 58089, 58090, 58091, 58092, 58093, 58156, 58162, 58164, 58199, 58200, 58201, 58202, 58358, 58360, 58411, 58546, 58550, 58595, 58727, 58728, 58807, 58920, 58926, 58927, 58928, 58929, 58931, 58934, 59012, 59054, 59056, 59063, 59207, 59555, 59581, 59612, 59615, 59632, 59639, 59794, 59819, 59850, 59895, 59896, 59900, 59904, 59905, 60033, 60048, 60049, 60050, 60057, 60086, 60087, 60092, 60093, 60454, 60455, 60589, 60593, 60676, 60677, 60806, 60858, 60910, 60911, 60989, 60992, 61142, 61148, 61175, 61200, 61201, 61202, 61203, 61214, 61220, 61265, 61266, 61279, 61283, 61284, 61285, 61303, 61370, 61396, 61417, 61418, 61494, 61495, 61501, 61502, 61503, 61504, 61505, 61506, 61517, 61518, 61519, 61520, 61521, 61522, 61525, 61526, 61527, 61529, 61530, 61531, 61532, 61533, 61534, 61535, 61536, 61538, 61539, 61540, 61541, 61542, 61582, 61701, 61702, 61703, 61754, 61774, 61852, 61891, 61908, 61913, 61918, 61919, 61921, 61937, 61938, 61939, 61944, 61945, 61946, 61948, 61949, 61950, 62006, 62008, 62009, 62010, 62033, 62060, 62065, 62066, 62093, 62095, 62096, 62163, 62183, 62190, 62200, 62205, 62219, 62224, 62289, 62330, 62341, 62389, 62390, 62403, 62406, 62421, 62429, 62431, 62452, 62474, 62543, 62556, 62630, 62631, 62643, 62808, 62827, 62829, 62840, 62843, 62871, 62880, 62915, 62984, 62986, 63078, 63079, 63217, 63284, 63285, 63286, 63296, 63376, 63377, 63378, 63379, 63412, 63419, 63530, 63538, 63561, 63621, 63727, 63782, 63851, 63887, 63888, 63889, 63890, 63974, 64018, 64033, 64035, 64037, 64038, 64067, 64093, 64094, 64149, 64150, 64207, 64209, 64214, 64232, 64244, 64360, 64556, 64559, 64560, 64743, 64755, 64796, 64797, 64829, 64884, 64973, 64980, 64998, 65027, 65028, 65049, 65065, 65066, 65067, 65068, 65069, 65083, 65092, 65114, 65118, 65119, 65149, 65155, 65167, 65168, 65169, 65170, 65189, 65197, 65219, 65225, 65226, 65227, 65228, 65246, 65268, 65271, 65276, 65277, 65296, 65304, 65322, 65323, 65324, 65325, 65326, 65327, 65330, 65331, 65334, 65335, 65336, 65337, 65338, 65339, 65340, 65341, 65342, 65362, 65375, 65376, 65377, 65380, 65389, 65390, 65441, 65472, 65473, 65474, 65475, 65476, 65477, 65480, 65482, 65504, 65505, 65521, 65533, 65534, 65536, 65559, 65566, 65567, 65597, 65625, 65721, 65741, 65743, 65747, 65750, 65776, 65789, 65885, 65948, 65952, 65963, 65969, 66000, 66029, 66143, 66144, 66145, 66148, 66156, 66161, 66162, 66174, 66202, 66239, 66270, 66273, 66274, 66297, 66315, 66319, 66328, 66337, 66341, 66343, 66344, 66388, 66389, 66394, 66395, 66396, 66397, 66414, 66415, 66422, 66589, 66590, 66591, 66604, 66605, 66607, 66609, 66610, 66612, 66614, 66615, 66616, 66617, 66618, 66641, 66643, 66678, 66679, 66685, 66722, 66729, 66732, 66761, 66762, 66766, 66828, 66871, 66872, 66873, 66874, 66875, 66876, 66884, 66885, 66920, 66921, 66944, 66945, 66946, 66956, 66970, 66971, 66980, 66981, 66982, 66983, 66984, 66995, 66996, 66997, 66998, 67000, 67010, 67011, 67026, 67027, 67057, 67284, 67288, 67339, 67341, 67474, 67491, 67507, 67548, 67552, 67553, 67557, 67558, 67559, 67561, 67562, 67563, 67580, 67668, 67783, 67850, 67871, 67872, 68006, 68075, 68260, 68273, 68274, 68275, 68276, 68288, 68373, 68390, 68426, 68447, 68448, 68449, 68450, 68453, 68463, 68464, 68465, 68484, 68485, 68500, 68517, 68518, 68519, 68520, 68521, 68523, 68575, 68590, 68657, 68662, 68678, 68684, 68685, 68686, 68692, 68712, 68772, 68777, 68807, 68808, 68809, 68811, 68814, 68833, 68928, 68941, 68942, 68951, 68952, 68972, 69001, 69014, 69061, 69082, 69083, 69093, 69102, 69116, 69117, 69121, 69142, 69173, 69175, 69176, 69183, 69229, 69231, 69234, 69239, 69287, 69327, 69351, 69357, 69365, 69429, 69430, 69458, 69514, 69547, 69625, 69631, 69643, 69686, 69694, 69786, 69807, 69864, 69868, 69895, 69932, 69983, 70023, 70030, 70031, 70033, 70034, 70055, 70067, 70068, 70073, 70076, 70077, 70094, 70096, 70125, 70159, 70170, 70202, 70257, 70258, 70264, 70317, 70328, 70370, 70373, 70375, 70376, 70377, 70378, 70379, 70467, 70489, 70490, 70515, 70647, 70683, 70709, 70722, 70815, 70819, 70820, 70891, 70987, 70989, 71156, 71190, 71206, 71223, 71245, 71256, 71282, 71287, 71290, 71294, 71375, 71382, 71384, 71394, 71395, 71444, 71517, 71521, 71666, 71667, 71668, 71669, 71670, 71671, 71672, 71673, 71674, 71675, 71676, 71677, 71678, 71679, 71680, 71681, 71890, 71894, 71896, 71907, 71916, 71920, 71998, 72049, 72071, 72074, 72075, 72118, 72119, 72291, 72300, 72325, 72467, 72526, 72532, 72533, 72562, 72564, 72603, 72644, 72699, 72779, 72826, 72827, 72828, 72845, 72877, 72893, 72926, 72945, 72946, 72947, 72955, 72969, 73045, 73047, 73048, 73049, 73050, 73051, 73052, 73053, 73054, 73055, 73056, 73057, 73083, 73088, 73089, 73091, 73092, 73095, 73096, 73098, 73114, 73115, 73126, 73138, 73139, 73140, 73146, 73152, 73157, 73160, 73161, 73168, 73177, 73178, 73202, 73218, 73219, 73221, 73252, 73342, 73414, 73420, 73421, 73423, 73435, 73436, 73451, 73452, 73454, 73480, 73483, 73484, 73513, 73533, 73553, 73567, 73584, 73585, 73594, 73596, 73598, 73618, 73653, 73656, 73657, 73663, 73665, 73666, 73675, 73676, 73697, 73707, 73713, 73717, 73732, 73743, 73750, 73751, 73752, 73753, 73754, 73842, 73849, 73850, 73870, 73875, 73885, 73895, 73910, 73915, 73957, 73962, 73965, 73968, 74026, 74027, 74063, 74082, 74102, 74125, 74152, 74167, 74210, 74306, 74324, 74328, 74329, 74330, 74397, 74400, 74446, 74479, 74487, 74488, 74510, 74512, 74576, 74577, 74579, 74581, 74582, 74583, 74584, 74585, 74586, 74612, 74615, 74622, 74623, 74624, 74626, 74627, 74631, 74638, 74680, 74681, 74682, 74683, 74687, 74688, 74689, 74696, 74703, 74714, 74715, 74775, 74776, 74777, 74778, 74779, 74782, 74784, 74816, 74818, 74821, 74822, 74823, 74824, 74839, 74860, 74887, 74923, 75012, 75027, 75032, 75034, 75065, 75069, 75074, 75084, 75101, 75130, 75131, 75132, 75162, 75170, 75173, 75176, 75191, 75193, 75231, 75240, 75273, 75285, 75287, 75371, 75507, 75517, 75549, 75550, 75568, 75612, 75621, 75628, 75646, 75688, 75695, 75696, 75708, 75709, 75748, 75749, 75758, 75769, 75771, 75778, 75791, 75796, 75806, 75837, 75838, 75839, 75841, 75853, 75855, 75880, 75881, 75914, 75944, 75977, 75979, 75980, 75985, 75987, 75995, 75997, 76000, 76009, 76019, 76023, 76049, 76050, 76073, 76087, 76112, 76163, 76169, 76199, 76210, 76224, 76243, 76254, 76257, 76323, 76358, 76360, 76374, 76383, 76388, 76389, 76407, 76408, 76475, 76476, 76480, 76481, 76495, 76549, 76552, 76554, 76556, 76564, 76571, 76595, 76601, 76614, 76660, 76661, 76662, 76691, 76702, 76704, 76705, 76710, 76737, 76741, 76760, 76763, 76767, 76769, 76805, 76809, 76836, 76849, 76875, 76983, 77019, 77028, 77029, 77031, 77046, 77047, 77048, 77051, 77062, 77068, 77208, 77210, 77221, 77232, 77240, 77242, 77271, 77272, 77274, 77315, 77318, 77320, 77323, 77328, 77331, 77356, 77381, 77407, 77410, 77411, 77462, 77467, 77479, 77482, 77501, 77504, 77536, 77537, 77538, 77539, 77540, 77547, 77560, 77561, 77562, 77580, 77582, 77596, 77608, 77620, 77622, 77646, 77649, 77655, 77656, 77658, 77659, 77692, 77693, 77694, 77700, 77701, 77702, 77746, 77748, 77752, 77755, 77757, 77765, 77766, 77776, 77779, 77781, 77793, 77794, 77795, 77796, 77797, 77798, 77800, 77817, 77818, 77829, 77830, 77881, 77884, 77898, 77909, 77922, 77924, 77926, 77952, 77953, 77954, 77955, 77956, 77957, 77960, 77961, 77964, 77972, 77983, 77992, 77994, 77996, 78013, 78015, 78016, 78029, 78046, 78048, 78062, 78071, 78072, 78073, 78074, 78089, 78093, 78132, 78138, 78139, 78142, 78202, 78204, 78228, 78229, 78244, 78245, 78316, 78325, 78328, 78364, 78373, 78394, 78421, 78422, 78492, 78493, 78524, 78527, 78533, 78543, 78544, 78546, 78549, 78550, 78551, 78553, 78560, 78575, 78576, 78577, 78579, 78580, 78581, 78582, 78583, 78584, 78585, 78586, 78588, 78589, 78590, 78591, 78592, 78593, 78594, 78595, 78596, 78597, 78600, 78601, 78602, 78611, 78614, 78624, 78629, 78636, 78637, 78665, 78669, 78687, 78693, 78719, 78727, 78728, 78734, 78735, 78736, 78737, 78738, 78756, 78757, 78761, 78763, 78765, 78769, 78781, 78784, 78785, 78788, 78789, 78790, 78791, 78792, 78793, 78795, 78796, 78797, 78798, 78800, 78812, 78813, 78814, 78815, 78816, 78821, 78822, 78831, 78845, 78876, 78877, 78878, 78879, 78880, 78881, 78882, 78883, 78884, 78885, 78886, 78887, 78888, 78889, 78890, 78892, 78893, 78908, 78910, 78917, 78918, 78927, 78938, 78940, 78951, 78953, 78976, 79001, 79004, 79005, 79006, 79007, 79016, 79017, 79018, 79022, 79027, 79028, 79029, 79030, 79031, 79032, 79033, 79034, 79037, 79038, 79039, 79052, 79055, 79057, 79058, 79060, 79061, 79062, 79063, 79065, 79066, 79077, 79078, 79079, 79080, 79081, 79082, 79089, 79090, 79095, 79097, 79098, 79099, 79100, 79101, 79102, 79104, 79105, 79106, 79107, 79108, 79110, 79112, 79114, 79119, 79120, 79121, 79122, 79123, 79124, 79125, 79126, 79128, 79131, 79132, 79133, 79135, 79141, 79146, 79148, 79150, 79151, 79154, 79165, 79189, 79204, 79243, 79264, 79268, 79270, 79317, 79326, 79334, 79342, 79394, 79439, 79459, 79460, 79462, 79463, 79464, 79524, 79530, 79543, 79562, 79578, 79579, 79611, 79621, 79637, 79643, 79654, 79689, 79691, 79722, 79805, 79842, 79906, 79959, 79979, 79980, 79981, 79982); +INSERT INTO `spell_dbc` (`Id`, `Dispel`, `Mechanic`, `Attributes`, `AttributesEx`, `AttributesEx2`, `AttributesEx3`, `AttributesEx4`, `AttributesEx5`, `AttributesEx6`, `AttributesEx7`, `Stances`, `StancesNot`, `Targets`, `CastingTimeIndex`, `AuraInterruptFlags`, `ProcFlags`, `ProcChance`, `ProcCharges`, `MaxLevel`, `BaseLevel`, `SpellLevel`, `DurationIndex`, `RangeIndex`, `StackAmount`, `EquippedItemClass`, `EquippedItemSubClassMask`, `EquippedItemInventoryTypeMask`, `Effect1`, `Effect2`, `Effect3`, `EffectDieSides1`, `EffectDieSides2`, `EffectDieSides3`, `EffectRealPointsPerLevel1`, `EffectRealPointsPerLevel2`, `EffectRealPointsPerLevel3`, `EffectBasePoints1`, `EffectBasePoints2`, `EffectBasePoints3`, `EffectMechanic1`, `EffectMechanic2`, `EffectMechanic3`, `EffectImplicitTargetA1`, `EffectImplicitTargetA2`, `EffectImplicitTargetA3`, `EffectImplicitTargetB1`, `EffectImplicitTargetB2`, `EffectImplicitTargetB3`, `EffectRadiusIndex1`, `EffectRadiusIndex2`, `EffectRadiusIndex3`, `EffectApplyAuraName1`, `EffectApplyAuraName2`, `EffectApplyAuraName3`, `EffectAmplitude1`, `EffectAmplitude2`, `EffectAmplitude3`, `EffectMultipleValue1`, `EffectMultipleValue2`, `EffectMultipleValue3`, `EffectMiscValue1`, `EffectMiscValue2`, `EffectMiscValue3`, `EffectMiscValueB1`, `EffectMiscValueB2`, `EffectMiscValueB3`, `EffectTriggerSpell1`, `EffectTriggerSpell2`, `EffectTriggerSpell3`, `EffectSpellClassMaskA1`, `EffectSpellClassMaskA2`, `EffectSpellClassMaskA3`, `EffectSpellClassMaskB1`, `EffectSpellClassMaskB2`, `EffectSpellClassMaskB3`, `EffectSpellClassMaskC1`, `EffectSpellClassMaskC2`, `EffectSpellClassMaskC3`, `MaxTargetLevel`, `SpellFamilyName`, `SpellFamilyFlags1`, `SpellFamilyFlags2`, `SpellFamilyFlags3`, `MaxAffectedTargets`, `DmgClass`, `PreventionType`, `DmgMultiplier1`, `DmgMultiplier2`, `DmgMultiplier3`, `AreaGroupId`, `SchoolMask`, `Comment`) VALUES +(19, 0, 0, 208, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'SWORDSPECIAL (DND)'), +(84, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Low Health'), +(262, 0, 0, 192, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'EXOTIC1H (DND)'), +(263, 0, 0, 192, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'EXOTIC2H (DND)'), +(278, 0, 0, 384, 32768, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 'Automation Mechanic Immunity A'), +(279, 0, 0, 384, 32768, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 'Automation Mechanic Immunity B'), +(482, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Reset'), +(794, 0, 0, 384, 524288, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Initialize Images'), +(1134, 0, 0, 16, 1024, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 56, 56, 8, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 1, 'zzOldInner Rage'), +(1177, 0, 0, 536871296, 1160, 536870912, 277020672, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 'Twin Empathy'), +(1206, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 'Dummy Proc'), +(1628, 0, 0, 384, 32768, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 'Automation Mechanic Immunity C'), +(1629, 0, 0, 384, 32768, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 'Automation Mechanic Immunity D'), +(1905, 0, 0, 8388864, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Share Powers'), +(2095, 0, 0, 208, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Stance Rage (+3 Off/Def)'), +(2463, 0, 0, 384, 32768, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 'Automation Mechanic Immunity E'), +(3386, 0, 0, 192, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Spears'), +(4051, 0, 0, 262608, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Explosive Sheep Passive'), +(4289, 0, 0, 536871296, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Hell Hath a Fury: Hawinni Dummy'), +(4308, 0, 0, 384, 268435456, 0, 0, 65, 0, 1024, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Banshee''s Revenge: Overthane''s Immunity'), +(4334, 0, 0, 538968448, 1160, 67108865, 64, 2049, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Banshee''s Revenge: The Lich King Despawns'), +(4793, 0, 0, 2843738112, 1056, 268976133, 1245184, 8388736, 393224, 4100, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Wintergrasp PvP Drop - 1 Stack'), +(4952, 0, 0, 67109120, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 28, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Helcular''s Ward'), +(5120, 0, 0, 0, 524288, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Yellow Elevator Port'), +(5402, 0, 0, 256, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 5, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Gazban Transform'), +(5429, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Slaves to Saronite: Saronite Mine Slave - On Gossip'), +(5431, 0, 0, 536871168, 1024, 4, 0, 0, 2097152, 65536, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Slaves to Saronite: Jump A'), +(5510, 0, 0, 681574784, 1160, 67108869, 268435520, 2177, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Banshee''s Revenge: Despawn All Units'), +(5511, 0, 0, 536871296, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Banshee''s Revenge: Overthane Attack on Resume Combat'), +(5610, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Choose Power'), +(5667, 0, 0, 67109072, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Bogling Passive'), +(6440, 0, 0, 208, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Smite''s Dual Wield Passive'), +(6467, 0, 0, 67109264, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 25, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Unarmed Woodcutter'), +(6591, 0, 0, 208, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Stance Rage Effect (+3)'), +(6592, 0, 0, 208, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Stance Rage (+5 Def)'), +(6593, 0, 0, 208, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Stance Rage (+5 Off)'), +(6594, 0, 0, 208, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Stance Rage Effect (+5)'), +(7336, 0, 0, 134217856, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 36, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Food Idle'), +(7337, 0, 0, 134217856, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 65, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Food Idle'), +(7338, 0, 0, 134217856, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 39, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Food Idle'), +(7339, 0, 0, 134217856, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 66, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Food Idle'), +(7392, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Find Brother'), +(7462, 0, 0, 538968448, 1160, 67108869, 268435520, 2176, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Not-So-Honorable Combat: Lady Nightswood to Possessed Iskalder'), +(8320, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 'Hex of Ravenclaw Removal'), +(8327, 0, 0, 150995392, 32, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Suicide'), +(8328, 0, 0, 150995392, 32, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Suicide'), +(8392, 0, 0, 384, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Hyper Coward'), +(8603, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Thistlefur Death'), +(8655, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Riverpaw Death'), +(8894, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Stromgarde Death'), +(9033, 0, 0, 134480272, 268436480, 268435456, 262144, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Shapeshift Form Effect'), +(9124, 0, 0, 192, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Buckler'), +(9127, 0, 0, 256, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Transform: Peasant w/ wood'), +(9135, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Choose Random Powers'), +(9144, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Crushridge Death'), +(9173, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Anubisath Guardian AOE'), +(9204, 0, 0, 384, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Hate to Zero'), +(9205, 0, 0, 464, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Hate to Zero'), +(9372, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Bear Enters Auberdine'), +(9439, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Bear Captured in Trap'), +(9772, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Defias Tower I'), +(10095, 0, 0, 464, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Hate to Zero'), +(10264, 0, 0, 400, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Archaedas Dies'), +(10731, 0, 0, 128, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Awaken Zul''Farrak Zombie'), +(10829, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Mechano-Frostwalker Revert'), +(10830, 0, 0, 400, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 'Mechano-Frostwalker Revert Passive'), +(10868, 0, 0, 2496, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 'Frost Vulnerable'), +(11475, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Stormwind City Guard'), +(11515, 0, 0, 65792, 268435456, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 3, 134, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 'Lordaeron Tower'), +(11518, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Activate Bomb 01'), +(11521, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Activate Bomb 02'), +(11523, 0, 0, 256, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Activate Bomb 03'), +(11524, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Activate Bomb 04'), +(11526, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Activate Bomb 05'), +(11527, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Activate Bomb 06'), +(11560, 0, 0, 328080, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Inner Rage'), +(11591, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Share Twin Information'), +(11592, 0, 0, 545259904, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Twin Empathy'), +(11632, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Orgrimmar Grunt'), +(11633, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Thunderbluff Brave'), +(11634, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Darnassus Sentinel'), +(11635, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Ironforge Mountaineer'), +(11636, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Undercity Deathguard'), +(11645, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Mulgore Protector'), +(11755, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Sen''jin Guardian'), +(11756, 0, 0, 384, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 4, 12, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Gordunni chest (COBALT)'), +(11794, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Horde Guard'), +(11796, 0, 0, 256, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Activate Bomb 01B'), +(11797, 0, 0, 256, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Activate Bomb 02B'), +(11798, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Activate Bomb 03B'), +(11799, 0, 0, 256, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Activate Bomb 04B'), +(11800, 0, 0, 256, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Activate Bomb 05B'), +(11801, 0, 0, 256, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Activate Bomb 06B'), +(11803, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Astranaar Sentinel'), +(11804, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Auberdine Sentinel'), +(11819, 0, 0, 256, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Mechanized Sentries'), +(11822, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Silverpine Deathguard'), +(11823, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Thelsamar Mountaineer'), +(11830, 0, 0, 464, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Walking Bomb Passive Proc (100%)'), +(11838, 0, 0, 464, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Hate to Zero'), +(11855, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Protector of the People'), +(11878, 0, 0, 256, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 11, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Capture Treant Despawn'), +(11904, 0, 0, 256, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Sandfury Slave'), +(11961, 0, 0, 464, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 'Curse of the Dreadmaul'), +(11966, 0, 0, 2512, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 'Fire Shield'), +(12002, 0, 0, 464, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 4, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 'Plague Cloud'), +(12038, 0, 0, 464, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 'Dark Plague'), +(12094, 0, 0, 464, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 'Volatile Infection'), +(12288, 0, 0, 262352, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 16, 100, 0, 0, 0, 1, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'zzOLD Improved Pummel'), +(12345, 0, 0, 696254464, 1056, 540677, 269484032, 128, 393736, 16781312, 65536, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 13, 0, -1, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 4, 'Morgan Test'), +(12483, 0, 0, 67109120, 268435456, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 8, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 'Hex of Jammal''an'), +(12546, 0, 0, 464, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 'Spitelash'), +(12552, 0, 0, 464, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 4, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 'Cripple'), +(12602, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'The Way to His Heart...: Create Tasty Reef Fish'), +(12660, 0, 0, 400, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Banish Frost Spectres'), +(12681, 0, 0, 262352, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Gemology - Copper (DND)'), +(12682, 0, 0, 262352, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Gemology - Tin (DND)'), +(12689, 0, 0, 262352, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Gemology - Iron (DND)'), +(12690, 0, 0, 262352, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Gemology - Mithril (DND)'), +(12694, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 6, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Idol Room Spawn A'), +(12707, 0, 0, 262352, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 16, 100, 0, 0, 0, 1, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'zzOLD Improved Pummel'), +(12728, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Belnistrasz Dummy'), +(12844, 0, 0, 384, 268533760, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 37, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 'Remove All Effects'), +(12939, 0, 0, 400, 268436480, 4, 196608, 0, 512, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 64, 'Polymorph Heal Effect'), +(12949, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 6, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Idol Room Spawn End Boss'), +(13167, 0, 0, 150995392, 32, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Suicide'), +(13260, 0, 0, 262608, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Pet Bomb Passive'), +(13320, 0, 0, 448, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Malfunction'), +(13767, 0, 0, 464, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Hate to Zero'), +(13835, 0, 0, 537198976, 32768, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 27, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 'Unkillable Off'), +(13909, 0, 0, 256, 0, 128, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Create Elemental Totem'), +(14170, 0, 0, 464, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 69648, 100, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'zzOLDImproved Expose Armor'), +(14252, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 5, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Enraged Felbat'), +(14291, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 36, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Anubisath Guardian Targeted'), +(14307, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 5, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Enraged Wyvern'), +(14313, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 5, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Enraged Gryphon'), +(14329, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 5, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Enraged Hippogryph'), +(14801, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 6, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Idol Room Spawn C'), +(14802, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 6, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Idol Room Spawn B'), +(15127, 0, 0, 448, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Burning Imp'), +(15227, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 39, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Clear Boom Bot Aura'), +(15650, 0, 0, 464, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 'Flame Attack Visual'), +(15782, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Frostsaber Cub Death'), +(16076, 0, 0, 448, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'War Master Voone Unarmed Passive'), +(16134, 0, 0, 272, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Blackhand Summoner Presummon Emote'), +(16135, 0, 0, 272, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Blackhand Summoner Presummon Emote'), +(16140, 0, 0, 464, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Exploding Cadaver'), +(16331, 0, 0, 464, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Incorporeal Defense'), +(16364, 0, 0, 256, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Rend Calls For Buff'), +(16365, 0, 0, 256, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Rend Calls For Buff'), +(16369, 0, 0, 400, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 5, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Bugs'), +(16370, 0, 0, 400, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 5, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Maggots'), +(16371, 0, 0, 400, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 5, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Rats'), +(16420, 0, 0, 272, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 327, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Crypt Scarab Confuse'); +INSERT INTO `spell_dbc` (`Id`, `Dispel`, `Mechanic`, `Attributes`, `AttributesEx`, `AttributesEx2`, `AttributesEx3`, `AttributesEx4`, `AttributesEx5`, `AttributesEx6`, `AttributesEx7`, `Stances`, `StancesNot`, `Targets`, `CastingTimeIndex`, `AuraInterruptFlags`, `ProcFlags`, `ProcChance`, `ProcCharges`, `MaxLevel`, `BaseLevel`, `SpellLevel`, `DurationIndex`, `RangeIndex`, `StackAmount`, `EquippedItemClass`, `EquippedItemSubClassMask`, `EquippedItemInventoryTypeMask`, `Effect1`, `Effect2`, `Effect3`, `EffectDieSides1`, `EffectDieSides2`, `EffectDieSides3`, `EffectRealPointsPerLevel1`, `EffectRealPointsPerLevel2`, `EffectRealPointsPerLevel3`, `EffectBasePoints1`, `EffectBasePoints2`, `EffectBasePoints3`, `EffectMechanic1`, `EffectMechanic2`, `EffectMechanic3`, `EffectImplicitTargetA1`, `EffectImplicitTargetA2`, `EffectImplicitTargetA3`, `EffectImplicitTargetB1`, `EffectImplicitTargetB2`, `EffectImplicitTargetB3`, `EffectRadiusIndex1`, `EffectRadiusIndex2`, `EffectRadiusIndex3`, `EffectApplyAuraName1`, `EffectApplyAuraName2`, `EffectApplyAuraName3`, `EffectAmplitude1`, `EffectAmplitude2`, `EffectAmplitude3`, `EffectMultipleValue1`, `EffectMultipleValue2`, `EffectMultipleValue3`, `EffectMiscValue1`, `EffectMiscValue2`, `EffectMiscValue3`, `EffectMiscValueB1`, `EffectMiscValueB2`, `EffectMiscValueB3`, `EffectTriggerSpell1`, `EffectTriggerSpell2`, `EffectTriggerSpell3`, `EffectSpellClassMaskA1`, `EffectSpellClassMaskA2`, `EffectSpellClassMaskA3`, `EffectSpellClassMaskB1`, `EffectSpellClassMaskB2`, `EffectSpellClassMaskB3`, `EffectSpellClassMaskC1`, `EffectSpellClassMaskC2`, `EffectSpellClassMaskC3`, `MaxTargetLevel`, `SpellFamilyName`, `SpellFamilyFlags1`, `SpellFamilyFlags2`, `SpellFamilyFlags3`, `MaxAffectedTargets`, `DmgClass`, `PreventionType`, `DmgMultiplier1`, `DmgMultiplier2`, `DmgMultiplier3`, `AreaGroupId`, `SchoolMask`, `Comment`) VALUES +(16423, 0, 0, 464, 0, 0, 524288, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Crypt Scarab Suicide Passive'), +(16424, 0, 0, 272, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Crypt Scarab Suicide'), +(16426, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Alien kill Sire'), +(16499, 0, 0, 67109120, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 30, 3, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Thistle Kinship'), +(16507, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Corrupted Saber Trap'), +(16548, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Goretooth''s Orders'), +(16563, 0, 0, 192, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Drowning Death'), +(16619, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 6, 4, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Quest - Temporal Parasite Death Summon'), +(16630, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 6, 4, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Quest - Temporal Parasite Summon #2'), +(16631, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 6, 4, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Quest - Temporal Parasite Summon #3'), +(16721, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 28, 12, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Finkle Generator'), +(16743, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Finkle Questgiver On'), +(16771, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Warosh Tickle'), +(17042, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Master Swordsmith'), +(17043, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Master Axesmith'), +(17044, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Master Hammersmith'), +(17085, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Player Released Thistle Bear'), +(17163, 0, 0, 256, 1024, 4194304, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 34, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Unsummon Mechanical Yeti'), +(17186, 0, 0, 256, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Ras Becomes a Boy!'), +(17225, 0, 0, 128, 64, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Upgrade Zigguraut'), +(17226, 0, 0, 128, 64, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Upgrade Zigguraut'), +(17310, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 3, 7, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Darrowshire Spirit'), +(17372, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Egan''s Blaster Effect'), +(17408, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 3, 96, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Freed Soul'), +(17442, 0, 0, 384, 268436480, 0, 131072, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Air Bubbles'), +(17472, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 'Death Pact'), +(17507, 0, 0, 448, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Passive Root'), +(17621, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Reputation - Caer Darrow'), +(17674, 0, 0, 448, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Immune: Physical'), +(17681, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Reputation - Caer Darrow'), +(17694, 0, 0, 256, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 4, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Darrowshire Poltergeist (DND)'), +(17772, 0, 0, 384, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 28, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Spread'), +(17774, 0, 0, 384, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 31, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Spread'), +(18268, 0, 0, 2512, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 'Fire Shield'), +(18348, 0, 0, 256, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Poltergeist Periodic Schedule (DND)'), +(18349, 0, 0, 256, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Poltergeist Periodic (DND)'), +(18350, 0, 0, 384, 268436480, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Dummy Trigger'), +(18380, 0, 0, 256, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Poltergeist Despawn (DND)'), +(18383, 0, 0, 256, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Poltergeist Despawn Schedule (DND)'), +(18391, 0, 0, 384, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Speed Burst'), +(18430, 0, 0, 272, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Dragon Hover'), +(18433, 0, 0, 384, 268435456, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Dummy Trigger 2'), +(18461, 0, 0, 262544, 268600320, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 36, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Vanish Purge'), +(18759, 0, 0, 536871168, 0, 67108868, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 'Swallow Soul'), +(18793, 0, 0, 256, 268436480, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Kodo Kombobulator'), +(18804, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 'Eruption'), +(18908, 0, 0, 256, 268435456, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Dissipate Sand Storm'), +(18941, 0, 0, 262416, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Double Attack'), +(18947, 0, 0, 536871168, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 'Inferno Dummy Effect'), +(18955, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Ranshalla''s Torch Trap'), +(18959, 0, 0, 448, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Rat Aggro Clear'), +(18967, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Rat Aggro Clear'), +(18971, 0, 0, 256, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Message to Grand Inquisitor'), +(18973, 0, 0, 256, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Tirion Message to Isillien'), +(18993, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Ranshalla''s Altar Trap'), +(18997, 0, 0, 256, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Tirion Message to Isillien 002'), +(19033, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Blighthound Call'), +(19195, 0, 0, 464, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Hate to 90%'), +(19394, 0, 0, 384, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 4, 12, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Gordunni chest (JUNK)'), +(19396, 0, 0, 464, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Incinerate'), +(19433, 0, 0, 262608, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Tamed Pet Passive (DND)'), +(19436, 0, 0, 384, 268435456, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Lava Bomb Despawn'), +(19515, 0, 0, 0, 0, 4, 268435456, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Frenzy'), +(19527, 0, 0, 256, 136, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Majordomo Teleport'), +(19614, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Despawn Caster'), +(19626, 0, 0, 2512, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 'Fire Shield'), +(19640, 0, 0, 464, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Pummel'), +(19707, 0, 0, 384, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Hate to 50%'), +(19768, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Gizelton Caravan'), +(19806, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Injure Self'), +(19810, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Injure Self on Spawn'), +(19824, 0, 0, 256, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 64, 'Summon Blackwing Legionnaires'), +(19826, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Blackwing Legionnaire'), +(19827, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Blackwing Mage'), +(19828, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Death Talon Dragonspawn'), +(19829, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 64, 'Summon Guardian of Nefarian'), +(19951, 0, 0, 128, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Pacify Self'), +(20001, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Mercutio Horse Dummy DND'), +(20027, 0, 0, 384, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Immune Effect: Taunt'), +(20171, 0, 0, 320, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 64, 'Summon Onyxian Whelps'), +(20172, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Onyxian Whelp'), +(20226, 0, 0, 256, 268435456, 0, 131072, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Aggro'), +(20273, 0, 0, 256, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 'Windsor''s Inspriation DND'), +(20275, 0, 0, 262400, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 'Windsor''s Inspiration Effect DND'), +(20311, 0, 0, 0, 0, 4, 256, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Player'), +(20409, 0, 0, 256, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Lady Prestor Transforms DND'), +(20482, 0, 0, 128, 268468224, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Firesworn Eruption Trigger'), +(20492, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Resonite Crystal'), +(20493, 0, 0, 384, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 6, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'zzOLDRitual of Doom Trigger Effect'), +(20494, 0, 0, 128, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 9, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Lava Bomb 1'), +(20495, 0, 0, 128, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 3, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Lava Bomb 2'), +(20507, 0, 0, 536871312, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 36, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Magmakin Confuse'), +(20538, 0, 0, 536871056, 268436616, 4, 131072, 0, 393224, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Hate to Zero'), +(20544, 0, 0, 144, 268468224, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 39, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Attract Rager'), +(20546, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Infernal Spawn Trigger'), +(20548, 0, 0, 536871040, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 27, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Root Self'), +(20556, 0, 0, 208, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Golemagg''s Trust'), +(20563, 0, 0, 208, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Elemental Fire'), +(20693, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Lost Amulet'), +(20723, 0, 0, 0, 0, 4, 268435456, 0, 0, 4096, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Tower Kill Credit'), +(20734, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 3, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Black Arrow'), +(20785, 0, 0, 262528, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 30, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Charm Tolerance (DND)'), +(20809, 0, 0, 208, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 'Vampiric Aura'), +(20861, 0, 0, 384, 64, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Muglash Waiting'), +(20862, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Muglash Despawn'), +(20863, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Muglash''s Brazier Trap'), +(21087, 0, 0, 256, 268468360, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 30, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Immunity'), +(21090, 0, 0, 256, 268435456, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 30, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Champion'), +(21094, 0, 0, 384, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Separation Anxiety'), +(21108, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Sons of Flame'), +(21110, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 30, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Son of Flame B'), +(21111, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 30, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Son of Flame C'), +(21112, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 30, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Son of Flame D'), +(21113, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 30, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Son of Flame E'), +(21114, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 30, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Son of Flame F'), +(21115, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 30, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Son of Flame G'), +(21116, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 30, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Son of Flame H'), +(21117, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 30, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Son of Flame A'), +(21129, 0, 0, 256, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Aura of Battle'), +(21130, 0, 0, 256, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Grip of Command'), +(21173, 0, 0, 8388880, 268435456, 1, 1048576, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Aerie Gryphon Hover'), +(21190, 0, 0, 384, 268435456, 5, 1048576, 128, 8, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Aerie Gryphon Speed Buff'), +(21247, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Wintergrasp Shutdown'), +(21287, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 145, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Conjure Lokholar the Usurper DND'), +(21353, 0, 0, 256, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Mount Speed Buff DND'), +(21387, 0, 0, 320, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 'Melt Weapon'), +(21545, 0, 0, 8388864, 0, 1, 1048576, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 347, 12, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Conjure Ryson''s All Seeing Eye DND'), +(21548, 0, 0, 256, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Spore Trees'), +(21554, 0, 0, 256, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Ryson''s All Seeing Eye'), +(21561, 0, 0, 384, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Healer Champion'), +(21709, 0, 0, 256, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Spore Tree'), +(21727, 0, 0, 0, 0, 4, 256, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Player'), +(21733, 0, 0, 208, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Spore Tree Trigger'), +(21767, 0, 0, 384, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Kill Trees'), +(21789, 0, 0, 464, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Hate to Half'), +(21795, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Frostwolf Muzzle Effect DND'), +(21827, 0, 0, 256, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 6, 3, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Frostwolf Aura DND'), +(21828, 0, 0, 256, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 14, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Frostwolf Aura Dummy Dispel'), +(21830, 0, 0, 256, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 14, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Frostwolf Despawn Spell'), +(21859, 0, 0, 536871056, 268468224, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Ragnaros Submerge Effect'), +(21863, 0, 0, 256, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 6, 3, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Alterac Ram Aura DND'), +(21864, 0, 0, 256, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 14, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Alterac Ram Aura Dummy Dispel DND'), +(21865, 0, 0, 256, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 14, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Alterac Ram Despawn Spell'), +(21867, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Alterac Ram Collar Effect DND'), +(21883, 0, 0, 384, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 225, 7, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Healed Celebrian Vine'), +(21886, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 27, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Lava Burst A'), +(21900, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 27, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Lava Burst B'), +(21901, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 27, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Lava Burst C'), +(21902, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 27, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Lava Burst D'), +(21903, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 27, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Lava Burst E'), +(21904, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 27, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Lava Burst F'), +(21905, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 27, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Lava Burst G'), +(21906, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 27, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Lava Burst H'), +(21907, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 27, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Lava Burst I'); +INSERT INTO `spell_dbc` (`Id`, `Dispel`, `Mechanic`, `Attributes`, `AttributesEx`, `AttributesEx2`, `AttributesEx3`, `AttributesEx4`, `AttributesEx5`, `AttributesEx6`, `AttributesEx7`, `Stances`, `StancesNot`, `Targets`, `CastingTimeIndex`, `AuraInterruptFlags`, `ProcFlags`, `ProcChance`, `ProcCharges`, `MaxLevel`, `BaseLevel`, `SpellLevel`, `DurationIndex`, `RangeIndex`, `StackAmount`, `EquippedItemClass`, `EquippedItemSubClassMask`, `EquippedItemInventoryTypeMask`, `Effect1`, `Effect2`, `Effect3`, `EffectDieSides1`, `EffectDieSides2`, `EffectDieSides3`, `EffectRealPointsPerLevel1`, `EffectRealPointsPerLevel2`, `EffectRealPointsPerLevel3`, `EffectBasePoints1`, `EffectBasePoints2`, `EffectBasePoints3`, `EffectMechanic1`, `EffectMechanic2`, `EffectMechanic3`, `EffectImplicitTargetA1`, `EffectImplicitTargetA2`, `EffectImplicitTargetA3`, `EffectImplicitTargetB1`, `EffectImplicitTargetB2`, `EffectImplicitTargetB3`, `EffectRadiusIndex1`, `EffectRadiusIndex2`, `EffectRadiusIndex3`, `EffectApplyAuraName1`, `EffectApplyAuraName2`, `EffectApplyAuraName3`, `EffectAmplitude1`, `EffectAmplitude2`, `EffectAmplitude3`, `EffectMultipleValue1`, `EffectMultipleValue2`, `EffectMultipleValue3`, `EffectMiscValue1`, `EffectMiscValue2`, `EffectMiscValue3`, `EffectMiscValueB1`, `EffectMiscValueB2`, `EffectMiscValueB3`, `EffectTriggerSpell1`, `EffectTriggerSpell2`, `EffectTriggerSpell3`, `EffectSpellClassMaskA1`, `EffectSpellClassMaskA2`, `EffectSpellClassMaskA3`, `EffectSpellClassMaskB1`, `EffectSpellClassMaskB2`, `EffectSpellClassMaskB3`, `EffectSpellClassMaskC1`, `EffectSpellClassMaskC2`, `EffectSpellClassMaskC3`, `MaxTargetLevel`, `SpellFamilyName`, `SpellFamilyFlags1`, `SpellFamilyFlags2`, `SpellFamilyFlags3`, `MaxAffectedTargets`, `DmgClass`, `PreventionType`, `DmgMultiplier1`, `DmgMultiplier2`, `DmgMultiplier3`, `AreaGroupId`, `SchoolMask`, `Comment`) VALUES +(21908, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Lava Burst Randomizer'), +(21914, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Celebras Quit Escort'), +(21917, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Celebras Stone Trap'), +(21934, 0, 0, 8388992, 268435456, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 64, 'Gizlock''s Dummy Despawn'), +(21988, 0, 0, 384, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 3, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Dun Garok Soldiers'), +(21989, 0, 0, 8388864, 268435456, 1, 1048576, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Waiting to Resurrect'), +(22049, 0, 0, 464, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 'zzOldTesting Totem Passive'), +(22050, 0, 0, 400, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'zzOldTesting Totem Dummy'), +(22190, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Flare Gun DND'), +(22208, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Create Chapter 1 DND'), +(22209, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Create Chapter 2 DND'), +(22210, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Create Chapter 3 DND'), +(22211, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Create Chapter 4 DND'), +(22269, 0, 0, 537133312, 136, 67108864, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Injured'), +(22276, 0, 0, 272, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Elemental Shield'), +(22282, 0, 0, 400, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Brood Power'), +(22283, 0, 0, 400, 136, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Brood Power: Red'), +(22285, 0, 0, 400, 136, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Brood Power: Blue'), +(22286, 0, 0, 400, 136, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Brood Power: Bronze'), +(22287, 0, 0, 400, 136, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Brood Power: Black'), +(22288, 0, 0, 400, 136, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Brood Power: Green'), +(22352, 0, 0, 400, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Phase Lasher (Fire)'), +(22353, 0, 0, 400, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Phase Lasher (Nature)'), +(22354, 0, 0, 400, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Phase Lasher (Arcane)'), +(22391, 0, 0, 448, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Demon Portal'), +(22483, 0, 0, 256, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'PvP Herald Alpha Transform (DND)'), +(22520, 0, 0, 400, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Phase Lasher (Frost)'), +(22647, 0, 0, 384, 268435456, 4, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 21, 4, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Empower Pet'), +(22652, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Drakonid Spawner'), +(22653, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Drakonid Spawner'), +(22679, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Prismatic Drakonid Spawner'), +(22697, 0, 0, 448, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 64, 'Arcane Elemental'), +(22701, 0, 0, 256, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Aggro'), +(22707, 0, 0, 384, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 487, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Root'), +(22716, 0, 0, 448, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 'Hydrojet'), +(22755, 0, 0, 327888, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Critical Weapon +28'), +(22764, 0, 0, 384, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Aggro'), +(22765, 0, 0, 400, 512, 4, 131072, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Aggro'), +(22787, 0, 0, 448, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Irritating Spores'), +(22788, 0, 0, 384, 268435456, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 225, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Grow'), +(22803, 0, 0, 384, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Dire Maul Trap - Summon'), +(22821, 0, 0, 384, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 6, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 'Warpwood Spores'), +(22837, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Conjure Tharnariun''s Hope'), +(22841, 0, 0, 192, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Arcanum of Rapidity'), +(22843, 0, 0, 192, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 'Arcanum of Focus'), +(22847, 0, 0, 192, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Arcanum of Protection'), +(22879, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Cho''Rush Random'), +(22880, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Cho''Rush Random Effect (Priest)'), +(22881, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Cho''Rush Random Effect (Shaman)'), +(22882, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Cho''Rush Random Effect (Mage)'), +(22904, 0, 0, 256, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 5, 36, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Heated Blade DND'), +(22913, 0, 0, 384, 268436480, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Random Aggro'), +(22925, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Conjure Dull Flat Elven Blade DND'), +(22941, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Player Lost Shackles DND'), +(22942, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Player Lost Apple DND'), +(22943, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Player Lost Eau d'' Mixilpixil DND'), +(22944, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Player Lost Hinot''s OilDND'), +(22958, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Vessel of Rebirth DND'), +(22970, 0, 0, 400, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Kodo Despawn'), +(23021, 0, 0, 256, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Dragon Orb'), +(23022, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 6, 12, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Crystal Prison Conjure DND'), +(23031, 0, 0, 384, 268435456, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Cancel Bob Possession'), +(23032, 0, 0, 384, 268435456, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Nefarian''s Troops Flee'), +(23057, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 29, 12, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Mob Spawn Circle (DND)'), +(23118, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 62, 7, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Conjure Scourge Footsoldier DND'), +(23119, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 347, 12, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Conjure Peasant DND'), +(23121, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 347, 12, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Conjure Peasant DND'), +(23137, 0, 0, 256, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Priest Event Despawner DND'), +(23156, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Peasant Event Anti-Cheat DND'), +(23173, 0, 0, 384, 268435456, 4, 256, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Brood Affliction'), +(23175, 0, 0, 384, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 5, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Chromatic Mutation'), +(23177, 0, 0, 384, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 5, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Chromatic Mutation'), +(23185, 0, 0, 384, 268436480, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 'Aura of Frost'), +(23195, 0, 0, 8388864, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Dragondog Breath Selection'), +(23199, 0, 0, 320, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'See Priest Invis'), +(23200, 0, 0, 256, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Precious Transform to Felhound DND'), +(23201, 0, 0, 256, 67108864, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 3, 4, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Hunter Epic Anti-Cheat DND'), +(23209, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 6, 4, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Terrordale Haunting Spirit #2'), +(23253, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 6, 4, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Terrordale Haunting Spirit #3'), +(23255, 0, 0, 464, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Deep Wounds'), +(23258, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Demonic Frenzy Cleanse DND'), +(23307, 0, 0, 384, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Possess'), +(23311, 0, 0, 536871168, 136, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Time Lapse'), +(23317, 0, 0, 8388992, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Dragondog Breath Selection (L1)'), +(23318, 0, 0, 8388992, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Dragondog Breath Selection (L2)'), +(23319, 0, 0, 8388992, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Dragondog Breath Selection (L3)'), +(23320, 0, 0, 8388992, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Dragondog Breath Selection (L4)'), +(23321, 0, 0, 8388992, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Dragondog Breath Selection (L5)'), +(23322, 0, 0, 8388992, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Dragondog Breath Selection (R1)'), +(23323, 0, 0, 8388992, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Dragondog Breath Selection (R2)'), +(23324, 0, 0, 8388992, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Dragondog Breath Selection (R3)'), +(23325, 0, 0, 8388992, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Dragondog Breath Selection (R4)'), +(23326, 0, 0, 8388992, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Dragondog Breath Selection (R5)'), +(23329, 0, 0, 384, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Heal Max Health'), +(23330, 0, 0, 448, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'No Stealth Detection'), +(23343, 0, 0, 8388864, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Nefarian Tunnel Selection'), +(23344, 0, 0, 8388992, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Nefarian Tunnel Selection (L1)'), +(23345, 0, 0, 8388992, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Nefarian Tunnel Selection (L2)'), +(23346, 0, 0, 8388992, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Nefarian Tunnel Selection (L3)'), +(23347, 0, 0, 8388992, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Nefarian Tunnel Selection (L4)'), +(23348, 0, 0, 8388992, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Nefarian Tunnel Selection (L5)'), +(23349, 0, 0, 8388992, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Nefarian Tunnel Selection (R1)'), +(23350, 0, 0, 8388992, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Nefarian Tunnel Selection (R2)'), +(23351, 0, 0, 8388992, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Nefarian Tunnel Selection (R3)'), +(23352, 0, 0, 8388992, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Nefarian Tunnel Selection (R4)'), +(23353, 0, 0, 8388992, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Nefarian Tunnel Selection (R5)'), +(23361, 0, 0, 8388864, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Raise Undead Drakonid'), +(23362, 0, 0, 384, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Raise Drakonids'), +(23363, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Drakonid Corpse Trigger'), +(23383, 0, 0, 134217984, 0, 4, 0, 0, 0, 4, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Alliance Flag Click'), +(23384, 0, 0, 134217984, 0, 4, 0, 0, 0, 4, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Horde Flag Click'), +(23385, 0, 0, 134217984, 0, 4, 0, 0, 0, 4, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Alliance Flag Returns (Event)'), +(23386, 0, 0, 134217984, 0, 4, 0, 0, 0, 4, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Horde Flag Returns (Event)'), +(23387, 0, 0, 134217984, 268435456, 4, 0, 0, 0, 4, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 36, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Alliance Flag Capture Test'), +(23388, 0, 0, 134217984, 268435456, 4, 0, 0, 0, 4, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 39, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Horde Flag Capture Test'), +(23390, 0, 0, 134217984, 268435456, 4, 131072, 0, 0, 4, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Horde Flag Capture'), +(23405, 0, 0, 134217984, 268435456, 4, 0, 0, 0, 4, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Alliance Reset Teleport'), +(23406, 0, 0, 134217984, 268435456, 4, 0, 0, 0, 4, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Horde Reset Teleport'), +(23407, 0, 0, 134217984, 268435456, 4, 0, 0, 0, 4, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Reset Teleport'), +(23408, 0, 0, 8388864, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 5, 12, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Drop Pillow DND'), +(23424, 0, 0, 256, 136, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 'Corrupted Totems'), +(23439, 0, 0, 256, 136, 4, 256, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 'Corruption'), +(23464, 0, 0, 8388864, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 'Create Soul Shard'), +(23479, 0, 0, 384, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Remove Bones'), +(23484, 0, 0, 384, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Dispel Drakonids'), +(23487, 0, 0, 384, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Separation Anxiety'), +(23499, 0, 0, 142606592, 0, 262273, 0, 0, 0, 4, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 'Revive Pet'), +(23500, 0, 0, 159383808, 1, 128, 0, 0, 0, 4, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 'Summon Felhunter'), +(23501, 0, 0, 159383808, 1, 128, 0, 0, 0, 4, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 'Summon Voidwalker'), +(23502, 0, 0, 159383808, 1, 128, 0, 0, 0, 4, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 'Summon Succubus'), +(23503, 0, 0, 159383808, 1, 128, 0, 0, 0, 4, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 'Summon Imp'), +(23518, 0, 0, 65792, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 'zzOLDCreate Healthstone'), +(23519, 0, 0, 65792, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 'zzOLDCreate Healthstone'), +(23523, 0, 0, 159383808, 32, 5, 0, 0, 2097152, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Alliance Warsong CTF Flag'), +(23524, 0, 0, 159383808, 32, 5, 268435456, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Alliance Warsong CTF Win'), +(23525, 0, 0, 159383808, 32, 5, 268435456, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Horde Warsong CTF Flag'), +(23526, 0, 0, 159383808, 32, 5, 268435456, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Horde Warsong CTF Win'), +(23527, 0, 0, 159383808, 1056, 5, 268435456, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Alliance Alterac Valley'), +(23528, 0, 0, 159383808, 32, 5, 268435456, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Horde Alterac Valley'), +(23529, 0, 0, 159383808, 32, 5, 268435456, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Horde Alterac Valley'), +(23532, 0, 0, 159383808, 32, 5, 268435456, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Horde Alterac Valley'), +(23533, 0, 0, 159383808, 32, 5, 268435456, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Horde Alterac Valley'), +(23534, 0, 0, 159383808, 32, 5, 268435456, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Alliance Alterac Valley'), +(23535, 0, 0, 159383808, 32, 5, 268435456, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Alliance Alterac Valley'), +(23536, 0, 0, 159383808, 32, 5, 268435456, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Alliance Alterac Valley'), +(23644, 0, 0, 536871168, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 'Burning Adrenaline'), +(23648, 0, 0, 134217984, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 135, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Alliance Flag Captured'), +(23649, 0, 0, 134217984, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 135, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Horde Flag Captured'), +(23763, 0, 0, 159383808, 0, 4, 0, 0, 0, 4, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Despawn Silverwing Flag'), +(23764, 0, 0, 159383808, 0, 4, 0, 0, 0, 4, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Despawn Horde Flag'), +(23770, 0, 0, 612368640, 268435592, 1, 1048576, 4, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 527, 6, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Sayge''s Carnie Buff'), +(23776, 0, 0, 256, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Clear Possess'), +(23777, 0, 0, 537133312, 0, 67108864, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Zero Mana/Full Health DND'); +INSERT INTO `spell_dbc` (`Id`, `Dispel`, `Mechanic`, `Attributes`, `AttributesEx`, `AttributesEx2`, `AttributesEx3`, `AttributesEx4`, `AttributesEx5`, `AttributesEx6`, `AttributesEx7`, `Stances`, `StancesNot`, `Targets`, `CastingTimeIndex`, `AuraInterruptFlags`, `ProcFlags`, `ProcChance`, `ProcCharges`, `MaxLevel`, `BaseLevel`, `SpellLevel`, `DurationIndex`, `RangeIndex`, `StackAmount`, `EquippedItemClass`, `EquippedItemSubClassMask`, `EquippedItemInventoryTypeMask`, `Effect1`, `Effect2`, `Effect3`, `EffectDieSides1`, `EffectDieSides2`, `EffectDieSides3`, `EffectRealPointsPerLevel1`, `EffectRealPointsPerLevel2`, `EffectRealPointsPerLevel3`, `EffectBasePoints1`, `EffectBasePoints2`, `EffectBasePoints3`, `EffectMechanic1`, `EffectMechanic2`, `EffectMechanic3`, `EffectImplicitTargetA1`, `EffectImplicitTargetA2`, `EffectImplicitTargetA3`, `EffectImplicitTargetB1`, `EffectImplicitTargetB2`, `EffectImplicitTargetB3`, `EffectRadiusIndex1`, `EffectRadiusIndex2`, `EffectRadiusIndex3`, `EffectApplyAuraName1`, `EffectApplyAuraName2`, `EffectApplyAuraName3`, `EffectAmplitude1`, `EffectAmplitude2`, `EffectAmplitude3`, `EffectMultipleValue1`, `EffectMultipleValue2`, `EffectMultipleValue3`, `EffectMiscValue1`, `EffectMiscValue2`, `EffectMiscValue3`, `EffectMiscValueB1`, `EffectMiscValueB2`, `EffectMiscValueB3`, `EffectTriggerSpell1`, `EffectTriggerSpell2`, `EffectTriggerSpell3`, `EffectSpellClassMaskA1`, `EffectSpellClassMaskA2`, `EffectSpellClassMaskA3`, `EffectSpellClassMaskB1`, `EffectSpellClassMaskB2`, `EffectSpellClassMaskB3`, `EffectSpellClassMaskC1`, `EffectSpellClassMaskC2`, `EffectSpellClassMaskC3`, `MaxTargetLevel`, `SpellFamilyName`, `SpellFamilyFlags1`, `SpellFamilyFlags2`, `SpellFamilyFlags3`, `MaxAffectedTargets`, `DmgClass`, `PreventionType`, `DmgMultiplier1`, `DmgMultiplier2`, `DmgMultiplier3`, `AreaGroupId`, `SchoolMask`, `Comment`) VALUES +(23779, 0, 0, 256, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Resurgence DND'), +(23790, 0, 0, 536871168, 268435592, 335544320, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 42, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 'Stoneclaw Totem Effect TEST'), +(23845, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Attract Jubjub'), +(23878, 0, 0, 384, 268436480, 4, 131072, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Random Aggro'), +(23896, 0, 0, 134217984, 0, 4, 0, 0, 0, 4, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Alliance Flag Taken From Base (Event)'), +(23897, 0, 0, 134217984, 0, 4, 0, 0, 0, 4, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Horde Flag Taken From Base (Event)'), +(23932, 0, 0, 256, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'A-Mid Trigger'), +(23933, 0, 0, 256, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'A-Mid Horde'), +(23934, 0, 0, 256, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'A-Mid Alliance'), +(23935, 0, 0, 256, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'H-Mid Trigger'), +(23936, 0, 0, 256, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Mid Trigger'), +(23937, 0, 0, 256, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'ALT -N Trigger'), +(23938, 0, 0, 256, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'ALT -S Trigger'), +(23939, 0, 0, 256, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'ALT -N Alliance'), +(23940, 0, 0, 256, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'ALT -N Horde'), +(23941, 0, 0, 256, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'ALT -S Alliance'), +(23942, 0, 0, 256, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'ALT -S Horde'), +(23943, 0, 0, 256, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'H-Mid Alliance'), +(23944, 0, 0, 256, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'H-Mid Horde'), +(23945, 0, 0, 256, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Mid Alliance'), +(23946, 0, 0, 256, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Mid Horde'), +(23973, 0, 0, 134217984, 268435456, 0, 0, 128, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Root Self'), +(23975, 0, 0, 384, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Create iCoke Prize Voucher'), +(23998, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Create Zul''Gurub Talisman WAR R1 DND'), +(23999, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Create Zul''Gurub Talisman WAR R2 DND'), +(24000, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Create Zul''Gurub Talisman WAR R3 DND'), +(24001, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Create Zul''Gurub Talisman WAR R4 DND'), +(24007, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Zul''Gurub Talisman PAL R1 DND'), +(24008, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Zul''Gurub Talisman PAL R2 DND'), +(24009, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Zul''Gurub Talisman PAL R3 DND'), +(24010, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Zul''Gurub Talisman PAL R4 DND'), +(24012, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Create Zul''Gurub Talisman PRT R1 DND'), +(24013, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Create Zul''Gurub Talisman PRT R2 DND'), +(24014, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Create Zul''Gurub Talisman PRT R3 DND'), +(24015, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Create Zul''Gurub Talisman PRT R4 DND'), +(24019, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Axe Flurry'), +(24038, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Create Zul''Gurub Talisman MAG R1 DND'), +(24039, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Create Zul''Gurub Talisman MAG R2 DND'), +(24040, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Create Zul''Gurub Talisman MAG R3 DND'), +(24041, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Create Zul''Gurub Talisman MAG R4 DND'), +(24044, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Create Zul''Gurub Talisman WLK R1 DND'), +(24045, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Create Zul''Gurub Talisman WLK R2 DND'), +(24046, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Create Zul''Gurub Talisman WLK R3 DND'), +(24047, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Create Zul''Gurub Talisman WLK R4 DND'), +(24055, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Create Zul''Gurub Talisman DRU R1 DND'), +(24056, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Create Zul''Gurub Talisman DRU R2 DND'), +(24057, 0, 0, 256, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 39, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Confused'), +(24059, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Create Zul''Gurub Talisman DRU R3 DND'), +(24060, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Create Zul''Gurub Talisman DRU R4 DND'), +(24066, 0, 0, 256, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 35, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Toad Explode'), +(24067, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Create Zul''Gurub Talisman SHM R1 DND'), +(24068, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Create Zul''Gurub Talisman SHM R2 DND'), +(24069, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Create Zul''Gurub Talisman SHM R3 DND'), +(24070, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Create Zul''Gurub Talisman SHM R4 DND'), +(24072, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Create Zul''Gurub Talisman ROG R1 DND'), +(24073, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Create Zul''Gurub Talisman ROG R2 DND'), +(24074, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Create Zul''Gurub Talisman ROG R3 DND'), +(24075, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Create Zul''Gurub Talisman ROG R4 DND'), +(24076, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Create Zul''Gurub Talisman HUN R1 DND'), +(24077, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Create Zul''Gurub Talisman HUN R2 DND'), +(24078, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Create Zul''Gurub Talisman HUN R3 DND'), +(24079, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Create Zul''Gurub Talisman HUN R4 DND'), +(24080, 0, 0, 8388608, 131072, 67108864, 269484032, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 'Death Touch Copy'), +(24081, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 5, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Spawn of Mar''li'), +(24082, 0, 0, 256, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Hatch Spider Egg'), +(24086, 0, 0, 256, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 225, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Growth'), +(24087, 0, 0, 256, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 18, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Growth'), +(24089, 0, 0, 256, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Full Grown'), +(24150, 0, 0, 65792, 136, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Stinger Charge Primer'), +(24181, 0, 0, 159383808, 32, 5, 268435456, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Horde Arathi Basin'), +(24182, 0, 0, 159383808, 32, 5, 268435456, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Alliance Arathi Basin'), +(24205, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Half Heal'), +(24206, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Half Heal Effect'), +(24215, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 9, 4, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Create Heart of Hakkar Explosion'), +(24218, 0, 0, 192, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Test Power Bonus (Cat)'), +(24219, 0, 0, 192, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Test Critical Bonus'), +(24237, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Alliance Graveyard Teleporter'), +(24247, 0, 0, 256, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Zulian Prowlers'), +(24249, 0, 0, 256, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Zulian Stalkers'), +(24250, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 6, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Zulian Stalker'), +(24304, 0, 0, 8388864, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Quest - Create Mudskunk Lure'), +(24310, 0, 0, 262416, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Powerful Healing Ward'), +(24342, 0, 0, 150995200, 268435456, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Despawn Chained Spirits'), +(24343, 0, 0, 8388864, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Call Chained Spirit'), +(24344, 0, 0, 320, 268436480, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Bloodlord''s Aura'), +(24345, 0, 0, 536871168, 268436616, 0, 268566528, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 28, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Bloodlord''s Aura'), +(24349, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Bloodlord''s Raptor'), +(24395, 0, 0, 536936848, 33792, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 85, 6, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Bestial Wrath'), +(24396, 0, 0, 536936848, 33792, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 85, 6, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Bestial Wrath'), +(24397, 0, 0, 536936848, 268469248, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 85, 6, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Bestial Wrath'), +(24474, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Destroy Wards'), +(24620, 0, 0, 448, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Portal of Madness'), +(24635, 0, 0, 150995200, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Sober Up'), +(24638, 0, 0, 159383808, 32, 5, 268435456, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Horde Warsong CTF Flag'), +(24639, 0, 0, 159383808, 32, 5, 268435456, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Alliance Warsong CTF Flag'), +(24642, 0, 0, 159383808, 32, 5, 268435456, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Horde Alterac Valley'), +(24643, 0, 0, 159383808, 1056, 5, 268435456, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Alliance Alterac Valley'), +(24644, 0, 0, 159383808, 32, 5, 268435456, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Alliance Alterac Valley'), +(24645, 0, 0, 159383808, 32, 5, 268435456, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Horde Alterac Valley'), +(24650, 0, 0, 159383808, 32, 5, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Darnassus Reputation'), +(24651, 0, 0, 159383808, 32, 5, 268435456, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Alliance Alterac Valley'), +(24652, 0, 0, 159383808, 32, 5, 268435456, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Horde Alterac Valley'), +(24678, 0, 0, 256, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'GY Mid Alliance'), +(24679, 0, 0, 256, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'GY Mid Horde'), +(24692, 0, 0, 256, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 225, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Hakkar Power'), +(24693, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Hakkar Power Down'), +(24700, 0, 0, 67109120, 268435456, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 39, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 64, 'Vanish'), +(24722, 0, 0, 142606592, 0, 128, 0, 0, 0, 4, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Happy Pet'), +(24743, 0, 0, 256, 268435456, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 28, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Cannon Prep'), +(24754, 0, 0, 256, 268435456, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 32, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Cannon Prep'), +(24779, 0, 0, 256, 268435456, 0, 131072, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 96, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 'Dream Fog'), +(24781, 0, 0, 256, 268435456, 0, 131328, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 'Dream Fog'), +(24796, 0, 0, 256, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 'Summon Demented Druid Spirit'), +(24805, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Create Hive''Zora Rubbing DND'), +(24806, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Create Hive''Ashi Rubbing DND'), +(24807, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Create Hive''Regal Rubbing DND'), +(24810, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 3, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 'Summon Spirit Shade'), +(24863, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Create BlizzCon Prize'), +(24868, 0, 0, 128, 1024, 0, 0, 3145728, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 'zzOLDPredatory Strikes'), +(24886, 0, 0, 256, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Despawn Shades of Taerar'), +(24906, 0, 0, 256, 268435456, 4, 256, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Emeriss Aura'), +(24920, 0, 0, 738197760, 268435592, 4, 0, 0, 0, 4, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 39, 6, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Flag Guard'), +(24931, 0, 0, 256, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, '100 Health'), +(24936, 0, 0, 256, 0, 0, 268435456, 0, 16, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'RC Tank Control'), +(24938, 0, 0, 256, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Close Control Console'), +(24948, 0, 0, 400, 1024, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 28, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'zzOldDefensive State 2'), +(24956, 0, 0, 320, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Dream Fog'), +(24958, 0, 0, 256, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Despawn Putrid Mushrooms'), +(24959, 0, 0, 256, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, '500 Health'), +(25044, 0, 0, 384, 268436480, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 'Aura of Nature'), +(25108, 0, 0, 256, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Bronze Dragon Transform DND'), +(25142, 0, 0, 400, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'zzOLDHeart of the Wild Bear Effect 2'), +(25151, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Vekniss Drone'), +(25153, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Agro Drones Effect'), +(25157, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Quest - Self Drain Mana'), +(25175, 0, 0, 262416, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Triple Attack'), +(25184, 0, 0, 384, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Speed Burst'), +(25186, 0, 0, 256, 268435456, 4, 0, 0, 0, 0, 0, 0, 0, 0, 171, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Super Crystal'), +(25192, 0, 0, 256, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Ossirian Crystal'), +(25193, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Despawn Ossirian Crystal'), +(25194, 0, 0, 256, 136, 4, 268435456, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Despawn Adds'), +(25200, 0, 0, 4718866, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Shoot'), +(25374, 0, 0, 256, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 8, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 'Consume'), +(25410, 0, 0, 67109120, 268435456, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 8, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 'Consume'), +(25473, 0, 0, 536871168, 268435592, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 135, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Attack Order'), +(25503, 9, 31, 262544, 1024, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 4718592, 0, 0, 0, 0, 12, 12, 1, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'zzOLDEnrage'), +(25592, 0, 0, 464, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Hate to Zero'), +(25600, 0, 0, 8388864, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Idol of Neptulon DND'), +(25604, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Hate to Second'), +(25657, 0, 0, 384, 268436480, 4, 256, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Random Aggro'), +(25667, 0, 0, 192, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Language Sindassi'), +(25676, 0, 0, 536871168, 136, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 'Drain Mana'), +(25680, 0, 0, 384, 268436480, 4, 131328, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Random Aggro'); +INSERT INTO `spell_dbc` (`Id`, `Dispel`, `Mechanic`, `Attributes`, `AttributesEx`, `AttributesEx2`, `AttributesEx3`, `AttributesEx4`, `AttributesEx5`, `AttributesEx6`, `AttributesEx7`, `Stances`, `StancesNot`, `Targets`, `CastingTimeIndex`, `AuraInterruptFlags`, `ProcFlags`, `ProcChance`, `ProcCharges`, `MaxLevel`, `BaseLevel`, `SpellLevel`, `DurationIndex`, `RangeIndex`, `StackAmount`, `EquippedItemClass`, `EquippedItemSubClassMask`, `EquippedItemInventoryTypeMask`, `Effect1`, `Effect2`, `Effect3`, `EffectDieSides1`, `EffectDieSides2`, `EffectDieSides3`, `EffectRealPointsPerLevel1`, `EffectRealPointsPerLevel2`, `EffectRealPointsPerLevel3`, `EffectBasePoints1`, `EffectBasePoints2`, `EffectBasePoints3`, `EffectMechanic1`, `EffectMechanic2`, `EffectMechanic3`, `EffectImplicitTargetA1`, `EffectImplicitTargetA2`, `EffectImplicitTargetA3`, `EffectImplicitTargetB1`, `EffectImplicitTargetB2`, `EffectImplicitTargetB3`, `EffectRadiusIndex1`, `EffectRadiusIndex2`, `EffectRadiusIndex3`, `EffectApplyAuraName1`, `EffectApplyAuraName2`, `EffectApplyAuraName3`, `EffectAmplitude1`, `EffectAmplitude2`, `EffectAmplitude3`, `EffectMultipleValue1`, `EffectMultipleValue2`, `EffectMultipleValue3`, `EffectMiscValue1`, `EffectMiscValue2`, `EffectMiscValue3`, `EffectMiscValueB1`, `EffectMiscValueB2`, `EffectMiscValueB3`, `EffectTriggerSpell1`, `EffectTriggerSpell2`, `EffectTriggerSpell3`, `EffectSpellClassMaskA1`, `EffectSpellClassMaskA2`, `EffectSpellClassMaskA3`, `EffectSpellClassMaskB1`, `EffectSpellClassMaskB2`, `EffectSpellClassMaskB3`, `EffectSpellClassMaskC1`, `EffectSpellClassMaskC2`, `EffectSpellClassMaskC3`, `MaxTargetLevel`, `SpellFamilyName`, `SpellFamilyFlags1`, `SpellFamilyFlags2`, `SpellFamilyFlags3`, `MaxAffectedTargets`, `DmgClass`, `PreventionType`, `DmgMultiplier1`, `DmgMultiplier2`, `DmgMultiplier3`, `AreaGroupId`, `SchoolMask`, `Comment`) VALUES +(25684, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 64, 'Summon Mana Fiends'), +(25708, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 5, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Hive''Zara Swarmer'), +(25711, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Hive''Zara Swarmer Start Loop'), +(25724, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Hive''Zara Larva Aggro Effect'), +(25726, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Hive''Zara Larva Fear Effect'), +(25728, 0, 0, 538968448, 1160, 67108868, 64, 2048, 2097152, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Find the Ancient Hero: Dummy to Subjugated Iskalder'), +(25731, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Find the Ancient Hero: On Player Gossip'), +(25752, 0, 0, 330112, 0, 4, 196608, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 18, 6, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 'zzOLDJudgement of Light'), +(25753, 0, 0, 330112, 0, 4, 196608, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 'zzOLDJudgement of Light'), +(25754, 0, 0, 536871168, 136, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 'Drain Mana'), +(25757, 0, 0, 330112, 0, 4, 196608, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 18, 6, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 'zzOLDJudgement of Wisdom'), +(25758, 0, 0, 330112, 0, 4, 196608, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 'zzOLDJudgement of Wisdom'), +(25763, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Draconic For Dummies 7 DND'), +(25764, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Draconic For Dummies 5 DND'), +(25765, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Draconic For Dummies 4 DND'), +(25769, 0, 0, 256, 524288, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Consume'), +(25773, 0, 0, 67109120, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 4, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Will of Weavil'), +(25775, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Consume'), +(25784, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Narain''s Special Bag DND'), +(25785, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Arcanite Buoy DND'), +(25789, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 5, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Yauj Brood'), +(25792, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Despawn Brood'), +(25830, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Hive''Zara Swarmer Teleport Trigger'), +(25833, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Hive''Zara Swarmer Loop 1'), +(25834, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Hive''Zara Swarmer Loop 2'), +(25835, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Hive''Zara Swarmer Loop 3'), +(25842, 0, 0, 256, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Despawn Swarmers'), +(25844, 0, 0, 256, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Hive''Zara Swarmers Swarm'), +(25885, 0, 0, 256, 0, 4, 268435456, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Globs of Viscidus'), +(25897, 0, 0, 256, 0, 4, 268435456, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Viscidus Grows'), +(25904, 0, 0, 256, 0, 4, 268435456, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Viscidus Teleport'), +(25905, 0, 0, 256, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Invis Self'), +(25921, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Signet Ring of the Bronze Dragonflight CASTER R1 DND'), +(25922, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Signet Ring of the Bronze Dragonflight CASTER R2 DND'), +(25923, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Signet Ring of the Bronze Dragonflight CASTER R3 DND'), +(25924, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Signet Ring of the Bronze Dragonflight CASTER R4 DND'), +(25925, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Signet Ring of the Bronze Dragonflight CASTER R5 DND'), +(25926, 0, 0, 256, 268435456, 4, 335544320, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Viscidus Frost Weakness'), +(25927, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Signet Ring of the Bronze Dragonflight DPS R1 DND'), +(25928, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Signet Ring of the Bronze Dragonflight DPS R2 DND'), +(25929, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Signet Ring of the Bronze Dragonflight DPS R3 DND'), +(25930, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Signet Ring of the Bronze Dragonflight DPS R4 DND'), +(25931, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Signet Ring of the Bronze Dragonflight DPS R5 DND'), +(25932, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Signet Ring of the Bronze Dragonflight TANK R1 DND'), +(25933, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Signet Ring of the Bronze Dragonflight TANK R2 DND'), +(25934, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Signet Ring of the Bronze Dragonflight TANK R3 DND'), +(25935, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Signet Ring of the Bronze Dragonflight TANK R4 DND'), +(25936, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Signet Ring of the Bronze Dragonflight TANK R5 DND'), +(25944, 0, 0, 330112, 0, 4, 196608, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 'zzOLDJudgement of Justice'), +(25945, 0, 0, 330112, 0, 4, 196608, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 18, 6, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 'zzOLDJudgement of Justice'), +(25994, 0, 0, 336, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Membrane of Viscidus'), +(25998, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Veknis Guardian Call'), +(26002, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Suicide'), +(26014, 0, 0, 612368640, 268435456, 5, 1048576, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 6, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'In Battleground'), +(26015, 0, 0, 612368640, 268435456, 5, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 36, 6, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Ended Battleground'), +(26057, 0, 0, 256, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Pop Dirt Mounds'), +(26075, 0, 0, 256, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Set Ouro Health'), +(26076, 0, 0, 134217984, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Save Ouro Health'), +(26080, 0, 0, 65792, 136, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Stinger Charge Primer'), +(26092, 0, 0, 256, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Dirt Mound Passive'), +(26096, 0, 0, 8388864, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 12, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Jandice Drops Journal DND'), +(26101, 0, 0, 256, 136, 0, 256, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Ground Rupture'), +(26104, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Ouro Submerge Trigger'), +(26105, 0, 0, 256, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Glare'), +(26133, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Sandworm Base'), +(26140, 0, 0, 256, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 5, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Hook Tentacle'), +(26144, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 5, 4, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Eye Tentacle'), +(26145, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 5, 4, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Eye Tentacle'), +(26146, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 5, 4, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Eye Tentacle'), +(26147, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 5, 4, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Eye Tentacle'), +(26148, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 5, 4, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Eye Tentacle'), +(26149, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 5, 4, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Eye Tentacle'), +(26150, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 5, 4, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Eye Tentacle'), +(26151, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 5, 4, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Eye Tentacle'), +(26152, 0, 0, 256, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 4, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Eye Tentacles'), +(26156, 0, 0, 272, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Carapace of C''Thun'), +(26159, 0, 0, 159383808, 32, 5, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Gnomeregan Reputation'), +(26160, 0, 0, 159383808, 32, 5, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Ironforge Reputation'), +(26161, 0, 0, 159383808, 32, 5, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Stormwind Reputation'), +(26162, 0, 0, 159383808, 32, 5, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Orgrimmar Reputation'), +(26163, 0, 0, 159383808, 32, 5, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Darkspear Reputation'), +(26164, 0, 0, 159383808, 32, 5, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Undercity Reputation'), +(26165, 0, 0, 159383808, 32, 5, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Thunder Bluff Reputation'), +(26182, 0, 0, 256, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Burrow'), +(26183, 0, 0, 256, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Burrow'), +(26191, 0, 0, 256, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Teleport Giant Hook Tentacle'), +(26199, 0, 0, 256, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 30, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Darkmaster Gandling Christmas Disguise'), +(26200, 0, 0, 256, 268437504, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Christmas Darkmaster Gandling'), +(26205, 0, 0, 256, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Teleport Giant Hook Tentacle Trigger'), +(26209, 0, 0, 256, 268437504, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Christmas Cannon Master Willey'), +(26210, 0, 0, 256, 268437504, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Christmas Prince Tortheldrin'), +(26212, 0, 0, 256, 268437504, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Christmas Emperor Dagran Thaurissan'), +(26213, 0, 0, 256, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 4, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Giant Hook Tentacles'), +(26214, 0, 0, 256, 268437504, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Christmas Warchief Rend Blackhand'), +(26215, 0, 0, 256, 268437504, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Christmas War Master Voone'), +(26216, 0, 0, 256, 268435456, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Giant Hook Tentacles'), +(26217, 0, 0, 256, 268435456, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Giant Hook Tentacles'), +(26220, 0, 0, 67109120, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 'Digestive Acid'), +(26222, 0, 0, 256, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 39, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Preparation'), +(26224, 0, 0, 256, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Exit Stomach'), +(26229, 0, 0, 256, 0, 4, 256, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Player'), +(26230, 0, 0, 256, 0, 8, 256, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Exit Stomach'), +(26231, 0, 0, 256, 268437504, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Christmas Goraluk Anvilcrack'), +(26236, 0, 0, 256, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 4, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Mouth Tentacles'), +(26237, 0, 0, 256, 268435456, 4, 256, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Mouth Tentacles'), +(26239, 0, 0, 256, 268437504, 1, 1048576, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Winter Reveler - Human Male'), +(26240, 0, 0, 256, 268437504, 1, 1048576, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Winter Reveler - Human Female'), +(26241, 0, 0, 256, 268437504, 1, 1048576, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Winter Reveler - Dwarf Male'), +(26242, 0, 0, 256, 268437504, 1, 1048576, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Winter Reveler - Dwarf Female'), +(26243, 0, 0, 256, 268437504, 1, 1048576, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Winter Reveler - Goblin Female'), +(26244, 0, 0, 256, 268437504, 1, 1048576, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Winter Reveler - Goblin Male'), +(26245, 0, 0, 256, 268437504, 1, 1048576, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Winter Reveler - Night Elf Female'), +(26246, 0, 0, 256, 268437504, 1, 1048576, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Winter Reveler - Night Elf Male'), +(26247, 0, 0, 256, 268437504, 1, 1048576, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Winter Reveler - Orc Female'), +(26248, 0, 0, 256, 268437504, 1, 1048576, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Winter Reveler - Orc Male'), +(26249, 0, 0, 256, 268437504, 1, 1048576, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Winter Reveler - Tauren Female'), +(26250, 0, 0, 256, 268437504, 1, 1048576, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Winter Reveler - Tauren Male'), +(26251, 0, 0, 256, 268437504, 1, 1048576, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Winter Reveler - Troll Female'), +(26252, 0, 0, 256, 268437504, 1, 1048576, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Winter Reveler - Troll Male'), +(26253, 0, 0, 256, 268437504, 1, 1048576, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Winter Reveler - Undead Female'), +(26254, 0, 0, 256, 268437504, 1, 1048576, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, '.Winter Reveler - Undead Male'), +(26255, 0, 0, 256, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Check Reset'), +(26256, 0, 0, 256, 268435456, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Check Reset'), +(26257, 0, 0, 256, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Check Reset'), +(26264, 0, 0, 2843738368, 1056, 268976141, 1245184, 11141280, 393225, 143876, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Despawn'), +(26268, 0, 0, 448, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Despawn Self'), +(26270, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Despawn Self'), +(26285, 0, 0, 256, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Teleport Ouro Trigger'), +(26300, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 28, 5, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Cluster Rocket, BLUE - N'), +(26301, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 28, 5, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Cluster Rocket, BLUE - D'), +(26302, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 28, 5, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Cluster Rocket, BLUE - SE'), +(26303, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 28, 5, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Cluster Rocket, BLUE - SW'), +(26305, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 28, 11, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Cluster Rocket, RED - D'), +(26306, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 28, 11, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Cluster Rocket, RED - N'), +(26307, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 28, 11, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Cluster Rocket, RED - SE'), +(26308, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 28, 11, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Cluster Rocket, RED - SW'), +(26309, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 28, 11, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Cluster Rocket, GREEN - D'), +(26310, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 28, 11, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Cluster Rocket, GREEN - N'), +(26311, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 28, 11, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Cluster Rocket, GREEN - SE'), +(26312, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 28, 11, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Cluster Rocket, GREEN - SW'), +(26313, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 28, 11, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Cluster Rocket, PURPLE - D'), +(26314, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 28, 11, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Cluster Rocket, PURPLE - N'), +(26315, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 28, 11, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Cluster Rocket, PURPLE - SE'), +(26316, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 28, 11, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Cluster Rocket, PURPLE - SW'), +(26317, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 28, 11, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Cluster Rocket, WHITE - D'), +(26318, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 28, 11, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Cluster Rocket, WHITE - N'), +(26319, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 28, 11, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Cluster Rocket, WHITE - SE'), +(26320, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 28, 11, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Cluster Rocket, WHITE - SW'), +(26321, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 28, 11, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Cluster Rocket, YELLOW - D'), +(26322, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 28, 11, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Cluster Rocket, YELLOW - N'), +(26323, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 28, 11, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Cluster Rocket, YELLOW - SE'); +INSERT INTO `spell_dbc` (`Id`, `Dispel`, `Mechanic`, `Attributes`, `AttributesEx`, `AttributesEx2`, `AttributesEx3`, `AttributesEx4`, `AttributesEx5`, `AttributesEx6`, `AttributesEx7`, `Stances`, `StancesNot`, `Targets`, `CastingTimeIndex`, `AuraInterruptFlags`, `ProcFlags`, `ProcChance`, `ProcCharges`, `MaxLevel`, `BaseLevel`, `SpellLevel`, `DurationIndex`, `RangeIndex`, `StackAmount`, `EquippedItemClass`, `EquippedItemSubClassMask`, `EquippedItemInventoryTypeMask`, `Effect1`, `Effect2`, `Effect3`, `EffectDieSides1`, `EffectDieSides2`, `EffectDieSides3`, `EffectRealPointsPerLevel1`, `EffectRealPointsPerLevel2`, `EffectRealPointsPerLevel3`, `EffectBasePoints1`, `EffectBasePoints2`, `EffectBasePoints3`, `EffectMechanic1`, `EffectMechanic2`, `EffectMechanic3`, `EffectImplicitTargetA1`, `EffectImplicitTargetA2`, `EffectImplicitTargetA3`, `EffectImplicitTargetB1`, `EffectImplicitTargetB2`, `EffectImplicitTargetB3`, `EffectRadiusIndex1`, `EffectRadiusIndex2`, `EffectRadiusIndex3`, `EffectApplyAuraName1`, `EffectApplyAuraName2`, `EffectApplyAuraName3`, `EffectAmplitude1`, `EffectAmplitude2`, `EffectAmplitude3`, `EffectMultipleValue1`, `EffectMultipleValue2`, `EffectMultipleValue3`, `EffectMiscValue1`, `EffectMiscValue2`, `EffectMiscValue3`, `EffectMiscValueB1`, `EffectMiscValueB2`, `EffectMiscValueB3`, `EffectTriggerSpell1`, `EffectTriggerSpell2`, `EffectTriggerSpell3`, `EffectSpellClassMaskA1`, `EffectSpellClassMaskA2`, `EffectSpellClassMaskA3`, `EffectSpellClassMaskB1`, `EffectSpellClassMaskB2`, `EffectSpellClassMaskB3`, `EffectSpellClassMaskC1`, `EffectSpellClassMaskC2`, `EffectSpellClassMaskC3`, `MaxTargetLevel`, `SpellFamilyName`, `SpellFamilyFlags1`, `SpellFamilyFlags2`, `SpellFamilyFlags3`, `MaxAffectedTargets`, `DmgClass`, `PreventionType`, `DmgMultiplier1`, `DmgMultiplier2`, `DmgMultiplier3`, `AreaGroupId`, `SchoolMask`, `Comment`) VALUES +(26324, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 28, 11, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Cluster Rocket, YELLOW - SW'), +(26340, 0, 0, 256, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Despawn Kaldorei Elite'), +(26341, 0, 0, 192, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Saurfang''s Rage'), +(26342, 0, 0, 159383808, 32, 1, 256, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Rajaxx Event - Bonus Cenarion Faction'), +(26357, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 28, 5, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Cluster Rocket, BLUE - U'), +(26358, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 28, 11, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Cluster Rocket, GREEN - U'), +(26359, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 28, 11, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Cluster Rocket, PURPLE - U'), +(26360, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 28, 11, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Cluster Rocket, RED - U'), +(26361, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 28, 11, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Cluster Rocket, WHITE - U'), +(26362, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 28, 11, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Cluster Rocket, YELLOW - U'), +(26382, 0, 0, 67109120, 268435456, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 27, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 'Burrow'), +(26383, 0, 0, 256, 268437504, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Night Elf Harbinger'), +(26384, 0, 0, 256, 268437504, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Night Elf Lunar Festival Vendor'), +(26396, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 225, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Portal Ground State'), +(26397, 0, 0, 256, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 4, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Hook Tentacles'), +(26398, 0, 0, 256, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Hook Tentacles'), +(26399, 0, 0, 256, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Despawn Tentacles'), +(26404, 0, 0, 142606592, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Despawn Tent Port'), +(26447, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Despawn Hive''Zara Hornets'), +(26457, 0, 0, 536871168, 136, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 'Drain Mana'), +(26477, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 225, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Giant Portal Ground State'), +(26479, 0, 0, 67109120, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 'Digestive Acid'), +(26483, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 28, 5, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Cluster Rocket, BLUE BIG - D'), +(26484, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 28, 5, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Cluster Rocket, BLUE BIG - N'), +(26485, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 28, 5, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Cluster Rocket, BLUE BIG - SE'), +(26486, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 28, 5, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Cluster Rocket, BLUE BIG - SW'), +(26487, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 28, 5, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Cluster Rocket, BLUE BIG - U'), +(26491, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 28, 5, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Cluster Rocket, GREEN BIG - D'), +(26492, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 28, 5, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Cluster Rocket, GREEN BIG - N'), +(26493, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 28, 5, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Cluster Rocket, GREEN BIG - SE'), +(26494, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 28, 5, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Cluster Rocket, GREEN BIG - SW'), +(26495, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 28, 5, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Cluster Rocket, GREEN BIG - U'), +(26496, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 28, 5, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Cluster Rocket, PURPLE BIG - D'), +(26497, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 28, 5, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Cluster Rocket, PURPLE BIG - N'), +(26498, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 28, 5, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Cluster Rocket, PURPLE BIG - SE'), +(26499, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 28, 5, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Cluster Rocket, PURPLE BIG - SW'), +(26500, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 28, 5, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Cluster Rocket, PURPLE BIG - U'), +(26501, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 28, 5, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Cluster Rocket, RED BIG - D'), +(26502, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 28, 5, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Cluster Rocket, RED BIG - N'), +(26503, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 28, 5, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Cluster Rocket, RED BIG - SE'), +(26504, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 28, 5, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Cluster Rocket, RED BIG - SW'), +(26505, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 28, 5, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Cluster Rocket, RED BIG - U'), +(26506, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 28, 5, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Cluster Rocket, WHITE BIG - D'), +(26507, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 28, 5, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Cluster Rocket, WHITE BIG - N'), +(26508, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 28, 5, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Cluster Rocket, WHITE BIG - SE'), +(26509, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 28, 5, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Cluster Rocket, WHITE BIG - SW'), +(26510, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 28, 5, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Cluster Rocket, WHITE BIG - U'), +(26511, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 28, 5, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Cluster Rocket, YELLOW BIG - D'), +(26512, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 28, 5, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Cluster Rocket, YELLOW BIG - N'), +(26513, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 28, 5, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Cluster Rocket, YELLOW BIG - SE'), +(26514, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 28, 5, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Cluster Rocket, YELLOW BIG - SW'), +(26515, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 28, 5, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Cluster Rocket, YELLOW BIG - U'), +(26520, 0, 0, 256, 268437504, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Night Elf Lunar Festival Emissary'), +(26523, 0, 0, 159383808, 32, 1, 256, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Rajaxx Event - Bonus Cenarion Faction'), +(26524, 0, 0, 256, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Sand Trap'), +(26525, 0, 0, 536871296, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 18, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 'True Fulfillment'), +(26538, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Hive''Zara Larva'), +(26539, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Hive''Zara Larva'), +(26542, 0, 0, 256, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Sprint'), +(26543, 0, 0, 256, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Sprint'), +(26544, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Omen, self damage'), +(26553, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Choose Random Powers'), +(26559, 0, 0, 536871168, 136, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 'Drain Mana'), +(26564, 0, 0, 256, 0, 4, 268435456, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Viscidus Trigger'), +(26567, 0, 0, 448, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Despawn Self'), +(26569, 0, 0, 536871312, 268435592, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Hate to Zero'), +(26570, 0, 0, 8388992, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Prophet Skeram Death'), +(26577, 0, 0, 256, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 'Summon Toxic Slime'), +(26579, 0, 0, 256, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Teleport Eversong Woods - West Sanctum - Up'), +(26582, 0, 0, 448, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Despawn Self'), +(26585, 0, 0, 256, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Despawn Toxic Slimes'), +(26589, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Cancel True Fulfillment'), +(26591, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Teleport Image'), +(26592, 0, 0, 536936848, 268469248, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 85, 6, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Bestial Wrath'), +(26594, 0, 0, 671088912, 268435456, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Despawn Base'), +(26602, 0, 0, 384, 268468224, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Immune Effect: Taunt & AttackMe'), +(26603, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Initialize Twin'), +(26617, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 3, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Ouro Mound'), +(26619, 0, 0, 256, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 22, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Ouro Scarabs Periodic'), +(26626, 0, 0, 384, 136, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Mana Burn Area'), +(26627, 0, 0, 687866240, 168, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Suicide'), +(26628, 0, 0, 8388992, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Twin Suicide'), +(26630, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 25, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Spawn Vekniss Hatchlings'), +(26631, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 25, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Spawn Vekniss Hatchlings'), +(26632, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 25, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Spawn Vekniss Hatchlings'), +(26633, 0, 0, 256, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Glob Speed'), +(26634, 0, 0, 256, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 225, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Glob Speed'), +(26637, 0, 0, 536871312, 268435592, 4, 2147483648, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 487, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Hate to Zero'), +(26644, 0, 0, 256, 0, 4, 256, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Instakill Reset'), +(26648, 0, 0, 256, 0, 4, 256, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Port Out Stomach Effect'), +(26651, 0, 0, 384, 1024, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 36, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Execute'), +(26658, 0, 0, 2097536, 131072, 67108864, 196608, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Threat'), +(26668, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Create Heart Candy'), +(26670, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Create Heart Candy'), +(26671, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Create Heart Candy'), +(26672, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Create Heart Candy'), +(26673, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Create Heart Candy'), +(26674, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Create Heart Candy'), +(26675, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Create Heart Candy'), +(26676, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Create Heart Candy'), +(26684, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Get Gossip, Male'), +(26685, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Get Gossip, Female'), +(26741, 0, 0, 384, 1024, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'zzOldShiv'), +(26744, 0, 0, 336, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 'Poisonous Blood'), +(26766, 0, 0, 256, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 4, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Giant Eye Tentacles'), +(26767, 0, 0, 536871168, 268435456, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Giant Eye Tentacles'), +(26768, 0, 0, 256, 268435456, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Giant Eye Tentacles'), +(26769, 0, 0, 256, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 4, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Eye Tentacles'), +(26787, 0, 0, 536871168, 268533896, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 37, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Nullify'), +(26837, 0, 0, 256, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon InCombat Trigger'), +(26838, 0, 0, 256, 268435456, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Despawn InCombat Trigger'), +(26870, 0, 0, 128, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Amorous Timer, Standard Test'), +(26886, 0, 0, 384, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Hate to 75%'), +(26973, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Create BlizzCon Prize (Euro)'), +(26974, 0, 0, 384, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Create Korea Invitational Prize'), +(27027, 0, 0, 8388992, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Cancel Creeping Plague'), +(27178, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 5, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 'Defile'), +(27537, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Create Replacement Lord Valthalak''s Amulet'), +(27542, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Create Replacement Top Piece of Lord Valthalak''s Amulet'), +(27544, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Create Replacement Left Piece of Lord Valthalak''s Amulet'), +(27558, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Create Replacement Isalien''s Brazier of Beckoning'), +(27560, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Create Replacement Mor Grayhoof''s Brazier of Beckoning'), +(27562, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Create Replacement Kormok''s Brazier of Beckoning'), +(27563, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Create Replacement Jarien & Sothos''s Brazier of Beckoning'), +(27566, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Create Replacement Lord Valthalak''s Brazier of Beckoning'), +(27597, 0, 0, 696254720, 136, 5, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Teleport: Ironforge'), +(27598, 0, 0, 696254720, 136, 5, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Teleport: Undercity'), +(27600, 0, 0, 696254720, 136, 5, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Teleport: IF/UC'), +(27627, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Drop Obsidian'), +(27628, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Drop Obsidian'), +(27629, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Drop Obsidian'), +(27630, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Drop Obsidian'), +(27631, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Drop Obsidian'), +(27643, 0, 0, 8388864, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Spirit of Jarien'), +(27644, 0, 0, 8388864, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Spirit of Sothos'), +(27645, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Jarien/Sothos Winner Box'), +(27654, 0, 0, 384, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Love is in the Air Test'), +(27674, 0, 0, 150995200, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Threat'), +(27678, 0, 0, 536871056, 268436616, 4, 131072, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Reevaluate Targets'), +(27690, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 6, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 'Summon Bone Minion'), +(27691, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 6, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 'Summon Bone Minion'), +(27692, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 6, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 'Summon Bone Minion'), +(27693, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 6, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 'Summon Bone Minion'), +(27694, 0, 0, 8388864, 0, 1, 1048576, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Teleport to Razelikh (GROUP)'), +(27742, 0, 0, 128, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Amorous Timer, Standard'), +(27748, 0, 0, 256, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, '100 Mana'), +(27749, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Initialize Tank'), +(27770, 0, 0, 384, 0, 0, 33554432, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'The Leaper: Jump'), +(27773, 0, 0, 159383808, 32, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Ysida Freed - Argent Dawn Reputation'), +(27791, 0, 0, 150995392, 32, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Suicide'), +(27884, 0, 0, 128, 0, 0, 268435456, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Trainee'), +(27887, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Minion Spawner, small'), +(27896, 0, 0, 256, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Choose Random Skull Pile'); +INSERT INTO `spell_dbc` (`Id`, `Dispel`, `Mechanic`, `Attributes`, `AttributesEx`, `AttributesEx2`, `AttributesEx3`, `AttributesEx4`, `AttributesEx5`, `AttributesEx6`, `AttributesEx7`, `Stances`, `StancesNot`, `Targets`, `CastingTimeIndex`, `AuraInterruptFlags`, `ProcFlags`, `ProcChance`, `ProcCharges`, `MaxLevel`, `BaseLevel`, `SpellLevel`, `DurationIndex`, `RangeIndex`, `StackAmount`, `EquippedItemClass`, `EquippedItemSubClassMask`, `EquippedItemInventoryTypeMask`, `Effect1`, `Effect2`, `Effect3`, `EffectDieSides1`, `EffectDieSides2`, `EffectDieSides3`, `EffectRealPointsPerLevel1`, `EffectRealPointsPerLevel2`, `EffectRealPointsPerLevel3`, `EffectBasePoints1`, `EffectBasePoints2`, `EffectBasePoints3`, `EffectMechanic1`, `EffectMechanic2`, `EffectMechanic3`, `EffectImplicitTargetA1`, `EffectImplicitTargetA2`, `EffectImplicitTargetA3`, `EffectImplicitTargetB1`, `EffectImplicitTargetB2`, `EffectImplicitTargetB3`, `EffectRadiusIndex1`, `EffectRadiusIndex2`, `EffectRadiusIndex3`, `EffectApplyAuraName1`, `EffectApplyAuraName2`, `EffectApplyAuraName3`, `EffectAmplitude1`, `EffectAmplitude2`, `EffectAmplitude3`, `EffectMultipleValue1`, `EffectMultipleValue2`, `EffectMultipleValue3`, `EffectMiscValue1`, `EffectMiscValue2`, `EffectMiscValue3`, `EffectMiscValueB1`, `EffectMiscValueB2`, `EffectMiscValueB3`, `EffectTriggerSpell1`, `EffectTriggerSpell2`, `EffectTriggerSpell3`, `EffectSpellClassMaskA1`, `EffectSpellClassMaskA2`, `EffectSpellClassMaskA3`, `EffectSpellClassMaskB1`, `EffectSpellClassMaskB2`, `EffectSpellClassMaskB3`, `EffectSpellClassMaskC1`, `EffectSpellClassMaskC2`, `EffectSpellClassMaskC3`, `MaxTargetLevel`, `SpellFamilyName`, `SpellFamilyFlags1`, `SpellFamilyFlags2`, `SpellFamilyFlags3`, `MaxAffectedTargets`, `DmgClass`, `PreventionType`, `DmgMultiplier1`, `DmgMultiplier2`, `DmgMultiplier3`, `AreaGroupId`, `SchoolMask`, `Comment`) VALUES +(27921, 0, 0, 256, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Spectral Trainee'), +(27930, 0, 0, 256, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Choose Random Skull Pile'), +(27932, 0, 0, 256, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Spectral Knight'), +(27933, 0, 0, 256, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Invis Stalker'), +(27934, 0, 0, 8388864, 268435456, 5, 268435456, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Viscidus Shrinks'), +(27938, 0, 0, 256, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Choose Random Skull Pile'), +(27939, 0, 0, 256, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Spectral Rivendare'), +(27998, 0, 0, 537985280, 98304, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Flight Path'), +(27999, 0, 0, 262416, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 'Land Mine Periodic'), +(28000, 0, 0, 262480, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 'Land Mine Trigger'), +(28001, 0, 0, 537985280, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Flight Path'), +(28007, 0, 0, 2176, 0, 4, 268435456, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 16, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Trainee'), +(28008, 0, 0, 128, 0, 0, 268435456, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Knight'), +(28009, 0, 0, 2176, 0, 4, 268435456, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 25, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Knight'), +(28010, 0, 0, 128, 0, 0, 268435456, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Mounted Knight'), +(28011, 0, 0, 2176, 0, 4, 268435456, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 4, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Mounted Knight'), +(28033, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Aggro all in LOS'), +(28034, 0, 0, 384, 0, 0, 268435712, 128, 8, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Hate all in LOS'), +(28035, 0, 0, 384, 0, 4, 268435456, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Reset Gothik Event'), +(28082, 0, 0, 256, 0, 5, 256, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'BRD Kill Credit Trigger'), +(28083, 0, 0, 8388864, 0, 5, 256, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'BRD Kill Credit Effect'), +(28090, 0, 0, 256, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Minion Despawn Timer'), +(28091, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Despawner, self'), +(28094, 0, 0, 402915728, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Sneak'), +(28098, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Stalagg Tesla Effect'), +(28108, 0, 0, 256, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 'Tesla Chain'), +(28110, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Feugen Tesla Effect'), +(28115, 0, 0, 256, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 135, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Mark of Didier'), +(28116, 0, 0, 256, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Despawn Jarien''s Corpse'), +(28117, 0, 0, 256, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Despawn Sothos''s Corpse'), +(28129, 0, 0, 16777472, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Filming'), +(28138, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Feugen Initialize'), +(28139, 0, 0, 256, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Stalagg Passive'), +(28140, 0, 0, 536871168, 268435456, 0, 0, 0, 0, 16777216, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 'Taunt'), +(28162, 0, 0, 192, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 'Savage Guard'), +(28164, 0, 0, 192, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 'Ice Guard'), +(28166, 0, 0, 192, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 'Shadow Guard'), +(28175, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 6, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, '(DND) Summon Crystal Minion, Ghost'), +(28177, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 6, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, '(DND) Summon Crystal Minion, Skeleton'), +(28179, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 6, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, '(DND) Summon Crystal Minion, Ghoul'), +(28188, 0, 0, 262272, 1024, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 'Champion''s Bond'), +(28190, 0, 0, 536871168, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 9, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Mutate Effect'), +(28203, 0, 0, 384, 1024, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 14, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Find Camp Type'), +(28216, 0, 0, 320, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Zombie Chow'), +(28217, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Zombie Chow'), +(28218, 0, 0, 256, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Fallout Slime'), +(28227, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 9, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, '(DND) Summon Crystal Minion, finder'), +(28235, 0, 0, 256, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Zombie Chow Search'), +(28236, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Zombie Chow Search'), +(28237, 0, 0, 256, 268468224, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Immune Poly/Fear/'), +(28238, 0, 0, 256, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Zombie Chow Search'), +(28266, 0, 0, 538968448, 1024, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 153, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Tractor Beam'), +(28283, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Increase Reputation'), +(28289, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 30, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, '(DND) Summon Crystal Minion, Ghoul Uncommon'), +(28290, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 30, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, '(DND) Summon Crystal Minion, Ghost Uncommon'), +(28291, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 30, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, '(DND) Summon Crystal Minion, Skeleton Uncommon'), +(28292, 0, 0, 256, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Minion Despawn Timer, Uncommon'), +(28298, 0, 0, 464, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Lightning Totem'), +(28300, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Increase Reputation'), +(28302, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Increase Reputation'), +(28307, 0, 0, 384, 0, 0, 196864, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Hateful Strike Primer'), +(28312, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Increase Reputation'), +(28316, 0, 0, 754974976, 268435592, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 27, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Tent Prot (DND)'), +(28345, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Communique Trigger'), +(28349, 0, 0, 8388864, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Despawner, other'), +(28359, 0, 0, 256, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Trigger Teslas'), +(28364, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Damage vs. Guards'), +(28384, 0, 0, 448, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Portal of Shadows'), +(28388, 0, 0, 256, 1024, 4, 256, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Random Aggro'), +(28409, 0, 0, 536871168, 268435592, 4, 268435456, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 18, 6, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 'Chains of Kel''Thuzad'), +(28415, 0, 0, 256, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Type A Trigger'), +(28416, 0, 0, 256, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Type B Trigger'), +(28417, 0, 0, 256, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Type C Trigger'), +(28421, 0, 0, 256, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Type A'), +(28422, 0, 0, 256, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Type B'), +(28423, 0, 0, 256, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Type C'), +(28425, 0, 0, 256, 268435456, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Type A Periodic (3 sec)'), +(28426, 0, 0, 256, 268435456, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Type B Periodic (30 sec)'), +(28427, 0, 0, 256, 268435456, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Type C Periodic (30 sec)'), +(28432, 0, 0, 256, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Set Speed'), +(28446, 0, 0, 256, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Attack All Trigger'), +(28452, 0, 0, 256, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Despawn Wave Mobs'), +(28453, 0, 0, 256, 268435456, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Type D Periodic'), +(28454, 0, 0, 256, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Type D'), +(28455, 0, 0, 256, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Type D Trigger'), +(28469, 0, 0, 134217984, 336209024, 67649548, 8782080, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 64, 'Ghost Vision'), +(28523, 0, 0, 159383808, 0, 4, 268435456, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 'Despawn Ice Block'), +(28529, 0, 0, 256, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Frost Aura'), +(28532, 0, 0, 384, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Create iCoke Prize Voucher'), +(28534, 0, 0, 320, 268435592, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 'Chill'), +(28535, 0, 0, 256, 268435592, 4, 268435456, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 467, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 'Summon Ice Block'), +(28561, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 5, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 'Summon Blizzard'), +(28617, 0, 0, 256, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Web Wrap'), +(28618, 0, 0, 2304, 268435456, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 36, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Web Wrap'), +(28619, 0, 0, 2304, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 39, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Web Wrap'), +(28620, 0, 0, 2304, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 39, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Web Wrap'), +(28621, 0, 0, 2304, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 39, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Web Wrap'), +(28625, 0, 0, 134217984, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, '10% Health'), +(28627, 0, 0, 256, 268435456, 0, 268435456, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 265, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Web Wrap'), +(28628, 0, 0, 8388864, 0, 4, 268435456, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Clear Web Wrap'), +(28629, 0, 0, 256, 0, 0, 268435456, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Clear Web Wrap'), +(28663, 0, 0, 536871184, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Plague Claw Submerge Visual'), +(28713, 0, 0, 256, 536871936, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Inoculation'), +(28748, 0, 0, 256, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Instakill Self'), +(28781, 0, 0, 256, 0, 0, 268435456, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Spectral Side Assault'), +(28797, 0, 0, 67109136, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 'Widow''s Embrace'), +(28838, 0, 0, 384, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, '1 Health'), +(28868, 0, 0, 681574784, 1160, 67108869, 268435520, 2177, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Revenge for the Vargul: Thane Illskar Despawns Others'), +(28874, 0, 0, 384, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Consumption'), +(28881, 0, 0, 208, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Unholy Shadow'), +(28885, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Vindicator''s BP DND'), +(28886, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Vindicator''s Belt DND'), +(28908, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Vindicator''s Armguards DND'), +(28909, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Freethinker''s BP DND'), +(28919, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Freethinker''s Belt DND'), +(28920, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Freethinker''s Bracers DND'), +(28921, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Predator''s Mantle DND'), +(28923, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Augur''s Belt DND'), +(28926, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Augur''s Bracers DND'), +(28929, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Predator''s Belt DND'), +(28930, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Predator''s Bracers DND'), +(28935, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Madcap''s BP DND'), +(28937, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Madcap''s Mantle DND'), +(28939, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Madcap''s Bracers DND'), +(28940, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Haruspex''s BP DND'), +(28941, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Haruspex''s Belt DND'), +(28942, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Haruspex''s Bracers DND'), +(28943, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Confessor''s Mantle DND'), +(28945, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Confessor''s Belt DND'), +(28946, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Confessor''s Bracers DND'), +(28949, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Illusionist''s BP DND'), +(28951, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Illusionist''s Mantle DND'), +(28952, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Illusionist''s Bracers DND'), +(28954, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Demoniac''s BP DND'), +(28956, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Demoniac''s Mantle DND'), +(28958, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Demoniac''s Bracers DND'), +(28959, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Augur''s BP DND'), +(28961, 0, 0, 256, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Corpse Scarabs from Guard'), +(28992, 0, 0, 256, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Corpse Scarabs Delay'), +(28994, 0, 0, 256, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Corpse Scarabs Delay'), +(29009, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Mace of Unending Life DND'), +(29010, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Cloak of Unending Life DND'), +(29011, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Band of Unending Life DND'), +(29012, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Scythe of the Unseen Path DND'), +(29013, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Cloak of the Unseen Path DND'), +(29014, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Signet of the Unseen Path DND'), +(29015, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Blade of Vaulted Secrets DND'), +(29016, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Drape of Vaulted Secrets DND'), +(29017, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Band of Vaulted Secrets DND'), +(29018, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Blade of Eternal Justice DND'), +(29019, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Cape of Eternal Justice DND'), +(29020, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Ring of Eternal Justice DND'), +(29021, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Gavel of Infinite Wisdom DND'); +INSERT INTO `spell_dbc` (`Id`, `Dispel`, `Mechanic`, `Attributes`, `AttributesEx`, `AttributesEx2`, `AttributesEx3`, `AttributesEx4`, `AttributesEx5`, `AttributesEx6`, `AttributesEx7`, `Stances`, `StancesNot`, `Targets`, `CastingTimeIndex`, `AuraInterruptFlags`, `ProcFlags`, `ProcChance`, `ProcCharges`, `MaxLevel`, `BaseLevel`, `SpellLevel`, `DurationIndex`, `RangeIndex`, `StackAmount`, `EquippedItemClass`, `EquippedItemSubClassMask`, `EquippedItemInventoryTypeMask`, `Effect1`, `Effect2`, `Effect3`, `EffectDieSides1`, `EffectDieSides2`, `EffectDieSides3`, `EffectRealPointsPerLevel1`, `EffectRealPointsPerLevel2`, `EffectRealPointsPerLevel3`, `EffectBasePoints1`, `EffectBasePoints2`, `EffectBasePoints3`, `EffectMechanic1`, `EffectMechanic2`, `EffectMechanic3`, `EffectImplicitTargetA1`, `EffectImplicitTargetA2`, `EffectImplicitTargetA3`, `EffectImplicitTargetB1`, `EffectImplicitTargetB2`, `EffectImplicitTargetB3`, `EffectRadiusIndex1`, `EffectRadiusIndex2`, `EffectRadiusIndex3`, `EffectApplyAuraName1`, `EffectApplyAuraName2`, `EffectApplyAuraName3`, `EffectAmplitude1`, `EffectAmplitude2`, `EffectAmplitude3`, `EffectMultipleValue1`, `EffectMultipleValue2`, `EffectMultipleValue3`, `EffectMiscValue1`, `EffectMiscValue2`, `EffectMiscValue3`, `EffectMiscValueB1`, `EffectMiscValueB2`, `EffectMiscValueB3`, `EffectTriggerSpell1`, `EffectTriggerSpell2`, `EffectTriggerSpell3`, `EffectSpellClassMaskA1`, `EffectSpellClassMaskA2`, `EffectSpellClassMaskA3`, `EffectSpellClassMaskB1`, `EffectSpellClassMaskB2`, `EffectSpellClassMaskB3`, `EffectSpellClassMaskC1`, `EffectSpellClassMaskC2`, `EffectSpellClassMaskC3`, `MaxTargetLevel`, `SpellFamilyName`, `SpellFamilyFlags1`, `SpellFamilyFlags2`, `SpellFamilyFlags3`, `MaxAffectedTargets`, `DmgClass`, `PreventionType`, `DmgMultiplier1`, `DmgMultiplier2`, `DmgMultiplier3`, `AreaGroupId`, `SchoolMask`, `Comment`) VALUES +(29022, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Shroud of Infinite Wisdom DND'), +(29023, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Ring of Infinite Wisdom DND'), +(29024, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Dagger of Veiled Shadows DND'), +(29025, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Cloak of Veiled Shadows DND'), +(29026, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Band of Veiled Shadows DND'), +(29027, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Hammer of the Gathering Storm DND'), +(29028, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Cloak of the Gathering Storm DND'), +(29030, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Ring of the Gathering Storm DND'), +(29031, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Kris of Unspoken Names DND'), +(29032, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Shroud of Unspoken Names DND'), +(29033, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Ring of Unspoken Names DND'), +(29034, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Sickle of Unyielding Strength DND'), +(29035, 0, 0, 545259776, 268435592, 1, 269484032, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 8, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Bloodlord''s Aura'), +(29036, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Drape of Unyielding Strength DND'), +(29037, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Sickle of Unyielding Strength DND'), +(29046, 0, 0, 256, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 'Mutate Lasher'), +(29050, 0, 0, 384, 268435456, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 225, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Grow'), +(29052, 0, 0, 256, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 'Grow'), +(29103, 0, 0, 256, 268436480, 0, 131072, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Anub''Rekhan''s Aura'), +(29104, 0, 0, 536871168, 268436616, 0, 268566784, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 28, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Anub''Rekhan''s Aura'), +(29108, 0, 0, 8388864, 0, 4, 268435456, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Kill Web Wrap'), +(29110, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 5, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Enraged Mounts'), +(29111, 0, 0, 67109248, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Permafear'), +(29141, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 3, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Marauding Crust Borer'), +(29149, 0, 0, 384, 268435456, 4, 1048576, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 225, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Shrink'), +(29153, 0, 0, 536871184, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Gargoyle Stoneform Visual'), +(29154, 0, 0, 384, 268435456, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 64, 'Dummy Stoneskin'), +(29156, 0, 0, 384, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Create iCoke Giftbox Voucher'), +(29218, 0, 0, 256, 268435456, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 42, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 'Summon Flame Ring'), +(29230, 0, 0, 448, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Immune All'), +(29241, 0, 0, 256, 268437504, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Midsummer Merchant - Dwarf Female'), +(29242, 0, 0, 256, 268437504, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Midsummer Merchant - Orc Female'), +(29243, 0, 0, 256, 268437504, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Festival Flamekeeper - Troll Male'), +(29244, 0, 0, 256, 268437504, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Festival Flamekeeper - Tauren Female'), +(29245, 0, 0, 256, 268437504, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Festival Flamekeeper - Dwarf Male'), +(29246, 0, 0, 256, 268437504, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Festival Flamekeeper - Human Female'), +(29250, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Sapphiron DND'), +(29252, 0, 0, 256, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 28, 4, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Skeletons'), +(29261, 0, 0, 256, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 28, 4, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Skeletons'), +(29263, 0, 0, 134217984, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, '30 Damage'), +(29265, 0, 0, 256, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 28, 4, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Skeletons'), +(29270, 0, 0, 256, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 28, 4, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Skeletons'), +(29272, 0, 0, 134218112, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Despawn Injured Draenei'), +(29275, 0, 0, 328064, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Unstable Power'), +(29280, 0, 0, 256, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Web Wrap'), +(29281, 0, 0, 256, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Web Wrap'), +(29282, 0, 0, 256, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Web Wrap'), +(29283, 0, 0, 256, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Web Wrap'), +(29284, 0, 0, 328064, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Brittle Armor'), +(29285, 0, 0, 256, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Web Wrap'), +(29286, 0, 0, 328064, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Mercurial Shield'), +(29287, 0, 0, 256, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Web Wrap'), +(29288, 0, 0, 328064, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Restless Strength'), +(29296, 0, 0, 2304, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 39, 4, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Naxxramas Entry Flag Trigger DND'), +(29327, 0, 0, 320, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Sapphiron''s Wing Buffet'), +(29329, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Sapphiron''s Wing Buffet'), +(29330, 0, 0, 320, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 63, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Sapphiron''s Wing Buffet Despawn'), +(29336, 0, 0, 256, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Despawn Buffet'), +(29337, 0, 0, 256, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Teleport Eversong Woods - West Sanctum - Down'), +(29344, 0, 0, 384, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Create Korea Invitational Prize, Zergling'), +(29345, 0, 0, 400, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Waiter Search'), +(29351, 0, 0, 256, 268435592, 0, 268435456, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 135, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Plague Wave Controller (Slow)'), +(29372, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Glowing Sanctified Crystal'), +(29376, 0, 0, 537985280, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Flight Path'), +(29377, 0, 0, 537985280, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Flight Path'), +(29378, 0, 0, 400, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Servant Search'), +(29379, 0, 0, 256, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Despawn Crypt Guards'), +(29391, 0, 0, 256, 268435456, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Type A Periodic (4 sec)'), +(29392, 0, 0, 256, 268435456, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Type A Periodic (2 sec)'), +(29393, 0, 0, 256, 268435456, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Type B Periodic (25 sec)'), +(29394, 0, 0, 256, 268435456, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Type B Periodic (20 sec)'), +(29396, 0, 0, 256, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 4, 7, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Kaliri Female'), +(29397, 0, 0, 256, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 4, 7, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Kaliri Male'), +(29398, 0, 0, 256, 268435456, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Type B Periodic (15 sec)'), +(29399, 0, 0, 256, 268435456, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Type C Periodic (40 sec)'), +(29400, 0, 0, 256, 268435456, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Type C Periodic (35 sec)'), +(29401, 0, 0, 256, 268435456, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Type C Periodic (20 sec)'), +(29404, 0, 0, 256, 268435456, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Type A Periodic'), +(29409, 0, 0, 256, 268435456, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Type A Periodic (1 sec)'), +(29410, 0, 0, 256, 268435456, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Type A Periodic (5 sec)'), +(29411, 0, 0, 256, 268435456, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Type B Periodic (10 sec)'), +(29412, 0, 0, 256, 268435456, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Type C Periodic (15 sec)'), +(29429, 0, 0, 256, 0, 0, 268435456, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Creature Cooldown (10 sec)'), +(29430, 0, 0, 256, 0, 0, 268435456, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Creature Cooldown (5 sec)'), +(29431, 0, 0, 536871296, 0, 4, 262400, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Vanish'), +(29433, 0, 0, 2492816, 0, 4, 262144, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 36, 7, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Garrote'), +(29434, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Maexxna Spiderling'), +(29493, 0, 0, 400, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 'Concubine''s Caress'), +(29498, 0, 0, 256, 0, 0, 268435456, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 9, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Flesh Ripper Aggro'), +(29499, 0, 0, 272, 136, 0, 256, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Teleport Trigger'), +(29508, 0, 0, 256, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Crypt Guard'), +(29509, 0, 0, 256, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Attack All (Summoned Only) Trigger'), +(29510, 0, 0, 256, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Attack All (Summoned Only) Effect'), +(29518, 0, 0, 256, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Sillithus Flag Click (DND)'), +(29523, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 'Holy Ground'), +(29526, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Hate to Zero'), +(29530, 0, 0, 256, 268436480, 4, 196608, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 36, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Sillithus Flag Capture Test (DND)'), +(29532, 0, 0, 134217984, 268435460, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 7, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Ribbon Pole Channel Effect Trigger'), +(29536, 0, 0, 536871296, 136, 0, 268435456, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Boss Fight Reset 1'), +(29681, 0, 0, 256, 268435456, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 'Call All Zombie Chow'), +(29682, 0, 0, 256, 268435456, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 'Call All Zombie Chow'), +(29710, 0, 0, 134283520, 268435456, 524288, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Test Ribbon Pole Channel Trigger'), +(29713, 0, 0, 448, 136, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 2, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 'Ethereal Curse'), +(29767, 0, 0, 536871168, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 'Overload'), +(29785, 0, 0, 256, 268436480, 4, 131072, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Sillithus Flag Capture'), +(29800, 0, 0, 256, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Set Attumen Life'), +(29805, 0, 0, 8388992, 0, 0, 268435456, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 64, 'Return Fire'), +(29806, 0, 0, 8388992, 0, 0, 268435456, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 64, 'Return Fire'), +(29807, 0, 0, 8388992, 0, 0, 268435456, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 64, 'Return Fire'), +(29826, 0, 0, 128, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Self Stun (DND)'), +(29827, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Create Loch Modan Lager'), +(29828, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Create Stouthammer Lite'), +(29829, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Create Aerie Peak Pale Ale'), +(29856, 0, 0, 256, 268436616, 4, 131072, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 64, 'Astral Flare'), +(29857, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Astral Spark'), +(29863, 0, 0, 256, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Astral Spark Passive'), +(29867, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Fished Up Red Snapper'), +(29868, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Fished Up Crystal'), +(29869, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 25, 12, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Fished Up Murloc'), +(29871, 0, 0, 536871168, 268435592, 0, 268435712, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 28, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Ice Bolt Prot'), +(29873, 0, 0, 256, 268435592, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 96, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 64, 'Astral Flare'), +(29874, 0, 0, 256, 0, 0, 268435456, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Unrelenting Side Assault'), +(29875, 0, 0, 256, 0, 0, 268435712, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Check Unrelenting Side'), +(29878, 0, 0, 536871168, 0, 4, 276824064, 0, 0, 0, 0, 0, 0, 0, 190, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Instakill Self'), +(29894, 0, 0, 256, 335642624, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Sillithus Flag, Alliance, and speed limit (DND)'), +(29895, 0, 0, 256, 335642624, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Sillithus Flag, Horde, and speed limit (DND)'), +(29898, 0, 0, 256, 0, 0, 268435456, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Guardian of Icecrown'), +(29899, 0, 0, 256, 0, 0, 268435456, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Guardian of Icecrown'), +(29931, 0, 0, 554762496, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Flight Path'), +(29934, 0, 0, 554762496, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Flight Path'), +(29936, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Elemental Focus'), +(29950, 0, 0, 262272, 0, 0, 536870912, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 31, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Safe Fall'), +(29971, 0, 0, 687866112, 2147483816, 0, 268435456, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Clear Blizzard'), +(29984, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Initialize Aran'), +(29985, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'School Crowd Control'), +(29986, 0, 0, 536871296, 1024, 4194308, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Game Over Super Ability'), +(29988, 0, 0, 8388992, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Aran''s Cleanup'), +(29993, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Change Magic School'), +(29994, 0, 0, 554762496, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Flight Path'), +(29995, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Activate Frost Mode'), +(29996, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Activate Fire Mode'), +(29997, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Activate Arcane Mode'), +(30005, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'School Volley'), +(30011, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 2, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Quest - Ancestral Spirit Wolf Self Snare'), +(30028, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 31, 2, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Disarm'), +(30058, 0, 0, 2685403520, 268533760, 0, 268435456, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 23, 12, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Buffeting Winds of Susurrus'), +(30059, 0, 0, 537985280, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Trigger Flight Path'), +(30076, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Maexxna Spiderling'), +(30078, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Kil''rek Death Passive'), +(30082, 0, 0, 256, 268435456, 4, 268435456, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 27, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Charge Protection'), +(30083, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 3, 12, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Root Thresher'), +(30097, 0, 0, 256, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Despawn Summons'); +INSERT INTO `spell_dbc` (`Id`, `Dispel`, `Mechanic`, `Attributes`, `AttributesEx`, `AttributesEx2`, `AttributesEx3`, `AttributesEx4`, `AttributesEx5`, `AttributesEx6`, `AttributesEx7`, `Stances`, `StancesNot`, `Targets`, `CastingTimeIndex`, `AuraInterruptFlags`, `ProcFlags`, `ProcChance`, `ProcCharges`, `MaxLevel`, `BaseLevel`, `SpellLevel`, `DurationIndex`, `RangeIndex`, `StackAmount`, `EquippedItemClass`, `EquippedItemSubClassMask`, `EquippedItemInventoryTypeMask`, `Effect1`, `Effect2`, `Effect3`, `EffectDieSides1`, `EffectDieSides2`, `EffectDieSides3`, `EffectRealPointsPerLevel1`, `EffectRealPointsPerLevel2`, `EffectRealPointsPerLevel3`, `EffectBasePoints1`, `EffectBasePoints2`, `EffectBasePoints3`, `EffectMechanic1`, `EffectMechanic2`, `EffectMechanic3`, `EffectImplicitTargetA1`, `EffectImplicitTargetA2`, `EffectImplicitTargetA3`, `EffectImplicitTargetB1`, `EffectImplicitTargetB2`, `EffectImplicitTargetB3`, `EffectRadiusIndex1`, `EffectRadiusIndex2`, `EffectRadiusIndex3`, `EffectApplyAuraName1`, `EffectApplyAuraName2`, `EffectApplyAuraName3`, `EffectAmplitude1`, `EffectAmplitude2`, `EffectAmplitude3`, `EffectMultipleValue1`, `EffectMultipleValue2`, `EffectMultipleValue3`, `EffectMiscValue1`, `EffectMiscValue2`, `EffectMiscValue3`, `EffectMiscValueB1`, `EffectMiscValueB2`, `EffectMiscValueB3`, `EffectTriggerSpell1`, `EffectTriggerSpell2`, `EffectTriggerSpell3`, `EffectSpellClassMaskA1`, `EffectSpellClassMaskA2`, `EffectSpellClassMaskA3`, `EffectSpellClassMaskB1`, `EffectSpellClassMaskB2`, `EffectSpellClassMaskB3`, `EffectSpellClassMaskC1`, `EffectSpellClassMaskC2`, `EffectSpellClassMaskC3`, `MaxTargetLevel`, `SpellFamilyName`, `SpellFamilyFlags1`, `SpellFamilyFlags2`, `SpellFamilyFlags3`, `MaxAffectedTargets`, `DmgClass`, `PreventionType`, `DmgMultiplier1`, `DmgMultiplier2`, `DmgMultiplier3`, `AreaGroupId`, `SchoolMask`, `Comment`) VALUES +(30106, 0, 0, 536871296, 1024, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Transference'), +(30114, 0, 0, 256, 268435592, 0, 268435456, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 135, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Plague Wave Controller (Fast)'), +(30116, 0, 0, 256, 268435592, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 135, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Plague Wave Effect 1'), +(30117, 0, 0, 256, 268435592, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 135, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Plague Wave Effect 2'), +(30118, 0, 0, 256, 268435592, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 135, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Plague Wave Effect 3'), +(30119, 0, 0, 256, 268435592, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 135, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Plague Wave Effect 4'), +(30123, 0, 0, 8388992, 268435592, 4, 268435456, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 327, 6, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 'Sacrifice Remove'), +(30126, 0, 0, 8388992, 0, 4, 268435456, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 'Despawn Demon Chains'), +(30132, 0, 0, 696254720, 0, 4, 268435456, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 'Despawn Ice Block'), +(30133, 0, 0, 256, 0, 0, 268435456, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Creature Cooldown - 2(10 sec)'), +(30134, 0, 0, 536871168, 0, 5, 268435456, 0, 393224, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Despawn Boss Adds'), +(30135, 0, 0, 256, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Fly West'), +(30136, 0, 0, 256, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Fly East'), +(30137, 0, 0, 256, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Fly Center'), +(30139, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Create Upperdeck Tabard #1'), +(30150, 0, 0, 262608, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Tamed Pet Passive (DND)'), +(30176, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'ToWoW - Sillithus PvP Flag'), +(30182, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Create Upperdeck Tabard #2'), +(30185, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Create Upperdeck Tabard #3'), +(30186, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Create Upperdeck Tiger Cub'), +(30188, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Create Upperdeck Hippogryph Hatchling'), +(30189, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Create Perpetual Purple Firework'), +(30191, 0, 0, 8388864, 0, 4, 268435456, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Despawn Fiendish Portal'), +(30192, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Create Carved Ogre Idol'), +(30193, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Create Upperdeck Turtle Mount'), +(30196, 0, 0, 8388992, 0, 4, 268435456, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Fiendish Imp Passive'), +(30203, 0, 0, 8388864, 0, 4, 268435456, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Fiendish Imp Death'), +(30204, 0, 0, 256, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Flyby'), +(30209, 0, 0, 256, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Target Charred Earth'), +(30215, 0, 0, 384, 268436480, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Random Aggro'), +(30228, 0, 0, 256, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Despawn Summons'), +(30236, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 347, 7, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Astral Flare NE'), +(30239, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 347, 7, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Astral Flare NW'), +(30240, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 347, 7, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Astral Flare SE'), +(30241, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 347, 7, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Astral Flare SW'), +(30243, 0, 0, 320, 268435592, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 135, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Plague Wave'), +(30259, 0, 0, 536871168, 268437504, 67108864, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Statue (dnd)'), +(30268, 0, 0, 256, 1024, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Chess: Snap to Direction, BLACK (DND)'), +(30272, 0, 0, 256, 0, 0, 268435456, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Enable Square'), +(30274, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Chess: Snap to Square (DND)'), +(30275, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Is Square WHITE'), +(30276, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Chess: Give Square Color, WHITE'), +(30277, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Is Square BLACK'), +(30278, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Chess: Give Square Color, BLACK'), +(30279, 0, 0, 256, 1024, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Chess: Snap to Direction, WHITE (DND)'), +(30287, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Chess: Adjust Facing'), +(30333, 0, 0, 604307712, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Spark Transform DND'), +(30352, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 36, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Reset'), +(30382, 0, 0, 384, 1024, 4, 131328, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 64, 'Hateful Bolt Primer'), +(30396, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Nether Portal - Perseverence Passive'), +(30411, 0, 0, 256, 268435456, 128, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 9, 12, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Quest - Summon Wood'), +(30415, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Quest - Cleanse Wood Cast Effect'), +(30420, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 'Shadow Grasp'), +(30436, 0, 0, 256, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Extract Vapor'), +(30438, 0, 0, 256, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Extract Gas'), +(30439, 0, 0, 256, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Extract Gas'), +(30440, 0, 0, 384, 268435456, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 9, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, ' Increased Spell Hit Chance'), +(30441, 0, 0, 384, 268435456, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 9, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, ' Increased Spell Hit Chance'), +(30444, 0, 0, 2304, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 36, 3, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Stillpine Ancestor Yor TRIGGER'), +(30445, 0, 0, 256, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 40, 12, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Stillpine Ancestor Yor'), +(30480, 0, 0, 128, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 9, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Lava Bomb (small)'), +(30492, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 'Sticky Ooze'), +(30509, 0, 0, 603979776, 136, 268435460, 268435456, 0, 32, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 38, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 'Mind Exhaustion'), +(30517, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Avenger Trigger Aura'), +(30518, 0, 0, 545259904, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Avenger Trigger Death'), +(30521, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Nether Beam Fade'), +(30525, 0, 0, 536871296, 268435456, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 'Taunt'), +(30535, 0, 0, 537985280, 98304, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Flight Path'), +(30576, 0, 0, 0, 268435456, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 165, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Quake'), +(30620, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Burning Maul'), +(30623, 0, 0, 448, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 'Fel Miasma Passive'), +(30627, 0, 0, 448, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 64, 'Arcane Surge Passive'), +(30629, 0, 0, 256, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Debris'), +(30630, 0, 0, 256, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 3, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Debris'), +(30634, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Netted Goods'), +(30642, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Request Heal'), +(30655, 0, 0, 805306752, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Suicide'), +(30693, 0, 0, 8388864, 1024, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Call Nazan'), +(30694, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Logic Timer'), +(30696, 0, 0, 256, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Fly North'), +(30698, 0, 0, 256, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Fly West'), +(30699, 0, 0, 256, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Fly East'), +(30726, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 'Retarget'), +(30733, 0, 0, 256, 268435968, 4, 131328, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Aggro'), +(30734, 0, 0, 384, 128, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Orbital Strike Wipe'), +(30737, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 6, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Heathen'), +(30743, 0, 0, 0, 1024, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Face Random Fel Orc'), +(30747, 0, 0, 384, 268435456, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Draenei Quest Flag 000 DND'), +(30748, 0, 0, 2432, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 36, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Draenei Quest Flag Trigger DND'), +(30773, 0, 0, 2304, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 36, 3, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Elekk TRIGGER'), +(30774, 0, 0, 256, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 40, 12, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Elekk'), +(30781, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Elekk Quest Credit'), +(30785, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 6, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Reaver'), +(30786, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 6, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Sharpshooter'), +(30788, 0, 0, 8388992, 0, 4, 268435456, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Despawn Warchief Guards'), +(30789, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Greater Manawraith Explode'), +(30791, 0, 0, 8388992, 268435456, 4, 256, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 36, 14, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 'Treacherous Aura'), +(30792, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 23, 7, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Ravager Ambusher'), +(30793, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Aggro Elekk'), +(30794, 0, 0, 536871296, 1024, 4, 269484032, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 'Summoned Imp'), +(30795, 0, 0, 536871296, 1024, 4, 269484032, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 'Summoned Succubus'), +(30796, 0, 0, 536871296, 1024, 4, 269484032, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 'Summoned Voidwalker'), +(30797, 0, 0, 536871296, 1024, 4, 269484032, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 'Summoned Felhunter'), +(30825, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 23, 7, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Siltfin Ambusher'), +(30826, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 23, 7, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Wildkin Ambusher'), +(30827, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 23, 7, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Bristlelimb Ambusher'), +(30828, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 23, 7, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Sunhawk Ambushers'), +(30855, 0, 0, 384, 1024, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Tel''athion Reply'), +(30897, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Infernal'), +(30899, 0, 0, 256, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Malchezaar Axe Wield'), +(30929, 0, 0, 256, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Arcanagos to Nightbane'), +(30948, 0, 0, 256, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Flame Arrow Target'), +(30949, 0, 0, 256, 268435456, 4, 131328, 0, 0, 4, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Flame Arrow Target'), +(30954, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 3, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Free Webbed Creature'), +(30955, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 3, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Free Webbed Creature'), +(30956, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 3, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Free Webbed Creature'), +(30957, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 3, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Free Webbed Creature'), +(30958, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 3, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Free Webbed Creature'), +(30959, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 3, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Free Webbed Creature'), +(30960, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 3, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Free Webbed Creature'), +(30961, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 3, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Free Webbed Creature'), +(30962, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 3, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Free Webbed Creature'), +(30963, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 3, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Free Webbed Creature'), +(30966, 0, 0, 8388864, 0, 0, 268435456, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Suicide While Dead'), +(30975, 0, 0, 256, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Gauntlet Guards'), +(30976, 0, 0, 256, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Gauntlet Guards'), +(30982, 0, 0, 786880, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 'Crippling Poison'), +(30983, 0, 0, 262528, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 29, 2, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 'Wound Poison'), +(30993, 0, 0, 256, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Despawn Gauntlet'), +(30998, 0, 0, 459152, 262656, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Cheap Shot'), +(31001, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 3, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Create Elekk Dung'), +(31010, 0, 0, 256, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 3, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Free Webbed Creature'), +(31011, 0, 0, 2304, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 65, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Free Webbed Creature'), +(31030, 0, 0, 384, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Damage vs. Sunhawk'), +(31031, 0, 0, 384, 268435968, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Damage vs. Argus'), +(31207, 0, 0, 256, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Hellfire Cancel Summon'), +(31248, 0, 0, 128, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 36, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Self Stun - 1 second, no visual'), +(31251, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Filled Shimmering Vessel'), +(31253, 0, 0, 268501248, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 'Summon Hellfire Imp'), +(31254, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 'Dismiss Hellfire Imp'), +(31265, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Complete First Trial'), +(31291, 0, 0, 192, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 'Sleep'), +(31313, 0, 0, 256, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Make Player Summon Boss'), +(31314, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Blood Knight Insignia'), +(31318, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Infinite Assassin'), +(31321, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Black Morass Rift Lord'), +(31322, 0, 0, 256, 268435456, 0, 268435456, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Close Time Rift Trigger'), +(31323, 0, 0, 8388864, 0, 4, 268435456, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Close Time Rift Effect'), +(31327, 0, 0, 256, 0, 4, 268435456, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Medivh Dies!'), +(31342, 0, 0, 8388992, 268959744, 0, 0, 0, 384, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Eat My Corpse'), +(31348, 0, 0, 545259776, 268435592, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 'Doom'), +(31351, 0, 0, 256, 268436480, 4, 131328, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Fresh Carcass Aura'), +(31352, 0, 0, 256, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Time Rift Ready Primer'), +(31353, 0, 0, 256, 268435456, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 23, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Time Rift Periodic 90'); +INSERT INTO `spell_dbc` (`Id`, `Dispel`, `Mechanic`, `Attributes`, `AttributesEx`, `AttributesEx2`, `AttributesEx3`, `AttributesEx4`, `AttributesEx5`, `AttributesEx6`, `AttributesEx7`, `Stances`, `StancesNot`, `Targets`, `CastingTimeIndex`, `AuraInterruptFlags`, `ProcFlags`, `ProcChance`, `ProcCharges`, `MaxLevel`, `BaseLevel`, `SpellLevel`, `DurationIndex`, `RangeIndex`, `StackAmount`, `EquippedItemClass`, `EquippedItemSubClassMask`, `EquippedItemInventoryTypeMask`, `Effect1`, `Effect2`, `Effect3`, `EffectDieSides1`, `EffectDieSides2`, `EffectDieSides3`, `EffectRealPointsPerLevel1`, `EffectRealPointsPerLevel2`, `EffectRealPointsPerLevel3`, `EffectBasePoints1`, `EffectBasePoints2`, `EffectBasePoints3`, `EffectMechanic1`, `EffectMechanic2`, `EffectMechanic3`, `EffectImplicitTargetA1`, `EffectImplicitTargetA2`, `EffectImplicitTargetA3`, `EffectImplicitTargetB1`, `EffectImplicitTargetB2`, `EffectImplicitTargetB3`, `EffectRadiusIndex1`, `EffectRadiusIndex2`, `EffectRadiusIndex3`, `EffectApplyAuraName1`, `EffectApplyAuraName2`, `EffectApplyAuraName3`, `EffectAmplitude1`, `EffectAmplitude2`, `EffectAmplitude3`, `EffectMultipleValue1`, `EffectMultipleValue2`, `EffectMultipleValue3`, `EffectMiscValue1`, `EffectMiscValue2`, `EffectMiscValue3`, `EffectMiscValueB1`, `EffectMiscValueB2`, `EffectMiscValueB3`, `EffectTriggerSpell1`, `EffectTriggerSpell2`, `EffectTriggerSpell3`, `EffectSpellClassMaskA1`, `EffectSpellClassMaskA2`, `EffectSpellClassMaskA3`, `EffectSpellClassMaskB1`, `EffectSpellClassMaskB2`, `EffectSpellClassMaskB3`, `EffectSpellClassMaskC1`, `EffectSpellClassMaskC2`, `EffectSpellClassMaskC3`, `MaxTargetLevel`, `SpellFamilyName`, `SpellFamilyFlags1`, `SpellFamilyFlags2`, `SpellFamilyFlags3`, `MaxAffectedTargets`, `DmgClass`, `PreventionType`, `DmgMultiplier1`, `DmgMultiplier2`, `DmgMultiplier3`, `AreaGroupId`, `SchoolMask`, `Comment`) VALUES +(31354, 0, 0, 256, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Time Rift Effect (1)'), +(31355, 0, 0, 256, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Time Rift Effect (2)'), +(31356, 0, 0, 256, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Time Rift Effect (3)'), +(31357, 0, 0, 256, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Time Rift Effect (4)'), +(31360, 0, 0, 16, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 8, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Alert On'), +(31362, 0, 0, 384, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 36, 134, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Explode the Spice'), +(31374, 0, 0, 272, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 5, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Netherstorm Backlash'), +(31375, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Ghostly Touch'), +(31388, 0, 0, 0, 16388, 0, 268435456, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 'Time Rift Channel Trigger'), +(31391, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Black Morass Chrono Lord Deja'), +(31392, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Black Morass Temporus'), +(31393, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Black Morass Rift End Boss'), +(31395, 0, 0, 256, 0, 4, 268435456, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Medivh Lives!'), +(31421, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Infinite Chronomancer'), +(31514, 0, 0, 16777472, 268435456, 0, 268435456, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Flight Mode'), +(31518, 0, 0, 262528, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 64, 'Trueshot Aura'), +(31520, 0, 0, 8388864, 0, 5, 256, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Stratholme Kill Credit Effect'), +(31522, 0, 0, 256, 0, 5, 256, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Strath Kill Credit Trigger'), +(31524, 0, 0, 8388864, 0, 5, 256, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Stillblade Kill Credit Effect'), +(31525, 0, 0, 256, 0, 5, 256, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Stillblade Kill Credit Trigger'), +(31528, 0, 0, 272, 268435456, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 6, 6, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Gnome'), +(31529, 0, 0, 272, 268435456, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 6, 6, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Gnome'), +(31530, 0, 0, 272, 268435456, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 6, 6, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Gnome'), +(31531, 0, 0, 256, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 27, 4, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Gnomes'), +(31544, 0, 0, 272, 268435456, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 6, 6, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Distiller'), +(31545, 0, 0, 272, 268435456, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 6, 6, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Distiller'), +(31562, 0, 0, 384, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 32, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Trigger Sandworm Mortar'), +(31564, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Move Away Primer'), +(31580, 0, 0, 384, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Despawn Self'), +(31592, 0, 0, 65920, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Crypt Scarabs'), +(31593, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 4, 7, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Greater Manawraith'), +(31594, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 9, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Prevent Summon'), +(31632, 0, 0, 256, 268435456, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 3, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Time Rift Periodic 120'), +(31636, 0, 0, 256, 268435456, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 22, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Time Rift Periodic 45'), +(31637, 0, 0, 256, 268435456, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 62, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Time Rift Periodic 75'), +(31691, 0, 0, 384, 268435456, 4, 1048576, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 225, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Shrink'), +(31692, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 7, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Underbog Mushroom'), +(31693, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Putrid Mushroom Primer'), +(31708, 0, 0, 448, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Speed'), +(31720, 0, 0, 603982208, 268435456, 0, 268435456, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 35, 6, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Suspension Primer'), +(31728, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'As the Crow Flies Complete'), +(31746, 0, 0, 537919872, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 554, 5, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Stormcrow Shape'), +(31752, 0, 0, 537985280, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Flight Path'), +(31753, 0, 0, 537985280, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Flight Path'), +(31763, 0, 0, 272, 268435456, 0, 268435456, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 36, 7, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Distiller Dummy'), +(31767, 0, 0, 272, 268435456, 0, 268435456, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 135, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Distiller Dummy Despawn'), +(31768, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Sandworm Base'), +(31770, 0, 0, 256, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Guard Slip''kik Trigger'), +(31773, 0, 0, 536871296, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 106, 3, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'As the Crow Flies Whisper Aura'), +(31774, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 467, 3, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'As the Crow Flies Whisper Aura'), +(31775, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 205, 3, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'As the Crow Flies Whisper Aura'), +(31776, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 3, 3, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'As the Crow Flies Whisper Aura'), +(31777, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 4, 3, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'As the Crow Flies Whisper Aura'), +(31788, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Elekk Taxi'), +(31800, 0, 0, 536871168, 268435592, 536870916, 268435456, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 205, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 'Icebolt'), +(31887, 0, 0, 603980160, 268435456, 0, 0, 4, 32, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 41, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Combat Mark'), +(31888, 0, 0, 536871168, 1024, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Choose Target'), +(31899, 0, 0, 536871168, 524288, 4, 268435456, 0, 0, 0, 0, 0, 0, 0, 190, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Instakill Allies'), +(31912, 0, 0, 256, 0, 5, 256, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Ysida Saved Credit Trigger'), +(31913, 0, 0, 8388864, 0, 5, 256, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Ysida Saved Credit Effect'), +(31917, 0, 0, 384, 136, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 'Move'), +(31918, 0, 0, 384, 136, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 'Move'), +(31919, 0, 0, 384, 136, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 'Move'), +(31924, 0, 0, 536871168, 0, 4, 268435456, 0, 0, 0, 0, 0, 0, 0, 190, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Instakill Other'), +(31937, 0, 0, 384, 268435456, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 3, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Grow'), +(31940, 0, 0, 262400, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 'Blood Knight Respect (DND)'), +(31952, 0, 0, 256, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 'Blood Knight Respect (DND)'), +(31957, 0, 0, 256, 524288, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Guard Catches Fire'), +(31959, 0, 0, 256, 524288, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Fire Bomb Target Summon Trigger'), +(31960, 0, 0, 256, 524288, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Fire Bomb Target Summon Effect'), +(31968, 0, 0, 536871168, 136, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 'Doomfire'), +(31989, 0, 0, 536871168, 268435592, 4, 268435456, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 18, 6, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 'Enslave Humanoid'), +(31995, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 25, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Shattered Rumbler'), +(32031, 0, 0, 256, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Goblin Follow Trigger'), +(32044, 0, 0, 536871296, 1160, 4, 1179904, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 9, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Soul Charge'), +(32046, 0, 0, 2281701632, 268435456, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Hellfire Fort Buff'), +(32047, 0, 0, 2281701632, 268435456, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Hellfire Superiority'), +(32048, 0, 0, 2281701632, 268435456, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Hellfire Superiority'), +(32050, 0, 0, 2281701760, 268435456, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Hellfire Fort Buff'), +(32058, 0, 0, 2281701632, 268435456, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Hellfire Fort Buff'), +(32059, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Attack Run 1'), +(32061, 0, 0, 134217984, 0, 268435456, 262144, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 135, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, '(TXT) ToWoW - Tower Kill Credit (DND)'), +(32068, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Attack Run 2'), +(32069, 0, 0, 2281701632, 268435456, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Hellfire Superiority'), +(32070, 0, 0, 2281701632, 268435456, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Hellfire Superiority'), +(32072, 0, 0, 134218112, 0, 268435460, 262400, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 135, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Battle Morale'), +(32073, 0, 0, 134217728, 0, 268435460, 268697856, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 135, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Tower Capture Test (DND)'), +(32075, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Attack Run 3'), +(32081, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Attack Run 4'), +(32086, 0, 0, 384, 268435592, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Dummy Nuke'), +(32113, 0, 0, 536871296, 136, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Root'), +(32114, 0, 0, 384, 136, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 30, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Wisp'), +(32116, 0, 0, 536871296, 136, 0, 262144, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Denouement'), +(32117, 0, 0, 536870912, 1024, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Choose Target (10 yd)'), +(32118, 0, 0, 384, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Floating Hate to Zero'), +(32123, 0, 0, 536870912, 1024, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Choose Target (Not Flying, 50 yd)'), +(32128, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Flee If All Targets Fly'), +(32147, 0, 0, 8388992, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 28, 12, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Ignite Corpse'), +(32151, 0, 0, 256, 524288, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Infernal'), +(32152, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Elder Kuruti''s Response'), +(32153, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12, 'Flames'), +(32156, 0, 0, 256, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Guard Spawns'), +(32157, 0, 0, 256, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Set Guard Count'), +(32165, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Create Fire Bombs'), +(32171, 0, 0, 384, 1024, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Dummy'), +(32184, 0, 0, 671089024, 268436480, 5, 1048576, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Earth Totem Transform'), +(32185, 0, 0, 384, 268435592, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 35, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 'Orbital Strike'), +(32186, 0, 0, 671089024, 268436480, 5, 1048576, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Fire Totem Transform'), +(32187, 0, 0, 671089024, 268436480, 5, 1048576, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Water Totem Transform'), +(32188, 0, 0, 671089024, 268436480, 5, 1048576, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Air Totem Transform'), +(32210, 0, 0, 384, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 407, 2, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Become My Spar Buddy'), +(32213, 0, 0, 384, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 25, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Shadow of the Forest SI DND'), +(32218, 0, 0, 537133312, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Duel Kill Credit'), +(32222, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Harvest Glowcap'), +(32229, 0, 0, 8388992, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 26, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Drop Battle Plans DND'), +(32252, 0, 0, 256, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Karazhan - Chess NPC State, Moving'), +(32257, 0, 0, 256, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Karazhan - Chess: Event Start, Horde'), +(32258, 0, 0, 256, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Karazhan - Chess: Event Start, Alliance'), +(32283, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 12, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Focus Fire'), +(32291, 0, 0, 2432, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 27, 37, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Focus Fire'), +(32299, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Lantresor of the Blade'), +(32313, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Face Current Enemy'), +(32326, 0, 0, 256, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 'Void Blast'), +(32331, 0, 0, 536871168, 0, 67108868, 268435456, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Despawn Hyjal Undead'), +(32333, 0, 0, 256, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 9, 6, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Rotate 360'), +(32335, 0, 0, 400, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 7, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Cyclone'), +(32336, 0, 0, 536871168, 0, 0, 268697600, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Cyclone'), +(32340, 0, 0, 536871168, 0, 4, 268435456, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Despawn Hyjal Friendly'), +(32341, 0, 0, 384, 268437504, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 8, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Mirren No Hat (DND)'), +(32342, 0, 0, 256, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Clear Brood Affliction: Bronze'), +(32360, 0, 0, 272, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 25, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Stolen Soul'), +(32425, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Face Highest Threat'), +(32432, 0, 0, 688128256, 32, 67649545, 0, 128, 393224, 4096, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Full Heal / Mana'), +(32433, 0, 0, 256, 268435456, 4, 256, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Clear Zangar Flag'), +(32438, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Neutral Flag Taken'), +(32444, 0, 0, 384, 268435456, 4, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Empoor''s Bodyguard Leave Combat'), +(32460, 0, 0, 256, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Raging Soul Passive'), +(32551, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Nethrandamus Flight'), +(32555, 0, 0, 256, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Despawn Tzerak'), +(32558, 0, 0, 384, 1024, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Naturalist Bite Calls To Quagmirran'), +(32559, 0, 0, 537919872, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 328, 3, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Nethrandamus Taxi'), +(32561, 0, 0, 537919872, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 554, 5, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Nethrandamus Quest Marker'), +(32562, 0, 0, 536871296, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Nethrandamus Quest Credit'), +(32565, 0, 0, 256, 1024, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Despawn Crystals'), +(32579, 0, 0, 2304, 1024, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Portal Beam'), +(32586, 0, 0, 696254848, 268436512, 273170437, 269681152, 8388736, 393224, 4608, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 347, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'QID 10004'), +(32611, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Karazhan - Chess, Medivh: Pawn, Horde'), +(32613, 0, 0, 256, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Medivh''s Shield -5%'), +(32617, 0, 0, 256, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Gold Peasant Transform'), +(32619, 0, 0, 256, 268435456, 4, 256, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Flame Arrow Target Event'), +(32620, 0, 0, 4194560, 0, 4, 0, 0, 0, 4, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Check Reset'), +(32621, 0, 0, 4194560, 268435456, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Check Reset Periodic'), +(32624, 0, 0, 256, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Check Quad 1'); +INSERT INTO `spell_dbc` (`Id`, `Dispel`, `Mechanic`, `Attributes`, `AttributesEx`, `AttributesEx2`, `AttributesEx3`, `AttributesEx4`, `AttributesEx5`, `AttributesEx6`, `AttributesEx7`, `Stances`, `StancesNot`, `Targets`, `CastingTimeIndex`, `AuraInterruptFlags`, `ProcFlags`, `ProcChance`, `ProcCharges`, `MaxLevel`, `BaseLevel`, `SpellLevel`, `DurationIndex`, `RangeIndex`, `StackAmount`, `EquippedItemClass`, `EquippedItemSubClassMask`, `EquippedItemInventoryTypeMask`, `Effect1`, `Effect2`, `Effect3`, `EffectDieSides1`, `EffectDieSides2`, `EffectDieSides3`, `EffectRealPointsPerLevel1`, `EffectRealPointsPerLevel2`, `EffectRealPointsPerLevel3`, `EffectBasePoints1`, `EffectBasePoints2`, `EffectBasePoints3`, `EffectMechanic1`, `EffectMechanic2`, `EffectMechanic3`, `EffectImplicitTargetA1`, `EffectImplicitTargetA2`, `EffectImplicitTargetA3`, `EffectImplicitTargetB1`, `EffectImplicitTargetB2`, `EffectImplicitTargetB3`, `EffectRadiusIndex1`, `EffectRadiusIndex2`, `EffectRadiusIndex3`, `EffectApplyAuraName1`, `EffectApplyAuraName2`, `EffectApplyAuraName3`, `EffectAmplitude1`, `EffectAmplitude2`, `EffectAmplitude3`, `EffectMultipleValue1`, `EffectMultipleValue2`, `EffectMultipleValue3`, `EffectMiscValue1`, `EffectMiscValue2`, `EffectMiscValue3`, `EffectMiscValueB1`, `EffectMiscValueB2`, `EffectMiscValueB3`, `EffectTriggerSpell1`, `EffectTriggerSpell2`, `EffectTriggerSpell3`, `EffectSpellClassMaskA1`, `EffectSpellClassMaskA2`, `EffectSpellClassMaskA3`, `EffectSpellClassMaskB1`, `EffectSpellClassMaskB2`, `EffectSpellClassMaskB3`, `EffectSpellClassMaskC1`, `EffectSpellClassMaskC2`, `EffectSpellClassMaskC3`, `MaxTargetLevel`, `SpellFamilyName`, `SpellFamilyFlags1`, `SpellFamilyFlags2`, `SpellFamilyFlags3`, `MaxAffectedTargets`, `DmgClass`, `PreventionType`, `DmgMultiplier1`, `DmgMultiplier2`, `DmgMultiplier3`, `AreaGroupId`, `SchoolMask`, `Comment`) VALUES +(32625, 0, 0, 256, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Check Quad 2'), +(32626, 0, 0, 256, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Check Quad 3'), +(32627, 0, 0, 256, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Check Quad 4'), +(32628, 0, 0, 256, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Quad 1 Effect'), +(32629, 0, 0, 256, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Quad 2 Effect'), +(32630, 0, 0, 256, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Quad 3 Effect'), +(32631, 0, 0, 256, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Quad 4 Effect'), +(32632, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 3, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Overrun Target'), +(32634, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Overrun Target Spawn'), +(32635, 0, 0, 256, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Overrun Target Spawn Effect'), +(32673, 0, 0, 384, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Create Replacement Extract of the Afterlife'), +(32687, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Karazhan - Chess, Medivh: Pawn, Alliance'), +(32718, 0, 0, 256, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Sprint'), +(32719, 0, 0, 256, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Sprint'), +(32726, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Karazhan - Chess, NPC Action: Find Enemy Horde (Melee)'), +(32762, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Incendiary Bombs'), +(32763, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Dissipate'), +(32781, 0, 0, 536871296, 1024, 4, 269484032, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 'Summoned Felguard'), +(32782, 0, 0, 159383808, 1, 128, 0, 0, 0, 4, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 'Summon Felguard'), +(32798, 0, 0, 150995392, 32, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Suicide'), +(32799, 0, 0, 150995392, 32, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Suicide'), +(32800, 0, 0, 150995392, 32, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Suicide'), +(32827, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Increase Reputation'), +(32887, 0, 0, 256, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 96, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 'Raging Soul'), +(32891, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Durnhold Flight DND'), +(32892, 0, 0, 537919872, 0, 0, 268435456, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Brazen Taxi'), +(32893, 0, 0, 2304, 268435456, 0, 1048576, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 6, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Equip Armor'), +(32941, 0, 0, 268435840, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 'Blue Beam Dummy'), +(32949, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon the Dude'), +(32985, 0, 0, 134218112, 1024, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Hellfire Fort Buff Reward Raid'), +(33003, 0, 0, 2281701760, 268435456, 268435457, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Hellfire Zone Buff'), +(33007, 0, 0, 2818572672, 268435456, 268435456, 1048576, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Nagrand PvP Buff'), +(33008, 0, 0, 2281701760, 268437504, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Nagrand PvP Buff (Area Aura)'), +(33011, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Remember Start Position'), +(33121, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 9, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'A Vision of the Forgotten'), +(33122, 0, 0, 536873344, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 65, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'A Vision of the Forgotten'), +(33137, 0, 0, 384, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Create Elemental Sapta'), +(33189, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 9, 5, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 64, 'Astromancer Split'), +(33228, 0, 0, 262400, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Gossip NPC Periodic Trigger - Fidget'), +(33229, 0, 0, 256, 136, 4, 805306368, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Wrath of the Astromancer'), +(33242, 0, 0, 256, 524288, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 3, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Infernal'), +(33244, 0, 0, 0, 0, 0, 268435456, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Teleport Start Position'), +(33281, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 9, 5, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 64, 'Astromancer Split'), +(33282, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 9, 5, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 64, 'Astromancer Split'), +(33317, 0, 0, 537985280, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Flight Path'), +(33318, 0, 0, 537985280, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Flight Path'), +(33319, 0, 0, 537985280, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Flight Path'), +(33320, 0, 0, 537985280, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Flight Path'), +(33330, 0, 0, 402653440, 268435520, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 35, 96, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Flee'), +(33347, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 9, 5, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 64, 'Astromancer Split'), +(33348, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 9, 5, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 64, 'Astromancer Split'), +(33349, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 9, 5, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 64, 'Astromancer Split'), +(33350, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 9, 5, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 64, 'Astromancer Split'), +(33351, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 9, 5, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 64, 'Astromancer Split'), +(33352, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 9, 5, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 64, 'Astromancer Split'), +(33353, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 9, 5, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 64, 'Astromancer Split'), +(33354, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 9, 5, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 64, 'Astromancer Split'), +(33355, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 9, 5, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 64, 'Astromancer Split'), +(33362, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 5, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Astromancer Adds'), +(33363, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Infinite Executioner'), +(33364, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Infinite Vanquisher'), +(33366, 0, 0, 256, 0, 4, 268435456, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Astromancer Solarian'), +(33367, 0, 0, 256, 0, 0, 268435456, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Astromancer Priest'), +(33374, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Astromancer Choice'), +(33375, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Set Health'), +(33376, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Unlink Combat Group'), +(33399, 0, 0, 4194578, 1024, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Shoot'), +(33408, 0, 0, 384, 0, 0, 0, 0, 131072, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Snare Self'), +(33420, 0, 0, 384, 268436616, 0, 196608, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 36, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 64, 'zzOldArcane Missiles'), +(33460, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 'Inhibit Magic'), +(33495, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Random Tractor'), +(33497, 0, 0, 538968448, 1024, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 135, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Tractor Beam'), +(33505, 0, 0, 65920, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Aid'), +(33514, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Random Tractor'), +(33515, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Random Tractor'), +(33516, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Random Tractor'), +(33517, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Random Tractor'), +(33518, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Random Tractor'), +(33519, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Random Tractor'), +(33520, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Random Tractor'), +(33521, 0, 0, 150995200, 1024, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Hate This Target and Aggro'), +(33524, 0, 0, 150995200, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Hate This Target'), +(33544, 0, 0, 256, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 4, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Infernaling Duration'), +(33558, 0, 0, 65920, 136, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 64, 'Draw Shadows'), +(33567, 0, 0, 65920, 136, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 'Summon Void Portal D'), +(33568, 0, 0, 8454528, 136, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 'Despawn Void Portals'), +(33595, 0, 0, 256, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Elementals'), +(33609, 0, 0, 150995200, 1024, 1048580, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Hate This Target and Aggro 2 sec later'), +(33610, 0, 0, 272, 268435456, 4, 268435456, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 135, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Syth A Dummy'), +(33611, 0, 0, 272, 268435456, 4, 268435456, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 135, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Syth B Dummy'), +(33612, 0, 0, 272, 268435456, 4, 268435456, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 135, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Syth C Dummy'), +(33613, 0, 0, 272, 268435456, 4, 268435456, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 135, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Syth D Dummy'), +(33614, 0, 0, 65920, 136, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 'Summon Void Portal B'), +(33615, 0, 0, 65920, 136, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 'Summon Void Portal C'), +(33616, 0, 0, 65920, 136, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 'Summon Void Portal E'), +(33621, 0, 0, 272, 268435456, 4, 268435456, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 135, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Syth Dummy'), +(33629, 0, 0, 1073807744, 268436480, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 3, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 'Fear Self Forever'), +(33635, 0, 0, 384, 268436480, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Leash Legion'), +(33636, 0, 0, 256, 524288, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 62, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Infernal'), +(33639, 0, 0, 65920, 268435456, 524288, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 'Protection of Azeroth'), +(33645, 0, 0, 536870912, 1024, 4, 0, 0, 384, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Choose Target (Not Player)'), +(33673, 0, 0, 67109248, 136, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 27, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 'Shockwave'), +(33677, 0, 0, 256, 0, 4, 256, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 9, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Incite Chaos'), +(33680, 0, 0, 256, 0, 4, 256, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 9, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Incite Chaos'), +(33681, 0, 0, 256, 0, 4, 256, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 9, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Incite Chaos'), +(33682, 0, 0, 256, 0, 4, 256, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 9, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Incite Chaos'), +(33683, 0, 0, 256, 0, 4, 256, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 9, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Incite Chaos'), +(33687, 0, 0, 256, 0, 4, 256, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Incite Chaos'), +(33722, 0, 0, 256, 268435456, 0, 268435712, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 387, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Laugh'), +(33730, 0, 0, 256, 268435456, 4, 256, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 39, 6, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Remove Flag'), +(33734, 0, 0, 2281701632, 268435456, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Zangar Honor Buff'), +(33761, 0, 0, 272, 268435456, 0, 268435456, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 327, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Distiller Dummy Trigger'), +(33765, 0, 0, 2281701760, 268435456, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 37, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Zangar PvP Buff'), +(33766, 0, 0, 2281701760, 268435456, 268435456, 268435456, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Zangar PvP Buff'), +(33767, 0, 0, 2281701760, 268435456, 268435456, 268435456, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Zangar PvP Buff'), +(33769, 0, 0, 272, 268435456, 0, 268435456, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 36, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Distiller Dummy Combat'), +(33797, 0, 0, 256, 268435456, 0, 268435712, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Laugh'), +(33801, 0, 0, 384, 136, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 'Move Forward'), +(33815, 0, 0, 536871296, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 63, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 'Fleeing in Terror'), +(33823, 0, 0, 256, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Infernal Invasion Mage Periodic'), +(33842, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Initialize Tank'), +(33843, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Initialize Tank'), +(33845, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Initialize Tank (Not Random)'), +(33892, 0, 0, 16777600, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Create Big Bomb DND'), +(33893, 0, 0, 16777600, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Create Big Bomb DND'), +(33897, 0, 0, 67109248, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 5, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Desperate Defense'), +(33901, 0, 0, 384, 268435456, 0, 1048576, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 4, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Crystalhide Crumbler'), +(33903, 0, 0, 384, 268435456, 0, 1048576, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 4, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Crystalhide Rageling'), +(33921, 0, 0, 384, 136, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 'Leap Forward (20)'), +(33922, 0, 0, 134480272, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Crust Burst'), +(33927, 0, 0, 65920, 136, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 7, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 'Summon Void Summoner'), +(33931, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 6, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Call Test Elemental'), +(33936, 0, 0, 256, 0, 4, 268435456, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Despawn Phase 2 Units'), +(33952, 0, 0, 2192, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 28, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 'Immolation'), +(34015, 0, 0, 256, 0, 4, 268435456, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Despawn Phase 3 Units'), +(34021, 0, 0, 256, 0, 4, 268435456, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Despawn Phase 4 Units'), +(34022, 0, 0, 256, 0, 4, 268435456, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Despawn Phase 5 Units'), +(34028, 0, 0, 256, 0, 4, 268435456, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Despawn Thrall'), +(34029, 0, 0, 384, 268435456, 5, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 36, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Check for Valid Soul'), +(34034, 0, 0, 384, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Mo''arg No Weapon Visual'), +(34064, 0, 0, 8388992, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 5, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Soul Split'), +(34065, 0, 0, 272, 268435456, 0, 268435456, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 327, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Distiller Dummy Trigger'), +(34081, 0, 0, 192, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Improved Parry'), +(34084, 0, 0, 536871312, 1024, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 28, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'zzOLDAdvantaged State'), +(34103, 0, 0, 537133440, 268959744, 8, 256, 256, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 'Flight Sanctuary'), +(34116, 0, 0, 384, 1024, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Sha''tari Operative Calls for Healing'), +(34118, 0, 0, 448, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Despawn Self'), +(34122, 0, 0, 536871312, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Swift Shot'), +(34124, 0, 0, 256, 0, 4, 268435456, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Despawn Stage Spotlight'), +(34125, 0, 0, 256, 1024, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 25, 4, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Spotlight'), +(34127, 0, 0, 134218112, 1024, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 36, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 64, 'Tree of Life'), +(34134, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Hot Air'), +(34147, 0, 0, 256, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 0, 0, 0, 0, 0, 0, 0, 25, 7, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'zzOLDCreate Soulwell'), +(34148, 0, 0, 256, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 0, 0, 0, 0, 0, 0, 0, 25, 7, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'zzOLDCreate Soulwell'); +INSERT INTO `spell_dbc` (`Id`, `Dispel`, `Mechanic`, `Attributes`, `AttributesEx`, `AttributesEx2`, `AttributesEx3`, `AttributesEx4`, `AttributesEx5`, `AttributesEx6`, `AttributesEx7`, `Stances`, `StancesNot`, `Targets`, `CastingTimeIndex`, `AuraInterruptFlags`, `ProcFlags`, `ProcChance`, `ProcCharges`, `MaxLevel`, `BaseLevel`, `SpellLevel`, `DurationIndex`, `RangeIndex`, `StackAmount`, `EquippedItemClass`, `EquippedItemSubClassMask`, `EquippedItemInventoryTypeMask`, `Effect1`, `Effect2`, `Effect3`, `EffectDieSides1`, `EffectDieSides2`, `EffectDieSides3`, `EffectRealPointsPerLevel1`, `EffectRealPointsPerLevel2`, `EffectRealPointsPerLevel3`, `EffectBasePoints1`, `EffectBasePoints2`, `EffectBasePoints3`, `EffectMechanic1`, `EffectMechanic2`, `EffectMechanic3`, `EffectImplicitTargetA1`, `EffectImplicitTargetA2`, `EffectImplicitTargetA3`, `EffectImplicitTargetB1`, `EffectImplicitTargetB2`, `EffectImplicitTargetB3`, `EffectRadiusIndex1`, `EffectRadiusIndex2`, `EffectRadiusIndex3`, `EffectApplyAuraName1`, `EffectApplyAuraName2`, `EffectApplyAuraName3`, `EffectAmplitude1`, `EffectAmplitude2`, `EffectAmplitude3`, `EffectMultipleValue1`, `EffectMultipleValue2`, `EffectMultipleValue3`, `EffectMiscValue1`, `EffectMiscValue2`, `EffectMiscValue3`, `EffectMiscValueB1`, `EffectMiscValueB2`, `EffectMiscValueB3`, `EffectTriggerSpell1`, `EffectTriggerSpell2`, `EffectTriggerSpell3`, `EffectSpellClassMaskA1`, `EffectSpellClassMaskA2`, `EffectSpellClassMaskA3`, `EffectSpellClassMaskB1`, `EffectSpellClassMaskB2`, `EffectSpellClassMaskB3`, `EffectSpellClassMaskC1`, `EffectSpellClassMaskC2`, `EffectSpellClassMaskC3`, `MaxTargetLevel`, `SpellFamilyName`, `SpellFamilyFlags1`, `SpellFamilyFlags2`, `SpellFamilyFlags3`, `MaxAffectedTargets`, `DmgClass`, `PreventionType`, `DmgMultiplier1`, `DmgMultiplier2`, `DmgMultiplier3`, `AreaGroupId`, `SchoolMask`, `Comment`) VALUES +(34160, 0, 0, 67109248, 268435456, 4, 1048576, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Wild Growth'), +(34174, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Call for Arcane Orb'), +(34175, 0, 0, 256, 128, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Arcane Orb Primer'), +(34188, 0, 0, 256, 268435456, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 9, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Time Rift Periodic 30'), +(34192, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Cycling Response: Fire'), +(34193, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Cycling Response: Frost'), +(34194, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Cycling Response: Arcane'), +(34195, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Cycling Response: Nature'), +(34196, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Cycling Response: Shadow'), +(34197, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Cycling Response: Holy'), +(34198, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Cycling Response: Physical'), +(34220, 0, 0, 0, 1160, 0, 131328, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Arcane Orb Starter'), +(34242, 0, 0, 459152, 262688, 0, 0, 4096, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Cheap Shot'), +(34255, 0, 0, 384, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Warchief''s Reverence'), +(34257, 0, 0, 262528, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Warchief''s Reverence'), +(34265, 0, 0, 272, 268435456, 0, 268435456, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 327, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Dummy Trigger'), +(34266, 0, 0, 151257472, 32, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 11, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Warchief''s Retort'), +(34327, 0, 0, 400, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 12, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Snowsong'), +(34328, 0, 0, 400, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 12, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Duros'), +(34362, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Crude Explosives'), +(34364, 0, 0, 67109328, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 'Weakness of Ar''kelos'), +(34369, 0, 0, 536871296, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Drek''Thar Root'), +(34377, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Thrall''s Memories'), +(34405, 0, 0, 448, 268435460, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Null Energy'), +(34408, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Despawn Glacius'), +(34434, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Aldor Spawn Controller'), +(34443, 0, 0, 384, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 152, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Tour Complete'), +(34450, 0, 0, 256, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Transform: Peasant w/ wood 1.5 scale'), +(34521, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 18, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Fire'), +(34527, 0, 0, 2192, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 28, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 'Immolation'), +(34532, 0, 0, 4194578, 1024, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Shoot'), +(34549, 0, 0, 384, 268435456, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 5, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Dirty Larry Submits'), +(34572, 0, 0, 384, 136, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 'Move NW'), +(34573, 0, 0, 384, 136, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 'Move NE'), +(34575, 0, 0, 384, 136, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 'Move N'), +(34628, 0, 0, 8388864, 268435456, 5, 268435456, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Negatron Dies'), +(34651, 0, 0, 384, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Despawn Self'), +(34652, 0, 0, 384, 1024, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Rocket-Chief To Negatron'), +(34668, 0, 0, 384, 268435456, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Shrink'), +(34689, 0, 0, 272, 0, 536870912, 256, 8448, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Tornado'), +(34701, 0, 0, 384, 268436480, 268435456, 196608, 0, 0, 4, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Random Aggro'), +(34703, 0, 0, 400, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Laj (Arcane)'), +(34704, 0, 0, 400, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Laj (Fire)'), +(34705, 0, 0, 400, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Laj (Frost)'), +(34706, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Create Unyielding Banner Scrap'), +(34707, 0, 0, 400, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Laj (Nature)'), +(34708, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 25, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Unyielding Banner'), +(34710, 0, 0, 400, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Laj (Shadow)'), +(34711, 0, 0, 448, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Random Attack Speed'), +(34721, 0, 0, 448, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Displacement'), +(34726, 0, 0, 384, 268960768, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 34, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Call Slave'), +(34755, 0, 0, 262544, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Instakill'), +(34777, 0, 0, 545259904, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Cancel Tranquility'), +(34781, 0, 0, 464, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Bind Feet'), +(34792, 0, 0, 448, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 64, 'Arcane Resonance'), +(34805, 0, 0, 738197888, 0, 1, 1048576, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 41, 6, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Quest Ignore'), +(34810, 0, 0, 384, 268435592, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 6, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Mender 1'), +(34813, 0, 0, 256, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Face Me'), +(34817, 0, 0, 384, 268435592, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 6, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Reservist 1'), +(34818, 0, 0, 384, 268435592, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 6, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Reservist 2'), +(34819, 0, 0, 384, 268435592, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 6, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Reservist 3'), +(34822, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 64, 'Arcane Flurry'), +(34825, 0, 0, 448, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Immune All'), +(34843, 0, 0, 256, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Trigger 000'), +(34853, 0, 0, 536871168, 268435592, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 9, 36, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Call of the Falcon'), +(34876, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Wyrm from Beyond Transform'), +(34878, 0, 0, 2304, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 36, 3, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Custodian of Time TRIGGER'), +(34884, 0, 0, 256, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Attack Thrall'), +(34901, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Quest - Aledis Aggro'), +(34915, 0, 0, 256, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Threat'), +(34928, 0, 0, 208, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 'Vampiric Aura'), +(34966, 0, 0, 256, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Netherstorm - BG - Counter'), +(34989, 0, 0, 256, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Netherstorm Flag Click'), +(34993, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'B''naar Shut Down'), +(34994, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'B''naar Shut Down'), +(34997, 0, 0, 159383808, 0, 4, 0, 0, 0, 4, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Despawn Flag'), +(35006, 0, 0, 256, 268435456, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Flag Check'), +(35019, 0, 0, 65920, 524424, 0, 0, 8192, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 64, 'Arcane Explosion'), +(35023, 0, 0, 384, 0, 0, 268435456, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Interrupt Complete'), +(35051, 0, 0, 272, 268435592, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Teleport Self'), +(35073, 0, 0, 256, 0, 4, 256, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Remove Digestive Acid'), +(35094, 0, 0, 2307129344, 1056, 268976133, 68354048, 8388736, 393224, 4100, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 'Despawn Vehicles'), +(35119, 0, 0, 384, 268435456, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 36, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Dummy Trigger'), +(35127, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 9, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Boom Bot Target'), +(35128, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 5, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Boom Bot'), +(35130, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 5, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Boom Bot'), +(35134, 0, 0, 384, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Boom Bot Rotation'), +(35136, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 26, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Captured Critter'), +(35138, 0, 0, 384, 1024, 4194308, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Clear Boom Bot'), +(35142, 0, 0, 384, 268435592, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 6, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Drijya Summon Imp'), +(35143, 0, 0, 256, 268435456, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 28, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Time Rift Periodic 5'), +(35145, 0, 0, 384, 268435592, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 6, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Drijya Summon Doomguard'), +(35146, 0, 0, 384, 268435592, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 6, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Drijya Summon Terrorguard'), +(35148, 0, 0, 256, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 32, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Nether Charge Countdown'), +(35153, 0, 0, 384, 136, 0, 512, 128, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 18, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 64, 'Summon Nether Charge NE'), +(35154, 0, 0, 448, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Feather Fall'), +(35171, 0, 0, 65920, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Pull Bladespire Brute'), +(35173, 0, 0, 262528, 136, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 2, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Trigger Damage Shield'), +(35174, 0, 0, 262528, 136, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 2, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Trigger Magic Shield'), +(35208, 0, 0, 536871296, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Conversation Credit'), +(35210, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Give Bessy Credit'), +(35237, 0, 0, 384, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Bessy Quest Completion'), +(35241, 0, 0, 384, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Bessy Credit (Script)'), +(35256, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 7, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Unstable Mushroom'), +(35264, 0, 0, 65664, 136, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 'Frost Attack'), +(35274, 0, 0, 256, 268435592, 4, 131072, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 'Raging Flames'), +(35277, 0, 0, 545259904, 136, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Quell Raging Flames'), +(35281, 0, 0, 384, 136, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 'Raging Flames'), +(35284, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 64, 'Summon Nether Wraiths'), +(35340, 0, 0, 256, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 31, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Root Self'), +(35343, 0, 0, 384, 268435456, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 36, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Dummy Trigger'), +(35344, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Dr. Boom Relay Invisibility'), +(35366, 0, 0, 256, 0, 4, 256, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 'Dive Bomb'), +(35368, 0, 0, 256, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Transform: Invisible Stalker'), +(35374, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 3, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Charred Remains'), +(35375, 0, 0, 256, 268435456, 4, 256, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 'Dive Bomb'), +(35378, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Archmage''s Staff'), +(35379, 0, 0, 2432, 268435456, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 36, 3, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Reflection of Ya-six'), +(35384, 0, 0, 448, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Despawn Self'), +(35393, 0, 0, 384, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'EXIT_MINE'), +(35398, 0, 0, 384, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'ARCONUS_CLOSE'), +(35414, 0, 0, 256, 0, 268435456, 262144, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 135, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, '(TXT) ToWoW - Tower Kill Credit (DND)'), +(35430, 0, 0, 256, 524288, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 25, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Infernal'), +(35463, 0, 0, 65920, 16388, 524288, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 64, 'Staff of the Dreghood Elders Trigger'), +(35467, 0, 0, 192, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'All Weapons'), +(35469, 0, 0, 256, 268435456, 0, 0, 0, 0, 1024, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Seed of Revitalization Lightning Cloud Visual'), +(35479, 0, 0, 150995200, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Human Illusion'), +(35484, 0, 0, 384, 268435456, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 36, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Dummy Trigger'), +(35485, 0, 0, 2298478848, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Human Illusion'), +(35496, 0, 0, 2298478848, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Human Illusion'), +(35503, 0, 0, 384, 268435456, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 327, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Dummy Trigger'), +(35505, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Boom Bot'), +(35586, 0, 0, 2298478848, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Human Illusion'), +(35642, 0, 0, 384, 136, 4, 256, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 'Orbital Strike Target'), +(35657, 0, 0, 448, 0, 0, 268435456, 34603008, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'zzOldMage Pet Scaling 01'), +(35658, 0, 0, 448, 0, 0, 268435456, 34603008, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'zzOldMage Pet Scaling 02'), +(35659, 0, 0, 448, 0, 0, 268435456, 34603008, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'zzOldMage Pet Scaling 03'), +(35660, 0, 0, 448, 0, 0, 268435456, 34603008, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'zzOldMage Pet Scaling 04'), +(35661, 0, 0, 448, 0, 0, 268435456, 34603008, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Priest Pet Scaling 01'), +(35662, 0, 0, 448, 0, 0, 268435456, 34603008, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Priest Pet Scaling 02'), +(35663, 0, 0, 448, 0, 0, 268435456, 34603008, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Priest Pet Scaling 03'), +(35664, 0, 0, 448, 0, 0, 268435456, 34603008, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Priest Pet Scaling 04'), +(35665, 0, 0, 448, 0, 0, 268435456, 34603008, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'zzOldFire Elemental Pet Scaling 01'), +(35666, 0, 0, 448, 0, 0, 268435456, 34603008, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'zzOldFire Elemental Pet Scaling 02'), +(35667, 0, 0, 448, 0, 0, 268435456, 34603008, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'zzOldFire Elemental Pet Scaling 03'), +(35668, 0, 0, 448, 0, 0, 268435456, 34603008, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'zzOldFire Elemental Pet Scaling 04'), +(35669, 0, 0, 448, 0, 0, 268435456, 34603008, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Druid Pet Scaling 01'), +(35670, 0, 0, 448, 0, 0, 268435456, 34603008, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Druid Pet Scaling 02'), +(35671, 0, 0, 448, 0, 0, 268435456, 34603008, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Druid Pet Scaling 03'), +(35672, 0, 0, 448, 0, 0, 268435456, 34603008, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Druid Pet Scaling 04'), +(35674, 0, 0, 448, 0, 0, 268435456, 34603008, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'zzOldFeral Spirit Pet Scaling 01'), +(35675, 0, 0, 448, 0, 0, 268435456, 34603008, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'zzOldFeral Spirit Pet Scaling 02'), +(35676, 0, 0, 448, 0, 0, 268435456, 34603008, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'zzOldFeral Spirit Pet Scaling 03'), +(35677, 0, 0, 384, 0, 0, 268435456, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Cancel Permanent Feign Death'); +INSERT INTO `spell_dbc` (`Id`, `Dispel`, `Mechanic`, `Attributes`, `AttributesEx`, `AttributesEx2`, `AttributesEx3`, `AttributesEx4`, `AttributesEx5`, `AttributesEx6`, `AttributesEx7`, `Stances`, `StancesNot`, `Targets`, `CastingTimeIndex`, `AuraInterruptFlags`, `ProcFlags`, `ProcChance`, `ProcCharges`, `MaxLevel`, `BaseLevel`, `SpellLevel`, `DurationIndex`, `RangeIndex`, `StackAmount`, `EquippedItemClass`, `EquippedItemSubClassMask`, `EquippedItemInventoryTypeMask`, `Effect1`, `Effect2`, `Effect3`, `EffectDieSides1`, `EffectDieSides2`, `EffectDieSides3`, `EffectRealPointsPerLevel1`, `EffectRealPointsPerLevel2`, `EffectRealPointsPerLevel3`, `EffectBasePoints1`, `EffectBasePoints2`, `EffectBasePoints3`, `EffectMechanic1`, `EffectMechanic2`, `EffectMechanic3`, `EffectImplicitTargetA1`, `EffectImplicitTargetA2`, `EffectImplicitTargetA3`, `EffectImplicitTargetB1`, `EffectImplicitTargetB2`, `EffectImplicitTargetB3`, `EffectRadiusIndex1`, `EffectRadiusIndex2`, `EffectRadiusIndex3`, `EffectApplyAuraName1`, `EffectApplyAuraName2`, `EffectApplyAuraName3`, `EffectAmplitude1`, `EffectAmplitude2`, `EffectAmplitude3`, `EffectMultipleValue1`, `EffectMultipleValue2`, `EffectMultipleValue3`, `EffectMiscValue1`, `EffectMiscValue2`, `EffectMiscValue3`, `EffectMiscValueB1`, `EffectMiscValueB2`, `EffectMiscValueB3`, `EffectTriggerSpell1`, `EffectTriggerSpell2`, `EffectTriggerSpell3`, `EffectSpellClassMaskA1`, `EffectSpellClassMaskA2`, `EffectSpellClassMaskA3`, `EffectSpellClassMaskB1`, `EffectSpellClassMaskB2`, `EffectSpellClassMaskB3`, `EffectSpellClassMaskC1`, `EffectSpellClassMaskC2`, `EffectSpellClassMaskC3`, `MaxTargetLevel`, `SpellFamilyName`, `SpellFamilyFlags1`, `SpellFamilyFlags2`, `SpellFamilyFlags3`, `MaxAffectedTargets`, `DmgClass`, `PreventionType`, `DmgMultiplier1`, `DmgMultiplier2`, `DmgMultiplier3`, `AreaGroupId`, `SchoolMask`, `Comment`) VALUES +(35678, 0, 0, 2432, 268435456, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 36, 3, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Protectorate Demolitionist'), +(35680, 0, 0, 384, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'QID 10406'), +(35687, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 25, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Seeping Sludge Globule'), +(35688, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 25, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Void Waste Globule'), +(35689, 0, 0, 256, 0, 4, 268435456, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Message Jaina'), +(35690, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Restore Archmage''s Staff'), +(35721, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 5, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Bogstrok Hatchling SE'), +(35722, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 5, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Bogstrok Hatchling SW'), +(35723, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 5, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Bogstrok Hatchling S'), +(35729, 0, 0, 262544, 33824, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 37, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Cloak of Shadows'), +(35731, 0, 0, 537919872, 268435456, 0, 268435456, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Protectorate Drake'), +(35737, 0, 0, 25166208, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 7, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Deadsoul Orb'), +(35762, 0, 0, 8388992, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Socrethar Quest Credit'), +(35765, 0, 0, 545259904, 136, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Quell Felfire'), +(35773, 0, 0, 448, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Increased Threat'), +(35852, 0, 0, 536871168, 136, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Gravity Lapse'), +(35861, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Nether Vapor'), +(35862, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Nether Vapor'), +(35863, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Nether Vapor'), +(35864, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Nether Vapor'), +(35880, 0, 0, 256, 268435456, 4, 256, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 'Nether Vapor'), +(35881, 0, 0, 256, 268435456, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 'Nether Vapor'), +(35883, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Rotate Trigger'), +(35884, 0, 0, 256, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 5, 6, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Rotate 360'), +(35885, 0, 0, 256, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 5, 6, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Rotate 360'), +(35904, 0, 0, 384, 136, 0, 512, 128, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 18, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 64, 'Summon Nether Charge NW'), +(35905, 0, 0, 384, 136, 0, 512, 128, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 18, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 64, 'Summon Nether Charge SE'), +(35906, 0, 0, 384, 136, 0, 512, 128, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 18, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 64, 'Summon Nether Charge SW'), +(35934, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Change Mode'), +(35937, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 4, 3, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Ambush'), +(35938, 0, 0, 67109120, 0, 4, 0, 8192, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Gravity Lapse'), +(35939, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Dimensius Transform'), +(36014, 0, 0, 262528, 136, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Trigger On-Fire'), +(36019, 0, 0, 696254720, 136, 5, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Teleport: Dark Portal Storm'), +(36024, 0, 0, 384, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Living Grove Seedling Activated'), +(36026, 0, 0, 8388992, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 5, 11, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Conjure Elemental Soul: Earth'), +(36036, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 551, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Netherstorm Target'), +(36042, 0, 0, 384, 268435456, 0, 1048576, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Farahlon Crumbler'), +(36043, 0, 0, 384, 268435456, 0, 1048576, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Farahlon Crumbler'), +(36044, 0, 0, 384, 268435456, 0, 1048576, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Farahlon Crumbler'), +(36045, 0, 0, 384, 268435456, 0, 1048576, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Farahlon Shardling'), +(36046, 0, 0, 384, 268435456, 0, 1048576, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Farahlon Shardling'), +(36047, 0, 0, 384, 268435456, 0, 1048576, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Farahlon Shardling'), +(36048, 0, 0, 384, 268435456, 0, 1048576, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Motherlode Shardling'), +(36049, 0, 0, 384, 268435456, 0, 1048576, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Motherlode Shardling'), +(36050, 0, 0, 384, 268435456, 0, 1048576, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Motherlode Shardling'), +(36053, 0, 0, 384, 268960768, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 34, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Call Slave'), +(36063, 0, 0, 16777600, 268435456, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Drop Phase Disruptor Now!'), +(36087, 0, 0, 256, 0, 4, 268435456, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Message Thrall'), +(36106, 0, 0, 2432, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 36, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Earthen Soul Captured Trigger'), +(36112, 0, 0, 8388992, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 5, 11, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Conjure Elemental Soul: Fire'), +(36116, 0, 0, 2432, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 36, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Fiery Soul Captured Trigger'), +(36168, 0, 0, 8388992, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 5, 11, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Conjure Elemental Soul: Water'), +(36172, 0, 0, 2432, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 36, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Water Soul Captured Trigger'), +(36180, 0, 0, 8388992, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 5, 11, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Conjure Elemental Soul: Air'), +(36183, 0, 0, 2432, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 36, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Aery Soul Captured Trigger'), +(36184, 0, 0, 256, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 225, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Kael Grow'), +(36186, 0, 0, 384, 0, 0, 268435456, 1048576, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Infernal Scaling 01'), +(36188, 0, 0, 384, 0, 0, 268435456, 1048576, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Infernal Scaling 02'), +(36189, 0, 0, 384, 0, 0, 268435456, 1048576, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Infernal Scaling 03'), +(36190, 0, 0, 384, 0, 0, 268435456, 1048576, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Infernal Scaling 04'), +(36192, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 34, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Barrage Primer'), +(36195, 0, 0, 384, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Saw Blade Primer'), +(36202, 0, 0, 8388736, 0, 1, 268435456, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Bonechewer Quest OnDeath Proc'), +(36215, 0, 0, 256, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Kirin Tor Spirits'), +(36216, 0, 0, 256, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Kirin Tor Spirits'), +(36217, 0, 0, 256, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Kirin Tor Spirits'), +(36218, 0, 0, 256, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Kirin Tor Spirits'), +(36219, 0, 0, 256, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Kirin Tor Spirits'), +(36221, 0, 0, 256, 0, 0, 268435456, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 3, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Eye of the Citadel'), +(36222, 0, 0, 8388864, 268435456, 1, 268435456, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 32, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Morkh OnDeath Proc'), +(36223, 0, 0, 384, 268960768, 0, 268435456, 0, 8, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 34, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Call Slave'), +(36229, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Infinite Assassin'), +(36230, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 5, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Eye of the Citadel Aura'), +(36231, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Infinite Chronomancer'), +(36232, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Infinite Executioner'), +(36233, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Infinite Vanquisher'), +(36234, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Black Morass Rift Lord Alt'), +(36235, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Black Morass Rift Keeper'), +(36236, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Black Morass Rift Keeper'), +(36272, 0, 0, 256, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Teleport'), +(36273, 0, 0, 256, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Teleport'), +(36287, 0, 0, 448, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Protean Subdual'), +(36294, 0, 0, 256, 0, 0, 0, 128, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Trigger 000'), +(36303, 0, 0, 537133312, 136, 67108864, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Injured'), +(36309, 0, 0, 384, 268436480, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Dummy Trigger'), +(36377, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Create Stonebreaker Brew'), +(36379, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 9, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Call Skitterers'), +(36388, 0, 0, 384, 1024, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Move Away'), +(36403, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Stolen Ravenous Ravager Egg'), +(36407, 0, 0, 256, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Invis Self'), +(36419, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Stolen Ravenous Ravager Egg'), +(36420, 0, 0, 384, 1024, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Bladespire Ogre Drunk Dummy'), +(36421, 0, 0, 536871168, 268436480, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Bloodmaul Brutebane Brew Kill Credit'), +(36443, 0, 0, 256, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Blade Dance Target'), +(36445, 0, 0, 256, 268435456, 4, 256, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Blade Dance Target'), +(36451, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Low Health'), +(36454, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Stolen Ravenous Ravager Egg'), +(36466, 0, 0, 134217984, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, '50% Health'), +(36485, 0, 0, 545259904, 1024, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Avenger Trigger Death'), +(36491, 0, 0, 65920, 0, 524288, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 'Summon Heal'), +(36492, 0, 0, 65920, 1024, 524288, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 35, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 'Summon Heal'), +(36493, 0, 0, 328064, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 8, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 64, 'Shadow Defense'), +(36504, 0, 0, 464, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Ravager Threat'), +(36505, 0, 0, 384, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Ravager Threat'), +(36521, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 39, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Arcane Explosion'), +(36547, 0, 0, 8388992, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Master''s Terrace Quest Credit'), +(36551, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'AIClearReturnState'), +(36557, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Cursed Scarab Periodic Trigger'), +(36560, 0, 0, 2147483904, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Cursed Scarab Despawn Periodic Trigger'), +(36564, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 39, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Trigger Charge Targeting'), +(36566, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 27, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Trigger Charge'), +(36569, 0, 0, 536871296, 268435456, 4, 0, 4100, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Vision Guide: Quest Complete'), +(36579, 0, 0, 384, 268435456, 0, 1048576, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Netherock Crumbler'), +(36581, 0, 0, 320, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Warp Storm Passive'), +(36584, 0, 0, 384, 268435456, 0, 1048576, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 4, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Netherock Crumbler'), +(36585, 0, 0, 384, 268435456, 0, 1048576, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 4, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Netherock Crumbler'), +(36595, 0, 0, 384, 268435456, 0, 1048576, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Apex Crumbler'), +(36596, 0, 0, 384, 268435456, 0, 1048576, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Apex Crumbler'), +(36597, 0, 0, 384, 268435456, 0, 1048576, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Apex Crumbler'), +(36598, 0, 0, 256, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 4, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Vision Guide: Summon Object'), +(36600, 0, 0, 192, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Flaming Weapon'), +(36605, 0, 0, 8388992, 268959744, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Charge My Target'), +(36610, 0, 0, 448, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Improved Wing Clip'), +(36614, 0, 0, 464, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Veneratus Spawn'), +(36615, 0, 0, 384, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Veneratus Spawn'), +(36616, 0, 0, 384, 268435456, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 5, 4, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Veneratus Spawn'), +(36618, 0, 0, 2432, 268435456, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 36, 3, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Spirit Hunter'), +(36626, 0, 0, 256, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 9, 134, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Mark''aru Tentacle'), +(36666, 0, 0, 384, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Speed Up'), +(36685, 0, 0, 384, 268435456, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Dummy Trigger'), +(36687, 0, 0, 384, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Kael Sanguinar'), +(36688, 0, 0, 384, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Kael Capernian'), +(36689, 0, 0, 384, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Kael Telonicus'), +(36691, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 26, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Lay Ravenous Flayer Egg'), +(36715, 0, 0, 537133312, 136, 67108864, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Injured'), +(36724, 0, 0, 256, 268435456, 0, 0, 0, 8, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Phoenix Egg'), +(36726, 0, 0, 8388992, 0, 5, 268435456, 0, 0, 8192, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Despawn Target'), +(36793, 0, 0, 536871168, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 37, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Start Cannon Channeler (dnd)'), +(36794, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 37, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Stop Cannon Channeler (dnd)'), +(36799, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Create Brightsong Wine'), +(36818, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 14, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Attacking Infernal'), +(36850, 0, 0, 256, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 39, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Mirror Images Preparation'), +(36853, 0, 0, 384, 524288, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Initialize Images'), +(36855, 0, 0, 134217984, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, '% Health'), +(36865, 0, 0, 536871168, 0, 0, 268435456, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 3, 3, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Gnome Cannon Channel Target (DND)'), +(36869, 0, 0, 384, 268960768, 0, 268435456, 0, 8, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 34, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Call Slave'), +(36870, 0, 0, 384, 268436480, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Dummy Trigger'), +(36874, 0, 0, 536871168, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Gnome Cannon Shooter Initialize Loc 1'), +(36875, 0, 0, 536871168, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Gnome Cannon Transport to Loc 1'), +(36898, 0, 0, 256, 1024, 128, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Wicked Strong Fetish (dummy)'), +(36925, 0, 0, 384, 268435592, 4, 256, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Aggro Closest'), +(36928, 0, 0, 134217984, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, '66% Health'); +INSERT INTO `spell_dbc` (`Id`, `Dispel`, `Mechanic`, `Attributes`, `AttributesEx`, `AttributesEx2`, `AttributesEx3`, `AttributesEx4`, `AttributesEx5`, `AttributesEx6`, `AttributesEx7`, `Stances`, `StancesNot`, `Targets`, `CastingTimeIndex`, `AuraInterruptFlags`, `ProcFlags`, `ProcChance`, `ProcCharges`, `MaxLevel`, `BaseLevel`, `SpellLevel`, `DurationIndex`, `RangeIndex`, `StackAmount`, `EquippedItemClass`, `EquippedItemSubClassMask`, `EquippedItemInventoryTypeMask`, `Effect1`, `Effect2`, `Effect3`, `EffectDieSides1`, `EffectDieSides2`, `EffectDieSides3`, `EffectRealPointsPerLevel1`, `EffectRealPointsPerLevel2`, `EffectRealPointsPerLevel3`, `EffectBasePoints1`, `EffectBasePoints2`, `EffectBasePoints3`, `EffectMechanic1`, `EffectMechanic2`, `EffectMechanic3`, `EffectImplicitTargetA1`, `EffectImplicitTargetA2`, `EffectImplicitTargetA3`, `EffectImplicitTargetB1`, `EffectImplicitTargetB2`, `EffectImplicitTargetB3`, `EffectRadiusIndex1`, `EffectRadiusIndex2`, `EffectRadiusIndex3`, `EffectApplyAuraName1`, `EffectApplyAuraName2`, `EffectApplyAuraName3`, `EffectAmplitude1`, `EffectAmplitude2`, `EffectAmplitude3`, `EffectMultipleValue1`, `EffectMultipleValue2`, `EffectMultipleValue3`, `EffectMiscValue1`, `EffectMiscValue2`, `EffectMiscValue3`, `EffectMiscValueB1`, `EffectMiscValueB2`, `EffectMiscValueB3`, `EffectTriggerSpell1`, `EffectTriggerSpell2`, `EffectTriggerSpell3`, `EffectSpellClassMaskA1`, `EffectSpellClassMaskA2`, `EffectSpellClassMaskA3`, `EffectSpellClassMaskB1`, `EffectSpellClassMaskB2`, `EffectSpellClassMaskB3`, `EffectSpellClassMaskC1`, `EffectSpellClassMaskC2`, `EffectSpellClassMaskC3`, `MaxTargetLevel`, `SpellFamilyName`, `SpellFamilyFlags1`, `SpellFamilyFlags2`, `SpellFamilyFlags3`, `MaxAffectedTargets`, `DmgClass`, `PreventionType`, `DmgMultiplier1`, `DmgMultiplier2`, `DmgMultiplier3`, `AreaGroupId`, `SchoolMask`, `Comment`) VALUES +(36930, 0, 0, 134217984, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, '33% Health'), +(36933, 0, 0, 536871296, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Teleport'), +(36934, 0, 0, 536871296, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 27, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Spread'), +(36942, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Bone Wastes - Self Ping'), +(36975, 0, 0, 262528, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 29, 2, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 'Wound Poison'), +(36993, 0, 0, 384, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Speed Up'), +(37010, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Save Demon Creator'), +(37025, 0, 0, 256, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Coilfang Water'), +(37026, 0, 0, 256, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Frenzy Water'), +(37061, 0, 0, 536871296, 268435456, 4, 268697600, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Disruption'), +(37064, 0, 0, 384, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Create Bundle of Bloodthistle'), +(37070, 0, 0, 384, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 'Portal Attunement'), +(37084, 0, 0, 384, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Lament of the Highborne: Songbook'), +(37085, 0, 0, 545259776, 128, 1, 268435456, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Mark of Honor'), +(37086, 0, 0, 545259776, 128, 1, 268435456, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Mark of Honor'), +(37088, 0, 0, 384, 0, 4, 256, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 9, 37, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 'Sacrifice'), +(37100, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Create Blood Elf Disguise'), +(37101, 0, 0, 256, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Smash'), +(37105, 0, 0, 538968448, 1160, 0, 256, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 135, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Whirlpool'), +(37127, 0, 0, 384, 268436616, 4, 196608, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 29, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Mark of Death'), +(37130, 0, 0, 384, 268436616, 4, 256, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Aura of Death'), +(37137, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Power Converters: Containment Aura Removed'), +(37177, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Black Morass Infinite Chrono-Lord'), +(37178, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Black Morass Infinite Timereaver'), +(37215, 0, 0, 696254848, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'The Black Morass Complete'), +(37244, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Give Flanis''s Pack'), +(37245, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Give Kagrosh''s Pack'), +(37246, 0, 0, 384, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Oronok Speed Increase'), +(37269, 0, 0, 256, 0, 0, 131072, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 64, 'Arcane Flurry'), +(37280, 0, 0, 256, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Frenzy Water'), +(37308, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Teleport Image'), +(37326, 0, 0, 536871056, 268435592, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Hate to Zero'), +(37347, 0, 0, 384, 524288, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Infernal'), +(37356, 0, 0, 65920, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 134, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Dummy - Call for Help'), +(37357, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Karazhan - Chess, Medivh: Back Row, Alliance'), +(37358, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Karazhan - Chess, Medivh: Back Row, Horde'), +(37373, 0, 0, 256, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 25, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Aura Generator 000'), +(37394, 0, 0, 8388992, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 85, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Destroyed Sentinel'), +(37403, 0, 0, 256, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 25, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Aura Generator 001'), +(37415, 0, 0, 536871168, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Quest Complete'), +(37419, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 25, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Base Bunny Aura'), +(37442, 0, 0, 256, 525312, 536870912, 262144, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Karazhan - Chess AI: Take snapshot'), +(37457, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 265, 96, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Windsor Dismisses Horse DND'), +(37458, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Offset Z 20'), +(37490, 0, 0, 384, 524288, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Stormhammer Trigger'), +(37491, 0, 0, 256, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'If not Summoned Trigger'), +(37492, 0, 0, 384, 268435456, 0, 0, 4, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 3, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Crate Disguise Subspell'), +(37524, 0, 0, 8388864, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Use Legion Teleporter'), +(37534, 0, 0, 256, 1024, 0, 262144, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Karazhan - Chess NPC Action: Grunt: Vicious Strike'), +(37545, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 27, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Phantom'), +(37562, 0, 0, 256, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Transform: Logger w/ out wood'), +(37575, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Master'), +(37576, 0, 0, 545259904, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Avenger Trigger Dummy'), +(37606, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Infinite Assassin'), +(37639, 0, 0, 384, 1024, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Signal the Bunny'), +(37643, 0, 0, 256, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Increase Damage'), +(37644, 0, 0, 256, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Increase Health'), +(37653, 0, 0, 256, 1024, 0, 262144, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Karazhan - Chess NPC Action: Footman: Heroic Blow'), +(37659, 0, 0, 256, 1024, 0, 262144, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Karazhan - Chess NPC Action: Elemental: Geyser'), +(37663, 0, 0, 142606592, 1, 262145, 0, 0, 0, 4, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 'Revive or Summon Pet'), +(37677, 0, 0, 256, 1024, 0, 262144, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Karazhan - Chess NPC Action: Daemon: Hellfire'), +(37680, 0, 0, 256, 132096, 536870912, 262144, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Karazhan - Chess NPC Action: Stomp'), +(37682, 0, 0, 256, 132096, 536870912, 262144, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Karazhan - Chess NPC Action: Howl'), +(37684, 0, 0, 256, 132096, 536870912, 262144, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 'Karazhan - Chess NPC Action: Ability - Holy Lance'), +(37686, 0, 0, 384, 1024, 5, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 135, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Range Check'), +(37687, 0, 0, 256, 132096, 536870912, 262144, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 'Karazhan - Chess NPC Action: Ability - Shadow Spear'), +(37698, 0, 0, 256, 132096, 536870912, 262144, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 'Karazhan - Chess NPC Action - Elemental Blast'), +(37699, 0, 0, 256, 132096, 536870912, 262144, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 'Karazhan - Chess NPC Action - Fireball'), +(37701, 0, 0, 4194576, 132096, 536870912, 262144, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Karazhan - Chess NPC Action - Sweep'), +(37702, 0, 0, 272, 132096, 536870912, 262144, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Karazhan - Chess NPC Action - Cleave'), +(37703, 0, 0, 256, 525312, 536870912, 262144, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Karazhan - Chess AI: Take forward cone snapshot'), +(37707, 0, 0, 256, 132096, 536870912, 262144, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Karazhan - Chess NPC Action- Smash'), +(37708, 0, 0, 256, 132096, 536870912, 262144, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Karazhan - Chess NPC Action- Bite'), +(37715, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Ogre Say Dummy'), +(37724, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 25, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, '[DND]Whisper Cooldown Dummy Aura'), +(37725, 0, 0, 536871296, 136, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 'Target 1'), +(37726, 0, 0, 536871296, 136, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 'Target 2'), +(37731, 0, 0, 536871296, 136, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 'Target 3'), +(37732, 0, 0, 536871296, 136, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 'Target 4'), +(37733, 0, 0, 536871296, 136, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 'Target 5'), +(37735, 0, 0, 536871168, 136, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 125, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 'Summon Inner Demon'), +(37741, 0, 0, 536871296, 136, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 'Hate Master'), +(37753, 0, 0, 256, 525312, 536870912, 262144, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Karazhan - Chess AI: Take Short Range snapshot'), +(37756, 0, 0, 256, 525312, 536870912, 262144, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Karazhan - Chess AI: Take Forward Arc snapshot'), +(37757, 0, 0, 536871296, 136, 4, 262400, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 39, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 'Prevent Consuming Madness'), +(37758, 0, 0, 65792, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 5, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 'Bone Wastes - Summon Auchenai Spirit'), +(37765, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Creatures of the Deep'), +(37766, 0, 0, 256, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 30, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Murloc A1'), +(37767, 0, 0, 256, 525312, 536870912, 262144, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Karazhan - Chess AI: Take Med Range Snapshot'), +(37769, 0, 0, 553650560, 268435456, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 36, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Teron Gorefiend'), +(37771, 0, 0, 256, 132096, 536870912, 262144, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 34, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Karazhan - Chess NPC Action - Rain of Fire'), +(37772, 0, 0, 256, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 30, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Murloc B1'), +(37773, 0, 0, 256, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 30, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Elemental A1'), +(37774, 0, 0, 256, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 30, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Elemental B1'), +(37780, 0, 0, 384, 136, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 66, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 'Shrink'), +(37781, 0, 0, 134217984, 136, 0, 268435456, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 347, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 'Summon Shadow'), +(37782, 0, 0, 384, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 5, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Disembodied Spirit'), +(37783, 0, 0, 256, 656384, 536870912, 262144, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 'Karazhan - Chess NPC Action - Heroism'), +(37785, 0, 0, 256, 656384, 536870912, 262144, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 'Karazhan - Chess NPC Action - Bloodlust'), +(37791, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Spawn and Pacify'), +(37812, 0, 0, 384, 268435456, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Krasius Credit'), +(37814, 0, 0, 256, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Aggro (2 yd pbae)'), +(37815, 0, 0, 256, 268435456, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Fake Aggro Radius (2 yd)'), +(37827, 0, 0, 384, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Reset Mana'), +(37828, 0, 0, 256, 132096, 536870912, 262144, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 'Karazhan - Chess NPC Action - Healing'), +(37829, 0, 0, 536871168, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Ride the Lightning: Kill Credit'), +(37831, 0, 0, 256, 525312, 536870912, 262144, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Karazhan - Chess AI: Take Heal snapshot'), +(37832, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 36, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Vanish'), +(37835, 0, 0, 696254848, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Old Hillsbrad Complete'), +(37845, 0, 0, 448, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Despawn Self'), +(37866, 0, 0, 256, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Water Globules'), +(37870, 0, 0, 8388992, 0, 5, 262400, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 'Garrote Remove'), +(37872, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Disappear'), +(37900, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 9, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Trapping the Light: Summon Trap'), +(37901, 0, 0, 256, 1024, 4, 0, 128, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Trapping the Light: Dummy to Bunny'), +(37902, 0, 0, 256, 1024, 128, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 34, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Trapping the Light: Razaani Light Ball Dummy'), +(37903, 0, 0, 536871168, 1024, 4, 268435456, 128, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Trapping the Light: Kill Credit'), +(37909, 0, 0, 536871168, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Gnome Cannon Transport to Loc 0'), +(37911, 0, 0, 256, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 30, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Elemental A2'), +(37912, 0, 0, 256, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 30, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Elemental A3'), +(37914, 0, 0, 256, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 30, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Elemental B2'), +(37915, 0, 0, 536871168, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Gnome Cannon Shooter Initialize Loc 0'), +(37916, 0, 0, 256, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 30, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Elemental B3'), +(37923, 0, 0, 256, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 30, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Murloc A2'), +(37925, 0, 0, 256, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 30, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Murloc A3'), +(37926, 0, 0, 256, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 30, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Murloc A4'), +(37927, 0, 0, 256, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 30, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Murloc A5'), +(37928, 0, 0, 256, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 30, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Murloc B2'), +(37929, 0, 0, 256, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 30, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Murloc B3'), +(37931, 0, 0, 256, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 30, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Murloc B4'), +(37932, 0, 0, 256, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 30, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Murloc B5'), +(37938, 0, 0, 536871168, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Gnome Cannon Shooter Initialize Loc Raven''s Wood'), +(37943, 0, 0, 536871168, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Gnome Cannon Transport to Loc Raven''s Wood'), +(37947, 0, 0, 384, 268435456, 0, 1048576, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Crazed Shardling'), +(37948, 0, 0, 384, 268435456, 0, 1048576, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Crazed Shardling'), +(37949, 0, 0, 384, 268435456, 0, 1048576, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Crazed Shardling'), +(37953, 0, 0, 536871168, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Gnome Cannon Shooter Initialize Loc Singing Ridge'), +(37955, 0, 0, 536871168, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Gnome Cannon Transport to Loc Singing Ridge'), +(37957, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 4, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Gnome Mercy: Summon Collection of Souls Chest'), +(37963, 0, 0, 256, 268435592, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Super Shrink'), +(37969, 0, 0, 536871168, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Gnome Cannon Shooter Initialize Loc Ruuan'), +(37971, 0, 0, 536871168, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Gnome Cannon Transport to Loc Ruuan'), +(37977, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Trigger 001'), +(38005, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'X-52 Rocket Helmet Replacement'), +(38013, 0, 0, 134217984, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Garm Wolfbrother: See Invisibility'), +(38018, 0, 0, 256, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Wave A - 1'), +(38019, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Wave A Mob'), +(38036, 0, 0, 256, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Wave A - 2'), +(38037, 0, 0, 256, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Wave A - 2'), +(38038, 0, 0, 256, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Wave A - 3'), +(38039, 0, 0, 256, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Wave A - 4'); +INSERT INTO `spell_dbc` (`Id`, `Dispel`, `Mechanic`, `Attributes`, `AttributesEx`, `AttributesEx2`, `AttributesEx3`, `AttributesEx4`, `AttributesEx5`, `AttributesEx6`, `AttributesEx7`, `Stances`, `StancesNot`, `Targets`, `CastingTimeIndex`, `AuraInterruptFlags`, `ProcFlags`, `ProcChance`, `ProcCharges`, `MaxLevel`, `BaseLevel`, `SpellLevel`, `DurationIndex`, `RangeIndex`, `StackAmount`, `EquippedItemClass`, `EquippedItemSubClassMask`, `EquippedItemInventoryTypeMask`, `Effect1`, `Effect2`, `Effect3`, `EffectDieSides1`, `EffectDieSides2`, `EffectDieSides3`, `EffectRealPointsPerLevel1`, `EffectRealPointsPerLevel2`, `EffectRealPointsPerLevel3`, `EffectBasePoints1`, `EffectBasePoints2`, `EffectBasePoints3`, `EffectMechanic1`, `EffectMechanic2`, `EffectMechanic3`, `EffectImplicitTargetA1`, `EffectImplicitTargetA2`, `EffectImplicitTargetA3`, `EffectImplicitTargetB1`, `EffectImplicitTargetB2`, `EffectImplicitTargetB3`, `EffectRadiusIndex1`, `EffectRadiusIndex2`, `EffectRadiusIndex3`, `EffectApplyAuraName1`, `EffectApplyAuraName2`, `EffectApplyAuraName3`, `EffectAmplitude1`, `EffectAmplitude2`, `EffectAmplitude3`, `EffectMultipleValue1`, `EffectMultipleValue2`, `EffectMultipleValue3`, `EffectMiscValue1`, `EffectMiscValue2`, `EffectMiscValue3`, `EffectMiscValueB1`, `EffectMiscValueB2`, `EffectMiscValueB3`, `EffectTriggerSpell1`, `EffectTriggerSpell2`, `EffectTriggerSpell3`, `EffectSpellClassMaskA1`, `EffectSpellClassMaskA2`, `EffectSpellClassMaskA3`, `EffectSpellClassMaskB1`, `EffectSpellClassMaskB2`, `EffectSpellClassMaskB3`, `EffectSpellClassMaskC1`, `EffectSpellClassMaskC2`, `EffectSpellClassMaskC3`, `MaxTargetLevel`, `SpellFamilyName`, `SpellFamilyFlags1`, `SpellFamilyFlags2`, `SpellFamilyFlags3`, `MaxAffectedTargets`, `DmgClass`, `PreventionType`, `DmgMultiplier1`, `DmgMultiplier2`, `DmgMultiplier3`, `AreaGroupId`, `SchoolMask`, `Comment`) VALUES +(38040, 0, 0, 256, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Wave A - 3'), +(38041, 0, 0, 256, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Wave A - 4'), +(38060, 0, 0, 208, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 'Vampiric Aura'), +(38062, 0, 0, 384, 0, 4, 268566528, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Invisible Dummy Attack'), +(38077, 0, 0, 400, 512, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Aggro'), +(38079, 0, 0, 400, 512, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Aggro'), +(38096, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 96, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, '[DND]Destroy Sun Gate Portal Controller'), +(38098, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 25, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, '[DND]No Whisper Cooldown Dummy Aura'), +(38111, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 41, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Horde Bat Rider Guard'), +(38114, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Horde Rooftop Alarm Sensor'), +(38117, 0, 0, 384, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Faction Appropriate Guard'), +(38118, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 41, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Area 52 Death Machine Guard'), +(38124, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Horde Ground Alarm Sensor'), +(38131, 0, 0, 2147483904, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Coilfang Raid'), +(38137, 0, 0, 150995328, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 4, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Sky Marker'), +(38140, 0, 0, 256, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Wave D Mob Trigger'), +(38172, 0, 0, 384, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Create Kor''kron Flare Gun'), +(38179, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Alliance Ground Alarm Sensor'), +(38180, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Alliance Rooftop Alarm Sensor'), +(38181, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 41, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Alliance Gryphon Guard'), +(38186, 0, 0, 536871168, 268435592, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 31, 135, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Acid Spray'), +(38188, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Corrupted Spawn'), +(38189, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Corrupted Spawn'), +(38190, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Corrupted Spawn'), +(38191, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Corrupted Spawn'), +(38192, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Tap Mob and Aggro Summoner'), +(38198, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Purified Spawn'), +(38199, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Purified Spawn'), +(38200, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Purified Spawn'), +(38201, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Purified Spawn'), +(38211, 0, 0, 536871168, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Gnome Cannon Transport to Loc Singing Ridge (No Regs)'), +(38228, 0, 0, 2843738496, 1056, 268976133, 1245184, 8388736, 393224, 12292, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Kill Credit: Crazed Colossus'), +(38241, 0, 0, 256, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Wave C Mob Trigger'), +(38242, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Wave C Mob'), +(38244, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Wave D Mob'), +(38247, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Wave B Mob'), +(38248, 0, 0, 256, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Wave B Mob Trigger'), +(38251, 0, 0, 384, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Create Wildhammer Flare Gun'), +(38255, 0, 0, 536871296, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Create Gnome Cannon Waiver'), +(38261, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Area 52 Rooftop Alarm Sensor'), +(38266, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 41, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Stormspire Ethereal Guard'), +(38268, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 41, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Scryer Dragonhawk Guard'), +(38270, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Stormspire Rooftop Alarm Sensor'), +(38271, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Scryer Rooftop Alarm Sensor'), +(38278, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 41, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Aldor Gryphon Guard'), +(38283, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Aldor Rooftop Alarm Sensor'), +(38286, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 41, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Sporeggar Sporebat Guard'), +(38287, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Sporeggar Rooftop Alarm Sensor'), +(38288, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 41, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Toshley Guard'), +(38291, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Toshley Rooftop Alarm Sensor'), +(38323, 0, 0, 2192, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 28, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 'Immolation'), +(38352, 0, 0, 16777600, 1024, 0, 268435456, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 28, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Deathwail''s Stun'), +(38355, 0, 0, 256, 0, 0, 0, 0, 2097152, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Quest - Hellfire - Quest Credit (Zeth''Gor Must Burn)'), +(38359, 0, 0, 256, 268435456, 128, 268435456, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Boaring Time Destroy Whistle'), +(38375, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 31, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Fel Fire'), +(38381, 0, 0, 256, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 96, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 'Raging Soul'), +(38402, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 41, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Cenarion Storm Crow Guard'), +(38403, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Cenarion Expedition Rooftop Alarm Sensor'), +(38404, 0, 0, 256, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 64, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Growth'), +(38405, 0, 0, 256, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Growth'), +(38409, 0, 0, 464, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Hate to 75% Proc'), +(38423, 0, 0, 384, 136, 0, 0, 0, 8, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 9, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 'Spore Explosion'), +(38440, 0, 0, 384, 1024, 4, 131072, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Kill Credit: Feed Nether Drake'), +(38450, 0, 0, 256, 268435456, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Boaring Time Periodic Aura'), +(38454, 0, 0, 603980160, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 7, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Fight Timer'), +(38489, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Wave E Mob'), +(38490, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Wave E Mob'), +(38492, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Wave E Mob'), +(38493, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Wave E Mob'), +(38512, 0, 0, 327936, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 4, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 'Fiery Boulder'), +(38514, 0, 0, 256, 268435592, 0, 268435456, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 18, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 'Persuasion'), +(38518, 0, 0, 400, 136, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 7, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Cyclone'), +(38521, 0, 0, 536871168, 136, 0, 268697600, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Cyclone'), +(38525, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Mode Swap'), +(38527, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Mode Swap'), +(38529, 0, 0, 256, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 135, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Cancel Eye of Grillok'), +(38532, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Fiery Boulder'), +(38545, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 22, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Periodic Random Breath'), +(38547, 0, 0, 448, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Despawn after Combat'), +(38548, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Netherspite - Breath'), +(38578, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, '[DND]Rexxar''s Rodent Trigger'), +(38587, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 31, 12, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Spirit of Redemption'), +(38600, 0, 0, 256, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Wave E Periodic'), +(38640, 0, 0, 256, 268436480, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 11, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Koi-Koi Death'), +(38651, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 7, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Rancid Mushroom'), +(38656, 0, 0, 384, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Create iCoke Polar Bear Collar'), +(38662, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Massive Health Boost'), +(38666, 0, 0, 384, 268435456, 128, 268435456, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Dire Pinfeather Cleanup'), +(38667, 0, 0, 384, 268435456, 128, 268435456, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Grishnath Orb Cleanup'), +(38668, 0, 0, 384, 268435456, 128, 268435456, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Exorcism Feather Cleanup'), +(38670, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Fight!'), +(38671, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 11, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'yield!'), +(38674, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Magic Sucker Device (Success)'), +(38675, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 5, 7, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Create Magic Sucker Device Buttress (N)'), +(38676, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 5, 7, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Create Magic Sucker Device Buttress (S)'), +(38677, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 5, 7, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Create Magic Sucker Device Buttress (E)'), +(38678, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 5, 7, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Create Magic Sucker Device Buttress (W)'), +(38679, 0, 0, 384, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 5, 7, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Spawn Magic Sucker Device Mob'), +(38681, 0, 0, 384, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 5, 7, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Spawn Magic Sucker Spawner, Device'), +(38685, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 11, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Temp yield!'), +(38686, 0, 0, 384, 268435456, 0, 256, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Aggro'), +(38687, 0, 0, 134217984, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Exorcising the Trees: Force Reaction'), +(38689, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Sparring Threat'), +(38705, 0, 0, 384, 268435456, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 9, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Grow'), +(38706, 0, 0, 603980160, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Fight End'), +(38709, 0, 0, 384, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 5, 7, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Spawn Magic Sucker Device Boss'), +(38710, 0, 0, 2155872640, 268435456, 0, 269484032, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Invis Bunny Transform to Drake'), +(38713, 0, 0, 384, 0, 0, 268435456, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Spellbind Broken'), +(38716, 0, 0, 464, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Deep Wounds'), +(38726, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 30, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Serpentshrine Mushroom'), +(38727, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Magic Sucker Device (Success Visual timer)'), +(38735, 0, 0, 272, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Dragonmaw Hover'), +(38745, 0, 0, 536871296, 268435592, 4, 256, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Bone Shard Area Check'), +(38747, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Feral Charge'), +(38749, 0, 0, 272, 136, 0, 2147483648, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Feral Charge'), +(38752, 0, 0, 536871296, 268435592, 4, 268435456, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Mark Master (Gargoyle)'), +(38756, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Spore Strider'), +(38786, 0, 0, 256, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Create Spirit Calling Totems'), +(38789, 0, 0, 384, 268435456, 128, 268435456, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Spirit Calling Totems Cleanup'), +(38803, 0, 0, 192, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Flaming Weapon'), +(38854, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 3, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Hatch Arakkoa'), +(38865, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 3, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Hatch Bad Arakkoa'), +(38872, 0, 0, 256, 1024, 128, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 34, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Gather the Orbs: Razaani Light Ball Dummy'), +(38873, 0, 0, 256, 1024, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Gather the Orbs: Dummy to Totem'), +(38874, 0, 0, 384, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 18, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Mushoom Creature'), +(38878, 0, 0, 448, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Demon Portal'), +(38888, 0, 0, 384, 268435456, 0, 1048576, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Morcrush Shardling'), +(38889, 0, 0, 384, 268435456, 0, 1048576, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Morcrush Shardling'), +(38890, 0, 0, 384, 268435456, 0, 1048576, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Morcrush Shardling'), +(38922, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 6, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Colossus Lurkers'), +(38928, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 6, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Colossus Ragers'), +(38931, 0, 0, 272, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 65, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Colossus Spawn Confuse'), +(38937, 0, 0, 2512, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 'Immolation'), +(38953, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 3, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Terokkar Free Webbed Creature'), +(38955, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 3, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Terokkar Free Webbed Creature'), +(38956, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 3, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Terokkar Free Webbed Creature'), +(38957, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 3, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Terokkar Free Webbed Creature'), +(38958, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 3, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Terokkar Free Webbed Creature'), +(38969, 0, 0, 16777600, 268436480, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 325, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Karynaku Taxi Aura - Start'), +(38970, 0, 0, 2432, 0, 0, 268435456, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 36, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Karynaku''s Flight Home'), +(38972, 0, 0, 536871168, 268435592, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 31, 135, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Acid Spray'), +(38975, 0, 0, 16777600, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Karynaku Taxi Aura - End'), +(38978, 0, 0, 256, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 3, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Terokkar Free Webbed Creature'), +(38982, 0, 0, 384, 0, 0, 268435456, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Teleporter Kill Credit'), +(38983, 0, 0, 384, 0, 0, 268435456, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Teleporter Kill Credit'), +(38984, 0, 0, 384, 0, 0, 268435456, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Teleporter Kill Credit'), +(39014, 0, 0, 464, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Atrophic Blow'), +(39041, 0, 0, 256, 268435456, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Time Rift'), +(39074, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 4, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, '[DND]Rexxar''s Bird Effect'), +(39080, 0, 0, 384, 268435456, 0, 1048576, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Mountain Shardling'), +(39081, 0, 0, 384, 268435456, 0, 1048576, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Vortex Shardling'), +(39086, 0, 0, 65664, 136, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 'Frost Attack'); +INSERT INTO `spell_dbc` (`Id`, `Dispel`, `Mechanic`, `Attributes`, `AttributesEx`, `AttributesEx2`, `AttributesEx3`, `AttributesEx4`, `AttributesEx5`, `AttributesEx6`, `AttributesEx7`, `Stances`, `StancesNot`, `Targets`, `CastingTimeIndex`, `AuraInterruptFlags`, `ProcFlags`, `ProcChance`, `ProcCharges`, `MaxLevel`, `BaseLevel`, `SpellLevel`, `DurationIndex`, `RangeIndex`, `StackAmount`, `EquippedItemClass`, `EquippedItemSubClassMask`, `EquippedItemInventoryTypeMask`, `Effect1`, `Effect2`, `Effect3`, `EffectDieSides1`, `EffectDieSides2`, `EffectDieSides3`, `EffectRealPointsPerLevel1`, `EffectRealPointsPerLevel2`, `EffectRealPointsPerLevel3`, `EffectBasePoints1`, `EffectBasePoints2`, `EffectBasePoints3`, `EffectMechanic1`, `EffectMechanic2`, `EffectMechanic3`, `EffectImplicitTargetA1`, `EffectImplicitTargetA2`, `EffectImplicitTargetA3`, `EffectImplicitTargetB1`, `EffectImplicitTargetB2`, `EffectImplicitTargetB3`, `EffectRadiusIndex1`, `EffectRadiusIndex2`, `EffectRadiusIndex3`, `EffectApplyAuraName1`, `EffectApplyAuraName2`, `EffectApplyAuraName3`, `EffectAmplitude1`, `EffectAmplitude2`, `EffectAmplitude3`, `EffectMultipleValue1`, `EffectMultipleValue2`, `EffectMultipleValue3`, `EffectMiscValue1`, `EffectMiscValue2`, `EffectMiscValue3`, `EffectMiscValueB1`, `EffectMiscValueB2`, `EffectMiscValueB3`, `EffectTriggerSpell1`, `EffectTriggerSpell2`, `EffectTriggerSpell3`, `EffectSpellClassMaskA1`, `EffectSpellClassMaskA2`, `EffectSpellClassMaskA3`, `EffectSpellClassMaskB1`, `EffectSpellClassMaskB2`, `EffectSpellClassMaskB3`, `EffectSpellClassMaskC1`, `EffectSpellClassMaskC2`, `EffectSpellClassMaskC3`, `MaxTargetLevel`, `SpellFamilyName`, `SpellFamilyFlags1`, `SpellFamilyFlags2`, `SpellFamilyFlags3`, `MaxAffectedTargets`, `DmgClass`, `PreventionType`, `DmgMultiplier1`, `DmgMultiplier2`, `DmgMultiplier3`, `AreaGroupId`, `SchoolMask`, `Comment`) VALUES +(39110, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 'Summon Phoenix Adds'), +(39111, 0, 0, 272, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 5, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Furious Nether-wraith'), +(39115, 0, 0, 384, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Growing Instability'), +(39118, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Tears of the Goddess'), +(39137, 0, 0, 2192, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 28, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 'Immolation'), +(39142, 0, 0, 805306752, 1024, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 'Drain World Tree Dummy'), +(39152, 0, 0, 448, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Darkfury'), +(39162, 0, 0, 384, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'On Quest Accept'), +(39167, 0, 0, 2432, 68, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 28, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Cyclone of Feathers'), +(39173, 0, 0, 384, 268435456, 4, 268435456, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'On Quest Accept Dummy to Druid'), +(39186, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Random Tractor'), +(39191, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 3, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Sha''tari Flames'), +(39203, 0, 0, 256, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Create Druid Signal'), +(39240, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 4, 3, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Sand Gnome'), +(39241, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 4, 3, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Mature Bone Sifter'), +(39243, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Signal Zeppit'), +(39245, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 4, 3, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Mature Bone Sifter'), +(39247, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 4, 3, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Sand Gnome'), +(39250, 0, 0, 384, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 11, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Despawn Clefthoof'), +(39254, 0, 0, 536871168, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Despawn Kael Adds'), +(39260, 0, 0, 536871296, 1024, 4, 269484032, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 3, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 'Revived Pet'), +(39265, 0, 0, 208, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Unstable Explosion'), +(39276, 0, 0, 256, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 135, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Quest - Blade''s Edge (Death''s Door: Despawn Fel Cannon)'), +(39279, 0, 0, 256, 268435456, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Despawn Warp-Gate Defenders'), +(39292, 0, 0, 272, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 65, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Spawn with Stun (1.5s)'), +(39301, 0, 0, 688128256, 1024, 536870916, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 'Nature''s Guardian'), +(39302, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 9, 7, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Quest - The Exorcism, Summon Foul Purge'), +(39304, 0, 0, 8388864, 268435456, 1, 1048576, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Flying Skull PATH (DND)'), +(39305, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 64, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Flying Skull'), +(39308, 0, 0, 256, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Hellfire - The Exorcism, Lightning Cloud Visual'), +(39310, 0, 0, 256, 268435456, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Inciter Trigger Threat Trigger'), +(39311, 0, 0, 2155872640, 268435456, 1, 269484032, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Scrapped Fel Reaver Transform'), +(39324, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Elemental Leatherworking'), +(39325, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Tribal Leatherworking'), +(39326, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Dragonscale Leatherworking'), +(39327, 0, 0, 2432, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 36, 7, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Nethrandamus Taxi Primer'), +(39333, 0, 0, 16777600, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, '[DND]Rexxar Speed Increase'), +(39336, 0, 0, 384, 268435456, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Create Key to the Arcatraz'), +(39351, 0, 0, 384, 268435456, 4, 1048576, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 225, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Shrink'), +(39366, 0, 0, 256, 136, 0, 268435456, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Vortex'), +(39379, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Despawn Minions'), +(39388, 0, 0, 384, 0, 0, 268435456, 0, 393224, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Move to Target'), +(39389, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Teleport'), +(39392, 0, 0, 256, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Infection'), +(39394, 0, 0, 256, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Victory Visual (Chess)'), +(39397, 0, 0, 256, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Chess, Control Piece - Sanctuary (DND)'), +(39402, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Karazhan - Chess: Disable Square, Own (DND)'), +(39424, 0, 0, 256, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 'Summon Durnholde Reinforcements'), +(39426, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, '[DND]Prophecy 1 Credit'), +(39428, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, '[DND]Prophecy 2 Credit'), +(39430, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, '[DND]Prophecy 3 Credit'), +(39431, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, '[DND]Prophecy 4 Credit'), +(39448, 0, 0, 0, 0, 0, 0, 128, 8, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Reset Anchor Point'), +(39485, 0, 0, 603980160, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Fel Reaver Controller Despawn'), +(39491, 0, 0, 384, 268436480, 4, 256, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Random Aggro'), +(39492, 0, 0, 384, 1024, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 37, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'OCW Sporeggar Script Effect'), +(39493, 0, 0, 536871168, 1024, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 37, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'OCW Sporeggar Quest Complete'), +(39494, 0, 0, 8388992, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, '[DND]Marmot Dead, Remove Aura'), +(39496, 0, 0, 8388864, 0, 132, 268435456, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Remove Tainted Cores'), +(39506, 0, 0, 536871168, 136, 4, 268435456, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Wrath of the Astromancer'), +(39514, 0, 0, 384, 1024, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 14, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'OCW Auchindoun Script Effect'), +(39515, 0, 0, 536871168, 1024, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 14, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'OCW Auchindoun Quest Complete'), +(39517, 0, 0, 384, 1024, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 14, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'OCW Dark Portal Script Effect'), +(39518, 0, 0, 536871168, 1024, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 14, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'OCW Dark Portal Horde Quest Complete'), +(39519, 0, 0, 536871168, 1024, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 14, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'OCW Dark Portal Alliance Quest Complete'), +(39523, 0, 0, 384, 1024, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'OCW Aeris Landing Script Effect'), +(39524, 0, 0, 536871168, 1024, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'OCW Aeris Landing Quest Complete'), +(39525, 0, 0, 384, 1024, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 14, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'OCW TOTE Script Effect'), +(39526, 0, 0, 536871168, 1024, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 14, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'OCW TOTE Quest Complete'), +(39532, 0, 0, 536870912, 0, 4, 268435456, 0, 393225, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Create 20 Apexis Crystals'), +(39537, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Quest - Create Fei Fei Stash'), +(39539, 0, 0, 8388992, 0, 4194305, 268435456, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Master''s Touch'), +(39540, 0, 0, 384, 1024, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'OCW Exodar 01 Script Effect'), +(39541, 0, 0, 536871168, 1024, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'OCW Exodar 01 Quest Complete'), +(39549, 0, 0, 384, 268435456, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 37, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'OCW Silvermoon 01 Dummy'), +(39553, 0, 0, 384, 1024, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'OCW Silvermoon Script Effect'), +(39554, 0, 0, 536871168, 1024, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'OCW Silvermoon Quest Complete'), +(39555, 0, 0, 545259904, 1024, 5, 269484032, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 407, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Ashtongue Ruse Master'), +(39561, 0, 0, 384, 1024, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'OCW COT Script Effect'), +(39562, 0, 0, 536871168, 1024, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'OCW COT Alliance Quest Complete'), +(39563, 0, 0, 536871168, 1024, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'OCW COT Horde Quest Complete'), +(39570, 0, 0, 256, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Time Rift 1 Ready'), +(39571, 0, 0, 256, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Time Rift 2 Ready'), +(39572, 0, 0, 256, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Time Rift 3 Ready'), +(39573, 0, 0, 256, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Time Rift 4 Ready'), +(39603, 0, 0, 384, 1024, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'OCW Exodar 02 Script Effect'), +(39604, 0, 0, 536871168, 1024, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'OCW Exodar 02 Quest Complete'), +(39605, 0, 0, 384, 268435456, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 37, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'OCW Exodar 02 Dummy'), +(39619, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Clintar Quest Credit'), +(39624, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Awaken Clintar''s Spirit'), +(39651, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Create Violet Signet of the Archmage'), +(39652, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Create Violet Signet of the Grand Restorer'), +(39653, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Create Violet Signet of the Great Protector'), +(39654, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Create Violet Signet of the Master Assassin'), +(39655, 0, 0, 536871296, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Get Random Target'), +(39657, 0, 0, 536871168, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 'Shadow Inferno Dummy Effect'), +(39663, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 565, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Cosmetic Fel Fire'), +(39664, 0, 0, 262528, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 2, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 'Wound Poison'), +(39688, 0, 0, 262416, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 'Land Mine Periodic'), +(39689, 0, 0, 262480, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 'Land Mine Trigger'), +(39701, 0, 0, 8388992, 0, 1, 268435456, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Ashtongue Ruse Credit'), +(39726, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Book of the Raven Credit'), +(39787, 0, 0, 8388864, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Despawner, other AE (20 yards)'), +(39795, 0, 0, 272, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 39, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Spawn with Stun (2.0s)'), +(39797, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 3, 7, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Raven Stone'), +(39799, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 22, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Sparrowhawk Origin'), +(39892, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Cancel Coax Marmot Aura'), +(39929, 0, 0, 256, 136, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 9, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Naj''entus Spine'), +(39960, 0, 0, 134217984, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Finish the Gronn: Ogre Force Reaction'), +(40015, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'DB ME'), +(40068, 0, 0, 256, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 8, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Knockdown Fel Cannon: The Bolt bunny'), +(40092, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Simon Game - Create Simon game On switch'), +(40093, 0, 0, 2684354816, 268435456, 0, 256, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 569, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Finish the Gronn: Party Periodic Aura'), +(40101, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 3, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Aqueous Spawn'), +(40115, 0, 0, 536871168, 268437504, 67108864, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Knockdown Fel Cannon: Root'), +(40144, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Finish the Gronn: Ogre Say Dummy'), +(40161, 0, 0, 536871168, 268436480, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Bombing Run: Kill Credit'), +(40229, 0, 0, 1073807744, 268436480, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 29, 3, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 'Fear Self'), +(40242, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Druid HoT Check'), +(40257, 0, 0, 384, 268435592, 4, 256, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Molten Punch'), +(40269, 0, 0, 0, 132096, 0, 32768, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Spawn Camera Marker'), +(40271, 0, 0, 256, 268435592, 0, 0, 0, 0, 0, 0, 0, 0, 0, 190, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 'Gorefiend Skeleton'), +(40320, 0, 0, 384, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Create Fortune Coin'), +(40354, 0, 0, 536871168, 136, 5, 256, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Remove Naj''entus Spines'), +(40410, 0, 0, 536871056, 268436616, 4, 268566528, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Hate to Zero'), +(40418, 0, 0, 0, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Fixated Rage Primer'), +(40421, 0, 0, 150995328, 32, 0, 268435456, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Suicide'), +(40422, 0, 0, 384, 268435456, 0, 1048576, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Karrog Shardling'), +(40426, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 245, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Akkarai Hatchling'), +(40435, 0, 0, 0, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 37, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Warp Primer'), +(40448, 0, 0, 448, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Protean Subdual'), +(40467, 0, 0, 536871056, 268436616, 4, 131072, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Hate to Zero'), +(40500, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Simon Game - Create Simon Off Switch'), +(40541, 0, 0, 256, 0, 5, 0, 0, 8, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Despawn Akama/Maiev'), +(40550, 0, 0, 384, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Create Banana Charm'), +(40551, 0, 0, 384, 0, 4, 0, 65536, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Create Picnic Basket'), +(40552, 0, 0, 384, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Create Imp in a Ball'), +(40589, 0, 0, 2281701760, 268438528, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Flask Master'), +(40609, 0, 0, 536871168, 136, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 'Blaze'), +(40720, 0, 0, 536870912, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Terokk Shield'), +(40725, 0, 0, 384, 268436480, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Dummy Trigger'), +(40746, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 29, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Egotistical Weakness'), +(40759, 0, 0, 256, 0, 0, 268435456, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Sanctuary'), +(40800, 0, 0, 256, 0, 4, 0, 0, 8, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Ethereal Ring: The Bolt phantom'), +(40804, 0, 0, 134217984, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Create Mingo''s Fortune'), +(40805, 0, 0, 134217984, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Create Mingo''s Fortune'), +(40806, 0, 0, 134217984, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Create Mingo''s Fortune'), +(40807, 0, 0, 134217984, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Create Mingo''s Fortune'), +(40808, 0, 0, 134217984, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Create Mingo''s Fortune'), +(40809, 0, 0, 134217984, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Create Mingo''s Fortune'), +(40813, 0, 0, 2432, 268435456, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 36, 3, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Dragonmaw Flight Instructor'), +(40820, 0, 0, 256, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Throw Dragonmaw Molotov Target'); +INSERT INTO `spell_dbc` (`Id`, `Dispel`, `Mechanic`, `Attributes`, `AttributesEx`, `AttributesEx2`, `AttributesEx3`, `AttributesEx4`, `AttributesEx5`, `AttributesEx6`, `AttributesEx7`, `Stances`, `StancesNot`, `Targets`, `CastingTimeIndex`, `AuraInterruptFlags`, `ProcFlags`, `ProcChance`, `ProcCharges`, `MaxLevel`, `BaseLevel`, `SpellLevel`, `DurationIndex`, `RangeIndex`, `StackAmount`, `EquippedItemClass`, `EquippedItemSubClassMask`, `EquippedItemInventoryTypeMask`, `Effect1`, `Effect2`, `Effect3`, `EffectDieSides1`, `EffectDieSides2`, `EffectDieSides3`, `EffectRealPointsPerLevel1`, `EffectRealPointsPerLevel2`, `EffectRealPointsPerLevel3`, `EffectBasePoints1`, `EffectBasePoints2`, `EffectBasePoints3`, `EffectMechanic1`, `EffectMechanic2`, `EffectMechanic3`, `EffectImplicitTargetA1`, `EffectImplicitTargetA2`, `EffectImplicitTargetA3`, `EffectImplicitTargetB1`, `EffectImplicitTargetB2`, `EffectImplicitTargetB3`, `EffectRadiusIndex1`, `EffectRadiusIndex2`, `EffectRadiusIndex3`, `EffectApplyAuraName1`, `EffectApplyAuraName2`, `EffectApplyAuraName3`, `EffectAmplitude1`, `EffectAmplitude2`, `EffectAmplitude3`, `EffectMultipleValue1`, `EffectMultipleValue2`, `EffectMultipleValue3`, `EffectMiscValue1`, `EffectMiscValue2`, `EffectMiscValue3`, `EffectMiscValueB1`, `EffectMiscValueB2`, `EffectMiscValueB3`, `EffectTriggerSpell1`, `EffectTriggerSpell2`, `EffectTriggerSpell3`, `EffectSpellClassMaskA1`, `EffectSpellClassMaskA2`, `EffectSpellClassMaskA3`, `EffectSpellClassMaskB1`, `EffectSpellClassMaskB2`, `EffectSpellClassMaskB3`, `EffectSpellClassMaskC1`, `EffectSpellClassMaskC2`, `EffectSpellClassMaskC3`, `MaxTargetLevel`, `SpellFamilyName`, `SpellFamilyFlags1`, `SpellFamilyFlags2`, `SpellFamilyFlags3`, `MaxAffectedTargets`, `DmgClass`, `PreventionType`, `DmgMultiplier1`, `DmgMultiplier2`, `DmgMultiplier3`, `AreaGroupId`, `SchoolMask`, `Comment`) VALUES +(40829, 0, 0, 671088896, 268435456, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Banish the Demons: Kill Credit'), +(40853, 0, 0, 256, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 6, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Dragonmaw Knockdown: The Bolt Trigger'), +(40908, 0, 0, 134217984, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Create Mingo''s Fortune'), +(40910, 0, 0, 134217984, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Create Mingo''s Fortune'), +(40911, 0, 0, 134217984, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Create Mingo''s Fortune'), +(40912, 0, 0, 134217984, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Create Mingo''s Fortune'), +(40913, 0, 0, 134217984, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Create Mingo''s Fortune'), +(40914, 0, 0, 134217984, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Create Mingo''s Fortune'), +(40915, 0, 0, 134217984, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Create Mingo''s Fortune'), +(40916, 0, 0, 134217984, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Create Mingo''s Fortune'), +(40918, 0, 0, 134217984, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Create Mingo''s Fortune'), +(40919, 0, 0, 134217984, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Create Mingo''s Fortune'), +(40920, 0, 0, 134217984, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Create Mingo''s Fortune'), +(40921, 0, 0, 134217984, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Create Mingo''s Fortune'), +(40922, 0, 0, 134217984, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Create Mingo''s Fortune'), +(40923, 0, 0, 134217984, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Create Mingo''s Fortune'), +(40925, 0, 0, 536871168, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Threat'), +(40941, 0, 0, 256, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 39, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Mirror Images Preparation'), +(40947, 0, 0, 384, 524288, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Initialize Images'), +(40950, 0, 0, 536871296, 1024, 4, 268435456, 0, 0, 0, 0, 0, 0, 0, 190, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Legion Ring - Instakill Other'), +(40988, 0, 0, 256, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 6, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Dragonmaw Knockdown: The Bolt Trigger'), +(40996, 0, 0, 256, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 6, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Dragonmaw Knockdown: The Bolt Trigger'), +(41000, 0, 0, 448, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Reduced Threat'), +(41012, 0, 0, 256, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 6, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Dragonmaw Knockdown: The Bolt Trigger'), +(41018, 0, 0, 256, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 6, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Dragonmaw Knockdown: The Bolt Trigger'), +(41025, 0, 0, 16777472, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 6, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Dragonmaw Knockdown: The Bolt Trigger'), +(41048, 0, 0, 448, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 'Shadow Resonance'), +(41087, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Simon Game - Create Simon game On switch Large'), +(41088, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Simon Game - Create Simon Off Switch Large'), +(41096, 0, 0, 8388992, 0, 1, 1048576, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Dummy'), +(41127, 0, 0, 536873344, 268435456, 4, 268435456, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Through the Eyes of Toranaku'), +(41140, 0, 0, 256, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 'Immolation'), +(41243, 0, 0, 256, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Despawn Illidari Elite'), +(41258, 0, 0, 536871168, 0, 4, 268435456, 0, 0, 0, 0, 0, 0, 0, 190, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Instakill Demon'), +(41288, 0, 0, 256, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 6, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Reth''hedron Knockdown: The Bolt Trigger'), +(41401, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 29, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Images'), +(41424, 0, 0, 8388992, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Signal Lucille'), +(41529, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Create Band of the Eternal Champion'), +(41530, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Create Band of the Eternal Defender'), +(41531, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Create Band of the Eternal Restorer'), +(41532, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Create Band of the Eternal Sage'), +(41536, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Create Master''s Key'), +(41576, 0, 0, 464, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Hate to 50%'), +(41577, 0, 0, 159383808, 268435488, 540672, 0, 128, 393224, 4096, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Transform: Invisible Stalker'), +(41582, 0, 0, 536871056, 268436616, 4, 131072, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Hate to Zero'), +(41585, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Create Blackened Urn Replacement'), +(41599, 0, 0, 4194560, 0, 4, 268435456, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Knockdown Fel Cannon: The Bolt Tracer'), +(41612, 0, 0, 2281701760, 268436480, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Flask Master'), +(41613, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Create Ashtongue Cowl'), +(41627, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Medallion of Karabor Replacement'), +(41628, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Blessed Medallion of Karabor Replacement'), +(41824, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 'Summon Phoenix Adds'), +(41910, 0, 0, 545259904, 136, 536870916, 268435456, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Ember Blast'), +(41919, 0, 0, 384, 268436480, 4, 256, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Random Aggro'), +(41923, 0, 0, 536871296, 268435592, 4, 256, 0, 8, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 27, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Remove Parasitic Shadowfiends'), +(41925, 0, 0, 384, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Hateful Strike Primer'), +(41927, 0, 0, 536871296, 0, 4, 269484032, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 3, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 'Dismount Summoned Pet'), +(41928, 0, 0, 538968320, 268436616, 67108868, 64, 2113, 0, 1024, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 12, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Argent Stand Unit: Ride Gargoyle'), +(41929, 0, 0, 536871296, 1024, 4, 268632064, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 'Guardian Aggro Spell'), +(41930, 0, 0, 384, 268435456, 4, 196608, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 96, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 64, 'Dummy Nuke'), +(41934, 0, 0, 384, 268435456, 4, 1048576, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 225, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Shrink'), +(41935, 0, 0, 8388992, 268435456, 4, 1048576, 128, 0, 4, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Shrink'), +(41951, 0, 0, 256, 268435592, 4, 256, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 'Random Target'), +(41963, 0, 0, 4194304, 131072, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 14, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Shield Health Update'), +(41967, 0, 0, 536871296, 0, 4, 268435456, 128, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 27, 6, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 'Pet Aggro Spell'), +(41977, 0, 0, 536871296, 0, 4, 268435456, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 'Summon Infernal Aggro Spell'), +(41979, 0, 0, 320, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Tap to Master Proc'), +(41991, 0, 0, 400, 0, 0, 67108864, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 3, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Discovery Trigger'), +(41994, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Jons despawn buff (DND)'), +(41996, 0, 0, 536871168, 136, 4, 268435456, 0, 393224, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Destroy Souls'), +(41998, 0, 0, 448, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Despawn Self'), +(42000, 0, 0, 448, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Despawn Self'), +(42001, 0, 0, 448, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Despawn Self'), +(42011, 0, 0, 4194560, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 'Dark Glare'), +(42026, 0, 0, 536871296, 136, 536870916, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 'Dive Bomb'), +(42037, 0, 0, 384, 268436480, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Random Aggro'), +(42092, 0, 0, 384, 268436480, 4, 256, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Random Aggro'), +(42117, 0, 0, 384, 1024, 4, 268435456, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Ashtongue Pet Faction Switch'), +(42123, 0, 0, 536871168, 268435592, 4, 268435456, 0, 8, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Fixate'), +(42126, 0, 0, 400, 1024, 0, 67108864, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 3, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Discovery Trigger'), +(42130, 0, 0, 2048, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'AFK Check'), +(42148, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Create Shattered Halls Key Replacement'), +(42163, 0, 0, 384, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Crypt Scarabs'), +(42172, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Snare Self 70%'), +(42173, 0, 0, 536871296, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Snare Self'), +(42174, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Replace Reflective Dust'), +(42236, 0, 0, 256, 268437504, 1, 1048576, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Darkmoon Faire Carnie Appearance A'), +(42237, 0, 0, 256, 268437504, 1, 1048576, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Darkmoon Faire Carnie Appearance B'), +(42238, 0, 0, 256, 268437504, 1, 1048576, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Darkmoon Faire Carnie Appearance C'), +(42239, 0, 0, 256, 268437504, 1, 1048576, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Darkmoon Faire Carnie Appearance D'), +(42240, 0, 0, 256, 268437504, 1, 1048576, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Darkmoon Faire Carnie Appearance E'), +(42241, 0, 0, 256, 268437504, 1, 1048576, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Darkmoon Faire Carnie Appearance F'), +(42416, 0, 0, 256, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Apexis Mob Faction Check Aura'), +(42437, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Create BlizzCon 2007 Prize'), +(42446, 0, 0, 536871168, 268436480, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Zul''Aman - Bear Platform - Kill Credit'), +(42449, 0, 0, 16777472, 268435456, 0, 1048576, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Westguard Cavalry Transform into Human'), +(42451, 0, 0, 16777472, 268435456, 0, 1048576, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Westguard Cavalry Transform into Dwarf'), +(42461, 0, 0, 536871168, 268436480, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Zul''Aman - Dragonhawk Platform - Kill Credit'), +(42462, 0, 0, 536871168, 268436480, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Zul''Aman - Eagle Platform - Kill Credit'), +(42465, 0, 0, 536871168, 268436480, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Zul''Aman - Lynx Platform - Kill Credit'), +(42538, 0, 0, 67109248, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 190, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Alerted Aura'), +(42543, 0, 0, 384, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Cancel Alert'), +(42686, 0, 0, 545259776, 0, 0, 268435456, 128, 8, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 18, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Fire'), +(42698, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 4, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Danger! Explosive!: Summon Ore Chest'), +(42699, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 4, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Danger! Explosive!: Summon Gem 000 Chest'), +(42700, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 4, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Danger! Explosive!: Summon Gem 001 Chest'), +(42701, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 4, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Danger! Explosive!: Summon Gem 002 Chest'), +(42738, 0, 0, 272, 268435456, 0, 268435456, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Super Invis'), +(42752, 0, 0, 384, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Create Goblin Gumbo Kettle'), +(42773, 0, 0, 384, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Create Fishing Chair'), +(42778, 0, 0, 384, 268435456, 128, 268435456, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Blessed Vial Cleanup'), +(42819, 0, 0, 384, 136, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 'Move Once'), +(42825, 0, 0, 256, 268435456, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 28, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Cannon Prep'), +(42877, 0, 0, 384, 268435456, 128, 268435456, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Apothecary''s Poison Cleanup'), +(42911, 0, 0, 537985280, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Flight Path'), +(42935, 0, 0, 537985280, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Flight Path'), +(42959, 0, 0, 537985280, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Flight Path'), +(42960, 0, 0, 537985280, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Flight Path'), +(42961, 0, 0, 537985280, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Flight Path'), +(42962, 0, 0, 537985280, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Flight Path'), +(42983, 0, 0, 134220032, 268435456, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 36, 3, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Valgarde Warrior'), +(42990, 0, 0, 448, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Despawn Self'), +(43027, 0, 0, 134220032, 268435456, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 36, 3, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Valgarde Mage'), +(43029, 0, 0, 134220032, 268435456, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 36, 3, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Valgarde Priest'), +(43031, 0, 0, 134220032, 268435456, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 36, 3, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Valgarde Paladin'), +(43062, 0, 0, 2147483904, 268435456, 0, 1048576, 4160, 402653696, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Alpha Worg: Garwal''s Invisibility'), +(43099, 0, 0, 464, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Deep Wounds'), +(43169, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 3, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Draconis Gastritis: Summon Tillinghast''s Plagued Meat'), +(43173, 0, 0, 0, 1024, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Draconis Gastritis: Dummy to Draconis Gastritis Bunny'), +(43226, 0, 0, 2304, 268435456, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 36, 3, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Servitor of the Light'), +(43247, 0, 0, 537985280, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Flight Path'), +(43248, 0, 0, 537985280, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Flight Path'), +(43250, 0, 0, 537985280, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Flight Path'), +(43251, 0, 0, 537985280, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Flight Path'), +(43252, 0, 0, 537985280, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Flight Path'), +(43253, 0, 0, 537985280, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Flight Path'), +(43254, 0, 0, 256, 136, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Threat'), +(43295, 0, 0, 448, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Despawn Self'), +(43296, 0, 0, 256, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Extract Gas'), +(43318, 0, 0, 0, 1024, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Scare the Guano Out of Them!: Dummy to Bat'), +(43319, 0, 0, 0, 1024, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 135, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Scare the Guano Out of Them!: Dummy to Bunny'), +(43336, 0, 0, 536871168, 0, 0, 268435456, 0, 393224, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Val''kyr Suicide'), +(43349, 0, 0, 384, 268435456, 4, 1048576, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 225, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Shrink'), +(43350, 0, 0, 384, 268435456, 4, 1048576, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 225, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Shrink'), +(43360, 0, 0, 536871168, 268435592, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 9, 36, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Call of the Beast'), +(43372, 0, 0, 0, 268435456, 0, 1048576, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Transform into True Form'), +(43388, 0, 0, 687866112, 32, 0, 268435456, 0, 393224, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Suicide, No Blood, No Logging'), +(43397, 0, 0, 2684354816, 268435584, 67108864, 269484096, 4096, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Absolutely... This Will Work!: Vrykul Transform'), +(43412, 0, 0, 537985280, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Mission: Plague This!: Create Bombs & Taxi'), +(43462, 0, 0, 384, 268435456, 128, 268435456, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Mission: Plague This!: Bomb Cleanup'); +INSERT INTO `spell_dbc` (`Id`, `Dispel`, `Mechanic`, `Attributes`, `AttributesEx`, `AttributesEx2`, `AttributesEx3`, `AttributesEx4`, `AttributesEx5`, `AttributesEx6`, `AttributesEx7`, `Stances`, `StancesNot`, `Targets`, `CastingTimeIndex`, `AuraInterruptFlags`, `ProcFlags`, `ProcChance`, `ProcCharges`, `MaxLevel`, `BaseLevel`, `SpellLevel`, `DurationIndex`, `RangeIndex`, `StackAmount`, `EquippedItemClass`, `EquippedItemSubClassMask`, `EquippedItemInventoryTypeMask`, `Effect1`, `Effect2`, `Effect3`, `EffectDieSides1`, `EffectDieSides2`, `EffectDieSides3`, `EffectRealPointsPerLevel1`, `EffectRealPointsPerLevel2`, `EffectRealPointsPerLevel3`, `EffectBasePoints1`, `EffectBasePoints2`, `EffectBasePoints3`, `EffectMechanic1`, `EffectMechanic2`, `EffectMechanic3`, `EffectImplicitTargetA1`, `EffectImplicitTargetA2`, `EffectImplicitTargetA3`, `EffectImplicitTargetB1`, `EffectImplicitTargetB2`, `EffectImplicitTargetB3`, `EffectRadiusIndex1`, `EffectRadiusIndex2`, `EffectRadiusIndex3`, `EffectApplyAuraName1`, `EffectApplyAuraName2`, `EffectApplyAuraName3`, `EffectAmplitude1`, `EffectAmplitude2`, `EffectAmplitude3`, `EffectMultipleValue1`, `EffectMultipleValue2`, `EffectMultipleValue3`, `EffectMiscValue1`, `EffectMiscValue2`, `EffectMiscValue3`, `EffectMiscValueB1`, `EffectMiscValueB2`, `EffectMiscValueB3`, `EffectTriggerSpell1`, `EffectTriggerSpell2`, `EffectTriggerSpell3`, `EffectSpellClassMaskA1`, `EffectSpellClassMaskA2`, `EffectSpellClassMaskA3`, `EffectSpellClassMaskB1`, `EffectSpellClassMaskB2`, `EffectSpellClassMaskB3`, `EffectSpellClassMaskC1`, `EffectSpellClassMaskC2`, `EffectSpellClassMaskC3`, `MaxTargetLevel`, `SpellFamilyName`, `SpellFamilyFlags1`, `SpellFamilyFlags2`, `SpellFamilyFlags3`, `MaxAffectedTargets`, `DmgClass`, `PreventionType`, `DmgMultiplier1`, `DmgMultiplier2`, `DmgMultiplier3`, `AreaGroupId`, `SchoolMask`, `Comment`) VALUES +(43500, 0, 0, 384, 268435456, 128, 268435456, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'All Hail the Conqueror of Skorn!: Spyglass Cleanup'), +(43502, 0, 0, 384, 268435456, 128, 268435456, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'The Conqueror of Skorn!: Spyglass Cleanup'), +(43513, 0, 0, 2147483904, 268435456, 0, 1048576, 4096, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Westguard Defender - Sleeping Transform'), +(43536, 0, 0, 537133312, 136, 67108864, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Set Health'), +(43537, 0, 0, 537133312, 136, 67108864, 0, 0, 8, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Set Health'), +(43538, 0, 0, 537133312, 136, 67108864, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Set Health'), +(43624, 0, 0, 384, 0, 4, 256, 0, 256, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Static Disruption'), +(43645, 0, 0, 384, 268435456, 0, 0, 128, 8, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, '1 Health'), +(43675, 0, 0, 256, 268435456, 0, 0, 4096, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Westguard Lumberjack - Wood Transform'), +(43793, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Rope Periodic Check'), +(43801, 0, 0, 8388992, 0, 1, 268435456, 128, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Despawn Other'), +(43830, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 14, 0, 0, 0, 0, 0, 0, 0, 18, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Place Dynamite'), +(43888, 0, 0, 2281701760, 268435456, 268435457, 0, 0, 512, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Steel Gate Gargoyle Check Zone Buff'), +(43920, 0, 0, 1114368, 268468224, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 327, 12, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Flight Path'), +(43989, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Electrical Overload Primer Warmup'), +(44034, 0, 0, 0, 0, 4, 268435456, 128, 8, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Mental Whiplash'), +(44039, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 'TheresaDocsTestSpell'), +(44118, 0, 0, 65664, 136, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 64, 'Fists of Arcane Fury'), +(44195, 0, 0, 256, 268435456, 0, 0, 0, 8, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Phoenix Egg'), +(44228, 0, 0, 67109120, 0, 4, 0, 8192, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Gravity Lapse'), +(44230, 0, 0, 536871168, 136, 4, 256, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Gravity Lapse'), +(44236, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 3, 6, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Trigger 000'), +(44239, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Drunk Invisibility (Medium)'), +(44277, 0, 0, 262608, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'High Explosive Sheep Passive'), +(44278, 0, 0, 384, 268435456, 128, 268435456, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Sleeping Giants: Awakening Rod Cleanup'), +(44288, 0, 0, 786880, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 2, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 'Crippling Poison'), +(44356, 0, 0, 2684354944, 268437504, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'No Blink'), +(44409, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Copy of Create Blackened Urn Replacement'), +(44421, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Harry''s Debt'), +(44428, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Jack''s Debt'), +(44453, 0, 0, 0, 1024, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'The Way to His Heart...: Reef Cow Aura'), +(44476, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'The Way to His Heart...: Reef Cow Periodic'), +(44733, 0, 0, 0, 0, 4, 256, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Eagle Swoop Primer'), +(44734, 0, 0, 8388608, 0, 4, 269484032, 128, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Electrical Overload End'), +(44736, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Eagle Call Warmup'), +(44763, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'PVP Daily - Nagrand - Kill Credit'), +(44764, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Daily - Nagrand - Kill Credit'), +(44802, 0, 0, 8388992, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Auchindoun PvP Daily Credit'), +(44803, 0, 0, 8388992, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Auchindoun PvP Daily Credit'), +(44830, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'BLB Bunny - Kickoff Kicker Stats'), +(44918, 0, 0, 2155872640, 268435456, 1, 269484032, 64, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Archer - BE Male Transform Tier 2'), +(44919, 0, 0, 2155872640, 268435456, 1, 269484032, 64, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Archer - BE Male Transform Tier 3'), +(44920, 0, 0, 2155872640, 268435456, 1, 269484032, 64, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Archer - BE Male Transform Tier 4'), +(44921, 0, 0, 2155872640, 268435456, 1, 269484032, 64, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Archer - BE Female Transform Tier 1'), +(44922, 0, 0, 2155872640, 268435456, 1, 269484032, 64, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Archer - BE Female Transform Tier 2'), +(44923, 0, 0, 2155872640, 268435456, 1, 269484032, 64, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Archer - BE Female Transform Tier 3'), +(44924, 0, 0, 2155872640, 268435456, 1, 269484032, 64, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Archer - BE Female Transform Tier 4'), +(44925, 0, 0, 2155872640, 268435456, 1, 269484032, 64, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Archer - Draenei Male Transform Tier 1'), +(44926, 0, 0, 2155872640, 268435456, 1, 269484032, 64, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Archer - Draenei Male Transform Tier 2'), +(44927, 0, 0, 2155872640, 268435456, 1, 269484032, 64, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Archer - Draenei Male Transform Tier 3'), +(44928, 0, 0, 2155872640, 268435456, 1, 269484032, 64, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Archer - Draenei Male Transform Tier 4'), +(44929, 0, 0, 2155872640, 268435456, 1, 269484032, 64, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Archer - Draenei Female Transform Tier 1'), +(44930, 0, 0, 2155872640, 268435456, 1, 269484032, 64, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Archer - Draenei Female Transform Tier 2'), +(44931, 0, 0, 2155872640, 268435456, 1, 269484032, 64, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Archer - Draenei Female Transform Tier 3'), +(44932, 0, 0, 2155872640, 268435456, 1, 269484032, 64, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Archer - Draenei Female Transform Tier 4'), +(44962, 0, 0, 2155872640, 268435456, 1, 269484032, 64, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Archer - BE Male Transform Tier 1'), +(44964, 0, 0, 16777216, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Boulder Assault'), +(44988, 0, 0, 384, 268435456, 128, 268435456, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Fel Gland Cleanup'), +(44989, 0, 0, 256, 268437504, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Christmas Grand Warlock Nethekurse'), +(44990, 0, 0, 256, 268437504, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Christmas Grandmaster Vorpil'), +(44991, 0, 0, 256, 268437504, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Christmas Exarch Maladaar'), +(44992, 0, 0, 16777472, 268437504, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Christmas Captain Skarloc'), +(44995, 0, 0, 256, 268437504, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Christmas Nethermancer Sepethrea'), +(44996, 0, 0, 256, 268437504, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Christmas High Botanist Freywinn'), +(45073, 0, 0, 0, 1024, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Wretched Controller - Sanctum: Random Target'), +(45074, 0, 0, 2155872640, 268435456, 1, 269484032, 64, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Wretched Hungerer Transform'), +(45077, 0, 0, 384, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Berserk Buff Timer'), +(45079, 0, 0, 0, 1024, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Wretched Controller - Armory: Random Target'), +(45080, 0, 0, 0, 1024, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Wretched Controller - Docks West: Random Target'), +(45081, 0, 0, 0, 1024, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Wretched Controller - Docks East: Random Target'), +(45092, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 9, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Faction, Spar Buddy'), +(45107, 0, 0, 2432, 0, 0, 268435456, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Karynaku''s Flight Home'), +(45116, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 565, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Cosmetic Fire'), +(45126, 0, 0, 384, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Create Rocket Chicken'), +(45128, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Create Kite'), +(45132, 0, 0, 384, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Create Paper Flying Machine Kit'), +(45142, 0, 0, 384, 268435456, 128, 268435456, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Coilskar Ore Cleanup'), +(45146, 0, 0, 384, 268435456, 128, 268435456, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Orb of Murloc Control Cleanup'), +(45147, 0, 0, 384, 268435456, 128, 268435456, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Ata''mal Armament Cleanup'), +(45155, 0, 0, 2155872640, 268435456, 1, 269484032, 64, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Warrior - BE Female Transform Tier 1'), +(45156, 0, 0, 2155872640, 268435456, 1, 269484032, 64, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Warrior - BE Female Transform Tier 2'), +(45157, 0, 0, 2155872640, 268435456, 1, 269484032, 64, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Warrior - BE Female Transform Tier 3'), +(45158, 0, 0, 2155872640, 268435456, 1, 269484032, 64, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Warrior - BE Female Transform Tier 4'), +(45159, 0, 0, 2155872640, 268435456, 1, 269484032, 64, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Warrior - BE Male Transform Tier 1'), +(45160, 0, 0, 2155872640, 268435456, 1, 269484032, 64, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Warrior - BE Male Transform Tier 2'), +(45161, 0, 0, 2155872640, 268435456, 1, 269484032, 64, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Warrior - BE Male Transform Tier 3'), +(45162, 0, 0, 2155872640, 268435456, 1, 269484032, 64, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Warrior - BE Male Transform Tier 4'), +(45163, 0, 0, 2155872640, 268435456, 1, 269484032, 64, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Warrior - Draenei Female Transform Tier 1'), +(45164, 0, 0, 2155872640, 268435456, 1, 269484032, 64, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Warrior - Draenei Female Transform Tier 2'), +(45165, 0, 0, 2155872640, 268435456, 1, 269484032, 64, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Warrior - Draenei Female Transform Tier 3'), +(45166, 0, 0, 2155872640, 268435456, 1, 269484032, 64, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Warrior - Draenei Female Transform Tier 4'), +(45167, 0, 0, 2155872640, 268435456, 1, 269484032, 64, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Warrior - Draenei Male Transform Tier 1'), +(45168, 0, 0, 2155872640, 268435456, 1, 269484032, 64, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Warrior - Draenei Male Transform Tier 2'), +(45169, 0, 0, 2155872640, 268435456, 1, 269484032, 64, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Warrior - Draenei Male Transform Tier 3'), +(45170, 0, 0, 2155872640, 268435456, 1, 269484032, 64, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Warrior - Draenei Male Transform Tier 4'), +(45178, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Create Golden Pig Coin'), +(45179, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Create Silver Pig Coin'), +(45194, 0, 0, 328064, 1024, 0, 0, 128, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 'zzOLDRighteous Fury'), +(45196, 0, 0, 65664, 136, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 'Frost Attack'), +(45198, 0, 0, 2147484032, 268438528, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Flask Master'), +(45210, 0, 0, 464, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Taunt Hit Chance'), +(45249, 0, 0, 0, 1024, 0, 268435456, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 327, 7, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Taxi - Skyguard Outpost to Skettis'), +(45250, 0, 0, 0, 1024, 0, 268435456, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 327, 7, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Taxi - Skettis to Skyguard Outpost'), +(45258, 0, 0, 536871168, 136, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 'Summon Shadow Images'), +(45272, 0, 0, 256, 268435592, 4, 256, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 37, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 'Shadow Image'), +(45303, 0, 0, 384, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Borean Tundra - Valiance Keep Flavor - Queue - Reply Profession'), +(45304, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Borean Tundra - Valiance Keep Flavor - Queue - Assign Profession - Soldier'), +(45305, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Borean Tundra - Valiance Keep Flavor - Queue - Assign Profession - Civilian'), +(45306, 0, 0, 384, 1024, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Borean Tundra - Valiance Keep Flavor - Queue Spot Ping'), +(45308, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 347, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Borean Tundra - Valiance Keep Flavor - Summon Recruit'), +(45318, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Create King Mrgl-Mrgl''s Spare Suit'), +(45331, 0, 0, 536870912, 0, 0, 268435456, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 327, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Flight through Caverns'), +(45367, 0, 0, 2432, 268435456, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Translocate'), +(45370, 0, 0, 2432, 268435456, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Translocate'), +(45393, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 347, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Quest - Borean Tundra - Summon Civilian Recruit'), +(45394, 0, 0, 384, 268435456, 0, 196608, 0, 0, 16384, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 96, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 64, 'Dummy Nuke'), +(45396, 0, 0, 262336, 0, 16777216, 67108864, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 'Blessed Weapon Coating'), +(45398, 0, 0, 262336, 0, 16777216, 67108864, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 'Righteous Weapon Coating'), +(45413, 0, 0, 256, 268436480, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 27, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Stun'), +(45434, 0, 0, 384, 1024, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Borean Tundra - Valiance Keep Flavor - Ping Footman Spawner'), +(45435, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 347, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Borean Tundra - Valiance Keep Flavor - Summon Footman'), +(45436, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 28, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Borean Tundra - Valiance Keep Flavor - Ping Combatant'), +(45454, 0, 0, 384, 268435456, 128, 268435456, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Pulsating Runestone Cleanup'), +(45488, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 25, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Crypt Bug'), +(45489, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 552, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Crypt Bug 2'), +(45498, 0, 0, 8388864, 0, 5, 1048576, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Elder Kesuk Credit'), +(45499, 0, 0, 8388864, 0, 5, 1048576, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Elder Sagani Credit'), +(45500, 0, 0, 8388864, 0, 5, 1048576, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Elder Takret Credit'), +(45501, 0, 0, 8388864, 0, 5, 1048576, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Elder Yakone Credit'), +(45518, 0, 0, 448, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Quest Despawn Self'), +(45519, 0, 0, 400, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'zzOLD Defiance'), +(45520, 0, 0, 400, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'zzOLD Defiance'), +(45521, 0, 0, 400, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'zzOLD Defiance'), +(45538, 0, 0, 142606592, 268435456, 1, 1048576, 4160, 8, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Tuskarr Spirit Transform'), +(45652, 0, 0, 384, 268435456, 128, 268435456, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Arcane Binder Cleanup'), +(45687, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Shield Orbs'), +(45688, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Shield Orbs'), +(45689, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Shield Orbs'), +(45701, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Create Warsong Outfit'), +(45704, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 9, 134, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Borean Tundra - Valiance Keep Flavor - Summon Hostile Footman'), +(45705, 0, 0, 142606592, 268697600, 1, 1048576, 4160, 8, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Naked Caravan Guard - Orc Male Transform'), +(45706, 0, 0, 142606592, 268697600, 1, 1048576, 4160, 8, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Naked Caravan Guard - Orc Female Transform'), +(45707, 0, 0, 142606592, 268697600, 1, 1048576, 4160, 8, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Naked Caravan Guard - Forsaken Male Transform'), +(45708, 0, 0, 142606592, 268697600, 1, 1048576, 4160, 8, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Naked Caravan Guard - Tauren Male Transform'), +(45709, 0, 0, 142606592, 268697600, 1, 1048576, 4160, 8, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Naked Caravan Worker - Orc Male Transform'), +(45710, 0, 0, 142606592, 268697600, 1, 1048576, 4160, 8, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Naked Caravan Worker - Orc Female Transform'); +INSERT INTO `spell_dbc` (`Id`, `Dispel`, `Mechanic`, `Attributes`, `AttributesEx`, `AttributesEx2`, `AttributesEx3`, `AttributesEx4`, `AttributesEx5`, `AttributesEx6`, `AttributesEx7`, `Stances`, `StancesNot`, `Targets`, `CastingTimeIndex`, `AuraInterruptFlags`, `ProcFlags`, `ProcChance`, `ProcCharges`, `MaxLevel`, `BaseLevel`, `SpellLevel`, `DurationIndex`, `RangeIndex`, `StackAmount`, `EquippedItemClass`, `EquippedItemSubClassMask`, `EquippedItemInventoryTypeMask`, `Effect1`, `Effect2`, `Effect3`, `EffectDieSides1`, `EffectDieSides2`, `EffectDieSides3`, `EffectRealPointsPerLevel1`, `EffectRealPointsPerLevel2`, `EffectRealPointsPerLevel3`, `EffectBasePoints1`, `EffectBasePoints2`, `EffectBasePoints3`, `EffectMechanic1`, `EffectMechanic2`, `EffectMechanic3`, `EffectImplicitTargetA1`, `EffectImplicitTargetA2`, `EffectImplicitTargetA3`, `EffectImplicitTargetB1`, `EffectImplicitTargetB2`, `EffectImplicitTargetB3`, `EffectRadiusIndex1`, `EffectRadiusIndex2`, `EffectRadiusIndex3`, `EffectApplyAuraName1`, `EffectApplyAuraName2`, `EffectApplyAuraName3`, `EffectAmplitude1`, `EffectAmplitude2`, `EffectAmplitude3`, `EffectMultipleValue1`, `EffectMultipleValue2`, `EffectMultipleValue3`, `EffectMiscValue1`, `EffectMiscValue2`, `EffectMiscValue3`, `EffectMiscValueB1`, `EffectMiscValueB2`, `EffectMiscValueB3`, `EffectTriggerSpell1`, `EffectTriggerSpell2`, `EffectTriggerSpell3`, `EffectSpellClassMaskA1`, `EffectSpellClassMaskA2`, `EffectSpellClassMaskA3`, `EffectSpellClassMaskB1`, `EffectSpellClassMaskB2`, `EffectSpellClassMaskB3`, `EffectSpellClassMaskC1`, `EffectSpellClassMaskC2`, `EffectSpellClassMaskC3`, `MaxTargetLevel`, `SpellFamilyName`, `SpellFamilyFlags1`, `SpellFamilyFlags2`, `SpellFamilyFlags3`, `MaxAffectedTargets`, `DmgClass`, `PreventionType`, `DmgMultiplier1`, `DmgMultiplier2`, `DmgMultiplier3`, `AreaGroupId`, `SchoolMask`, `Comment`) VALUES +(45711, 0, 0, 142606592, 268697600, 1, 1048576, 4160, 8, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Naked Caravan Worker - Forsaken Male Transform'), +(45712, 0, 0, 142606592, 268697600, 1, 1048576, 4160, 8, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Naked Caravan Worker - Troll Male Transform'), +(45718, 0, 0, 142606592, 268697600, 1, 1048576, 4160, 8, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Naked Caravan Worker - Master Transform'), +(45734, 0, 0, 159383936, 32, 0, 1048576, 2228352, 393224, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Eric''s Outrageous Invisibility'), +(45763, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Create Warsong Orc Disguise'), +(45764, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Create Warsong Banner'), +(45766, 0, 0, 384, 268435456, 128, 268435456, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Warsong Banner Cleanup'), +(45784, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'TEST - Targetted Music Spell 2'), +(45810, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Hate Monster (Spar)'), +(45812, 0, 0, 256, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Hate Monster (Spar Buddy)'), +(45847, 0, 0, 16777600, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Copy of [DND]Rexxar Speed Increase'), +(45904, 0, 0, 536871312, 1024, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 28, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Offensive State'), +(45965, 0, 0, 0, 525312, 4, 268435456, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Move to Matching String ID2 (Local Event)'), +(45966, 0, 0, 384, 525312, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Attack Matching String ID2 (Local Event)'), +(46061, 0, 0, 0, 1024, 0, 268435456, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 327, 3, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Taxi - Amber Ledge to Coldarra'), +(46179, 0, 0, 384, 268435456, 128, 268435456, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Demonic Blood Cleanup'), +(46204, 0, 0, 384, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Create Pet Biscuits'), +(46207, 0, 0, 256, 268437504, 1, 1048576, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Midsummer Flamekeeper - Blood Elf'), +(46209, 0, 0, 256, 268437504, 1, 1048576, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Midsummer Flamekeeper - Draenei'), +(46210, 0, 0, 256, 268437504, 1, 1048576, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Midsummer Flamekeeper - Dwarf'), +(46211, 0, 0, 256, 268437504, 1, 1048576, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Midsummer Flamekeeper - Gnome'), +(46212, 0, 0, 256, 268437504, 1, 1048576, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Midsummer Flamekeeper - Goblin'), +(46213, 0, 0, 256, 268437504, 1, 1048576, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Midsummer Flamekeeper - Human'), +(46215, 0, 0, 256, 268437504, 1, 1048576, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Midsummer Flamekeeper - Night Elf'), +(46216, 0, 0, 256, 268437504, 1, 1048576, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Midsummer Flamekeeper - Orc'), +(46220, 0, 0, 384, 268436480, 4, 256, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Random Aggro'), +(46226, 0, 0, 256, 268437504, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Festival Flamekeeper - Undead'), +(46248, 0, 0, 256, 268437504, 1, 1048576, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Midsummer Celebrant - Blood Elf'), +(46249, 0, 0, 256, 268437504, 1, 1048576, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Midsummer Celebrant - Draenei'), +(46250, 0, 0, 256, 268437504, 1, 1048576, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Midsummer Celebrant - Dwarf'), +(46252, 0, 0, 256, 268437504, 1, 1048576, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Midsummer Celebrant - Gnome'), +(46253, 0, 0, 256, 268437504, 1, 1048576, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Midsummer Celebrant - Goblin'), +(46254, 0, 0, 256, 268437504, 1, 1048576, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Midsummer Celebrant - Human'), +(46255, 0, 0, 256, 268437504, 1, 1048576, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Midsummer Celebrant - Night Elf'), +(46256, 0, 0, 256, 268437504, 1, 1048576, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Midsummer Celebrant - Orc'), +(46257, 0, 0, 256, 268437504, 1, 1048576, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Midsummer Celebrant - Tauren'), +(46258, 0, 0, 256, 268437504, 1, 1048576, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Midsummer Celebrant - Troll'), +(46259, 0, 0, 256, 268437504, 1, 1048576, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Midsummer Celebrant - Undead'), +(46347, 0, 0, 256, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 135, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Irresistible Lure Effect'), +(46370, 0, 0, 384, 268435456, 0, 256, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Chain Lightning Trigger'), +(46407, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Storm Tempest'), +(46523, 0, 0, 384, 268436480, 4, 256, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Random Aggro'), +(46741, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Dummy Trigger'), +(46752, 0, 0, 384, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Create Weather Machine'), +(46756, 0, 0, 192, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Test Alternate Form'), +(46790, 0, 0, 545259776, 128, 1, 268435456, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Mark of Honor'), +(46893, 0, 0, 256, 0, 1, 4096, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Graveyard Teleport'), +(46894, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Horde Graveyard Teleporter'), +(46918, 0, 0, 0, 0, 0, 0, 128, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Blue Dragon: Apply Aura - Periodic Trigger'), +(46919, 0, 0, 0, 0, 0, 0, 128, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Blue Dragon: Trigger Dummy'), +(46958, 0, 0, 536871168, 1024, 4, 0, 0, 2097152, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'OCW Silvermoon L70ETC Pulse NEW'), +(46959, 0, 0, 536871168, 1024, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 37, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'OCW Silvermoon L70ETC Bunny Aura NEW'), +(46966, 0, 0, 384, 1024, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'OCW Silvermoon L70ETC Script Effect'), +(46986, 0, 0, 402915728, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Sneak'), +(47019, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 6, 6, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Budd Pet Periodic Trigger'), +(47036, 0, 0, 384, 1024, 4, 268435456, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 37, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Troll Check'), +(47040, 0, 0, 384, 1024, 4, 268435456, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 37, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Cancel Budd''s Attention Span'), +(47047, 0, 0, 134217984, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Budd''s Force Reaction'), +(47067, 0, 0, 256, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 65, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Stun Self'), +(47090, 0, 0, 142606592, 268435456, 1, 1048576, 4160, 8, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Dead Mage Hunter Transform'), +(47102, 0, 0, 384, 268435456, 4, 196608, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 11, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 64, 'Dummy Nuke'), +(47121, 0, 0, 16777600, 0, 0, 0, 0, 0, 4096, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Scalawag Frog'), +(47132, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Quest Complete'), +(47135, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Quest Complete'), +(47136, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Quest Complete'), +(47140, 0, 0, 384, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'On Quest Accept'), +(47141, 0, 0, 384, 268435456, 4, 268435456, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'On Quest Accept Dummy to Guide'), +(47142, 0, 0, 256, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Create Totemic Beacon'), +(47194, 0, 0, 536871296, 1024, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Spiritual Insight: Quest Complete'), +(47222, 0, 0, 268435456, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, '[DND] JZB Jump Jets'), +(47275, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 205, 134, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Borean Tundra - Summon Hostile Scavenger'), +(47312, 0, 0, 150995200, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Sober Up'), +(47319, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 9, 6, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Magntaur Alpha Summon'), +(47401, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Trigger Giant Reaction'), +(47416, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Create Sample of Rockflesh'), +(47419, 0, 0, 384, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Speed Up'), +(47477, 0, 0, 536871168, 0, 4, 268435456, 0, 0, 0, 0, 0, 0, 0, 190, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Instakill Other'), +(47513, 0, 0, 256, 268436484, 4, 8192, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 3, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Mole Machine Bind Sight'), +(47522, 0, 0, 537985280, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Flight Path'), +(47529, 0, 0, 537985280, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Flight Path'), +(47531, 0, 0, 536871296, 1024, 4, 269484032, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 3, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 'Dismiss Pet'), +(47544, 0, 0, 537985280, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Flight Path'), +(47545, 0, 0, 537985280, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Flight Path'), +(47548, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Strengthen the Ancients: Woodlands Walker Master'), +(47561, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Strengthen the Ancients: No Bark'), +(47605, 0, 0, 537985280, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Flight Path'), +(47606, 0, 0, 537985280, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Flight Path'), +(47607, 0, 0, 537985280, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 190, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Flight Path'), +(47608, 0, 0, 537985280, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Flight Path'), +(47609, 0, 0, 537985280, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Flight Path'), +(47612, 0, 0, 537985280, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Flight Path'), +(47613, 0, 0, 537985280, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Flight Path'), +(47620, 0, 0, 537985280, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Flight Path'), +(47621, 0, 0, 537985280, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Flight Path'), +(47622, 0, 0, 537985280, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Flight Path'), +(47623, 0, 0, 537985280, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Flight Path'), +(47624, 0, 0, 537985280, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Flight Path'), +(47625, 0, 0, 537985280, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Flight Path'), +(47626, 0, 0, 537985280, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Flight Path'), +(47630, 0, 0, 537985280, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Flight Path'), +(47631, 0, 0, 537985280, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Flight Path'), +(47639, 0, 0, 537985280, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Flight Path'), +(47640, 0, 0, 537985280, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Flight Path'), +(47641, 0, 0, 537985280, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Flight Path'), +(47642, 0, 0, 537985280, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Flight Path'), +(47643, 0, 0, 537985280, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Flight Path'), +(47644, 0, 0, 537985280, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Flight Path'), +(47645, 0, 0, 537985280, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Flight Path'), +(47646, 0, 0, 537985280, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Flight Path'), +(47647, 0, 0, 537985280, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Flight Path'), +(47648, 0, 0, 537985280, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Flight Path'), +(47649, 0, 0, 537985280, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Flight Path'), +(47650, 0, 0, 537985280, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Flight Path'), +(47652, 0, 0, 384, 268435592, 4, 256, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Aggro Closest'), +(47680, 0, 0, 384, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 'Force Cast Aggro'), +(47725, 0, 0, 537985280, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Tariolstrasz: Unlearned Taxi from Wrymrest Bottom to Top'), +(47734, 0, 0, 537985280, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Torastrasza: Unlearned Taxi to the Bottom of Wrymrest'), +(47796, 0, 0, 8388992, 0, 0, 268435456, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Signal War Golem'), +(47802, 0, 0, 2306867200, 1056, 268976129, 1245184, 8388736, 393224, 4100, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Tenacity 2'), +(47945, 0, 0, 262544, 268436480, 0, 262144, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Copy of Shapeshift Form Effect'), +(47971, 0, 0, 545259776, 1160, 4, 197184, 8388608, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'The Liquid Fire of Elune: Blighted Elk Kill Credit'), +(47973, 0, 0, 545259776, 1160, 4, 197184, 8388608, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'The Liquid Fire of Elune: Rabid Grizzly Kill Credit'), +(48043, 0, 0, 537985280, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Venomspite!'), +(48197, 0, 0, 545259776, 1160, 4, 64, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Blighted Last Rites: Kill Credit'), +(48215, 0, 0, 536871296, 268436480, 4, 268435456, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Scarlet Onslaught Knight: Ride Scarlet Onslaught Warhorse'), +(48220, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Wrath of the Titans'), +(48255, 0, 0, 142606592, 268435456, 1, 1048576, 4160, 8, 4, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Let Them Not Rise!: Skeletal Transform'), +(48322, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 'Outhouse Force-Cast'), +(48338, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 'Outhouse Force-Cast II'), +(48372, 0, 0, 384, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Despawn Passenger 1'), +(48373, 0, 0, 159383936, 32, 540673, 0, 128, 393224, 4096, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Despawn Passenger 2'), +(48429, 0, 0, 384, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Speed Up'), +(48439, 0, 0, 448, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Despawn Self'), +(48526, 0, 0, 536871296, 1024, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Sinner''s Folly Fire Bunny: Fire Aura Dummy'), +(48581, 0, 0, 256, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 135, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Irresistible Lure Effect'), +(48607, 0, 0, 545259776, 1160, 4, 64, 128, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Torture the Torturer: Torture the Torturer Kill Credit'), +(48615, 0, 0, 384, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Create Competitor''s Souvenir'), +(48688, 0, 0, 448, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Despawn Self'), +(48713, 0, 0, 448, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Despawn Self'), +(48787, 0, 0, 536871168, 1024, 4, 268435456, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Neltharion''s Flame Fire Bunny: Fire Aura Dummy'), +(48804, 0, 0, 384, 268435456, 128, 268435456, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Fresh Remounts: Onslaught Riding Crop Cleanup'), +(48902, 0, 0, 65792, 268435456, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 3, 134, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 'Lighthouse'), +(48958, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Alliance Random Log Ride'), +(49060, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Horde, Hate Monster (Spar) (<30%)'), +(49074, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 35, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Self Destruct - Initial Damage'), +(49108, 0, 0, 536871168, 1024, 4, 0, 0, 2097152, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'OCW Sporeggar Pulse'), +(49112, 0, 0, 536871168, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Azure Dragon: Aggro Aura Effect'), +(49115, 0, 0, 536871168, 0, 0, 0, 128, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Wyrmrest Guardian: Aggro Aura Effect'), +(49120, 0, 0, 536871168, 1024, 4, 0, 0, 2097152, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 14, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'OCW Dark Portal Pulse - H'), +(49164, 0, 0, 536871168, 1024, 4, 0, 0, 2097152, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'OCW Auchindoun Pulse'); +INSERT INTO `spell_dbc` (`Id`, `Dispel`, `Mechanic`, `Attributes`, `AttributesEx`, `AttributesEx2`, `AttributesEx3`, `AttributesEx4`, `AttributesEx5`, `AttributesEx6`, `AttributesEx7`, `Stances`, `StancesNot`, `Targets`, `CastingTimeIndex`, `AuraInterruptFlags`, `ProcFlags`, `ProcChance`, `ProcCharges`, `MaxLevel`, `BaseLevel`, `SpellLevel`, `DurationIndex`, `RangeIndex`, `StackAmount`, `EquippedItemClass`, `EquippedItemSubClassMask`, `EquippedItemInventoryTypeMask`, `Effect1`, `Effect2`, `Effect3`, `EffectDieSides1`, `EffectDieSides2`, `EffectDieSides3`, `EffectRealPointsPerLevel1`, `EffectRealPointsPerLevel2`, `EffectRealPointsPerLevel3`, `EffectBasePoints1`, `EffectBasePoints2`, `EffectBasePoints3`, `EffectMechanic1`, `EffectMechanic2`, `EffectMechanic3`, `EffectImplicitTargetA1`, `EffectImplicitTargetA2`, `EffectImplicitTargetA3`, `EffectImplicitTargetB1`, `EffectImplicitTargetB2`, `EffectImplicitTargetB3`, `EffectRadiusIndex1`, `EffectRadiusIndex2`, `EffectRadiusIndex3`, `EffectApplyAuraName1`, `EffectApplyAuraName2`, `EffectApplyAuraName3`, `EffectAmplitude1`, `EffectAmplitude2`, `EffectAmplitude3`, `EffectMultipleValue1`, `EffectMultipleValue2`, `EffectMultipleValue3`, `EffectMiscValue1`, `EffectMiscValue2`, `EffectMiscValue3`, `EffectMiscValueB1`, `EffectMiscValueB2`, `EffectMiscValueB3`, `EffectTriggerSpell1`, `EffectTriggerSpell2`, `EffectTriggerSpell3`, `EffectSpellClassMaskA1`, `EffectSpellClassMaskA2`, `EffectSpellClassMaskA3`, `EffectSpellClassMaskB1`, `EffectSpellClassMaskB2`, `EffectSpellClassMaskB3`, `EffectSpellClassMaskC1`, `EffectSpellClassMaskC2`, `EffectSpellClassMaskC3`, `MaxTargetLevel`, `SpellFamilyName`, `SpellFamilyFlags1`, `SpellFamilyFlags2`, `SpellFamilyFlags3`, `MaxAffectedTargets`, `DmgClass`, `PreventionType`, `DmgMultiplier1`, `DmgMultiplier2`, `DmgMultiplier3`, `AreaGroupId`, `SchoolMask`, `Comment`) VALUES +(49167, 0, 0, 536871168, 1024, 4, 0, 0, 2097152, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 14, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'OCW Dark Portal Pulse - A'), +(49168, 0, 0, 256, 268435456, 0, 0, 128, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Wyrmrest Guardian: Aggro Aura'), +(49169, 0, 0, 256, 268435456, 0, 0, 128, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Azure Dragon: Aggro Aura'), +(49183, 0, 0, 536871168, 1024, 4, 0, 0, 2097152, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'OCW Aeris Landing Pulse'), +(49201, 0, 0, 536871168, 1024, 4, 0, 0, 2097152, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'OCW Exodar Naaru Pulse'), +(49212, 0, 0, 536871168, 1024, 4, 0, 0, 2097152, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'OCW Exodar Nobundu Pulse'), +(49227, 0, 0, 536871168, 1024, 4, 0, 0, 2097152, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 14, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'OCW COT Pulse - A'), +(49229, 0, 0, 536871168, 1024, 4, 0, 0, 2097152, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 14, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'OCW COT Pulse - H'), +(49265, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Script: Set Passenger(E0) to Random Broadcast (E1)'), +(49286, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Gryphon Rider Broadcast 02'), +(49339, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Steam Tank Periodic'), +(49341, 0, 0, 384, 1024, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Steam Tank Periodic'), +(49371, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Iskandar''s Challenge'), +(49373, 0, 0, 536871296, 1160, 4, 268435520, 128, 0, 512, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Defending Wyrmrest Temple: Dummy to Wyrmrest Defender'), +(49374, 0, 0, 545259776, 1160, 4, 64, 128, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Defending Wyrmrest Temple: Destabilize Azure Dragonshrine Kill Credit'), +(49382, 0, 0, 384, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Create Emerald Essence'), +(49386, 0, 0, 696254720, 1056, 16385, 1310720, 524288, 393224, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Dragonblight Invisibility Master'), +(49412, 0, 0, 256, 268435456, 0, 0, 128, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Wyrmrest Defender: Aggro Aura'), +(49413, 0, 0, 536871168, 0, 0, 0, 128, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Wyrmrest Defender: Aggro Aura Effect'), +(49447, 0, 0, 384, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Create Amber Essence'), +(49450, 0, 0, 384, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Create Ruby Essence'), +(49465, 0, 0, 537985280, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Torastrasza: Unlearned Taxi to the Middle of Wrymrest'), +(49470, 0, 0, 537985280, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Lord Afrasastrasz: Unlearned Taxi to the Top of Wrymrest'), +(49473, 0, 0, 256, 268436484, 0, 8192, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 3, 6, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Mole Machine Hearth Bind Sight'), +(49492, 0, 0, 537985280, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Lord Afrasastrasz: Unlearned Taxi to the Bottom of Wrymrest'), +(49496, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Battle Steed'), +(49502, 0, 0, 537985280, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Tariolstrasz: Unlearned Taxi from Wrymrest Bottom to Middle'), +(49577, 0, 0, 256, 268435456, 0, 1048576, 192, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Circle of Life: Transform into Rabbit'), +(49578, 0, 0, 256, 268435456, 0, 1048576, 192, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Circle of Life: Transform into Squirrel'), +(49579, 0, 0, 256, 268435456, 0, 1048576, 192, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Circle of Life: Transform into Skunk'), +(49580, 0, 0, 256, 268435456, 0, 1048576, 192, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Circle of Life: Transform into Prairie Dog'), +(49582, 0, 0, 256, 268435456, 0, 1048576, 192, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Circle of Life: Transform into Fawn'), +(49583, 0, 0, 256, 268435456, 0, 1048576, 192, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Circle of Life: Transform into Emerald Skytalon'), +(49591, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Arcane Disruptor'), +(49615, 0, 0, 384, 268435456, 0, 268435456, 129, 0, 1024, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 31, 6, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Modify CL Targeting'), +(49740, 0, 0, 256, 268435456, 0, 268435456, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 18, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Flower Growth'), +(49741, 0, 0, 256, 268435456, 0, 268435456, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 387, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Flower Growth Periodic'), +(49812, 0, 0, 256, 268435456, 0, 196608, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Fake Aggro Radius (8 yd)'), +(49813, 0, 0, 256, 268435456, 0, 196608, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Aggro (8 yd pbae)'), +(49819, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Ghoul Threat'), +(49831, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Hate Monster (Spar, Kalu''ak)'), +(49833, 0, 0, 545259776, 1024, 0, 268435456, 128, 8, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 18, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Fire'), +(49849, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Gryphon Rider Broadcast'), +(49850, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Gryphon Rider Broadcast'), +(49866, 0, 0, 2843738112, 1056, 268976133, 1245184, 8388736, 917512, 12292, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Clone Target'), +(49885, 0, 0, 536871168, 136, 4, 256, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Gravity Lapse'), +(49951, 0, 0, 256, 268435456, 0, 0, 192, 0, 1024, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 579, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Mystery of the Infinite: Future You''s Periodic Threat'), +(49953, 0, 0, 538968320, 136, 4, 64, 128, 384, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Mystery of the Infinite: Future You''s Periodic Threat Effect'), +(50042, 0, 0, 256, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Iskandar''s Challenge Periodic'), +(50074, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Helmsman Broadcast 01'), +(50076, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Helmsman Broadcast 02'), +(50136, 0, 0, 256, 0, 0, 268435456, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 5, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Silvermoon Dragonhawk'), +(50157, 0, 0, 536871168, 0, 4, 268435456, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Instakill Other'), +(50158, 0, 0, 384, 268437504, 1, 1048576, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Wyrmrest Temple - Protector Transform (Red)'), +(50159, 0, 0, 384, 268437504, 1, 1048576, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Wyrmrest Temple - Protector Transform (Green)'), +(50160, 0, 0, 384, 268437504, 1, 1048576, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Wyrmrest Temple - Protector Transform (Bronze)'), +(50209, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Create Path of Illidan'), +(50210, 0, 0, 384, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Create Disco Ball'), +(50211, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Create Ethereal Summoner'), +(50277, 0, 0, 536871168, 0, 4, 268435456, 0, 0, 0, 0, 0, 0, 0, 190, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Instakill Self'), +(50460, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Antiok Random Broadcast'), +(50474, 0, 0, 536871296, 1024, 0, 335544320, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Rune Weapon Mark'), +(50539, 0, 0, 256, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Aggro Drakes'), +(50543, 0, 0, 256, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Aggro Drakes'), +(50561, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Amberpine Gryphon Rider B01'), +(50567, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Amberpine Gryphon Rider B02'), +(50570, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Amberpine Gryphon Rider B03'), +(50571, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Amberpine Gryphon Rider B04'), +(50591, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Amberpine Gryphon Rider B05'), +(50594, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 245, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Moveto Test'), +(50754, 0, 0, 384, 136, 0, 512, 128, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 18, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 64, 'Summon Unstable Sphere'), +(50755, 0, 0, 256, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 32, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Unstable Sphere Countdown'), +(50814, 0, 0, 0, 0, 4, 268435456, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 6, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Serinar Whisper Rune'), +(50815, 0, 0, 0, 0, 4, 268435456, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 6, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Serinar Whisper Cave'), +(50816, 0, 0, 0, 0, 4, 268435456, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 6, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Serinar Whisper Chamber'), +(50847, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Create Purple Tabard of the Arcane'), +(50848, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Create White Tabard of Brilliance'), +(50849, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Create Orange Tabard of the Defender'), +(50850, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Create Yellow Tabard of Fury'), +(50851, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Create Green Tabard of Nature'), +(50852, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Create Black Tabard of the Void'), +(50912, 0, 0, 134217984, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, '[DND] Teach Coldarra Flight Path'), +(50925, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 39, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Dash Gash ReturnToTank PreSpell'), +(50932, 0, 0, 0, 16384, 0, 0, 128, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 28, 6, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Dash Gash ReturnToTank PreSpell Root'), +(50996, 0, 0, 8388608, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 3, 6, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Sanguine Spirit'), +(51106, 0, 0, 384, 268435456, 4, 196608, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 64, 'Dummy Nuke (Range Self)'), +(51117, 0, 0, 384, 268437504, 1, 1048576, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Wyrmrest Temple - Protector Transform (Black)'), +(51118, 0, 0, 384, 268437504, 1, 1048576, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Wyrmrest Temple - Protector Transform (Blue)'), +(51119, 0, 0, 384, 268437504, 1, 1048576, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Wyrmrest Temple - Protector Transform (Nether)'), +(51133, 0, 0, 142606592, 268697600, 1, 1048576, 4160, 8, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Defeated Argent Footman Transform'), +(51324, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Injured Oracle Questgiver Off'), +(51452, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Create Party G.R.E.N.A.D.E.'), +(51453, 0, 0, 384, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Create PvP Taunt'), +(51455, 0, 0, 2306867584, 268436512, 268976129, 1245184, 8388736, 393224, 4100, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Battle for Lake Wintergrasp'), +(51604, 0, 0, 134217984, 268435520, 0, 0, 0, 0, 4, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Stun Self'), +(51704, 0, 0, 2147549568, 268468224, 128, 1073741824, 8193, 1024, 1024, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 36, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 'Leave BarberShop Chair'), +(51741, 0, 0, 151060480, 0, 524288, 0, 0, 262153, 4096, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 'Trigger Missile: Immolation Trap'), +(51824, 0, 0, 256, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 564, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Drake Whisper'), +(51826, 0, 0, 256, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Drake Whisper'), +(51828, 0, 0, 256, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 85, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Drake Whisper'), +(51829, 0, 0, 256, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Drake Whisper'), +(51860, 0, 0, 134217984, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 8, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Root Self'), +(51896, 0, 0, 0, 8196, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'The Eye of Acherus'), +(51905, 0, 0, 448, 0, 0, 268435456, 34603008, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'zzOldDeath Knight Rune Weapon Scaling 01'), +(51947, 0, 0, 0, 0, 0, 0, 128, 8, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Har''koa: Periodic Trigger Roar'), +(51948, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Har''koa: Periodic Trigger Roar Dummy'), +(52001, 0, 0, 448, 0, 0, 268435456, 34603008, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Death Knight Blood Parasite Pet Scaling'), +(52040, 0, 0, 536871168, 268437504, 1, 1048576, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Dwarf Construction Worker Appearance'), +(52178, 0, 0, 671089024, 1024, 4, 269484032, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 9, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 'zzOldAstral Shift Marker'), +(52304, 0, 0, 256, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 6, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'DK 1'), +(52380, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 37, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'You Reap What You Sow: Reclaim Power - Efffect'), +(52434, 0, 0, 256, 268436480, 4, 131328, 128, 524296, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 'Dream Fog'), +(52477, 0, 0, 384, 0, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Dummy'), +(52557, 0, 0, 384, 268435456, 4, 196608, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 64, 'Dummy Tree of Life Nuke'), +(52558, 0, 0, 142606592, 268697600, 1, 1048576, 4160, 8, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Dead Mam''toth Disciple Transform'), +(52563, 0, 0, 256, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Attack Arthas'), +(52765, 0, 0, 256, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Invis Self'), +(52769, 0, 0, 2843738112, 1056, 268976133, 1245184, 8388736, 393224, 4100, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Shadow of Death Marker'), +(52848, 0, 0, 536871296, 1024, 4, 256, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Rampage: Quest Completion Credit'), +(52947, 0, 0, 256, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Transform: Dock Worker w/bag'), +(53050, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 'Charged Flurry'), +(53682, 0, 0, 545259904, 1024, 1, 0, 128, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Soul Feast'), +(53732, 0, 0, 384, 268435456, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 225, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Grow'), +(53785, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Nass Master Checker'), +(54033, 0, 0, 256, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 35, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Stun Self'), +(54073, 0, 0, 262528, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 2, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 'Wound Poison'), +(54091, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Bug Threat'), +(54130, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Maexxna Spiderling'), +(54239, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Trigger 002'), +(54352, 0, 0, 671089040, 0, 0, 268435456, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'zzOldImproved Demonic Tactics'), +(54437, 0, 0, 262544, 268600320, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 36, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'zzOldDemonic Empowerment'), +(54541, 0, 0, 256, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Aggro (5 yd pbae)'), +(54542, 0, 0, 256, 268435456, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Fake Aggro Radius (5 yd)'), +(55351, 0, 0, 536871168, 0, 4, 268435456, 0, 0, 0, 0, 0, 0, 0, 190, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Instakill Orb'), +(55422, 0, 0, 268435712, 1024, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Zombie Aggro Dummy'), +(55583, 0, 0, 2176, 0, 4, 268435456, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 16, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Trainee'), +(55584, 0, 0, 2176, 0, 4, 268435456, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 4, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Mounted Knight'), +(55585, 0, 0, 2176, 0, 4, 268435456, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 25, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Knight'), +(55654, 0, 0, 256, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Frost Aura'), +(55657, 0, 0, 384, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'zzOLDConsumption'), +(55698, 0, 0, 320, 268435592, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 'Chill'), +(55733, 0, 0, 384, 268435456, 4, 196608, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 11, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 64, 'Dummy Nuke'), +(55827, 0, 0, 384, 268437504, 1, 1048576, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Wyrmrest Temple - Warden Transform (Black)'), +(55828, 0, 0, 384, 268437504, 1, 1048576, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Wyrmrest Temple - Warden Transform (Blue)'), +(55829, 0, 0, 384, 268437504, 1, 1048576, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Wyrmrest Temple - Warden Transform (Green)'), +(55830, 0, 0, 384, 268437504, 1, 1048576, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Wyrmrest Temple - Warden Transform (Bronze)'), +(55831, 0, 0, 384, 268437504, 1, 1048576, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Wyrmrest Temple - Warden Transform (Red)'), +(55846, 0, 0, 384, 268435592, 4, 256, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Aggro Closest'), +(55892, 0, 0, 0, 1024, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Audience Assistance'); +INSERT INTO `spell_dbc` (`Id`, `Dispel`, `Mechanic`, `Attributes`, `AttributesEx`, `AttributesEx2`, `AttributesEx3`, `AttributesEx4`, `AttributesEx5`, `AttributesEx6`, `AttributesEx7`, `Stances`, `StancesNot`, `Targets`, `CastingTimeIndex`, `AuraInterruptFlags`, `ProcFlags`, `ProcChance`, `ProcCharges`, `MaxLevel`, `BaseLevel`, `SpellLevel`, `DurationIndex`, `RangeIndex`, `StackAmount`, `EquippedItemClass`, `EquippedItemSubClassMask`, `EquippedItemInventoryTypeMask`, `Effect1`, `Effect2`, `Effect3`, `EffectDieSides1`, `EffectDieSides2`, `EffectDieSides3`, `EffectRealPointsPerLevel1`, `EffectRealPointsPerLevel2`, `EffectRealPointsPerLevel3`, `EffectBasePoints1`, `EffectBasePoints2`, `EffectBasePoints3`, `EffectMechanic1`, `EffectMechanic2`, `EffectMechanic3`, `EffectImplicitTargetA1`, `EffectImplicitTargetA2`, `EffectImplicitTargetA3`, `EffectImplicitTargetB1`, `EffectImplicitTargetB2`, `EffectImplicitTargetB3`, `EffectRadiusIndex1`, `EffectRadiusIndex2`, `EffectRadiusIndex3`, `EffectApplyAuraName1`, `EffectApplyAuraName2`, `EffectApplyAuraName3`, `EffectAmplitude1`, `EffectAmplitude2`, `EffectAmplitude3`, `EffectMultipleValue1`, `EffectMultipleValue2`, `EffectMultipleValue3`, `EffectMiscValue1`, `EffectMiscValue2`, `EffectMiscValue3`, `EffectMiscValueB1`, `EffectMiscValueB2`, `EffectMiscValueB3`, `EffectTriggerSpell1`, `EffectTriggerSpell2`, `EffectTriggerSpell3`, `EffectSpellClassMaskA1`, `EffectSpellClassMaskA2`, `EffectSpellClassMaskA3`, `EffectSpellClassMaskB1`, `EffectSpellClassMaskB2`, `EffectSpellClassMaskB3`, `EffectSpellClassMaskC1`, `EffectSpellClassMaskC2`, `EffectSpellClassMaskC3`, `MaxTargetLevel`, `SpellFamilyName`, `SpellFamilyFlags1`, `SpellFamilyFlags2`, `SpellFamilyFlags3`, `MaxAffectedTargets`, `DmgClass`, `PreventionType`, `DmgMultiplier1`, `DmgMultiplier2`, `DmgMultiplier3`, `AreaGroupId`, `SchoolMask`, `Comment`) VALUES +(55893, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Audience Assistance'), +(55956, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 35, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Guiding Knut'), +(55967, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Frost Effect'), +(55985, 0, 0, 8388992, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Kill Credit:Giant'), +(55990, 0, 0, 8388992, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Kill Credit:Dwarf'), +(56068, 0, 0, 256, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Iron Behemoth Threat'), +(56069, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Iron Behemoth Threat Effect'), +(56097, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Frost Arrow'), +(56204, 0, 0, 671090944, 268435456, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Ebon Blade Prisoners: Force Cast Summon Ebon Blade Knight - Human'), +(56210, 0, 0, 671090944, 268435456, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Ebon Blade Prisoners: Force Cast Summon Ebon Blade Knight - Night Elf'), +(56213, 0, 0, 671090944, 268435456, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Ebon Blade Prisoners: Force Cast Summon Ebon Blade Knight - Orc'), +(56215, 0, 0, 671090944, 268435456, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Ebon Blade Prisoners: Force Cast Summon Ebon Blade Knight - Troll'), +(56306, 0, 0, 8388992, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Kill Credit:Pronouncement'), +(56428, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 5, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Enraged Armored Hippogryph'), +(56561, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Hold Position'), +(56866, 0, 0, 327696, 1024, 4, 268435456, 0, 524288, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 152, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Wintergrasp Spawn Faction Check'), +(57059, 0, 0, 384, 268435456, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Grow'), +(57065, 0, 0, 384, 268435456, 4, 1048576, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 225, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Shrink'), +(57093, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Brann''s Communicator Replacement'), +(57368, 0, 0, 208, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Unholy Shadow'), +(57540, 0, 0, 272, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Severed Essence'), +(57576, 0, 0, 0, 1024, 268435460, 256, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'PvP Enemy Check'), +(57577, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'PvP Check Aura'), +(57805, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Defense Control Crystal'), +(57867, 0, 0, 464, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'zzOLDNature''s Splendor'), +(57868, 0, 0, 464, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'zzOLDNature''s Splendor'), +(57936, 0, 0, 256, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Attack Violet Hold Guard'), +(57995, 0, 0, 256, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Portal 1 Ready'), +(57996, 0, 0, 256, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Portal 2 Ready'), +(57997, 0, 0, 256, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Portal 3 Ready'), +(57998, 0, 0, 256, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Portal 4 Ready'), +(57999, 0, 0, 256, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Portal 5 Ready'), +(58002, 0, 0, 256, 268435456, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Portal'), +(58003, 0, 0, 256, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Portal Effect (1)'), +(58004, 0, 0, 256, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Portal Effect (2)'), +(58005, 0, 0, 256, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Portal Effect (3)'), +(58006, 0, 0, 256, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Portal Effect (4)'), +(58007, 0, 0, 256, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Portal Effect (5)'), +(58011, 0, 0, 0, 4, 0, 268435456, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 64, 'Portal Channel Trigger'), +(58014, 0, 0, 256, 268435456, 0, 268435456, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Close Portal Trigger'), +(58018, 0, 0, 8388864, 0, 4, 268435456, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Close Portal Effect'), +(58019, 0, 0, 256, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Portal Ready Primer'), +(58028, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Portal Guardian'), +(58029, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Portal Guardian Alt'), +(58030, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Portal Keeper'), +(58031, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Portal Keeper'), +(58034, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Azure Binder'), +(58041, 0, 0, 256, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Prison Door Seal Weaken'), +(58043, 0, 0, 256, 0, 4, 268435456, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Door Broken'), +(58082, 0, 0, 681574784, 1160, 67108869, 268435520, 2177, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Not-So-Honorable Combat: Despawn All Units'), +(58086, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Azure Binder'), +(58087, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Azure Invader'), +(58088, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Azure Invader Alt'), +(58089, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Azure Spellbreaker'), +(58090, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Azure Spellbreaker Alt'), +(58091, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Azure Mage Slayer'), +(58092, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Azure Mage Slayer Alt'), +(58093, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Veteran Mage Hunter'), +(58156, 0, 0, 2843738112, 1056, 268976133, 1245184, 8388736, 393224, 4100, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Wintergrasp PvP Drop - 2 Stack'), +(58162, 0, 0, 2843738112, 1056, 268976133, 1245184, 8388736, 393224, 4100, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Wintergrasp PvP Drop - 3 Stack'), +(58164, 0, 0, 2843738112, 1056, 268976133, 1245184, 8388736, 393224, 4100, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Wintergrasp PvP Drop - 4 Stack'), +(58199, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Flame Kill'), +(58200, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Water Kill'), +(58201, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Life Kill'), +(58202, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Shadow Kill'), +(58358, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Kill'), +(58360, 0, 0, 538968448, 1160, 67108869, 268435520, 2176, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Banshee''s Revenge: Lady Nightswood to Possessed Vardmadra'), +(58411, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Hateful Strike Primer'), +(58546, 0, 0, 1073807744, 268436480, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 27, 3, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 'Fear Self'), +(58550, 0, 0, 159383552, 1056, 268976129, 1245184, 8388736, 393224, 4100, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Wintergrasp Calculation'), +(58595, 0, 0, 671089024, 1024, 4, 269484032, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 3, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 'zzOLDChimera Shot - Scorpid Sting Marker'), +(58727, 0, 0, 696254848, 268435488, 540673, 1048576, 0, 393224, 5120, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Dalaran Restricted Flight Zone'), +(58728, 0, 0, 696254848, 268438560, 268976133, 1245184, 8388736, 393736, 4100, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Wintergrasp Restricted Flight Zone'), +(58807, 0, 0, 8388992, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 28, 12, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Ignite Corpse'), +(58920, 0, 0, 696254720, 1056, 16385, 1310720, 524288, 393224, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Post-Wrath Gate Invisibility for NPCS'), +(58926, 0, 0, 0, 0, 4, 268435456, 0, 0, 4096, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Bridge Kill Credit'), +(58927, 0, 0, 0, 0, 4, 268435456, 0, 0, 4096, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Tower Kill Credit'), +(58928, 0, 0, 16777216, 0, 4, 268435456, 0, 0, 4096, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Workshop Kill'), +(58929, 0, 0, 0, 0, 4, 268435456, 0, 0, 4096, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Gate Kill'), +(58931, 0, 0, 2306867200, 1056, 336084997, 1245184, 8388736, 393224, 16781316, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Wintergrasp Victory'), +(58934, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Achievement: Has Full Midsummer Set'), +(59012, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Create Big Blizzard Bear'), +(59054, 0, 0, 8388608, 0, 0, 268435456, 128, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Player Death'), +(59056, 0, 0, 536870912, 0, 0, 1048576, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Player Death Aura'), +(59063, 0, 0, 8388992, 0, 4194305, 268435456, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Achievement - Player Died'), +(59207, 0, 0, 696254848, 268436512, 16385, 1310720, 524288, 393224, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Post-Wrath Gate Invisibility for NPCS'), +(59555, 0, 0, 384, 1024, 0, 1179648, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Daze Immunity'), +(59581, 0, 0, 256, 0, 0, 268435456, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Fail Achievement'), +(59612, 0, 0, 256, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Ymirheim Aggro Periodic'), +(59615, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Infantry Aggro Trigger'), +(59632, 0, 0, 384, 268435456, 4, 1048576, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 225, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Shrink'), +(59639, 0, 0, 384, 268435456, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 225, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Grow'), +(59794, 0, 0, 400, 0, 0, 67108864, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 3, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Alchemy Discovery Trigger'), +(59819, 0, 0, 671089024, 1024, 4, 269484032, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 32, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 'zzOldImproved Corpse Explosion Marker'), +(59850, 0, 0, 8388608, 131072, 67108864, 269484032, 0, 128, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 'Death Touch Copy'), +(59895, 0, 0, 256, 268435456, 0, 268435456, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Launch Spear Periodic'), +(59896, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Frost Arrow'), +(59900, 0, 0, 256, 0, 0, 268435456, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Fail Achievement'), +(59904, 0, 0, 536871168, 1024, 4, 0, 0, 2097152, 65536, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Slaves to Saronite: Jump B'), +(59905, 0, 0, 536871168, 1024, 4, 0, 0, 2097152, 65536, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Slaves to Saronite: Jump C'), +(60033, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Dummy'), +(60048, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Azure Captain'), +(60049, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Azure Raider'), +(60050, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Azure Sorceror'), +(60057, 0, 0, 2768242688, 3072, 4, 0, 0, 0, 4096, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 36, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Restricted Flight Area'), +(60086, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Azure Stalker'), +(60087, 0, 0, 256, 268435456, 0, 268435456, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Spear Trigger Periodic'), +(60092, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Azure Raider'), +(60093, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Azure Sorceror'), +(60454, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Alliance Aggro Trigger'), +(60455, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Horde Aggro Trigger'), +(60589, 0, 0, 8388992, 0, 5, 262400, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 'Corrupting Blight Remove'), +(60593, 0, 0, 536871168, 0, 0, 268435456, 0, 393224, 0, 0, 0, 0, 0, 199, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Quiet Suicide (Cast Time)'), +(60676, 0, 0, 696254848, 1056, 273170437, 1245696, 8388736, 393224, 4608, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Southern Tower Destruction'), +(60677, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Gate Kill Credit'), +(60806, 0, 0, 256, 268435456, 0, 0, 192, 0, 1024, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 579, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'MOTI, Redux: Past You''s Periodic Threat'), +(60858, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Save Rocket GUID on Summoner'), +(60910, 0, 0, 2306867200, 1056, 268976133, 1245184, 8388736, 393224, 4100, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Demolisher Kill Credit'), +(60911, 0, 0, 2306867200, 1056, 268976133, 269680640, 8388736, 917512, 4100, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Demolisher Kill Credit'), +(60989, 0, 0, 384, 268435456, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Create Key to the Focusing Iris'), +(60992, 0, 0, 384, 268435456, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Create Heroic Key to the Focusing Iris'), +(61142, 0, 0, 2306867200, 1056, 268976133, 1245184, 8388736, 393224, 4100, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Direction of the Lich King'), +(61148, 0, 0, 400, 0, 0, 67108864, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 3, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Inscription Discovery'), +(61175, 0, 0, 671089024, 1024, 4, 269484032, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 347, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 'Shadow of Death Marker'), +(61200, 0, 0, 256, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Extract Gas'), +(61201, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Frigid Geist Aggro'), +(61202, 0, 0, 256, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Frigid Geist Aggro Periodic'), +(61203, 0, 0, 256, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Extract Gas'), +(61214, 0, 0, 256, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Extract Gas'), +(61220, 0, 0, 384, 268435456, 4, 196608, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 64, 'Dummy Nuke'), +(61265, 0, 0, 134217984, 0, 4, 0, 0, 0, 4, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Alliance Flag Click'), +(61266, 0, 0, 134217984, 0, 4, 0, 0, 0, 4, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Horde Flag Click'), +(61279, 0, 0, 256, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Extract Gas'), +(61283, 0, 0, 0, 0, 4, 0, 4, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 42, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Medium Flights'), +(61284, 0, 0, 0, 0, 4, 0, 4, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 42, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Many Flights'), +(61285, 0, 0, 0, 0, 4, 0, 4, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 42, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Too Many Flights'), +(61303, 0, 0, 256, 0, 0, 268435456, 0, 524288, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 173, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Sanctuary'), +(61370, 0, 0, 384, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 487, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'BOTM - Bubble Brew - Self Root'), +(61396, 0, 0, 448, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 'Arthas Defensive Buff'), +(61417, 0, 0, 16777616, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'zzOLDPursuit of Justice'), +(61418, 0, 0, 16777616, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'zzOLDPursuit of Justice'), +(61494, 0, 0, 0, 0, 4, 0, 0, 0, 4096, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Teleport the Gun'), +(61495, 0, 0, 0, 0, 4, 0, 0, 0, 4096, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Teleport the Gun'), +(61501, 0, 0, 0, 0, 4, 0, 0, 0, 4096, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Teleport the Gun'), +(61502, 0, 0, 0, 0, 4, 0, 0, 0, 4096, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Teleport the Gun'), +(61503, 0, 0, 0, 0, 4, 0, 0, 0, 4096, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Teleport the Captain'), +(61504, 0, 0, 0, 0, 4, 0, 0, 0, 4096, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Teleport the Captain'), +(61505, 0, 0, 0, 0, 4, 0, 0, 0, 4096, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Teleport the Captain'), +(61506, 0, 0, 0, 0, 4, 0, 0, 0, 4096, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Teleport the Captain'), +(61517, 0, 0, 0, 0, 4, 0, 0, 0, 4096, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Teleport the Stalker'), +(61518, 0, 0, 0, 0, 4, 0, 0, 0, 4096, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Teleport the Stalker'); +INSERT INTO `spell_dbc` (`Id`, `Dispel`, `Mechanic`, `Attributes`, `AttributesEx`, `AttributesEx2`, `AttributesEx3`, `AttributesEx4`, `AttributesEx5`, `AttributesEx6`, `AttributesEx7`, `Stances`, `StancesNot`, `Targets`, `CastingTimeIndex`, `AuraInterruptFlags`, `ProcFlags`, `ProcChance`, `ProcCharges`, `MaxLevel`, `BaseLevel`, `SpellLevel`, `DurationIndex`, `RangeIndex`, `StackAmount`, `EquippedItemClass`, `EquippedItemSubClassMask`, `EquippedItemInventoryTypeMask`, `Effect1`, `Effect2`, `Effect3`, `EffectDieSides1`, `EffectDieSides2`, `EffectDieSides3`, `EffectRealPointsPerLevel1`, `EffectRealPointsPerLevel2`, `EffectRealPointsPerLevel3`, `EffectBasePoints1`, `EffectBasePoints2`, `EffectBasePoints3`, `EffectMechanic1`, `EffectMechanic2`, `EffectMechanic3`, `EffectImplicitTargetA1`, `EffectImplicitTargetA2`, `EffectImplicitTargetA3`, `EffectImplicitTargetB1`, `EffectImplicitTargetB2`, `EffectImplicitTargetB3`, `EffectRadiusIndex1`, `EffectRadiusIndex2`, `EffectRadiusIndex3`, `EffectApplyAuraName1`, `EffectApplyAuraName2`, `EffectApplyAuraName3`, `EffectAmplitude1`, `EffectAmplitude2`, `EffectAmplitude3`, `EffectMultipleValue1`, `EffectMultipleValue2`, `EffectMultipleValue3`, `EffectMiscValue1`, `EffectMiscValue2`, `EffectMiscValue3`, `EffectMiscValueB1`, `EffectMiscValueB2`, `EffectMiscValueB3`, `EffectTriggerSpell1`, `EffectTriggerSpell2`, `EffectTriggerSpell3`, `EffectSpellClassMaskA1`, `EffectSpellClassMaskA2`, `EffectSpellClassMaskA3`, `EffectSpellClassMaskB1`, `EffectSpellClassMaskB2`, `EffectSpellClassMaskB3`, `EffectSpellClassMaskC1`, `EffectSpellClassMaskC2`, `EffectSpellClassMaskC3`, `MaxTargetLevel`, `SpellFamilyName`, `SpellFamilyFlags1`, `SpellFamilyFlags2`, `SpellFamilyFlags3`, `MaxAffectedTargets`, `DmgClass`, `PreventionType`, `DmgMultiplier1`, `DmgMultiplier2`, `DmgMultiplier3`, `AreaGroupId`, `SchoolMask`, `Comment`) VALUES +(61519, 0, 0, 0, 0, 4, 0, 0, 0, 4096, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Teleport the Stalker'), +(61520, 0, 0, 0, 0, 4, 0, 0, 0, 4096, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Teleport the Stalker'), +(61521, 0, 0, 0, 0, 4, 0, 0, 0, 4096, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Teleport the Stalker'), +(61522, 0, 0, 0, 0, 4, 0, 0, 0, 4096, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Teleport the Stalker'), +(61525, 0, 0, 0, 0, 4, 0, 0, 0, 4096, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Teleport the Stalker'), +(61526, 0, 0, 0, 0, 4, 0, 0, 0, 4096, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Teleport the Stalker'), +(61527, 0, 0, 0, 0, 4, 0, 0, 0, 4096, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Teleport the Stalker'), +(61529, 0, 0, 0, 0, 4, 0, 0, 0, 4096, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Teleport the Stalker'), +(61530, 0, 0, 0, 0, 4, 0, 0, 0, 4096, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Teleport the Stalker'), +(61531, 0, 0, 0, 0, 4, 0, 0, 0, 4096, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Teleport the Stalker'), +(61532, 0, 0, 0, 0, 4, 0, 0, 0, 4096, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Teleport the Stalker'), +(61533, 0, 0, 0, 0, 4, 0, 0, 0, 4096, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Teleport the Stalker'), +(61534, 0, 0, 0, 0, 4, 0, 0, 0, 4096, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Teleport the Stalker'), +(61535, 0, 0, 0, 0, 4, 0, 0, 0, 4096, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Teleport the Stalker'), +(61536, 0, 0, 0, 0, 4, 0, 0, 0, 4096, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Teleport the Stalker'), +(61538, 0, 0, 0, 0, 4, 0, 0, 0, 4096, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Teleport the Stalker'), +(61539, 0, 0, 0, 0, 4, 0, 0, 0, 4096, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Teleport the Stalker'), +(61540, 0, 0, 0, 0, 4, 0, 0, 0, 4096, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Teleport the Stalker'), +(61541, 0, 0, 0, 0, 4, 0, 0, 0, 4096, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Teleport the Stalker'), +(61542, 0, 0, 0, 0, 4, 0, 0, 0, 4096, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Teleport the Stalker'), +(61582, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 'Charged Flurry'), +(61701, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Make Player Attack'), +(61702, 0, 0, 2306867200, 1056, 268976129, 1245184, 8388736, 393224, 4100, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Phase Shift 1 (Gold)'), +(61703, 0, 0, 2306867200, 1056, 268976129, 1245184, 8388736, 393224, 4100, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Phase Shift 2 (Green)'), +(61754, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Create Horn of the Peaks'), +(61774, 0, 0, 256, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Threat'), +(61852, 0, 0, 0, 524288, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Red Elevator Port'), +(61891, 0, 0, 2306867200, 1056, 268976133, 269680640, 8388736, 393224, 4100, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Vehicle Protected'), +(61908, 0, 0, 384, 268435456, 4, 196608, 0, 0, 16384, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 64, 'Dummy Nuke'), +(61913, 0, 0, 384, 0, 4, 256, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Static Disruption'), +(61918, 0, 0, 256, 268435456, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Champion'), +(61919, 0, 0, 256, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Spawn Champion'), +(61921, 0, 0, 256, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Champion'), +(61937, 0, 0, 256, 268435456, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Warbringer'), +(61938, 0, 0, 256, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Spawn Warbringer'), +(61939, 0, 0, 256, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Warbringer'), +(61944, 0, 0, 256, 268435456, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Commoner'), +(61945, 0, 0, 256, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Spawn Commoner'), +(61946, 0, 0, 256, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Spawn Commoner'), +(61948, 0, 0, 256, 268435456, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Evoker'), +(61949, 0, 0, 256, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Spawn Evoker'), +(61950, 0, 0, 256, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Evoker'), +(62006, 0, 0, 256, 268435456, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Honor Guard'), +(62008, 0, 0, 256, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Spawn Honor Guard'), +(62009, 0, 0, 256, 268435456, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Acolyte'), +(62010, 0, 0, 256, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Spawn Acolyte'), +(62033, 0, 0, 256, 268435456, 0, 268435456, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Dummy Nuke'), +(62060, 0, 0, 2306867200, 1056, 268976129, 1245184, 11534496, 394760, 136196, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Tower Control'), +(62065, 0, 0, 2843738112, 1056, 268976133, 1245184, 8388736, 393224, 4100, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Eastern Tower Destruction'), +(62066, 0, 0, 696254848, 1056, 273170437, 1245696, 8388736, 393224, 4608, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Western Tower Destruction'), +(62093, 0, 0, 256, 268436480, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 11, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Spirit of Corruption Death'), +(62095, 0, 0, 696254848, 1056, 273170437, 268632576, 8388736, 393224, 4608, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Coaxing the Spirits: Quest Complete'), +(62096, 0, 0, 696254848, 3104, 273170437, 269681152, 8388800, 393224, 4608, 4, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 36, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'zzOLDPhase 1 & 6 Done Spacer'), +(62163, 0, 0, 142606592, 268437504, 1, 1048576, 4160, 8, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Frenzied Cyclone Transform'), +(62183, 0, 0, 256, 0, 4, 0, 8193, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Activate Lightning Orb Trigger'), +(62190, 0, 0, 538968320, 268436616, 67108868, 64, 2113, 0, 1024, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 6, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Call Down the Thunder: Spirit Ride Vortex Bunny'), +(62200, 0, 0, 671089024, 1024, 4, 269484032, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 32, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 'zzOldImproved Corpse Explosion Cost Reducer'), +(62205, 0, 0, 536871296, 268436616, 67108864, 269484096, 2113, 0, 1024, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Call Down the Thunder: Vortex Bunny Shrink'), +(62219, 0, 0, 2843738496, 1192, 268976133, 1245184, 8388736, 393224, 12292, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Clear Stone'), +(62224, 0, 0, 2843738112, 1056, 268976133, 1245184, 8388736, 393224, 4100, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Mirror Name'), +(62289, 0, 0, 0, 0, 0, 0, 0, 0, 16777216, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Flammable'), +(62330, 0, 0, 384, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 'Ritual of Summoning'), +(62341, 0, 0, 2843738112, 1056, 268976133, 1245184, 8388736, 393224, 4100, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Cancel Passenger Aura'), +(62389, 0, 0, 256, 0, 0, 268435712, 8193, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Check Thorim Arena'), +(62390, 0, 0, 256, 0, 4, 268435456, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Thorim Arena Failure'), +(62403, 0, 0, 384, 0, 0, 1073741824, 8193, 1024, 1024, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 11, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Right Hand Exploder Trigger'), +(62406, 0, 0, 384, 0, 0, 1073741824, 8193, 1024, 1024, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 11, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Left Hand Exploder Trigger'), +(62421, 0, 0, 448, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Pressure Loss'), +(62429, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Passenger Entered'), +(62431, 0, 0, 256, 0, 0, 268435456, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Engineering Reset'), +(62452, 0, 0, 0, 0, 0, 0, 64, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Shoot ''Em Up: Proto-Drake Out-of-Combat Regen'), +(62474, 0, 0, 0, 1024, 4, 262144, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Hurl Boulder (Power Burn)'), +(62543, 0, 0, 2843738112, 1056, 268976133, 1245184, 8388736, 393224, 4100, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 25, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Spawn Pyrite'), +(62556, 0, 0, 384, 268435456, 0, 0, 8193, 0, 1024, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 41, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Countdown'), +(62630, 0, 0, 134217984, 0, 0, 268435456, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, '[DND] Teach New Auberdine Flight Path'), +(62631, 0, 0, 134217984, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, '[DND] Teach Grove of the Ancients Flight Path'), +(62643, 0, 0, 384, 268435456, 4, 256, 8193, 0, 1024, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Blink Targeting'), +(62808, 0, 0, 696254848, 1056, 273170437, 269681152, 8388800, 393224, 4608, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'A Squad of Your Own: Maestra''s Post Sentinel Aura'), +(62827, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Awaken Robots'), +(62829, 0, 0, 696254848, 1056, 273170437, 268632576, 8388736, 393224, 4608, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'A Squad of Your Own: Despawn Sentinels'), +(62840, 0, 0, 547619200, 1160, 67108868, 64, 2048, 8, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Respect for the Fallen: Create The Purifier''s Prayer Book'), +(62843, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Create Epic Purple Shirt'), +(62871, 0, 0, 384, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Create Sandbox Tiger'), +(62880, 0, 0, 384, 0, 0, 0, 128, 0, 0, 0, 0, 0, 0, 190, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Create Kadrak''s Reins'), +(62915, 0, 0, 448, 0, 0, 268435456, 34603008, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Hunter Snake Trap Scaling 01'), +(62984, 0, 0, 384, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Create Foam Sword'), +(62986, 0, 0, 384, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Create Foam Sword Rack'), +(63078, 0, 0, 256, 0, 0, 0, 128, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Cosmetic - Summon 10 Flowers 02'), +(63079, 0, 0, 256, 268435456, 0, 0, 192, 134217728, 1024, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Cosmetic - Summon 10 Flowers 01'), +(63217, 0, 0, 256, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Fuel Cell Pulse'), +(63284, 0, 0, 256, 1160, 0, 196864, 8193, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Shadow Crash Targeting'), +(63285, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 18, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Dwarves'), +(63286, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Overseer Gorthak: Face Random Orc'), +(63296, 0, 0, 536871168, 136, 4, 196864, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Mark of the Faceless'), +(63376, 0, 0, 384, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Create Foam Sword'), +(63377, 0, 0, 384, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Create Foam Sword'), +(63378, 0, 0, 384, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Create Foam Sword'), +(63379, 0, 0, 384, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Create Foam Sword'), +(63412, 0, 0, 538968320, 1160, 67108868, 268435520, 2048, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Stopping the Rituals: Dummy to Ritual Gem Bunny'), +(63419, 0, 0, 256, 268435456, 0, 0, 8193, 0, 1024, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 'Profound Darkness'), +(63530, 0, 0, 256, 524288, 4, 0, 8193, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Keeper Dummy'), +(63538, 0, 0, 0, 0, 4, 268435456, 128, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Separation Anxiety'), +(63561, 0, 0, 1073807744, 268436480, 0, 0, 0, 0, 4096, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 35, 3, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 'Fear Self'), +(63621, 0, 0, 384, 1024, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 57, 57, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 'zzOldImproved Frost Presence'), +(63727, 0, 0, 0, 1024, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 34, 0, -1, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 38, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 'Test Cosmetic DGK'), +(63782, 0, 0, 256, 0, 0, 0, 8193, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Bladestorm'), +(63851, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 19, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 'Slobberfang Slurp'), +(63887, 0, 0, 384, 136, 0, 512, 128, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 63, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 'Death Ray Summon'), +(63888, 0, 0, 384, 136, 0, 512, 128, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 63, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 'Death Ray Summon'), +(63889, 0, 0, 384, 136, 0, 512, 128, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 63, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 'Death Ray Summon'), +(63890, 0, 0, 384, 136, 0, 512, 128, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 63, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 'Death Ray Summon'), +(63974, 0, 0, 384, 0, 0, 262144, 128, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Rip'), +(64018, 0, 0, 384, 0, 0, 0, 128, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'zzOLDDrain Soul'), +(64033, 0, 0, 256, 268435456, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Champion'), +(64035, 0, 0, 256, 268435456, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Warbringer'), +(64037, 0, 0, 256, 268435456, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Evoker'), +(64038, 0, 0, 256, 268435456, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Commoner'), +(64067, 0, 0, 2843738112, 1056, 268976133, 1245184, 8388736, 393224, 4100, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Overload'), +(64093, 0, 0, 696254720, 1056, 268976133, 268894208, 8388736, 393224, 4612, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Enable Interact While Hostile'), +(64094, 0, 0, 536871168, 0, 0, 268894208, 128, 8, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Disable Interact While Hostile'), +(64149, 0, 0, 384, 0, 4, 1073741824, 8193, 1024, 1024, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 11, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Left Hand Nook Exploder Trigger'), +(64150, 0, 0, 384, 0, 4, 1073741824, 8193, 1024, 1024, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 11, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Right Hand Nook Exploder Trigger'), +(64207, 0, 0, 384, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Consumption'), +(64209, 0, 0, 384, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Consumption'), +(64214, 0, 0, 256, 1160, 0, 131328, 8193, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Chain Lightning Targeting'), +(64232, 0, 0, 256, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Tempest Minion'), +(64244, 0, 0, 4259840, 268435596, 4325376, 32, 134217728, 8192, 0, 0, 0, 0, 64, 18, 0, 0, 0, 0, 0, 10, 10, 32, 35, 0, -1, 0, 0, 27, 46, 0, 0, 0, 0, 0, 0, 0, 50, 0, 0, 0, 0, 0, 28, 87, 0, 0, 0, 0, 14, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 8, 'Plague of Frogs'), +(64360, 0, 0, 256, 0, 4, 256, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Player'), +(64556, 0, 0, 536936848, 268469248, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 85, 6, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Bestial Wrath'), +(64559, 0, 0, 384, 0, 4, 1073741824, 8193, 1024, 1024, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 11, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Left Hand Wall Exploder Trigger'), +(64560, 0, 0, 384, 0, 4, 1073741824, 8193, 1024, 1024, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 11, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Right Hand Wall Exploder Trigger'), +(64743, 0, 0, 384, 268436480, 4, 256, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Random Aggro'), +(64755, 0, 0, 65536, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 22, 0, 0, 0, 0, 0, 0, 0, 0, 35, 0, -1, 0, 0, 78, 23, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 4, 'Clayton''s Test Spell'), +(64796, 0, 0, 64, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Health Forwarding'), +(64797, 0, 0, 64, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Health Forwarding'), +(64829, 0, 0, 384, 268435456, 0, 0, 1, 0, 1024, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Tentacle Submerge Visual'), +(64884, 0, 0, 256, 0, 0, 0, 128, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Cooldown: Creature Special 2 (8s)'), +(64973, 0, 0, 384, 0, 0, 0, 8321, 0, 1024, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Lightning Field'), +(64980, 0, 0, 256, 268435456, 5, 256, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Achievement Check'), +(64998, 0, 0, 2843738112, 1056, 268976133, 1245184, 8388736, 393224, 4100, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Say you''re ready to fly!'), +(65027, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, -1, 0, 0, 153, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 34263, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 'Pet Swift Olive Raptor'), +(65028, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, -1, 0, 0, 153, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 34262, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 'Pet Violet Raptor'), +(65049, 0, 0, 536871168, 525312, 4, 0, 0, 2097152, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 14, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'ACW Westfall Lighthouse Pulse'), +(65065, 0, 0, 536871168, 525312, 4, 0, 0, 2097152, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 14, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'ACW Magni Statue Pulse'), +(65066, 0, 0, 536871168, 525312, 4, 0, 0, 2097152, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 14, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'ACW Malfurion Pulse'), +(65067, 0, 0, 536871168, 525312, 4, 0, 0, 2097152, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 14, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'ACW Ratchet Docks Pulse'), +(65068, 0, 0, 536871168, 525312, 4, 0, 0, 2097152, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 14, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'ACW Cairne Pyre Pulse'), +(65069, 0, 0, 536871168, 525312, 4, 0, 0, 2097152, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 14, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'ACW Sylvanas Visit Pulse'), +(65083, 0, 0, 256, 268435456, 5, 256, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Cache Destroyed'), +(65092, 0, 0, 384, 268435456, 4, 196608, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 96, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 64, 'Retarget'), +(65114, 0, 0, 256, 268435592, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 64, 'Dummy Nuke'); +INSERT INTO `spell_dbc` (`Id`, `Dispel`, `Mechanic`, `Attributes`, `AttributesEx`, `AttributesEx2`, `AttributesEx3`, `AttributesEx4`, `AttributesEx5`, `AttributesEx6`, `AttributesEx7`, `Stances`, `StancesNot`, `Targets`, `CastingTimeIndex`, `AuraInterruptFlags`, `ProcFlags`, `ProcChance`, `ProcCharges`, `MaxLevel`, `BaseLevel`, `SpellLevel`, `DurationIndex`, `RangeIndex`, `StackAmount`, `EquippedItemClass`, `EquippedItemSubClassMask`, `EquippedItemInventoryTypeMask`, `Effect1`, `Effect2`, `Effect3`, `EffectDieSides1`, `EffectDieSides2`, `EffectDieSides3`, `EffectRealPointsPerLevel1`, `EffectRealPointsPerLevel2`, `EffectRealPointsPerLevel3`, `EffectBasePoints1`, `EffectBasePoints2`, `EffectBasePoints3`, `EffectMechanic1`, `EffectMechanic2`, `EffectMechanic3`, `EffectImplicitTargetA1`, `EffectImplicitTargetA2`, `EffectImplicitTargetA3`, `EffectImplicitTargetB1`, `EffectImplicitTargetB2`, `EffectImplicitTargetB3`, `EffectRadiusIndex1`, `EffectRadiusIndex2`, `EffectRadiusIndex3`, `EffectApplyAuraName1`, `EffectApplyAuraName2`, `EffectApplyAuraName3`, `EffectAmplitude1`, `EffectAmplitude2`, `EffectAmplitude3`, `EffectMultipleValue1`, `EffectMultipleValue2`, `EffectMultipleValue3`, `EffectMiscValue1`, `EffectMiscValue2`, `EffectMiscValue3`, `EffectMiscValueB1`, `EffectMiscValueB2`, `EffectMiscValueB3`, `EffectTriggerSpell1`, `EffectTriggerSpell2`, `EffectTriggerSpell3`, `EffectSpellClassMaskA1`, `EffectSpellClassMaskA2`, `EffectSpellClassMaskA3`, `EffectSpellClassMaskB1`, `EffectSpellClassMaskB2`, `EffectSpellClassMaskB3`, `EffectSpellClassMaskC1`, `EffectSpellClassMaskC2`, `EffectSpellClassMaskC3`, `MaxTargetLevel`, `SpellFamilyName`, `SpellFamilyFlags1`, `SpellFamilyFlags2`, `SpellFamilyFlags3`, `MaxAffectedTargets`, `DmgClass`, `PreventionType`, `DmgMultiplier1`, `DmgMultiplier2`, `DmgMultiplier3`, `AreaGroupId`, `SchoolMask`, `Comment`) VALUES +(65118, 0, 0, 0, 67108864, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 134, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Bomb Periodic'), +(65119, 0, 0, 0, 67108864, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 36, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Bomb Periodic'), +(65149, 0, 0, 536871296, 0, 0, 256, 128, 8, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Hate All in LoS'), +(65155, 0, 0, 384, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Speed Up'), +(65167, 0, 0, 696254848, 1056, 273170437, 269681152, 8388736, 393224, 4608, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Put Out The Fire: Quest Complete or Abandon'), +(65168, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'zzOLDPut Out The Fire: Quest Complete 1'), +(65169, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'zzOLDPut Out The Fire: Freezing Surger 1'), +(65170, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'zzOLDPut Out The Fire: Freezing Surger 2'), +(65189, 0, 0, 536871296, 1024, 4, 256, 128, 1048576, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 36, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Vortex: Character Dismount Cast From Gossip'), +(65197, 0, 0, 256, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 35, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Pacify Self'), +(65219, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'No Teleport'), +(65225, 0, 0, 448, 0, 0, 268435456, 34603008, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'zzOldEarth Elemental Pet Scaling 01'), +(65226, 0, 0, 448, 0, 0, 268435456, 34603008, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'zzOldEarth Elemental Pet Scaling 02'), +(65227, 0, 0, 448, 0, 0, 268435456, 34603008, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'zzOldEarth Elemental Pet Scaling 03'), +(65228, 0, 0, 448, 0, 0, 268435456, 34603008, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'zzOldEarth Elemental Pet Scaling 04'), +(65246, 0, 0, 2843738112, 1056, 268976141, 269680640, 8519808, 393224, 4612, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Storm the Beach'), +(65268, 0, 0, 256, 268435456, 0, 0, 8193, 0, 1024, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 'Profound Darkness'), +(65271, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Replace Ravasaur Hatchling'), +(65276, 0, 0, 384, 268436480, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Random Aggro (Vehicle Only)'), +(65277, 0, 0, 256, 268435456, 4, 256, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Achievement Check'), +(65296, 0, 0, 256, 268435456, 5, 256, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Lumberjacked Credit'), +(65304, 0, 0, 256, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Hate Monster (Spar Buddy)'), +(65322, 0, 0, 256, 268436480, 5, 131328, 128, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Hardmode Tracker'), +(65323, 0, 0, 256, 268436480, 5, 131328, 128, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Hardmode Tracker'), +(65324, 0, 0, 256, 268436480, 5, 131328, 128, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Hardmode Tracker'), +(65325, 0, 0, 256, 268436480, 5, 131328, 128, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Hardmode Tracker'), +(65326, 0, 0, 256, 268436480, 5, 131328, 128, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Hardmode Tracker'), +(65327, 0, 0, 256, 268436480, 5, 131328, 128, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Hardmode Tracker'), +(65330, 0, 0, 256, 268436480, 5, 131328, 128, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Hardmode Tracker'), +(65331, 0, 0, 256, 268436480, 5, 131328, 128, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Hardmode Tracker'), +(65334, 0, 0, 256, 268436480, 5, 131328, 128, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Hardmode Tracker'), +(65335, 0, 0, 256, 268436480, 5, 131328, 128, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Hardmode Tracker'), +(65336, 0, 0, 256, 268436480, 5, 131328, 128, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Hardmode Tracker'), +(65337, 0, 0, 256, 268436480, 5, 131328, 128, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Hardmode Tracker'), +(65338, 0, 0, 256, 268436480, 5, 131328, 128, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Hardmode Tracker'), +(65339, 0, 0, 256, 268436480, 5, 131328, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Hardmode Tracker'), +(65340, 0, 0, 256, 268436480, 5, 131328, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Hardmode Tracker'), +(65341, 0, 0, 256, 268436480, 5, 131328, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Hardmode Tracker'), +(65342, 0, 0, 256, 268436480, 5, 131328, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Hardmode Tracker'), +(65362, 0, 0, 2843738112, 1056, 268976141, 269680640, 11141280, 393225, 4100, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Quiet Damage'), +(65375, 0, 0, 0, 0, 0, 0, 4096, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 261, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 170, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 'Defend the Tree!: Quest Phase 1 Aura for Testing Purposes'), +(65376, 0, 0, 673186176, 1192, 272629761, 268894784, 8390656, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Recover the Fallen: Create Laughing Sister''s Corpse'), +(65377, 0, 0, 536871168, 525312, 4, 0, 0, 2097152, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 36, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'NCW Grizzlemaw Pulse'), +(65380, 0, 0, 536871168, 525312, 4, 0, 0, 2097152, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 36, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'NCW Grizzlemaw Pulse'), +(65389, 0, 0, 536871168, 525312, 4, 0, 0, 2097152, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 36, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'NCW Bronze Dragonshrine Pulse'), +(65390, 0, 0, 536871168, 525312, 4, 0, 0, 2097152, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 36, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'NCW Bronze Dragonshrine Pulse'), +(65441, 0, 0, 142606592, 268435456, 1, 1048576, 4160, 8, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Laughing Sister Transform'), +(65472, 0, 0, 67109120, 268438528, 4, 269615104, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'High Armor Target'), +(65473, 0, 0, 67109120, 268438664, 4, 269615104, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Medium Armor Target'), +(65474, 0, 0, 67109120, 268438664, 4, 269615104, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Low Armor Target'), +(65475, 0, 0, 67109248, 268438664, 5, 269615104, 0, 0, 1024, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Is Physical DPS'), +(65476, 0, 0, 67109120, 268438664, 4, 269615104, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Is Healer'), +(65477, 0, 0, 67109120, 268438664, 4, 269615104, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Is Caster DPS'), +(65480, 0, 0, 256, 268436480, 4, 268566784, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Analyze Raid Composition'), +(65482, 0, 0, 67109120, 268435456, 4, 268435456, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 31, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Targeting Marker'), +(65504, 0, 0, 536871168, 525312, 4, 0, 0, 2097152, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 36, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'NCW Playmates Pulse'), +(65505, 0, 0, 536871168, 525312, 4, 0, 0, 2097152, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 36, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'NCW Playmates Pulse'), +(65521, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 'Test'), +(65533, 0, 0, 536871168, 525312, 4, 0, 0, 2097152, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'NCW Alexstrasza Pulse'), +(65534, 0, 0, 536871168, 525312, 4, 0, 0, 2097152, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'NCW Alexstrasza Pulse'), +(65536, 0, 0, 384, 268435456, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Dummy Trigger 3'), +(65559, 0, 0, 384, 268435456, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Caravan Victory Cue'), +(65566, 0, 0, 536871168, 525312, 4, 0, 0, 2097152, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'NCW Great One Pulse'), +(65567, 0, 0, 536871168, 525312, 4, 0, 0, 2097152, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'NCW Hemet Pulse'), +(65597, 0, 0, 0, 67108864, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 134, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Bomb Periodic'), +(65625, 0, 0, 536871168, 1160, 67108868, 268435520, 2176, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Create Dartol''s Rod 01'), +(65721, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Dummy Trigger 1'), +(65741, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Create Path of Cenarius'), +(65743, 0, 0, 384, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Create Ogre Pinata'), +(65747, 0, 0, 536871168, 1160, 67108868, 268435520, 2176, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Create Dartol''s Rod 02'), +(65750, 0, 0, 256, 268435456, 4, 268435456, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Targeting Marker Proc'), +(65776, 0, 0, 256, 268436616, 4, 268566528, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Nuker Evaluate Threat'), +(65789, 0, 0, 256, 268436616, 4, 268566528, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Melee Evaluate Threat'), +(65885, 0, 0, 8388880, 268435456, 1, 269484032, 0, 0, 0, 0, 0, 0, 0, 18, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Super Invis'), +(65948, 0, 0, 0, 0, 0, 0, 0, 0, 4096, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 95, 0, 0, 0, 0, 0, 76, 0, 0, 0, 0, 0, 0, 0, 0, 45, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 'Zoom 45'), +(65952, 0, 0, 384, 268435456, 4, 196608, 0, 0, 16384, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 64, 'Dummy Nuke'), +(65963, 0, 0, 262528, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 2, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 'Wound Poison'), +(65969, 0, 0, 698351616, 1192, 67125252, 64, 2048, 393224, 4608, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'FBG - XP Award'), +(66000, 0, 0, 384, 524288, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Totem Primer'), +(66029, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Replace Gahz''ridian Detector'), +(66143, 0, 0, 687866240, 3104, 273170436, 268632576, 8388800, 393224, 4608, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Necessary Roughness: See Spawned Bilgewater Buccaneer Invis'), +(66144, 0, 0, 687866240, 1056, 273170436, 268632576, 8388736, 393224, 4608, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Fourth and Goal: Signal to Friends'), +(66145, 0, 0, 696254848, 1056, 273170437, 268632576, 8388736, 393224, 4608, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'zzOLDDo it Yourself: Quest Complete'), +(66148, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Rolling with my Homies: Hot Rod - Knockback Trigger'), +(66156, 0, 0, 256, 268960904, 4, 268566528, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Healer Evaluate Threat'), +(66161, 0, 0, 384, 268435456, 0, 0, 0, 0, 1024, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 66, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Being Attacked'), +(66162, 0, 0, 384, 268435456, 0, 268435456, 0, 0, 1024, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Being Attacked'), +(66174, 0, 0, 384, 268435456, 4, 196608, 0, 0, 16384, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Dummy Nuke'), +(66202, 0, 0, 256, 268436616, 4, 268566528, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Hunter Evaluate Threat'), +(66239, 0, 0, 8388992, 268435456, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Dummy Trigger - Alicia Cuthbert Dies'), +(66270, 0, 0, 536871296, 268435456, 4, 1179648, 0, 524288, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 9, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Snobold Carrier'), +(66273, 0, 0, 536871296, 268435456, 4, 131072, 0, 524288, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 9, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Snobold Carrier'), +(66274, 0, 0, 536871296, 268435456, 4, 131072, 0, 524288, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 9, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Snobold Carrier'), +(66297, 0, 0, 536871168, 1160, 67108868, 268435520, 2176, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Rolling with my Homies: Create Keys to the Hot Rod'), +(66315, 0, 0, 256, 268436480, 4, 131072, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Aggro'), +(66319, 0, 0, 256, 268435456, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 42, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 'Summon Fire Bomb'), +(66328, 0, 0, 400, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 11, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Call Spider'), +(66337, 0, 0, 256, 1160, 4, 196864, 8193, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Fire Bomb Targeting'), +(66341, 0, 0, 384, 0, 0, 0, 0, 524288, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Grab Snobold'), +(66343, 0, 0, 384, 0, 0, 131328, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Snobold Targeting'), +(66344, 0, 0, 384, 0, 0, 0, 0, 524288, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 181, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Snobold Launch Trigger'), +(66388, 0, 0, 687866240, 1056, 273170436, 268632576, 8388736, 917512, 4612, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Fourth and Goal: Deathwing Sound 1'), +(66389, 0, 0, 687866240, 1056, 273170436, 268632576, 8388736, 917512, 4612, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Fourth and Goal: Deathwing Sound 2'), +(66394, 0, 0, 696254848, 1056, 273170437, 268632576, 8388736, 393224, 4608, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Rolling with my Homies: Quest Accept'), +(66395, 0, 0, 689963264, 268436648, 335560704, 1048640, 2240, 393224, 4100, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Rolling with my Homies: See Invisibility 01 - "Ace"'), +(66396, 0, 0, 689963264, 268436648, 335560704, 1048640, 2240, 393224, 4100, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Rolling with my Homies: See Invisibility 02 - "Gobber"'), +(66397, 0, 0, 689963264, 268436648, 335560704, 1048640, 2240, 393224, 4100, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Rolling with my Homies: See Invisibility 03 - "Izzy"'), +(66414, 0, 0, 256, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 8, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Tanking Gormok'), +(66415, 0, 0, 320, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Tanking Gormok'), +(66422, 0, 0, 384, 0, 5, 1048832, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Assign Vehicle Record'), +(66589, 0, 0, 696254848, 1056, 273170437, 269681152, 8388736, 393224, 4608, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Rolling with my Homies: Cancel See Invisibility 01 - "Ace"'), +(66590, 0, 0, 696254848, 1056, 273170437, 269681152, 8388736, 393224, 4608, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Rolling with my Homies: Cancel See Invisibility 02 - "Gobber"'), +(66591, 0, 0, 696254848, 1056, 273170437, 269681152, 8388736, 393224, 4608, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Rolling with my Homies: Cancel See Invisibility 03 - "Izzy"'), +(66604, 0, 0, 687866240, 1056, 273170436, 268632576, 8388736, 393224, 4608, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'The New You: See Cat''s Mark Master'), +(66605, 0, 0, 687866240, 1056, 273170436, 268632576, 8388736, 393224, 4608, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Fourth and Goal: Deathwing Force Character to Change Seats'), +(66607, 0, 0, 696254848, 1056, 273170437, 268632576, 8388736, 393224, 4608, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Rolling with my Homies: Quest Complete'), +(66609, 0, 0, 696254848, 1056, 273170437, 269681152, 8388736, 393224, 4608, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Rolling with my Homies: Hot Rod - Activate Knockback Trigger'), +(66610, 0, 0, 256, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Waltz Right In: Force Cast Keensnout Potbelly Leash'), +(66612, 0, 0, 687866240, 1056, 273170437, 268632576, 8388736, 393224, 4608, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Rolling with my Homies: Despawn Summoned Friends'), +(66614, 0, 0, 696254848, 3104, 273170437, 269681152, 8388800, 393224, 4608, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'zzOLDQuest Phase 01'), +(66615, 0, 0, 696254848, 3104, 273170437, 269681152, 8388800, 393224, 4608, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'zzOLDQuest Phase 02'), +(66616, 0, 0, 696254848, 3104, 273170437, 269681152, 8388800, 393224, 4608, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'zzOLDQuest Phase 03'), +(66617, 0, 0, 2835349888, 268438664, 67125248, 64, 6208, 0, 5120, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Rolling with my Homies: Get Into The Hot Rod Trigger'), +(66618, 0, 0, 687866240, 1160, 67125248, 64, 2048, 0, 4096, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Rolling with my Homies: Get Into The Hot Rod Effect'), +(66641, 0, 0, 8388992, 0, 0, 0, 128, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 35, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Tell Snobold I Died'), +(66643, 0, 0, 384, 268435456, 0, 0, 0, 512, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Apply Vehicle Periodic'), +(66678, 0, 0, 384, 268435592, 4, 131328, 0, 8, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Aggro Farthest'), +(66679, 0, 0, 696254848, 1056, 273170437, 269681152, 8388736, 393224, 4608, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 36, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Rolling with my Homies: Resummon Master Aura'), +(66685, 0, 0, 256, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 589, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Stun Self'), +(66722, 0, 0, 696254848, 1056, 273170437, 269681152, 8388736, 393224, 4608, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Circle the Wagons, Er... Boats: Force Cast from Gossip'), +(66729, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 18, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Furious Charge Summon Stalker'), +(66732, 0, 0, 384, 1024, 0, 196864, 8388608, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Furious Charge Trigger'), +(66761, 0, 0, 696254848, 3104, 273170437, 269681152, 8388800, 393224, 4608, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'zzOLDQuest Phase 05'), +(66762, 0, 0, 696254848, 3104, 273170437, 269681152, 8388800, 393224, 4608, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'zzOLDQuest Phase 07'), +(66766, 0, 0, 696254848, 1056, 273170437, 268632576, 8388736, 393224, 4608, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'The New You: Quest Complete'), +(66828, 0, 0, 687866240, 3104, 273170436, 268632576, 8388800, 393224, 4608, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Do it Yourself: See Cat''s Mark - Bruno'), +(66871, 0, 0, 384, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Create Big Battle Bear'), +(66872, 0, 0, 384, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Create Magic Rooster Egg'), +(66873, 0, 0, 384, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Create Reins of the Spectral Tiger'), +(66874, 0, 0, 384, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Create Reins of the Swift Spectral Tiger'), +(66875, 0, 0, 384, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Create X-51 Nether-Rocket'), +(66876, 0, 0, 384, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Create X-51 Nether-Rocket X-TREME'), +(66884, 0, 0, 696254848, 1056, 273170437, 268632576, 8388736, 393224, 12800, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'zzOLDPhase 1 Complete Tracking Event'), +(66885, 0, 0, 696254848, 1056, 273170437, 268632576, 8388736, 393224, 4608, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'zzOLDLife of the Party: Quest Complete'), +(66920, 0, 0, 687866240, 1056, 273170436, 268632576, 8388736, 393224, 4608, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Surrender Or Else!: Naga Reaction'); +INSERT INTO `spell_dbc` (`Id`, `Dispel`, `Mechanic`, `Attributes`, `AttributesEx`, `AttributesEx2`, `AttributesEx3`, `AttributesEx4`, `AttributesEx5`, `AttributesEx6`, `AttributesEx7`, `Stances`, `StancesNot`, `Targets`, `CastingTimeIndex`, `AuraInterruptFlags`, `ProcFlags`, `ProcChance`, `ProcCharges`, `MaxLevel`, `BaseLevel`, `SpellLevel`, `DurationIndex`, `RangeIndex`, `StackAmount`, `EquippedItemClass`, `EquippedItemSubClassMask`, `EquippedItemInventoryTypeMask`, `Effect1`, `Effect2`, `Effect3`, `EffectDieSides1`, `EffectDieSides2`, `EffectDieSides3`, `EffectRealPointsPerLevel1`, `EffectRealPointsPerLevel2`, `EffectRealPointsPerLevel3`, `EffectBasePoints1`, `EffectBasePoints2`, `EffectBasePoints3`, `EffectMechanic1`, `EffectMechanic2`, `EffectMechanic3`, `EffectImplicitTargetA1`, `EffectImplicitTargetA2`, `EffectImplicitTargetA3`, `EffectImplicitTargetB1`, `EffectImplicitTargetB2`, `EffectImplicitTargetB3`, `EffectRadiusIndex1`, `EffectRadiusIndex2`, `EffectRadiusIndex3`, `EffectApplyAuraName1`, `EffectApplyAuraName2`, `EffectApplyAuraName3`, `EffectAmplitude1`, `EffectAmplitude2`, `EffectAmplitude3`, `EffectMultipleValue1`, `EffectMultipleValue2`, `EffectMultipleValue3`, `EffectMiscValue1`, `EffectMiscValue2`, `EffectMiscValue3`, `EffectMiscValueB1`, `EffectMiscValueB2`, `EffectMiscValueB3`, `EffectTriggerSpell1`, `EffectTriggerSpell2`, `EffectTriggerSpell3`, `EffectSpellClassMaskA1`, `EffectSpellClassMaskA2`, `EffectSpellClassMaskA3`, `EffectSpellClassMaskB1`, `EffectSpellClassMaskB2`, `EffectSpellClassMaskB3`, `EffectSpellClassMaskC1`, `EffectSpellClassMaskC2`, `EffectSpellClassMaskC3`, `MaxTargetLevel`, `SpellFamilyName`, `SpellFamilyFlags1`, `SpellFamilyFlags2`, `SpellFamilyFlags3`, `MaxAffectedTargets`, `DmgClass`, `PreventionType`, `DmgMultiplier1`, `DmgMultiplier2`, `DmgMultiplier3`, `AreaGroupId`, `SchoolMask`, `Comment`) VALUES +(66921, 0, 0, 687866240, 1056, 273170436, 197376, 8388736, 393224, 4608, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Earthquake Trigger'), +(66944, 0, 0, 142606592, 268435456, 1, 1048576, 4160, 8, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Pirate Party Crashers: Kezan Partygoer Transform - Male'), +(66945, 0, 0, 142606592, 268435456, 1, 1048576, 4160, 8, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Pirate Party Crashers: Kezan Partygoer Transform - Female'), +(66946, 0, 0, 142606592, 268435456, 1, 1048576, 4160, 8, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Pirate Party Crashers: Kezan Partygoer Transform - Swimmer'), +(66956, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Create Totem'), +(66970, 0, 0, 256, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Acidmaw Transform to Mobile'), +(66971, 0, 0, 256, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Dreadscale Transform to Sessile'), +(66980, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 8, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Mobile Jormungar Target'), +(66981, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 8, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Sessile Jormungar Target'), +(66982, 0, 0, 696254848, 1056, 273170437, 268632576, 8388736, 393224, 4608, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, '<INTERNAL>Stormwind Portal Teleport to Vashj''ir (Tranquil Wash)'), +(66983, 0, 0, 696254848, 3104, 273170437, 269681152, 8388800, 393224, 4608, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'zzOLDQuest Phase 04'), +(66984, 0, 0, 696254848, 3104, 273170437, 269681152, 8388800, 393224, 4608, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'zzOLDQuest Phase 06'), +(66995, 0, 0, 696254848, 1056, 273170437, 268632576, 8388736, 393224, 4608, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, '<INTERNAL>Orgimmar/Stormwind Portal Teleport to Vashj''ir (Silver Tide Hollow)'), +(66996, 0, 0, 696254848, 1056, 273170437, 268632576, 8388736, 393224, 4608, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'zzOLDA Bazillion Macaroons?!: Quest Complete'), +(66997, 0, 0, 696254848, 1056, 273170437, 269681152, 8388736, 393224, 12800, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'zzOLDPhase 6 Complete Tracking Event'), +(66998, 0, 0, 687866240, 3104, 273170436, 268632576, 8388800, 393224, 4608, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Waltz Right In: Beam Master'), +(67000, 0, 0, 687866240, 3104, 273170436, 268632576, 8388800, 393224, 4608, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 18, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Waltz Right In: Villa Mook Recently Emoted'), +(67010, 0, 0, 696254720, 1184, 268976133, 268632064, 8388736, 393224, 16781316, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Mark of Honor'), +(67011, 0, 0, 696254720, 1184, 268976133, 268632064, 8388736, 393224, 16781316, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Mark of Honor'), +(67026, 0, 0, 384, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'zzOLDCower Master'), +(67027, 0, 0, 384, 268435456, 0, 0, 0, 131072, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'zzOLDCower Trigger'), +(67057, 0, 0, 134217984, 0, 0, 268435456, 0, 8, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 'Bloody Explosion'), +(67284, 0, 0, 150995392, 32, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Suicide Trigger'), +(67288, 0, 0, 150995328, 32, 0, 268435456, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Suicide'), +(67339, 0, 0, 1090584960, 268436480, 16384, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 27, 3, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 'Fear Self'), +(67341, 0, 0, 16777488, 268435456, 0, 268435456, 0, 0, 0, 0, 0, 0, 0, 18, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Super Invis'), +(67474, 0, 0, 256, 1024, 268435460, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Goblin Escape Pods: Force Cast'), +(67491, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 3, 12, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Liberate the Kaja''mite: Summon Kaja''mite Chunks - C'), +(67507, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 3, 12, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Liberate the Kaja''mite: Summon Kaja''mite Chunks - A'), +(67548, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 3, 12, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Liberate the Kaja''mite: Summon Kaja''mite Chunks - B'), +(67552, 0, 0, 384, 0, 0, 268435456, 1048576, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Pet Scaling - Master Spell 01 - AP, SP, Armor'), +(67553, 0, 0, 384, 0, 0, 268435456, 1048576, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Pet Scaling - Master Spell 02 - Strength, Agility, Stamina'), +(67557, 0, 0, 384, 0, 0, 268435456, 1048576, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Pet Scaling - Master Spell 03 - Intellect, Spirit, Resilience'), +(67558, 0, 0, 384, 0, 0, 268435456, 1048576, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Pet Scaling - Master Spell 04 - Arcane, Fire, Frost Resistance'), +(67559, 0, 0, 384, 0, 0, 268435456, 1048576, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Pet Scaling - Master Spell 05 - Nature, Shadow, Melee Hit'), +(67561, 0, 0, 384, 0, 0, 268435456, 1048576, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Pet Scaling - Master Spell 06 - Spell Hit, Expertise, Spell Penetration'), +(67562, 0, 0, 384, 0, 0, 268435456, 1048576, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Pet Scaling - Master Spell 07 - Mana Regeneration, Spell Haste, Melee Haste'), +(67563, 0, 0, 384, 0, 0, 268435456, 1048576, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Pet Scaling - Master Spell 08 - Spell Crit, Melee Crit, Armor Penetration'), +(67580, 0, 0, 536871296, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 181, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Jump to Player'), +(67668, 0, 0, 696254848, 3104, 273170437, 268632576, 8388800, 393736, 4608, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Waltz Right In: Disguise Master Aura'), +(67783, 0, 0, 150995328, 32, 0, 268435456, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 28, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Implosion'), +(67850, 0, 0, 696254848, 1056, 273170437, 269681152, 8388736, 393224, 4608, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'It''s A Town-In-A-Box: Phase Master'), +(67871, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Enable Koralon'), +(67872, 0, 0, 687866240, 1056, 273170436, 268632576, 8388736, 393224, 4608, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Goblin Escape Pods: Quest Accept'), +(68006, 0, 0, 2306867200, 32, 540685, 1048576, 2752672, 393225, 136704, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Battleground Experience Active'), +(68075, 0, 0, 536871296, 0, 4, 268435456, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Miner Troubles: GUID Dot Variable to Summoning Miner'), +(68260, 0, 0, 536871296, 268435456, 0, 1048576, 0, 524288, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 9, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Snobold Carrier'), +(68273, 0, 0, 536871296, 268435456, 0, 1048576, 0, 524288, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 9, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Snobold Carrier'), +(68274, 0, 0, 65568, 1024, 0, 0, 0, 0, 0, 0, 0, 0, 16, 6, 0, 0, 0, 0, 0, 60, 0, 0, 1, 0, 4, 30, 1048608, 53, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3832, 0, 0, 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 'Owen Test Recipe'), +(68275, 0, 0, 536871296, 268435456, 0, 1048576, 0, 524288, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 9, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Snobold Carrier'), +(68276, 0, 0, 536871296, 268435456, 0, 1048576, 0, 524288, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 9, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Snobold Carrier'), +(68288, 0, 0, 687866240, 1056, 273170436, 268632576, 8388736, 393224, 4608, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Weed Whacker: Quest Accept'), +(68373, 0, 0, 2843740544, 1056, 268976133, 1245184, 8388736, 393224, 12292, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Despawn Target'), +(68390, 0, 0, 696254848, 1056, 273170437, 268632576, 8388736, 393224, 4608, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, '<INTERNAL>Stormwind Portal Teleport to Vashj''ir (Darkbreak Cove) - ELM'), +(68426, 0, 0, 384, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Speed Up'), +(68447, 0, 0, 0, 0, 132, 0, 128, 0, 0, 0, 0, 0, 0, 190, 0, 0, 0, 0, 0, 0, 0, 0, 135, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Force Cast - Delete Wolvar Whistle'), +(68448, 0, 0, 696254848, 1056, 273170437, 269681152, 8388736, 393224, 4608, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Pirate Accuracy Increasing: Force Cast from Gossip & Kill Credit - Horde'), +(68449, 0, 0, 0, 0, 132, 0, 128, 0, 0, 0, 0, 0, 0, 190, 0, 0, 0, 0, 0, 0, 0, 0, 135, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Force Cast - Delete Oracle Whistle'), +(68450, 0, 0, 256, 0, 128, 0, 128, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Delete Wolvar Whistle'), +(68453, 0, 0, 256, 0, 128, 0, 128, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Delete Oracle Whistle'), +(68463, 0, 0, 159383936, 32, 540672, 0, 128, 393224, 4096, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Bloodtooth Frenzy Clean Up'), +(68464, 0, 0, 159383936, 32, 540672, 0, 128, 393224, 4096, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Bloodtooth Frenzy Clean Up'), +(68465, 0, 0, 696254848, 1056, 273170437, 268632576, 8388736, 393224, 4608, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, '<INTERNAL>Orgimmar Portal Teleport to Vashj''ir (Tenebrous Cavern)'), +(68484, 0, 0, 64, 0, 0, 0, 32768, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 'Swift Flight Form Passive'), +(68485, 0, 0, 65536, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 22, 0, 0, 0, 0, 0, 0, 0, 31, 35, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 'Clayton''s Test Spell 2'), +(68500, 0, 0, 384, 268435456, 4, 196608, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 96, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 'Dummy Nuke'), +(68517, 0, 0, 384, 0, 4, 268566528, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Beast Attempt'), +(68518, 0, 0, 384, 0, 4, 268566528, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Jaraxxus Attempt'), +(68519, 0, 0, 384, 0, 4, 268566528, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Champions Attempt'), +(68520, 0, 0, 384, 0, 4, 268566528, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Val''kyr Attempt'), +(68521, 0, 0, 384, 0, 4, 268566528, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Anub''arak Attempt'), +(68523, 0, 0, 256, 268435592, 5, 268566784, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Achievement Credit'), +(68575, 0, 0, 256, 268435592, 5, 268435712, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Kill Credit'), +(68590, 0, 0, 256, 268436480, 5, 268632320, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Item Level Check'), +(68657, 0, 0, 0, 0, 4, 0, 0, 0, 331776, 0, 0, 0, 64, 1, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'zzOldLuis Test Catapult Self'), +(68662, 0, 0, 696254464, 1056, 273170437, 269681152, 8388736, 393224, 4608, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 56, 0, 0, 0, 0, 0, 0, 0, 0, 37925, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 'Goblinated'), +(68678, 0, 0, 384, 268436480, 4, 131328, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Random Aggro'), +(68684, 0, 0, 384, 268435456, 268435456, 0, 64, 0, 1024, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Goblin Escape Pods: Trade Prince & Company Quest Invisibility 01'), +(68685, 0, 0, 696254848, 1056, 273170437, 269681152, 8388736, 393224, 4608, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Goblin Escape Pods: Quest Complete'), +(68686, 0, 0, 689963392, 268436648, 335560704, 1048640, 2240, 393224, 4100, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Goblin Escape Pods: See Invisibility 01'), +(68692, 0, 0, 2843738112, 1056, 268976133, 1245440, 8388736, 393224, 4100, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'General Trigger 1 from all player targets in 100 yards'), +(68712, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 'zzOldArmor Plating of Balance'), +(68772, 0, 0, 2147483648, 1024, 268435460, 196608, 8388608, 0, 8196, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Pick-a-Forge'), +(68777, 0, 0, 2147483648, 1024, 268435460, 196608, 8388608, 0, 8196, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Pick-a-Forge'), +(68807, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Create Tuskarr Kite'), +(68808, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Create Little Ivory Raptor Whistle'), +(68809, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Create Little White Stallion Bridle'), +(68811, 0, 0, 384, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Create Spectral Tiger Cub'), +(68814, 0, 0, 696254848, 1056, 273170437, 268632576, 8388736, 393224, 4608, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Up, Up & Away!: Quest Abandon'), +(68833, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, -1, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 'Test Fire'), +(68928, 0, 0, 696254848, 1056, 273170437, 269681152, 8388800, 393224, 4608, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Cluster Cluck: Quest Accept'), +(68941, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 6, 0, -1, 0, 0, 6, 6, 0, 0, 0, 0, 0, 0, 0, 10000000, 10000000, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 17, 151, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 'Lost Isles: Stealth Test - Goggles'), +(68942, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 6, 0, -1, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 'Lost Isles: Stealth Test - Assassin Aura'), +(68951, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'zzOld Dan''s Altered Form On'), +(68952, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'zzOld Dan''s Altered Form Off'), +(68972, 0, 0, 687866240, 1056, 273170436, 268632576, 8388736, 393224, 4608, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Town-In-A-Box: Under Attack: Quest Accept'), +(69001, 0, 0, 0, 536870976, 0, 0, 32768, 8, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 35, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Transform: Worgen'), +(69014, 0, 0, 2843738112, 1124, 268976132, 1245440, 8388736, 393224, 12292, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 64, 'Explosive Barrage'), +(69061, 0, 0, 2843738112, 1056, 268976133, 1245184, 8388736, 393224, 12292, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Impaled Removal'), +(69082, 0, 0, 696254848, 1056, 273170437, 268632576, 8388736, 393224, 4608, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Precious Cargo: Quest Complete'), +(69083, 0, 0, 2843738112, 1056, 268976133, 1245184, 8388736, 393224, 12292, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 77, 3, 64, 0, 0, 0, 0, 0, 0, 36595, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 69102, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 1, 'Video Card Winner'), +(69093, 0, 0, 2843738368, 1056, 268976133, 1245184, 8388736, 393224, 12292, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Create Blizzcon Ticket'), +(69102, 0, 0, 2910846976, 1056, 268976133, 1245184, 8388736, 393224, 12292, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 18, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Awe'), +(69116, 0, 0, 536871168, 268435592, 4, 196864, 8388608, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Shadowstep Trigger'), +(69117, 0, 0, 384, 268436480, 4, 256, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Random Aggro'), +(69121, 0, 0, 2843803904, 268436512, 268976133, 1245184, 8388736, 917512, 12292, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 152, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 64, 'Ride Vehicle'), +(69142, 0, 0, 269844752, 0, 0, 536870912, 0, 0, 131072, 0, 0, 0, 0, 14, 128, 0, 0, 0, 0, 0, 1, 0, 1, 0, -1, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 'Loaned Gryphon'), +(69173, 0, 0, 384, 268435456, 0, 0, 1, 0, 1024, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Overlord''s Brand'), +(69175, 0, 0, 402653440, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 4103, 0, 0, 0, 0, 5, 0, 85, 1, 0, -1, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 84, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 'Food'), +(69176, 0, 0, 402653440, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 4103, 0, 0, 0, 0, 5, 5, 85, 1, 0, -1, 0, 0, 6, 6, 0, 0, 0, 0, 0, 0, 0, 0, 42, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 85, 226, 0, 0, 2200, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 'Drink'), +(69183, 0, 0, 384, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 6, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Overlord''s Brand'), +(69229, 0, 0, 256, 1024, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Krasus Quel''Delar Credit'), +(69231, 0, 0, 256, 1160, 4, 196864, 8193, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Icy Blast Targeting'), +(69234, 0, 0, 256, 268435456, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 42, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 'Summon Icy Blast'), +(69239, 0, 0, 2843738368, 1056, 268976133, 1245184, 8388736, 393224, 12292, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 61, 24, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 22450, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 'Create Blizzcon Ticket'), +(69287, 0, 0, 256, 1160, 4, 196864, 8193, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Hoarfrost Targeting'), +(69327, 0, 0, 256, 268436480, 4, 131328, 128, 524296, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 'Dream Fog'), +(69351, 0, 0, 256, 1160, 4, 196864, 8193, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Icy Blast Periodic Trigger'), +(69357, 0, 0, 0, 32768, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 29, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Pursuit Confusion'), +(69365, 0, 0, 536870912, 1024, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Choose Close Target'), +(69429, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 18, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Servant Summon Stalker'), +(69430, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 145, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Stalker summon Risen Servant'), +(69458, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 587, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Spawn Skeleton'), +(69514, 0, 0, 4194562, 1024, 4194304, 0, 0, 0, 0, 0, 0, 0, 0, 19, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 2, 262156, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'zzOLDShoot Gun'), +(69547, 0, 0, 150995200, 268435488, 0, 1048576, 128, 8, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, '100% Health'), +(69625, 0, 0, 689963392, 1192, 67125252, 268697664, 2176, 393224, 4096, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 135, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Child Vehicle to Parent Vehicle on Voluntary Player Eject'), +(69631, 0, 0, 256, 1024, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 4, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Spotlight'), +(69643, 0, 0, 150995200, 1056, 268435460, 197376, 8388736, 393224, 4096, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Get Targets'), +(69686, 0, 0, 256, 268435592, 4, 268435456, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 23, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 'Summon Ice Tomb'), +(69694, 0, 0, 256, 268435592, 4, 268435456, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 23, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 'Summon Ice Tomb'), +(69786, 0, 0, 384, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Immune All'), +(69807, 0, 0, 2843738128, 1056, 268976133, 1245184, 8388736, 393224, 12292, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 64, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Saber Lash'), +(69864, 0, 0, 696254848, 1056, 273170437, 269681152, 8388736, 393224, 4608, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 66, 6, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'PRK Test'), +(69868, 0, 0, 0, 0, 0, 0, 4160, 4, 0, 0, 0, 0, 0, 1, 0, 0, 101, 0, 0, 0, 0, 21, 166, 3, -1, 0, 0, 6, 28, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 46, 0, 0, 0, 0, 0, 0, 0, 296, 0, 0, 0, 0, 0, 0, 0, 0, 575, 36984, 0, 0, 64, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 'Carrying Beer Barrels [TEST]'), +(69895, 0, 0, 384, 1024, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Periodic Trigger Dummy (No Threat)'), +(69932, 0, 0, 328064, 1024, 0, 196608, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 36, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'zzOldAncestral Swiftness'), +(69983, 0, 0, 150995328, 0, 0, 268435456, 128, 0, 4096, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 28, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Necessary Roughness: Summon Master'), +(70023, 0, 0, 384, 0, 0, 0, 128, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Necessary Roughness: Shredder Blade Controller'), +(70030, 0, 0, 8388992, 0, 0, 0, 128, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Necessary Roughness: Force Cast on Abandon Vehicle'), +(70031, 0, 0, 384, 0, 0, 0, 128, 0, 4096, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Necessary Roughness: Quest Abandon'), +(70033, 0, 0, 256, 268435456, 0, 1048576, 192, 0, 1024, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Necessary Roughness: Summoned Bilgewater Buccaneer Invisibility'), +(70034, 0, 0, 689963264, 268436648, 335560704, 1048640, 2240, 393224, 4100, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Necessary Roughness: Steamwheedle Shark See Invisibility'), +(70055, 0, 0, 384, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Create Rocket Pack'); +INSERT INTO `spell_dbc` (`Id`, `Dispel`, `Mechanic`, `Attributes`, `AttributesEx`, `AttributesEx2`, `AttributesEx3`, `AttributesEx4`, `AttributesEx5`, `AttributesEx6`, `AttributesEx7`, `Stances`, `StancesNot`, `Targets`, `CastingTimeIndex`, `AuraInterruptFlags`, `ProcFlags`, `ProcChance`, `ProcCharges`, `MaxLevel`, `BaseLevel`, `SpellLevel`, `DurationIndex`, `RangeIndex`, `StackAmount`, `EquippedItemClass`, `EquippedItemSubClassMask`, `EquippedItemInventoryTypeMask`, `Effect1`, `Effect2`, `Effect3`, `EffectDieSides1`, `EffectDieSides2`, `EffectDieSides3`, `EffectRealPointsPerLevel1`, `EffectRealPointsPerLevel2`, `EffectRealPointsPerLevel3`, `EffectBasePoints1`, `EffectBasePoints2`, `EffectBasePoints3`, `EffectMechanic1`, `EffectMechanic2`, `EffectMechanic3`, `EffectImplicitTargetA1`, `EffectImplicitTargetA2`, `EffectImplicitTargetA3`, `EffectImplicitTargetB1`, `EffectImplicitTargetB2`, `EffectImplicitTargetB3`, `EffectRadiusIndex1`, `EffectRadiusIndex2`, `EffectRadiusIndex3`, `EffectApplyAuraName1`, `EffectApplyAuraName2`, `EffectApplyAuraName3`, `EffectAmplitude1`, `EffectAmplitude2`, `EffectAmplitude3`, `EffectMultipleValue1`, `EffectMultipleValue2`, `EffectMultipleValue3`, `EffectMiscValue1`, `EffectMiscValue2`, `EffectMiscValue3`, `EffectMiscValueB1`, `EffectMiscValueB2`, `EffectMiscValueB3`, `EffectTriggerSpell1`, `EffectTriggerSpell2`, `EffectTriggerSpell3`, `EffectSpellClassMaskA1`, `EffectSpellClassMaskA2`, `EffectSpellClassMaskA3`, `EffectSpellClassMaskB1`, `EffectSpellClassMaskB2`, `EffectSpellClassMaskB3`, `EffectSpellClassMaskC1`, `EffectSpellClassMaskC2`, `EffectSpellClassMaskC3`, `MaxTargetLevel`, `SpellFamilyName`, `SpellFamilyFlags1`, `SpellFamilyFlags2`, `SpellFamilyFlags3`, `MaxAffectedTargets`, `DmgClass`, `PreventionType`, `DmgMultiplier1`, `DmgMultiplier2`, `DmgMultiplier3`, `AreaGroupId`, `SchoolMask`, `Comment`) VALUES +(70067, 0, 0, 150995200, 268435488, 540672, 1048576, 192, 393224, 5632, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Fourth and Goal: Bilgewater Buccaneer Invisibility'), +(70068, 0, 0, 696254848, 1056, 273170437, 269681152, 8388736, 393224, 4608, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Fourth and Goal: Force Cast on Abandon Vehicle'), +(70073, 0, 0, 384, 136, 4, 256, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Frost Bomb Trigger'), +(70076, 0, 0, 687866240, 1056, 273170436, 268632576, 8388736, 393224, 4608, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Fourth and Goal: On Summon Force Cast'), +(70077, 0, 0, 696254848, 1056, 273170437, 268632576, 8388736, 393224, 4608, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Fourth and Goal: Quest Accept - A'), +(70094, 0, 0, 698352000, 1192, 340279301, 269681216, 8390785, 8781832, 4608, 58720256, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Fourth and Goal: Kill Credit to Player'), +(70096, 0, 0, 696254848, 1056, 273170437, 268632576, 8388736, 393224, 4608, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'zzOLDGive Sassy the News: Quest Complete'), +(70125, 0, 0, 696254720, 32, 540676, 268435456, 0, 393224, 4096, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 'Despawn Ice Tomb'), +(70159, 0, 0, 150995328, 268435488, 540676, 0, 128, 393224, 4096, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 'Ice Tomb'), +(70170, 0, 0, 696254720, 32, 268976132, 268632064, 8388608, 393224, 4100, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 'Clear Ice Tomb'), +(70202, 0, 0, 2843738112, 1056, 268976133, 1245184, 8388736, 393224, 12292, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Remove Hate'), +(70257, 0, 0, 2843738112, 1056, 268976133, 1245184, 8388736, 393224, 12292, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Despawn Ice Blocks'), +(70258, 0, 0, 0, 0, 4, 256, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Throw Saronite'), +(70264, 0, 0, 150995328, 32, 16384, 0, 192, 393224, 4096, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, '447: Character See Quest Invis 1 from Gasbot'), +(70317, 0, 0, 696254848, 1056, 273170437, 268632576, 8388736, 393224, 4608, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Life Savings: Quest Accept'), +(70328, 0, 0, 696254848, 1056, 273170437, 269681152, 8388736, 393224, 4608, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Life Savings: Hot Rod - Activate Knockback Trigger'), +(70370, 0, 0, 384, 1024, 4, 268435456, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Life Savings: General Trigger from Hot Rod to Sassy 01'), +(70373, 0, 0, 384, 1024, 4, 268435456, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Life Savings: Say Only To A Player from Sassy 01'), +(70375, 0, 0, 384, 1024, 4, 268435456, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Life Savings: General Trigger from Hot Rod to Sassy 02'), +(70376, 0, 0, 384, 1024, 4, 268435456, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Life Savings: Say Only To A Player from Sassy 02'), +(70377, 0, 0, 384, 1024, 4, 268435456, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Life Savings: Yell Only To A Player from Sassy 01'), +(70378, 0, 0, 384, 1024, 4, 268435456, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Life Savings: General Trigger from Hot Rod to Sassy 03'), +(70379, 0, 0, 384, 1024, 4, 268435456, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Life Savings: Say Only To A Player from Sassy 03'), +(70467, 0, 0, 687866240, 1056, 273170564, 268632576, 8388736, 393224, 4608, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Waltz Right In: Disguise AoE Pulse'), +(70489, 0, 0, 256, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Stun Self (Sitting)'), +(70490, 0, 0, 537133312, 136, 67108864, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Set Health'), +(70515, 0, 0, 384, 268435592, 4, 0, 0, 128, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Aggro Closest'), +(70647, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 9, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Vampiric Fiend'), +(70683, 0, 0, 536871296, 0, 0, 268435456, 128, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Capturing The Unknown: Quest Accept'), +(70709, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 9, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Vampiric Fiend'), +(70722, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Amplify Magic Visual'), +(70815, 0, 0, 384, 0, 4, 0, 0, 384, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Spawn Cultists'), +(70819, 0, 0, 256, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Fanatic'), +(70820, 0, 0, 256, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Adherent'), +(70891, 0, 0, 0, 524288, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Dark Ritual'), +(70987, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Coldflame Generator'), +(70989, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Coldflame Generator'), +(71156, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Plague Zombies'), +(71190, 0, 0, 256, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 31, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Recently Summoned'), +(71206, 0, 0, 384, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Touch of Insignificance'), +(71223, 0, 0, 687866240, 3104, 273170436, 268632576, 8388800, 393224, 4608, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, '<INTERNAL>Necessary Roughness: See Spawned Bilgewater Buccaneer Loot FX'), +(71245, 0, 0, 384, 268435456, 4, 196608, 128, 8, 16384, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Dummy Nuke'), +(71256, 0, 0, 696254848, 1056, 273170437, 269681152, 8388736, 393224, 4608, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Pirate Accuracy Increasing: Quest Phase 1'), +(71282, 0, 0, 536871296, 136, 4, 256, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 'Dominate Mind'), +(71287, 0, 0, 0, 1024, 4, 196608, 8388608, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Frozen Orb Primer'), +(71290, 0, 0, 536871168, 268435592, 4, 268435456, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 29, 6, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 'Dominate Mind'), +(71294, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Teleporter Enable Check'), +(71375, 0, 0, 256, 1160, 4, 196864, 8193, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Icy Blast Targeting'), +(71382, 0, 0, 256, 268435456, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 3, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 'Summon Icy Blast'), +(71384, 0, 0, 65536, 131072, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 1, 32, 4, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 4, 'zzOldConflagrate'), +(71394, 0, 0, 384, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Aggro Marked'), +(71395, 0, 0, 8388864, 0, 1, 0, 128, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 3, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'The Biggest Egg Ever: Summon The Biggest Egg Ever'), +(71444, 0, 0, 2843738112, 1056, 268976133, 1245184, 8388736, 393224, 12292, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 66, 'Clear Impaling Spear'), +(71517, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Lasher Pack Threat'), +(71521, 0, 0, 65536, 0, 0, 262144, 2048, 134218752, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 1, 1, 0, 5, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 36, 'zzOldHand of Gul''dan'), +(71666, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Friendly Melee Ring Replacement'), +(71667, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Honored Melee Ring Replacement'), +(71668, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Revered Melee Ring Replacement'), +(71669, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Exalted Melee Ring Replacement'), +(71670, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Friendly Tank Ring Replacement'), +(71671, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Honored Tank Ring Replacement'), +(71672, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Revered Tank Ring Replacement'), +(71673, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Exalted Tank Ring Replacement'), +(71674, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Friendly Healer Ring Replacement'), +(71675, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Honored Healer Ring Replacement'), +(71676, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Revered Healer Ring Replacement'), +(71677, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Exalted Healer Ring Replacement'), +(71678, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Friendly Caster Ring Replacement'), +(71679, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Honored Caster Ring Replacement'), +(71680, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Revered Caster Ring Replacement'), +(71681, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Exalted Caster Ring Replacement'), +(71890, 0, 0, 696254720, 32, 540676, 268435456, 0, 393224, 4096, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 96, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Kill Ice Tomb'), +(71894, 0, 0, 384, 268435456, 4, 196608, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 64, 'Dummy Nuke'), +(71896, 0, 0, 384, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, '[DND] Periodic'), +(71907, 0, 0, 272, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Severed Essence'), +(71916, 0, 0, 536871296, 1056, 272629764, 268632576, 8388608, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Irresistible Pool Pony: Lure Naga Hatchling'), +(71920, 0, 0, 536871296, 1024, 4, 268435456, 128, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Irresistible Pool Pony: Naga Hatchling Proximity Control - Effect'), +(71998, 0, 0, 384, 268435456, 0, 0, 64, 0, 1024, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Ace at the Ruins of Vashj''elan: Quest Invisibility 01'), +(72049, 0, 0, 696254848, 1056, 273170437, 269681152, 8388736, 393224, 4608, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Circle the Wagons, Er... Boats: Quest Phase 2'), +(72071, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Generic Two-way Threat'), +(72074, 0, 0, 687866240, 3104, 273170436, 197120, 8388800, 393224, 4096, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Surrender Or Else!: Character''s Force Reaction'), +(72075, 0, 0, 384, 0, 0, 0, 192, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Surrender Or Else!: Faceless of the Deep - Beam Controller'), +(72118, 0, 0, 384, 0, 0, 0, 192, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Surrender Or Else!: Ace''s Yell - Controller'), +(72119, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Surrender Or Else!: Ace''s Yell - Effect'), +(72291, 0, 0, 8388992, 268436480, 4, 459008, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Sindragosa - Clear Auras'), +(72300, 0, 0, 696254848, 1056, 273170437, 269681152, 8388736, 393224, 4608, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'BFGC - Despawn All'), +(72325, 0, 0, 536871168, 268435592, 4, 196864, 8388608, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Shadowstep Trigger'), +(72467, 0, 0, 536870912, 0, 0, 1048576, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Quest Clearing Aura'), +(72526, 0, 0, 536871296, 268435456, 4, 196608, 128, 0, 16793600, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 169, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 64, 'Dummy Nuke'), +(72532, 0, 0, 384, 268435456, 128, 268435456, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Pterrordax Scale Cleanup'), +(72533, 0, 0, 384, 268435456, 128, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 407, 7, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Shizzle''s Flyer: Quest Complete'), +(72562, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 'helen tool test'), +(72564, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 'helen test'), +(72603, 0, 0, 384, 0, 5, 268435456, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Body And Soul: Big Blue Bonfire'), +(72644, 0, 0, 8388992, 0, 1, 1048576, 192, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Body And Soul: Yngwie''s Body Dragging Controller'), +(72699, 0, 0, 0, 1024, 268435456, 196864, 8388608, 0, 4, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Random Charge Primer'), +(72779, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Access Progression Check'), +(72826, 0, 0, 384, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Create Pet Box'), +(72827, 0, 0, 8388864, 268435592, 5, 268435712, 128, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Achievement Credit'), +(72828, 0, 0, 8388992, 524288, 4, 0, 128, 384, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Achievement Check'), +(72845, 0, 0, 2843738112, 1056, 268976133, 1245184, 8388736, 393224, 12292, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Don''t Look Up'), +(72877, 0, 0, 8388608, 0, 4, 268435712, 128, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Clear Plague'), +(72893, 0, 0, 384, 268435456, 4, 196608, 0, 0, 16384, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 10, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Dummy Nuke'), +(72926, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Quest Accept: The Ballad of Maximillian'), +(72945, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Forcecast Summon and Despawn Devilsaur Queen'), +(72946, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Zombie Shooter at Lost Peak: Shoot - Cover'), +(72947, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Devilsaur Queen Kill Credit'), +(72955, 0, 0, 256, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Quest Complete: The Ballad of Maximillian'), +(72969, 0, 0, 696254848, 1056, 273170437, 268632576, 8388736, 393224, 4608, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, '<INTERNAL>Orgimmar Portal Teleport to Vashj''ir (Immortal Coil)'), +(73045, 0, 0, 696254848, 1056, 540677, 268566784, 128, 393224, 4096, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Marrowgar Attempt'), +(73047, 0, 0, 696254848, 1056, 540677, 268566784, 128, 393224, 4100, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Deathwhisper Attempt'), +(73048, 0, 0, 696254848, 1056, 540677, 268566784, 128, 393224, 4100, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Gunship Attempt'), +(73049, 0, 0, 696254848, 1056, 540677, 268566784, 128, 393224, 4100, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Deathbringer Attempt'), +(73050, 0, 0, 696254848, 1056, 540677, 268566784, 128, 393224, 4100, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Festergut Attempt'), +(73051, 0, 0, 696254848, 1056, 540677, 268566784, 128, 393224, 4100, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Rotface Attempt'), +(73052, 0, 0, 150995328, 1056, 540677, 268566784, 128, 393224, 4100, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Blood Princes Attempt'), +(73053, 0, 0, 696254848, 1056, 540677, 268566784, 128, 393224, 4100, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Valithria Attempt'), +(73054, 0, 0, 696254848, 1056, 540677, 268632320, 128, 393224, 4100, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Putricide Attempt'), +(73055, 0, 0, 696254848, 1056, 540677, 268566784, 128, 393224, 4096, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Blood Queen Attempt'), +(73056, 0, 0, 696254848, 1056, 540677, 268566784, 128, 393224, 4100, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Sindragosa Attempt'), +(73057, 0, 0, 696254848, 1056, 540677, 268566784, 128, 393224, 4100, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Lich King Attempt'), +(73083, 0, 0, 536871296, 1024, 4194304, 0, 128, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Become Random Undead'), +(73088, 0, 0, 536871296, 0, 4, 268435456, 128, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Awaken Undead'), +(73089, 0, 0, 536871296, 0, 4194308, 268435456, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Forcecast Awaken Undead'), +(73091, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 347, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Civilian'), +(73092, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 347, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Recruit'), +(73095, 0, 0, 671089024, 1056, 5, 268435456, 128, 393224, 512, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Lilian Mirror Credit'), +(73096, 0, 0, 679477632, 1056, 5, 268435456, 128, 393224, 512, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Scarlet Cannibalize Credit and Quest Launch'), +(73098, 0, 0, 536871168, 268435456, 0, 0, 2048, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Stun Self'), +(73114, 0, 0, 159383936, 1056, 540673, 0, 128, 393224, 4608, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Murloc Returned Trigger'), +(73115, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Murloc Returned Kill Credit'), +(73126, 0, 0, 384, 268435456, 0, 0, 64, 0, 5120, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Volcanoth!: Quest Invisibility 01'), +(73138, 0, 0, 384, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Borean Tundra - Valiance Keep Flavor - Queue - Reply Profession'), +(73139, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Borean Tundra - Valiance Keep Flavor - Queue - Assign Profession - Soldier'), +(73140, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Borean Tundra - Valiance Keep Flavor - Queue - Assign Profession - Civilian'), +(73146, 0, 0, 696254848, 1056, 273170437, 268632576, 8388608, 393224, 4608, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Old Friends: Sassy Yell 01'), +(73152, 0, 0, 687866240, 1056, 540676, 268435456, 128, 393224, 4608, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Worgen Infiltrator - Force Player Cast'), +(73157, 0, 0, 536871168, 0, 4, 268435456, 0, 0, 0, 0, 0, 0, 0, 190, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Instakill Other'), +(73160, 0, 0, 696254848, 1056, 273170437, 1245696, 8388736, 393224, 4608, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Launch Worgen Quest'), +(73161, 0, 0, 256, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Worgen Infiltrator Invisiblity - Quest Invis 1'), +(73168, 0, 0, 256, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Worgen Infiltrator - Stealth Trail Periodic'), +(73177, 0, 0, 2496, 0, 0, 0, 0, 0, 1024, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Call of the Shoveltusk <DND>'), +(73178, 0, 0, 2496, 0, 0, 0, 0, 0, 1024, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Call of the Shoveltusk <DND>'), +(73202, 0, 0, 696254848, 1056, 273170565, 268632576, 8388736, 393224, 4608, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Old Friends: Switch Seats'), +(73218, 0, 0, 384, 268435456, 0, 0, 0, 0, 1024, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Lilian Caged Kill Credit'); +INSERT INTO `spell_dbc` (`Id`, `Dispel`, `Mechanic`, `Attributes`, `AttributesEx`, `AttributesEx2`, `AttributesEx3`, `AttributesEx4`, `AttributesEx5`, `AttributesEx6`, `AttributesEx7`, `Stances`, `StancesNot`, `Targets`, `CastingTimeIndex`, `AuraInterruptFlags`, `ProcFlags`, `ProcChance`, `ProcCharges`, `MaxLevel`, `BaseLevel`, `SpellLevel`, `DurationIndex`, `RangeIndex`, `StackAmount`, `EquippedItemClass`, `EquippedItemSubClassMask`, `EquippedItemInventoryTypeMask`, `Effect1`, `Effect2`, `Effect3`, `EffectDieSides1`, `EffectDieSides2`, `EffectDieSides3`, `EffectRealPointsPerLevel1`, `EffectRealPointsPerLevel2`, `EffectRealPointsPerLevel3`, `EffectBasePoints1`, `EffectBasePoints2`, `EffectBasePoints3`, `EffectMechanic1`, `EffectMechanic2`, `EffectMechanic3`, `EffectImplicitTargetA1`, `EffectImplicitTargetA2`, `EffectImplicitTargetA3`, `EffectImplicitTargetB1`, `EffectImplicitTargetB2`, `EffectImplicitTargetB3`, `EffectRadiusIndex1`, `EffectRadiusIndex2`, `EffectRadiusIndex3`, `EffectApplyAuraName1`, `EffectApplyAuraName2`, `EffectApplyAuraName3`, `EffectAmplitude1`, `EffectAmplitude2`, `EffectAmplitude3`, `EffectMultipleValue1`, `EffectMultipleValue2`, `EffectMultipleValue3`, `EffectMiscValue1`, `EffectMiscValue2`, `EffectMiscValue3`, `EffectMiscValueB1`, `EffectMiscValueB2`, `EffectMiscValueB3`, `EffectTriggerSpell1`, `EffectTriggerSpell2`, `EffectTriggerSpell3`, `EffectSpellClassMaskA1`, `EffectSpellClassMaskA2`, `EffectSpellClassMaskA3`, `EffectSpellClassMaskB1`, `EffectSpellClassMaskB2`, `EffectSpellClassMaskB3`, `EffectSpellClassMaskC1`, `EffectSpellClassMaskC2`, `EffectSpellClassMaskC3`, `MaxTargetLevel`, `SpellFamilyName`, `SpellFamilyFlags1`, `SpellFamilyFlags2`, `SpellFamilyFlags3`, `MaxAffectedTargets`, `DmgClass`, `PreventionType`, `DmgMultiplier1`, `DmgMultiplier2`, `DmgMultiplier3`, `AreaGroupId`, `SchoolMask`, `Comment`) VALUES +(73219, 0, 0, 696254848, 1056, 273170437, 269681152, 8388736, 393224, 4608, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Tirisfal: Annihilate the Worgen - Quest Complete'), +(73221, 0, 0, 384, 268435456, 4, 268435456, 0, 0, 1024, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Tirisfal: Beat Them, Then Eat Them - Quest Complete'), +(73252, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Kill'), +(73342, 0, 0, 384, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, '1 Health'), +(73414, 0, 0, 384, 268435456, 0, 0, 64, 0, 5120, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Mine Disposal, The Goblin Way: Quest Invisibility 01'), +(73420, 0, 0, 2835349888, 268438528, 4, 0, 0, 0, 1024, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 13, 0, -1, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 19, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 'Ambassador Gaines TEST'), +(73421, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Deathknell Class Training - Quest Complete'), +(73423, 0, 0, 384, 0, 0, 0, 128, 0, 0, 0, 0, 0, 0, 190, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Quest Accept: Beat Them, Then Eat Them'), +(73435, 0, 0, 696254848, 268436512, 273170437, 1245696, 8388736, 393224, 5632, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Ever So Lonely: Quest Complete'), +(73436, 0, 0, 696254848, 268436512, 273170437, 269681152, 8388736, 393224, 5632, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Ever So Lonely: Objective Completion Logic'), +(73451, 0, 0, 384, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Lilian Voss Daughterhood Trigger'), +(73452, 0, 0, 384, 268435456, 0, 0, 0, 0, 1024, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Lilian Voss Daughterhood Aura'), +(73454, 0, 0, 696254848, 1056, 4734981, 269484032, 128, 393224, 4608, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Benedictus Voss Event KC'), +(73480, 0, 0, 384, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Instakill Vehicle Passenger 2'), +(73483, 0, 0, 256, 268435456, 0, 0, 128, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'The Pride Of Kezan: Aggro Aura - Controller'), +(73484, 0, 0, 536871168, 0, 4, 0, 128, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'The Pride Of Kezan: Aggro Aura - Effect'), +(73513, 0, 0, 8388992, 0, 0, 0, 128, 0, 0, 0, 0, 0, 0, 190, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'A Daughter''s Embrace: Quest Accept'), +(73533, 0, 0, 687866240, 3108, 273170436, 268632576, 8388800, 393224, 4608, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 36, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, '<INTERNAL>Fourth and Goal: Change Seats Spacer'), +(73553, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Borean Tundra - Valiance Keep Flavor - Queue - Assign Profession - City'), +(73567, 0, 0, 384, 268435456, 0, 0, 64, 0, 5120, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Kaja''Cola Gives You IDEAS! (TM): Quest Dungeon Set 2.0 Invisibility'), +(73584, 0, 0, 134479872, 1024, 536870916, 536870912, 32768, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 81, 81, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 16, 'zzOLDMind Spike'), +(73585, 0, 0, 134479872, 1024, 536870916, 537133056, 32832, 0, 0, 1024, 0, 0, 0, 1, 0, 0, 101, 0, 0, 1, 1, 29, 13, 100, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 48, 'zzOLDMind Spike'), +(73594, 0, 0, 384, 268435456, 0, 0, 64, 0, 5120, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Free Their Minds: Quest Invisibility 01 - Ace'), +(73596, 0, 0, 384, 268435456, 0, 0, 64, 0, 5120, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Free Their Minds: Quest Invisibility 02 - Izzy'), +(73598, 0, 0, 384, 268435456, 0, 0, 64, 0, 5120, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Free Their Minds: Quest Invisibility 03 - Gobber'), +(73618, 0, 0, 687866240, 1056, 273170436, 268632576, 8388736, 393224, 4608, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Close Escort: Catapult Movement Controller - Periodic'), +(73653, 0, 0, 696254848, 1056, 273170437, 269681152, 8388736, 393224, 4608, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Orc Class Ability Training Credit'), +(73656, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Rwag''s Stealth Detect Trigger'), +(73657, 0, 0, 384, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 2, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Rwag''s Stealth Detect Aura'), +(73663, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Valley of Trials Class Training - Quest Complete'), +(73665, 0, 0, 262400, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'zzOldSummon Sunwalker Kodo'), +(73666, 0, 0, 262400, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'zzOldSummon Exarch''s Elekk'), +(73675, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Scorpid Threat'), +(73676, 0, 0, 696254848, 1056, 273170437, 269681152, 8388736, 393224, 4608, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Poison Extraction KC'), +(73697, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Forcecast Summon Durotar Riding Wolf'), +(73707, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Player Opens Den Cage'), +(73713, 0, 0, 696254848, 268436512, 273170437, 269681152, 8388736, 393224, 4608, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Grunt Groan Aura'), +(73717, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Launch Loss Reduction'), +(73732, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 85, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Drowning Descent'), +(73743, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 190, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Teleport to Razor Hill Guard Tower'), +(73750, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Durotar Watershed Quest Kill Credit 1'), +(73751, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Durotar Watershed Quest Kill Credit 2'), +(73752, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Durotar Watershed Quest Kill Credit 3'), +(73753, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Durotar Watershed Quest Kill Credit 4'), +(73754, 0, 0, 384, 268436480, 0, 0, 0, 524288, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Durotar Watershed - Quest Completion Checker'), +(73842, 0, 0, 696254848, 1056, 273170437, 269681152, 8388736, 393224, 4608, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Teleport and Cancel Hunting'), +(73849, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'The Wolf - Periodic Kodo Trigger'), +(73850, 0, 0, 384, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'The Wolf - Periodic Kodo Aura'), +(73870, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'A Shaman''s Fable - Quest Credit'), +(73875, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'The Wolf - Approach Kodo'), +(73885, 0, 0, 384, 0, 0, 4, 128, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Quest Accept: A Shaman''s Fable'), +(73895, 0, 0, 384, 268435456, 0, 0, 64, 0, 1024, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Good-bye, Sweet Oil: Quest Invisibility'), +(73910, 0, 0, 65536, 0, 0, 0, 536870912, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 86, 82, 82, 31, 135, 0, -1, 0, 0, 2, 6, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 6, 6, 0, 0, 0, 0, 0, 0, 0, 101, 3, 0, 0, 2000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 0, 4, 'Ron''s Test Fireball'), +(73915, 0, 0, 696254848, 1056, 273170437, 268632576, 8388736, 393224, 4608, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Kill Chip Endale Quests: Quest Complete'), +(73957, 0, 0, 256, 1024, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Prophecies of Doom Quest Credit'), +(73962, 0, 0, 696254848, 1056, 273170437, 268632576, 8388736, 393224, 4608, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Kill Candy Cane Quests: Quest Complete'), +(73965, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 5, 1, 0, -1, 0, 0, 28, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 73, 0, 0, 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6368, 0, 0, 1343, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 'Summon Cat Minion'), +(73968, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 5, 1, 0, -1, 0, 0, 28, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 73, 0, 0, 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 39570, 0, 0, 1343, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 'Summon Bunny Minion'), +(74026, 0, 0, 384, 268435456, 0, 0, 64, 0, 1024, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'The Slave Pits: Quest Invisibility 01'), +(74027, 0, 0, 696254848, 1056, 273170437, 268632576, 8388736, 393224, 4608, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, '<INTERNAL>Orgimmar Portal Teleport to Vashj''ir (Legion''s Rest)'), +(74063, 1, 0, 65536, 0, 0, 0, 0, 0, 2097152, 0, 0, 0, 0, 231, 0, 0, 0, 0, 74, 70, 70, 105, 4, 0, -1, 0, 0, 6, 2, 6, 0, 51, 0, 0, 3.8, 0, -40, 629, 0, 11, 0, 0, 6, 6, 6, 0, 0, 0, 0, 0, 0, 33, 0, 3, 0, 0, 3000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 0, 16, 'Ron''s Test Frostbolt'), +(74082, 0, 0, 256, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 36, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Drake Whisper'), +(74102, 0, 0, 687866240, 1056, 273170436, 268632576, 8388736, 393224, 4608, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Close Escort: Bunny to Character - Ambush A'), +(74125, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 6, 3, 0, -1, 0, 0, 28, 28, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 18, 18, 0, 78, 78, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 39641, 39645, 0, 496, 496, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 'Summon Creator Spell Test'), +(74152, 0, 0, 65536, 268435596, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 32, 5, 0, -1, 0, 0, 27, 0, 0, 0, 0, 0, 0, 0, 0, 2000, 0, 0, 0, 0, 0, 18, 0, 0, 28, 0, 0, 23, 0, 0, 3, 0, 0, 2000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 64, 'Astral Rain'), +(74167, 0, 0, 687866240, 1056, 273170436, 268632576, 8388736, 393224, 4608, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Up to the Citadel: Cast from Gossip - Alliance'), +(74210, 0, 0, 384, 0, 0, 262144, 128, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Item - Shaman T10 Elemental 4P Effect'), +(74306, 0, 0, 696254848, 0, 16389, 256, 128, 131080, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Ooze + Gas Variable Clear'), +(74324, 0, 0, 256, 1024, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Cultist Kagarn Credit'), +(74328, 0, 0, 256, 1024, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Cultist Agtar Credit'), +(74329, 0, 0, 256, 1024, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Cultist Tokka Credit'), +(74330, 0, 0, 256, 1024, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Cultist Rokaga Credit'), +(74397, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 7, 0, -1, 0, 0, 164, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 25, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 73876, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 'Extinguish Flames'), +(74400, 0, 0, 256, 1024, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Cho''Gall Speech Credit'), +(74446, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 'Temp Tentacle'), +(74479, 0, 0, 540082432, 1160, 67108864, 64, 2048, 8388608, 0, 58720256, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'To The Summit: Unlearned Taxi from Camp Mojache'), +(74487, 0, 0, 384, 268959744, 0, 0, 0, 384, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 36, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, '[DND] Get Aggro'), +(74488, 0, 0, 384, 268435456, 0, 0, 0, 384, 1024, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 36, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, '[DND] Get Aggro Aura'), +(74510, 0, 0, 384, 268435456, 0, 1048576, 4096, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Is Clone'), +(74512, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Copy Health'), +(74576, 0, 0, 553648512, 268959880, 132, 262144, 2048, 392, 4096, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 36, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, '[DND] Get Aggro'), +(74577, 0, 0, 553648512, 268435456, 0, 268435456, 2048, 8389000, 1024, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 36, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, '[DND] Get Aggro Aura'), +(74579, 0, 0, 256, 1024, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Cultist Lethelyn Credit'), +(74581, 0, 0, 256, 1024, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Cultist Kaima Credit'), +(74582, 0, 0, 256, 1024, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Cultist Wyman Credit'), +(74583, 0, 0, 256, 1024, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Cultist Orlunn Credit'), +(74584, 0, 0, 256, 1024, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'East Zeppelin Tower Credit'), +(74585, 0, 0, 256, 1024, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'West Zeppelin Tower Credit'), +(74586, 0, 0, 256, 1024, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Razor Hill Credit'), +(74612, 0, 0, 696254848, 1056, 273170437, 269681152, 8388736, 393224, 4608, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Force Player Twilight Sermon Start Event Horde'), +(74615, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Force Player Twilight Sermon Start Event Alliance'), +(74622, 0, 0, 589824, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 20, 20, 0, 6, 0, -1, 0, 0, 2, 0, 0, 6, 0, 0, 0, 0, 0, 23, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0.7, 0, 0, 0, 8, 'Chain Lightning'), +(74623, 0, 0, 65536, 131072, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 15, 6, 6, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 64, 'zzOldConjure Food'), +(74624, 0, 0, 65536, 131072, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 28, 28, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 64, 'zzOldConjure Mana Gem'), +(74626, 0, 0, 65536, 131072, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 13, 4, 4, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 64, 'zzOldConjure Water'), +(74627, 2, 0, 67108864, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 3, 1, 0, -1, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 'Debug - Dispel Me'), +(74631, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Initialize Flame Patch'), +(74638, 0, 0, 256, 1160, 0, 196864, 8193, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Meteor Strike Targeting'), +(74680, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 9, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Meteor Strike'), +(74681, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 9, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Meteor Strike'), +(74682, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 9, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Meteor Strike'), +(74683, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 9, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Meteor Strike'), +(74687, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 9, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Meteor Strike'), +(74688, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 9, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Meteor Strike'), +(74689, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 9, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Meteor Strike'), +(74696, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Spread Meteor Strike'), +(74703, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Initialize Meteor Strike'), +(74714, 0, 0, 536871296, 0, 0, 268435456, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 11, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Meteor Strike Spread'), +(74715, 0, 0, 384, 524288, 0, 268435456, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 137, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Meteor Strike Spread'), +(74775, 0, 0, 256, 1024, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Valley of Heroes Credit'), +(74776, 0, 0, 256, 1024, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Westbrook Credit'), +(74777, 0, 0, 256, 1024, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Goldshire Credit'), +(74778, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Friendly Strength Ring Replacement'), +(74779, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Honored Strength Ring Replacement'), +(74782, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Revered Strength Ring Replacement'), +(74784, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Exalted Strength Ring Replacement'), +(74816, 0, 0, 384, 268435456, 4, 196608, 0, 392, 16384, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 181, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Dummy Nuke'), +(74818, 0, 0, 2432, 268435456, 0, 67108864, 0, 0, 0, 1073741824, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Damage Counter'), +(74821, 0, 0, 536871296, 268435456, 4, 262144, 0, 0, 8192, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Reset Check'), +(74822, 0, 0, 384, 268435456, 4, 0, 0, 0, 8192, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Reset Check'), +(74823, 0, 0, 256, 268437504, 4, 268435456, 128, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Compare Damage Periodic'), +(74824, 0, 0, 256, 268437504, 4, 268435456, 128, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Compare Damage'), +(74839, 1, 0, 159383552, 40, 540681, 1074790400, 2752672, 393224, 135680, 536936449, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 32, 'zzOldModgud''s Unused'), +(74860, 0, 32, 327696, 1049088, 0, 1024, 8, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 79, 79, 0, 2, 0, 2, 173555, 0, 2, 3, 0, 255, 0, 0, 0, 0, 0, 126, 0, 0, 0, 0, 0, 6, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 1, 1, 0, 0, 1, 'Ron''s Test Eviscerate'), +(74887, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Initialize Consumption'), +(74923, 0, 0, 384, 268436480, 4, 131328, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Random Aggro'), +(75012, 0, 0, 696254848, 3104, 273170437, 269681152, 8388736, 393224, 4608, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 9, 6, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Brute Enforcer: Random Say Controller Aura'), +(75027, 0, 0, 696254464, 1056, 273170437, 269681152, 8388736, 393224, 4608, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 'Ron Quest Target Test'), +(75032, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Create Wooly White Rhino'), +(75034, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Create Blazing Hippogryph'), +(75065, 0, 0, 400, 512, 4, 131072, 0, 8, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Aggro'), +(75069, 0, 0, 696254464, 1056, 268976133, 1245184, 8388736, 393224, 4100, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 260, 0, 0, 0, 0, 0, 0, 0, 0, 748, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 'Test Skybox Effect'), +(75074, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Twilight Realm'), +(75084, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Create Instant Statue Pedestal'), +(75101, 0, 0, 384, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Create Landro''s Gift Box'), +(75130, 0, 0, 696254848, 3104, 273170437, 269681152, 8388800, 393224, 4608, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'The New You: Quest Accept'), +(75131, 0, 0, 687866240, 1056, 273170436, 268632576, 8388736, 917512, 4612, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Fourth and Goal: Deathwing Sound 3'), +(75132, 0, 0, 696254848, 1056, 273170437, 269681152, 8388736, 393224, 4608, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'The New You: Cancel Whisper Controller'), +(75162, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Create Ethereal Portal'), +(75170, 0, 0, 0, 0, 0, 0, 128, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 8, 135, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 2, 'zzOldLightweave'), +(75173, 0, 0, 0, 0, 0, 0, 128, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 8, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 'zzOldDarkglow'), +(75176, 0, 0, 0, 0, 0, 0, 128, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 8, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'zzOldSwordguard Embroidery'), +(75191, 0, 0, 384, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Create Paint Bomb'), +(75193, 0, 0, 696254848, 1056, 273170437, 269681152, 8388736, 393224, 4608, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Baron Geddon Credit Dummy'), +(75231, 0, 0, 540082432, 1160, 67108864, 64, 2048, 8388608, 0, 58720256, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'To The Summit: Unlearned Taxi from Mudsprocket'), +(75240, 0, 0, 540082432, 1160, 67108864, 64, 2048, 8388608, 0, 58720256, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'To New Thalanaar: Unlearned Taxi from Mudsprocket'); +INSERT INTO `spell_dbc` (`Id`, `Dispel`, `Mechanic`, `Attributes`, `AttributesEx`, `AttributesEx2`, `AttributesEx3`, `AttributesEx4`, `AttributesEx5`, `AttributesEx6`, `AttributesEx7`, `Stances`, `StancesNot`, `Targets`, `CastingTimeIndex`, `AuraInterruptFlags`, `ProcFlags`, `ProcChance`, `ProcCharges`, `MaxLevel`, `BaseLevel`, `SpellLevel`, `DurationIndex`, `RangeIndex`, `StackAmount`, `EquippedItemClass`, `EquippedItemSubClassMask`, `EquippedItemInventoryTypeMask`, `Effect1`, `Effect2`, `Effect3`, `EffectDieSides1`, `EffectDieSides2`, `EffectDieSides3`, `EffectRealPointsPerLevel1`, `EffectRealPointsPerLevel2`, `EffectRealPointsPerLevel3`, `EffectBasePoints1`, `EffectBasePoints2`, `EffectBasePoints3`, `EffectMechanic1`, `EffectMechanic2`, `EffectMechanic3`, `EffectImplicitTargetA1`, `EffectImplicitTargetA2`, `EffectImplicitTargetA3`, `EffectImplicitTargetB1`, `EffectImplicitTargetB2`, `EffectImplicitTargetB3`, `EffectRadiusIndex1`, `EffectRadiusIndex2`, `EffectRadiusIndex3`, `EffectApplyAuraName1`, `EffectApplyAuraName2`, `EffectApplyAuraName3`, `EffectAmplitude1`, `EffectAmplitude2`, `EffectAmplitude3`, `EffectMultipleValue1`, `EffectMultipleValue2`, `EffectMultipleValue3`, `EffectMiscValue1`, `EffectMiscValue2`, `EffectMiscValue3`, `EffectMiscValueB1`, `EffectMiscValueB2`, `EffectMiscValueB3`, `EffectTriggerSpell1`, `EffectTriggerSpell2`, `EffectTriggerSpell3`, `EffectSpellClassMaskA1`, `EffectSpellClassMaskA2`, `EffectSpellClassMaskA3`, `EffectSpellClassMaskB1`, `EffectSpellClassMaskB2`, `EffectSpellClassMaskB3`, `EffectSpellClassMaskC1`, `EffectSpellClassMaskC2`, `EffectSpellClassMaskC3`, `MaxTargetLevel`, `SpellFamilyName`, `SpellFamilyFlags1`, `SpellFamilyFlags2`, `SpellFamilyFlags3`, `MaxAffectedTargets`, `DmgClass`, `PreventionType`, `DmgMultiplier1`, `DmgMultiplier2`, `DmgMultiplier3`, `AreaGroupId`, `SchoolMask`, `Comment`) VALUES +(75273, 0, 0, 540082432, 1160, 67108864, 64, 2048, 8388608, 0, 58720256, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'To New Thalanaar: Unlearned Taxi from Shadebough'), +(75285, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Attack Toshe'), +(75287, 0, 0, 65568, 1024, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'zzOLDEmbroidered Shirt'), +(75371, 0, 0, 536871168, 268435592, 4, 268894208, 128, 8, 1024, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 5, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Fixate'), +(75507, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Twilight Mending'), +(75517, 0, 0, 256, 268435456, 0, 1048576, 128, 8, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 245, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 'Tumultuous Earthstorm'), +(75549, 0, 0, 256, 1160, 4, 131328, 128, 524296, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 'Summon Quicksand'), +(75550, 0, 0, 256, 0, 4, 262144, 128, 524296, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 18, 6, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Quicksand'), +(75568, 0, 0, 537133312, 136, 67108864, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Set Health'), +(75612, 0, 0, 545259776, 268435456, 4, 268435456, 128, 0, 16777224, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Clear Crumbling Ruin'), +(75621, 0, 0, 256, 0, 4, 262144, 128, 8, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 6, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Seedling Pod'), +(75628, 0, 0, 696254848, 1056, 273170437, 269681152, 8388736, 393224, 4608, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Quiet the Cannons: On Interact'), +(75646, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 27, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Seat Swap Timer'), +(75688, 0, 0, 256, 0, 4, 262144, 128, 8, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 6, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Seedling Pod'), +(75695, 0, 0, 256, 0, 4, 262144, 128, 8, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 6, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Spore'), +(75696, 0, 0, 384, 268435456, 0, 0, 64, 0, 1024, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'In The Outhouse: Quest Invisibility 01'), +(75708, 0, 0, 8388864, 0, 4, 262144, 128, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Energize'), +(75709, 0, 0, 696254848, 268436512, 273170437, 269681152, 8388800, 393224, 5632, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'In The Outhouse: See Quest Invisibility 01'), +(75748, 0, 0, 256, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Cue Intro Message'), +(75749, 0, 0, 256, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Cue Wave 1 Message'), +(75758, 0, 0, 150995328, 1056, 540676, 268435456, 129, 393224, 4608, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Cue Flying Charge'), +(75769, 0, 0, 256, 0, 4, 262144, 128, 8, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 6, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Bloodpetal Blossom Visual'), +(75771, 0, 0, 256, 0, 4, 262144, 128, 8, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 6, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Bloodpetal Blossom'), +(75778, 0, 0, 256, 1024, 4, 196608, 8388736, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 305, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, '[DND] Summon Exploder'), +(75791, 0, 0, 256, 0, 4, 262144, 128, 8, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 6, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Bloodpetal Sprout'), +(75796, 0, 0, 603979776, 0, 0, 536870912, 0, 0, 536870912, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 83, 83, 18, 162, 0, -1, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0, 0, 0, 0, 0, 89, 0, 0, 1000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 'QA test % health dot'), +(75806, 0, 0, 464, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 16, 10, 0, 0, 1, 1, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'zzOldGrand Crusader'), +(75837, 0, 0, 159383808, 1056, 268435460, 197376, 8388736, 393224, 4096, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 5, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, '[DND] Summon'), +(75838, 0, 0, 150995200, 1056, 268435460, 197120, 8388736, 393224, 4096, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, '[DND] Killed'), +(75839, 0, 0, 0, 0, 0, 268435456, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 12, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, '[DND] Summon Restriction'), +(75841, 0, 0, 150995328, 1056, 540676, 268435456, 129, 393224, 4608, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Cue Flying Charge [Combat]'), +(75853, 0, 0, 150995200, 1056, 268435460, 197376, 8388736, 393224, 4096, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, '[DND] Init'), +(75855, 0, 0, 536871168, 1024, 268435460, 268894720, 8390656, 2097152, 16777216, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, '[DND] Spawn'), +(75880, 0, 0, 536873344, 0, 0, 268435456, 0, 128, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 27, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Spawn Living Embers'), +(75881, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Living Ember'), +(75914, 0, 0, 2112, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Call of the Shoveltusk (Test Copy)'), +(75944, 0, 0, 536871296, 1024, 4, 269484032, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 39, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 'zzOldBrain Freeze Marker'), +(75977, 0, 0, 696254848, 1056, 273170437, 269681152, 8388736, 393224, 4608, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Pirate Accuracy Increasing: Force Cast from Gossip & Kill Credit - Alliance'), +(75979, 0, 0, 150995328, 268436512, 540676, 268435456, 0, 393224, 4096, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 28, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, '[DND] Talk'), +(75980, 0, 0, 150995328, 268436512, 540676, 268435456, 0, 393224, 4096, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, '[DND] Talk to Player'), +(75985, 0, 0, 150995328, 268436512, 540676, 268435456, 0, 393224, 4096, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, '[DND] Talk to Player'), +(75987, 0, 0, 256, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Cue Wave 2 Message'), +(75995, 0, 0, 256, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Cue Wave 3 Message'), +(75997, 0, 0, 696254848, 1056, 273170437, 269681152, 8388736, 393224, 4608, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Pirate Accuracy Increasing: Seat Chooser'), +(76000, 0, 0, 547357056, 1160, 67108868, 268435520, 2176, 8388608, 0, 62914560, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Pirate Accuracy Increasing: AICast on Enter Seat'), +(76009, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Compound Threat [P5]'), +(76019, 0, 0, 536871040, 268436480, 4, 64, 0, 0, 4, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, '[DND] Summon'), +(76023, 0, 0, 696254848, 1056, 273170437, 269681152, 8388736, 393224, 4608, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Circle the Wagons, Er... Boats: Seat Chooser'), +(76049, 0, 0, 256, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 14, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Cue Summoned Deer to Give Credit'), +(76050, 0, 0, 256, 0, 4, 268435456, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 14, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Force Player to Cue Deer'), +(76073, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Compound Threat [P6]'), +(76087, 0, 0, 256, 268435456, 0, 0, 0, 32, 1024, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 36, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Tornado'), +(76112, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 3, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Erunak''s Periodic'), +(76163, 0, 0, 696254720, 1056, 273170437, 269681152, 8388736, 393224, 70144, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 37, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Pirate Accuracy Increasing: Eject - Master'), +(76169, 0, 0, 696254848, 1056, 273170437, 269681152, 8388736, 393224, 4608, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Circle the Wagons, Er... Boats: Boss Whisper Controller'), +(76199, 0, 0, 64, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, -6, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 187, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 'Creature Critical Immunity'), +(76210, 0, 0, 159383808, 1056, 268435460, 197120, 8388736, 393224, 4096, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, '[DND] Killed'), +(76224, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Flame Wall'), +(76243, 0, 0, 384, 1024, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 16, 100, 1, 0, 0, 0, 28, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'zzOldPestilence'), +(76254, 0, 0, 553648512, 268959880, 132, 262144, 2048, 392, 4096, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 36, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, '[DND] Get Aggro'), +(76257, 0, 0, 256, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'See Invis'), +(76323, 0, 0, 384, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Clear Passenger'), +(76358, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 80, 80, 35, 1, 0, -1, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 226, 0, 0, 250, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 4, 'Helios Burn'), +(76360, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 64, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 2, 0, 0, 1001, 0, 0, 0, 0, 0, 4499, 0, 0, 0, 0, 0, 16, 0, 0, 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 4, 'Helios Burn'), +(76374, 0, 0, 256, 0, 4, 262144, 128, 8, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 6, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Meteor'), +(76383, 0, 0, 2843738112, 1056, 268976133, 1245184, 8388736, 393224, 12292, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Ragnaros Suppressed'), +(76388, 0, 0, 0, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, '[DND] Buff'), +(76389, 0, 0, 256, 2048, 0, 0, 4096, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 1, 21, 1, 0, -1, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 23, 0, 0, 1000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 52477, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 4, 'DEBUG - Aura State Kit Bug'), +(76407, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 18, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Toss Fish'), +(76408, 0, 0, 64, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, '10000% Threat'), +(76475, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 3, 0, -1, 0, 0, 132, 6, 0, 0, 0, 0, 0, 0, 0, 1000, 0, 0, 0, 0, 0, 25, 25, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 22928, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 'Ron''s Test Spell #6'), +(76476, 0, 0, 2843738112, 1056, 268976133, 1245184, 8388736, 393224, 12292, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Player Count++'), +(76480, 0, 0, 256, 136, 4, 262400, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 568, 1, 0, -1, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, -90, 0, 0, 0, 0, 0, 22, 0, 0, 15, 0, 0, 0, 0, 0, 303, 0, 0, 0, 0, 0, 0, 0, 0, 22, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 'Glancing Blows'), +(76481, 0, 0, 262144, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 0, 0, 0, 0, 0, 0, 0, 9, 1, 0, -1, 0, 0, 6, 6, 6, 0, 0, 0, 0, 0, 0, 0, 0, 74946, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 23, 26, 25, 1000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 76480, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 1, 'Personal Phalanx'), +(76495, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Accident'), +(76549, 0, 0, 150995072, 0, 268435456, 196608, 1048576, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 28, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'zzOLDMana Adept'), +(76552, 0, 0, 256, 268435456, 0, 268435456, 128, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 593, 165, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Windwalk Summon'), +(76554, 0, 0, 256, 0, 0, 268435456, 128, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 593, 165, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Windwalk Summon'), +(76556, 0, 0, 256, 268437504, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 65, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Windwalk Summon Trigger'), +(76564, 0, 0, 0, 0, 4, 0, 0, 0, 0, 33554432, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Throw Iron Ore'), +(76571, 0, 0, 384, 268435456, 4, 1048576, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 225, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Shrink Gnash'), +(76595, 0, 0, 448, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 80, 80, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'zzOldFlashburn'), +(76601, 1, 0, 8388608, 136, 536870916, 268697600, 1048960, 8388608, 536870912, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 99, 99, 35, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 'zzoldFlashburn'), +(76614, 0, 0, 262160, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 1, 6, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'zzOLDFrostburn'), +(76660, 0, 0, 150995136, 0, 268435456, 196608, 0, 512, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'zzOLDMastery - Hunter Beast Mastery Masteries 2'), +(76661, 0, 0, 150995136, 0, 268435456, 196608, 0, 512, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'zzOLDMastery - Hunter Survival Masteries 2'), +(76662, 0, 0, 150995136, 0, 268435456, 196608, 0, 512, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'zzOLDMastery - Hunter Marksmanship Masteries 2'), +(76691, 9, 0, 150994944, 1056, 16384, 0, 128, 393224, 5120, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 5, 0, -1, 0, 0, 6, 6, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 31, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 99, 124, 226, 0, 0, 2000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 1, 1, 0, 64, 'zzOldVengeance'), +(76702, 0, 0, 256, 1024, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Mountaineer Dunstan Credit'), +(76704, 0, 0, 256, 1024, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Mountaineer Lewin Credit'), +(76705, 0, 0, 256, 1024, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Mountaineer Valgrum Credit'), +(76710, 0, 0, 687866240, 1056, 273170437, 268632576, 8388736, 393224, 4608, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Haunted: Resummon Spirit of Tony Two-Tusk'), +(76737, 0, 0, 536871168, 268435456, 0, 268697600, 129, 8, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Chaos Blast Me'), +(76741, 0, 0, 134220032, 268435456, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 36, 3, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Captured Huntress'), +(76760, 0, 0, 384, 268435456, 4, 196608, 0, 524288, 16384, 0, 0, 0, 0, 16, 0, 0, 0, 0, 0, 0, 0, 0, 14, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Dummy Nuke'), +(76763, 0, 0, 0, 1192, 16388, 131072, 128, 393224, 4096, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 127, 'Move'), +(76767, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Haunted: Tony''s Talk Controller Aura'), +(76769, 0, 0, 384, 268435456, 0, 0, 0, 0, 1024, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 4, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, '[DND] Cooldown'), +(76805, 0, 0, 150995136, 0, 268435456, 196608, 0, 512, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'zzOLDMastery - Rogue Assassination Masteries 2'), +(76809, 0, 0, 150995136, 0, 268435456, 196608, 0, 512, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'zzOLDMastery - Rogue Subtlety Masteries 2'), +(76836, 0, 0, 696254848, 1056, 273170437, 269681152, 8388800, 393224, 4608, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Carcass Collection: Mod Aura Vision'), +(76849, 0, 0, 696254848, 1056, 273170437, 269681152, 8388736, 393224, 4608, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Carcass Collection: On Interact'), +(76875, 0, 0, 687866240, 1056, 273170436, 268632576, 8388736, 393224, 4608, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'The Mad Magus: Quest Completion'), +(76983, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'It''s All Mine: Heap to Bunny'), +(77019, 0, 0, 696254848, 1056, 273170437, 269681152, 8388736, 393224, 4608, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'The Mad Magus: Cancel Player''s Mad Magus Tirth''s Soul Aura'), +(77028, 0, 0, 687866240, 1056, 273170437, 268632576, 8388736, 393224, 4608, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'The Mad Magus: Spirit of Tony Two-Tusk to Demon Creator'), +(77029, 0, 0, 696254848, 1056, 273170437, 268632576, 8388736, 393224, 4608, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'The Mad Magus: Player to Ajamon Ghostcaller'), +(77031, 0, 0, 1073807744, 268436480, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 3, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 'Fear Self Forever'), +(77046, 0, 0, 256, 268435456, 0, 0, 1, 0, 1024, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 3, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Timing Aura'), +(77047, 0, 0, 256, 268435456, 0, 0, 1, 0, 1024, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 4, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Timing Aura'), +(77048, 0, 0, 256, 268435456, 0, 0, 1, 0, 1024, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 25, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Timing Aura'), +(77051, 0, 0, 256, 0, 0, 0, 0, 524288, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 327, 12, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Remove Box Aura'), +(77062, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Forcecast Box Vehicle Trigger Aura'), +(77068, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Forcecast Summon Box'), +(77208, 0, 0, 696254848, 1056, 273170437, 269681152, 8388736, 393224, 4608, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Get Koalbeard!: On Interact'), +(77210, 0, 0, 696254848, 1056, 273170437, 269681152, 8388736, 393224, 4608, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Get Zherin!: On Interact'), +(77221, 0, 0, 150995136, 0, 268435456, 196608, 0, 512, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'zzOLDMastery - Warlock Demonology Masteries 2'), +(77232, 0, 0, 384, 0, 0, 0, 192, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Splithoof Heights: Character''s Galak Force Reaction'), +(77240, 0, 0, 687866240, 1056, 273170436, 268632576, 8388736, 393224, 4608, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'The Ancient Brazier: Fire Bunny Kill Credit and Force Cast Summon Aquarian'), +(77242, 0, 0, 256, 0, 4, 262144, 128, 8, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 6, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Void Sentinel'), +(77271, 0, 0, 256, 0, 4, 262144, 128, 8, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 6, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Void Seeker'), +(77272, 0, 0, 256, 0, 4, 262144, 128, 8, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 6, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Void Wurm'), +(77274, 0, 0, 256, 0, 0, 262144, 128, 8, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Secondary Add Controller'), +(77315, 0, 0, 536871168, 0, 0, 268435456, 128, 393224, 8, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Quiet Suicide'), +(77318, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'The Ancient Brazier: Summon Aquarian Send Event'), +(77320, 0, 0, 696254848, 1056, 273170436, 268632576, 8388736, 393224, 4608, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Kill Credit'), +(77323, 0, 0, 256, 1024, 4, 268435456, 8193, 0, 1024, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 37, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Clean Up'), +(77328, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Go Blow that Horn: Whrrrl''s Lightning Master Aura'), +(77331, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Cosmetic - SuccubusEntice'), +(77356, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Create Amulet of Sevine'), +(77381, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Despawn Defiled Felhounds'), +(77407, 0, 0, 696254848, 1056, 273170437, 269681152, 8388736, 393224, 4608, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 135, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Cancel Egg Visibility'), +(77410, 0, 0, 696254848, 1056, 273170437, 269681152, 8388736, 393224, 4608, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Update Zone Auras'), +(77411, 0, 0, 256, 0, 0, 268435456, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Force Zone Aura Update'), +(77462, 0, 0, 696254848, 1056, 273170437, 269681152, 8388736, 393224, 4608, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Goldrinn Tracking Quest Complete'), +(77467, 0, 0, 65536, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 190, 0, 0, 0, 0, 0, 1, 1, 1, 35, 0, -1, 0, 0, 2, 6, 0, 9, 0, 0, 0.6, 0, 0, 13, 1, 0, 0, 0, 0, 6, 6, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 2000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 4, 'Flaming Shard Ball'), +(77479, 0, 0, 65536, 536870980, 524288, 0, 64, 8192, 0, 0, 0, 0, 0, 1, 131072, 0, 0, 0, 0, 64, 64, 31, 5, 0, -1, 0, 0, 6, 6, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 23, 4, 0, 2000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 77482, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 2, 'Hymn of Shardyness'), +(77482, 1, 0, 0, 136, 1073741828, 0, 128, 0, 0, 65536, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 1, 0, 5, 0, -1, 0, 0, 30, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 2, 'Hymn of Shardyness'), +(77501, 0, 0, 687866240, 1056, 273170436, 268632576, 8388736, 393224, 4608, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Close Escort: Catapult to Driver - On Leave Combat'), +(77504, 0, 0, 687866240, 1056, 273170436, 268632576, 8388736, 393224, 4608, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Close Escort: Character to Catapult & Driver - Ambush A'), +(77536, 0, 0, 464, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'zzOldFocused Strikes'), +(77537, 0, 0, 464, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'zzOldFocused Strikes'), +(77538, 0, 0, 464, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'zzOldFocused Strikes'), +(77539, 0, 0, 464, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'zzOLDFocused Strikes'), +(77540, 0, 0, 464, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'zzOLDFocused Strikes'), +(77547, 0, 0, 536871168, 268435592, 4, 196864, 8388608, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Shadowstep Trigger'); +INSERT INTO `spell_dbc` (`Id`, `Dispel`, `Mechanic`, `Attributes`, `AttributesEx`, `AttributesEx2`, `AttributesEx3`, `AttributesEx4`, `AttributesEx5`, `AttributesEx6`, `AttributesEx7`, `Stances`, `StancesNot`, `Targets`, `CastingTimeIndex`, `AuraInterruptFlags`, `ProcFlags`, `ProcChance`, `ProcCharges`, `MaxLevel`, `BaseLevel`, `SpellLevel`, `DurationIndex`, `RangeIndex`, `StackAmount`, `EquippedItemClass`, `EquippedItemSubClassMask`, `EquippedItemInventoryTypeMask`, `Effect1`, `Effect2`, `Effect3`, `EffectDieSides1`, `EffectDieSides2`, `EffectDieSides3`, `EffectRealPointsPerLevel1`, `EffectRealPointsPerLevel2`, `EffectRealPointsPerLevel3`, `EffectBasePoints1`, `EffectBasePoints2`, `EffectBasePoints3`, `EffectMechanic1`, `EffectMechanic2`, `EffectMechanic3`, `EffectImplicitTargetA1`, `EffectImplicitTargetA2`, `EffectImplicitTargetA3`, `EffectImplicitTargetB1`, `EffectImplicitTargetB2`, `EffectImplicitTargetB3`, `EffectRadiusIndex1`, `EffectRadiusIndex2`, `EffectRadiusIndex3`, `EffectApplyAuraName1`, `EffectApplyAuraName2`, `EffectApplyAuraName3`, `EffectAmplitude1`, `EffectAmplitude2`, `EffectAmplitude3`, `EffectMultipleValue1`, `EffectMultipleValue2`, `EffectMultipleValue3`, `EffectMiscValue1`, `EffectMiscValue2`, `EffectMiscValue3`, `EffectMiscValueB1`, `EffectMiscValueB2`, `EffectMiscValueB3`, `EffectTriggerSpell1`, `EffectTriggerSpell2`, `EffectTriggerSpell3`, `EffectSpellClassMaskA1`, `EffectSpellClassMaskA2`, `EffectSpellClassMaskA3`, `EffectSpellClassMaskB1`, `EffectSpellClassMaskB2`, `EffectSpellClassMaskB3`, `EffectSpellClassMaskC1`, `EffectSpellClassMaskC2`, `EffectSpellClassMaskC3`, `MaxTargetLevel`, `SpellFamilyName`, `SpellFamilyFlags1`, `SpellFamilyFlags2`, `SpellFamilyFlags3`, `MaxAffectedTargets`, `DmgClass`, `PreventionType`, `DmgMultiplier1`, `DmgMultiplier2`, `DmgMultiplier3`, `AreaGroupId`, `SchoolMask`, `Comment`) VALUES +(77560, 0, 0, 464, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'zzOLDAncestral Swiftness'), +(77561, 0, 0, 464, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'zzOLDAncestral Swiftness'), +(77562, 0, 0, 464, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'zzOLDAncestral Swiftness'), +(77580, 0, 0, 696254848, 268436512, 273170437, 269681152, 8388800, 393224, 5632, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Save the Sentinel: See Quest Invisibility 01'), +(77582, 0, 0, 696254848, 268436512, 273170437, 269681152, 8388800, 393224, 5632, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'The Brave and the Bold: See Quest Invisibility 02'), +(77596, 0, 0, 256, 0, 4, 262144, 128, 8, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 325, 6, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Add Stalker'), +(77608, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 65536, 101, 1, 0, 85, 85, 31, 5, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'zzOLDDark Simulacrum'), +(77620, 0, 0, 696254848, 1056, 273170437, 269681408, 8401024, 2490376, 4608, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Lost Warden Rescued'), +(77622, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Infrared = Infradead: Guardian''s Controller Aura'), +(77646, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 37, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Tap to Current Target'), +(77649, 0, 0, 696254720, 1056, 273170437, 269681152, 8388736, 393224, 4608, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Thandol Span - Mass Despawn Trigger'), +(77655, 0, 0, 192, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'zzOldSearing Flames'), +(77656, 0, 0, 192, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'zzOldSearing Flames'), +(77658, 0, 0, 192, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'zzOLDSearing Flames'), +(77659, 0, 0, 192, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'zzOLDSearing Flames'), +(77692, 0, 0, 192, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'zzOldTotemic Vigor'), +(77693, 0, 0, 192, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'zzOldTotemic Vigor'), +(77694, 0, 0, 192, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'zzOLDTotemic Vigor'), +(77700, 0, 0, 192, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'zzOldImproved Lava Lash'), +(77701, 0, 0, 192, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'zzOldImproved Lava Lash'), +(77702, 0, 0, 192, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'zzOLDImproved Lava Lash'), +(77746, 0, 0, 64, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'zzOldTotemic Wrath'), +(77748, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'zzOldTotemic Wrath'), +(77752, 0, 0, 256, 1024, 4, 268435456, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 35, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Cue Turtle Spell'), +(77755, 0, 0, 192, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 262144, 10, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'zzOldLava Surge'), +(77757, 0, 0, 192, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 262144, 30, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'zzOLDLava Surge'), +(77765, 0, 0, 65536, 0, 524288, 0, 0, 0, 0, 0, 0, 0, 64, 3, 4718592, 0, 101, 0, 0, 85, 85, 25, 5, 3, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 8, 'zzOLDWild Mushroom'), +(77766, 0, 0, 1073807360, 0, 0, 0, 536872960, 32, 8388608, 0, 0, 0, 0, 1, 4718592, 0, 0, 0, 0, 85, 85, 0, 5, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 8, 'zzOLDWild Mushroom: Detonate'), +(77776, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 56, 0, 0, 0, 0, 0, 0, 0, 0, 41624, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 'Lavamans Stalker'), +(77779, 0, 0, 384, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 134, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 25, 25, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 36901, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 'TEMP Kill Credit w Teleport'), +(77781, 0, 0, 256, 268435456, 0, 0, 1, 0, 1024, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 18, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Nemesis Eruption Timing Aura'), +(77793, 0, 0, 65568, 1024, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'zzOLDCharred Dragonscale Shoulders'), +(77794, 0, 0, 192, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 65536, 101, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'zzOldFocused Insight'), +(77795, 0, 0, 192, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 65536, 101, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'zzOldFocused Insight'), +(77796, 0, 0, 192, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 65536, 101, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'zzOldFocused Insight'), +(77797, 0, 0, 192, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 65536, 101, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'zzOLDFocused Insight'), +(77798, 0, 0, 192, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 65536, 101, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'zzOLDFocused Insight'), +(77800, 1, 0, 0, 1024, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 16384, 101, 1, 0, 0, 0, 31, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'zzOldFocused Insight'), +(77817, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 77, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 'Set Player Action Trigger'), +(77818, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 'Trgger Player Action Trigger'), +(77829, 0, 0, 448, 0, 0, 0, 32768, 0, 4194304, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'zzOldAncestral Resolve'), +(77830, 0, 0, 448, 0, 0, 0, 32768, 0, 4194304, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'zzOldAncestral Resolve'), +(77881, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 'DEBUG - Console Write'), +(77884, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 'Twilight Recruit'), +(77898, 0, 0, 754974976, 268567552, 0, 268697600, 0, 8, 0, 0, 0, 0, 64, 1, 0, 0, 0, 0, 0, 0, 0, 21, 6, 0, -1, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 0, 0, 0, 0, 0, 9, 0, 0, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 'RAFA'), +(77909, 0, 0, 256, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 63, 1, 0, -1, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 'Freeze Anim Test'), +(77922, 0, 0, 0, 136, 1073741824, 1073741824, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 135, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 'Blizzard'), +(77924, 0, 0, 65536, 268435596, 4194304, 0, 0, 8192, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 31, 4, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 'Blizzard'), +(77926, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Compound Threat [P7]'), +(77952, 0, 0, 384, 268435456, 0, 0, 64, 0, 1024, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Promontory Point: Quest Invisibility - Alliance'), +(77953, 0, 0, 384, 268435456, 0, 0, 64, 0, 1024, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Promontory Point: Quest Invisibility - Horde'), +(77954, 0, 0, 698352000, 3240, 335560705, 1245760, 8390848, 8781832, 4100, 58720256, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Promontory Point: See Quest Invisibility - Alliance'), +(77955, 0, 0, 698352000, 3240, 335560705, 1245760, 8390848, 8781832, 4100, 58720256, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Promontory Point: See Quest Invisibility - Horde'), +(77956, 0, 0, 698352000, 3240, 335560705, 1245760, 8390848, 8781832, 4100, 58720256, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Promontory Point: See Quest Invisibility - Earthen Ring'), +(77957, 0, 0, 384, 268435456, 0, 0, 64, 0, 1024, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Promontory Point: Quest Invisibility - Earthen Ring'), +(77960, 0, 0, 65536, 0, 524288, 0, 0, 0, 0, 65536, 0, 0, 0, 22, 0, 0, 0, 0, 0, 18, 18, 0, 4, 0, -1, 0, 0, 2, 30, 0, 29, 0, 0, 1.2, 0, 0, 120, 10, 0, 0, 0, 0, 6, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 64, 'Ron''s Test Starfire'), +(77961, 0, 0, 65536, 0, 524288, 0, 0, 0, 0, 65536, 0, 0, 0, 16, 0, 0, 0, 0, 0, 1, 1, 0, 4, 0, -1, 0, 0, 2, 30, 0, 3, 0, 0, 0.4, 0, 0, 16, -10, 0, 0, 0, 0, 6, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 8, 'Ron''s Test Wrath'), +(77964, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Compound Threat [P8]'), +(77972, 0, 0, 384, 268435456, 0, 0, 8193, 0, 1024, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 6, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Countdown'), +(77983, 0, 0, 687866240, 1056, 273170436, 268632576, 8388736, 393224, 4608, 0, 0, 0, 0, 190, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Put It On: Quest Accept'), +(77992, 0, 0, 696254848, 1056, 273170437, 268632576, 8388736, 393224, 4608, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Put It On: Script Effect Player Cast Mirror Image'), +(77994, 0, 0, 536871168, 268435456, 4, 268697600, 129, 8, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Pillar of Flame'), +(77996, 0, 0, 698352000, 268436648, 273170437, 269681216, 8388800, 393224, 5632, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 6, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Put It On: Merciless One Controlled You''s Mirror Image Aura'), +(78013, 0, 0, 687866240, 1056, 273170437, 268632576, 8388736, 393224, 12800, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Put It On: Despawn Summons'), +(78015, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Put It On: NPC Random Action Controller'), +(78016, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Put It On: NPC Random Action Dummy'), +(78029, 0, 0, 384, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Consumption'), +(78046, 0, 0, 687866240, 1056, 273170436, 268632576, 8388736, 393224, 4608, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Put It On: Force Cast from Gossip'), +(78048, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Put It On: Merciless One Controlled You Eye Blast Controller'), +(78062, 0, 0, 536871296, 268436616, 4, 1442048, 0, 524288, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 6, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Valid Host'), +(78071, 0, 0, 448, 0, 0, 67633152, 0, 0, 0, 0, 0, 0, 0, 1, 0, 16384, 100, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'zzOLDSerendipity'), +(78072, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 17408, 100, 1, 0, 0, 0, 18, 1, 3, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 2, 'zzOLDSerendipity'), +(78073, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 17408, 100, 1, 0, 0, 0, 18, 1, 3, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 2, 'zzOLDSerendipity'), +(78074, 0, 0, 448, 0, 0, 67633152, 0, 0, 0, 0, 0, 0, 0, 1, 0, 16384, 100, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'zzOLDSerendipity'), +(78089, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 63, 1, 0, -1, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 260, 0, 0, 0, 0, 0, 0, 0, 0, 847, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 'test'), +(78093, 0, 0, 536871168, 268435456, 0, 0, 2048, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Stun Self'), +(78132, 0, 0, 687866240, 1056, 273170436, 268632576, 8388736, 393224, 4608, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Put It On: Dummy from Mirror Image to Vehicle'), +(78138, 0, 0, 687866240, 1056, 273170436, 268632576, 8388736, 393224, 4608, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Put It On: Dummy from Leader to Mirror Image'), +(78139, 0, 0, 687866240, 1056, 273170436, 268632576, 8388736, 393224, 4608, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Put It On: Dummy from Mirror Image to Leader'), +(78142, 0, 0, 64, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 6, 6, 6, 0, 0, 0, 0, 0, 0, 2, -50, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 396, 374, 375, 0, 0, 0, 0, 0, 0, 9, 0, 0, 0, 0, 0, 66109, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 1, 'Ron''s Test Passive'), +(78202, 0, 0, 448, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 262144, 100, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Shadowy Apparition'), +(78204, 0, 0, 2147483648, 268435456, 0, 262144, 0, 1024, 1056, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 10, 10, 0, 5, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 'zzOldShadowy Apparition'), +(78228, 0, 0, 464, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 139944, 100, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'zzOldHarnessed Shadows'), +(78229, 0, 0, 464, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 139944, 100, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'zzOLDEmpowered Shadow Orbs'), +(78244, 0, 0, 464, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'zzOldThriving Light [NYI]'), +(78245, 0, 0, 464, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'zzOldThriving Light'), +(78316, 0, 0, 687866240, 1056, 273170436, 268632576, 8388736, 393224, 4608, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Put It On: Quest Credit'), +(78325, 0, 0, 687866240, 1056, 273170436, 268632576, 8388736, 393608, 4608, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Free Wil''hai: Tentacle Horror Aura'), +(78328, 0, 0, 687866240, 1056, 273170437, 268632576, 8388736, 393224, 4608, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Free Wil''hai: Kill Credit'), +(78364, 0, 0, 687866240, 1056, 273170436, 268632576, 8388736, 393224, 4608, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Into the Totem: Quest Credit'), +(78373, 0, 0, 696254848, 1056, 273170437, 268632576, 8388736, 393224, 4608, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Into the Totem: On Death Totem Aura Check'), +(78394, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 'Test Spell'), +(78421, 0, 0, 65568, 1024, 0, 0, 0, 0, 0, 0, 0, 0, 0, 34, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'zzOLDDragonscale Leg Reinforcements'), +(78422, 0, 0, 65568, 1024, 0, 0, 0, 0, 0, 0, 0, 0, 0, 34, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'zzOLDCharscale Leg Reinforcements'), +(78492, 0, 0, 384, 268435456, 128, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 407, 137, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'A Lure: Quest Complete'), +(78493, 0, 0, 384, 268435456, 128, 268435456, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'A Lure: Underlight Nibbler Cleanup'), +(78524, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Devious Great-Eel: Summon Master'), +(78527, 0, 0, 1073807744, 268436480, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 27, 3, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 'Fear Self'), +(78533, 0, 0, 696254848, 2080, 268976133, 269681152, 8388800, 393224, 4608, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, '... It Will Come: Energy Fountain Controller'), +(78543, 0, 0, 2843738112, 1056, 268976133, 1245184, 8388736, 393224, 12292, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Max Healer'), +(78544, 0, 0, 2843738112, 1056, 268976133, 1245184, 8388736, 393224, 12292, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Max Damage'), +(78546, 0, 0, 2843738112, 1056, 268976133, 1245184, 8388736, 393224, 12292, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Max KB'), +(78549, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Create Terrapin Oil'), +(78550, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Create Remora Oil'), +(78551, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Create Hammerhead Oil'), +(78553, 0, 0, 696254848, 1056, 273170437, 268632576, 8388736, 393224, 4608, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, '... It Will Come: AICast force Player to Send Event'), +(78560, 0, 0, 384, 0, 0, 0, 128, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, '... It Will Come: Send Spawn Event'), +(78575, 0, 0, 384, 0, 128, 268435456, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'The Perfect Fuel: Terrapin Oil Sample Cleanup'), +(78576, 0, 0, 384, 0, 128, 268435456, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'The Perfect Fuel: Remora Oil Sample Cleanup'), +(78577, 0, 0, 384, 0, 128, 268435456, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'The Perfect Fuel: Hammerhead Oil Sample Cleanup'), +(78579, 0, 0, 384, 0, 128, 268435456, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'The Perfect Fuel: Billowing Fuel Sample Cleanup'), +(78580, 0, 0, 384, 0, 128, 268435456, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'The Perfect Fuel: Atomic Fuel Sample Cleanup'), +(78581, 0, 0, 384, 0, 128, 268435456, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'The Perfect Fuel: Anemic Fuel Sample Cleanup'), +(78582, 0, 0, 384, 0, 128, 268435456, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'The Perfect Fuel: Perduring Fuel Sample Cleanup'), +(78583, 0, 0, 384, 0, 128, 268435456, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'The Perfect Fuel: Smoky Fuel Sample Cleanup'), +(78584, 0, 0, 384, 0, 128, 268435456, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'The Perfect Fuel: Quick-Burning Fuel Sample Cleanup'), +(78585, 0, 0, 384, 0, 128, 268435456, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'The Perfect Fuel: Perfect Fuel Sample Cleanup'), +(78586, 0, 0, 384, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 407, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'The Perfect Fuel: Cleanup Master Spell'), +(78588, 0, 0, 384, 0, 128, 268435456, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'The Perfect Fuel: Create Terrapin Oil Sample'), +(78589, 0, 0, 384, 0, 128, 268435456, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'The Perfect Fuel: Create Remora Oil Sample'), +(78590, 0, 0, 384, 0, 128, 268435456, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'The Perfect Fuel: Create Hammerhead Oil Sample'), +(78591, 0, 0, 384, 0, 128, 268435456, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'The Perfect Fuel: Create Billowing Fuel Sample'), +(78592, 0, 0, 384, 0, 128, 268435456, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'The Perfect Fuel: Create Atomic Fuel Sample'), +(78593, 0, 0, 384, 0, 128, 268435456, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'The Perfect Fuel: Create Anemic Fuel Sample'), +(78594, 0, 0, 384, 0, 128, 268435456, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'The Perfect Fuel: Create Perduring Fuel Sample'), +(78595, 0, 0, 384, 0, 128, 268435456, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'The Perfect Fuel: Create Smoky Fuel Sample'), +(78596, 0, 0, 384, 0, 128, 268435456, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'The Perfect Fuel: Create Quick-Burning Fuel Sample'), +(78597, 0, 0, 384, 0, 128, 268435456, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'The Perfect Fuel: Create Perfect Fuel Sample'), +(78600, 0, 0, 384, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 407, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'The Perfect Fuel: Minor Cleanup Spell'), +(78601, 0, 0, 696254848, 268436512, 273170437, 269681152, 8388736, 393224, 5632, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, '... It Will Come: Ground Rumble Earthquake Controller'), +(78602, 0, 0, 384, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'The Perfect Fuel: Mix Logic Forcecast'), +(78611, 0, 0, 256, 268435456, 0, 0, 1, 0, 1024, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Periodic Check Aura'), +(78614, 0, 0, 134283520, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, -1, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 18, 0, 0, 52, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 'Test Filling'), +(78624, 0, 0, 8388864, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Launch Claim Our Stake (Alliance)'), +(78629, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 190, 0, 0, 0, 0, 0, 0, 0, 407, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Claim Our Stake: Quest Accept'), +(78636, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Claim Our Stake: Kill Credit'), +(78637, 0, 0, 8388864, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Launch Claim Our Stake (Horde)'), +(78665, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, '[DND] Matt''s Test Spell'), +(78669, 0, 0, 384, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 25, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Hellscream Seadog'), +(78687, 0, 0, 536870912, 1024, 16388, 268697664, 2176, 384, 16777216, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 174, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, '[DND] Update'), +(78693, 0, 0, 696254848, 1056, 273170437, 269681408, 8388736, 393224, 4608, 4, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'The Undershell: Earthquake Check'), +(78719, 0, 0, 159383552, 0, 4, 196608, 128, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Inner Rage'), +(78727, 0, 0, 687866240, 1056, 273170436, 268632576, 8388736, 393224, 4608, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Prisoners: Cage Opened - Alliance'), +(78728, 0, 0, 384, 268435456, 0, 1048576, 64, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Shrink'), +(78734, 0, 0, 464, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'zzOLDPerseverance'), +(78735, 0, 0, 464, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'zzOLDPerseverance'); +INSERT INTO `spell_dbc` (`Id`, `Dispel`, `Mechanic`, `Attributes`, `AttributesEx`, `AttributesEx2`, `AttributesEx3`, `AttributesEx4`, `AttributesEx5`, `AttributesEx6`, `AttributesEx7`, `Stances`, `StancesNot`, `Targets`, `CastingTimeIndex`, `AuraInterruptFlags`, `ProcFlags`, `ProcChance`, `ProcCharges`, `MaxLevel`, `BaseLevel`, `SpellLevel`, `DurationIndex`, `RangeIndex`, `StackAmount`, `EquippedItemClass`, `EquippedItemSubClassMask`, `EquippedItemInventoryTypeMask`, `Effect1`, `Effect2`, `Effect3`, `EffectDieSides1`, `EffectDieSides2`, `EffectDieSides3`, `EffectRealPointsPerLevel1`, `EffectRealPointsPerLevel2`, `EffectRealPointsPerLevel3`, `EffectBasePoints1`, `EffectBasePoints2`, `EffectBasePoints3`, `EffectMechanic1`, `EffectMechanic2`, `EffectMechanic3`, `EffectImplicitTargetA1`, `EffectImplicitTargetA2`, `EffectImplicitTargetA3`, `EffectImplicitTargetB1`, `EffectImplicitTargetB2`, `EffectImplicitTargetB3`, `EffectRadiusIndex1`, `EffectRadiusIndex2`, `EffectRadiusIndex3`, `EffectApplyAuraName1`, `EffectApplyAuraName2`, `EffectApplyAuraName3`, `EffectAmplitude1`, `EffectAmplitude2`, `EffectAmplitude3`, `EffectMultipleValue1`, `EffectMultipleValue2`, `EffectMultipleValue3`, `EffectMiscValue1`, `EffectMiscValue2`, `EffectMiscValue3`, `EffectMiscValueB1`, `EffectMiscValueB2`, `EffectMiscValueB3`, `EffectTriggerSpell1`, `EffectTriggerSpell2`, `EffectTriggerSpell3`, `EffectSpellClassMaskA1`, `EffectSpellClassMaskA2`, `EffectSpellClassMaskA3`, `EffectSpellClassMaskB1`, `EffectSpellClassMaskB2`, `EffectSpellClassMaskB3`, `EffectSpellClassMaskC1`, `EffectSpellClassMaskC2`, `EffectSpellClassMaskC3`, `MaxTargetLevel`, `SpellFamilyName`, `SpellFamilyFlags1`, `SpellFamilyFlags2`, `SpellFamilyFlags3`, `MaxAffectedTargets`, `DmgClass`, `PreventionType`, `DmgMultiplier1`, `DmgMultiplier2`, `DmgMultiplier3`, `AreaGroupId`, `SchoolMask`, `Comment`) VALUES +(78736, 0, 0, 464, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'zzOLDPerseverance'), +(78737, 0, 0, 464, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'zzOLDPerseverance'), +(78738, 0, 0, 464, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'zzOLDPerseverance'), +(78756, 0, 0, 256, 0, 4, 268435456, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 135, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Cue Tight Formation'), +(78757, 0, 0, 256, 0, 4, 268435456, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 135, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Cue Loose Formation'), +(78761, 0, 0, 256, 0, 4, 268435456, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 135, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Event - Tight Formation'), +(78763, 0, 0, 256, 0, 4, 268435456, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 135, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Event - Loose Formation'), +(78765, 0, 0, 8388864, 0, 4, 268435456, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 135, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Cue Despawn'), +(78769, 0, 0, 687866240, 1056, 273170436, 268632576, 8388736, 393224, 4608, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Ascend No More!: Ancient Conduit on Open'), +(78781, 0, 0, 536871040, 268436480, 4, 64, 0, 0, 4, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, '[DND] Summon'), +(78784, 0, 0, 464, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'zzOLDBlessing of the Grove'), +(78785, 0, 0, 464, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'zzOLDBlessing of the Grove'), +(78788, 0, 0, 464, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'zzOLDFungal Growth'), +(78789, 0, 0, 464, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'zzOLDFungal Growth'), +(78790, 0, 0, 65792, 268436480, 4, 268435456, 4096, 8, 4096, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 152, 0, -1, 0, 0, 6, 6, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 38, 1, 0, 0, 0, 0, 0, 0, 0, 236, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 64, 'TEST Ride Vehicle Seat 1 - DGK'), +(78791, 0, 0, 65792, 268436480, 4, 268435456, 4096, 8, 4096, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 152, 0, -1, 0, 0, 6, 6, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 38, 1, 0, 0, 0, 0, 0, 0, 0, 236, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 64, 'TEST Ride Vehicle Seat 2 - DGK'), +(78792, 0, 0, 65792, 268436480, 4, 268435456, 4096, 8, 4096, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 152, 0, -1, 0, 0, 6, 6, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 38, 1, 0, 0, 0, 0, 0, 0, 0, 236, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 64, 'TEST Ride Vehicle Seat 3 - DGK'), +(78793, 0, 0, 65792, 268436480, 4, 268435456, 4096, 8, 4096, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 152, 0, -1, 0, 0, 6, 6, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 38, 1, 0, 0, 0, 0, 0, 0, 0, 236, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 64, 'TEST Ride Vehicle Seat 4 - DGK'), +(78795, 0, 0, 65792, 268436480, 4, 268435456, 4096, 8, 4096, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 152, 0, -1, 0, 0, 6, 6, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 38, 1, 0, 0, 0, 0, 0, 0, 0, 236, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 64, 'TEST Ride Vehicle Seat 5 - DGK'), +(78796, 0, 0, 65792, 268436480, 4, 268435456, 4096, 8, 4096, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 152, 0, -1, 0, 0, 6, 6, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 38, 1, 0, 0, 0, 0, 0, 0, 0, 236, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 64, 'TEST Ride Vehicle Seat 6 - DGK'), +(78797, 0, 0, 65792, 268436480, 4, 268435456, 4096, 8, 4096, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 152, 0, -1, 0, 0, 6, 6, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 38, 1, 0, 0, 0, 0, 0, 0, 0, 236, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 64, 'TEST Ride Vehicle Seat 7 - DGK'), +(78798, 0, 0, 65792, 268436480, 4, 268435456, 4096, 8, 4096, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 152, 0, -1, 0, 0, 6, 6, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 38, 1, 0, 0, 0, 0, 0, 0, 0, 236, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 64, 'TEST Ride Vehicle Seat 8 - DGK'), +(78800, 0, 0, 687866240, 1056, 273170436, 268632576, 8388736, 393224, 4608, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Prisoners: Character to Prisoner - Alliance'), +(78812, 0, 0, 384, 0, 0, 0, 64, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Prisoners: Quest Invisibility 01 - Alliance'), +(78813, 0, 0, 384, 0, 0, 0, 64, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Prisoners: Quest Invisibility 02 - Horde'), +(78814, 0, 0, 3112173952, 1056, 273170437, 269681152, 8388736, 393224, 4608, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Prisoners: See Quest Invis 01 - Alliance'), +(78815, 0, 0, 3112173952, 1056, 273170437, 269681152, 8388736, 393224, 4608, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Prisoners: See Quest Invis 02 - Horde'), +(78816, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Remove Their Arms: Crate to Bunny'), +(78821, 0, 0, 687866240, 1056, 273170436, 268632576, 8388736, 393224, 4608, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Prisoners: Character to Prisoner - Horde'), +(78822, 0, 0, 687866240, 1056, 273170436, 268632576, 8388736, 393224, 4608, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Prisoners: Cage Opened - Horde'), +(78831, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 9, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Naga'), +(78845, 0, 0, 159383552, 32, 540681, 1048576, 2752672, 393225, 135680, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Post-Sub Teleport'), +(78876, 0, 0, 256, 0, 4, 268435456, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 135, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Event 00 - Leave Azshara'), +(78877, 0, 0, 256, 0, 4, 268435456, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 135, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Event 01 - Arrival in EK'), +(78878, 0, 0, 256, 0, 4, 268435456, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 135, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Event 02 - Bridge Approach'), +(78879, 0, 0, 256, 0, 4, 268435456, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 135, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Event 03 - Bridge Crash'), +(78880, 0, 0, 256, 0, 4, 268435456, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 135, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Event 04 - In the Valley'), +(78881, 0, 0, 256, 0, 4, 268435456, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 135, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Event 05 - Garrosh Speaks'), +(78882, 0, 0, 256, 0, 4, 268435456, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 135, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Event 06 - Enter Twilight Highlands'), +(78883, 0, 0, 256, 0, 4, 268435456, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 135, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Event 07 - Alliance Fleet 1'), +(78884, 0, 0, 256, 0, 4, 268435456, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 135, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Event 08 - Alliance Fleet 2'), +(78885, 0, 0, 256, 0, 4, 268435456, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 135, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Event 09 - Twilight Attack'), +(78886, 0, 0, 256, 0, 4, 268435456, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 135, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Event 10 - Zep Goes Down'), +(78887, 0, 0, 256, 0, 4, 268435456, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 135, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Event 11 - Garrosh Attacked'), +(78888, 0, 0, 256, 0, 4, 268435456, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 135, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Event 12 - Dragon in Rigging'), +(78889, 0, 0, 256, 0, 4, 268435456, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 135, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Event 13 - Dragon Falls Away - Zep Crash'), +(78890, 0, 0, 256, 0, 4, 268435456, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 135, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Cue Bad Things'), +(78892, 0, 0, 464, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'zzOLDStampede'), +(78893, 0, 0, 464, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'zzOLDStampede'), +(78908, 1, 0, 327680, 136, 4, 256, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 100, 0, 0, 70, 70, 85, 6, 0, -1, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 500, 0, 0, 0, 0, 0, 22, 0, 0, 15, 0, 0, 12, 0, 0, 3, 0, 0, 3000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 32, 'Shadow Word: Pain - TEST'), +(78910, 0, 0, 256, 0, 4, 268435456, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 135, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Cue Speech'), +(78917, 0, 0, 2843738112, 1056, 268976133, 1245440, 8388736, 2490376, 16789508, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Phase Switch 10->12'), +(78918, 0, 0, 256, 0, 4, 268435456, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 135, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Cue Garrosh to Send Off Planes'), +(78927, 0, 0, 256, 0, 4, 268435456, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 135, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Cue Dragon Attack'), +(78938, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Compound Threat [P10]'), +(78940, 0, 0, 536871296, 268436480, 4, 1179904, 0, 524288, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 6, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Valid Host'), +(78951, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 167, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 'PattyMac - UpdatePhaseShift Test'), +(78953, 0, 0, 2843738112, 1056, 268976133, 1245440, 8388736, 2490376, 16789508, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Phase Switch 11->13'), +(78976, 0, 0, 696254848, 1056, 273170437, 268632576, 8388736, 393224, 4608, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Rolling with my Homies: Quest Abandon'), +(79001, 0, 0, 687866240, 1056, 273170436, 268632576, 8388800, 393224, 4608, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 6, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Twilight Extermination: Possessed Torrent - Flight Aura'), +(79004, 0, 0, 464, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'zzOldImproved Sinister Strike'), +(79005, 0, 0, 464, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'zzOLDImproved Sinister Strike'), +(79006, 0, 0, 464, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'zzOLDImproved Sinister Strike'), +(79007, 0, 0, 464, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'zzOldImproved Recuperate'), +(79016, 0, 0, 687866240, 1056, 273170436, 268632576, 8388736, 393224, 4608, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Twilight Extermination: Determine Possessed Torrent''s Spells'), +(79017, 0, 0, 687866240, 1056, 273170436, 268632576, 8388736, 393224, 4608, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Twilight Extermination: Spells if on Twilight Extermination'), +(79018, 0, 0, 687866240, 1056, 273170436, 268632576, 8388736, 393224, 4608, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Twilight Extermination: Spells if on All that Rises'), +(79022, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 18, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Erunak''s Periodic - Abyssal Breach 00'), +(79027, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Compound Threat [P20]'), +(79028, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Demoniac Vessel: Cleanup Leg Powder'), +(79029, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Demoniac Vessel: Cleanup Tainted Pouch'), +(79030, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Demoniac Vessel: Cleanup Brain Juice'), +(79031, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Demoniac Vessel: Cleanup Commixture'), +(79032, 0, 0, 384, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 407, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Demoniac Vessel: Cleanup (Master)'), +(79033, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'The Charred Granite of the Dark Portal: Cleanup Granite'), +(79034, 0, 0, 384, 268435456, 0, 0, 0, 0, 4, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 407, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'The Charred Granite of the Dark Portal: Cleanup (Master)'), +(79037, 0, 0, 545259904, 1024, 0, 268435456, 128, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Twilight Extermination: Possessed Torrent - Exit Master'), +(79038, 1, 0, 65536, 0, 0, 0, 0, 256, 67108864, 268435456, 0, 0, 0, 1, 0, 0, 0, 0, 0, 80, 80, 42, 5, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 64, 'zzOldDalaran Brilliance'), +(79039, 1, 0, 65536, 0, 0, 0, 0, 256, 67108864, 268435456, 0, 0, 0, 1, 0, 0, 0, 0, 0, 80, 80, 42, 5, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 64, 'zzOldDalaran Brilliance'), +(79052, 0, 0, 687866240, 1056, 273170436, 268632576, 8388736, 393224, 4608, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'All that Rises: Quest Complete'), +(79055, 0, 0, 384, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Compound Threat on Player [P20]'), +(79057, 1, 0, 65536, 0, 0, 0, 0, 256, 67108864, 268435456, 0, 0, 0, 1, 0, 0, 0, 0, 0, 48, 48, 42, 4, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 64, 'zzOldArcane Brilliance'), +(79058, 1, 0, 65536, 0, 0, 0, 0, 256, 67108864, 268435456, 0, 0, 0, 1, 0, 0, 0, 0, 0, 48, 48, 42, 4, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 64, 'zzOldArcane Brilliance'), +(79060, 1, 0, 65536, 131072, 8, 65536, 32768, 256, 67108864, 268435456, 0, 0, 0, 1, 0, 0, 0, 0, 0, 62, 62, 42, 4, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 8, 'zzOldMark of the Wild'), +(79061, 1, 0, 65536, 131072, 8, 65536, 32768, 256, 67108864, 268435456, 0, 0, 0, 1, 0, 0, 0, 0, 0, 62, 62, 42, 4, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 8, 'zzOldMark of the Wild'), +(79062, 1, 0, 327680, 0, 8, 0, 0, 256, 67108864, 268435456, 0, 0, 0, 1, 0, 0, 0, 0, 0, 22, 22, 42, 4, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 2, 'zzOldBlessing of Kings'), +(79063, 1, 0, 327680, 0, 8, 0, 0, 256, 67108864, 268435456, 0, 0, 0, 1, 0, 0, 0, 0, 0, 22, 22, 42, 4, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 2, 'zzOldBlessing of Kings'), +(79065, 0, 0, 698352000, 3240, 335560705, 1245760, 8390848, 8781832, 4100, 58720256, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Communing with the Ancient: See Quest Invis 03'), +(79066, 0, 0, 384, 268435456, 0, 0, 64, 0, 1024, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Communing with the Ancient: Quest Invis 03'), +(79077, 0, 0, 464, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'zzOldReinforced Leather'), +(79078, 0, 0, 696254848, 1056, 273170437, 269681408, 8388736, 393224, 4608, 4, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'L''ghorek Dead - Earthquake Check'), +(79079, 0, 0, 464, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'zzOldReinforced Leather'), +(79080, 0, 0, 464, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'zzOLDReinforced Leather'), +(79081, 0, 0, 464, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'zzOLDReinforced Leather'), +(79082, 0, 0, 464, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'zzOLDReinforced Leather'), +(79089, 0, 0, 464, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'zzOLDSturdy Recuperation'), +(79090, 0, 0, 464, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'zzOLDSturdy Recuperation'), +(79095, 0, 0, 464, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 4368, 100, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'zzOldRestless Blades'), +(79097, 0, 0, 464, 0, 0, 67108864, 0, 0, 0, 0, 0, 0, 0, 1, 0, 4368, 100, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'zzOLDRestless Blades'), +(79098, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Dummy Aura'), +(79099, 0, 0, 256, 128, 4, 262208, 2176, 917512, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Threat'), +(79100, 0, 0, 696254848, 1056, 273170437, 269681152, 8388736, 393224, 4608, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Bear Cub Kill Credit'), +(79101, 1, 0, 327680, 0, 0, 0, 0, 256, 67108864, 268435456, 0, 0, 0, 1, 0, 0, 0, 0, 0, 81, 81, 42, 4, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 2, 'zzOldBlessing of Might'), +(79102, 1, 0, 327680, 0, 0, 0, 0, 256, 67108864, 268435456, 0, 0, 0, 1, 0, 0, 0, 0, 0, 81, 81, 42, 4, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 2, 'zzOldBlessing of Might'), +(79104, 1, 0, 65536, 131072, 524288, 0, 0, 256, 0, 268435456, 0, 0, 0, 1, 0, 0, 0, 0, 0, 14, 14, 42, 5, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 2, 'zzOldPower Word: Fortitude'), +(79105, 1, 0, 65536, 131072, 524288, 0, 0, 256, 0, 268435456, 0, 0, 0, 1, 0, 0, 0, 0, 0, 14, 14, 42, 5, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 2, 'zzOldPower Word: Fortitude'), +(79106, 1, 0, 65536, 131072, 524296, 0, 0, 256, 67108864, 268435456, 0, 0, 0, 1, 0, 0, 0, 0, 0, 52, 52, 42, 5, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 2, 'zzOldShadow Protection'), +(79107, 1, 0, 65536, 131072, 524296, 0, 0, 256, 67108864, 268435456, 0, 0, 0, 1, 0, 0, 0, 0, 0, 52, 52, 42, 5, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 2, 'zzOldShadow Protection'), +(79108, 0, 0, 698352000, 3240, 335560705, 1245760, 8390848, 8781832, 4100, 58720256, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Darkbreak Cove/Tenebrous Cavern: See Quest Invisibility - Captain/Legionnaire NPCs'), +(79110, 0, 0, 698352000, 3240, 335560705, 1245760, 8390848, 8781832, 4100, 58720256, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Darkbreak Cove/Tenebrous Cavern: See Quest Invisibility - Earthen Ring NPCs'), +(79112, 0, 0, 384, 268435456, 0, 0, 64, 0, 1024, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Darkbreak Cove/Tenebrous Cavern: Quest Invisibility - Captain/Legionnaire NPCs'), +(79114, 0, 0, 384, 268435456, 0, 0, 64, 0, 1024, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Darkbreak Cove/Tenebrous Cavern: Quest Invisibility - Earthen Ring NPCs'), +(79119, 0, 0, 384, 268435456, 0, 0, 64, 0, 1024, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Darkbreak Cove/Tenebrous Cavern: Quest Invisibility - Non-Earthen Ring NPCs'), +(79120, 0, 0, 698352000, 3240, 335560705, 1245760, 8390848, 8781832, 4100, 58720256, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Darkbreak Cove/Tenebrous Cavern: See Quest Invisibility - Non-Earthen Ring NPCs'), +(79121, 0, 0, 464, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 2, 50, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'zzOldDeadly Momentum'), +(79122, 0, 0, 336, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 2, 100, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'zzOldDeadly Momentum'), +(79123, 0, 0, 464, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'zzOldBlackjack'), +(79124, 0, 0, 218103808, 1056, 540672, 1073741824, 145, 393224, 4100, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 31, 6, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'zzOldGroggy'), +(79125, 0, 0, 464, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'zzOldBlackjack'), +(79126, 0, 0, 218103808, 1056, 540672, 1073741824, 145, 393224, 4100, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 31, 6, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'zzOldGroggy'), +(79128, 0, 0, 16, 1024, 268435456, 1073872896, 16, 0, 4, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'zzOldImproved Expose Armor'), +(79131, 0, 0, 464, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'zzOLDMurderous Intent'), +(79132, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'zzOldMurderous Intent'), +(79133, 0, 0, 464, 0, 0, 0, 524288, 0, 0, 0, 0, 0, 0, 1, 0, 262144, 30, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'zzOldVenomous Wounds'), +(79135, 0, 0, 464, 0, 0, 0, 524288, 0, 0, 0, 0, 0, 0, 1, 0, 262144, 45, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'zzOLDVenomous Wounds'), +(79141, 0, 0, 464, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'zzOldOpportunity'), +(79146, 0, 0, 464, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'zzOldSanguinary Vein'), +(79148, 0, 0, 464, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'zzOLDSanguinary Vein'), +(79150, 0, 0, 464, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'zzOldEnergetic Recovery'), +(79151, 0, 0, 464, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'zzOldEnergetic Recovery'), +(79154, 0, 0, 384, 0, 0, 268435456, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Serrated Blades'), +(79165, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Faceless Periodic - Abyssal Breach 00'), +(79189, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 8, 0, 0, 0, 0, 0, 0, 9, 1, 0, -1, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 'Movement Interrupt Aura Bit Test'), +(79204, 0, 0, 67109120, 0, 0, 0, 1, 524288, 1024, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Cancel Smoked Out Aura'), +(79243, 0, 0, 384, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 327, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Neptulon''s Naga Freeze'), +(79264, 0, 0, 0, 0, 0, 0, 0, 0, 0, 65536, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 'Drain Soul'), +(79268, 0, 0, 268435456, 64, 0, 0, 0, 8192, 0, 65536, 0, 0, 0, 1, 0, 0, 0, 0, 0, 12, 12, 105, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 32, 'zzOldSoul Harvest'), +(79270, 0, 0, 327696, 512, 0, 458752, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 1, 0, 2, 0, 4, 64, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 1, 'zzOldDamage Shield'), +(79317, 0, 0, 256, 0, 4, 268435456, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 135, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Cue Reset'), +(79326, 0, 0, 384, 268435456, 4, 1048576, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Shrink'), +(79334, 0, 0, 671089024, 268435456, 5, 1048576, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, '[DND] Totem Transform'), +(79342, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 6, 1, 0, -1, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0, 0, 0, 0, 0, 331, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 'PattyMac - Set Battle Pet Breed Quality TEST'), +(79394, 0, 0, 327952, 1024, 4, 268435456, 0, 524288, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 28, 2, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Grouper Bite'), +(79439, 0, 0, 256, 0, 4, 262144, 128, 8, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 6, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Summon Void Wurm'), +(79459, 1, 0, 327680, 1024, 524288, 0, 32768, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 1, 18, 4, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 4, 'zzOldDemon Soul: Imp'); +INSERT INTO `spell_dbc` (`Id`, `Dispel`, `Mechanic`, `Attributes`, `AttributesEx`, `AttributesEx2`, `AttributesEx3`, `AttributesEx4`, `AttributesEx5`, `AttributesEx6`, `AttributesEx7`, `Stances`, `StancesNot`, `Targets`, `CastingTimeIndex`, `AuraInterruptFlags`, `ProcFlags`, `ProcChance`, `ProcCharges`, `MaxLevel`, `BaseLevel`, `SpellLevel`, `DurationIndex`, `RangeIndex`, `StackAmount`, `EquippedItemClass`, `EquippedItemSubClassMask`, `EquippedItemInventoryTypeMask`, `Effect1`, `Effect2`, `Effect3`, `EffectDieSides1`, `EffectDieSides2`, `EffectDieSides3`, `EffectRealPointsPerLevel1`, `EffectRealPointsPerLevel2`, `EffectRealPointsPerLevel3`, `EffectBasePoints1`, `EffectBasePoints2`, `EffectBasePoints3`, `EffectMechanic1`, `EffectMechanic2`, `EffectMechanic3`, `EffectImplicitTargetA1`, `EffectImplicitTargetA2`, `EffectImplicitTargetA3`, `EffectImplicitTargetB1`, `EffectImplicitTargetB2`, `EffectImplicitTargetB3`, `EffectRadiusIndex1`, `EffectRadiusIndex2`, `EffectRadiusIndex3`, `EffectApplyAuraName1`, `EffectApplyAuraName2`, `EffectApplyAuraName3`, `EffectAmplitude1`, `EffectAmplitude2`, `EffectAmplitude3`, `EffectMultipleValue1`, `EffectMultipleValue2`, `EffectMultipleValue3`, `EffectMiscValue1`, `EffectMiscValue2`, `EffectMiscValue3`, `EffectMiscValueB1`, `EffectMiscValueB2`, `EffectMiscValueB3`, `EffectTriggerSpell1`, `EffectTriggerSpell2`, `EffectTriggerSpell3`, `EffectSpellClassMaskA1`, `EffectSpellClassMaskA2`, `EffectSpellClassMaskA3`, `EffectSpellClassMaskB1`, `EffectSpellClassMaskB2`, `EffectSpellClassMaskB3`, `EffectSpellClassMaskC1`, `EffectSpellClassMaskC2`, `EffectSpellClassMaskC3`, `MaxTargetLevel`, `SpellFamilyName`, `SpellFamilyFlags1`, `SpellFamilyFlags2`, `SpellFamilyFlags3`, `MaxAffectedTargets`, `DmgClass`, `PreventionType`, `DmgMultiplier1`, `DmgMultiplier2`, `DmgMultiplier3`, `AreaGroupId`, `SchoolMask`, `Comment`) VALUES +(79460, 1, 0, 327680, 1024, 524288, 0, 32768, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 1, 18, 4, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 2, 'zzOldDemon Soul: Felhunter'), +(79462, 1, 0, 327680, 1024, 524288, 0, 32768, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 1, 18, 4, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 32, 'zzOldDemon Soul: Felguard'), +(79463, 1, 0, 327680, 1024, 524288, 0, 32768, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 1, 18, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 32, 'zzOldDemon Soul: Succubus'), +(79464, 1, 0, 327680, 0, 524292, 0, 32768, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 1, 8, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 32, 'zzOldDemon Soul: Voidwalker'), +(79524, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Faceless Periodic vs Neptulon'), +(79530, 0, 0, 402653568, 268435524, 0, 1073741824, 8192, 1024, 0, 0, 0, 0, 0, 1, 4127, 0, 0, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 'VFX Test Spell'), +(79543, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 4, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Erunak''s Periodic (Long) - Abyssal Breach 00'), +(79562, 0, 0, 64, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Blood Craze'), +(79578, 0, 0, 256, 0, 4, 262144, 128, 8, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 165, 6, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Overhead Smash'), +(79579, 1, 0, 65536, 0, 0, 0, 0, 0, 67108864, 268435456, 0, 0, 0, 1, 0, 0, 0, 0, 0, 48, 48, 42, 4, 0, -1, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 118, 0, 0, 0, 0, 0, 12, 0, 0, 35, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 64, 'Ron''s Test Arcane Intellect'), +(79611, 0, 0, 537985280, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Flight Path'), +(79621, 1, 0, 65536, 0, 0, 0, 1048576, 8192, 0, 0, 0, 0, 0, 5, 0, 0, 101, 0, 0, 3, 3, 29, 4, 10, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 4, 'zzOldBurning Ember'), +(79637, 0, 0, 671088640, 0, 1, 1048576, 2228224, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 15, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'zzOldFlask of Enhancement'), +(79643, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Launch Quest: A Lashtail Hatchling'), +(79654, 0, 0, 2843738112, 1124, 268976132, 1245184, 8388736, 393224, 12292, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 64, 'Explosive Barrage'), +(79689, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'A Lashtail Hatchling: Forcecast Summon Hatchling'), +(79691, 0, 0, 134480272, 268435456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Tunneler Burst'), +(79722, 0, 0, 696254720, 1056, 273170437, 269681152, 8388736, 393224, 4608, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Thandol Span - Victory Trigger'), +(79805, 0, 0, 256, 0, 4, 268435456, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 11, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Attacking Foreman'), +(79842, 2, 0, 65536, 0, 0, 128, 1048576, 8192, 8388608, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 12, 12, 106, 4, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 32, 'zzOLDBane of Redirection'), +(79906, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'See Raptor: Quest Credit'), +(79959, 0, 0, 536871168, 525448, 4, 459008, 0, 0, 8, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Drakonid Rush'), +(79979, 0, 0, 696254848, 268436512, 273170437, 269681152, 8388736, 393224, 4608, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Be Raptor: KC1'), +(79980, 0, 0, 696254848, 268436512, 273170437, 269681152, 8388736, 393224, 4608, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Be Raptor: KC2'), +(79981, 0, 0, 696254848, 268436512, 273170437, 269681152, 8388736, 393224, 4608, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Be Raptor: KC3'), +(79982, 0, 0, 696254848, 268436512, 273170437, 269681152, 8388736, 393224, 4608, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 36, 13, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Be Raptor: KC4'); diff --git a/sql/updates/world/2014_06_20_01_world_spell_dbc.sql b/sql/updates/world/2014_06_20_01_world_spell_dbc.sql new file mode 100644 index 00000000000..5f11bd036db --- /dev/null +++ b/sql/updates/world/2014_06_20_01_world_spell_dbc.sql @@ -0,0 +1,4 @@ +-- +DELETE FROM `creature_text` WHERE `entry`=14467; +INSERT INTO `creature_text` (`entry`, `groupid`, `id`, `text`, `type`, `language`, `probability`, `emote`, `duration`, `sound`, `comment`) VALUES +(14467, 0, 0, 'Kroshius live? Kroshius crush!', 14, 0, 100, 0, 0, 0, 'Kroshius'); diff --git a/sql/updates/world/2014_06_22_00_world_locales_creature.sql b/sql/updates/world/2014_06_22_00_world_locales_creature.sql new file mode 100644 index 00000000000..d24a4dd1f33 --- /dev/null +++ b/sql/updates/world/2014_06_22_00_world_locales_creature.sql @@ -0,0 +1,3776 @@ +-- Male frFR +UPDATE `locales_creature` SET `name_loc2`='Contrebandier défias' WHERE `entry`=95; +UPDATE `locales_creature` SET `name_loc2`='Eclaireur défias' WHERE `entry`=121; +UPDATE `locales_creature` SET `name_loc2`='Pilleur de tombes' WHERE `entry`=218; +UPDATE `locales_creature` SET `name_loc2`='Truand défias' WHERE `entry`=449; +UPDATE `locales_creature` SET `name_loc2`='Mage renégat défias' WHERE `entry`=450; +UPDATE `locales_creature` SET `name_loc2`='Sorcier voleur' WHERE `entry`=474; +UPDATE `locales_creature` SET `name_loc2`='Détrousseur défias' WHERE `entry`=481; +UPDATE `locales_creature` SET `name_loc2`='Pilleur défias' WHERE `entry`=589; +UPDATE `locales_creature` SET `name_loc2`='Pillard défias' WHERE `entry`=590; +UPDATE `locales_creature` SET `name_loc2`='Adjurateur défias' WHERE `entry`=619; +UPDATE `locales_creature` SET `name_loc2`='Surveillant défias' WHERE `entry`=634; +UPDATE `locales_creature` SET `name_loc2`='Jeune troll crins-de-givre' WHERE `entry`=706; +UPDATE `locales_creature` SET `name_loc2`='Montagnard de Forgefer' WHERE `entry`=727; +UPDATE `locales_creature` SET `name_loc2`='Montagnard des Frigères' WHERE `entry`=853; +UPDATE `locales_creature` SET `name_loc2`='Eclaireur de Pierrêche' WHERE `entry`=861; +UPDATE `locales_creature` SET `name_loc2`='Explorateur de Pierrêche' WHERE `entry`=862; +UPDATE `locales_creature` SET `name_loc2`='Chasseur de Pierrêche' WHERE `entry`=863; +UPDATE `locales_creature` SET `name_loc2`='Orc de Pierrêche' WHERE `entry`=864; +UPDATE `locales_creature` SET `name_loc2`='Enchanteur défias' WHERE `entry`=910; +UPDATE `locales_creature` SET `name_loc2`='Troll crins-de-givre' WHERE `entry`=1120; +UPDATE `locales_creature` SET `name_loc2`='Ecorcheur crins-de-givre' WHERE `entry`=1122; +UPDATE `locales_creature` SET `name_loc2`='Chasseur de têtes crins-de-givre' WHERE `entry`=1123; +UPDATE `locales_creature` SET `name_loc2`='Prophète crins-de-givre' WHERE `entry`=1397; +UPDATE `locales_creature` SET `name_loc2`='Converti écarlate' WHERE `entry`=1506; +UPDATE `locales_creature` SET `name_loc2`='Initié écarlate' WHERE `entry`=1507; +UPDATE `locales_creature` SET `name_loc2`='Guerrier écarlate' WHERE `entry`=1535; +UPDATE `locales_creature` SET `name_loc2`='Frère écarlate' WHERE `entry`=1538; +UPDATE `locales_creature` SET `name_loc2`='Loup de mer de la Voile sanglante' WHERE `entry`=1565; +UPDATE `locales_creature` SET `name_loc2`='Prisonnier' WHERE `entry`=1706; +UPDATE `locales_creature` SET `name_loc2`='Magicien défias' WHERE `entry`=1726; +UPDATE `locales_creature` SET `name_loc2`='Evocateur défias' WHERE `entry`=1729; +UPDATE `locales_creature` SET `name_loc2`='Chasseur écarlate' WHERE `entry`=1831; +UPDATE `locales_creature` SET `name_loc2`='Invocateur écarlate' WHERE `entry`=1835; +UPDATE `locales_creature` SET `name_loc2`='Cavalier écarlate' WHERE `entry`=1836; +UPDATE `locales_creature` SET `name_loc2`='Apprenti de Dalaran' WHERE `entry`=1867; +UPDATE `locales_creature` SET `name_loc2`='Ouvrier écarlate' WHERE `entry`=1883; +UPDATE `locales_creature` SET `name_loc2`='Bûcheron écarlate' WHERE `entry`=1884; +UPDATE `locales_creature` SET `name_loc2`='Guetteur de Moulin-de-l''Ambre' WHERE `entry`=1888; +UPDATE `locales_creature` SET `name_loc2`='Protecteur de Moulin-de-l''Ambre' WHERE `entry`=1912; +UPDATE `locales_creature` SET `name_loc2`='Magistère de Moulin-de-l''Ambre' WHERE `entry`=1914; +UPDATE `locales_creature` SET `name_loc2`='Conjurateur de Moulin-de-l''Ambre' WHERE `entry`=1915; +UPDATE `locales_creature` SET `name_loc2`='Serviteur d’’Azora' WHERE `entry`=1949; +UPDATE `locales_creature` SET `name_loc2`='[INUTILISÉ] Citoyen de Moulin-de-l''Ambre' WHERE `entry`=2087; +UPDATE `locales_creature` SET `name_loc2`='Détrousseur du Syndicat' WHERE `entry`=2240; +UPDATE `locales_creature` SET `name_loc2`='Larron du Syndicat' WHERE `entry`=2241; +UPDATE `locales_creature` SET `name_loc2`='Espion du Syndicat' WHERE `entry`=2242; +UPDATE `locales_creature` SET `name_loc2`='Saboteur du Syndicat' WHERE `entry`=2245; +UPDATE `locales_creature` SET `name_loc2`='Massacreur du Syndicat' WHERE `entry`=2247; +UPDATE `locales_creature` SET `name_loc2`='Tailleur de Hautebrande' WHERE `entry`=2264; +UPDATE `locales_creature` SET `name_loc2`='Sorcier du Syndicat' WHERE `entry`=2319; +UPDATE `locales_creature` SET `name_loc2`='Montagnard de Dun Garok' WHERE `entry`=2344; +UPDATE `locales_creature` SET `name_loc2`='Prêtre de Dun Garok' WHERE `entry`=2346; +UPDATE `locales_creature` SET `name_loc2`='Invocateur de Dalaran' WHERE `entry`=2358; +UPDATE `locales_creature` SET `name_loc2`='Troll fanécorce' WHERE `entry`=2552; +UPDATE `locales_creature` SET `name_loc2`='Lanceur de haches fanécorce' WHERE `entry`=2554; +UPDATE `locales_creature` SET `name_loc2`='Féticheur fanécorce' WHERE `entry`=2555; +UPDATE `locales_creature` SET `name_loc2`='Chasseur de têtes fanécorce' WHERE `entry`=2556; +UPDATE `locales_creature` SET `name_loc2`='Chasseur des ombres fanécorce' WHERE `entry`=2557; +UPDATE `locales_creature` SET `name_loc2`='Milicien des Dabyrie' WHERE `entry`=2581; +UPDATE `locales_creature` SET `name_loc2`='Chasseur de trolls de Stromgarde' WHERE `entry`=2583; +UPDATE `locales_creature` SET `name_loc2`='Eclaireur du Syndicat' WHERE `entry`=2587; +UPDATE `locales_creature` SET `name_loc2`='Rôdeur du Syndicat' WHERE `entry`=2588; +UPDATE `locales_creature` SET `name_loc2`='Conjurateur du Syndicat' WHERE `entry`=2590; +UPDATE `locales_creature` SET `name_loc2`='Gardien de Trépas-d''Orgrim' WHERE `entry`=2621; +UPDATE `locales_creature` SET `name_loc2`='Lanceur de haches vilebranche' WHERE `entry`=2639; +UPDATE `locales_creature` SET `name_loc2`='Féticheur vilebranche' WHERE `entry`=2640; +UPDATE `locales_creature` SET `name_loc2`='Chasseur de têtes vilebranche' WHERE `entry`=2641; +UPDATE `locales_creature` SET `name_loc2`='Ecorcheur vilebranche' WHERE `entry`=2644; +UPDATE `locales_creature` SET `name_loc2`='Chasseur des ombres vilebranche' WHERE `entry`=2645; +UPDATE `locales_creature` SET `name_loc2`='Mangeur d’’âmes vilebranche' WHERE `entry`=2647; +UPDATE `locales_creature` SET `name_loc2`='Scalpeur fanécorce' WHERE `entry`=2649; +UPDATE `locales_creature` SET `name_loc2`='Ecorcheur fanécorce' WHERE `entry`=2651; +UPDATE `locales_creature` SET `name_loc2`='Implorateur fanécorce' WHERE `entry`=2654; +UPDATE `locales_creature` SET `name_loc2`='Journalier de la KapitalRisk' WHERE `entry`=2975; +UPDATE `locales_creature` SET `name_loc2`='Expert de Bael''dun' WHERE `entry`=2990; +UPDATE `locales_creature` SET `name_loc2`='Gardien des Hauts' WHERE `entry`=3084; +UPDATE `locales_creature` SET `name_loc2`='Apprenti de la Lame ardente' WHERE `entry`=3198; +UPDATE `locales_creature` SET `name_loc2`='Sectateur de la Lame ardente' WHERE `entry`=3199; +UPDATE `locales_creature` SET `name_loc2`='Troll vaudou' WHERE `entry`=3206; +UPDATE `locales_creature` SET `name_loc2`='Troll maléficié' WHERE `entry`=3207; +UPDATE `locales_creature` SET `name_loc2`='Manouvrier de la KapitalRisk' WHERE `entry`=3284; +UPDATE `locales_creature` SET `name_loc2`='Surveillant de la KapitalRisk' WHERE `entry`=3286; +UPDATE `locales_creature` SET `name_loc2`='Protecteur de Sen''jin' WHERE `entry`=3297; +UPDATE `locales_creature` SET `name_loc2`='Excavateur de Bael''dun' WHERE `entry`=3374; +UPDATE `locales_creature` SET `name_loc2`='Cogneur de la Lame ardente' WHERE `entry`=3379; +UPDATE `locales_creature` SET `name_loc2`='Brigand des mers du Sud' WHERE `entry`=3381; +UPDATE `locales_creature` SET `name_loc2`='Sectateur de la Rive noire' WHERE `entry`=3725; +UPDATE `locales_creature` SET `name_loc2`='Massacreur de la Rive noire' WHERE `entry`=3727; +UPDATE `locales_creature` SET `name_loc2`='Excavateur de la Rive noire' WHERE `entry`=3730; +UPDATE `locales_creature` SET `name_loc2`='Chercheur réprouvé' WHERE `entry`=3732; +UPDATE `locales_creature` SET `name_loc2`='Herboriste réprouvé' WHERE `entry`=3733; +UPDATE `locales_creature` SET `name_loc2`='Surveillant orc' WHERE `entry`=3734; +UPDATE `locales_creature` SET `name_loc2`='Protecteur cénarien' WHERE `entry`=3797; +UPDATE `locales_creature` SET `name_loc2`='Intrus réprouvé' WHERE `entry`=3804; +UPDATE `locales_creature` SET `name_loc2`='Infiltrateur réprouvé' WHERE `entry`=3806; +UPDATE `locales_creature` SET `name_loc2`='Druide du Croc' WHERE `entry`=3840; +UPDATE `locales_creature` SET `name_loc2`='Serviteur hanté' WHERE `entry`=3875; +UPDATE `locales_creature` SET `name_loc2`='Eclaireur réprouvé' WHERE `entry`=3893; +UPDATE `locales_creature` SET `name_loc2`='Opérateur de la KapitalRisk' WHERE `entry`=3988; +UPDATE `locales_creature` SET `name_loc2`='Patron de la KapitalRisk' WHERE `entry`=3997; +UPDATE `locales_creature` SET `name_loc2`='Botaniste cénarien' WHERE `entry`=4051; +UPDATE `locales_creature` SET `name_loc2`='Druide cénarien' WHERE `entry`=4052; +UPDATE `locales_creature` SET `name_loc2`='Prisonnier de Jin''Zil' WHERE `entry`=4072; +UPDATE `locales_creature` SET `name_loc2`='Eclaireur écarlate' WHERE `entry`=4281; +UPDATE `locales_creature` SET `name_loc2`='Magicien écarlate' WHERE `entry`=4282; +UPDATE `locales_creature` SET `name_loc2`='Vaillant écarlate' WHERE `entry`=4287; +UPDATE `locales_creature` SET `name_loc2`='Evocateur écarlate' WHERE `entry`=4289; +UPDATE `locales_creature` SET `name_loc2`='Devin écarlate' WHERE `entry`=4291; +UPDATE `locales_creature` SET `name_loc2`='Protecteur écarlate' WHERE `entry`=4292; +UPDATE `locales_creature` SET `name_loc2`='Clairvoyant écarlate' WHERE `entry`=4293; +UPDATE `locales_creature` SET `name_loc2`='Conjurateur écarlate' WHERE `entry`=4297; +UPDATE `locales_creature` SET `name_loc2`='Sorcier écarlate' WHERE `entry`=4300; +UPDATE `locales_creature` SET `name_loc2`='Champion écarlate' WHERE `entry`=4302; +UPDATE `locales_creature` SET `name_loc2`='Sorcier défias' WHERE `entry`=4418; +UPDATE `locales_creature` SET `name_loc2`='Guerrier vilebranche' WHERE `entry`=4465; +UPDATE `locales_creature` SET `name_loc2`='Scalpeur vilebranche' WHERE `entry`=4466; +UPDATE `locales_creature` SET `name_loc2`='Devin vilebranche' WHERE `entry`=4467; +UPDATE `locales_creature` SET `name_loc2`='Vengeur écarlate' WHERE `entry`=4493; +UPDATE `locales_creature` SET `name_loc2`='Lieur de sort écarlate' WHERE `entry`=4494; +UPDATE `locales_creature` SET `name_loc2`='Saccageur de la Lame ardente' WHERE `entry`=4664; +UPDATE `locales_creature` SET `name_loc2`='Invocateur de la Lame ardente' WHERE `entry`=4668; +UPDATE `locales_creature` SET `name_loc2`='Invocateur de la Lame ardente' WHERE `entry`=4705; +UPDATE `locales_creature` SET `name_loc2`='Saccageur du Crépuscule' WHERE `entry`=4810; +UPDATE `locales_creature` SET `name_loc2`='Aquamancien du Crépuscule' WHERE `entry`=4811; +UPDATE `locales_creature` SET `name_loc2`='Erudit du Crépuscule' WHERE `entry`=4812; +UPDATE `locales_creature` SET `name_loc2`='Infiltrateur de Theramore' WHERE `entry`=4834; +UPDATE `locales_creature` SET `name_loc2`='Atal''ai maudit' WHERE `entry`=5243; +UPDATE `locales_creature` SET `name_loc2`='Féticheur atal''ai' WHERE `entry`=5259; +UPDATE `locales_creature` SET `name_loc2`='Exalté atal''ai' WHERE `entry`=5261; +UPDATE `locales_creature` SET `name_loc2`='Atal''ai momifié' WHERE `entry`=5263; +UPDATE `locales_creature` SET `name_loc2`='Atal''ai non-vivant' WHERE `entry`=5267; +UPDATE `locales_creature` SET `name_loc2`='Prêtre atal''ai' WHERE `entry`=5269; +UPDATE `locales_creature` SET `name_loc2`='Charognard atal''ai' WHERE `entry`=5270; +UPDATE `locales_creature` SET `name_loc2`='Grand prêtre atal''ai' WHERE `entry`=5273; +UPDATE `locales_creature` SET `name_loc2`='Gardien de caravane' WHERE `entry`=5524; +UPDATE `locales_creature` SET `name_loc2`='Voleur bat-le-désert' WHERE `entry`=5615; +UPDATE `locales_creature` SET `name_loc2`='Larron bat-le-désert' WHERE `entry`=5616; +UPDATE `locales_creature` SET `name_loc2`='Lanceur de haches furie-des-sables' WHERE `entry`=5646; +UPDATE `locales_creature` SET `name_loc2`='Buveur de sang furie-des-sables' WHERE `entry`=5649; +UPDATE `locales_creature` SET `name_loc2`='Féticheur furie-des-sables' WHERE `entry`=5650; +UPDATE `locales_creature` SET `name_loc2`='Esclave ouvrier' WHERE `entry`=5843; +UPDATE `locales_creature` SET `name_loc2`='Chaman noir du Crépuscule' WHERE `entry`=5860; +UPDATE `locales_creature` SET `name_loc2`='Géomancien du Crépuscule' WHERE `entry`=5862; +UPDATE `locales_creature` SET `name_loc2`='Ouvrier de Rempart-du-Néant' WHERE `entry`=5995; +UPDATE `locales_creature` SET `name_loc2`='Massacreur lige d''ombre' WHERE `entry`=6007; +UPDATE `locales_creature` SET `name_loc2`='Lige d''ombre tisseur d’’effroi' WHERE `entry`=6009; +UPDATE `locales_creature` SET `name_loc2`='Espion sombrefer' WHERE `entry`=6123; +UPDATE `locales_creature` SET `name_loc2`='Ecumeur défias' WHERE `entry`=6180; +UPDATE `locales_creature` SET `name_loc2`='Vengeur elfe de sang' WHERE `entry`=6199; +UPDATE `locales_creature` SET `name_loc2`='Lépreux perturbé' WHERE `entry`=6221; +UPDATE `locales_creature` SET `name_loc2`='Combattant de la Dispute' WHERE `entry`=6240; +UPDATE `locales_creature` SET `name_loc2`='Spectateur de la Dispute' WHERE `entry`=6249; +UPDATE `locales_creature` SET `name_loc2`='Guerrier du hangar' WHERE `entry`=6391; +UPDATE `locales_creature` SET `name_loc2`='Infirmier du hangar' WHERE `entry`=6392; +UPDATE `locales_creature` SET `name_loc2`='Technicien du hangar' WHERE `entry`=6407; +UPDATE `locales_creature` SET `name_loc2`='Acolyte condamné' WHERE `entry`=7068; +UPDATE `locales_creature` SET `name_loc2`='Moine condamné' WHERE `entry`=7069; +UPDATE `locales_creature` SET `name_loc2`='Mage frémissant' WHERE `entry`=7075; +UPDATE `locales_creature` SET `name_loc2`='Sectateur de Jaedenar' WHERE `entry`=7112; +UPDATE `locales_creature` SET `name_loc2`='Gardien de Jaedenar' WHERE `entry`=7113; +UPDATE `locales_creature` SET `name_loc2`='Massacreur de Jaedenar' WHERE `entry`=7114; +UPDATE `locales_creature` SET `name_loc2`='Tisseur d''effroi de Jaedenar' WHERE `entry`=7116; +UPDATE `locales_creature` SET `name_loc2`='Instigateur de Jaedenar' WHERE `entry`=7117; +UPDATE `locales_creature` SET `name_loc2`='Tisseur d''ombre de Jaedenar' WHERE `entry`=7118; +UPDATE `locales_creature` SET `name_loc2`='Invocateur de Jaedenar' WHERE `entry`=7119; +UPDATE `locales_creature` SET `name_loc2`='Champion du Conseil des ombres' WHERE `entry`=7122; +UPDATE `locales_creature` SET `name_loc2`='Chasseur des ombres furie-des-sables' WHERE `entry`=7246; +UPDATE `locales_creature` SET `name_loc2`='Mangeur d''âmes furie-des-sables' WHERE `entry`=7247; +UPDATE `locales_creature` SET `name_loc2`='Héros de Zul''Farrak mort' WHERE `entry`=7276; +UPDATE `locales_creature` SET `name_loc2`='Ecumeur du Totem-sinistre' WHERE `entry`=7725; +UPDATE `locales_creature` SET `name_loc2`='Chaman du Totem-sinistre' WHERE `entry`=7727; +UPDATE `locales_creature` SET `name_loc2`='Embusqué vilebranche' WHERE `entry`=7809; +UPDATE `locales_creature` SET `name_loc2`='Evacué de Gnomeregan' WHERE `entry`=7843; +UPDATE `locales_creature` SET `name_loc2`='Flibustier des mers du Sud' WHERE `entry`=7856; +UPDATE `locales_creature` SET `name_loc2`='Pirate chasseur de trésors' WHERE `entry`=7899; +UPDATE `locales_creature` SET `name_loc2`='Gardien de Sen''jin' WHERE `entry`=8017; +UPDATE `locales_creature` SET `name_loc2`='Montagnard de Thelsamar' WHERE `entry`=8055; +UPDATE `locales_creature` SET `name_loc2`='Archéologue asservi' WHERE `entry`=8402; +UPDATE `locales_creature` SET `name_loc2`='Braconnier ombresoie' WHERE `entry`=8442; +UPDATE `locales_creature` SET `name_loc2`='Adepte noir' WHERE `entry`=8546; +UPDATE `locales_creature` SET `name_loc2`='Sectateur de la mort' WHERE `entry`=8547; +UPDATE `locales_creature` SET `name_loc2`='Vil tuteur' WHERE `entry`=8548; +UPDATE `locales_creature` SET `name_loc2`='Invocateur des ténèbres' WHERE `entry`=8551; +UPDATE `locales_creature` SET `name_loc2`='Nécromancien' WHERE `entry`=8553; +UPDATE `locales_creature` SET `name_loc2`='Eclaireur écorchemousse' WHERE `entry`=8560; +UPDATE `locales_creature` SET `name_loc2`='Chasseur des ténèbres écorchemousse' WHERE `entry`=8561; +UPDATE `locales_creature` SET `name_loc2`='Paysan ombreforge' WHERE `entry`=8896; +UPDATE `locales_creature` SET `name_loc2`='Citoyen ombreforge' WHERE `entry`=8902; +UPDATE `locales_creature` SET `name_loc2`='Ambassadeur du Marteau du crépuscule' WHERE `entry`=8915; +UPDATE `locales_creature` SET `name_loc2`='Spectateur de l''arène' WHERE `entry`=8916; +UPDATE `locales_creature` SET `name_loc2`='Lieur de sort du Bouclier balafré' WHERE `entry`=9098; +UPDATE `locales_creature` SET `name_loc2`='Prêtre des ombres brûleronce' WHERE `entry`=9240; +UPDATE `locales_creature` SET `name_loc2`='Chasseur de têtes brûleronce' WHERE `entry`=9241; +UPDATE `locales_creature` SET `name_loc2`='Ecumeur du Bouclier balafré' WHERE `entry`=9258; +UPDATE `locales_creature` SET `name_loc2`='Tisseur d’’ombre de Brandefeu' WHERE `entry`=9261; +UPDATE `locales_creature` SET `name_loc2`='Invocateur de Brandefeu' WHERE `entry`=9262; +UPDATE `locales_creature` SET `name_loc2`='Tisseur d’’effroi de Brandefeu' WHERE `entry`=9263; +UPDATE `locales_creature` SET `name_loc2`='Pyromancien de Brandefeu' WHERE `entry`=9264; +UPDATE `locales_creature` SET `name_loc2`='Chasseur des ombres brûleronce' WHERE `entry`=9265; +UPDATE `locales_creature` SET `name_loc2`='Féticheur brûleronce' WHERE `entry`=9266; +UPDATE `locales_creature` SET `name_loc2`='Lanceur de haches brûleronce' WHERE `entry`=9267; +UPDATE `locales_creature` SET `name_loc2`='Prophète brûleronce' WHERE `entry`=9269; +UPDATE `locales_creature` SET `name_loc2`='Gardien écarlate' WHERE `entry`=9447; +UPDATE `locales_creature` SET `name_loc2`='Prétorien écarlate' WHERE `entry`=9448; +UPDATE `locales_creature` SET `name_loc2`='Enchanteur écarlate' WHERE `entry`=9452; +UPDATE `locales_creature` SET `name_loc2`='Client sinistre' WHERE `entry`=9545; +UPDATE `locales_creature` SET `name_loc2`='Client assoiffé' WHERE `entry`=9547; +UPDATE `locales_creature` SET `name_loc2`='Client fin saoul' WHERE `entry`=9554; +UPDATE `locales_creature` SET `name_loc2`='Ecumeur hache-sanglante' WHERE `entry`=9692; +UPDATE `locales_creature` SET `name_loc2`='Evocateur hache-sanglante' WHERE `entry`=9693; +UPDATE `locales_creature` SET `name_loc2`='Combattant hache-sanglante' WHERE `entry`=9716; +UPDATE `locales_creature` SET `name_loc2`='Invocateur hache-sanglante' WHERE `entry`=9717; +UPDATE `locales_creature` SET `name_loc2`='Geôlier main-noire' WHERE `entry`=10316; +UPDATE `locales_creature` SET `name_loc2`='Citoyen spectral' WHERE `entry`=10384; +UPDATE `locales_creature` SET `name_loc2`='Citoyen fantomatique' WHERE `entry`=10385; +UPDATE `locales_creature` SET `name_loc2`='Nécromancien thuzadin' WHERE `entry`=10400; +UPDATE `locales_creature` SET `name_loc2`='Conjurateur ressuscité' WHERE `entry`=10419; +UPDATE `locales_creature` SET `name_loc2`='Initié ressuscité' WHERE `entry`=10420; +UPDATE `locales_creature` SET `name_loc2`='Ensorceleur ressuscité' WHERE `entry`=10422; +UPDATE `locales_creature` SET `name_loc2`='Prêtre ressuscité' WHERE `entry`=10423; +UPDATE `locales_creature` SET `name_loc2`='Vaillant ressuscité' WHERE `entry`=10424; +UPDATE `locales_creature` SET `name_loc2`='Mage de bataille ressuscité' WHERE `entry`=10425; +UPDATE `locales_creature` SET `name_loc2`='Inquisiteur ressuscité' WHERE `entry`=10426; +UPDATE `locales_creature` SET `name_loc2`='Etudiant de la Scholomance' WHERE `entry`=10475; +UPDATE `locales_creature` SET `name_loc2`='Nécromancien de la Scholomance' WHERE `entry`=10477; +UPDATE `locales_creature` SET `name_loc2`='Prêtre écarlate' WHERE `entry`=10608; +UPDATE `locales_creature` SET `name_loc2`='Guerrier novice' WHERE `entry`=10721; +UPDATE `locales_creature` SET `name_loc2`='Dresseur de dragons main-noire' WHERE `entry`=10742; +UPDATE `locales_creature` SET `name_loc2`='Fabricant d''armures main-noire' WHERE `entry`=10898; +UPDATE `locales_creature` SET `name_loc2`='Troll briselance' WHERE `entry`=10919; +UPDATE `locales_creature` SET `name_loc2`='Milicien de Senterouge' WHERE `entry`=10950; +UPDATE `locales_creature` SET `name_loc2`='Troll hache-d''hiver' WHERE `entry`=10983; +UPDATE `locales_creature` SET `name_loc2`='Héros déchu' WHERE `entry`=10996; +UPDATE `locales_creature` SET `name_loc2`='Moine ressuscité' WHERE `entry`=11043; +UPDATE `locales_creature` SET `name_loc2`='Cavalier d''argent' WHERE `entry`=11102; +UPDATE `locales_creature` SET `name_loc2`='Eleveur de la Scholomance' WHERE `entry`=11257; +UPDATE `locales_creature` SET `name_loc2`='Citoyen de Caer Darrow' WHERE `entry`=11277; +UPDATE `locales_creature` SET `name_loc2`='Cavalier de Caer Darrow' WHERE `entry`=11281; +UPDATE `locales_creature` SET `name_loc2`='Non-vivant écorchemousse' WHERE `entry`=11291; +UPDATE `locales_creature` SET `name_loc2`='Sectateur de la Lame brûlante' WHERE `entry`=11322; +UPDATE `locales_creature` SET `name_loc2`='Massacreur de la Lame brûlante' WHERE `entry`=11323; +UPDATE `locales_creature` SET `name_loc2`='Chasseur des ombres hakkari' WHERE `entry`=11339; +UPDATE `locales_creature` SET `name_loc2`='Grand prêtre hakkari' WHERE `entry`=11340; +UPDATE `locales_creature` SET `name_loc2`='[INUTILISÉ] Guerrier d''Hakkar' WHERE `entry`=11342; +UPDATE `locales_creature` SET `name_loc2`='Lanceur de haches gurubashi' WHERE `entry`=11350; +UPDATE `locales_creature` SET `name_loc2`='Chasseur de têtes gurubashi' WHERE `entry`=11351; +UPDATE `locales_creature` SET `name_loc2`='Buveur de sang gurubashi' WHERE `entry`=11353; +UPDATE `locales_creature` SET `name_loc2`='Guerrier gurubashi' WHERE `entry`=11355; +UPDATE `locales_creature` SET `name_loc2`='Champion gurubashi' WHERE `entry`=11356; +UPDATE `locales_creature` SET `name_loc2`='Invocateur bien-né' WHERE `entry`=11466; +UPDATE `locales_creature` SET `name_loc2`='Rongé eldreth' WHERE `entry`=11469; +UPDATE `locales_creature` SET `name_loc2`='Ensorceleur eldreth' WHERE `entry`=11470; +UPDATE `locales_creature` SET `name_loc2`='Invocateur des ténèbres de la Scholomance' WHERE `entry`=11582; +UPDATE `locales_creature` SET `name_loc2`='Serviteur de Weldon Barov' WHERE `entry`=11636; +UPDATE `locales_creature` SET `name_loc2`='Serviteur d''Alexi Barov' WHERE `entry`=11637; +UPDATE `locales_creature` SET `name_loc2`='Prêtre attise-flammes' WHERE `entry`=11662; +UPDATE `locales_creature` SET `name_loc2`='Féticheur hache-d''hiver' WHERE `entry`=11679; +UPDATE `locales_creature` SET `name_loc2`='Eclaireur de la Horde' WHERE `entry`=11680; +UPDATE `locales_creature` SET `name_loc2`='Chaman chanteguerre' WHERE `entry`=11683; +UPDATE `locales_creature` SET `name_loc2`='Gardien de Reflet-de-Lune' WHERE `entry`=11822; +UPDATE `locales_creature` SET `name_loc2`='Prêtre hakkari' WHERE `entry`=11830; +UPDATE `locales_creature` SET `name_loc2`='Féticheur hakkari' WHERE `entry`=11831; +UPDATE `locales_creature` SET `name_loc2`='Vengeur du Crépuscule' WHERE `entry`=11880; +UPDATE `locales_creature` SET `name_loc2`='Invocateur de pierres du Crépuscule' WHERE `entry`=11882; +UPDATE `locales_creature` SET `name_loc2`='Ensorceleur du Totem-sinistre' WHERE `entry`=11913; +UPDATE `locales_creature` SET `name_loc2`='Montagnard foudrepique' WHERE `entry`=12047; +UPDATE `locales_creature` SET `name_loc2`='Guerrier loup-de-givre' WHERE `entry`=12052; +UPDATE `locales_creature` SET `name_loc2`='Gardien loup-de-givre' WHERE `entry`=12053; +UPDATE `locales_creature` SET `name_loc2`='Lanceur de haches hache-d''hiver' WHERE `entry`=12156; +UPDATE `locales_creature` SET `name_loc2`='Chasseur des ombres hache-d''hiver' WHERE `entry`=12157; +UPDATE `locales_creature` SET `name_loc2`='Chasseur hache-d''hiver' WHERE `entry`=12158; +UPDATE `locales_creature` SET `name_loc2`='Ecraseur de la Lame ardente' WHERE `entry`=12320; +UPDATE `locales_creature` SET `name_loc2`='Gardien de Proie-de-l''Ombre' WHERE `entry`=12338; +UPDATE `locales_creature` SET `name_loc2`='Fossoyeur non-vivant' WHERE `entry`=12379; +UPDATE `locales_creature` SET `name_loc2`='Résident non-vivant' WHERE `entry`=12380; +UPDATE `locales_creature` SET `name_loc2`='Lieur de sort de l''Aile noire' WHERE `entry`=12457; +UPDATE `locales_creature` SET `name_loc2`='Ecumeur de Bois-brisé' WHERE `entry`=12859; +UPDATE `locales_creature` SET `name_loc2`='Montagnard de Forgefer monté' WHERE `entry`=12996; +UPDATE `locales_creature` SET `name_loc2`='Fermier nain' WHERE `entry`=12998; +UPDATE `locales_creature` SET `name_loc2`='Prophète de la Lame ardente' WHERE `entry`=13019; +UPDATE `locales_creature` SET `name_loc2`='Montagnard de Dun Morogh' WHERE `entry`=13076; +UPDATE `locales_creature` SET `name_loc2`='Ecumeur de Gouffrefer' WHERE `entry`=13081; +UPDATE `locales_creature` SET `name_loc2`='Envahisseur de Froidemine' WHERE `entry`=13087; +UPDATE `locales_creature` SET `name_loc2`='Explorateur de Froidemine' WHERE `entry`=13096; +UPDATE `locales_creature` SET `name_loc2`='Explorateur de Gouffrefer' WHERE `entry`=13099; +UPDATE `locales_creature` SET `name_loc2`='Guide spirituel de l’’Alliance' WHERE `entry`=13116; +UPDATE `locales_creature` SET `name_loc2`='Guide spirituel de la Horde' WHERE `entry`=13117; +UPDATE `locales_creature` SET `name_loc2`='Brigand du Syndicat' WHERE `entry`=13149; +UPDATE `locales_creature` SET `name_loc2`='Montagnard aguerri' WHERE `entry`=13325; +UPDATE `locales_creature` SET `name_loc2`='Gardien aguerri' WHERE `entry`=13328; +UPDATE `locales_creature` SET `name_loc2`='Légionnaire aguerri' WHERE `entry`=13329; +UPDATE `locales_creature` SET `name_loc2`='Guerrier aguerri' WHERE `entry`=13330; +UPDATE `locales_creature` SET `name_loc2`='Gardien vétéran' WHERE `entry`=13332; +UPDATE `locales_creature` SET `name_loc2`='Montagnard vétéran' WHERE `entry`=13335; +UPDATE `locales_creature` SET `name_loc2`='Guerrier vétéran' WHERE `entry`=13337; +UPDATE `locales_creature` SET `name_loc2`='Gardien champion' WHERE `entry`=13421; +UPDATE `locales_creature` SET `name_loc2`='Légionnaire champion' WHERE `entry`=13425; +UPDATE `locales_creature` SET `name_loc2`='Montagnard champion' WHERE `entry`=13426; +UPDATE `locales_creature` SET `name_loc2`='Guerrier champion' WHERE `entry`=13428; +UPDATE `locales_creature` SET `name_loc2`='Chevaucheur de loup loup-de-givre' WHERE `entry`=13440; +UPDATE `locales_creature` SET `name_loc2`='Ancien ressuscité' WHERE `entry`=13496; +UPDATE `locales_creature` SET `name_loc2`='Saccageur loup-de-givre' WHERE `entry`=13528; +UPDATE `locales_creature` SET `name_loc2`='Saccageur aguerri' WHERE `entry`=13529; +UPDATE `locales_creature` SET `name_loc2`='Saccageur vétéran' WHERE `entry`=13530; +UPDATE `locales_creature` SET `name_loc2`='Saccageur champion' WHERE `entry`=13531; +UPDATE `locales_creature` SET `name_loc2`='Géomètre de Froidemine aguerri' WHERE `entry`=13537; +UPDATE `locales_creature` SET `name_loc2`='Géomètre de Froidemine champion' WHERE `entry`=13539; +UPDATE `locales_creature` SET `name_loc2`='Explorateur de Gouffrefer aguerri' WHERE `entry`=13540; +UPDATE `locales_creature` SET `name_loc2`='Explorateur de Gouffrefer vétéran' WHERE `entry`=13541; +UPDATE `locales_creature` SET `name_loc2`='Explorateur de Gouffrefer champion' WHERE `entry`=13542; +UPDATE `locales_creature` SET `name_loc2`='Ecumeur de Gouffrefer aguerri' WHERE `entry`=13543; +UPDATE `locales_creature` SET `name_loc2`='Ecumeur de Gouffrefer vétéran' WHERE `entry`=13544; +UPDATE `locales_creature` SET `name_loc2`='Ecumeur de Gouffrefer champion' WHERE `entry`=13545; +UPDATE `locales_creature` SET `name_loc2`='Explorateur de Froidemine aguerri' WHERE `entry`=13546; +UPDATE `locales_creature` SET `name_loc2`='Explorateur de Froidemine vétéran' WHERE `entry`=13547; +UPDATE `locales_creature` SET `name_loc2`='Explorateur de Froidemine champion' WHERE `entry`=13548; +UPDATE `locales_creature` SET `name_loc2`='Envahisseur de Froidemine aguerri' WHERE `entry`=13549; +UPDATE `locales_creature` SET `name_loc2`='Envahisseur de Froidemine vétéran' WHERE `entry`=13550; +UPDATE `locales_creature` SET `name_loc2`='Envahisseur de Froidemine champion' WHERE `entry`=13551; +UPDATE `locales_creature` SET `name_loc2`='Géomètre de Gouffrefer aguerri' WHERE `entry`=13555; +UPDATE `locales_creature` SET `name_loc2`='Géomètre de Gouffrefer champion' WHERE `entry`=13557; +UPDATE `locales_creature` SET `name_loc2`='Chevaucheur de bélier foudrepique' WHERE `entry`=13576; +UPDATE `locales_creature` SET `name_loc2`='Guerrier hache-d''hiver' WHERE `entry`=13957; +UPDATE `locales_creature` SET `name_loc2`='Prophète hache-d''hiver' WHERE `entry`=13958; +UPDATE `locales_creature` SET `name_loc2`='Technicien de l''Aile noire' WHERE `entry`=13996; +UPDATE `locales_creature` SET `name_loc2`='Troll flétri' WHERE `entry`=14017; +UPDATE `locales_creature` SET `name_loc2`='Récupérateur foudrepique' WHERE `entry`=14141; +UPDATE `locales_creature` SET `name_loc2`='Récupérateur loup-de-givre' WHERE `entry`=14142; +UPDATE `locales_creature` SET `name_loc2`='Montagnard du corps expéditionnaire' WHERE `entry`=14390; +UPDATE `locales_creature` SET `name_loc2`='Prêtre du corps expéditionnaire' WHERE `entry`=14393; +UPDATE `locales_creature` SET `name_loc2`='Paysan blessé' WHERE `entry`=14484; +UPDATE `locales_creature` SET `name_loc2`='Paysan contaminé' WHERE `entry`=14485; +UPDATE `locales_creature` SET `name_loc2`='Orphelin de Hurlevent' WHERE `entry`=14496; +UPDATE `locales_creature` SET `name_loc2`='Orphelin de la Horde' WHERE `entry`=14499; +UPDATE `locales_creature` SET `name_loc2`='Travailleur de la Horde' WHERE `entry`=14718; +UPDATE `locales_creature` SET `name_loc2`='Gardien vengebroche' WHERE `entry`=14730; +UPDATE `locales_creature` SET `name_loc2`='Kidnappeur vilebranche' WHERE `entry`=14748; +UPDATE `locales_creature` SET `name_loc2`='Forain de Sombrelune' WHERE `entry`=14849; +UPDATE `locales_creature` SET `name_loc2`='Réducteur de têtes zandalar' WHERE `entry`=14876; +UPDATE `locales_creature` SET `name_loc2`='Envoyé des Profanateurs' WHERE `entry`=14990; +UPDATE `locales_creature` SET `name_loc2`='Fermier réprouvé' WHERE `entry`=15046; +UPDATE `locales_creature` SET `name_loc2`='Serviteur de la Main' WHERE `entry`=15080; +UPDATE `locales_creature` SET `name_loc2`='Palefrenier réprouvé' WHERE `entry`=15087; +UPDATE `locales_creature` SET `name_loc2`='Bûcheron réprouvé' WHERE `entry`=15089; +UPDATE `locales_creature` SET `name_loc2`='Envoyé loup-de-givre' WHERE `entry`=15106; +UPDATE `locales_creature` SET `name_loc2`='Prisonnier gurubashi' WHERE `entry`=15110; +UPDATE `locales_creature` SET `name_loc2`='Héros honoré' WHERE `entry`=15113; +UPDATE `locales_creature` SET `name_loc2`='Ancêtre honoré' WHERE `entry`=15115; +UPDATE `locales_creature` SET `name_loc2`='Profanateur d''élite' WHERE `entry`=15128; +UPDATE `locales_creature` SET `name_loc2`='Saccageur des flammes du Crépuscule' WHERE `entry`=15201; +UPDATE `locales_creature` SET `name_loc2`='Suzerain du Crépuscule' WHERE `entry`=15213; +UPDATE `locales_creature` SET `name_loc2`='Esprit de druide dément' WHERE `entry`=15260; +UPDATE `locales_creature` SET `name_loc2`='Palefrenier spectral' WHERE `entry`=15551; +UPDATE `locales_creature` SET `name_loc2`='Kidnappeur des mers du Sud' WHERE `entry`=15685; +UPDATE `locales_creature` SET `name_loc2`='Fêtard de Hurlevent' WHERE `entry`=15694; +UPDATE `locales_creature` SET `name_loc2`='Fêtard des Pitons-du-Tonnerre' WHERE `entry`=15719; +UPDATE `locales_creature` SET `name_loc2`='Fêtard de Baie-du-Butin' WHERE `entry`=15723; +UPDATE `locales_creature` SET `name_loc2`='Cavalier d''élite d''Orgrimmar' WHERE `entry`=15854; +UPDATE `locales_creature` SET `name_loc2`='Primaliste tauren' WHERE `entry`=15856; +UPDATE `locales_creature` SET `name_loc2`='Cavalier de Hurlevent' WHERE `entry`=15857; +UPDATE `locales_creature` SET `name_loc2`='Cavalier de Forgefer' WHERE `entry`=15862; +UPDATE `locales_creature` SET `name_loc2`='Chaman sombrelance' WHERE `entry`=15863; +UPDATE `locales_creature` SET `name_loc2`='Fêtard de Darnassus' WHERE `entry`=15905; +UPDATE `locales_creature` SET `name_loc2`='Fêtard de Forgefer' WHERE `entry`=15906; +UPDATE `locales_creature` SET `name_loc2`='Fêtard de Fossoyeuse' WHERE `entry`=15907; +UPDATE `locales_creature` SET `name_loc2`='Fêtard d''Orgrimmar' WHERE `entry`=15908; +UPDATE `locales_creature` SET `name_loc2`='Participant à la fête lunaire' WHERE `entry`=15917; +UPDATE `locales_creature` SET `name_loc2`='Apprenti de Lune-d''argent' WHERE `entry`=15971; +UPDATE `locales_creature` SET `name_loc2`='Sectateur de Naxxramas' WHERE `entry`=15980; +UPDATE `locales_creature` SET `name_loc2`='Eclaireur de Tranquillien' WHERE `entry`=16242; +UPDATE `locales_creature` SET `name_loc2`='Infirmier de l''Aube d''argent' WHERE `entry`=16284; +UPDATE `locales_creature` SET `name_loc2`='Nécromancien de Mortholme' WHERE `entry`=16317; +UPDATE `locales_creature` SET `name_loc2`='Druide darnassien' WHERE `entry`=16331; +UPDATE `locales_creature` SET `name_loc2`='Initié de l''Aube d''argent' WHERE `entry`=16384; +UPDATE `locales_creature` SET `name_loc2`='Apprenti spectral' WHERE `entry`=16389; +UPDATE `locales_creature` SET `name_loc2`='Traître de la Voile sanglante' WHERE `entry`=16399; +UPDATE `locales_creature` SET `name_loc2`='Serviteur spectral' WHERE `entry`=16407; +UPDATE `locales_creature` SET `name_loc2`='Valet fantôme' WHERE `entry`=16408; +UPDATE `locales_creature` SET `name_loc2`='Invité fantôme' WHERE `entry`=16409; +UPDATE `locales_creature` SET `name_loc2`='Boulanger fantôme' WHERE `entry`=16412; +UPDATE `locales_creature` SET `name_loc2`='Régisseur fantomatique' WHERE `entry`=16414; +UPDATE `locales_creature` SET `name_loc2`='Gardien fantôme' WHERE `entry`=16425; +UPDATE `locales_creature` SET `name_loc2`='Croisé de l''Aube d''argent' WHERE `entry`=16433; +UPDATE `locales_creature` SET `name_loc2`='Champion de l''Aube d''argent' WHERE `entry`=16434; +UPDATE `locales_creature` SET `name_loc2`='Prêtre de l''Aube d''argent' WHERE `entry`=16436; +UPDATE `locales_creature` SET `name_loc2`='Client spectral' WHERE `entry`=16468; +UPDATE `locales_creature` SET `name_loc2`='Interprète spectral' WHERE `entry`=16473; +UPDATE `locales_creature` SET `name_loc2`='Survivant draeneï' WHERE `entry`=16483; +UPDATE `locales_creature` SET `name_loc2`='Suivant de Naxxramas' WHERE `entry`=16505; +UPDATE `locales_creature` SET `name_loc2`='Adorateur de Naxxramas' WHERE `entry`=16506; +UPDATE `locales_creature` SET `name_loc2`='Exécuteur ténébreux' WHERE `entry`=16519; +UPDATE `locales_creature` SET `name_loc2`='Eclaireur elfe de sang' WHERE `entry`=16521; +UPDATE `locales_creature` SET `name_loc2`='Pilleur d''ombre' WHERE `entry`=16540; +UPDATE `locales_creature` SET `name_loc2`='Pèlerin elfe de sang' WHERE `entry`=16578; +UPDATE `locales_creature` SET `name_loc2`='Tireur d''élite de Thrallmar' WHERE `entry`=16582; +UPDATE `locales_creature` SET `name_loc2`='Chevaucheur de loup de Thrallmar' WHERE `entry`=16599; +UPDATE `locales_creature` SET `name_loc2`='Noceur du solstice d''été' WHERE `entry`=16781; +UPDATE `locales_creature` SET `name_loc2`='Gardien des flammes de la fête' WHERE `entry`=16788; +UPDATE `locales_creature` SET `name_loc2`='Cavalier du bastion de l''Honneur' WHERE `entry`=16843; +UPDATE `locales_creature` SET `name_loc2`='Noceur de Hurlevent' WHERE `entry`=16889; +UPDATE `locales_creature` SET `name_loc2`='Noceur de Forgefer' WHERE `entry`=16890; +UPDATE `locales_creature` SET `name_loc2`='Noceur d''Orgrimmar' WHERE `entry`=16893; +UPDATE `locales_creature` SET `name_loc2`='Noceur de Fossoyeuse' WHERE `entry`=16895; +UPDATE `locales_creature` SET `name_loc2`='Ensorceleur inflexible' WHERE `entry`=16905; +UPDATE `locales_creature` SET `name_loc2`='Gardien du val d''Ammen' WHERE `entry`=16921; +UPDATE `locales_creature` SET `name_loc2`='Draeneï blessé' WHERE `entry`=16971; +UPDATE `locales_creature` SET `name_loc2`='Habitant fantomatique' WHERE `entry`=16976; +UPDATE `locales_creature` SET `name_loc2`='Cracheur de feu de Hurlevent' WHERE `entry`=17038; +UPDATE `locales_creature` SET `name_loc2`='Avaleur de feu d''Orgrimmar' WHERE `entry`=17041; +UPDATE `locales_creature` SET `name_loc2`='Cracheur de feu de Forgefer' WHERE `entry`=17048; +UPDATE `locales_creature` SET `name_loc2`='Avaleur de feu des Pitons-du-Tonnerre' WHERE `entry`=17050; +UPDATE `locales_creature` SET `name_loc2`='Avaleur de feu de Fossoyeuse' WHERE `entry`=17051; +UPDATE `locales_creature` SET `name_loc2`='Bambocheur des Chants éternels' WHERE `entry`=17056; +UPDATE `locales_creature` SET `name_loc2`='Invocateur ténébreux' WHERE `entry`=17088; +UPDATE `locales_creature` SET `name_loc2`='Ecumeur réprouvé' WHERE `entry`=17108; +UPDATE `locales_creature` SET `name_loc2`='Lieur de sort de Kil''sorrau' WHERE `entry`=17146; +UPDATE `locales_creature` SET `name_loc2`='Sectateur de Kil''sorrau' WHERE `entry`=17147; +UPDATE `locales_creature` SET `name_loc2`='Pèlerin convalescent' WHERE `entry`=17263; +UPDATE `locales_creature` SET `name_loc2`='Tireur d''élite du bastion de l''Honneur' WHERE `entry`=17383; +UPDATE `locales_creature` SET `name_loc2`='Lanceur de haches de Thrallmar' WHERE `entry`=17390; +UPDATE `locales_creature` SET `name_loc2`='Chasseur du Val' WHERE `entry`=17425; +UPDATE `locales_creature` SET `name_loc2`='Vision du héros prophétisé' WHERE `entry`=17452; +UPDATE `locales_creature` SET `name_loc2`='Espion Epervier du soleil' WHERE `entry`=17604; +UPDATE `locales_creature` SET `name_loc2`='Profanateur Epervier du soleil' WHERE `entry`=17605; +UPDATE `locales_creature` SET `name_loc2`='Récupérateur Epervier du soleil' WHERE `entry`=17606; +UPDATE `locales_creature` SET `name_loc2`='Pyromancien Epervier du soleil' WHERE `entry`=17608; +UPDATE `locales_creature` SET `name_loc2`='Saboteur Epervier du soleil' WHERE `entry`=17609; +UPDATE `locales_creature` SET `name_loc2`='Embusqué Epervier du soleil' WHERE `entry`=17641; +UPDATE `locales_creature` SET `name_loc2`='Villageois de Deuillevent' WHERE `entry`=17672; +UPDATE `locales_creature` SET `name_loc2`='Chercheur de l''expédition' WHERE `entry`=17681; +UPDATE `locales_creature` SET `name_loc2`='Voleur Epervier du soleil' WHERE `entry`=17705; +UPDATE `locales_creature` SET `name_loc2`='Voyageur au sang maudit' WHERE `entry`=17714; +UPDATE `locales_creature` SET `name_loc2`='Guerrier Iraileron' WHERE `entry`=17735; +UPDATE `locales_creature` SET `name_loc2`='Guetteur de Lordaeron' WHERE `entry`=17814; +UPDATE `locales_creature` SET `name_loc2`='Gardien de Fort-de-Durn' WHERE `entry`=17833; +UPDATE `locales_creature` SET `name_loc2`='Spectateur de la fosse' WHERE `entry`=17846; +UPDATE `locales_creature` SET `name_loc2`='Chasseur de la Main' WHERE `entry`=17875; +UPDATE `locales_creature` SET `name_loc2`='Prêtre de l''Alliance' WHERE `entry`=17928; +UPDATE `locales_creature` SET `name_loc2`='Protecteur garde-sang' WHERE `entry`=17993; +UPDATE `locales_creature` SET `name_loc2`='Protecteur de Moulin-de-Tarren' WHERE `entry`=18093; +UPDATE `locales_creature` SET `name_loc2`='Guetteur de Moulin-de-Tarren' WHERE `entry`=18094; +UPDATE `locales_creature` SET `name_loc2`='Eclaireur de l''expédition' WHERE `entry`=18126; +UPDATE `locales_creature` SET `name_loc2`='Initié des chevaliers de sang' WHERE `entry`=18169; +UPDATE `locales_creature` SET `name_loc2`='Villageois de Berceau-de-l’’Eté' WHERE `entry`=18240; +UPDATE `locales_creature` SET `name_loc2`='Réfugié de l''Orbite-sanglante' WHERE `entry`=18292; +UPDATE `locales_creature` SET `name_loc2`='Réfugié du poste de Berceau-de-l’’Eté' WHERE `entry`=18293; +UPDATE `locales_creature` SET `name_loc2`='Orphelin du poste de Berceau-de-l’’Eté' WHERE `entry`=18296; +UPDATE `locales_creature` SET `name_loc2`='Orphelin de l''Orbite-sanglante' WHERE `entry`=18299; +UPDATE `locales_creature` SET `name_loc2`='Envahisseur de Kil''sorrau' WHERE `entry`=18397; +UPDATE `locales_creature` SET `name_loc2`='Régisseur garde-sang' WHERE `entry`=18404; +UPDATE `locales_creature` SET `name_loc2`='Géomancien cherche-soleil' WHERE `entry`=18420; +UPDATE `locales_creature` SET `name_loc2`='Chercheur cherche-soleil' WHERE `entry`=18421; +UPDATE `locales_creature` SET `name_loc2`='Prisonnier mag''har' WHERE `entry`=18428; +UPDATE `locales_creature` SET `name_loc2`='Druide mort' WHERE `entry`=18490; +UPDATE `locales_creature` SET `name_loc2`='Prêtre de l''âme auchenaï' WHERE `entry`=18493; +UPDATE `locales_creature` SET `name_loc2`='Ensorceleur non-vivant' WHERE `entry`=18499; +UPDATE `locales_creature` SET `name_loc2`='Clairvoyant arcaniste' WHERE `entry`=18547; +UPDATE `locales_creature` SET `name_loc2`='Redresseur de torts de l''Aldor' WHERE `entry`=18549; +UPDATE `locales_creature` SET `name_loc2`='Ensorceleur éclipsant' WHERE `entry`=18558; +UPDATE `locales_creature` SET `name_loc2`='Serviteur des Clairvoyants' WHERE `entry`=18593; +UPDATE `locales_creature` SET `name_loc2`='Ancêtre orc' WHERE `entry`=18662; +UPDATE `locales_creature` SET `name_loc2`='Sorcier de Dalaran âgé' WHERE `entry`=18664; +UPDATE `locales_creature` SET `name_loc2`='Présentateur de la fosse' WHERE `entry`=18673; +UPDATE `locales_creature` SET `name_loc2`='Ancêtre d''ancien orc' WHERE `entry`=18688; +UPDATE `locales_creature` SET `name_loc2`='Nécromancien auchenaï' WHERE `entry`=18702; +UPDATE `locales_creature` SET `name_loc2`='Initié ténébreux' WHERE `entry`=18716; +UPDATE `locales_creature` SET `name_loc2`='Travailleur ténébreux' WHERE `entry`=18717; +UPDATE `locales_creature` SET `name_loc2`='Conseiller ténébreux' WHERE `entry`=18719; +UPDATE `locales_creature` SET `name_loc2`='Protecteur de Telhamat' WHERE `entry`=18758; +UPDATE `locales_creature` SET `name_loc2`='Citoyen harcelé' WHERE `entry`=18792; +UPDATE `locales_creature` SET `name_loc2`='Citoyen de Lune-d''argent' WHERE `entry`=18799; +UPDATE `locales_creature` SET `name_loc2`='Prêtre du Solarium' WHERE `entry`=18806; +UPDATE `locales_creature` SET `name_loc2`='Gardien des Flammes infernales' WHERE `entry`=18829; +UPDATE `locales_creature` SET `name_loc2`='Magistère solfurie' WHERE `entry`=18855; +UPDATE `locales_creature` SET `name_loc2`='Protecteur désincarné' WHERE `entry`=18873; +UPDATE `locales_creature` SET `name_loc2`='Roturier humain' WHERE `entry`=18927; +UPDATE `locales_creature` SET `name_loc2`='Forestier haut-elfe' WHERE `entry`=19000; +UPDATE `locales_creature` SET `name_loc2`='Cavalier allérien' WHERE `entry`=19003; +UPDATE `locales_creature` SET `name_loc2`='Chevaucheur de loup de Garadar' WHERE `entry`=19068; +UPDATE `locales_creature` SET `name_loc2`='Haut-elfe réfugié' WHERE `entry`=19076; +UPDATE `locales_creature` SET `name_loc2`='Réfugié nain' WHERE `entry`=19077; +UPDATE `locales_creature` SET `name_loc2`='Paysan allérien' WHERE `entry`=19147; +UPDATE `locales_creature` SET `name_loc2`='Roturier nain' WHERE `entry`=19148; +UPDATE `locales_creature` SET `name_loc2`='Citoyen telaari' WHERE `entry`=19149; +UPDATE `locales_creature` SET `name_loc2`='Réfugié orc' WHERE `entry`=19150; +UPDATE `locales_creature` SET `name_loc2`='Roturier elfe de sang' WHERE `entry`=19169; +UPDATE `locales_creature` SET `name_loc2`='Paysan réfugié' WHERE `entry`=19170; +UPDATE `locales_creature` SET `name_loc2`='Roturier draeneï' WHERE `entry`=19171; +UPDATE `locales_creature` SET `name_loc2`='Roturier gnome' WHERE `entry`=19172; +UPDATE `locales_creature` SET `name_loc2`='Roturier elfe de la nuit' WHERE `entry`=19173; +UPDATE `locales_creature` SET `name_loc2`='Roturier orc' WHERE `entry`=19175; +UPDATE `locales_creature` SET `name_loc2`='Roturier tauren' WHERE `entry`=19176; +UPDATE `locales_creature` SET `name_loc2`='Roturier troll' WHERE `entry`=19177; +UPDATE `locales_creature` SET `name_loc2`='Roturier réprouvé' WHERE `entry`=19178; +UPDATE `locales_creature` SET `name_loc2`='Clochard' WHERE `entry`=19283; +UPDATE `locales_creature` SET `name_loc2`='Vagabond' WHERE `entry`=19289; +UPDATE `locales_creature` SET `name_loc2`='Protecteur de l''Aube' WHERE `entry`=19320; +UPDATE `locales_creature` SET `name_loc2`='Gardien de l''Aube' WHERE `entry`=19322; +UPDATE `locales_creature` SET `name_loc2`='Tireur d''élite de l''Aldor' WHERE `entry`=19337; +UPDATE `locales_creature` SET `name_loc2`='Chevaucheur kor''kron' WHERE `entry`=19364; +UPDATE `locales_creature` SET `name_loc2`='Chasseur de l''Aube d''argent' WHERE `entry`=19366; +UPDATE `locales_creature` SET `name_loc2`='Eclaireur marteau-hardi' WHERE `entry`=19384; +UPDATE `locales_creature` SET `name_loc2`='Esprit d''un ancien draeneï' WHERE `entry`=19416; +UPDATE `locales_creature` SET `name_loc2`='Soigneur de la Ville basse' WHERE `entry`=19502; +UPDATE `locales_creature` SET `name_loc2`='Recombinateur génétique cherche-soleil' WHERE `entry`=19507; +UPDATE `locales_creature` SET `name_loc2`='Ouvrier solfurie' WHERE `entry`=19553; +UPDATE `locales_creature` SET `name_loc2`='Conseiller de Rempart-du-Néant' WHERE `entry`=19566; +UPDATE `locales_creature` SET `name_loc2`='Guerrier kor''kron' WHERE `entry`=19592; +UPDATE `locales_creature` SET `name_loc2`='Réparateur garde-sang' WHERE `entry`=19633; +UPDATE `locales_creature` SET `name_loc2`='Pèlerin draeneï' WHERE `entry`=19689; +UPDATE `locales_creature` SET `name_loc2`='Inflexible vengeur' WHERE `entry`=19863; +UPDATE `locales_creature` SET `name_loc2`='Astromancien' WHERE `entry`=20033; +UPDATE `locales_creature` SET `name_loc2`='Apprenti scruteur d''étoiles' WHERE `entry`=20043; +UPDATE `locales_creature` SET `name_loc2`='Astromancien novice' WHERE `entry`=20044; +UPDATE `locales_creature` SET `name_loc2`='Seigneur astromancien' WHERE `entry`=20046; +UPDATE `locales_creature` SET `name_loc2`='Inquisiteur de la Main cramoisie' WHERE `entry`=20050; +UPDATE `locales_creature` SET `name_loc2`='Lieur de Néant cherche-soleil' WHERE `entry`=20059; +UPDATE `locales_creature` SET `name_loc2`='Réparateur garde-sang invoqué' WHERE `entry`=20083; +UPDATE `locales_creature` SET `name_loc2`='Roturier gobelin' WHERE `entry`=20102; +UPDATE `locales_creature` SET `name_loc2`='Chercheur solfurie' WHERE `entry`=20136; +UPDATE `locales_creature` SET `name_loc2`='Adjurateur solfurie' WHERE `entry`=20139; +UPDATE `locales_creature` SET `name_loc2`='Technicien du Néant' WHERE `entry`=20203; +UPDATE `locales_creature` SET `name_loc2`='Technicien solfurie' WHERE `entry`=20218; +UPDATE `locales_creature` SET `name_loc2`='Gardien des flammes solfurie' WHERE `entry`=20221; +UPDATE `locales_creature` SET `name_loc2`='Néantomancien solfurie' WHERE `entry`=20248; +UPDATE `locales_creature` SET `name_loc2`='Protecteur solfurie' WHERE `entry`=20436; +UPDATE `locales_creature` SET `name_loc2`='Gardien de l''Arcatraz' WHERE `entry`=20859; +UPDATE `locales_creature` SET `name_loc2`='Réfugié humain' WHERE `entry`=20876; +UPDATE `locales_creature` SET `name_loc2`='Réfugié de Shattrath' WHERE `entry`=20877; +UPDATE `locales_creature` SET `name_loc2`='Villageois ombrelune' WHERE `entry`=20995; +UPDATE `locales_creature` SET `name_loc2`='Exarque désincarné' WHERE `entry`=21058; +UPDATE `locales_creature` SET `name_loc2`='Chasseur mok''Nathal' WHERE `entry`=21081; +UPDATE `locales_creature` SET `name_loc2`='Technicien du poste' WHERE `entry`=21114; +UPDATE `locales_creature` SET `name_loc2`='Chevaucheur de wyverne kor''kron' WHERE `entry`=21153; +UPDATE `locales_creature` SET `name_loc2`='Initié auchenaï' WHERE `entry`=21284; +UPDATE `locales_creature` SET `name_loc2`='Corrupteur gangrené' WHERE `entry`=21300; +UPDATE `locales_creature` SET `name_loc2`='Cadavre de gardien' WHERE `entry`=21304; +UPDATE `locales_creature` SET `name_loc2`='Jock'' Trotteur' WHERE `entry`=21427; +UPDATE `locales_creature` SET `name_loc2`='Tireur de précision du poste' WHERE `entry`=21441; +UPDATE `locales_creature` SET `name_loc2`='Eclaireur du culte du Ver' WHERE `entry`=21637; +UPDATE `locales_creature` SET `name_loc2`='Pilleur de tombes de la Cabale' WHERE `entry`=21662; +UPDATE `locales_creature` SET `name_loc2`='Eradicateur solfurie' WHERE `entry`=21742; +UPDATE `locales_creature` SET `name_loc2`='Messager ombrelune' WHERE `entry`=21795; +UPDATE `locales_creature` SET `name_loc2`='Braconnier du culte du Ver' WHERE `entry`=21809; +UPDATE `locales_creature` SET `name_loc2`='Guerrier auchenaï tué' WHERE `entry`=21846; +UPDATE `locales_creature` SET `name_loc2`='Guerrier auchenaï' WHERE `entry`=21852; +UPDATE `locales_creature` SET `name_loc2`='Initié de la Cabale' WHERE `entry`=21907; +UPDATE `locales_creature` SET `name_loc2`='Embusqué du culte du Ver' WHERE `entry`=21982; +UPDATE `locales_creature` SET `name_loc2`='Envoyé de l''Oeil du cyclone' WHERE `entry`=22015; +UPDATE `locales_creature` SET `name_loc2`='Lieur de sort éclipsion' WHERE `entry`=22017; +UPDATE `locales_creature` SET `name_loc2`='Cavalier éclipsion' WHERE `entry`=22018; +UPDATE `locales_creature` SET `name_loc2`='Organisateur de l''arène' WHERE `entry`=22101; +UPDATE `locales_creature` SET `name_loc2`='Guetteur de Fort-de-Durn' WHERE `entry`=22128; +UPDATE `locales_creature` SET `name_loc2`='Corrupteur de Gangrorage' WHERE `entry`=22217; +UPDATE `locales_creature` SET `name_loc2`='Corrupteur de courroux' WHERE `entry`=22254; +UPDATE `locales_creature` SET `name_loc2`='Chasseur du culte du Ver' WHERE `entry`=22308; +UPDATE `locales_creature` SET `name_loc2`='Lieur de sort ombremort' WHERE `entry`=22342; +UPDATE `locales_creature` SET `name_loc2`='Aspirant du culte du Ver' WHERE `entry`=22359; +UPDATE `locales_creature` SET `name_loc2`='Interrogateur de la Cabale' WHERE `entry`=22378; +UPDATE `locales_creature` SET `name_loc2`='Druide du Bosquet éternel (transformation : druide)' WHERE `entry`=22425; +UPDATE `locales_creature` SET `name_loc2`='Exarque réanimé' WHERE `entry`=22452; +UPDATE `locales_creature` SET `name_loc2`='Guerrier sha''tar libéré' WHERE `entry`=22459; +UPDATE `locales_creature` SET `name_loc2`='Redresseur de torts sha''tar estropié' WHERE `entry`=22463; +UPDATE `locales_creature` SET `name_loc2`='Chercheur de la Ligue des explorateurs' WHERE `entry`=22464; +UPDATE `locales_creature` SET `name_loc2`='Cracheur de feu de l''Exodar' WHERE `entry`=22802; +UPDATE `locales_creature` SET `name_loc2`='Avaleur de feu de Lune-d''argent' WHERE `entry`=22804; +UPDATE `locales_creature` SET `name_loc2`='Cracheur de feu de Shattrath' WHERE `entry`=22806; +UPDATE `locales_creature` SET `name_loc2`='Druide de l''expédition cénarienne secouru' WHERE `entry`=22810; +UPDATE `locales_creature` SET `name_loc2`='Magistère aguerri' WHERE `entry`=22863; +UPDATE `locales_creature` SET `name_loc2`='Chevaucheur d''elekk ligelumière' WHERE `entry`=22966; +UPDATE `locales_creature` SET `name_loc2`='Cavalier clairvoyant' WHERE `entry`=22967; +UPDATE `locales_creature` SET `name_loc2`='Navigateur de la Garde-ciel' WHERE `entry`=22982; +UPDATE `locales_creature` SET `name_loc2`='Fêtard clairvoyant' WHERE `entry`=23023; +UPDATE `locales_creature` SET `name_loc2`='Fêtard de l''Aldor' WHERE `entry`=23024; +UPDATE `locales_creature` SET `name_loc2`='Fêtard draeneï' WHERE `entry`=23039; +UPDATE `locales_creature` SET `name_loc2`='Fêtard elfe de sang' WHERE `entry`=23045; +UPDATE `locales_creature` SET `name_loc2`='Aventurier de l''Alliance' WHERE `entry`=23133; +UPDATE `locales_creature` SET `name_loc2`='Guetteur de Moulin-de-Tarren' WHERE `entry`=23177; +UPDATE `locales_creature` SET `name_loc2`='Guetteur de Moulin-de-Tarren' WHERE `entry`=23178; +UPDATE `locales_creature` SET `name_loc2`='Protecteur de Moulin-de-Tarren' WHERE `entry`=23179; +UPDATE `locales_creature` SET `name_loc2`='Protecteur de Moulin-de-Tarren' WHERE `entry`=23180; +UPDATE `locales_creature` SET `name_loc2`='Fureteur défias' WHERE `entry`=23589; +UPDATE `locales_creature` SET `name_loc2`='Conjurateur défias' WHERE `entry`=23590; +UPDATE `locales_creature` SET `name_loc2`='Briseur du Totem-sinistre' WHERE `entry`=23592; +UPDATE `locales_creature` SET `name_loc2`='Lieur de terre du Totem-sinistre' WHERE `entry`=23595; +UPDATE `locales_creature` SET `name_loc2`='Orphelin en excursion' WHERE `entry`=23712; +UPDATE `locales_creature` SET `name_loc2`='Ancien du Totem-sinistre' WHERE `entry`=23714; +UPDATE `locales_creature` SET `name_loc2`='Prisonnier de Theramore' WHERE `entry`=23720; +UPDATE `locales_creature` SET `name_loc2`='Infirmier de la flotte du Nord' WHERE `entry`=23794; +UPDATE `locales_creature` SET `name_loc2`='Cavalier nain de la Garde de l''ouest' WHERE `entry`=23856; +UPDATE `locales_creature` SET `name_loc2`='Cavalier humain de la Garde de l''ouest' WHERE `entry`=23857; +UPDATE `locales_creature` SET `name_loc2`='Porteur de vengeance' WHERE `entry`=23865; +UPDATE `locales_creature` SET `name_loc2`='Ouvrier de la Garde de l''ouest' WHERE `entry`=23911; +UPDATE `locales_creature` SET `name_loc2`='Récupérateur de la flotte du Nord' WHERE `entry`=23934; +UPDATE `locales_creature` SET `name_loc2`='Explorateur dérangé' WHERE `entry`=23967; +UPDATE `locales_creature` SET `name_loc2`='Orphelin en voyage' WHERE `entry`=23971; +UPDATE `locales_creature` SET `name_loc2`='Cadavre de Réprouvé' WHERE `entry`=24010; +UPDATE `locales_creature` SET `name_loc2`='Prisonnier de Gjalerbron' WHERE `entry`=24035; +UPDATE `locales_creature` SET `name_loc2`='Ouvrier de Hardivar' WHERE `entry`=24058; +UPDATE `locales_creature` SET `name_loc2`='Eclaireur de Valgarde' WHERE `entry`=24075; +UPDATE `locales_creature` SET `name_loc2`='Eclaireur de Valgarde empalé' WHERE `entry`=24077; +UPDATE `locales_creature` SET `name_loc2`='Apothicaire assistant' WHERE `entry`=24081; +UPDATE `locales_creature` SET `name_loc2`='Coursier du vent Sabot-d’’Hiver' WHERE `entry`=24132; +UPDATE `locales_creature` SET `name_loc2`='Coursier du vent du camp Sabot-d’’Hiver' WHERE `entry`=24142; +UPDATE `locales_creature` SET `name_loc2`='Long-coureur sabot-d''hiver' WHERE `entry`=24195; +UPDATE `locales_creature` SET `name_loc2`='Long-coureur sabot-d''hiver libéré' WHERE `entry`=24211; +UPDATE `locales_creature` SET `name_loc2`='Prisonnier écorche-dragon' WHERE `entry`=24226; +UPDATE `locales_creature` SET `name_loc2`='Prisonnier écorche-dragon' WHERE `entry`=24253; +UPDATE `locales_creature` SET `name_loc2`='Prisonnier écorche-dragon' WHERE `entry`=24254; +UPDATE `locales_creature` SET `name_loc2`='Prisonnier écorche-dragon' WHERE `entry`=24255; +UPDATE `locales_creature` SET `name_loc2`='Ancien citoyen de Nifflevar' WHERE `entry`=24322; +UPDATE `locales_creature` SET `name_loc2`='Ancien citoyen de Nifflevar' WHERE `entry`=24323; +UPDATE `locales_creature` SET `name_loc2`='Excavateur de la Porte d''acier' WHERE `entry`=24398; +UPDATE `locales_creature` SET `name_loc2`='Larron du Syndicat' WHERE `entry`=24477; +UPDATE `locales_creature` SET `name_loc2`='Fêtard de la fête des Brasseurs' WHERE `entry`=24484; +UPDATE `locales_creature` SET `name_loc2`='Serviteur vaudou' WHERE `entry`=24529; +UPDATE `locales_creature` SET `name_loc2`='Magistère lamesoleil' WHERE `entry`=24685; +UPDATE `locales_creature` SET `name_loc2`='Gardien lamesoleil' WHERE `entry`=24762; +UPDATE `locales_creature` SET `name_loc2`='Eclaireur du Soleil brisé' WHERE `entry`=24964; +UPDATE `locales_creature` SET `name_loc2`='Tireur d''élite chanteguerre' WHERE `entry`=25244; +UPDATE `locales_creature` SET `name_loc2`='Coursier du vent chanteguerre' WHERE `entry`=25286; +UPDATE `locales_creature` SET `name_loc2`='Délégué draeneï' WHERE `entry`=25300; +UPDATE `locales_creature` SET `name_loc2`='Long-coureur ressuscité' WHERE `entry`=25350; +UPDATE `locales_creature` SET `name_loc2`='Chasseur de trésors de Béryl' WHERE `entry`=25353; +UPDATE `locales_creature` SET `name_loc2`='Déserteur de l''Alliance' WHERE `entry`=25361; +UPDATE `locales_creature` SET `name_loc2`='Prêtre du crépuscule lamesoleil' WHERE `entry`=25370; +UPDATE `locales_creature` SET `name_loc2`='Prêtre de l''aube lamesoleil' WHERE `entry`=25371; +UPDATE `locales_creature` SET `name_loc2`='Eclaireur lamesoleil' WHERE `entry`=25372; +UPDATE `locales_creature` SET `name_loc2`='Guerrier du bastion Chanteguerre' WHERE `entry`=25414; +UPDATE `locales_creature` SET `name_loc2`='Chaman du bastion Chanteguerre' WHERE `entry`=25421; +UPDATE `locales_creature` SET `name_loc2`='Eclaireur chanteguerre' WHERE `entry`=25439; +UPDATE `locales_creature` SET `name_loc2`='Récupérateur de Béryl' WHERE `entry`=25449; +UPDATE `locales_creature` SET `name_loc2`='Sectateur clandestin' WHERE `entry`=25605; +UPDATE `locales_creature` SET `name_loc2`='Milicien de Comté-Lointaine' WHERE `entry`=25617; +UPDATE `locales_creature` SET `name_loc2`='Sectateur nécrolyte' WHERE `entry`=25651; +UPDATE `locales_creature` SET `name_loc2`='Déserteur de l''Alliance' WHERE `entry`=25761; +UPDATE `locales_creature` SET `name_loc2`='Rescapé de Spumelevier' WHERE `entry`=25773; +UPDATE `locales_creature` SET `name_loc2`='Rescapé de la piste d''atterrissage de Spumelevier' WHERE `entry`=25783; +UPDATE `locales_creature` SET `name_loc2`='Braconnier fou de butin' WHERE `entry`=25806; +UPDATE `locales_creature` SET `name_loc2`='Massacreur de la SdPA' WHERE `entry`=25808; +UPDATE `locales_creature` SET `name_loc2`='Costume de noceur du solstice d''été : elfe de sang' WHERE `entry`=25868; +UPDATE `locales_creature` SET `name_loc2`='Costume de noceur du solstice d''été : draeneï' WHERE `entry`=25869; +UPDATE `locales_creature` SET `name_loc2`='Costume de noceur du solstice d''été : nain' WHERE `entry`=25870; +UPDATE `locales_creature` SET `name_loc2`='Costume de noceur du solstice d''été : gnome' WHERE `entry`=25871; +UPDATE `locales_creature` SET `name_loc2`='Costume de noceur du solstice d''été : gobelin' WHERE `entry`=25872; +UPDATE `locales_creature` SET `name_loc2`='Costume de noceur du solstice d''été : humain' WHERE `entry`=25873; +UPDATE `locales_creature` SET `name_loc2`='Costume de noceur du solstice d''été : troll' WHERE `entry`=25877; +UPDATE `locales_creature` SET `name_loc2`='Costume de noceur du solstice d''été : mort-vivant' WHERE `entry`=25878; +UPDATE `locales_creature` SET `name_loc2`='Allié ressuscité' WHERE `entry`=26125; +UPDATE `locales_creature` SET `name_loc2`='Evacué de Taunka''le' WHERE `entry`=26159; +UPDATE `locales_creature` SET `name_loc2`='Evacué de Taunka''le' WHERE `entry`=26167; +UPDATE `locales_creature` SET `name_loc2`='Sectateur tué' WHERE `entry`=26172; +UPDATE `locales_creature` SET `name_loc2`='Réfugié de Taunka''le' WHERE `entry`=26184; +UPDATE `locales_creature` SET `name_loc2`='Sectateur en fuite' WHERE `entry`=26189; +UPDATE `locales_creature` SET `name_loc2`='Ancien du Cercle terrestre' WHERE `entry`=26221; +UPDATE `locales_creature` SET `name_loc2`='Cryomancien du Crépuscule' WHERE `entry`=26222; +UPDATE `locales_creature` SET `name_loc2`='Sorcier du capteur tellurique' WHERE `entry`=26257; +UPDATE `locales_creature` SET `name_loc2`='Chasseur de mages de la Désolation des dragons' WHERE `entry`=26280; +UPDATE `locales_creature` SET `name_loc2`='Vendeur d''accessoires' WHERE `entry`=26300; +UPDATE `locales_creature` SET `name_loc2`='Sectateur anub''ar' WHERE `entry`=26319; +UPDATE `locales_creature` SET `name_loc2`='Chasseur de Solstice' WHERE `entry`=26389; +UPDATE `locales_creature` SET `name_loc2`='Guerrier de la Horde' WHERE `entry`=26486; +UPDATE `locales_creature` SET `name_loc2`='Chimiste réprouvé' WHERE `entry`=26507; +UPDATE `locales_creature` SET `name_loc2`='Spectateur écorche-dragon' WHERE `entry`=26667; +UPDATE `locales_creature` SET `name_loc2`='Villageois de Ruissargent' WHERE `entry`=26708; +UPDATE `locales_creature` SET `name_loc2`='Ascendant chasseur de mages' WHERE `entry`=26727; +UPDATE `locales_creature` SET `name_loc2`='Initié chasseur de mages' WHERE `entry`=26728; +UPDATE `locales_creature` SET `name_loc2`='Régisseur' WHERE `entry`=26729; +UPDATE `locales_creature` SET `name_loc2`='Chasseur de wyrm de la 7e Légion' WHERE `entry`=26779; +UPDATE `locales_creature` SET `name_loc2`='Sorcier focalisé' WHERE `entry`=26816; +UPDATE `locales_creature` SET `name_loc2`='Combattant de Spumelevier' WHERE `entry`=26817; +UPDATE `locales_creature` SET `name_loc2`='Spectateur des combats de fosse' WHERE `entry`=26869; +UPDATE `locales_creature` SET `name_loc2`='Chasseur de dragons sombrelance' WHERE `entry`=26870; +UPDATE `locales_creature` SET `name_loc2`='Guerrier chanteguerre blessé' WHERE `entry`=27106; +UPDATE `locales_creature` SET `name_loc2`='Mage chanteguerre blessé' WHERE `entry`=27107; +UPDATE `locales_creature` SET `name_loc2`='Chaman chanteguerre blessé' WHERE `entry`=27108; +UPDATE `locales_creature` SET `name_loc2`='Mandataire chanteguerre blessé' WHERE `entry`=27109; +UPDATE `locales_creature` SET `name_loc2`='Eclaireur ambrepin' WHERE `entry`=27117; +UPDATE `locales_creature` SET `name_loc2`='Ecumeur du bastion de la Conquête' WHERE `entry`=27118; +UPDATE `locales_creature` SET `name_loc2`='Cavalier de la 7e Légion' WHERE `entry`=27161; +UPDATE `locales_creature` SET `name_loc2`='Prêtre corbeau de l''Assaut' WHERE `entry`=27202; +UPDATE `locales_creature` SET `name_loc2`='Soigneur d''Argent' WHERE `entry`=27305; +UPDATE `locales_creature` SET `name_loc2`='Nécromancien des profondeurs ardentes' WHERE `entry`=27358; +UPDATE `locales_creature` SET `name_loc2`='Villageois de Garde-Hiver piégé' WHERE `entry`=27359; +UPDATE `locales_creature` SET `name_loc2`='Maraudeur du bastion de la Conquête' WHERE `entry`=27424; +UPDATE `locales_creature` SET `name_loc2`='Chevaucheur de griffon de Fordragon' WHERE `entry`=27521; +UPDATE `locales_creature` SET `name_loc2`='Nécromancien algide' WHERE `entry`=27539; +UPDATE `locales_creature` SET `name_loc2`='Chasseur de Ruissargent' WHERE `entry`=27546; +UPDATE `locales_creature` SET `name_loc2`='Champion du bastion de la Conquête' WHERE `entry`=27550; +UPDATE `locales_creature` SET `name_loc2`='Lanceur d''épieu sombrelance' WHERE `entry`=27560; +UPDATE `locales_creature` SET `name_loc2`='Visiteur du temple' WHERE `entry`=27643; +UPDATE `locales_creature` SET `name_loc2`='Chevaucheur de griffon de Garde-Hiver' WHERE `entry`=27662; +UPDATE `locales_creature` SET `name_loc2`='Chaman chanteguerre' WHERE `entry`=27678; +UPDATE `locales_creature` SET `name_loc2`='Nécromancien algide attaquant' WHERE `entry`=27687; +UPDATE `locales_creature` SET `name_loc2`='Chevaucheur de griffon de Valgarde' WHERE `entry`=27887; +UPDATE `locales_creature` SET `name_loc2`='Croisé d''argent' WHERE `entry`=28029; +UPDATE `locales_creature` SET `name_loc2`='Chevaucheur de griffon de Garde-Hiver' WHERE `entry`=28065; +UPDATE `locales_creature` SET `name_loc2`='Excavateur de la KapitalRisk' WHERE `entry`=28123; +UPDATE `locales_creature` SET `name_loc2`='Citoyen de Stratholme' WHERE `entry`=28167; +UPDATE `locales_creature` SET `name_loc2`='Résident de Stratholme' WHERE `entry`=28169; +UPDATE `locales_creature` SET `name_loc2`='Croisé d''argent' WHERE `entry`=28247; +UPDATE `locales_creature` SET `name_loc2`='Gladiateur évadé' WHERE `entry`=28322; +UPDATE `locales_creature` SET `name_loc2`='Sectateur infiltré' WHERE `entry`=28373; +UPDATE `locales_creature` SET `name_loc2`='Nécromancien d''Achérus' WHERE `entry`=28383; +UPDATE `locales_creature` SET `name_loc2`='Prisonnier de la Croisade écarlate' WHERE `entry`=28385; +UPDATE `locales_creature` SET `name_loc2`='Prisonnier de l''Aube d''argent' WHERE `entry`=28386; +UPDATE `locales_creature` SET `name_loc2`='Cadavre de sectateur' WHERE `entry`=28464; +UPDATE `locales_creature` SET `name_loc2`='Travailleur asservi' WHERE `entry`=28505; +UPDATE `locales_creature` SET `name_loc2`='Croisé écarlate' WHERE `entry`=28529; +UPDATE `locales_creature` SET `name_loc2`='Sectateur saboteur' WHERE `entry`=28538; +UPDATE `locales_creature` SET `name_loc2`='Ouvrier du bâtiment' WHERE `entry`=28569; +UPDATE `locales_creature` SET `name_loc2`='Ouvrier du bâtiment' WHERE `entry`=28593; +UPDATE `locales_creature` SET `name_loc2`='Prêcheur écarlate' WHERE `entry`=28594; +UPDATE `locales_creature` SET `name_loc2`='Nain aventureux' WHERE `entry`=28604; +UPDATE `locales_creature` SET `name_loc2`='Chevaucheur de loup d''Orgrimmar' WHERE `entry`=28613; +UPDATE `locales_creature` SET `name_loc2`='Apothicaire chercheur' WHERE `entry`=28638; +UPDATE `locales_creature` SET `name_loc2`='Messager de la Société des apothicaires' WHERE `entry`=28743; +UPDATE `locales_creature` SET `name_loc2`='Prêtre révérencieux' WHERE `entry`=28814; +UPDATE `locales_creature` SET `name_loc2`='Gardien de la flotte écarlate' WHERE `entry`=28856; +UPDATE `locales_creature` SET `name_loc2`='Gardien du guet d’’Ebène' WHERE `entry`=28865; +UPDATE `locales_creature` SET `name_loc2`='Gardien de la flotte écarlate' WHERE `entry`=28884; +UPDATE `locales_creature` SET `name_loc2`='Nécromancien d''Achérus' WHERE `entry`=28889; +UPDATE `locales_creature` SET `name_loc2`='Prêcheur écarlate' WHERE `entry`=28939; +UPDATE `locales_creature` SET `name_loc2`='Croisé écarlate' WHERE `entry`=28940; +UPDATE `locales_creature` SET `name_loc2`='Mandataire de citoyen de la Nouvelle-Avalon' WHERE `entry`=28986; +UPDATE `locales_creature` SET `name_loc2`='Inquisiteur écarlate' WHERE `entry`=29029; +UPDATE `locales_creature` SET `name_loc2`='Champion écarlate' WHERE `entry`=29080; +UPDATE `locales_creature` SET `name_loc2`='Croisé d''Âtreval' WHERE `entry`=29102; +UPDATE `locales_creature` SET `name_loc2`='Croisé de Tirisfal' WHERE `entry`=29103; +UPDATE `locales_creature` SET `name_loc2`='Nécromancien d''Achérus' WHERE `entry`=29191; +UPDATE `locales_creature` SET `name_loc2`='Déserteur écarlate' WHERE `entry`=29193; +UPDATE `locales_creature` SET `name_loc2`='Mage gardien du Concordat argenté' WHERE `entry`=29254; +UPDATE `locales_creature` SET `name_loc2`='Mage gardien saccage-soleil' WHERE `entry`=29255; +UPDATE `locales_creature` SET `name_loc2`='Voyageur du camp Sabot-d''hiver' WHERE `entry`=29301; +UPDATE `locales_creature` SET `name_loc2`='Chevaucheur de griffon de l''Assaut' WHERE `entry`=29333; +UPDATE `locales_creature` SET `name_loc2`='Initié indigne' WHERE `entry`=29567; +UPDATE `locales_creature` SET `name_loc2`='Tisseur d''ombre de l''Assaut' WHERE `entry`=29614; +UPDATE `locales_creature` SET `name_loc2`='Espion de la cime de la Mort capturé' WHERE `entry`=29649; +UPDATE `locales_creature` SET `name_loc2`='Sectateur des ombres' WHERE `entry`=29717; +UPDATE `locales_creature` SET `name_loc2`='Vendeur de l''amphithéâtre' WHERE `entry`=30098; +UPDATE `locales_creature` SET `name_loc2`='Adorateur du Crépuscule' WHERE `entry`=30111; +UPDATE `locales_creature` SET `name_loc2`='Initié du Crépuscule' WHERE `entry`=30114; +UPDATE `locales_creature` SET `name_loc2`='Champion d''argent' WHERE `entry`=30188; +UPDATE `locales_creature` SET `name_loc2`='Croisé de vertu' WHERE `entry`=30189; +UPDATE `locales_creature` SET `name_loc2`='Spectateur de l''amphithéâtre' WHERE `entry`=30193; +UPDATE `locales_creature` SET `name_loc2`='Allié ressuscité' WHERE `entry`=30230; +UPDATE `locales_creature` SET `name_loc2`='Eclaireur saccage-soleil' WHERE `entry`=30233; +UPDATE `locales_creature` SET `name_loc2`='Eclaireur du Concordat argenté' WHERE `entry`=30238; +UPDATE `locales_creature` SET `name_loc2`='Seigneur du Nexus' WHERE `entry`=30245; +UPDATE `locales_creature` SET `name_loc2`='Cavalier du Concordat argenté' WHERE `entry`=30263; +UPDATE `locales_creature` SET `name_loc2`='Chevaucheur saccage-soleil' WHERE `entry`=30265; +UPDATE `locales_creature` SET `name_loc2`='Croisé libéré' WHERE `entry`=30274; +UPDATE `locales_creature` SET `name_loc2`='Mécanicien gobelin' WHERE `entry`=30400; +UPDATE `locales_creature` SET `name_loc2`='Croisé capturé' WHERE `entry`=30407; +UPDATE `locales_creature` SET `name_loc2`='Envoyé du rivage des Anciens' WHERE `entry`=30567; +UPDATE `locales_creature` SET `name_loc2`='Chasseur de mages vétéran' WHERE `entry`=30665; +UPDATE `locales_creature` SET `name_loc2`='Croisé de vertu' WHERE `entry`=30672; +UPDATE `locales_creature` SET `name_loc2`='Champion d''argent' WHERE `entry`=30675; +UPDATE `locales_creature` SET `name_loc2`='Champion de la Lame d''ébène' WHERE `entry`=30703; +UPDATE `locales_creature` SET `name_loc2`='Champion chanteguerre' WHERE `entry`=30739; +UPDATE `locales_creature` SET `name_loc2`='Champion de l''expédition de la Bravoure' WHERE `entry`=30740; +UPDATE `locales_creature` SET `name_loc2`='Saccageur kor’’kron' WHERE `entry`=30755; +UPDATE `locales_creature` SET `name_loc2`='Veilleur des ombres du Marteau d''Orgrim' WHERE `entry`=30866; +UPDATE `locales_creature` SET `name_loc2`='Prêtre de bataille de l''avant-garde d''Argent' WHERE `entry`=30919; +UPDATE `locales_creature` SET `name_loc2`='Croisé de vertu' WHERE `entry`=31033; +UPDATE `locales_creature` SET `name_loc2`='Nécromancien du Fléau' WHERE `entry`=31096; +UPDATE `locales_creature` SET `name_loc2`='Citoyen de Stratholme agité' WHERE `entry`=31126; +UPDATE `locales_creature` SET `name_loc2`='Résident de Stratholme agité' WHERE `entry`=31127; +UPDATE `locales_creature` SET `name_loc2`='Berserker mourant' WHERE `entry`=31273; +UPDATE `locales_creature` SET `name_loc2`='Soigneur d''Argent' WHERE `entry`=31282; +UPDATE `locales_creature` SET `name_loc2`='Moissonneur de la Lame d''ébène' WHERE `entry`=31316; +UPDATE `locales_creature` SET `name_loc2`='Roturier orc' WHERE `entry`=31434; +UPDATE `locales_creature` SET `name_loc2`='Ecumeur chanteguerre' WHERE `entry`=31435; +UPDATE `locales_creature` SET `name_loc2`='Sorcier de Dalaran amical' WHERE `entry`=31522; +UPDATE `locales_creature` SET `name_loc2`='Gladiateur de Dalaran amical' WHERE `entry`=31523; +UPDATE `locales_creature` SET `name_loc2`='Réanimateur de wyrm' WHERE `entry`=31731; +UPDATE `locales_creature` SET `name_loc2`='Guide spirituel taunka' WHERE `entry`=31841; +UPDATE `locales_creature` SET `name_loc2`='Guide spirituel nain' WHERE `entry`=31842; +UPDATE `locales_creature` SET `name_loc2`='Mage humain' WHERE `entry`=31879; +UPDATE `locales_creature` SET `name_loc2`='Esprit de héros défunt' WHERE `entry`=32149; +UPDATE `locales_creature` SET `name_loc2`='Zélote élu' WHERE `entry`=32175; +UPDATE `locales_creature` SET `name_loc2`='Eclaireur du Marteau d''Orgrim' WHERE `entry`=32201; +UPDATE `locales_creature` SET `name_loc2`='Subjugateur sombre' WHERE `entry`=32236; +UPDATE `locales_creature` SET `name_loc2`='Initié amer' WHERE `entry`=32238; +UPDATE `locales_creature` SET `name_loc2`='Croisé déguisé' WHERE `entry`=32241; +UPDATE `locales_creature` SET `name_loc2`='Héros converti' WHERE `entry`=32255; +UPDATE `locales_creature` SET `name_loc2`='Invocateur du Vide' WHERE `entry`=32259; +UPDATE `locales_creature` SET `name_loc2`='Prisonnier terrassé' WHERE `entry`=32275; +UPDATE `locales_creature` SET `name_loc2`='Vil tortionnaire' WHERE `entry`=32279; +UPDATE `locales_creature` SET `name_loc2`='Guerrier vert' WHERE `entry`=32321; +UPDATE `locales_creature` SET `name_loc2`='Guerrier doré' WHERE `entry`=32322; +UPDATE `locales_creature` SET `name_loc2`='Mage vert' WHERE `entry`=32324; +UPDATE `locales_creature` SET `name_loc2`='Prêtre vert' WHERE `entry`=32343; +UPDATE `locales_creature` SET `name_loc2`='Citoyen de Dalaran' WHERE `entry`=32453; +UPDATE `locales_creature` SET `name_loc2`='Citoyen de Dalaran' WHERE `entry`=32454; +UPDATE `locales_creature` SET `name_loc2`='Initié de la Lame d''ébène' WHERE `entry`=32468; +UPDATE `locales_creature` SET `name_loc2`='Dalaranais blessé' WHERE `entry`=32493; +UPDATE `locales_creature` SET `name_loc2`='Visiteur de Dalaran' WHERE `entry`=32596; +UPDATE `locales_creature` SET `name_loc2`='Visiteur de Dalaran' WHERE `entry`=32597; +UPDATE `locales_creature` SET `name_loc2`='Visiteur de Dalaran' WHERE `entry`=32598; +UPDATE `locales_creature` SET `name_loc2`='Visiteur de Dalaran' WHERE `entry`=32600; +UPDATE `locales_creature` SET `name_loc2`='Visiteur de Dalaran' WHERE `entry`=32601; +UPDATE `locales_creature` SET `name_loc2`='Visiteur de Dalaran' WHERE `entry`=32602; +UPDATE `locales_creature` SET `name_loc2`='Récolteur du printemps' WHERE `entry`=32798; +UPDATE `locales_creature` SET `name_loc2`='Collecteur du printemps' WHERE `entry`=32799; +UPDATE `locales_creature` SET `name_loc2`='Vendeur du Jardin des nobles' WHERE `entry`=32836; +UPDATE `locales_creature` SET `name_loc2`='Marchand du Jardin des nobles' WHERE `entry`=32837; +UPDATE `locales_creature` SET `name_loc2`='Vaillant de Sen''jin' WHERE `entry`=33285; +UPDATE `locales_creature` SET `name_loc2`='Vaillant d''Orgrimmar' WHERE `entry`=33306; +UPDATE `locales_creature` SET `name_loc2`='Vaillant de Lune-d''argent' WHERE `entry`=33382; +UPDATE `locales_creature` SET `name_loc2`='Vaillant des Pitons-du-Tonnerre' WHERE `entry`=33383; +UPDATE `locales_creature` SET `name_loc2`='Vaillant de Fossoyeuse' WHERE `entry`=33384; +UPDATE `locales_creature` SET `name_loc2`='Vaillant de Lune-d''argent' WHERE `entry`=33468; +UPDATE `locales_creature` SET `name_loc2`='Vaillant de Fossoyeuse' WHERE `entry`=33469; +UPDATE `locales_creature` SET `name_loc2`='Vaillant de Sen''jin' WHERE `entry`=33476; +UPDATE `locales_creature` SET `name_loc2`='Conspirateur du culte' WHERE `entry`=33537; +UPDATE `locales_creature` SET `name_loc2`='Vaillant de Gnomeregan' WHERE `entry`=33558; +UPDATE `locales_creature` SET `name_loc2`='Vaillant de Darnassus' WHERE `entry`=33559; +UPDATE `locales_creature` SET `name_loc2`='Vaillant de Hurlevent' WHERE `entry`=33561; +UPDATE `locales_creature` SET `name_loc2`='Vaillant de l''Exodar' WHERE `entry`=33562; +UPDATE `locales_creature` SET `name_loc2`='Vaillant de Forgefer' WHERE `entry`=33564; +UPDATE `locales_creature` SET `name_loc2`='Démolisseur embauché' WHERE `entry`=33627; +UPDATE `locales_creature` SET `name_loc2`='Gardien du Concordat argenté' WHERE `entry`=33643; +UPDATE `locales_creature` SET `name_loc2`='Sectateur bombardier' WHERE `entry`=33695; +UPDATE `locales_creature` SET `name_loc2`='Champion d''argent' WHERE `entry`=33707; +UPDATE `locales_creature` SET `name_loc2`='Adhérent du Crépuscule' WHERE `entry`=33818; +UPDATE `locales_creature` SET `name_loc2`='Aspirant captif' WHERE `entry`=34716; +UPDATE `locales_creature` SET `name_loc2`='Spectateur du colisée tauren' WHERE `entry`=34858; +UPDATE `locales_creature` SET `name_loc2`='Spectateur du colisée orc' WHERE `entry`=34859; +UPDATE `locales_creature` SET `name_loc2`='Spectateur du colisée elfe de sang' WHERE `entry`=34861; +UPDATE `locales_creature` SET `name_loc2`='Spectateur du colisée draeneï' WHERE `entry`=34868; +UPDATE `locales_creature` SET `name_loc2`='Spectateur du colisée gnome' WHERE `entry`=34869; +UPDATE `locales_creature` SET `name_loc2`='Spectateur du colisée humain' WHERE `entry`=34870; +UPDATE `locales_creature` SET `name_loc2`='Envoyé de l''île des Conquérants' WHERE `entry`=34949; +UPDATE `locales_creature` SET `name_loc2`='Envoyé de l’’île des Conquérants' WHERE `entry`=34951; +UPDATE `locales_creature` SET `name_loc2`='Spectateur de la Croisade d''argent' WHERE `entry`=34970; +UPDATE `locales_creature` SET `name_loc2`='Marinier du Faucon-de-feu' WHERE `entry`=35070; +UPDATE `locales_creature` SET `name_loc2`='Aspirant sacrifié' WHERE `entry`=35097; +UPDATE `locales_creature` SET `name_loc2`='Marinier du Hautevague' WHERE `entry`=35098; +UPDATE `locales_creature` SET `name_loc2`='Saboteur du Culte' WHERE `entry`=35116; +UPDATE `locales_creature` SET `name_loc2`='Noceur elfe de sang fantomatique' WHERE `entry`=35243; +UPDATE `locales_creature` SET `name_loc2`='Noceur réprouvé fantomatique' WHERE `entry`=35244; +UPDATE `locales_creature` SET `name_loc2`='Noceur draeneï fantomatique' WHERE `entry`=35246; +UPDATE `locales_creature` SET `name_loc2`='Noceur nain fantomatique' WHERE `entry`=35247; +UPDATE `locales_creature` SET `name_loc2`='Noceur gnome fantomatique' WHERE `entry`=35248; +UPDATE `locales_creature` SET `name_loc2`='Noceur humain fantomatique' WHERE `entry`=35249; +UPDATE `locales_creature` SET `name_loc2`='Noceur elfe de la nuit fantomatique' WHERE `entry`=35250; +UPDATE `locales_creature` SET `name_loc2`='Noceur orc fantomatique' WHERE `entry`=35251; +UPDATE `locales_creature` SET `name_loc2`='Noceur tauren fantomatique' WHERE `entry`=35252; +UPDATE `locales_creature` SET `name_loc2`='Noceur troll fantomatique' WHERE `entry`=35253; +UPDATE `locales_creature` SET `name_loc2`='Noceur de Dalaran fantomatique' WHERE `entry`=35254; +UPDATE `locales_creature` SET `name_loc2`='Noceur de l''Aldor fantomatique' WHERE `entry`=35258; +UPDATE `locales_creature` SET `name_loc2`='Noceur des Clairvoyants fantomatique' WHERE `entry`=35259; +UPDATE `locales_creature` SET `name_loc2`='Manieur de lumière d''argent' WHERE `entry`=35309; +UPDATE `locales_creature` SET `name_loc2`='Saccageur kor’’kron' WHERE `entry`=36164; +UPDATE `locales_creature` SET `name_loc2`='Surveillant kor’’kron' WHERE `entry`=36213; +UPDATE `locales_creature` SET `name_loc2`='Moissonneur garde-âme' WHERE `entry`=36499; +UPDATE `locales_creature` SET `name_loc2`='Animateur garde-âme' WHERE `entry`=36516; +UPDATE `locales_creature` SET `name_loc2`='Apothicaire affolé' WHERE `entry`=36568; +UPDATE `locales_creature` SET `name_loc2`='Serviteur nécrorateur' WHERE `entry`=36805; +UPDATE `locales_creature` SET `name_loc2`='Domestique nécrorateur' WHERE `entry`=36811; +UPDATE `locales_creature` SET `name_loc2`='Esclave de la Horde secouru' WHERE `entry`=36889; +UPDATE `locales_creature` SET `name_loc2`='Saccageur kor’’kron' WHERE `entry`=36957; +UPDATE `locales_creature` SET `name_loc2`='Protecteur du Brise-ciel' WHERE `entry`=36998; +UPDATE `locales_creature` SET `name_loc2`='Sorcier du Brise-ciel' WHERE `entry`=37026; +UPDATE `locales_creature` SET `name_loc2`='Saccageur kor’’kron' WHERE `entry`=37029; +UPDATE `locales_creature` SET `name_loc2`='Primaliste kor''kron' WHERE `entry`=37030; +UPDATE `locales_creature` SET `name_loc2`='Invocateur kor''kron' WHERE `entry`=37033; +UPDATE `locales_creature` SET `name_loc2`='Sorcier du Brise-ciel' WHERE `entry`=37116; +UPDATE `locales_creature` SET `name_loc2`='Mage de bataille kor''kron' WHERE `entry`=37117; +UPDATE `locales_creature` SET `name_loc2`='Tireur d''élite du Brise-ciel' WHERE `entry`=37144; +UPDATE `locales_creature` SET `name_loc2`='Nécrolyte kor’’kron' WHERE `entry`=37149; +UPDATE `locales_creature` SET `name_loc2`='Laquais de La Royale' WHERE `entry`=37214; +UPDATE `locales_creature` SET `name_loc2`='Champion du colisée' WHERE `entry`=37497; +UPDATE `locales_creature` SET `name_loc2`='Champion du colisée' WHERE `entry`=37498; +UPDATE `locales_creature` SET `name_loc2`='Guerrier du Soleil brisé' WHERE `entry`=37512; +UPDATE `locales_creature` SET `name_loc2`='Gardien du Puits de soleil' WHERE `entry`=37523; +UPDATE `locales_creature` SET `name_loc2`='Esclave de l''Alliance libéré' WHERE `entry`=37572; +UPDATE `locales_creature` SET `name_loc2`='Esclave de l''Alliance libéré' WHERE `entry`=37575; +UPDATE `locales_creature` SET `name_loc2`='Esclave de l''Alliance libéré' WHERE `entry`=37576; +UPDATE `locales_creature` SET `name_loc2`='Esclave de la Horde libéré' WHERE `entry`=37577; +UPDATE `locales_creature` SET `name_loc2`='Esclave de la Horde libéré' WHERE `entry`=37578; +UPDATE `locales_creature` SET `name_loc2`='Esclave de la Horde libéré' WHERE `entry`=37579; +UPDATE `locales_creature` SET `name_loc2`='Champion du colisée' WHERE `entry`=37587; +UPDATE `locales_creature` SET `name_loc2`='Noble ténébrant' WHERE `entry`=37663; +UPDATE `locales_creature` SET `name_loc2`='Tacticien ténébrant' WHERE `entry`=37666; +UPDATE `locales_creature` SET `name_loc2`='Citoyen de Hurlevent' WHERE `entry`=37787; +UPDATE `locales_creature` SET `name_loc2`='Surveillant kor’’kron' WHERE `entry`=37825; +UPDATE `locales_creature` SET `name_loc2`='Gardien des Hauts' WHERE `entry`=37860; +UPDATE `locales_creature` SET `name_loc2`='Saccageur kor’’kron' WHERE `entry`=37920; +UPDATE `locales_creature` SET `name_loc2`='Champion d''argent' WHERE `entry`=37928; +UPDATE `locales_creature` SET `name_loc2`='Fauteur de troubles sombrefer' WHERE `entry`=37937; +UPDATE `locales_creature` SET `name_loc2`='Epousseteur de La Royale' WHERE `entry`=37984; +UPDATE `locales_creature` SET `name_loc2`='Champion d''ébène' WHERE `entry`=37996; +UPDATE `locales_creature` SET `name_loc2`='Truand de La Royale' WHERE `entry`=38006; +UPDATE `locales_creature` SET `name_loc2`='Arroseur de La Royale' WHERE `entry`=38023; +UPDATE `locales_creature` SET `name_loc2`='Diffuseur de La Royale' WHERE `entry`=38032; +UPDATE `locales_creature` SET `name_loc2`='Pèlerin elfe de sang' WHERE `entry`=38047; +UPDATE `locales_creature` SET `name_loc2`='Pèlerin haut-elfe' WHERE `entry`=38048; +UPDATE `locales_creature` SET `name_loc2`='Jeune pèlerin' WHERE `entry`=38049; +UPDATE `locales_creature` SET `name_loc2`='Citoyen d''Orgrimmar' WHERE `entry`=38067; +UPDATE `locales_creature` SET `name_loc2`='Croisé d''argent' WHERE `entry`=38493; +UPDATE `locales_creature` SET `name_loc2`='Croisé d''argent' WHERE `entry`=38497; +UPDATE `locales_creature` SET `name_loc2`='Gardien des Hauts assassiné' WHERE `entry`=38831; +UPDATE `locales_creature` SET `name_loc2`='Civil de Forgefer' WHERE `entry`=38901; +UPDATE `locales_creature` SET `name_loc2`='Chercheur du Crépuscule' WHERE `entry`=39103; +UPDATE `locales_creature` SET `name_loc2`='Evacué de Gnomeregan secouru' WHERE `entry`=39265; +UPDATE `locales_creature` SET `name_loc2`='Citoyen d''Orgrimmar' WHERE `entry`=39343; +UPDATE `locales_creature` SET `name_loc2`='Citoyen d''Orgrimmar' WHERE `entry`=39632; +UPDATE `locales_creature` SET `name_loc2`='Protecteur de Sen''jin' WHERE `entry`=39633; +UPDATE `locales_creature` SET `name_loc2`='Sectateur de l''apocalypse' WHERE `entry`=39648; +UPDATE `locales_creature` SET `name_loc2`='Citoyen de Hurlevent' WHERE `entry`=39686; +UPDATE `locales_creature` SET `name_loc2`='Citoyen inquiet' WHERE `entry`=39861; +UPDATE `locales_creature` SET `name_loc2`='Sectateur de l''apocalypse' WHERE `entry`=39891; +UPDATE `locales_creature` SET `name_loc2`='Chercheur mort' WHERE `entry`=39940; +UPDATE `locales_creature` SET `name_loc2`='Citoyen inquiet' WHERE `entry`=40110; +UPDATE `locales_creature` SET `name_loc2`='Citoyen de Hurlevent' WHERE `entry`=40125; +UPDATE `locales_creature` SET `name_loc2`='Troll décérébré' WHERE `entry`=40195; +UPDATE `locales_creature` SET `name_loc2`='Troll maléficié' WHERE `entry`=40231; +UPDATE `locales_creature` SET `name_loc2`='Guerrier sombrelance' WHERE `entry`=40241; +UPDATE `locales_creature` SET `name_loc2`='Guerrier sombrelance' WHERE `entry`=40392; +UPDATE `locales_creature` SET `name_loc2`='Eclaireur sombrelance' WHERE `entry`=40416; +UPDATE `locales_creature` SET `name_loc2`='Troll vaudou' WHERE `entry`=40425; +UPDATE `locales_creature` SET `name_loc2`='Noceur troll' WHERE `entry`=40481; +-- Male deDE +UPDATE `locales_creature` SET `name_loc3`='Taschendieb' WHERE `entry`=94; +UPDATE `locales_creature` SET `name_loc3`='Schmuggler der Defias' WHERE `entry`=95; +UPDATE `locales_creature` SET `name_loc3`='Bandit' WHERE `entry`=116; +UPDATE `locales_creature` SET `name_loc3`='Pfadpirscher der Defias' WHERE `entry`=121; +UPDATE `locales_creature` SET `name_loc3`='Nachtläufer der Defias' WHERE `entry`=215; +UPDATE `locales_creature` SET `name_loc3`='Grabräuber' WHERE `entry`=218; +UPDATE `locales_creature` SET `name_loc3`='Knöchelhauer der Defias' WHERE `entry`=449; +UPDATE `locales_creature` SET `name_loc3`='Renegatenmagier der Defias' WHERE `entry`=450; +UPDATE `locales_creature` SET `name_loc3`='Abtrünniger Hexer' WHERE `entry`=474; +UPDATE `locales_creature` SET `name_loc3`='Schleicher der Defias' WHERE `entry`=481; +UPDATE `locales_creature` SET `name_loc3`='Fallensteller der Defias' WHERE `entry`=504; +UPDATE `locales_creature` SET `name_loc3`='Plünderer der Defias' WHERE `entry`=589; +UPDATE `locales_creature` SET `name_loc3`='Ausplünderer der Defias' WHERE `entry`=590; +UPDATE `locales_creature` SET `name_loc3`='Beschwörer der Defias' WHERE `entry`=619; +UPDATE `locales_creature` SET `name_loc3`='Vorarbeiter der Defias' WHERE `entry`=634; +UPDATE `locales_creature` SET `name_loc3`='Lump der Defias' WHERE `entry`=636; +UPDATE `locales_creature` SET `name_loc3`='Gebirgsjäger von Eisenschmiede' WHERE `entry`=727; +UPDATE `locales_creature` SET `name_loc3`='Gebirgsjäger der Eisklamm' WHERE `entry`=853; +UPDATE `locales_creature` SET `name_loc3`='Späher von Steinard' WHERE `entry`=861; +UPDATE `locales_creature` SET `name_loc3`='Forscher von Steinard' WHERE `entry`=862; +UPDATE `locales_creature` SET `name_loc3`='Jäger von Steinard' WHERE `entry`=863; +UPDATE `locales_creature` SET `name_loc3`='Grunzer von Steinard' WHERE `entry`=866; +UPDATE `locales_creature` SET `name_loc3`='Krieger der Salzschuppen' WHERE `entry`=871; +UPDATE `locales_creature` SET `name_loc3`='Gezeitenlord der Salzschuppen' WHERE `entry`=875; +UPDATE `locales_creature` SET `name_loc3`='Futterwühler der Salzschuppen' WHERE `entry`=877; +UPDATE `locales_creature` SET `name_loc3`='Jäger der Salzschuppen' WHERE `entry`=879; +UPDATE `locales_creature` SET `name_loc3`='Verzauberer der Defias' WHERE `entry`=910; +UPDATE `locales_creature` SET `name_loc3`='Novize der Frostmähnen' WHERE `entry`=946; +UPDATE `locales_creature` SET `name_loc3`='Grunzer von Grom''gol' WHERE `entry`=1064; +UPDATE `locales_creature` SET `name_loc3`='Schneeschreiter der Frostmähnen' WHERE `entry`=1121; +UPDATE `locales_creature` SET `name_loc3`='Balgabzieher der Frostmähnen' WHERE `entry`=1122; +UPDATE `locales_creature` SET `name_loc3`='Kopfjäger der Frostmähnen' WHERE `entry`=1123; +UPDATE `locales_creature` SET `name_loc3`='Schattenzauberer der Frostmähnen' WHERE `entry`=1124; +UPDATE `locales_creature` SET `name_loc3`='Seher der Frostmähnen' WHERE `entry`=1397; +UPDATE `locales_creature` SET `name_loc3`='Blutwärter der Feuerschwingen' WHERE `entry`=1410; +UPDATE `locales_creature` SET `name_loc3`='Scharlachroter Konvertit' WHERE `entry`=1506; +UPDATE `locales_creature` SET `name_loc3`='Scharlachroter Initiand' WHERE `entry`=1507; +UPDATE `locales_creature` SET `name_loc3`='Scharlachroter Krieger' WHERE `entry`=1535; +UPDATE `locales_creature` SET `name_loc3`='Scharlachroter Missionar' WHERE `entry`=1536; +UPDATE `locales_creature` SET `name_loc3`='Scharlachroter Zelot' WHERE `entry`=1537; +UPDATE `locales_creature` SET `name_loc3`='Scharlachrotes Ordensmitglied' WHERE `entry`=1538; +UPDATE `locales_creature` SET `name_loc3`='Scharlachroter Neophyt' WHERE `entry`=1539; +UPDATE `locales_creature` SET `name_loc3`='Hexenmeister der Blutsegelbukaniere' WHERE `entry`=1564; +UPDATE `locales_creature` SET `name_loc3`='Magicus der Defias' WHERE `entry`=1726; +UPDATE `locales_creature` SET `name_loc3`='Rufer der Defias' WHERE `entry`=1729; +UPDATE `locales_creature` SET `name_loc3`='Wellenformer der Defias' WHERE `entry`=1732; +UPDATE `locales_creature` SET `name_loc3`='Scharlachroter Magier' WHERE `entry`=1826; +UPDATE `locales_creature` SET `name_loc3`='Scharlachroter Jäger' WHERE `entry`=1831; +UPDATE `locales_creature` SET `name_loc3`='Scharlachroter Magus' WHERE `entry`=1832; +UPDATE `locales_creature` SET `name_loc3`='Scharlachroter Herbeirufer' WHERE `entry`=1835; +UPDATE `locales_creature` SET `name_loc3`='Scharlachroter Dragoner' WHERE `entry`=1836; +UPDATE `locales_creature` SET `name_loc3`='Scharlachroter Tagelöhner' WHERE `entry`=1883; +UPDATE `locales_creature` SET `name_loc3`='Scharlachroter Holzfäller' WHERE `entry`=1884; +UPDATE `locales_creature` SET `name_loc3`='Scharlachroter Schmied' WHERE `entry`=1885; +UPDATE `locales_creature` SET `name_loc3`='Behüter von Mühlenbern' WHERE `entry`=1888; +UPDATE `locales_creature` SET `name_loc3`='Hexer von Mühlenbern' WHERE `entry`=1889; +UPDATE `locales_creature` SET `name_loc3`='Beschützer von Mühlenbern' WHERE `entry`=1912; +UPDATE `locales_creature` SET `name_loc3`='Wärter von Mühlenbern' WHERE `entry`=1913; +UPDATE `locales_creature` SET `name_loc3`='Magister von Mühlenbern' WHERE `entry`=1914; +UPDATE `locales_creature` SET `name_loc3`='Herbeizauberer von Mühlenbern' WHERE `entry`=1915; +UPDATE `locales_creature` SET `name_loc3`='Zauberschreiber von Mühlenbern' WHERE `entry`=1920; +UPDATE `locales_creature` SET `name_loc3`='Diener von Azora' WHERE `entry`=1949; +UPDATE `locales_creature` SET `name_loc3`='Stadtpatrolleur von Sturmwind' WHERE `entry`=1976; +UPDATE `locales_creature` SET `name_loc3`='Bürger von Mühlenbern' WHERE `entry`=2087; +UPDATE `locales_creature` SET `name_loc3`='Schleicher des Syndikats' WHERE `entry`=2240; +UPDATE `locales_creature` SET `name_loc3`='Dieb des Syndikats' WHERE `entry`=2241; +UPDATE `locales_creature` SET `name_loc3`='Spion des Syndikats' WHERE `entry`=2242; +UPDATE `locales_creature` SET `name_loc3`='Saboteur des Syndikats' WHERE `entry`=2245; +UPDATE `locales_creature` SET `name_loc3`='Auftragsmörder des Syndikats' WHERE `entry`=2246; +UPDATE `locales_creature` SET `name_loc3`='Vollstrecker des Syndikats' WHERE `entry`=2247; +UPDATE `locales_creature` SET `name_loc3`='Schneider des Hügellands' WHERE `entry`=2264; +UPDATE `locales_creature` SET `name_loc3`='Arbeiter des Hügellands' WHERE `entry`=2267; +UPDATE `locales_creature` SET `name_loc3`='Theurg von Dalaran' WHERE `entry`=2272; +UPDATE `locales_creature` SET `name_loc3`='Schattenmagier der Arguswacht' WHERE `entry`=2318; +UPDATE `locales_creature` SET `name_loc3`='Hexer des Syndikats' WHERE `entry`=2319; +UPDATE `locales_creature` SET `name_loc3`='Zwielichtjünger' WHERE `entry`=2338; +UPDATE `locales_creature` SET `name_loc3`='Gebirgsjäger von Dun Garok' WHERE `entry`=2344; +UPDATE `locales_creature` SET `name_loc3`='Scharfschütze von Dun Garok' WHERE `entry`=2345; +UPDATE `locales_creature` SET `name_loc3`='Priester von Dun Garok' WHERE `entry`=2346; +UPDATE `locales_creature` SET `name_loc3`='Beschwörer von Dalaran' WHERE `entry`=2358; +UPDATE `locales_creature` SET `name_loc3`='Schattenzauberer der Bleichborken' WHERE `entry`=2553; +UPDATE `locales_creature` SET `name_loc3`='Axtwerfer der Bleichborken' WHERE `entry`=2554; +UPDATE `locales_creature` SET `name_loc3`='Hexendoktor der Bleichborken' WHERE `entry`=2555; +UPDATE `locales_creature` SET `name_loc3`='Kopfjäger der Bleichborken' WHERE `entry`=2556; +UPDATE `locales_creature` SET `name_loc3`='Schattenjäger der Bleichborken' WHERE `entry`=2557; +UPDATE `locales_creature` SET `name_loc3`='Berserker der Bleichborken' WHERE `entry`=2558; +UPDATE `locales_creature` SET `name_loc3`='Milizsoldat der Dabyries' WHERE `entry`=2581; +UPDATE `locales_creature` SET `name_loc3`='Trolljäger von Stromgarde' WHERE `entry`=2583; +UPDATE `locales_creature` SET `name_loc3`='Vollstrecker von Stromgarde' WHERE `entry`=2584; +UPDATE `locales_creature` SET `name_loc3`='Soldat von Stromgarde' WHERE `entry`=2585; +UPDATE `locales_creature` SET `name_loc3`='Pfadpirscher des Syndikats' WHERE `entry`=2587; +UPDATE `locales_creature` SET `name_loc3`='Streuner des Syndikats' WHERE `entry`=2588; +UPDATE `locales_creature` SET `name_loc3`='Söldner des Syndikats' WHERE `entry`=2589; +UPDATE `locales_creature` SET `name_loc3`='Herbeizauberer des Syndikats' WHERE `entry`=2590; +UPDATE `locales_creature` SET `name_loc3`='Magus des Syndikats' WHERE `entry`=2591; +UPDATE `locales_creature` SET `name_loc3`='Wächter von Hammerfall' WHERE `entry`=2621; +UPDATE `locales_creature` SET `name_loc3`='Deckmatrose der Schwarzmeerräuber' WHERE `entry`=2636; +UPDATE `locales_creature` SET `name_loc3`='Axtwerfer der Blutfratzen' WHERE `entry`=2639; +UPDATE `locales_creature` SET `name_loc3`='Hexendoktor der Blutfratzen' WHERE `entry`=2640; +UPDATE `locales_creature` SET `name_loc3`='Kopfjäger der Blutfratzen' WHERE `entry`=2641; +UPDATE `locales_creature` SET `name_loc3`='Schattenzauberer der Blutfratzen' WHERE `entry`=2642; +UPDATE `locales_creature` SET `name_loc3`='Berserker der Blutfratzen' WHERE `entry`=2643; +UPDATE `locales_creature` SET `name_loc3`='Balgabzieher der Blutfratzen' WHERE `entry`=2644; +UPDATE `locales_creature` SET `name_loc3`='Schattenjäger der Blutfratzen' WHERE `entry`=2645; +UPDATE `locales_creature` SET `name_loc3`='Bluttrinker der Blutfratzen' WHERE `entry`=2646; +UPDATE `locales_creature` SET `name_loc3`='Seelenfresser der Blutfratzen' WHERE `entry`=2647; +UPDATE `locales_creature` SET `name_loc3`='Skalpierer der Bleichborken' WHERE `entry`=2649; +UPDATE `locales_creature` SET `name_loc3`='Zelot der Bleichborken' WHERE `entry`=2650; +UPDATE `locales_creature` SET `name_loc3`='Balgabzieher der Bleichborken' WHERE `entry`=2651; +UPDATE `locales_creature` SET `name_loc3`='Giftmischer der Bleichborken' WHERE `entry`=2652; +UPDATE `locales_creature` SET `name_loc3`='Sadist der Bleichborken' WHERE `entry`=2653; +UPDATE `locales_creature` SET `name_loc3`='Rufer der Bleichborken' WHERE `entry`=2654; +UPDATE `locales_creature` SET `name_loc3`='Versklavter Druide der Kralle' WHERE `entry`=2852; +UPDATE `locales_creature` SET `name_loc3`='Befreiter Druide der Kralle' WHERE `entry`=2853; +UPDATE `locales_creature` SET `name_loc3`='Vorsteher der Venture Co.' WHERE `entry`=2979; +UPDATE `locales_creature` SET `name_loc3`='Buddler von Bael''dun' WHERE `entry`=2989; +UPDATE `locales_creature` SET `name_loc3`='Gutachter von Bael''dun' WHERE `entry`=2990; +UPDATE `locales_creature` SET `name_loc3`='Behüter von Donnerfels' WHERE `entry`=3084; +UPDATE `locales_creature` SET `name_loc3`='Matrose von Kul Tiras' WHERE `entry`=3128; +UPDATE `locales_creature` SET `name_loc3`='Marinesoldat von Kul Tiras' WHERE `entry`=3129; +UPDATE `locales_creature` SET `name_loc3`='Neophyt der Brennenden Klinge' WHERE `entry`=3196; +UPDATE `locales_creature` SET `name_loc3`='Fanatiker der Brennenden Klinge' WHERE `entry`=3197; +UPDATE `locales_creature` SET `name_loc3`='Kultist der Brennenden Klinge' WHERE `entry`=3199; +UPDATE `locales_creature` SET `name_loc3`='Zwangsarbeiter der Venture Co.' WHERE `entry`=3284; +UPDATE `locales_creature` SET `name_loc3`='Vorarbeiter der Venture Co.' WHERE `entry`=3286; +UPDATE `locales_creature` SET `name_loc3`='Grunzer von Orgrimmar' WHERE `entry`=3296; +UPDATE `locales_creature` SET `name_loc3`='Behüter von Sen''jin' WHERE `entry`=3297; +UPDATE `locales_creature` SET `name_loc3`='Ausgräber von Bael''dun' WHERE `entry`=3374; +UPDATE `locales_creature` SET `name_loc3`='Soldat von Bael''dun' WHERE `entry`=3376; +UPDATE `locales_creature` SET `name_loc3`='Scharfschütze von Bael''dun' WHERE `entry`=3377; +UPDATE `locales_creature` SET `name_loc3`='Offizier von Bael''dun' WHERE `entry`=3378; +UPDATE `locales_creature` SET `name_loc3`='Akolyth der Brennenden Klinge' WHERE `entry`=3380; +UPDATE `locales_creature` SET `name_loc3`='Brigant der Südmeerfreibeuter' WHERE `entry`=3381; +UPDATE `locales_creature` SET `name_loc3`='Kanonier der Südmeerfreibeuter' WHERE `entry`=3382; +UPDATE `locales_creature` SET `name_loc3`='Halsabschneider der Südmeerfreibeuter' WHERE `entry`=3383; +UPDATE `locales_creature` SET `name_loc3`='Kaperer der Südmeerfreibeuter' WHERE `entry`=3384; +UPDATE `locales_creature` SET `name_loc3`='Marinesoldat von Theramore' WHERE `entry`=3385; +UPDATE `locales_creature` SET `name_loc3`='Kultist des Dunklen Strangs' WHERE `entry`=3725; +UPDATE `locales_creature` SET `name_loc3`='Vollstrecker des Dunklen Strangs' WHERE `entry`=3727; +UPDATE `locales_creature` SET `name_loc3`='Adept des Dunklen Strangs' WHERE `entry`=3728; +UPDATE `locales_creature` SET `name_loc3`='Ausgräber des Dunklen Strangs' WHERE `entry`=3730; +UPDATE `locales_creature` SET `name_loc3`='Sucher der Verlassenen' WHERE `entry`=3732; +UPDATE `locales_creature` SET `name_loc3`='Kräuterkundiger der Verlassenen' WHERE `entry`=3733; +UPDATE `locales_creature` SET `name_loc3`='Orcischer Aufseher' WHERE `entry`=3734; +UPDATE `locales_creature` SET `name_loc3`='Pfützenspringer der Salzflossen' WHERE `entry`=3737; +UPDATE `locales_creature` SET `name_loc3`='Krieger der Salzflossen' WHERE `entry`=3739; +UPDATE `locales_creature` SET `name_loc3`='Matschwirbler der Salzflossen' WHERE `entry`=3740; +UPDATE `locales_creature` SET `name_loc3`='Druide der Kralle' WHERE `entry`=3794; +UPDATE `locales_creature` SET `name_loc3`='Cenarischer Beschützer' WHERE `entry`=3797; +UPDATE `locales_creature` SET `name_loc3`='Auftragsmörder der Verlassenen' WHERE `entry`=3807; +UPDATE `locales_creature` SET `name_loc3`='Dunkelpirscher der Verlassenen' WHERE `entry`=3808; +UPDATE `locales_creature` SET `name_loc3`='Druide des Giftzahns' WHERE `entry`=3840; +UPDATE `locales_creature` SET `name_loc3`='Verhexter Bediensteter' WHERE `entry`=3875; +UPDATE `locales_creature` SET `name_loc3`='Späher der Verlassenen' WHERE `entry`=3893; +UPDATE `locales_creature` SET `name_loc3`='Maschinenführer der Venture Co.' WHERE `entry`=3988; +UPDATE `locales_creature` SET `name_loc3`='Bewacher der Venture Co.' WHERE `entry`=3992; +UPDATE `locales_creature` SET `name_loc3`='Maschinenschmied der Venture Co.' WHERE `entry`=3993; +UPDATE `locales_creature` SET `name_loc3`='Cenarischer Botaniker' WHERE `entry`=4051; +UPDATE `locales_creature` SET `name_loc3`='Cenarischer Druide' WHERE `entry`=4052; +UPDATE `locales_creature` SET `name_loc3`='Scharlachroter Bewahrer' WHERE `entry`=4280; +UPDATE `locales_creature` SET `name_loc3`='Scharlachroter Späher' WHERE `entry`=4281; +UPDATE `locales_creature` SET `name_loc3`='Scharlachroter Magicus' WHERE `entry`=4282; +UPDATE `locales_creature` SET `name_loc3`='Scharlachroter Augur' WHERE `entry`=4284; +UPDATE `locales_creature` SET `name_loc3`='Scharlachroter Jünger' WHERE `entry`=4285; +UPDATE `locales_creature` SET `name_loc3`='Scharlachroter Soldat' WHERE `entry`=4286; +UPDATE `locales_creature` SET `name_loc3`='Scharlachroter Kavalier' WHERE `entry`=4287; +UPDATE `locales_creature` SET `name_loc3`='Scharlachroter Bestienmeister' WHERE `entry`=4288; +UPDATE `locales_creature` SET `name_loc3`='Scharlachroter Rufer' WHERE `entry`=4289; +UPDATE `locales_creature` SET `name_loc3`='Scharlachroter Rutengänger' WHERE `entry`=4291; +UPDATE `locales_creature` SET `name_loc3`='Scharlachroter Beschützer' WHERE `entry`=4292; +UPDATE `locales_creature` SET `name_loc3`='Scharlachroter Wahrsager' WHERE `entry`=4293; +UPDATE `locales_creature` SET `name_loc3`='Scharlachroter Adept' WHERE `entry`=4296; +UPDATE `locales_creature` SET `name_loc3`='Scharlachroter Herbeizauberer' WHERE `entry`=4297; +UPDATE `locales_creature` SET `name_loc3`='Scharlachroter Verteidiger' WHERE `entry`=4298; +UPDATE `locales_creature` SET `name_loc3`='Scharlachroter Kaplan' WHERE `entry`=4299; +UPDATE `locales_creature` SET `name_loc3`='Scharlachroter Hexer' WHERE `entry`=4300; +UPDATE `locales_creature` SET `name_loc3`='Scharlachroter Folterer' WHERE `entry`=4306; +UPDATE `locales_creature` SET `name_loc3`='Zuchtmeister der Defias' WHERE `entry`=4417; +UPDATE `locales_creature` SET `name_loc3`='Hexer der Defias' WHERE `entry`=4418; +UPDATE `locales_creature` SET `name_loc3`='Beschützer von Darnassus' WHERE `entry`=4423; +UPDATE `locales_creature` SET `name_loc3`='Krieger der Blutfratzen' WHERE `entry`=4465; +UPDATE `locales_creature` SET `name_loc3`='Skalpierer der Blutfratzen' WHERE `entry`=4466; +UPDATE `locales_creature` SET `name_loc3`='Sterndeuter der Blutfratzen' WHERE `entry`=4467; +UPDATE `locales_creature` SET `name_loc3`='Scharlachroter Rächer' WHERE `entry`=4493; +UPDATE `locales_creature` SET `name_loc3`='Scharlachroter Zauberbinder' WHERE `entry`=4494; +UPDATE `locales_creature` SET `name_loc3`='Deckmatrose der Blutsegelbukaniere' WHERE `entry`=4505; +UPDATE `locales_creature` SET `name_loc3`='Scharlachroter Mönch' WHERE `entry`=4540; +UPDATE `locales_creature` SET `name_loc3`='Augur der Brennenden Klinge' WHERE `entry`=4663; +UPDATE `locales_creature` SET `name_loc3`='Häscher der Brennenden Klinge' WHERE `entry`=4664; +UPDATE `locales_creature` SET `name_loc3`='Adept der Brennenden Klinge' WHERE `entry`=4665; +UPDATE `locales_creature` SET `name_loc3`='Teufelsanbeter der Brennenden Klinge' WHERE `entry`=4666; +UPDATE `locales_creature` SET `name_loc3`='Schattenmagier der Brennenden Klinge' WHERE `entry`=4667; +UPDATE `locales_creature` SET `name_loc3`='Beschwörer der Brennenden Klinge' WHERE `entry`=4668; +UPDATE `locales_creature` SET `name_loc3`='Herbeirufer der Brennenden Klinge' WHERE `entry`=4705; +UPDATE `locales_creature` SET `name_loc3`='Gezeitenjäger der Zackenkämme' WHERE `entry`=4716; +UPDATE `locales_creature` SET `name_loc3`='Zwielichtakolyth' WHERE `entry`=4809; +UPDATE `locales_creature` SET `name_loc3`='Zwielichthäscher' WHERE `entry`=4810; +UPDATE `locales_creature` SET `name_loc3`='Zwielichtaquamant' WHERE `entry`=4811; +UPDATE `locales_creature` SET `name_loc3`='Zwielichtgelehrter' WHERE `entry`=4812; +UPDATE `locales_creature` SET `name_loc3`='Zwielichtelementarist' WHERE `entry`=4814; +UPDATE `locales_creature` SET `name_loc3`='Agent der Defias' WHERE `entry`=4970; +UPDATE `locales_creature` SET `name_loc3`='Scharmützler von Theramore' WHERE `entry`=5044; +UPDATE `locales_creature` SET `name_loc3`='Deserteur von Theramore' WHERE `entry`=5057; +UPDATE `locales_creature` SET `name_loc3`='Verfluchter Atal''ai' WHERE `entry`=5243; +UPDATE `locales_creature` SET `name_loc3`='Hexendoktor der Atal''ai' WHERE `entry`=5259; +UPDATE `locales_creature` SET `name_loc3`='Bezauberter Atal''ai' WHERE `entry`=5261; +UPDATE `locales_creature` SET `name_loc3`='Mumifizierter Atal''ai' WHERE `entry`=5263; +UPDATE `locales_creature` SET `name_loc3`='Untoter Atal''ai' WHERE `entry`=5267; +UPDATE `locales_creature` SET `name_loc3`='Priester der Atal''ai' WHERE `entry`=5269; +UPDATE `locales_creature` SET `name_loc3`='Leichenfresser der Atal''ai' WHERE `entry`=5270; +UPDATE `locales_creature` SET `name_loc3`='Todeswandler der Atal''ai' WHERE `entry`=5271; +UPDATE `locales_creature` SET `name_loc3`='Hohepriester der Atal''ai' WHERE `entry`=5273; +UPDATE `locales_creature` SET `name_loc3`='Verteidiger der Feuerschwingen' WHERE `entry`=5355; +UPDATE `locales_creature` SET `name_loc3`='Versklavter Ernter' WHERE `entry`=5409; +UPDATE `locales_creature` SET `name_loc3`='Karawanenbehüter' WHERE `entry`=5524; +UPDATE `locales_creature` SET `name_loc3`='Schurke der Wüstenläufer' WHERE `entry`=5615; +UPDATE `locales_creature` SET `name_loc3`='Dieb der Wüstenläufer' WHERE `entry`=5616; +UPDATE `locales_creature` SET `name_loc3`='Schattenmagier der Wüstenläufer' WHERE `entry`=5617; +UPDATE `locales_creature` SET `name_loc3`='Bandit der Wüstenläufer' WHERE `entry`=5618; +UPDATE `locales_creature` SET `name_loc3`='Auftragsmörder der Wüstenläufer' WHERE `entry`=5623; +UPDATE `locales_creature` SET `name_loc3`='Wächter von Unterstadt' WHERE `entry`=5624; +UPDATE `locales_creature` SET `name_loc3`='Magier von Theramore' WHERE `entry`=5630; +UPDATE `locales_creature` SET `name_loc3`='Balgabzieher der Sandwüter' WHERE `entry`=5645; +UPDATE `locales_creature` SET `name_loc3`='Axtwerfer der Sandwüter' WHERE `entry`=5646; +UPDATE `locales_creature` SET `name_loc3`='Feuerrufer der Sandwüter' WHERE `entry`=5647; +UPDATE `locales_creature` SET `name_loc3`='Schattenzauberer der Sandwüter' WHERE `entry`=5648; +UPDATE `locales_creature` SET `name_loc3`='Bluttrinker der Sandwüter' WHERE `entry`=5649; +UPDATE `locales_creature` SET `name_loc3`='Hexendoktor der Sandwüter' WHERE `entry`=5650; +UPDATE `locales_creature` SET `name_loc3`='Sklavenarbeiter' WHERE `entry`=5843; +UPDATE `locales_creature` SET `name_loc3`='Zwielichtdunkelschamane' WHERE `entry`=5860; +UPDATE `locales_creature` SET `name_loc3`='Zwielichtgeomant' WHERE `entry`=5862; +UPDATE `locales_creature` SET `name_loc3`='Grunzer des Höhlenbaus' WHERE `entry`=5952; +UPDATE `locales_creature` SET `name_loc3`='Grunzer von Klingenhügel' WHERE `entry`=5953; +UPDATE `locales_creature` SET `name_loc3`='Tagelöhner von Nethergarde' WHERE `entry`=5995; +UPDATE `locales_creature` SET `name_loc3`='Minenarbeiter von Nethergarde' WHERE `entry`=5996; +UPDATE `locales_creature` SET `name_loc3`='Ingenieur von Nethergarde' WHERE `entry`=5997; +UPDATE `locales_creature` SET `name_loc3`='Soldat von Nethergarde' WHERE `entry`=5999; +UPDATE `locales_creature` SET `name_loc3`='Kleriker von Nethergarde' WHERE `entry`=6000; +UPDATE `locales_creature` SET `name_loc3`='Analysator von Nethergarde' WHERE `entry`=6001; +UPDATE `locales_creature` SET `name_loc3`='Offizier von Nethergarde' WHERE `entry`=6003; +UPDATE `locales_creature` SET `name_loc3`='Ritualist der Schattenanbeter' WHERE `entry`=6004; +UPDATE `locales_creature` SET `name_loc3`='Adept der Schattenanbeter' WHERE `entry`=6006; +UPDATE `locales_creature` SET `name_loc3`='Vollstrecker der Schattenanbeter' WHERE `entry`=6007; +UPDATE `locales_creature` SET `name_loc3`='Hexenmeister der Schattenanbeter' WHERE `entry`=6008; +UPDATE `locales_creature` SET `name_loc3`='Schreckenswirker der Schattenanbeter' WHERE `entry`=6009; +UPDATE `locales_creature` SET `name_loc3`='Spion der Dunkeleisenzwerge' WHERE `entry`=6123; +UPDATE `locales_creature` SET `name_loc3`='Räuber der Defias' WHERE `entry`=6180; +UPDATE `locales_creature` SET `name_loc3`='Blutelfenfeldmesser' WHERE `entry`=6198; +UPDATE `locales_creature` SET `name_loc3`='Blutelfeneintreiber' WHERE `entry`=6199; +UPDATE `locales_creature` SET `name_loc3`='Aussätziger Verteidiger' WHERE `entry`=6223; +UPDATE `locales_creature` SET `name_loc3`='Ringkampfherausforderer' WHERE `entry`=6240; +UPDATE `locales_creature` SET `name_loc3`='Ringkampfzuschauer' WHERE `entry`=6249; +UPDATE `locales_creature` SET `name_loc3`='Bastionskrieger' WHERE `entry`=6391; +UPDATE `locales_creature` SET `name_loc3`='Bastionssanitäter' WHERE `entry`=6392; +UPDATE `locales_creature` SET `name_loc3`='Bastionstechniker' WHERE `entry`=6407; +UPDATE `locales_creature` SET `name_loc3`='Rabenholdtauftragsmörder' WHERE `entry`=6771; +UPDATE `locales_creature` SET `name_loc3`='Dockarbeiter' WHERE `entry`=6927; +UPDATE `locales_creature` SET `name_loc3`='Verurteilter Akolyth' WHERE `entry`=7068; +UPDATE `locales_creature` SET `name_loc3`='Verurteilter Mönch' WHERE `entry`=7069; +UPDATE `locales_creature` SET `name_loc3`='Verurteilter Kleriker' WHERE `entry`=7070; +UPDATE `locales_creature` SET `name_loc3`='Verdammter Magier' WHERE `entry`=7075; +UPDATE `locales_creature` SET `name_loc3`='Kultist von Jaedenar' WHERE `entry`=7112; +UPDATE `locales_creature` SET `name_loc3`='Wächter von Jaedenar' WHERE `entry`=7113; +UPDATE `locales_creature` SET `name_loc3`='Vollstrecker von Jaedenar' WHERE `entry`=7114; +UPDATE `locales_creature` SET `name_loc3`='Adept von Jaedenar' WHERE `entry`=7115; +UPDATE `locales_creature` SET `name_loc3`='Schreckenswirker von Jaedenar' WHERE `entry`=7116; +UPDATE `locales_creature` SET `name_loc3`='Anstifter von Jaedenar' WHERE `entry`=7117; +UPDATE `locales_creature` SET `name_loc3`='Dunkelwirker von Jaedenar' WHERE `entry`=7118; +UPDATE `locales_creature` SET `name_loc3`='Beschwörer von Jaedenar' WHERE `entry`=7119; +UPDATE `locales_creature` SET `name_loc3`='Hexenmeister von Jaedenar' WHERE `entry`=7120; +UPDATE `locales_creature` SET `name_loc3`='Schattenjäger der Sandwüter' WHERE `entry`=7246; +UPDATE `locales_creature` SET `name_loc3`='Seelenfresser der Sandwüter' WHERE `entry`=7247; +UPDATE `locales_creature` SET `name_loc3`='Toter Held aus Zul''Farrak' WHERE `entry`=7276; +UPDATE `locales_creature` SET `name_loc3`='Soldat von Dun Garok' WHERE `entry`=7360; +UPDATE `locales_creature` SET `name_loc3`='Leidender Hochgeborener' WHERE `entry`=7523; +UPDATE `locales_creature` SET `name_loc3`='Gepeinigter Hochgeborener' WHERE `entry`=7524; +UPDATE `locales_creature` SET `name_loc3`='Räuber der Grimmtotem' WHERE `entry`=7725; +UPDATE `locales_creature` SET `name_loc3`='Naturalist der Grimmtotem' WHERE `entry`=7726; +UPDATE `locales_creature` SET `name_loc3`='Schamane der Grimmtotem' WHERE `entry`=7727; +UPDATE `locales_creature` SET `name_loc3`='Grunzer des Steinkrallengebirges' WHERE `entry`=7730; +UPDATE `locales_creature` SET `name_loc3`='Sklave der Sandwüter' WHERE `entry`=7787; +UPDATE `locales_creature` SET `name_loc3`='Zwangsarbeiter der Sandwüter' WHERE `entry`=7788; +UPDATE `locales_creature` SET `name_loc3`='Gesetzloser der Wüstenläufer' WHERE `entry`=7805; +UPDATE `locales_creature` SET `name_loc3`='Wegelagerer der Blutfratzen' WHERE `entry`=7809; +UPDATE `locales_creature` SET `name_loc3`='Pirat der Südmeerfreibeuter' WHERE `entry`=7855; +UPDATE `locales_creature` SET `name_loc3`='Seeräuber der Südmeerfreibeuter' WHERE `entry`=7856; +UPDATE `locales_creature` SET `name_loc3`='Dockarbeiter der Südmeerfreibeuter' WHERE `entry`=7857; +UPDATE `locales_creature` SET `name_loc3`='Schwadroneur der Südmeerfreibeuter' WHERE `entry`=7858; +UPDATE `locales_creature` SET `name_loc3`='Bukanier der Südmeerfreibeuter' WHERE `entry`=7896; +UPDATE `locales_creature` SET `name_loc3`='Schatzsuchender Pirat' WHERE `entry`=7899; +UPDATE `locales_creature` SET `name_loc3`='Schatzsuchender Schwadroneur' WHERE `entry`=7901; +UPDATE `locales_creature` SET `name_loc3`='Schatzsuchender Bukanier' WHERE `entry`=7902; +UPDATE `locales_creature` SET `name_loc3`='Kriegerheld von Camp Narache' WHERE `entry`=7975; +UPDATE `locales_creature` SET `name_loc3`='Elitesoldat der Todeswache' WHERE `entry`=7980; +UPDATE `locales_creature` SET `name_loc3`='Wächter von Sen''jin' WHERE `entry`=8017; +UPDATE `locales_creature` SET `name_loc3`='Gebirgsjäger von Thelsamar' WHERE `entry`=8055; +UPDATE `locales_creature` SET `name_loc3`='Kriegerheld von Camp Mojache' WHERE `entry`=8147; +UPDATE `locales_creature` SET `name_loc3`='Kriegerheld des Geistwandlerpostens' WHERE `entry`=8154; +UPDATE `locales_creature` SET `name_loc3`='Grunzer von Kargath' WHERE `entry`=8155; +UPDATE `locales_creature` SET `name_loc3`='Ingenieur der HERRIN DES HORIZONTS' WHERE `entry`=8389; +UPDATE `locales_creature` SET `name_loc3`='Versklavter Archäologe' WHERE `entry`=8402; +UPDATE `locales_creature` SET `name_loc3`='Schattenseidewilderer' WHERE `entry`=8442; +UPDATE `locales_creature` SET `name_loc3`='Dunkler Adept' WHERE `entry`=8546; +UPDATE `locales_creature` SET `name_loc3`='Todeskultist' WHERE `entry`=8547; +UPDATE `locales_creature` SET `name_loc3`='Übler Tutor' WHERE `entry`=8548; +UPDATE `locales_creature` SET `name_loc3`='Schattenmagier' WHERE `entry`=8550; +UPDATE `locales_creature` SET `name_loc3`='Dunkler Beschwörer' WHERE `entry`=8551; +UPDATE `locales_creature` SET `name_loc3`='Nekrolyt' WHERE `entry`=8552; +UPDATE `locales_creature` SET `name_loc3`='Totenbeschwörer' WHERE `entry`=8553; +UPDATE `locales_creature` SET `name_loc3`='Späher der Moosschinder' WHERE `entry`=8560; +UPDATE `locales_creature` SET `name_loc3`='Schattenjäger der Moosschinder' WHERE `entry`=8561; +UPDATE `locales_creature` SET `name_loc3`='Kannibale der Moosschinder' WHERE `entry`=8562; +UPDATE `locales_creature` SET `name_loc3`='Blutelfenverteidiger' WHERE `entry`=8581; +UPDATE `locales_creature` SET `name_loc3`='Akolyth der Sandwüter' WHERE `entry`=8876; +UPDATE `locales_creature` SET `name_loc3`='Zelot der Sandwüter' WHERE `entry`=8877; +UPDATE `locales_creature` SET `name_loc3`='Arbeiter der Schattenschmiede' WHERE `entry`=8896; +UPDATE `locales_creature` SET `name_loc3`='Reservist der Zorneshämmer' WHERE `entry`=8901; +UPDATE `locales_creature` SET `name_loc3`='Bürger der Schattenschmiede' WHERE `entry`=8902; +UPDATE `locales_creature` SET `name_loc3`='Folterer des Schattenhammers' WHERE `entry`=8912; +UPDATE `locales_creature` SET `name_loc3`='Zwielichtabgesandter' WHERE `entry`=8913; +UPDATE `locales_creature` SET `name_loc3`='Botschafter des Schattenhammers' WHERE `entry`=8915; +UPDATE `locales_creature` SET `name_loc3`='Arenazuschauer' WHERE `entry`=8916; +UPDATE `locales_creature` SET `name_loc3`='Steinbruchsklave' WHERE `entry`=8917; +UPDATE `locales_creature` SET `name_loc3`='Waffentechniker' WHERE `entry`=8920; +UPDATE `locales_creature` SET `name_loc3`='Grunzer der Schmetterschilde' WHERE `entry`=9043; +UPDATE `locales_creature` SET `name_loc3`='Akolyth der Schmetterschilde' WHERE `entry`=9045; +UPDATE `locales_creature` SET `name_loc3`='Legionär der Schmetterschilde' WHERE `entry`=9097; +UPDATE `locales_creature` SET `name_loc3`='Zauberbinder der Schmetterschilde' WHERE `entry`=9098; +UPDATE `locales_creature` SET `name_loc3`='Mystiker der Gluthauer' WHERE `entry`=9239; +UPDATE `locales_creature` SET `name_loc3`='Schattenpriester der Gluthauer' WHERE `entry`=9240; +UPDATE `locales_creature` SET `name_loc3`='Kopfjäger der Gluthauer' WHERE `entry`=9241; +UPDATE `locales_creature` SET `name_loc3`='Hexenmeister der Schmetterschilde' WHERE `entry`=9257; +UPDATE `locales_creature` SET `name_loc3`='Räuber der Schmetterschilde' WHERE `entry`=9258; +UPDATE `locales_creature` SET `name_loc3`='Grunzer der Feuerbrand' WHERE `entry`=9259; +UPDATE `locales_creature` SET `name_loc3`='Legionär der Feuerbrand' WHERE `entry`=9260; +UPDATE `locales_creature` SET `name_loc3`='Dunkelwirker der Feuerbrand' WHERE `entry`=9261; +UPDATE `locales_creature` SET `name_loc3`='Herbeirufer der Feuerbrand' WHERE `entry`=9262; +UPDATE `locales_creature` SET `name_loc3`='Schreckenswirker der Feuerbrand' WHERE `entry`=9263; +UPDATE `locales_creature` SET `name_loc3`='Pyromant der Feuerbrand' WHERE `entry`=9264; +UPDATE `locales_creature` SET `name_loc3`='Schattenjäger der Gluthauer' WHERE `entry`=9265; +UPDATE `locales_creature` SET `name_loc3`='Hexendoktor der Gluthauer' WHERE `entry`=9266; +UPDATE `locales_creature` SET `name_loc3`='Axtwerfer der Gluthauer' WHERE `entry`=9267; +UPDATE `locales_creature` SET `name_loc3`='Seher der Gluthauer' WHERE `entry`=9269; +UPDATE `locales_creature` SET `name_loc3`='Scharlachroter Wärter' WHERE `entry`=9447; +UPDATE `locales_creature` SET `name_loc3`='Scharlachroter Prätorianer' WHERE `entry`=9448; +UPDATE `locales_creature` SET `name_loc3`='Scharlachroter Kleriker' WHERE `entry`=9449; +UPDATE `locales_creature` SET `name_loc3`='Scharlachroter Kurat' WHERE `entry`=9450; +UPDATE `locales_creature` SET `name_loc3`='Scharlachroter Erzmagier' WHERE `entry`=9451; +UPDATE `locales_creature` SET `name_loc3`='Scharlachroter Verzauberer' WHERE `entry`=9452; +UPDATE `locales_creature` SET `name_loc3`='Kriegerheld des Freiwindpostens' WHERE `entry`=9525; +UPDATE `locales_creature` SET `name_loc3`='Veteran der Blutäxte' WHERE `entry`=9583; +UPDATE `locales_creature` SET `name_loc3`='Räuber der Blutäxte' WHERE `entry`=9692; +UPDATE `locales_creature` SET `name_loc3`='Rufer der Blutäxte' WHERE `entry`=9693; +UPDATE `locales_creature` SET `name_loc3`='Kriegstreiber der Blutäxte' WHERE `entry`=9716; +UPDATE `locales_creature` SET `name_loc3`='Beschwörer der Blutäxte' WHERE `entry`=9717; +UPDATE `locales_creature` SET `name_loc3`='Veteran der Schwarzfaustlegion' WHERE `entry`=9819; +UPDATE `locales_creature` SET `name_loc3`='Sklave' WHERE `entry`=10116; +UPDATE `locales_creature` SET `name_loc3`='Einkerkerer der Schwarzfaustlegion' WHERE `entry`=10316; +UPDATE `locales_creature` SET `name_loc3`='Elitesoldat der Schwarzfaustlegion' WHERE `entry`=10317; +UPDATE `locales_creature` SET `name_loc3`='Auftragsmörder der Schwarzfaustlegion' WHERE `entry`=10318; +UPDATE `locales_creature` SET `name_loc3`='Spektraler Bürger' WHERE `entry`=10384; +UPDATE `locales_creature` SET `name_loc3`='Geisterhafter Bürger' WHERE `entry`=10385; +UPDATE `locales_creature` SET `name_loc3`='Thuzadinschattenzauberer' WHERE `entry`=10398; +UPDATE `locales_creature` SET `name_loc3`='Thuzadinakolyth' WHERE `entry`=10399; +UPDATE `locales_creature` SET `name_loc3`='Thuzadintotenbeschwörer' WHERE `entry`=10400; +UPDATE `locales_creature` SET `name_loc3`='Auferstandener Gardist' WHERE `entry`=10418; +UPDATE `locales_creature` SET `name_loc3`='Auferstandener Herbeizauberer' WHERE `entry`=10419; +UPDATE `locales_creature` SET `name_loc3`='Auferstandener Initiand' WHERE `entry`=10420; +UPDATE `locales_creature` SET `name_loc3`='Auferstandener Verteidiger' WHERE `entry`=10421; +UPDATE `locales_creature` SET `name_loc3`='Auferstandener Zauberer' WHERE `entry`=10422; +UPDATE `locales_creature` SET `name_loc3`='Auferstandener Priester' WHERE `entry`=10423; +UPDATE `locales_creature` SET `name_loc3`='Auferstandener Kampfmagier' WHERE `entry`=10425; +UPDATE `locales_creature` SET `name_loc3`='Auferstandener Inquisitor' WHERE `entry`=10426; +UPDATE `locales_creature` SET `name_loc3`='Adept aus Scholomance' WHERE `entry`=10469; +UPDATE `locales_creature` SET `name_loc3`='Neophyt aus Scholomance' WHERE `entry`=10470; +UPDATE `locales_creature` SET `name_loc3`='Akolyth aus Scholomance' WHERE `entry`=10471; +UPDATE `locales_creature` SET `name_loc3`='Okkultist aus Scholomance' WHERE `entry`=10472; +UPDATE `locales_creature` SET `name_loc3`='Schattenzauberer aus Scholomance' WHERE `entry`=10473; +UPDATE `locales_creature` SET `name_loc3`='Student aus Scholomance' WHERE `entry`=10475; +UPDATE `locales_creature` SET `name_loc3`='Nekrolyt aus Scholomance' WHERE `entry`=10476; +UPDATE `locales_creature` SET `name_loc3`='Totenbeschwörer aus Scholomance' WHERE `entry`=10477; +UPDATE `locales_creature` SET `name_loc3`='Scharlachroter Sanitäter' WHERE `entry`=10605; +UPDATE `locales_creature` SET `name_loc3`='Scharlachroter Priester' WHERE `entry`=10608; +UPDATE `locales_creature` SET `name_loc3`='Beschworener Veteran der Schwarzfaustlegion' WHERE `entry`=10681; +UPDATE `locales_creature` SET `name_loc3`='Verteidiger der Zuflucht' WHERE `entry`=10696; +UPDATE `locales_creature` SET `name_loc3`='Kriegernovize' WHERE `entry`=10721; +UPDATE `locales_creature` SET `name_loc3`='Großdrachenführer der Schwarzfaustlegion' WHERE `entry`=10742; +UPDATE `locales_creature` SET `name_loc3`='Bandit der Grimmtotem' WHERE `entry`=10758; +UPDATE `locales_creature` SET `name_loc3`='Donnerstampfer der Grimmtotem' WHERE `entry`=10759; +UPDATE `locales_creature` SET `name_loc3`='Geomant der Grimmtotem' WHERE `entry`=10760; +UPDATE `locales_creature` SET `name_loc3`='Häscher der Grimmtotem' WHERE `entry`=10761; +UPDATE `locales_creature` SET `name_loc3`='Rüstungsschmied der Schwarzfaustlegion' WHERE `entry`=10898; +UPDATE `locales_creature` SET `name_loc3`='Verteidiger von Darroheim' WHERE `entry`=10948; +UPDATE `locales_creature` SET `name_loc3`='Jünger der Silbernen Hand' WHERE `entry`=10949; +UPDATE `locales_creature` SET `name_loc3`='Rotpfadmilizsoldat' WHERE `entry`=10950; +UPDATE `locales_creature` SET `name_loc3`='Gefallener Held' WHERE `entry`=10996; +UPDATE `locales_creature` SET `name_loc3`='Auferstandener Mönch' WHERE `entry`=11043; +UPDATE `locales_creature` SET `name_loc3`='Auferstandener Scharfschütze' WHERE `entry`=11054; +UPDATE `locales_creature` SET `name_loc3`='Argentumreiter' WHERE `entry`=11102; +UPDATE `locales_creature` SET `name_loc3`='Kriegerheld des Blutgiftpostens' WHERE `entry`=11180; +UPDATE `locales_creature` SET `name_loc3`='Argentumverteidiger' WHERE `entry`=11194; +UPDATE `locales_creature` SET `name_loc3`='Trommler der Splitterspeere' WHERE `entry`=11196; +UPDATE `locales_creature` SET `name_loc3`='Tierführer aus Scholomance' WHERE `entry`=11257; +UPDATE `locales_creature` SET `name_loc3`='Arbeiter von Nordhain' WHERE `entry`=11260; +UPDATE `locales_creature` SET `name_loc3`='Bürger von Darrowehr' WHERE `entry`=11277; +UPDATE `locales_creature` SET `name_loc3`='Gardist von Darrowehr' WHERE `entry`=11279; +UPDATE `locales_creature` SET `name_loc3`='Kanonier von Darrowehr' WHERE `entry`=11280; +UPDATE `locales_creature` SET `name_loc3`='Reiter von Darrowehr' WHERE `entry`=11281; +UPDATE `locales_creature` SET `name_loc3`='Spektraler Verteidiger' WHERE `entry`=11289; +UPDATE `locales_creature` SET `name_loc3`='Untoter der Moosschinder' WHERE `entry`=11291; +UPDATE `locales_creature` SET `name_loc3`='Kultist der Sengenden Klinge' WHERE `entry`=11322; +UPDATE `locales_creature` SET `name_loc3`='Vollstrecker der Sengenden Klinge' WHERE `entry`=11323; +UPDATE `locales_creature` SET `name_loc3`='Hexenmeister der Sengenden Klinge' WHERE `entry`=11324; +UPDATE `locales_creature` SET `name_loc3`='Arbeiter des Osttals' WHERE `entry`=11328; +UPDATE `locales_creature` SET `name_loc3`='Axtwerfer von Hakkar' WHERE `entry`=11337; +UPDATE `locales_creature` SET `name_loc3`='Schattenzauberer der Hakkari' WHERE `entry`=11338; +UPDATE `locales_creature` SET `name_loc3`='Schattenjäger der Hakkari' WHERE `entry`=11339; +UPDATE `locales_creature` SET `name_loc3`='Blutpriester der Hakkari' WHERE `entry`=11340; +UPDATE `locales_creature` SET `name_loc3`='Krieger von Hakkar' WHERE `entry`=11342; +UPDATE `locales_creature` SET `name_loc3`='Kriegsherr von Hakkar' WHERE `entry`=11343; +UPDATE `locales_creature` SET `name_loc3`='Bluttrinker von Hakkar' WHERE `entry`=11344; +UPDATE `locales_creature` SET `name_loc3`='Kopfjäger von Hakkar' WHERE `entry`=11345; +UPDATE `locales_creature` SET `name_loc3`='Balgabzieher der Gurubashi' WHERE `entry`=11349; +UPDATE `locales_creature` SET `name_loc3`='Axtwerfer der Gurubashi' WHERE `entry`=11350; +UPDATE `locales_creature` SET `name_loc3`='Kopfjäger der Gurubashi' WHERE `entry`=11351; +UPDATE `locales_creature` SET `name_loc3`='Bluttrinker der Gurubashi' WHERE `entry`=11353; +UPDATE `locales_creature` SET `name_loc3`='Kriegsherr der Gurubashi' WHERE `entry`=11354; +UPDATE `locales_creature` SET `name_loc3`='Krieger der Gurubashi' WHERE `entry`=11355; +UPDATE `locales_creature` SET `name_loc3`='Hochgeborener Beschwörer' WHERE `entry`=11466; +UPDATE `locales_creature` SET `name_loc3`='Versenger der Eldreth' WHERE `entry`=11469; +UPDATE `locales_creature` SET `name_loc3`='Zauberer der Eldreth' WHERE `entry`=11470; +UPDATE `locales_creature` SET `name_loc3`='Scharlachroter Auftragsmörder' WHERE `entry`=11581; +UPDATE `locales_creature` SET `name_loc3`='Dunkler Beschwörer aus Scholomance' WHERE `entry`=11582; +UPDATE `locales_creature` SET `name_loc3`='Diener von Weldon Barov' WHERE `entry`=11636; +UPDATE `locales_creature` SET `name_loc3`='Diener von Alexi Barov' WHERE `entry`=11637; +UPDATE `locales_creature` SET `name_loc3`='Hexendoktor der Winterax' WHERE `entry`=11679; +UPDATE `locales_creature` SET `name_loc3`='Späher der Horde' WHERE `entry`=11680; +UPDATE `locales_creature` SET `name_loc3`='Holzarbeiter des Kriegshymnenklans' WHERE `entry`=11681; +UPDATE `locales_creature` SET `name_loc3`='Grunzer des Kriegshymnenklans' WHERE `entry`=11682; +UPDATE `locales_creature` SET `name_loc3`='Schamane des Kriegshymnenklans' WHERE `entry`=11683; +UPDATE `locales_creature` SET `name_loc3`='Aufseher der Mondlichtung' WHERE `entry`=11822; +UPDATE `locales_creature` SET `name_loc3`='Priester der Hakkari' WHERE `entry`=11830; +UPDATE `locales_creature` SET `name_loc3`='Hexendoktor der Hakkari' WHERE `entry`=11831; +UPDATE `locales_creature` SET `name_loc3`='Zwielichträcher' WHERE `entry`=11880; +UPDATE `locales_creature` SET `name_loc3`='Zwielichtgeofürst' WHERE `entry`=11881; +UPDATE `locales_creature` SET `name_loc3`='Zwielichtsteinrufer' WHERE `entry`=11882; +UPDATE `locales_creature` SET `name_loc3`='Zwielichtmeister' WHERE `entry`=11883; +UPDATE `locales_creature` SET `name_loc3`='Söldner der Grimmtotem' WHERE `entry`=11911; +UPDATE `locales_creature` SET `name_loc3`='Schläger der Grimmtotem' WHERE `entry`=11912; +UPDATE `locales_creature` SET `name_loc3`='Zauberer der Grimmtotem' WHERE `entry`=11913; +UPDATE `locales_creature` SET `name_loc3`='Gebirgsjäger der Sturmlanzen' WHERE `entry`=12047; +UPDATE `locales_creature` SET `name_loc3`='Verteidiger der Sturmlanzen' WHERE `entry`=12050; +UPDATE `locales_creature` SET `name_loc3`='Legionär der Frostwölfe' WHERE `entry`=12051; +UPDATE `locales_creature` SET `name_loc3`='Krieger der Frostwölfe' WHERE `entry`=12052; +UPDATE `locales_creature` SET `name_loc3`='Gardist der Frostwölfe' WHERE `entry`=12053; +UPDATE `locales_creature` SET `name_loc3`='Gardist der Sturmlanzen' WHERE `entry`=12127; +UPDATE `locales_creature` SET `name_loc3`='Axtwerfer der Winterax' WHERE `entry`=12156; +UPDATE `locales_creature` SET `name_loc3`='Schattenjäger der Winterax' WHERE `entry`=12157; +UPDATE `locales_creature` SET `name_loc3`='Jäger der Winterax' WHERE `entry`=12158; +UPDATE `locales_creature` SET `name_loc3`='Toxikologe der Brennenden Klinge' WHERE `entry`=12319; +UPDATE `locales_creature` SET `name_loc3`='Zermalmer der Brennenden Klinge' WHERE `entry`=12320; +UPDATE `locales_creature` SET `name_loc3`='Wächter von Schattenflucht' WHERE `entry`=12338; +UPDATE `locales_creature` SET `name_loc3`='Scharlachroter Reitersoldat' WHERE `entry`=12352; +UPDATE `locales_creature` SET `name_loc3`='Untoter Verwalter' WHERE `entry`=12379; +UPDATE `locales_creature` SET `name_loc3`='Untoter Einwohner' WHERE `entry`=12380; +UPDATE `locales_creature` SET `name_loc3`='Legionär der Pechschwingen' WHERE `entry`=12416; +UPDATE `locales_creature` SET `name_loc3`='Magier der Pechschwingen' WHERE `entry`=12420; +UPDATE `locales_creature` SET `name_loc3`='Auftragsmörder der Pechschwingen' WHERE `entry`=12421; +UPDATE `locales_creature` SET `name_loc3`='Zauberbinder der Pechschwingen' WHERE `entry`=12457; +UPDATE `locales_creature` SET `name_loc3`='Zuchtmeister der Pechschwingen' WHERE `entry`=12458; +UPDATE `locales_creature` SET `name_loc3`='Hexenmeister der Pechschwingen' WHERE `entry`=12459; +UPDATE `locales_creature` SET `name_loc3`='Räuber des Splitterholzpostens' WHERE `entry`=12859; +UPDATE `locales_creature` SET `name_loc3`='Berittener Gebirgsjäger von Eisenschmiede' WHERE `entry`=12996; +UPDATE `locales_creature` SET `name_loc3`='Zwergenbauer' WHERE `entry`=12998; +UPDATE `locales_creature` SET `name_loc3`='Gnomeningenieur' WHERE `entry`=13000; +UPDATE `locales_creature` SET `name_loc3`='Seher der Brennenden Klinge' WHERE `entry`=13019; +UPDATE `locales_creature` SET `name_loc3`='Gebirgsjäger von Dun Morogh' WHERE `entry`=13076; +UPDATE `locales_creature` SET `name_loc3`='Räuber der Eisenschachtmine' WHERE `entry`=13081; +UPDATE `locales_creature` SET `name_loc3`='Forscher der Eisbeißermine' WHERE `entry`=13096; +UPDATE `locales_creature` SET `name_loc3`='Feldmesser der Eisbeißermine' WHERE `entry`=13097; +UPDATE `locales_creature` SET `name_loc3`='Feldmesser der Eisenschachtmine' WHERE `entry`=13098; +UPDATE `locales_creature` SET `name_loc3`='Forscher der Eisenschachtmine' WHERE `entry`=13099; +UPDATE `locales_creature` SET `name_loc3`='Geisterführer der Allianz' WHERE `entry`=13116; +UPDATE `locales_creature` SET `name_loc3`='Geisterführer der Horde' WHERE `entry`=13117; +UPDATE `locales_creature` SET `name_loc3`='Brigant des Syndikats' WHERE `entry`=13149; +UPDATE `locales_creature` SET `name_loc3`='Agent des Syndikats' WHERE `entry`=13150; +UPDATE `locales_creature` SET `name_loc3`='Erfahrener Gardist' WHERE `entry`=13324; +UPDATE `locales_creature` SET `name_loc3`='Erfahrener Gebirgsjäger' WHERE `entry`=13325; +UPDATE `locales_creature` SET `name_loc3`='Erfahrener Verteidiger' WHERE `entry`=13326; +UPDATE `locales_creature` SET `name_loc3`='Erfahrener Wächter' WHERE `entry`=13328; +UPDATE `locales_creature` SET `name_loc3`='Erfahrener Legionär' WHERE `entry`=13329; +UPDATE `locales_creature` SET `name_loc3`='Erfahrener Krieger' WHERE `entry`=13330; +UPDATE `locales_creature` SET `name_loc3`='Verteidigerveteran' WHERE `entry`=13331; +UPDATE `locales_creature` SET `name_loc3`='Wächterveteran' WHERE `entry`=13332; +UPDATE `locales_creature` SET `name_loc3`='Gardistenveteran' WHERE `entry`=13333; +UPDATE `locales_creature` SET `name_loc3`='Legionärsveteran' WHERE `entry`=13334; +UPDATE `locales_creature` SET `name_loc3`='Gebirgsjägerveteran' WHERE `entry`=13335; +UPDATE `locales_creature` SET `name_loc3`='Kriegerveteran' WHERE `entry`=13337; +UPDATE `locales_creature` SET `name_loc3`='Bogenschütze der Sturmlanzen' WHERE `entry`=13358; +UPDATE `locales_creature` SET `name_loc3`='Bogenschütze der Frostwölfe' WHERE `entry`=13359; +UPDATE `locales_creature` SET `name_loc3`='Wolfsreiter der Frostwölfe' WHERE `entry`=13440; +UPDATE `locales_creature` SET `name_loc3`='Kundschafter der Frostwölfe' WHERE `entry`=13516; +UPDATE `locales_creature` SET `name_loc3`='Erfahrener Kundschafter' WHERE `entry`=13517; +UPDATE `locales_creature` SET `name_loc3`='Kundschafterveteran' WHERE `entry`=13518; +UPDATE `locales_creature` SET `name_loc3`='Kommandosoldat der Sturmlanzen' WHERE `entry`=13524; +UPDATE `locales_creature` SET `name_loc3`='Erfahrener Kommandosoldat' WHERE `entry`=13525; +UPDATE `locales_creature` SET `name_loc3`='Kommandosoldatenveteran' WHERE `entry`=13526; +UPDATE `locales_creature` SET `name_loc3`='Häscher der Frostwölfe' WHERE `entry`=13528; +UPDATE `locales_creature` SET `name_loc3`='Erfahrener Häscher' WHERE `entry`=13529; +UPDATE `locales_creature` SET `name_loc3`='Häscherveteran' WHERE `entry`=13530; +UPDATE `locales_creature` SET `name_loc3`='Wachenveteran der Eisbeißermine' WHERE `entry`=13535; +UPDATE `locales_creature` SET `name_loc3`='Erfahrener Feldmesser der Eisbeißermine' WHERE `entry`=13537; +UPDATE `locales_creature` SET `name_loc3`='Feldmesserveteran der Eisbeißermine' WHERE `entry`=13538; +UPDATE `locales_creature` SET `name_loc3`='Erfahrener Forscher der Eisenschachtmine' WHERE `entry`=13540; +UPDATE `locales_creature` SET `name_loc3`='Forscherveteran der Eisenschachtmine' WHERE `entry`=13541; +UPDATE `locales_creature` SET `name_loc3`='Erfahrener Räuber der Eisenschachtmine' WHERE `entry`=13543; +UPDATE `locales_creature` SET `name_loc3`='Räuberveteran der Eisenschachtmine' WHERE `entry`=13544; +UPDATE `locales_creature` SET `name_loc3`='Erfahrener Forscher der Eisbeißermine' WHERE `entry`=13546; +UPDATE `locales_creature` SET `name_loc3`='Forscherveteran der Eisbeißermine' WHERE `entry`=13547; +UPDATE `locales_creature` SET `name_loc3`='Wachenveteran der Eisenschachtmine' WHERE `entry`=13553; +UPDATE `locales_creature` SET `name_loc3`='Erfahrener Feldmesser der Eisenschachtmine' WHERE `entry`=13555; +UPDATE `locales_creature` SET `name_loc3`='Feldmesserveteran der Eisenschachtmine' WHERE `entry`=13556; +UPDATE `locales_creature` SET `name_loc3`='Widderreiter der Sturmlanzen' WHERE `entry`=13576; +UPDATE `locales_creature` SET `name_loc3`='Stallmeister der Frostwölfe' WHERE `entry`=13616; +UPDATE `locales_creature` SET `name_loc3`='Stallmeister der Sturmlanzen' WHERE `entry`=13617; +UPDATE `locales_creature` SET `name_loc3`='Mystiker der Winterax' WHERE `entry`=13956; +UPDATE `locales_creature` SET `name_loc3`='Krieger der Winterax' WHERE `entry`=13957; +UPDATE `locales_creature` SET `name_loc3`='Seher der Winterax' WHERE `entry`=13958; +UPDATE `locales_creature` SET `name_loc3`='Techniker der Pechschwingen' WHERE `entry`=13996; +UPDATE `locales_creature` SET `name_loc3`='Pionier der Sturmlanzen' WHERE `entry`=14141; +UPDATE `locales_creature` SET `name_loc3`='Pionier der Frostwölfe' WHERE `entry`=14142; +UPDATE `locales_creature` SET `name_loc3`='Elitesoldat der Kor''kron' WHERE `entry`=14304; +UPDATE `locales_creature` SET `name_loc3`='Zelot der Shen''dralar' WHERE `entry`=14369; +UPDATE `locales_creature` SET `name_loc3`='Expeditionsgebirgsjäger' WHERE `entry`=14390; +UPDATE `locales_creature` SET `name_loc3`='Expeditionspriester' WHERE `entry`=14393; +UPDATE `locales_creature` SET `name_loc3`='Gardist der Pechschwingen' WHERE `entry`=14456; +UPDATE `locales_creature` SET `name_loc3`='Verletzter Arbeiter' WHERE `entry`=14484; +UPDATE `locales_creature` SET `name_loc3`='Verseuchter Arbeiter' WHERE `entry`=14485; +UPDATE `locales_creature` SET `name_loc3`='Elitesoldat der Horde' WHERE `entry`=14717; +UPDATE `locales_creature` SET `name_loc3`='Hilfsarbeiter der Horde' WHERE `entry`=14718; +UPDATE `locales_creature` SET `name_loc3`='Behüter der Bruchhauer' WHERE `entry`=14730; +UPDATE `locales_creature` SET `name_loc3`='Trommler der Bruchhauer' WHERE `entry`=14734; +UPDATE `locales_creature` SET `name_loc3`='Entführer der Blutfratzen' WHERE `entry`=14748; +UPDATE `locales_creature` SET `name_loc3`='Kriegsmeister der Nordtruppen von Dun Baldar' WHERE `entry`=14770; +UPDATE `locales_creature` SET `name_loc3`='Kriegsmeister der Südtruppen von Dun Baldar' WHERE `entry`=14771; +UPDATE `locales_creature` SET `name_loc3`='Ostkriegsmeister der Frostwölfe' WHERE `entry`=14772; +UPDATE `locales_creature` SET `name_loc3`='Kriegsmeister der Eisbluttruppen' WHERE `entry`=14773; +UPDATE `locales_creature` SET `name_loc3`='Kriegsmeister der Eisschwingentruppen' WHERE `entry`=14774; +UPDATE `locales_creature` SET `name_loc3`='Kriegsmeister der Steinbruchtruppen' WHERE `entry`=14775; +UPDATE `locales_creature` SET `name_loc3`='Kriegsmeister der Turmstellung' WHERE `entry`=14776; +UPDATE `locales_creature` SET `name_loc3`='Westkriegsmeister der Frostwölfe' WHERE `entry`=14777; +UPDATE `locales_creature` SET `name_loc3`='Schausteller des Dunkelmond-Jahrmarkts' WHERE `entry`=14849; +UPDATE `locales_creature` SET `name_loc3`='Kopfschrumpfer der Zandalari' WHERE `entry`=14876; +UPDATE `locales_creature` SET `name_loc3`='Vollstrecker der Zandalari' WHERE `entry`=14911; +UPDATE `locales_creature` SET `name_loc3`='Gesandter der Entweihten' WHERE `entry`=14990; +UPDATE `locales_creature` SET `name_loc3`='Abgesandter des Bunds von Arathor' WHERE `entry`=14991; +UPDATE `locales_creature` SET `name_loc3`='Ereignisgenerator der Zandalari' WHERE `entry`=14994; +UPDATE `locales_creature` SET `name_loc3`='Bauer der Verlassenen' WHERE `entry`=15046; +UPDATE `locales_creature` SET `name_loc3`='Schmied der Verlassenen' WHERE `entry`=15064; +UPDATE `locales_creature` SET `name_loc3`='Minenarbeiter der Verlassenen' WHERE `entry`=15075; +UPDATE `locales_creature` SET `name_loc3`='Abgesandter der Zandalari' WHERE `entry`=15076; +UPDATE `locales_creature` SET `name_loc3`='Diener der Hand' WHERE `entry`=15080; +UPDATE `locales_creature` SET `name_loc3`='Holzfäller der Verlassenen' WHERE `entry`=15089; +UPDATE `locales_creature` SET `name_loc3`='Abgesandter der Silberschwingen' WHERE `entry`=15102; +UPDATE `locales_creature` SET `name_loc3`='Abgesandter der Sturmlanzen' WHERE `entry`=15103; +UPDATE `locales_creature` SET `name_loc3`='Gesandter des Kriegshymnenklans' WHERE `entry`=15105; +UPDATE `locales_creature` SET `name_loc3`='Gesandter der Frostwölfe' WHERE `entry`=15106; +UPDATE `locales_creature` SET `name_loc3`='Gefangener der Gurubashi' WHERE `entry`=15110; +UPDATE `locales_creature` SET `name_loc3`='Geehrter Held' WHERE `entry`=15113; +UPDATE `locales_creature` SET `name_loc3`='Verehrter Vorfahr' WHERE `entry`=15115; +UPDATE `locales_creature` SET `name_loc3`='Elitesoldat der Entweihten' WHERE `entry`=15128; +UPDATE `locales_creature` SET `name_loc3`='Elitesoldat des Bundes von Arathor' WHERE `entry`=15130; +UPDATE `locales_creature` SET `name_loc3`='Elitesoldat von Hammerfall' WHERE `entry`=15136; +UPDATE `locales_creature` SET `name_loc3`='Infanterist der Burg Cenarius' WHERE `entry`=15184; +UPDATE `locales_creature` SET `name_loc3`='Zwielichtflammenhäscher' WHERE `entry`=15201; +UPDATE `locales_creature` SET `name_loc3`='Zwielichtoberanführer' WHERE `entry`=15213; +UPDATE `locales_creature` SET `name_loc3`='Infanterist der Kaldorei' WHERE `entry`=15423; +UPDATE `locales_creature` SET `name_loc3`='Mörseroperator der Eisenschmiedebrigade' WHERE `entry`=15435; +UPDATE `locales_creature` SET `name_loc3`='Scharfschütze der Eisenschmiedebrigade' WHERE `entry`=15441; +UPDATE `locales_creature` SET `name_loc3`='Fußsoldat der Eisenschmiedebrigade' WHERE `entry`=15442; +UPDATE `locales_creature` SET `name_loc3`='Verteidiger von Nachthafen' WHERE `entry`=15495; +UPDATE `locales_creature` SET `name_loc3`='Spektraler Stallarbeiter' WHERE `entry`=15551; +UPDATE `locales_creature` SET `name_loc3`='Grunzer der Orgrimmarlegion' WHERE `entry`=15616; +UPDATE `locales_creature` SET `name_loc3`='Axtwerfer der Orgrimmarlegion' WHERE `entry`=15617; +UPDATE `locales_creature` SET `name_loc3`='Verhexer der Orgrimmarlegion' WHERE `entry`=15618; +UPDATE `locales_creature` SET `name_loc3`='Freiwilliger Kriegshelfer' WHERE `entry`=15663; +UPDATE `locales_creature` SET `name_loc3`='Entführer der Südmeerfreibeuter' WHERE `entry`=15685; +UPDATE `locales_creature` SET `name_loc3`='Feiernder von Sturmwind' WHERE `entry`=15694; +UPDATE `locales_creature` SET `name_loc3`='Rekrut der Kriegsanstrengungen' WHERE `entry`=15696; +UPDATE `locales_creature` SET `name_loc3`='Feiernder von Donnerfels' WHERE `entry`=15719; +UPDATE `locales_creature` SET `name_loc3`='Feiernder von Beutebucht' WHERE `entry`=15723; +UPDATE `locales_creature` SET `name_loc3`='Belobigungsoffizier von Darnassus' WHERE `entry`=15731; +UPDATE `locales_creature` SET `name_loc3`='Belobigungsoffizier von Gnomeregan' WHERE `entry`=15733; +UPDATE `locales_creature` SET `name_loc3`='Belobigungsoffizier von Eisenschmiede' WHERE `entry`=15734; +UPDATE `locales_creature` SET `name_loc3`='Belobigungsoffizier von Sturmwind' WHERE `entry`=15735; +UPDATE `locales_creature` SET `name_loc3`='Belobigungsoffizier von Orgrimmar' WHERE `entry`=15736; +UPDATE `locales_creature` SET `name_loc3`='Belobigungsoffizier der Dunkelspeere' WHERE `entry`=15737; +UPDATE `locales_creature` SET `name_loc3`='Belobigungsoffizier von Unterstadt' WHERE `entry`=15738; +UPDATE `locales_creature` SET `name_loc3`='Belobigungsoffizier von Donnerfels' WHERE `entry`=15739; +UPDATE `locales_creature` SET `name_loc3`='Imperialer Qirajizerstörer' WHERE `entry`=15744; +UPDATE `locales_creature` SET `name_loc3`='Infanterist der Macht von Kalimdor' WHERE `entry`=15848; +UPDATE `locales_creature` SET `name_loc3`='Eliteinfanterist von Orgrimmar' WHERE `entry`=15853; +UPDATE `locales_creature` SET `name_loc3`='Elitekavallerist von Orgrimmar' WHERE `entry`=15854; +UPDATE `locales_creature` SET `name_loc3`='Scharfschütze der Tauren' WHERE `entry`=15855; +UPDATE `locales_creature` SET `name_loc3`='Primalist der Tauren' WHERE `entry`=15856; +UPDATE `locales_creature` SET `name_loc3`='Kavallerist von Sturmwind' WHERE `entry`=15857; +UPDATE `locales_creature` SET `name_loc3`='Infanterist von Sturmwind' WHERE `entry`=15858; +UPDATE `locales_creature` SET `name_loc3`='Erzmagier von Sturmwind' WHERE `entry`=15859; +UPDATE `locales_creature` SET `name_loc3`='Infanterist von Eisenschmiede' WHERE `entry`=15861; +UPDATE `locales_creature` SET `name_loc3`='Kavallerist von Eisenschmiede' WHERE `entry`=15862; +UPDATE `locales_creature` SET `name_loc3`='Schamane der Dunkelspeere' WHERE `entry`=15863; +UPDATE `locales_creature` SET `name_loc3`='Abgesandter des Mondfests' WHERE `entry`=15892; +UPDATE `locales_creature` SET `name_loc3`='Feiernder von Darnassus' WHERE `entry`=15905; +UPDATE `locales_creature` SET `name_loc3`='Feiernder von Eisenschmiede' WHERE `entry`=15906; +UPDATE `locales_creature` SET `name_loc3`='Feiernder von Unterstadt' WHERE `entry`=15907; +UPDATE `locales_creature` SET `name_loc3`='Feiernder von Orgrimmar' WHERE `entry`=15908; +UPDATE `locales_creature` SET `name_loc3`='Feiernder des Mondfests' WHERE `entry`=15917; +UPDATE `locales_creature` SET `name_loc3`='Waldläufer von Immersang' WHERE `entry`=15938; +UPDATE `locales_creature` SET `name_loc3`='Späher von Darnassus' WHERE `entry`=15968; +UPDATE `locales_creature` SET `name_loc3`='Kultist von Naxxramas' WHERE `entry`=15980; +UPDATE `locales_creature` SET `name_loc3`='Akolyth von Naxxramas' WHERE `entry`=15981; +UPDATE `locales_creature` SET `name_loc3`='Spektraler Assassine' WHERE `entry`=16066; +UPDATE `locales_creature` SET `name_loc3`='Spektraler Pirscher' WHERE `entry`=16093; +UPDATE `locales_creature` SET `name_loc3`='Reservist der Burg Cenarius' WHERE `entry`=16139; +UPDATE `locales_creature` SET `name_loc3`='Wächter von Silbermond' WHERE `entry`=16221; +UPDATE `locales_creature` SET `name_loc3`='Argentuminfanterist' WHERE `entry`=16228; +UPDATE `locales_creature` SET `name_loc3`='Verletzter Argentuminfanterist' WHERE `entry`=16229; +UPDATE `locales_creature` SET `name_loc3`='Späher von Tristessa' WHERE `entry`=16242; +UPDATE `locales_creature` SET `name_loc3`='Argentumsanitäter' WHERE `entry`=16284; +UPDATE `locales_creature` SET `name_loc3`='Akolyth der Todesfestung' WHERE `entry`=16315; +UPDATE `locales_creature` SET `name_loc3`='Totenbeschwörer der Todesfestung' WHERE `entry`=16317; +UPDATE `locales_creature` SET `name_loc3`='Dunkelmagier der Todesfestung' WHERE `entry`=16318; +UPDATE `locales_creature` SET `name_loc3`='Druide von Darnassus' WHERE `entry`=16331; +UPDATE `locales_creature` SET `name_loc3`='Jägerin von Darnassus' WHERE `entry`=16332; +UPDATE `locales_creature` SET `name_loc3`='Akolyth der Nekropole' WHERE `entry`=16368; +UPDATE `locales_creature` SET `name_loc3`='Initiand der Argentumdämmerung' WHERE `entry`=16384; +UPDATE `locales_creature` SET `name_loc3`='Verräter der Blutsegelbukaniere' WHERE `entry`=16399; +UPDATE `locales_creature` SET `name_loc3`='Spektraler Diener' WHERE `entry`=16407; +UPDATE `locales_creature` SET `name_loc3`='Phantomdiener' WHERE `entry`=16408; +UPDATE `locales_creature` SET `name_loc3`='Spektraler Anhänger' WHERE `entry`=16410; +UPDATE `locales_creature` SET `name_loc3`='Spektraler Küchenchef' WHERE `entry`=16411; +UPDATE `locales_creature` SET `name_loc3`='Geisterhafter Bäcker' WHERE `entry`=16412; +UPDATE `locales_creature` SET `name_loc3`='Geisterhafter Bediensteter' WHERE `entry`=16414; +UPDATE `locales_creature` SET `name_loc3`='Phantomgardist' WHERE `entry`=16425; +UPDATE `locales_creature` SET `name_loc3`='Elitewächter von Unterstadt' WHERE `entry`=16432; +UPDATE `locales_creature` SET `name_loc3`='Kreuzfahrer der Argentumdämmerung' WHERE `entry`=16433; +UPDATE `locales_creature` SET `name_loc3`='Kleriker der Argentumdämmerung' WHERE `entry`=16435; +UPDATE `locales_creature` SET `name_loc3`='Priester der Argentumdämmerung' WHERE `entry`=16436; +UPDATE `locales_creature` SET `name_loc3`='Geisterhafter Philanthrop' WHERE `entry`=16470; +UPDATE `locales_creature` SET `name_loc3`='Phantombühnenarbeiter' WHERE `entry`=16472; +UPDATE `locales_creature` SET `name_loc3`='Spektraler Gaukler' WHERE `entry`=16473; +UPDATE `locales_creature` SET `name_loc3`='Überlebender der Draenei' WHERE `entry`=16483; +UPDATE `locales_creature` SET `name_loc3`='Anhänger von Naxxramas' WHERE `entry`=16505; +UPDATE `locales_creature` SET `name_loc3`='Jünger von Naxxramas' WHERE `entry`=16506; +UPDATE `locales_creature` SET `name_loc3`='Schattenhafter Henker' WHERE `entry`=16519; +UPDATE `locales_creature` SET `name_loc3`='Blutelfenspäher' WHERE `entry`=16521; +UPDATE `locales_creature` SET `name_loc3`='Schattenplünderer' WHERE `entry`=16540; +UPDATE `locales_creature` SET `name_loc3`='Blutelfischer Pilger' WHERE `entry`=16578; +UPDATE `locales_creature` SET `name_loc3`='Grunzer von Thrallmar' WHERE `entry`=16580; +UPDATE `locales_creature` SET `name_loc3`='Schütze von Thrallmar' WHERE `entry`=16582; +UPDATE `locales_creature` SET `name_loc3`='Wolfsreiter von Thrallmar' WHERE `entry`=16599; +UPDATE `locales_creature` SET `name_loc3`='Friedensbewahrer der Exodar' WHERE `entry`=16733; +UPDATE `locales_creature` SET `name_loc3`='Hexenmeister der Feuerschwingen' WHERE `entry`=16769; +UPDATE `locales_creature` SET `name_loc3`='Feiernder des Sonnenwendfests' WHERE `entry`=16781; +UPDATE `locales_creature` SET `name_loc3`='Flammenbewahrer' WHERE `entry`=16788; +UPDATE `locales_creature` SET `name_loc3`='Infanterist von Nethergarde' WHERE `entry`=16831; +UPDATE `locales_creature` SET `name_loc3`='Archäologe der Forscherliga' WHERE `entry`=16835; +UPDATE `locales_creature` SET `name_loc3`='Verteidiger der Ehrenfeste' WHERE `entry`=16842; +UPDATE `locales_creature` SET `name_loc3`='Kavallerist der Ehrenfeste' WHERE `entry`=16843; +UPDATE `locales_creature` SET `name_loc3`='Infanterist von Sturmwind' WHERE `entry`=16864; +UPDATE `locales_creature` SET `name_loc3`='Verletzter Infanterist von Sturmwind' WHERE `entry`=16865; +UPDATE `locales_creature` SET `name_loc3`='Verwundeter Infanterist von Nethergarde' WHERE `entry`=16866; +UPDATE `locales_creature` SET `name_loc3`='Feiernder von Sturmwind' WHERE `entry`=16889; +UPDATE `locales_creature` SET `name_loc3`='Feiernder von Eisenschmiede' WHERE `entry`=16890; +UPDATE `locales_creature` SET `name_loc3`='Feiernder von Darnassus' WHERE `entry`=16892; +UPDATE `locales_creature` SET `name_loc3`='Feiernder von Orgrimmar' WHERE `entry`=16893; +UPDATE `locales_creature` SET `name_loc3`='Feiernder von Donnerfels' WHERE `entry`=16894; +UPDATE `locales_creature` SET `name_loc3`='Feiernder von Unterstadt' WHERE `entry`=16895; +UPDATE `locales_creature` SET `name_loc3`='Bogenschütze der Ehrenfeste' WHERE `entry`=16896; +UPDATE `locales_creature` SET `name_loc3`='Unerschütterlicher Fußsoldat' WHERE `entry`=16904; +UPDATE `locales_creature` SET `name_loc3`='Unerschütterlicher Zauberer' WHERE `entry`=16905; +UPDATE `locales_creature` SET `name_loc3`='Wächter des Am''mentals' WHERE `entry`=16921; +UPDATE `locales_creature` SET `name_loc3`='Geisterhafter Bewohner' WHERE `entry`=16976; +UPDATE `locales_creature` SET `name_loc3`='Soldat des Drachenmals' WHERE `entry`=17016; +UPDATE `locales_creature` SET `name_loc3`='Soldat des Schwarzfels' WHERE `entry`=17017; +UPDATE `locales_creature` SET `name_loc3`='Soldat der Frostwölfe' WHERE `entry`=17019; +UPDATE `locales_creature` SET `name_loc3`='Feuerspeier von Sturmwind' WHERE `entry`=17038; +UPDATE `locales_creature` SET `name_loc3`='Feuerschlucker von Orgrimmar' WHERE `entry`=17041; +UPDATE `locales_creature` SET `name_loc3`='Feuerspeier von Eisenschmiede' WHERE `entry`=17048; +UPDATE `locales_creature` SET `name_loc3`='Feuerspeier von Darnassus' WHERE `entry`=17049; +UPDATE `locales_creature` SET `name_loc3`='Feuerschlucker von Donnerfels' WHERE `entry`=17050; +UPDATE `locales_creature` SET `name_loc3`='Feuerschlucker von Unterstadt' WHERE `entry`=17051; +UPDATE `locales_creature` SET `name_loc3`='Feiernder von Immersang' WHERE `entry`=17056; +UPDATE `locales_creature` SET `name_loc3`='Schattenhafter Beschwörer' WHERE `entry`=17088; +UPDATE `locales_creature` SET `name_loc3`='Räuber der Verlassenen' WHERE `entry`=17108; +UPDATE `locales_creature` SET `name_loc3`='Zauberbinder von Kil''sorge' WHERE `entry`=17146; +UPDATE `locales_creature` SET `name_loc3`='Kultist von Kil''sorge' WHERE `entry`=17147; +UPDATE `locales_creature` SET `name_loc3`='Todeshöriger von Kil''sorge' WHERE `entry`=17148; +UPDATE `locales_creature` SET `name_loc3`='Arbeiter' WHERE `entry`=17227; +UPDATE `locales_creature` SET `name_loc3`='Draeneikonstrukteur' WHERE `entry`=17228; +UPDATE `locales_creature` SET `name_loc3`='Kanalisierer des Höllenfeuers' WHERE `entry`=17256; +UPDATE `locales_creature` SET `name_loc3`='Sich erholender Pilger' WHERE `entry`=17263; +UPDATE `locales_creature` SET `name_loc3`='Edelsteinkundiger der Venture Co.' WHERE `entry`=17279; +UPDATE `locales_creature` SET `name_loc3`='Waldläufer der Falkenwacht' WHERE `entry`=17282; +UPDATE `locales_creature` SET `name_loc3`='Infanterist der Ehrenfeste' WHERE `entry`=17382; +UPDATE `locales_creature` SET `name_loc3`='Schütze der Ehrenfeste' WHERE `entry`=17383; +UPDATE `locales_creature` SET `name_loc3`='Axtwerfer von Thrallmar' WHERE `entry`=17390; +UPDATE `locales_creature` SET `name_loc3`='Konstrukteur' WHERE `entry`=17406; +UPDATE `locales_creature` SET `name_loc3`='Taljäger' WHERE `entry`=17425; +UPDATE `locales_creature` SET `name_loc3`='Friedensbewahrer der Blutwacht' WHERE `entry`=17549; +UPDATE `locales_creature` SET `name_loc3`='Junger Draenei' WHERE `entry`=17587; +UPDATE `locales_creature` SET `name_loc3`='Blutelfenbandit' WHERE `entry`=17591; +UPDATE `locales_creature` SET `name_loc3`='Spion der Sonnenfalken' WHERE `entry`=17604; +UPDATE `locales_creature` SET `name_loc3`='Schänder der Sonnenfalken' WHERE `entry`=17605; +UPDATE `locales_creature` SET `name_loc3`='Pionier der Sonnenfalken' WHERE `entry`=17606; +UPDATE `locales_creature` SET `name_loc3`='Verteidiger der Sonnenfalken' WHERE `entry`=17607; +UPDATE `locales_creature` SET `name_loc3`='Pyromant der Sonnenfalken' WHERE `entry`=17608; +UPDATE `locales_creature` SET `name_loc3`='Saboteur der Sonnenfalken' WHERE `entry`=17609; +UPDATE `locales_creature` SET `name_loc3`='Agent der Sonnenfalken' WHERE `entry`=17610; +UPDATE `locales_creature` SET `name_loc3`='Wegelagerer der Sonnenfalken' WHERE `entry`=17641; +UPDATE `locales_creature` SET `name_loc3`='Dörfler der Totenwinde' WHERE `entry`=17672; +UPDATE `locales_creature` SET `name_loc3`='Expeditionsforscher' WHERE `entry`=17681; +UPDATE `locales_creature` SET `name_loc3`='Schwertkämpfer der Hand von Argus' WHERE `entry`=17704; +UPDATE `locales_creature` SET `name_loc3`='Schurke der Sonnenfalken' WHERE `entry`=17705; +UPDATE `locales_creature` SET `name_loc3`='Reisender des Blutfluchs' WHERE `entry`=17714; +UPDATE `locales_creature` SET `name_loc3`='Greifenreiter von Eisenschmiede' WHERE `entry`=17719; +UPDATE `locales_creature` SET `name_loc3`='Wyvernreiter von Orgrimmar' WHERE `entry`=17720; +UPDATE `locales_creature` SET `name_loc3`='Wachmann von Lordaeron' WHERE `entry`=17814; +UPDATE `locales_creature` SET `name_loc3`='Späher von Lordaeron' WHERE `entry`=17815; +UPDATE `locales_creature` SET `name_loc3`='Scharfschütze von Durnholde' WHERE `entry`=17820; +UPDATE `locales_creature` SET `name_loc3`='Gefangener Agent der Sonnenfalken' WHERE `entry`=17824; +UPDATE `locales_creature` SET `name_loc3`='Aufseher von Durnholde' WHERE `entry`=17833; +UPDATE `locales_creature` SET `name_loc3`='Grubenzuschauer' WHERE `entry`=17846; +UPDATE `locales_creature` SET `name_loc3`='Fährtenleser der Hand' WHERE `entry`=17853; +UPDATE `locales_creature` SET `name_loc3`='Jäger der Hand' WHERE `entry`=17875; +UPDATE `locales_creature` SET `name_loc3`='Arbeiter der Allianz' WHERE `entry`=17931; +UPDATE `locales_creature` SET `name_loc3`='Verwandelter gefangener Agent der Sonnenfalken' WHERE `entry`=17971; +UPDATE `locales_creature` SET `name_loc3`='Beschützer der Blutwärter' WHERE `entry`=17993; +UPDATE `locales_creature` SET `name_loc3`='Falkner der Blutwärter' WHERE `entry`=17994; +UPDATE `locales_creature` SET `name_loc3`='Friedensbewahrer der Azurmythosinsel' WHERE `entry`=18038; +UPDATE `locales_creature` SET `name_loc3`='Gardist von Tarrens Mühle' WHERE `entry`=18092; +UPDATE `locales_creature` SET `name_loc3`='Beschützer von Tarrens Mühle' WHERE `entry`=18093; +UPDATE `locales_creature` SET `name_loc3`='Aufklärer von Tarrens Mühle' WHERE `entry`=18094; +UPDATE `locales_creature` SET `name_loc3`='Späher der Expedition' WHERE `entry`=18126; +UPDATE `locales_creature` SET `name_loc3`='Initiand der Blutritter' WHERE `entry`=18169; +UPDATE `locales_creature` SET `name_loc3`='Hordenwächter der Halaani' WHERE `entry`=18192; +UPDATE `locales_creature` SET `name_loc3`='Bewahrer der Expedition' WHERE `entry`=18194; +UPDATE `locales_creature` SET `name_loc3`='Bewohner von Sonnenwind' WHERE `entry`=18240; +UPDATE `locales_creature` SET `name_loc3`='Allianzwächter der Halaani' WHERE `entry`=18256; +UPDATE `locales_creature` SET `name_loc3`='Magister von Silbermond' WHERE `entry`=18336; +UPDATE `locales_creature` SET `name_loc3`='Bediensteter der Blutwärter' WHERE `entry`=18404; +UPDATE `locales_creature` SET `name_loc3`='Waldbehüter der Blutwärter' WHERE `entry`=18419; +UPDATE `locales_creature` SET `name_loc3`='Geomant der Sonnensucher' WHERE `entry`=18420; +UPDATE `locales_creature` SET `name_loc3`='Forscher der Sonnensucher' WHERE `entry`=18421; +UPDATE `locales_creature` SET `name_loc3`='Verteidiger von Garadar' WHERE `entry`=18489; +UPDATE `locales_creature` SET `name_loc3`='Gefallener Druide' WHERE `entry`=18490; +UPDATE `locales_creature` SET `name_loc3`='Seelenpriester der Auchenai' WHERE `entry`=18493; +UPDATE `locales_creature` SET `name_loc3`='Verteidiger der Auchenai' WHERE `entry`=18495; +UPDATE `locales_creature` SET `name_loc3`='Mönch der Auchenai' WHERE `entry`=18497; +UPDATE `locales_creature` SET `name_loc3`='Untoter Soldat' WHERE `entry`=18498; +UPDATE `locales_creature` SET `name_loc3`='Untoter Zauberer' WHERE `entry`=18499; +UPDATE `locales_creature` SET `name_loc3`='Untoter Kleriker' WHERE `entry`=18500; +UPDATE `locales_creature` SET `name_loc3`='Untoter Pirscher' WHERE `entry`=18501; +UPDATE `locales_creature` SET `name_loc3`='Geisterhafter Besitzer' WHERE `entry`=18503; +UPDATE `locales_creature` SET `name_loc3`='Arkanist der Seher' WHERE `entry`=18547; +UPDATE `locales_creature` SET `name_loc3`='Verteidiger der Aldor' WHERE `entry`=18549; +UPDATE `locales_creature` SET `name_loc3`='Phasensoldat' WHERE `entry`=18556; +UPDATE `locales_creature` SET `name_loc3`='Phasenkleriker' WHERE `entry`=18557; +UPDATE `locales_creature` SET `name_loc3`='Phasenzauberer' WHERE `entry`=18558; +UPDATE `locales_creature` SET `name_loc3`='Phasenpirscher' WHERE `entry`=18559; +UPDATE `locales_creature` SET `name_loc3`='Anhänger der Seher' WHERE `entry`=18593; +UPDATE `locales_creature` SET `name_loc3`='Auftragsmörder der Kabale' WHERE `entry`=18636; +UPDATE `locales_creature` SET `name_loc3`='Bauer von Tarrens Mühle' WHERE `entry`=18644; +UPDATE `locales_creature` SET `name_loc3`='Ritualist von Kil''sorge' WHERE `entry`=18658; +UPDATE `locales_creature` SET `name_loc3`='Orcahne' WHERE `entry`=18662; +UPDATE `locales_creature` SET `name_loc3`='Grubenansager' WHERE `entry`=18673; +UPDATE `locales_creature` SET `name_loc3`='Uralter Orcahne' WHERE `entry`=18688; +UPDATE `locales_creature` SET `name_loc3`='Totenbeschwörer der Auchenai' WHERE `entry`=18702; +UPDATE `locales_creature` SET `name_loc3`='Schattenhafter Initiand' WHERE `entry`=18716; +UPDATE `locales_creature` SET `name_loc3`='Schattenhafter Hilfsarbeiter' WHERE `entry`=18717; +UPDATE `locales_creature` SET `name_loc3`='Schattenhafter Berater' WHERE `entry`=18719; +UPDATE `locales_creature` SET `name_loc3`='Beschützer von Telhamat' WHERE `entry`=18758; +UPDATE `locales_creature` SET `name_loc3`='Koch von Durnholde' WHERE `entry`=18765; +UPDATE `locales_creature` SET `name_loc3`='Belästigter Bewohner' WHERE `entry`=18792; +UPDATE `locales_creature` SET `name_loc3`='Ritualist der Kabale' WHERE `entry`=18794; +UPDATE `locales_creature` SET `name_loc3`='Bewohner von Silbermond' WHERE `entry`=18799; +UPDATE `locales_creature` SET `name_loc3`='Solarispriester' WHERE `entry`=18806; +UPDATE `locales_creature` SET `name_loc3`='Proselyt der Exodar' WHERE `entry`=18815; +UPDATE `locales_creature` SET `name_loc3`='Proselytenführer der Exodar' WHERE `entry`=18819; +UPDATE `locales_creature` SET `name_loc3`='Proselytenführer der Exodar' WHERE `entry`=18820; +UPDATE `locales_creature` SET `name_loc3`='Höllenfeuerwärter' WHERE `entry`=18829; +UPDATE `locales_creature` SET `name_loc3`='Warpingenieur des Sonnenzorns' WHERE `entry`=18852; +UPDATE `locales_creature` SET `name_loc3`='Blutwärter des Sonnenzorns' WHERE `entry`=18853; +UPDATE `locales_creature` SET `name_loc3`='Magister des Sonnenzorns' WHERE `entry`=18855; +UPDATE `locales_creature` SET `name_loc3`='Körperloser Verteidiger' WHERE `entry`=18872; +UPDATE `locales_creature` SET `name_loc3`='Körperloser Beschützer' WHERE `entry`=18873; +UPDATE `locales_creature` SET `name_loc3`='Solarisagent' WHERE `entry`=18925; +UPDATE `locales_creature` SET `name_loc3`='Menschenbürger' WHERE `entry`=18927; +UPDATE `locales_creature` SET `name_loc3`='Magier von Durnholde' WHERE `entry`=18934; +UPDATE `locales_creature` SET `name_loc3`='Verteidiger der Oreborzuflucht' WHERE `entry`=18943; +UPDATE `locales_creature` SET `name_loc3`='Soldat von Sturmwind' WHERE `entry`=18948; +UPDATE `locales_creature` SET `name_loc3`='Grunzer von Orgrimmar' WHERE `entry`=18950; +UPDATE `locales_creature` SET `name_loc3`='Bogenschütze von Darnassus' WHERE `entry`=18965; +UPDATE `locales_creature` SET `name_loc3`='Magier von Unterstadt' WHERE `entry`=18971; +UPDATE `locales_creature` SET `name_loc3`='Schamane von Orgrimmar' WHERE `entry`=18972; +UPDATE `locales_creature` SET `name_loc3`='Steinbrechergrunzer' WHERE `entry`=18973; +UPDATE `locales_creature` SET `name_loc3`='Verteidiger Allerias' WHERE `entry`=18999; +UPDATE `locales_creature` SET `name_loc3`='Waldläufer der Hochelfen' WHERE `entry`=19000; +UPDATE `locales_creature` SET `name_loc3`='Reiter Allerias' WHERE `entry`=19003; +UPDATE `locales_creature` SET `name_loc3`='Magister von Silbermond' WHERE `entry`=19006; +UPDATE `locales_creature` SET `name_loc3`='Wolfsreiter von Garadar' WHERE `entry`=19068; +UPDATE `locales_creature` SET `name_loc3`='Begleitender Anachoret' WHERE `entry`=19138; +UPDATE `locales_creature` SET `name_loc3`='Anachoret der Aldor' WHERE `entry`=19142; +UPDATE `locales_creature` SET `name_loc3`='Bauer Allerias' WHERE `entry`=19147; +UPDATE `locales_creature` SET `name_loc3`='Zwergenbürger' WHERE `entry`=19148; +UPDATE `locales_creature` SET `name_loc3`='Bürger der Telaari' WHERE `entry`=19149; +UPDATE `locales_creature` SET `name_loc3`='Gefangener Verteidiger der Halaani' WHERE `entry`=19157; +UPDATE `locales_creature` SET `name_loc3`='Wachoffizier von Garadar' WHERE `entry`=19158; +UPDATE `locales_creature` SET `name_loc3`='Töter der Blutwärter' WHERE `entry`=19167; +UPDATE `locales_creature` SET `name_loc3`='Astromagier der Sonnensucher' WHERE `entry`=19168; +UPDATE `locales_creature` SET `name_loc3`='Blutelfenbürger' WHERE `entry`=19169; +UPDATE `locales_creature` SET `name_loc3`='Draeneibürger' WHERE `entry`=19171; +UPDATE `locales_creature` SET `name_loc3`='Gnomenbürger' WHERE `entry`=19172; +UPDATE `locales_creature` SET `name_loc3`='Nachtelfenbürger' WHERE `entry`=19173; +UPDATE `locales_creature` SET `name_loc3`='Orcbürger' WHERE `entry`=19175; +UPDATE `locales_creature` SET `name_loc3`='Taurenbürger' WHERE `entry`=19176; +UPDATE `locales_creature` SET `name_loc3`='Trollbürger' WHERE `entry`=19177; +UPDATE `locales_creature` SET `name_loc3`='Bürger der Verlassenen' WHERE `entry`=19178; +UPDATE `locales_creature` SET `name_loc3`='Blutmagier' WHERE `entry`=19258; +UPDATE `locales_creature` SET `name_loc3`='Landstreicher' WHERE `entry`=19283; +UPDATE `locales_creature` SET `name_loc3`='Vagabund' WHERE `entry`=19289; +UPDATE `locales_creature` SET `name_loc3`='Argentumbeschützer' WHERE `entry`=19320; +UPDATE `locales_creature` SET `name_loc3`='Argentumwächter' WHERE `entry`=19322; +UPDATE `locales_creature` SET `name_loc3`='Verteidiger der Kor''kron' WHERE `entry`=19362; +UPDATE `locales_creature` SET `name_loc3`='Reiter der Kor''kron' WHERE `entry`=19364; +UPDATE `locales_creature` SET `name_loc3`='Argentumbogenschütze' WHERE `entry`=19365; +UPDATE `locales_creature` SET `name_loc3`='Argentumjäger' WHERE `entry`=19366; +UPDATE `locales_creature` SET `name_loc3`='Späher der Wildhämmer' WHERE `entry`=19384; +UPDATE `locales_creature` SET `name_loc3`='Jäger von Donnerfels' WHERE `entry`=19406; +UPDATE `locales_creature` SET `name_loc3`='Verteidiger der Azurmythosinsel' WHERE `entry`=19407; +UPDATE `locales_creature` SET `name_loc3`='Arbeiter' WHERE `entry`=19444; +UPDATE `locales_creature` SET `name_loc3`='Grunzer der Donnerfürsten' WHERE `entry`=19449; +UPDATE `locales_creature` SET `name_loc3`='Gefallener Infanterist von Sturmwind' WHERE `entry`=19454; +UPDATE `locales_creature` SET `name_loc3`='Chemiker der Sonnensucher' WHERE `entry`=19486; +UPDATE `locales_creature` SET `name_loc3`='Agent des Unteren Viertels' WHERE `entry`=19501; +UPDATE `locales_creature` SET `name_loc3`='Heiler des Unteren Viertels' WHERE `entry`=19502; +UPDATE `locales_creature` SET `name_loc3`='Agent der Kabale' WHERE `entry`=19503; +UPDATE `locales_creature` SET `name_loc3`='Kanalisierer der Sonnensucher' WHERE `entry`=19505; +UPDATE `locales_creature` SET `name_loc3`='Genbinder der Sonnensucher' WHERE `entry`=19507; +UPDATE `locales_creature` SET `name_loc3`='Agent des Nethersturms' WHERE `entry`=19541; +UPDATE `locales_creature` SET `name_loc3`='Arbeiter des Sonnenzorns' WHERE `entry`=19553; +UPDATE `locales_creature` SET `name_loc3`='Berater von Nethergarde' WHERE `entry`=19566; +UPDATE `locales_creature` SET `name_loc3`='Krieger der Kor''kron' WHERE `entry`=19592; +UPDATE `locales_creature` SET `name_loc3`='Verletzter Infanterist von Sturmwind' WHERE `entry`=19624; +UPDATE `locales_creature` SET `name_loc3`='Heilkundiger der Blutwärter' WHERE `entry`=19633; +UPDATE `locales_creature` SET `name_loc3`='Friedensbewahrer von Shattrath' WHERE `entry`=19687; +UPDATE `locales_creature` SET `name_loc3`='Draeneipilger' WHERE `entry`=19689; +UPDATE `locales_creature` SET `name_loc3`='Akolyth der Aldor' WHERE `entry`=19702; +UPDATE `locales_creature` SET `name_loc3`='Bogenschütze des Sonnenzorns' WHERE `entry`=19707; +UPDATE `locales_creature` SET `name_loc3`='Geologe des Sonnenzorns' WHERE `entry`=19779; +UPDATE `locales_creature` SET `name_loc3`='Unerschütterlicher der Rachsucht' WHERE `entry`=19863; +UPDATE `locales_creature` SET `name_loc3`='Legionär der Blutwärter' WHERE `entry`=20031; +UPDATE `locales_creature` SET `name_loc3`='Verteidiger der Blutwärter' WHERE `entry`=20032; +UPDATE `locales_creature` SET `name_loc3`='Astromant' WHERE `entry`=20033; +UPDATE `locales_creature` SET `name_loc3`='Sternenseher' WHERE `entry`=20034; +UPDATE `locales_creature` SET `name_loc3`='Falkner der Stürme' WHERE `entry`=20037; +UPDATE `locales_creature` SET `name_loc3`='Schmied der Stürme' WHERE `entry`=20042; +UPDATE `locales_creature` SET `name_loc3`='Astromantennovize' WHERE `entry`=20044; +UPDATE `locales_creature` SET `name_loc3`='Netherseher' WHERE `entry`=20045; +UPDATE `locales_creature` SET `name_loc3`='Astromantenfürst' WHERE `entry`=20046; +UPDATE `locales_creature` SET `name_loc3`='Kampfmagier der Purpurhand' WHERE `entry`=20047; +UPDATE `locales_creature` SET `name_loc3`='Inquisitor der Purpurhand' WHERE `entry`=20050; +UPDATE `locales_creature` SET `name_loc3`='Versuchsobjekt: Wachmann von Lordaeron' WHERE `entry`=20054; +UPDATE `locales_creature` SET `name_loc3`='Netherbinder der Sonnensucher' WHERE `entry`=20059; +UPDATE `locales_creature` SET `name_loc3`='Beschworener Reservist der Blutwärter' WHERE `entry`=20078; +UPDATE `locales_creature` SET `name_loc3`='Beschworener Heilkundiger der Blutwärter' WHERE `entry`=20083; +UPDATE `locales_creature` SET `name_loc3`='Goblinbürger' WHERE `entry`=20102; +UPDATE `locales_creature` SET `name_loc3`='Arkanist des Sonnenzorns' WHERE `entry`=20134; +UPDATE `locales_creature` SET `name_loc3`='Forscher des Sonnenzorns' WHERE `entry`=20136; +UPDATE `locales_creature` SET `name_loc3`='Unerschütterlicher Fußsoldat der Rachsucht' WHERE `entry`=20137; +UPDATE `locales_creature` SET `name_loc3`='Dämonenbeschwörer des Sonnenzorns' WHERE `entry`=20139; +UPDATE `locales_creature` SET `name_loc3`='Nethertechniker' WHERE `entry`=20203; +UPDATE `locales_creature` SET `name_loc3`='Jagdschütze des Sonnenzorns' WHERE `entry`=20207; +UPDATE `locales_creature` SET `name_loc3`='Techniker des Sonnenzorns' WHERE `entry`=20218; +UPDATE `locales_creature` SET `name_loc3`='Flammenbewahrer des Sonnenzorns' WHERE `entry`=20221; +UPDATE `locales_creature` SET `name_loc3`='Nethermant des Sonnenzorns' WHERE `entry`=20248; +UPDATE `locales_creature` SET `name_loc3`='Magier der Kirin Tor' WHERE `entry`=20422; +UPDATE `locales_creature` SET `name_loc3`='Arbeiter des Hügellands' WHERE `entry`=20424; +UPDATE `locales_creature` SET `name_loc3`='Beschützer des Sonnenzorns' WHERE `entry`=20436; +UPDATE `locales_creature` SET `name_loc3`='Verteidiger der Ehrenfeste' WHERE `entry`=20513; +UPDATE `locales_creature` SET `name_loc3`='Marinesoldat von Sturmwind' WHERE `entry`=20556; +UPDATE `locales_creature` SET `name_loc3`='Verteidiger der Arkatraz' WHERE `entry`=20857; +UPDATE `locales_creature` SET `name_loc3`='Wärter der Arkatraz' WHERE `entry`=20859; +UPDATE `locales_creature` SET `name_loc3`='Abtrünniger Verteidiger' WHERE `entry`=20934; +UPDATE `locales_creature` SET `name_loc3`='Ingenieur der Sonnensucher' WHERE `entry`=20988; +UPDATE `locales_creature` SET `name_loc3`='Heiler der Blutwärter' WHERE `entry`=20990; +UPDATE `locales_creature` SET `name_loc3`='Elitesoldat des Sonnenzorns' WHERE `entry`=20994; +UPDATE `locales_creature` SET `name_loc3`='Bewohner von Schattenmond' WHERE `entry`=20995; +UPDATE `locales_creature` SET `name_loc3`='Körperloser Exarch' WHERE `entry`=21058; +UPDATE `locales_creature` SET `name_loc3`='Jäger der Mok''Nathal' WHERE `entry`=21081; +UPDATE `locales_creature` SET `name_loc3`='Techniker des Postens' WHERE `entry`=21114; +UPDATE `locales_creature` SET `name_loc3`='Wyvernreiter der Kor''kron' WHERE `entry`=21153; +UPDATE `locales_creature` SET `name_loc3`='Agent von Kil''sorge' WHERE `entry`=21276; +UPDATE `locales_creature` SET `name_loc3`='Initiand der Auchenai' WHERE `entry`=21284; +UPDATE `locales_creature` SET `name_loc3`='Verdammnisverkünder der Auchenai' WHERE `entry`=21285; +UPDATE `locales_creature` SET `name_loc3`='Teufelsverderber' WHERE `entry`=21300; +UPDATE `locales_creature` SET `name_loc3`='Hexenmeister des Schattenrats' WHERE `entry`=21302; +UPDATE `locales_creature` SET `name_loc3`='Leichnam eines Verteidigers' WHERE `entry`=21303; +UPDATE `locales_creature` SET `name_loc3`='Zelot des Wyrmkults' WHERE `entry`=21382; +UPDATE `locales_creature` SET `name_loc3`='Akolyth des Wyrmkults' WHERE `entry`=21383; +UPDATE `locales_creature` SET `name_loc3`='Scharfschütze der Station' WHERE `entry`=21441; +UPDATE `locales_creature` SET `name_loc3`='Heckenschütze von Gadgetzan' WHERE `entry`=21448; +UPDATE `locales_creature` SET `name_loc3`='Blutwärter von Karabor' WHERE `entry`=21507; +UPDATE `locales_creature` SET `name_loc3`='Späher des Wyrmkults' WHERE `entry`=21637; +UPDATE `locales_creature` SET `name_loc3`='Bannzauberer der Kabale' WHERE `entry`=21660; +UPDATE `locales_creature` SET `name_loc3`='Scharmützler der Kabale' WHERE `entry`=21661; +UPDATE `locales_creature` SET `name_loc3`='Grabräuber der Kabale' WHERE `entry`=21662; +UPDATE `locales_creature` SET `name_loc3`='Verteidiger der Wildhämmer' WHERE `entry`=21736; +UPDATE `locales_creature` SET `name_loc3`='Vernichter des Sonnenzorns' WHERE `entry`=21742; +UPDATE `locales_creature` SET `name_loc3`='Teufelsanbeter des Schattenrats' WHERE `entry`=21753; +UPDATE `locales_creature` SET `name_loc3`='Zelot des Schattenrats' WHERE `entry`=21754; +UPDATE `locales_creature` SET `name_loc3`='Zelot des Schattenmondklans' WHERE `entry`=21788; +UPDATE `locales_creature` SET `name_loc3`='Wilderer des Wyrmkults' WHERE `entry`=21809; +UPDATE `locales_creature` SET `name_loc3`='Roder des Wyrmkults' WHERE `entry`=21810; +UPDATE `locales_creature` SET `name_loc3`='Kleriker von Karabor' WHERE `entry`=21815; +UPDATE `locales_creature` SET `name_loc3`='Betrachter (beige)' WHERE `entry`=21830; +UPDATE `locales_creature` SET `name_loc3`='Getöteter Kämpfer der Auchenai' WHERE `entry`=21846; +UPDATE `locales_creature` SET `name_loc3`='Kämpfer der Auchenai' WHERE `entry`=21852; +UPDATE `locales_creature` SET `name_loc3`='Verteidiger der Sha''tar' WHERE `entry`=21858; +UPDATE `locales_creature` SET `name_loc3`='Getöteter Verteidiger der Sha''tar' WHERE `entry`=21859; +UPDATE `locales_creature` SET `name_loc3`='Spruchwirker der Kabale' WHERE `entry`=21902; +UPDATE `locales_creature` SET `name_loc3`='Initiand der Kabale' WHERE `entry`=21907; +UPDATE `locales_creature` SET `name_loc3`='Belobigungsoffizier von Silbermond' WHERE `entry`=21968; +UPDATE `locales_creature` SET `name_loc3`='Belobigungsoffizier der Exodar' WHERE `entry`=21969; +UPDATE `locales_creature` SET `name_loc3`='Wegelagerer des Wyrmkults' WHERE `entry`=21982; +UPDATE `locales_creature` SET `name_loc3`='Altarverteidiger der Sha''tar' WHERE `entry`=21986; +UPDATE `locales_creature` SET `name_loc3`='Windreiter der Kor''kron' WHERE `entry`=21998; +UPDATE `locales_creature` SET `name_loc3`='Abgesandter vom Auge des Sturms' WHERE `entry`=22013; +UPDATE `locales_creature` SET `name_loc3`='Gesandter vom Auge des Sturms' WHERE `entry`=22015; +UPDATE `locales_creature` SET `name_loc3`='Soldat der Mondfinsternis' WHERE `entry`=22016; +UPDATE `locales_creature` SET `name_loc3`='Zauberbinder der Mondfinsternis' WHERE `entry`=22017; +UPDATE `locales_creature` SET `name_loc3`='Dragoner der Mondfinsternis' WHERE `entry`=22018; +UPDATE `locales_creature` SET `name_loc3`='Arenawerber' WHERE `entry`=22101; +UPDATE `locales_creature` SET `name_loc3`='Aufklärer von Durnholde' WHERE `entry`=22128; +UPDATE `locales_creature` SET `name_loc3`='Verderber des Teufelssturms' WHERE `entry`=22217; +UPDATE `locales_creature` SET `name_loc3`='Zornesverderber' WHERE `entry`=22254; +UPDATE `locales_creature` SET `name_loc3`='Jäger des Wyrmkults' WHERE `entry`=22308; +UPDATE `locales_creature` SET `name_loc3`='Akolyth der Todesschatten' WHERE `entry`=22341; +UPDATE `locales_creature` SET `name_loc3`='Zauberbinder der Todesschatten' WHERE `entry`=22342; +UPDATE `locales_creature` SET `name_loc3`='Eingesponnener Verteidiger der Sha''tar' WHERE `entry`=22354; +UPDATE `locales_creature` SET `name_loc3`='Aspirant des Wyrmkults' WHERE `entry`=22359; +UPDATE `locales_creature` SET `name_loc3`='Hexenmeister der Todesschatten' WHERE `entry`=22363; +UPDATE `locales_creature` SET `name_loc3`='Verhörmeister der Kabale' WHERE `entry`=22378; +UPDATE `locales_creature` SET `name_loc3`='Druide des Ewigen Hains' WHERE `entry`=22423; +UPDATE `locales_creature` SET `name_loc3`='Druide des Ewigen Hains' WHERE `entry`=22425; +UPDATE `locales_creature` SET `name_loc3`='Druide des Ewigen Hains' WHERE `entry`=22426; +UPDATE `locales_creature` SET `name_loc3`='Wiederbelebter Exarch' WHERE `entry`=22452; +UPDATE `locales_creature` SET `name_loc3`='Befreiter Krieger der Sha''tar' WHERE `entry`=22459; +UPDATE `locales_creature` SET `name_loc3`='Verwundeter Verteidiger der Sha''tar' WHERE `entry`=22463; +UPDATE `locales_creature` SET `name_loc3`='Gelehrter der Forscherliga' WHERE `entry`=22464; +UPDATE `locales_creature` SET `name_loc3`='Feuerspeier der Exodar' WHERE `entry`=22802; +UPDATE `locales_creature` SET `name_loc3`='Feuerspeier von Silbermond' WHERE `entry`=22804; +UPDATE `locales_creature` SET `name_loc3`='Feuerspeier von Shattrath' WHERE `entry`=22806; +UPDATE `locales_creature` SET `name_loc3`='Geretteter Druide der Expedition des Cenarius' WHERE `entry`=22810; +UPDATE `locales_creature` SET `name_loc3`='Geretteter Verteidiger der Sha''tar' WHERE `entry`=22812; +UPDATE `locales_creature` SET `name_loc3`='Verteidiger des Lichts' WHERE `entry`=22861; +UPDATE `locales_creature` SET `name_loc3`='Erfahrener Magister' WHERE `entry`=22863; +UPDATE `locales_creature` SET `name_loc3`='Elekkreiter des Lichts' WHERE `entry`=22966; +UPDATE `locales_creature` SET `name_loc3`='Dragoner der Seher' WHERE `entry`=22967; +UPDATE `locales_creature` SET `name_loc3`='Navigator der Himmelswache' WHERE `entry`=22982; +UPDATE `locales_creature` SET `name_loc3`='Feiernder der Seher' WHERE `entry`=23023; +UPDATE `locales_creature` SET `name_loc3`='Feiernder der Aldor' WHERE `entry`=23024; +UPDATE `locales_creature` SET `name_loc3`='Feiernder der Draenei' WHERE `entry`=23039; +UPDATE `locales_creature` SET `name_loc3`='Feiernder der Blutelfen' WHERE `entry`=23045; +UPDATE `locales_creature` SET `name_loc3`='Friedensbewahrer von Ogri''la' WHERE `entry`=23115; +UPDATE `locales_creature` SET `name_loc3`='Abenteurer der Allianz' WHERE `entry`=23133; +UPDATE `locales_creature` SET `name_loc3`='Manaschuldensklave' WHERE `entry`=23154; +UPDATE `locales_creature` SET `name_loc3`='Soldat der Allianz' WHERE `entry`=23170; +UPDATE `locales_creature` SET `name_loc3`='Soldat der Horde' WHERE `entry`=23171; +UPDATE `locales_creature` SET `name_loc3`='Gardist von Tarrens Mühle' WHERE `entry`=23175; +UPDATE `locales_creature` SET `name_loc3`='Gardist von Tarrens Mühle' WHERE `entry`=23176; +UPDATE `locales_creature` SET `name_loc3`='Aufklärer von Tarrens Mühle' WHERE `entry`=23177; +UPDATE `locales_creature` SET `name_loc3`='Aufklärer von Tarrens Mühle' WHERE `entry`=23178; +UPDATE `locales_creature` SET `name_loc3`='Beschützer von Tarrens Mühle' WHERE `entry`=23179; +UPDATE `locales_creature` SET `name_loc3`='Beschützer von Tarrens Mühle' WHERE `entry`=23180; +UPDATE `locales_creature` SET `name_loc3`='Elitesoldat der Illidari' WHERE `entry`=23226; +UPDATE `locales_creature` SET `name_loc3`='Waldläufer der Himmelswache' WHERE `entry`=23242; +UPDATE `locales_creature` SET `name_loc3`='Agent der Todesschatten' WHERE `entry`=23393; +UPDATE `locales_creature` SET `name_loc3`='Kampfmagier der Illidari' WHERE `entry`=23402; +UPDATE `locales_creature` SET `name_loc3`='Auftragsmörder der Illidari' WHERE `entry`=23403; +UPDATE `locales_creature` SET `name_loc3`='Verteidiger des Sanktums' WHERE `entry`=23435; +UPDATE `locales_creature` SET `name_loc3`='Verteidiger des Altars' WHERE `entry`=23453; +UPDATE `locales_creature` SET `name_loc3`='Zwergischer Feiernder des Braufests' WHERE `entry`=23479; +UPDATE `locales_creature` SET `name_loc3`='Menschlicher Feiernder des Braufests' WHERE `entry`=23480; +UPDATE `locales_creature` SET `name_loc3`='Goblinischer Feiernder des Braufests' WHERE `entry`=23540; +UPDATE `locales_creature` SET `name_loc3`='Schnüffler der Defias' WHERE `entry`=23589; +UPDATE `locales_creature` SET `name_loc3`='Herbeizauberer der Defias' WHERE `entry`=23590; +UPDATE `locales_creature` SET `name_loc3`='Bezwinger der Grimmtotem' WHERE `entry`=23592; +UPDATE `locales_creature` SET `name_loc3`='Geistwandler der Grimmtotem' WHERE `entry`=23593; +UPDATE `locales_creature` SET `name_loc3`='Erdbinder der Grimmtotem' WHERE `entry`=23595; +UPDATE `locales_creature` SET `name_loc3`='Orcischer Feiernder des Braufests' WHERE `entry`=23607; +UPDATE `locales_creature` SET `name_loc3`='Taurischer Feiernder des Braufests' WHERE `entry`=23608; +UPDATE `locales_creature` SET `name_loc3`='Trollischer Feiernder des Braufests' WHERE `entry`=23609; +UPDATE `locales_creature` SET `name_loc3`='Blutelfischer Feiernder des Braufests' WHERE `entry`=23610; +UPDATE `locales_creature` SET `name_loc3`='Untoter Feiernder des Braufests' WHERE `entry`=23611; +UPDATE `locales_creature` SET `name_loc3`='Draenischer Feiernder des Braufests' WHERE `entry`=23613; +UPDATE `locales_creature` SET `name_loc3`='Gnomischer Feiernder des Braufests' WHERE `entry`=23614; +UPDATE `locales_creature` SET `name_loc3`='Nachtelfischer Feiernder des Braufests' WHERE `entry`=23615; +UPDATE `locales_creature` SET `name_loc3`='Freibeuter' WHERE `entry`=23620; +UPDATE `locales_creature` SET `name_loc3`='Ältester der Grimmtotem' WHERE `entry`=23714; +UPDATE `locales_creature` SET `name_loc3`='Gefangener von Theramore' WHERE `entry`=23720; +UPDATE `locales_creature` SET `name_loc3`='Verletzter Verteidiger' WHERE `entry`=23783; +UPDATE `locales_creature` SET `name_loc3`='Soldat der Nordflotte' WHERE `entry`=23793; +UPDATE `locales_creature` SET `name_loc3`='Sanitäter der Nordflotte' WHERE `entry`=23794; +UPDATE `locales_creature` SET `name_loc3`='Kanonier des Hafens der Vergeltung' WHERE `entry`=23809; +UPDATE `locales_creature` SET `name_loc3`='Kanonier der Westwacht' WHERE `entry`=23839; +UPDATE `locales_creature` SET `name_loc3`='Armbrustschütze der Westwacht' WHERE `entry`=23840; +UPDATE `locales_creature` SET `name_loc3`='Verteidiger der Westwacht' WHERE `entry`=23842; +UPDATE `locales_creature` SET `name_loc3`='Offizier der Westwacht' WHERE `entry`=23844; +UPDATE `locales_creature` SET `name_loc3`='Kavallerist der Westwacht' WHERE `entry`=23856; +UPDATE `locales_creature` SET `name_loc3`='Kavallerist der Westwacht' WHERE `entry`=23857; +UPDATE `locales_creature` SET `name_loc3`='Vergeltungsbringer' WHERE `entry`=23865; +UPDATE `locales_creature` SET `name_loc3`='Armbrustschütze der Verlassenen' WHERE `entry`=23883; +UPDATE `locales_creature` SET `name_loc3`='Schütze von Theramore' WHERE `entry`=23900; +UPDATE `locales_creature` SET `name_loc3`='Arbeiter der Westwacht' WHERE `entry`=23911; +UPDATE `locales_creature` SET `name_loc3`='Verteidiger der Westwacht' WHERE `entry`=23933; +UPDATE `locales_creature` SET `name_loc3`='Berger der Nordflotte' WHERE `entry`=23934; +UPDATE `locales_creature` SET `name_loc3`='Verwirrter Forscher' WHERE `entry`=23967; +UPDATE `locales_creature` SET `name_loc3`='Leichnam eines Verlassenen' WHERE `entry`=24010; +UPDATE `locales_creature` SET `name_loc3`='Kriegerheld vom Lager der Winterhufe' WHERE `entry`=24031; +UPDATE `locales_creature` SET `name_loc3`='Gefangener von Gjalerbron' WHERE `entry`=24035; +UPDATE `locales_creature` SET `name_loc3`='Tagelöhner von Wildervar' WHERE `entry`=24058; +UPDATE `locales_creature` SET `name_loc3`='Minenarbeiter von Wildervar' WHERE `entry`=24062; +UPDATE `locales_creature` SET `name_loc3`='Späher von Valgarde' WHERE `entry`=24075; +UPDATE `locales_creature` SET `name_loc3`='Aufgespießter Späher von Valgarde' WHERE `entry`=24077; +UPDATE `locales_creature` SET `name_loc3`='Apothekersgehilfe' WHERE `entry`=24081; +UPDATE `locales_creature` SET `name_loc3`='Reservist der Nordflotte' WHERE `entry`=24120; +UPDATE `locales_creature` SET `name_loc3`='Windreiter der Winterhufe' WHERE `entry`=24132; +UPDATE `locales_creature` SET `name_loc3`='Windreiter vom Lager der Winterhufe' WHERE `entry`=24142; +UPDATE `locales_creature` SET `name_loc3`='Fernläufer der Winterhufe' WHERE `entry`=24195; +UPDATE `locales_creature` SET `name_loc3`='Scharfschütze der Westwacht' WHERE `entry`=24197; +UPDATE `locales_creature` SET `name_loc3`='Befreiter Fernläufer der Winterhufe' WHERE `entry`=24211; +UPDATE `locales_creature` SET `name_loc3`='Gefangener der Drachenschinder' WHERE `entry`=24226; +UPDATE `locales_creature` SET `name_loc3`='Gefangener der Drachenschinder' WHERE `entry`=24253; +UPDATE `locales_creature` SET `name_loc3`='Gefangener der Drachenschinder' WHERE `entry`=24254; +UPDATE `locales_creature` SET `name_loc3`='Gefangener der Drachenschinder' WHERE `entry`=24255; +UPDATE `locales_creature` SET `name_loc3`='Ausgräber des Stählernen Tores' WHERE `entry`=24398; +UPDATE `locales_creature` SET `name_loc3`='Archäologe des Stählernen Tores' WHERE `entry`=24400; +UPDATE `locales_creature` SET `name_loc3`='Kanalisierer der Sonnensucher' WHERE `entry`=24430; +UPDATE `locales_creature` SET `name_loc3`='Dieb des Syndikats' WHERE `entry`=24477; +UPDATE `locales_creature` SET `name_loc3`='Feiernder des Braufests' WHERE `entry`=24484; +UPDATE `locales_creature` SET `name_loc3`='Diener des Voodoo' WHERE `entry`=24529; +UPDATE `locales_creature` SET `name_loc3`='Nordendsiedler' WHERE `entry`=24535; +UPDATE `locales_creature` SET `name_loc3`='Betrunkener Nordmeerpirat' WHERE `entry`=24642; +UPDATE `locales_creature` SET `name_loc3`='Magister der Sonnenklingen' WHERE `entry`=24685; +UPDATE `locales_creature` SET `name_loc3`='Hexenmeister der Sonnenklingen' WHERE `entry`=24686; +UPDATE `locales_creature` SET `name_loc3`='Heiler der Sonnenklingen' WHERE `entry`=24687; +UPDATE `locales_creature` SET `name_loc3`='Erfahrener Bukanier' WHERE `entry`=24714; +UPDATE `locales_creature` SET `name_loc3`='Bewahrer der Sonnenklingen' WHERE `entry`=24762; +UPDATE `locales_creature` SET `name_loc3`='Kanalisierer der Zerschmetterten Sonne' WHERE `entry`=24923; +UPDATE `locales_creature` SET `name_loc3`='Seuchenbringer des Kults' WHERE `entry`=24957; +UPDATE `locales_creature` SET `name_loc3`='Späher der Zerschmetterten Sonne' WHERE `entry`=24964; +UPDATE `locales_creature` SET `name_loc3`='Bombenschütze der Zerschmetterten Sonne' WHERE `entry`=25144; +UPDATE `locales_creature` SET `name_loc3`='Magus der Zerschmetterten Sonne' WHERE `entry`=25153; +UPDATE `locales_creature` SET `name_loc3`='Kleriker der Zerschmetterten Sonne' WHERE `entry`=25155; +UPDATE `locales_creature` SET `name_loc3`='Rekrut der Zerschmetterten Sonne' WHERE `entry`=25164; +UPDATE `locales_creature` SET `name_loc3`='Erzmagier der Zerschmetterten Sonne' WHERE `entry`=25170; +UPDATE `locales_creature` SET `name_loc3`='Zivilrekrut' WHERE `entry`=25220; +UPDATE `locales_creature` SET `name_loc3`='Schütze des Kriegshymnenklans' WHERE `entry`=25244; +UPDATE `locales_creature` SET `name_loc3`='Zivilrekrut' WHERE `entry`=25266; +UPDATE `locales_creature` SET `name_loc3`='Schmied des Kriegshymnenklans' WHERE `entry`=25275; +UPDATE `locales_creature` SET `name_loc3`='Goblinischer Belagerungsingenieur' WHERE `entry`=25276; +UPDATE `locales_creature` SET `name_loc3`='Windreiter des Kriegshymnenklans' WHERE `entry`=25286; +UPDATE `locales_creature` SET `name_loc3`='Kanonier der Valianzfeste' WHERE `entry`=25306; +UPDATE `locales_creature` SET `name_loc3`='Zivilrekrut' WHERE `entry`=25317; +UPDATE `locales_creature` SET `name_loc3`='Standartenträger des Kriegshymnenklans' WHERE `entry`=25337; +UPDATE `locales_creature` SET `name_loc3`='Toter Karawanenarbeiter' WHERE `entry`=25341; +UPDATE `locales_creature` SET `name_loc3`='Wiederauferstandener Fernläufer' WHERE `entry`=25350; +UPDATE `locales_creature` SET `name_loc3`='Geisterhafter Weiser' WHERE `entry`=25351; +UPDATE `locales_creature` SET `name_loc3`='Beryllschatzjäger' WHERE `entry`=25353; +UPDATE `locales_creature` SET `name_loc3`='Deserteur der Allianz' WHERE `entry`=25361; +UPDATE `locales_creature` SET `name_loc3`='Kabalist der Sonnenklingen' WHERE `entry`=25363; +UPDATE `locales_creature` SET `name_loc3`='Erzmagier der Sonnenklingen' WHERE `entry`=25367; +UPDATE `locales_creature` SET `name_loc3`='Töter der Sonnenklingen' WHERE `entry`=25368; +UPDATE `locales_creature` SET `name_loc3`='Verteidiger der Sonnenklingen' WHERE `entry`=25369; +UPDATE `locales_creature` SET `name_loc3`='Abendpriester der Sonnenklingen' WHERE `entry`=25370; +UPDATE `locales_creature` SET `name_loc3`='Morgenpriester der Sonnenklingen' WHERE `entry`=25371; +UPDATE `locales_creature` SET `name_loc3`='Späher der Sonnenklingen' WHERE `entry`=25372; +UPDATE `locales_creature` SET `name_loc3`='Seelenbinder der Schattenschwerter' WHERE `entry`=25373; +UPDATE `locales_creature` SET `name_loc3`='Krieger der Kriegshymnenfeste' WHERE `entry`=25414; +UPDATE `locales_creature` SET `name_loc3`='Magier der Kriegshymnenfeste' WHERE `entry`=25420; +UPDATE `locales_creature` SET `name_loc3`='Schamane der Kriegshymnenfeste' WHERE `entry`=25421; +UPDATE `locales_creature` SET `name_loc3`='Späher des Kriegshymnenklans' WHERE `entry`=25439; +UPDATE `locales_creature` SET `name_loc3`='Beryllpionier' WHERE `entry`=25449; +UPDATE `locales_creature` SET `name_loc3`='Todesbringer der Schattenschwerter' WHERE `entry`=25485; +UPDATE `locales_creature` SET `name_loc3`='Bezwinger der Schattenschwerter' WHERE `entry`=25486; +UPDATE `locales_creature` SET `name_loc3`='Geheimkultist' WHERE `entry`=25605; +UPDATE `locales_creature` SET `name_loc3`='Milizsoldat von Fernhain' WHERE `entry`=25617; +UPDATE `locales_creature` SET `name_loc3`='Kultist der Nekrolyten' WHERE `entry`=25651; +UPDATE `locales_creature` SET `name_loc3`='Soldat der Zerschmetterten Sonne' WHERE `entry`=25661; +UPDATE `locales_creature` SET `name_loc3`='Bogenschütze der Zerschmetterten Sonne' WHERE `entry`=25662; +UPDATE `locales_creature` SET `name_loc3`='Magier der Zerschmetterten Sonne' WHERE `entry`=25663; +UPDATE `locales_creature` SET `name_loc3`='Flammenrufer des Irdenen Rings' WHERE `entry`=25754; +UPDATE `locales_creature` SET `name_loc3`='Deserteur der Allianz' WHERE `entry`=25761; +UPDATE `locales_creature` SET `name_loc3`='Pilot von Kurbelzisch' WHERE `entry`=25767; +UPDATE `locales_creature` SET `name_loc3`='Überlebender von Kurbelzisch' WHERE `entry`=25773; +UPDATE `locales_creature` SET `name_loc3`='Überlebender von Landebahn Kurbelzisch' WHERE `entry`=25783; +UPDATE `locales_creature` SET `name_loc3`='Berserker der Schattenschwerter' WHERE `entry`=25798; +UPDATE `locales_creature` SET `name_loc3`='Beuteverrückter Wilderer' WHERE `entry`=25806; +UPDATE `locales_creature` SET `name_loc3`='Vollstrecker der D.E.H.T.A.' WHERE `entry`=25808; +UPDATE `locales_creature` SET `name_loc3`='Nesingwarys Fallensteller' WHERE `entry`=25835; +UPDATE `locales_creature` SET `name_loc3`='Kommandant der Schattenschwerter' WHERE `entry`=25837; +UPDATE `locales_creature` SET `name_loc3`='Zwielichtfeueranbeter' WHERE `entry`=25863; +UPDATE `locales_creature` SET `name_loc3`='Zwielichtflammenwächter' WHERE `entry`=25866; +UPDATE `locales_creature` SET `name_loc3`='Sonnenwendkostüm: Blutelf' WHERE `entry`=25868; +UPDATE `locales_creature` SET `name_loc3`='Sonnenwendkostüm: Untoter' WHERE `entry`=25878; +UPDATE `locales_creature` SET `name_loc3`='Sonnenwendversorger' WHERE `entry`=26123; +UPDATE `locales_creature` SET `name_loc3`='Auferstandener Verbündeter' WHERE `entry`=26125; +UPDATE `locales_creature` SET `name_loc3`='Evakuierter der Taunka''le' WHERE `entry`=26159; +UPDATE `locales_creature` SET `name_loc3`='Evakuierter der Taunka''le' WHERE `entry`=26167; +UPDATE `locales_creature` SET `name_loc3`='Getöteter Kultist' WHERE `entry`=26172; +UPDATE `locales_creature` SET `name_loc3`='Elitesoldat der Kor''kron' WHERE `entry`=26183; +UPDATE `locales_creature` SET `name_loc3`='Flüchtender Kultist' WHERE `entry`=26189; +UPDATE `locales_creature` SET `name_loc3`='Fußsoldat der Westfallbrigade' WHERE `entry`=26217; +UPDATE `locales_creature` SET `name_loc3`='Urahne des Irdenen Rings' WHERE `entry`=26221; +UPDATE `locales_creature` SET `name_loc3`='Zwielichtkryomant' WHERE `entry`=26222; +UPDATE `locales_creature` SET `name_loc3`='Friedensbewahrer der Zerschmetterten Sonne' WHERE `entry`=26253; +UPDATE `locales_creature` SET `name_loc3`='Zauberer der Sognadel' WHERE `entry`=26257; +UPDATE `locales_creature` SET `name_loc3`='Soldat der Zerschmetterten Sonne' WHERE `entry`=26259; +UPDATE `locales_creature` SET `name_loc3`='Magierjäger der Drachenöde' WHERE `entry`=26280; +UPDATE `locales_creature` SET `name_loc3`='Risswirker der Zerschmetterten Sonne' WHERE `entry`=26289; +UPDATE `locales_creature` SET `name_loc3`='Kultist der Anub''ar' WHERE `entry`=26319; +UPDATE `locales_creature` SET `name_loc3`='Feldmesser der Forscherliga' WHERE `entry`=26362; +UPDATE `locales_creature` SET `name_loc3`='Jäger von Julheim' WHERE `entry`=26389; +UPDATE `locales_creature` SET `name_loc3`='Soldat der Taunka' WHERE `entry`=26437; +UPDATE `locales_creature` SET `name_loc3`='Transformation eines toten Magierjägers' WHERE `entry`=26476; +UPDATE `locales_creature` SET `name_loc3`='Krieger der Horde' WHERE `entry`=26486; +UPDATE `locales_creature` SET `name_loc3`='Soldat der Allianz' WHERE `entry`=26487; +UPDATE `locales_creature` SET `name_loc3`='Chemiker der Verlassenen' WHERE `entry`=26507; +UPDATE `locales_creature` SET `name_loc3`='Scharlachroter Fußsoldat' WHERE `entry`=26524; +UPDATE `locales_creature` SET `name_loc3`='Verseuchter Scharlachroter Fußsoldat' WHERE `entry`=26526; +UPDATE `locales_creature` SET `name_loc3`='Kriegsreiter der Kor''kron' WHERE `entry`=26572; +UPDATE `locales_creature` SET `name_loc3`='Luftfahrer von Kurbelzisch' WHERE `entry`=26601; +UPDATE `locales_creature` SET `name_loc3`='Windzürner der Kor''kron' WHERE `entry`=26603; +UPDATE `locales_creature` SET `name_loc3`='Fallschirmjäger von Kurbelzisch' WHERE `entry`=26619; +UPDATE `locales_creature` SET `name_loc3`='Zuschauer der Drachenschinder' WHERE `entry`=26667; +UPDATE `locales_creature` SET `name_loc3`='Fährtenleser von Silberwasser' WHERE `entry`=26679; +UPDATE `locales_creature` SET `name_loc3`='Bewohner von Silberwasser' WHERE `entry`=26708; +UPDATE `locales_creature` SET `name_loc3`='Aszendent der Magierjäger' WHERE `entry`=26727; +UPDATE `locales_creature` SET `name_loc3`='Initiand der Magierjäger' WHERE `entry`=26728; +UPDATE `locales_creature` SET `name_loc3`='Bediensteter' WHERE `entry`=26729; +UPDATE `locales_creature` SET `name_loc3`='Diener der Düsterbräu' WHERE `entry`=26776; +UPDATE `locales_creature` SET `name_loc3`='Kriegsreiter der Kor''kron' WHERE `entry`=26813; +UPDATE `locales_creature` SET `name_loc3`='Fokushexer' WHERE `entry`=26816; +UPDATE `locales_creature` SET `name_loc3`='Kämpfer von Kurbelzisch' WHERE `entry`=26817; +UPDATE `locales_creature` SET `name_loc3`='Legionär von Burg Siegeswall' WHERE `entry`=26839; +UPDATE `locales_creature` SET `name_loc3`='Grubenkampfzuschauer' WHERE `entry`=26869; +UPDATE `locales_creature` SET `name_loc3`='Drachenjäger der Dunkelspeere' WHERE `entry`=26870; +UPDATE `locales_creature` SET `name_loc3`='Fußsoldat von Ammertann' WHERE `entry`=27072; +UPDATE `locales_creature` SET `name_loc3`='Verletzter Krieger des Kriegshymnenklans' WHERE `entry`=27106; +UPDATE `locales_creature` SET `name_loc3`='Verletzter Magier des Kriegshymnenklans' WHERE `entry`=27107; +UPDATE `locales_creature` SET `name_loc3`='Verletzter Schamane des Kriegshymnenklans' WHERE `entry`=27108; +UPDATE `locales_creature` SET `name_loc3`='Verletzter Stellvertreter des Kriegshymnenklans' WHERE `entry`=27109; +UPDATE `locales_creature` SET `name_loc3`='Späher von Ammertann' WHERE `entry`=27117; +UPDATE `locales_creature` SET `name_loc3`='Räuber von Burg Siegeswall' WHERE `entry`=27118; +UPDATE `locales_creature` SET `name_loc3`='Kriegerheld von Oneqwah' WHERE `entry`=27126; +UPDATE `locales_creature` SET `name_loc3`='Infanterist der 7. Legion' WHERE `entry`=27160; +UPDATE `locales_creature` SET `name_loc3`='Dragoner der 7. Legion' WHERE `entry`=27161; +UPDATE `locales_creature` SET `name_loc3`='Belagerungsingenieur der 7. Legion' WHERE `entry`=27163; +UPDATE `locales_creature` SET `name_loc3`='Kampfmagier der 7. Legion' WHERE `entry`=27164; +UPDATE `locales_creature` SET `name_loc3`='Kriegsmagier von Bernsteinflöz' WHERE `entry`=27170; +UPDATE `locales_creature` SET `name_loc3`='Kriegsmagier des Transitusschilds' WHERE `entry`=27175; +UPDATE `locales_creature` SET `name_loc3`='Rabenpriester des Ansturms' WHERE `entry`=27202; +UPDATE `locales_creature` SET `name_loc3`='Fußsoldat des Ansturms' WHERE `entry`=27203; +UPDATE `locales_creature` SET `name_loc3`='Scharlachroter Fußsoldat von Neuherdweiler' WHERE `entry`=27205; +UPDATE `locales_creature` SET `name_loc3`='Vergessener Arbeiter' WHERE `entry`=27226; +UPDATE `locales_creature` SET `name_loc3`='Deckmatrose des Ansturms' WHERE `entry`=27233; +UPDATE `locales_creature` SET `name_loc3`='Argentumheiler' WHERE `entry`=27305; +UPDATE `locales_creature` SET `name_loc3`='Infanterist des Ansturms' WHERE `entry`=27330; +UPDATE `locales_creature` SET `name_loc3`='Hilfloser Dorfbauer von Wintergarde' WHERE `entry`=27345; +UPDATE `locales_creature` SET `name_loc3`='Nekrolyt der Brennenden Tiefen' WHERE `entry`=27356; +UPDATE `locales_creature` SET `name_loc3`='Totenbeschwörer der Brennenden Tiefen' WHERE `entry`=27358; +UPDATE `locales_creature` SET `name_loc3`='Gefangener Dorfbewohner von Wintergarde' WHERE `entry`=27359; +UPDATE `locales_creature` SET `name_loc3`='Fußsoldat des Ansturms' WHERE `entry`=27405; +UPDATE `locales_creature` SET `name_loc3`='Fußsoldat des Ansturms' WHERE `entry`=27406; +UPDATE `locales_creature` SET `name_loc3`='Marodeur von Burg Siegeswall' WHERE `entry`=27424; +UPDATE `locales_creature` SET `name_loc3`='Grunzer von Burg Siegeswall' WHERE `entry`=27470; +UPDATE `locales_creature` SET `name_loc3`='Infanterist der Westfallbrigade' WHERE `entry`=27475; +UPDATE `locales_creature` SET `name_loc3`='Erschlagener Fallensteller' WHERE `entry`=27479; +UPDATE `locales_creature` SET `name_loc3`='Leiche eines Infanteristen von Westfall' WHERE `entry`=27481; +UPDATE `locales_creature` SET `name_loc3`='Verwundeter Infanterist von Westfall' WHERE `entry`=27482; +UPDATE `locales_creature` SET `name_loc3`='Berserker von Burg Siegeswall' WHERE `entry`=27500; +UPDATE `locales_creature` SET `name_loc3`='Marinesoldat der Westfallbrigade' WHERE `entry`=27501; +UPDATE `locales_creature` SET `name_loc3`='Verwundeter Soldat von Fordragon' WHERE `entry`=27517; +UPDATE `locales_creature` SET `name_loc3`='Fußsoldat von Fordragon' WHERE `entry`=27518; +UPDATE `locales_creature` SET `name_loc3`='Greifenreiter von Fordragon' WHERE `entry`=27521; +UPDATE `locales_creature` SET `name_loc3`='Bauer von Fordragon' WHERE `entry`=27536; +UPDATE `locales_creature` SET `name_loc3`='Eisiger Nekromant' WHERE `entry`=27539; +UPDATE `locales_creature` SET `name_loc3`='Jäger von Silberwasser' WHERE `entry`=27546; +UPDATE `locales_creature` SET `name_loc3`='Elitesoldat der Westfallbrigade' WHERE `entry`=27549; +UPDATE `locales_creature` SET `name_loc3`='Windzürner der Kor''kron' WHERE `entry`=27559; +UPDATE `locales_creature` SET `name_loc3`='Speerwerfer der Dunkelspeere' WHERE `entry`=27560; +UPDATE `locales_creature` SET `name_loc3`='Rekrut der Allianz' WHERE `entry`=27564; +UPDATE `locales_creature` SET `name_loc3`='Elitesoldat der 7. Legion' WHERE `entry`=27588; +UPDATE `locales_creature` SET `name_loc3`='Verteidiger des Wyrmruhtempels' WHERE `entry`=27629; +UPDATE `locales_creature` SET `name_loc3`='Tempelrufer' WHERE `entry`=27643; +UPDATE `locales_creature` SET `name_loc3`='Greifenreiter von Wintergarde' WHERE `entry`=27662; +UPDATE `locales_creature` SET `name_loc3`='Plünderer der Kor''kron' WHERE `entry`=27665; +UPDATE `locales_creature` SET `name_loc3`='Sturmsoldat von Fordragon' WHERE `entry`=27673; +UPDATE `locales_creature` SET `name_loc3`='Verteidiger von Silberwasser' WHERE `entry`=27676; +UPDATE `locales_creature` SET `name_loc3`='Schamane des Kriegshymnenklans' WHERE `entry`=27678; +UPDATE `locales_creature` SET `name_loc3`='Eisiger Nekromantenangreifer' WHERE `entry`=27687; +UPDATE `locales_creature` SET `name_loc3`='Verteidiger des Wyrmruhtempels' WHERE `entry`=27690; +UPDATE `locales_creature` SET `name_loc3`='Kriegsmagier von Fordragon' WHERE `entry`=27695; +UPDATE `locales_creature` SET `name_loc3`='Elitesoldat der 7. Legion' WHERE `entry`=27713; +UPDATE `locales_creature` SET `name_loc3`='Verteidiger von Burg Siegeswall' WHERE `entry`=27748; +UPDATE `locales_creature` SET `name_loc3`='Rekrut der Horde' WHERE `entry`=27749; +UPDATE `locales_creature` SET `name_loc3`='Verteidiger der Westfallbrigade' WHERE `entry`=27758; +UPDATE `locales_creature` SET `name_loc3`='Verletzter Soldat der 7. Legion' WHERE `entry`=27788; +UPDATE `locales_creature` SET `name_loc3`='Scharfschütze der 7. Legion' WHERE `entry`=27791; +UPDATE `locales_creature` SET `name_loc3`='Greifenreiter von Valgarde' WHERE `entry`=27887; +UPDATE `locales_creature` SET `name_loc3`='Argentumkreuzfahrer' WHERE `entry`=28029; +UPDATE `locales_creature` SET `name_loc3`='Argentumsoldat' WHERE `entry`=28041; +UPDATE `locales_creature` SET `name_loc3`='Greifenreiter von Wintergarde' WHERE `entry`=28065; +UPDATE `locales_creature` SET `name_loc3`='Rekrut des Kreuzzugs' WHERE `entry`=28090; +UPDATE `locales_creature` SET `name_loc3`='Argentumfußsoldat' WHERE `entry`=28117; +UPDATE `locales_creature` SET `name_loc3`='Ausgräber der Venture Co.' WHERE `entry`=28123; +UPDATE `locales_creature` SET `name_loc3`='Besiegter Argentumfußsoldat' WHERE `entry`=28156; +UPDATE `locales_creature` SET `name_loc3`='Bombenschütze der Westwacht' WHERE `entry`=28157; +UPDATE `locales_creature` SET `name_loc3`='Bürger von Stratholme' WHERE `entry`=28167; +UPDATE `locales_creature` SET `name_loc3`='Einwohner von Stratholme' WHERE `entry`=28169; +UPDATE `locales_creature` SET `name_loc3`='Pilot der Venture Co.' WHERE `entry`=28229; +UPDATE `locales_creature` SET `name_loc3`='Argentumkreuzfahrer' WHERE `entry`=28247; +UPDATE `locales_creature` SET `name_loc3`='Besiegter Argentumfußsoldat (transformiert)' WHERE `entry`=28259; +UPDATE `locales_creature` SET `name_loc3`='Entflohener Gladiator' WHERE `entry`=28322; +UPDATE `locales_creature` SET `name_loc3`='Seuchenverbreiter der Verlassenen (Gasmaske)' WHERE `entry`=28348; +UPDATE `locales_creature` SET `name_loc3`='Belagerungsingenieur der 7. Legion' WHERE `entry`=28370; +UPDATE `locales_creature` SET `name_loc3`='Infiltrierender Kultist' WHERE `entry`=28373; +UPDATE `locales_creature` SET `name_loc3`='Nekromant von Acherus' WHERE `entry`=28383; +UPDATE `locales_creature` SET `name_loc3`='Gefangener des Scharlachroten Kreuzzugs' WHERE `entry`=28385; +UPDATE `locales_creature` SET `name_loc3`='Gefangener der Argentumdämmerung' WHERE `entry`=28386; +UPDATE `locales_creature` SET `name_loc3`='Initiand der Todesritter' WHERE `entry`=28394; +UPDATE `locales_creature` SET `name_loc3`='Initiand der Todesritter' WHERE `entry`=28406; +UPDATE `locales_creature` SET `name_loc3`='Gefangener Fußsoldat' WHERE `entry`=28415; +UPDATE `locales_creature` SET `name_loc3`='Leiche eines Kultisten' WHERE `entry`=28464; +UPDATE `locales_creature` SET `name_loc3`='Jünger des Blutes' WHERE `entry`=28489; +UPDATE `locales_creature` SET `name_loc3`='Jünger des Frostes' WHERE `entry`=28490; +UPDATE `locales_creature` SET `name_loc3`='Jünger des Unheiligen' WHERE `entry`=28491; +UPDATE `locales_creature` SET `name_loc3`='Versklavter Arbeiter' WHERE `entry`=28505; +UPDATE `locales_creature` SET `name_loc3`='Scharlachroter Kreuzfahrer' WHERE `entry`=28529; +UPDATE `locales_creature` SET `name_loc3`='Scharlachroter Kommandant' WHERE `entry`=28530; +UPDATE `locales_creature` SET `name_loc3`='Sabotierender Kultist' WHERE `entry`=28538; +UPDATE `locales_creature` SET `name_loc3`='Scharlachroter Arbeiter' WHERE `entry`=28557; +UPDATE `locales_creature` SET `name_loc3`='Bauarbeiter' WHERE `entry`=28569; +UPDATE `locales_creature` SET `name_loc3`='Bürger von Havenau' WHERE `entry`=28576; +UPDATE `locales_creature` SET `name_loc3`='Bürger von Havenau' WHERE `entry`=28577; +UPDATE `locales_creature` SET `name_loc3`='Bauarbeiter' WHERE `entry`=28593; +UPDATE `locales_creature` SET `name_loc3`='Scharlachroter Prediger' WHERE `entry`=28594; +UPDATE `locales_creature` SET `name_loc3`='Akolyth der Todeshand' WHERE `entry`=28602; +UPDATE `locales_creature` SET `name_loc3`='Abenteuerlustiger Zwerg' WHERE `entry`=28604; +UPDATE `locales_creature` SET `name_loc3`='Scharlachroter Sanitäter' WHERE `entry`=28608; +UPDATE `locales_creature` SET `name_loc3`='Scharlachroter Infanterist' WHERE `entry`=28609; +UPDATE `locales_creature` SET `name_loc3`='Wolfsreiter von Orgrimmar' WHERE `entry`=28613; +UPDATE `locales_creature` SET `name_loc3`='Forscher des Apothekariums' WHERE `entry`=28638; +UPDATE `locales_creature` SET `name_loc3`='Bürger von Havenau' WHERE `entry`=28660; +UPDATE `locales_creature` SET `name_loc3`='Bürger von Havenau' WHERE `entry`=28662; +UPDATE `locales_creature` SET `name_loc3`='Bote der Apothekervereinigung' WHERE `entry`=28743; +UPDATE `locales_creature` SET `name_loc3`='Verteidiger des Argentumstützpunkts' WHERE `entry`=28801; +UPDATE `locales_creature` SET `name_loc3`='Ehrwürdiger Priester' WHERE `entry`=28814; +UPDATE `locales_creature` SET `name_loc3`='Verteidiger der Lichtbresche' WHERE `entry`=28818; +UPDATE `locales_creature` SET `name_loc3`='Scharlachrote Flotte' WHERE `entry`=28849; +UPDATE `locales_creature` SET `name_loc3`='Toter Jünger von Mam''toth' WHERE `entry`=28853; +UPDATE `locales_creature` SET `name_loc3`='Scharlachroter Flottenverteidiger' WHERE `entry`=28856; +UPDATE `locales_creature` SET `name_loc3`='Jünger von Mam''toth' WHERE `entry`=28861; +UPDATE `locales_creature` SET `name_loc3`='Scharlachroter Flottenverteidiger' WHERE `entry`=28884; +UPDATE `locales_creature` SET `name_loc3`='Scharlachroter Flottenverteidiger' WHERE `entry`=28886; +UPDATE `locales_creature` SET `name_loc3`='Nekromant von Acherus' WHERE `entry`=28889; +UPDATE `locales_creature` SET `name_loc3`='Scharlachroter Arbeiter' WHERE `entry`=28892; +UPDATE `locales_creature` SET `name_loc3`='Scharlachroter Sanitäter' WHERE `entry`=28895; +UPDATE `locales_creature` SET `name_loc3`='Scharlachroter Infanterist' WHERE `entry`=28896; +UPDATE `locales_creature` SET `name_loc3`='Scharlachroter Kommandant' WHERE `entry`=28936; +UPDATE `locales_creature` SET `name_loc3`='Scharlachroter Prediger' WHERE `entry`=28939; +UPDATE `locales_creature` SET `name_loc3`='Scharlachroter Kreuzfahrer' WHERE `entry`=28940; +UPDATE `locales_creature` SET `name_loc3`='Stellvertretender Scharlachroter Kreuzfahrer' WHERE `entry`=28984; +UPDATE `locales_creature` SET `name_loc3`='Scharlachroter Inquisitor' WHERE `entry`=29029; +UPDATE `locales_creature` SET `name_loc3`='Kanonier von Sturmwind' WHERE `entry`=29088; +UPDATE `locales_creature` SET `name_loc3`='Kreuzfahrer von Herdweiler' WHERE `entry`=29102; +UPDATE `locales_creature` SET `name_loc3`='Kreuzfahrer von Tirisfal' WHERE `entry`=29103; +UPDATE `locales_creature` SET `name_loc3`='Stellvertretender Scharlachroter Soldat' WHERE `entry`=29150; +UPDATE `locales_creature` SET `name_loc3`='Dockarbeiter von Sturmwind' WHERE `entry`=29152; +UPDATE `locales_creature` SET `name_loc3`='Nekromant von Acherus' WHERE `entry`=29191; +UPDATE `locales_creature` SET `name_loc3`='Scharlachroter Deserteur' WHERE `entry`=29193; +UPDATE `locales_creature` SET `name_loc3`='Trapper des Espenhains' WHERE `entry`=29269; +UPDATE `locales_creature` SET `name_loc3`='Wanderer von Camp Winterhuf' WHERE `entry`=29301; +UPDATE `locales_creature` SET `name_loc3`='Greifenreiter des Ansturms' WHERE `entry`=29333; +UPDATE `locales_creature` SET `name_loc3`='Rabenbischof des Ansturms' WHERE `entry`=29338; +UPDATE `locales_creature` SET `name_loc3`='Rekrut der Verlassenen' WHERE `entry`=29422; +UPDATE `locales_creature` SET `name_loc3`='Goblinpionier' WHERE `entry`=29433; +UPDATE `locales_creature` SET `name_loc3`='Verletzter Goblinminenarbeiter' WHERE `entry`=29434; +UPDATE `locales_creature` SET `name_loc3`='Eschenholzfallensteller' WHERE `entry`=29492; +UPDATE `locales_creature` SET `name_loc3`='Goblinpionier' WHERE `entry`=29555; +UPDATE `locales_creature` SET `name_loc3`='Unwürdiger Initiand' WHERE `entry`=29567; +UPDATE `locales_creature` SET `name_loc3`='Bogenschütze des Hafens von Sturmwind' WHERE `entry`=29578; +UPDATE `locales_creature` SET `name_loc3`='Dunkelwirker des Ansturms' WHERE `entry`=29614; +UPDATE `locales_creature` SET `name_loc3`='Gefangener Spion der Todesanhöhe' WHERE `entry`=29649; +UPDATE `locales_creature` SET `name_loc3`='Schattenkultist' WHERE `entry`=29717; +UPDATE `locales_creature` SET `name_loc3`='Exemplar eines Bürgers von Stratholme' WHERE `entry`=29865; +UPDATE `locales_creature` SET `name_loc3`='Exemplar eines Einwohners von Stratholme' WHERE `entry`=29866; +UPDATE `locales_creature` SET `name_loc3`='Grunzer der Kriegshymnenfeste' WHERE `entry`=29942; +UPDATE `locales_creature` SET `name_loc3`='Verteidiger von Orgrimmar' WHERE `entry`=29949; +UPDATE `locales_creature` SET `name_loc3`='Verkäufer im Amphitheater' WHERE `entry`=30098; +UPDATE `locales_creature` SET `name_loc3`='Zwielichtanbeter' WHERE `entry`=30111; +UPDATE `locales_creature` SET `name_loc3`='Zwielichtinitiand' WHERE `entry`=30114; +UPDATE `locales_creature` SET `name_loc3`='Tugendhafter Kreuzfahrer' WHERE `entry`=30189; +UPDATE `locales_creature` SET `name_loc3`='Zuschauer im Amphitheater' WHERE `entry`=30193; +UPDATE `locales_creature` SET `name_loc3`='Späher der Sonnenhäscher' WHERE `entry`=30233; +UPDATE `locales_creature` SET `name_loc3`='Späher des Silberbunds' WHERE `entry`=30238; +UPDATE `locales_creature` SET `name_loc3`='Nexusfürst' WHERE `entry`=30245; +UPDATE `locales_creature` SET `name_loc3`='Reiter des Silberbunds' WHERE `entry`=30263; +UPDATE `locales_creature` SET `name_loc3`='Falkenreiter der Sonnenhäscher' WHERE `entry`=30265; +UPDATE `locales_creature` SET `name_loc3`='Befreiter Kreuzfahrer' WHERE `entry`=30274; +UPDATE `locales_creature` SET `name_loc3`='Verteidiger des Hafens von Sturmwind' WHERE `entry`=30289; +UPDATE `locales_creature` SET `name_loc3`='Deckmatrose der Himmelsbrecher' WHERE `entry`=30351; +UPDATE `locales_creature` SET `name_loc3`='Marinesoldat der Himmelsbrecher' WHERE `entry`=30352; +UPDATE `locales_creature` SET `name_loc3`='Zwielichtfreiwilliger' WHERE `entry`=30385; +UPDATE `locales_creature` SET `name_loc3`='Ingenieur der Himmelsbrecher' WHERE `entry`=30394; +UPDATE `locales_creature` SET `name_loc3`='Goblinmechaniker' WHERE `entry`=30400; +UPDATE `locales_creature` SET `name_loc3`='Gefangener Kreuzfahrer' WHERE `entry`=30407; +UPDATE `locales_creature` SET `name_loc3`='Gnomeningenieur' WHERE `entry`=30499; +UPDATE `locales_creature` SET `name_loc3`='Botschafter des Strands der Uralten' WHERE `entry`=30566; +UPDATE `locales_creature` SET `name_loc3`='Gesandter des Strands der Uralten' WHERE `entry`=30567; +UPDATE `locales_creature` SET `name_loc3`='Arbeiter von Tausendwinter' WHERE `entry`=30626; +UPDATE `locales_creature` SET `name_loc3`='Magierjägerveteran' WHERE `entry`=30665; +UPDATE `locales_creature` SET `name_loc3`='Tugendhafter Kreuzfahrer' WHERE `entry`=30672; +UPDATE `locales_creature` SET `name_loc3`='Wildhüter von Nesingwary' WHERE `entry`=30737; +UPDATE `locales_creature` SET `name_loc3`='Elitesoldat der Expedition Valianz' WHERE `entry`=30740; +UPDATE `locales_creature` SET `name_loc3`='Kanonier der Orgrims Hammer' WHERE `entry`=30752; +UPDATE `locales_creature` SET `name_loc3`='Ingenieur der Orgrims Hammer' WHERE `entry`=30753; +UPDATE `locales_creature` SET `name_loc3`='Häscher der Kor''kron' WHERE `entry`=30755; +UPDATE `locales_creature` SET `name_loc3`='Ingenieur von Tausendwinter' WHERE `entry`=30855; +UPDATE `locales_creature` SET `name_loc3`='Schattenwärter der Orgrims Hammer' WHERE `entry`=30866; +UPDATE `locales_creature` SET `name_loc3`='Schildmagier der Himmelsbrecher' WHERE `entry`=30867; +UPDATE `locales_creature` SET `name_loc3`='Argentumkampfpriester' WHERE `entry`=30919; +UPDATE `locales_creature` SET `name_loc3`='Tugendhafter Kreuzfahrer' WHERE `entry`=31033; +UPDATE `locales_creature` SET `name_loc3`='Geißeltotenbeschwörer' WHERE `entry`=31096; +UPDATE `locales_creature` SET `name_loc3`='Schattenadept' WHERE `entry`=31145; +UPDATE `locales_creature` SET `name_loc3`='Verteidiger der Schwarzen Klinge' WHERE `entry`=31250; +UPDATE `locales_creature` SET `name_loc3`='Seuchenfalkner' WHERE `entry`=31262; +UPDATE `locales_creature` SET `name_loc3`='Elementarformer der Ymirjar' WHERE `entry`=31267; +UPDATE `locales_creature` SET `name_loc3`='Sterbender Berserker' WHERE `entry`=31273; +UPDATE `locales_creature` SET `name_loc3`='Argentumheiler' WHERE `entry`=31282; +UPDATE `locales_creature` SET `name_loc3`='Fordragons Fußsoldat' WHERE `entry`=31296; +UPDATE `locales_creature` SET `name_loc3`='Fordragons Kampfmagier' WHERE `entry`=31298; +UPDATE `locales_creature` SET `name_loc3`='Veteran der Schwarzen Klinge' WHERE `entry`=31314; +UPDATE `locales_creature` SET `name_loc3`='Schnitter der Schwarzen Klinge' WHERE `entry`=31316; +UPDATE `locales_creature` SET `name_loc3`='Kommandosoldat der Valianzfeste' WHERE `entry`=31414; +UPDATE `locales_creature` SET `name_loc3`='Grunzer von Orgrimmar' WHERE `entry`=31416; +UPDATE `locales_creature` SET `name_loc3`='Elitesoldat der Kor''kron' WHERE `entry`=31417; +UPDATE `locales_creature` SET `name_loc3`='Orcbürger' WHERE `entry`=31434; +UPDATE `locales_creature` SET `name_loc3`='Räuber des Kriegshymnenklans' WHERE `entry`=31435; +UPDATE `locales_creature` SET `name_loc3`='Chemiker des Apothekariums' WHERE `entry`=31482; +UPDATE `locales_creature` SET `name_loc3`='Freundlicher Zauberer aus Dalaran' WHERE `entry`=31522; +UPDATE `locales_creature` SET `name_loc3`='Freundlicher Gladiator aus Dalaran' WHERE `entry`=31523; +UPDATE `locales_creature` SET `name_loc3`='Elitesoldat von Sturmwind' WHERE `entry`=31639; +UPDATE `locales_creature` SET `name_loc3`='Infanterist der Himmelsbrecher' WHERE `entry`=31701; +UPDATE `locales_creature` SET `name_loc3`='Wyrmwiedererwecker' WHERE `entry`=31731; +UPDATE `locales_creature` SET `name_loc3`='Infanterist der Kor''kron' WHERE `entry`=31832; +UPDATE `locales_creature` SET `name_loc3`='Staffelführer der Kor''kron' WHERE `entry`=31833; +UPDATE `locales_creature` SET `name_loc3`='Geisterführer der Taunka' WHERE `entry`=31841; +UPDATE `locales_creature` SET `name_loc3`='Geisterführer der Zwerge' WHERE `entry`=31842; +UPDATE `locales_creature` SET `name_loc3`='Menschenmagier' WHERE `entry`=31879; +UPDATE `locales_creature` SET `name_loc3`='Transporterpilot der Kor''kron' WHERE `entry`=31891; +UPDATE `locales_creature` SET `name_loc3`='Bannerträger der Geißel' WHERE `entry`=31900; +UPDATE `locales_creature` SET `name_loc3`='Geist eines gefallenen Helden' WHERE `entry`=32149; +UPDATE `locales_creature` SET `name_loc3`='Auserwählter Fanatiker' WHERE `entry`=32175; +UPDATE `locales_creature` SET `name_loc3`='Luftfahrer der Himmelsbrecher' WHERE `entry`=32190; +UPDATE `locales_creature` SET `name_loc3`='Späher der Orgrims Hammer' WHERE `entry`=32201; +UPDATE `locales_creature` SET `name_loc3`='Dunkler Unterwerfer' WHERE `entry`=32236; +UPDATE `locales_creature` SET `name_loc3`='Bitterer Initiand' WHERE `entry`=32238; +UPDATE `locales_creature` SET `name_loc3`='Verkleideter Kreuzfahrer' WHERE `entry`=32241; +UPDATE `locales_creature` SET `name_loc3`='Konvertierter Held' WHERE `entry`=32255; +UPDATE `locales_creature` SET `name_loc3`='Konvertierer der Geißel' WHERE `entry`=32257; +UPDATE `locales_creature` SET `name_loc3`='Leerenbeschwörer' WHERE `entry`=32259; +UPDATE `locales_creature` SET `name_loc3`='Schattenkanalisierer' WHERE `entry`=32262; +UPDATE `locales_creature` SET `name_loc3`='Zerrütteter Gefangener' WHERE `entry`=32275; +UPDATE `locales_creature` SET `name_loc3`='Alchemist des Kults' WHERE `entry`=32290; +UPDATE `locales_creature` SET `name_loc3`='Grüner Krieger' WHERE `entry`=32321; +UPDATE `locales_creature` SET `name_loc3`='Goldener Krieger' WHERE `entry`=32322; +UPDATE `locales_creature` SET `name_loc3`='Grüner Magier' WHERE `entry`=32324; +UPDATE `locales_creature` SET `name_loc3`='Grüner Priester' WHERE `entry`=32343; +UPDATE `locales_creature` SET `name_loc3`='Elitesoldat der Kor''kron' WHERE `entry`=32367; +UPDATE `locales_creature` SET `name_loc3`='Elitesoldat von Sturmwind' WHERE `entry`=32387; +UPDATE `locales_creature` SET `name_loc3`='Chemiker des Apothekariums' WHERE `entry`=32395; +UPDATE `locales_creature` SET `name_loc3`='Bombardementinfanterist' WHERE `entry`=32399; +UPDATE `locales_creature` SET `name_loc3`='Einwohner von Dalaran' WHERE `entry`=32453; +UPDATE `locales_creature` SET `name_loc3`='Einwohner von Dalaran' WHERE `entry`=32454; +UPDATE `locales_creature` SET `name_loc3`='Initiand der Schwarzen Klinge' WHERE `entry`=32468; +UPDATE `locales_creature` SET `name_loc3`='Verfechter der Schwarzen Klinge' WHERE `entry`=32488; +UPDATE `locales_creature` SET `name_loc3`='Verwundeter Bürger von Dalaran' WHERE `entry`=32493; +UPDATE `locales_creature` SET `name_loc3`='Akolyth der Kultisten' WHERE `entry`=32507; +UPDATE `locales_creature` SET `name_loc3`='Infragrüningenieur der Allianz' WHERE `entry`=32526; +UPDATE `locales_creature` SET `name_loc3`='Infragrüningenieur der Horde' WHERE `entry`=32529; +UPDATE `locales_creature` SET `name_loc3`='Dalaranbesucher' WHERE `entry`=32596; +UPDATE `locales_creature` SET `name_loc3`='Dalaranbesucher' WHERE `entry`=32597; +UPDATE `locales_creature` SET `name_loc3`='Dalaranbesucher' WHERE `entry`=32598; +UPDATE `locales_creature` SET `name_loc3`='Dalaranbesucher' WHERE `entry`=32600; +UPDATE `locales_creature` SET `name_loc3`='Dalaranbesucher' WHERE `entry`=32601; +UPDATE `locales_creature` SET `name_loc3`='Dalaranbesucher' WHERE `entry`=32602; +UPDATE `locales_creature` SET `name_loc3`='Frühlingsernter' WHERE `entry`=32798; +UPDATE `locales_creature` SET `name_loc3`='Frühlingssammler' WHERE `entry`=32799; +UPDATE `locales_creature` SET `name_loc3`='Nobelgartenverkäufer' WHERE `entry`=32836; +UPDATE `locales_creature` SET `name_loc3`='Nobelgartenhändler' WHERE `entry`=32837; +UPDATE `locales_creature` SET `name_loc3`='Gefangener Söldnersoldat' WHERE `entry`=32883; +UPDATE `locales_creature` SET `name_loc3`='Gefangener Söldnersoldat' WHERE `entry`=32885; +UPDATE `locales_creature` SET `name_loc3`='Ingenieur der Expedition' WHERE `entry`=33287; +UPDATE `locales_creature` SET `name_loc3`='Streiter von Orgrimmar' WHERE `entry`=33461; +UPDATE `locales_creature` SET `name_loc3`='Streiter von Silbermond' WHERE `entry`=33466; +UPDATE `locales_creature` SET `name_loc3`='Streiter von Unterstadt' WHERE `entry`=33470; +UPDATE `locales_creature` SET `name_loc3`='Streiter von Donnerfels' WHERE `entry`=33472; +UPDATE `locales_creature` SET `name_loc3`='Streiter von Sen''jin' WHERE `entry`=33475; +UPDATE `locales_creature` SET `name_loc3`='Streiter von Sturmwind' WHERE `entry`=33478; +UPDATE `locales_creature` SET `name_loc3`='Streiter von Eisenschmiede' WHERE `entry`=33482; +UPDATE `locales_creature` SET `name_loc3`='Kultverschwörer' WHERE `entry`=33537; +UPDATE `locales_creature` SET `name_loc3`='Wächter der Sonnenhäscher' WHERE `entry`=33543; +UPDATE `locales_creature` SET `name_loc3`='Todeshöriger Zelot' WHERE `entry`=33567; +UPDATE `locales_creature` SET `name_loc3`='Angeheuerter Ingenieur' WHERE `entry`=33626; +UPDATE `locales_creature` SET `name_loc3`='Angeheuerter Demolierer' WHERE `entry`=33627; +UPDATE `locales_creature` SET `name_loc3`='Wächter des Silberbunds' WHERE `entry`=33643; +UPDATE `locales_creature` SET `name_loc3`='Kampfmagier der Kirin Tor' WHERE `entry`=33662; +UPDATE `locales_creature` SET `name_loc3`='Magier der Kirin Tor' WHERE `entry`=33672; +UPDATE `locales_creature` SET `name_loc3`='Kultistenbombenschütze' WHERE `entry`=33695; +UPDATE `locales_creature` SET `name_loc3`='Argentumfriedensbewahrer' WHERE `entry`=33698; +UPDATE `locales_creature` SET `name_loc3`='Verteidiger der Expedition' WHERE `entry`=33816; +UPDATE `locales_creature` SET `name_loc3`='Zwielichtanhänger' WHERE `entry`=33818; +UPDATE `locales_creature` SET `name_loc3`='Zwielichtfrostmagier' WHERE `entry`=33819; +UPDATE `locales_creature` SET `name_loc3`='Söldner der Expedition' WHERE `entry`=34144; +UPDATE `locales_creature` SET `name_loc3`='Ingenieur der Expedition' WHERE `entry`=34145; +UPDATE `locales_creature` SET `name_loc3`='Argentumfriedensbewahrer' WHERE `entry`=34179; +UPDATE `locales_creature` SET `name_loc3`='Gefangener Streiter' WHERE `entry`=34716; +UPDATE `locales_creature` SET `name_loc3`='Dunkler Zelot' WHERE `entry`=34728; +UPDATE `locales_creature` SET `name_loc3`='Dunkler Ritualist' WHERE `entry`=34734; +UPDATE `locales_creature` SET `name_loc3`='Taurischer Kolosseumszuschauer' WHERE `entry`=34858; +UPDATE `locales_creature` SET `name_loc3`='Orcischer Kolosseumszuschauer' WHERE `entry`=34859; +UPDATE `locales_creature` SET `name_loc3`='Blutelfischer Kolosseumszuschauer' WHERE `entry`=34861; +UPDATE `locales_creature` SET `name_loc3`='Draeneiischer Kolosseumszuschauer' WHERE `entry`=34868; +UPDATE `locales_creature` SET `name_loc3`='Gnomischer Kolosseumszuschauer' WHERE `entry`=34869; +UPDATE `locales_creature` SET `name_loc3`='Menschlicher Kolosseumszuschauer' WHERE `entry`=34870; +UPDATE `locales_creature` SET `name_loc3`='Infanterist der 7. Legion' WHERE `entry`=34919; +UPDATE `locales_creature` SET `name_loc3`='Botschafter der Insel der Eroberung' WHERE `entry`=34948; +UPDATE `locales_creature` SET `name_loc3`='Gesandter der Insel der Eroberung' WHERE `entry`=34949; +UPDATE `locales_creature` SET `name_loc3`='Abgesandter der Insel der Eroberung' WHERE `entry`=34950; +UPDATE `locales_creature` SET `name_loc3`='Gesandter der Insel der Eroberung' WHERE `entry`=34951; +UPDATE `locales_creature` SET `name_loc3`='Zuschauer des Argentumturniers' WHERE `entry`=34970; +UPDATE `locales_creature` SET `name_loc3`='Matrose der Feuerfalke' WHERE `entry`=35070; +UPDATE `locales_creature` SET `name_loc3`='Geopferter Streiter' WHERE `entry`=35097; +UPDATE `locales_creature` SET `name_loc3`='Matrose der Schaumkrone' WHERE `entry`=35098; +UPDATE `locales_creature` SET `name_loc3`='Saboteur des Kults' WHERE `entry`=35116; +UPDATE `locales_creature` SET `name_loc3`='Feiernder Geist eines Verlassenen' WHERE `entry`=35244; +UPDATE `locales_creature` SET `name_loc3`='Feiernder Geist eines Anhängers der Aldor' WHERE `entry`=35258; +UPDATE `locales_creature` SET `name_loc3`='Feiernder Geist eines Anhängers der Seher' WHERE `entry`=35259; +UPDATE `locales_creature` SET `name_loc3`='Argentummönch' WHERE `entry`=35305; +UPDATE `locales_creature` SET `name_loc3`='Argentumlichtwirker' WHERE `entry`=35309; +UPDATE `locales_creature` SET `name_loc3`='Matrose der Scharlachroter Morgen' WHERE `entry`=35318; +UPDATE `locales_creature` SET `name_loc3`='Matrose der Silberklinge' WHERE `entry`=35319; +UPDATE `locales_creature` SET `name_loc3`='Elitesoldat der Kor''kron' WHERE `entry`=35460; +UPDATE `locales_creature` SET `name_loc3`='Besuchender Hexenmeister' WHERE `entry`=35475; +UPDATE `locales_creature` SET `name_loc3`='Argentumfriedensbewahrer' WHERE `entry`=35587; +UPDATE `locales_creature` SET `name_loc3`='Häscher der Kor''kron' WHERE `entry`=36164; +UPDATE `locales_creature` SET `name_loc3`='Deckmatrose der 7. Legion' WHERE `entry`=36165; +UPDATE `locales_creature` SET `name_loc3`='Matrose der 7. Legion' WHERE `entry`=36166; +UPDATE `locales_creature` SET `name_loc3`='Aufseher der Kor''kron' WHERE `entry`=36213; +UPDATE `locales_creature` SET `name_loc3`='Ernter der Seelenwache' WHERE `entry`=36499; +UPDATE `locales_creature` SET `name_loc3`='Animator der Seelenwache' WHERE `entry`=36516; +UPDATE `locales_creature` SET `name_loc3`='Wahnsinniger Apotheker' WHERE `entry`=36568; +UPDATE `locales_creature` SET `name_loc3`='Allianzsklave' WHERE `entry`=36764; +UPDATE `locales_creature` SET `name_loc3`='Allianzsklave' WHERE `entry`=36765; +UPDATE `locales_creature` SET `name_loc3`='Allianzsklave' WHERE `entry`=36766; +UPDATE `locales_creature` SET `name_loc3`='Allianzsklave' WHERE `entry`=36767; +UPDATE `locales_creature` SET `name_loc3`='Hordensklave' WHERE `entry`=36770; +UPDATE `locales_creature` SET `name_loc3`='Hordensklave' WHERE `entry`=36771; +UPDATE `locales_creature` SET `name_loc3`='Hordensklave' WHERE `entry`=36772; +UPDATE `locales_creature` SET `name_loc3`='Hordensklave' WHERE `entry`=36773; +UPDATE `locales_creature` SET `name_loc3`='Agent des Silberbunds' WHERE `entry`=36774; +UPDATE `locales_creature` SET `name_loc3`='Agent der Sonnenhäscher' WHERE `entry`=36776; +UPDATE `locales_creature` SET `name_loc3`='Diener der Todessprecher' WHERE `entry`=36805; +UPDATE `locales_creature` SET `name_loc3`='Geretteter Hordensklave' WHERE `entry`=36889; +UPDATE `locales_creature` SET `name_loc3`='Marinesoldat der Himmelsbrecher' WHERE `entry`=36950; +UPDATE `locales_creature` SET `name_loc3`='Häscher der Kor''kron' WHERE `entry`=36957; +UPDATE `locales_creature` SET `name_loc3`='Axtwerfer der Kor''kron' WHERE `entry`=36968; +UPDATE `locales_creature` SET `name_loc3`='Scharfschütze der Himmelsbrecher' WHERE `entry`=36969; +UPDATE `locales_creature` SET `name_loc3`='Deckmatrose der Himmelsbrecher' WHERE `entry`=36970; +UPDATE `locales_creature` SET `name_loc3`='Raketenschütze der Kor''kron' WHERE `entry`=36982; +UPDATE `locales_creature` SET `name_loc3`='Beschützer der Himmelsbrecher' WHERE `entry`=36998; +UPDATE `locales_creature` SET `name_loc3`='Erleuchter der Himmelsbrecher' WHERE `entry`=37016; +UPDATE `locales_creature` SET `name_loc3`='Vikar der Himmelsbrecher' WHERE `entry`=37021; +UPDATE `locales_creature` SET `name_loc3`='Zauberer der Himmelsbrecher' WHERE `entry`=37026; +UPDATE `locales_creature` SET `name_loc3`='Hierophant der Himmelsbrecher' WHERE `entry`=37027; +UPDATE `locales_creature` SET `name_loc3`='Pirscher der Kor''kron' WHERE `entry`=37028; +UPDATE `locales_creature` SET `name_loc3`='Häscher der Kor''kron' WHERE `entry`=37029; +UPDATE `locales_creature` SET `name_loc3`='Primalist der Kor''kron' WHERE `entry`=37030; +UPDATE `locales_creature` SET `name_loc3`='Verteidiger der Kor''kron' WHERE `entry`=37032; +UPDATE `locales_creature` SET `name_loc3`='Herbeirufer der Kor''kron' WHERE `entry`=37033; +UPDATE `locales_creature` SET `name_loc3`='Templer der Kor''kron' WHERE `entry`=37034; +UPDATE `locales_creature` SET `name_loc3`='Bezwinger der Kor''kron' WHERE `entry`=37035; +UPDATE `locales_creature` SET `name_loc3`='Zauberer der Himmelsbrecher' WHERE `entry`=37116; +UPDATE `locales_creature` SET `name_loc3`='Kriegsmagier der Kor''kron' WHERE `entry`=37117; +UPDATE `locales_creature` SET `name_loc3`='Schütze der Himmelsbrecher' WHERE `entry`=37144; +UPDATE `locales_creature` SET `name_loc3`='Heckenschütze der Kor''kron' WHERE `entry`=37146; +UPDATE `locales_creature` SET `name_loc3`='Nekrolyt der Kor''kron' WHERE `entry`=37149; +UPDATE `locales_creature` SET `name_loc3`='General der Kor''kron' WHERE `entry`=37189; +UPDATE `locales_creature` SET `name_loc3`='Verteidiger des Sonnenbrunnens' WHERE `entry`=37211; +UPDATE `locales_creature` SET `name_loc3`='Erzmagier der Zerschmetterten Sonne' WHERE `entry`=37510; +UPDATE `locales_creature` SET `name_loc3`='Krieger der Zerschmetterten Sonne' WHERE `entry`=37512; +UPDATE `locales_creature` SET `name_loc3`='Wärter des Sonnenbrunnens' WHERE `entry`=37523; +UPDATE `locales_creature` SET `name_loc3`='Befreiter Allianzsklave' WHERE `entry`=37572; +UPDATE `locales_creature` SET `name_loc3`='Befreiter Allianzsklave' WHERE `entry`=37575; +UPDATE `locales_creature` SET `name_loc3`='Befreiter Allianzsklave' WHERE `entry`=37576; +UPDATE `locales_creature` SET `name_loc3`='Befreiter Hordensklave' WHERE `entry`=37577; +UPDATE `locales_creature` SET `name_loc3`='Befreiter Hordensklave' WHERE `entry`=37578; +UPDATE `locales_creature` SET `name_loc3`='Befreiter Hordensklave' WHERE `entry`=37579; +UPDATE `locales_creature` SET `name_loc3`='Sinistrer Adliger' WHERE `entry`=37663; +UPDATE `locales_creature` SET `name_loc3`='Sinistrer Taktiker' WHERE `entry`=37666; +UPDATE `locales_creature` SET `name_loc3`='Bauarbeiter von Silbermond' WHERE `entry`=37707; +UPDATE `locales_creature` SET `name_loc3`='Bürger von Sturmwind' WHERE `entry`=37787; +UPDATE `locales_creature` SET `name_loc3`='Friedensbewahrer der Exodar' WHERE `entry`=37798; +UPDATE `locales_creature` SET `name_loc3`='Aufseher der Kor''kron' WHERE `entry`=37825; +UPDATE `locales_creature` SET `name_loc3`='Marinesoldat der Himmelsbrecher' WHERE `entry`=37830; +UPDATE `locales_creature` SET `name_loc3`='Behüter von Donnerfels' WHERE `entry`=37860; +UPDATE `locales_creature` SET `name_loc3`='Grunzer von Orgrimmar' WHERE `entry`=37869; +UPDATE `locales_creature` SET `name_loc3`='Ingenieur der Himmelsbrecher' WHERE `entry`=37898; +UPDATE `locales_creature` SET `name_loc3`='Häscher der Kor''kron' WHERE `entry`=37920; +UPDATE `locales_creature` SET `name_loc3`='Belagerungsingenieur der Orgrims Hammer' WHERE `entry`=37932; +UPDATE `locales_creature` SET `name_loc3`='Randalierer der Dunkeleisenzwerge' WHERE `entry`=37937; +UPDATE `locales_creature` SET `name_loc3`='Argentumkommandant' WHERE `entry`=37965; +UPDATE `locales_creature` SET `name_loc3`='Kommandant der Schwarzen Klinge' WHERE `entry`=37967; +UPDATE `locales_creature` SET `name_loc3`='Gauner der Manufaktur Krone' WHERE `entry`=37984; +UPDATE `locales_creature` SET `name_loc3`='Agent der Manufaktur Krone' WHERE `entry`=38016; +UPDATE `locales_creature` SET `name_loc3`='Besprenkler der Manufaktur Krone' WHERE `entry`=38023; +UPDATE `locales_creature` SET `name_loc3`='Untergebener der Manufaktur Krone' WHERE `entry`=38030; +UPDATE `locales_creature` SET `name_loc3`='Sprüher der Manufaktur Krone' WHERE `entry`=38032; +UPDATE `locales_creature` SET `name_loc3`='Blutelfischer Pilger' WHERE `entry`=38047; +UPDATE `locales_creature` SET `name_loc3`='Hochelfischer Pilger' WHERE `entry`=38048; +UPDATE `locales_creature` SET `name_loc3`='Junger Pilger' WHERE `entry`=38049; +UPDATE `locales_creature` SET `name_loc3`='Grunzer von Orgrimmar' WHERE `entry`=38050; +UPDATE `locales_creature` SET `name_loc3`='Bürger von Orgrimmar' WHERE `entry`=38067; +UPDATE `locales_creature` SET `name_loc3`='Magier von Orgrimmar' WHERE `entry`=38158; +UPDATE `locales_creature` SET `name_loc3`='Agent des Silberbunds' WHERE `entry`=38200; +UPDATE `locales_creature` SET `name_loc3`='Agent der Sonnenhäscher' WHERE `entry`=38201; +UPDATE `locales_creature` SET `name_loc3`='Argentumkreuzfahrer' WHERE `entry`=38493; +UPDATE `locales_creature` SET `name_loc3`='Argentumkreuzfahrer' WHERE `entry`=38497; +UPDATE `locales_creature` SET `name_loc3`='Beschützer der Grimmtotem' WHERE `entry`=38830; +UPDATE `locales_creature` SET `name_loc3`='Erschlagener Behüter von Donnerfels' WHERE `entry`=38831; +UPDATE `locales_creature` SET `name_loc3`='Sammler der Grimmtotem' WHERE `entry`=38843; +UPDATE `locales_creature` SET `name_loc3`='Zivilist aus Eisenschmiede' WHERE `entry`=38901; +UPDATE `locales_creature` SET `name_loc3`='Zwielichtsucher' WHERE `entry`=39103; +UPDATE `locales_creature` SET `name_loc3`='Infanterist aus Gnomeregan' WHERE `entry`=39252; +UPDATE `locales_creature` SET `name_loc3`='Sanitäter aus Gnomeregan' WHERE `entry`=39275; +UPDATE `locales_creature` SET `name_loc3`='Weltuntergangsverkünder' WHERE `entry`=39328; +UPDATE `locales_creature` SET `name_loc3`='Bürger von Orgrimmar' WHERE `entry`=39343; +UPDATE `locales_creature` SET `name_loc3`='Bürger von Orgrimmar' WHERE `entry`=39632; +UPDATE `locales_creature` SET `name_loc3`='Behüter von Sen''jin' WHERE `entry`=39633; +UPDATE `locales_creature` SET `name_loc3`='Weltuntergangskultist' WHERE `entry`=39648; +UPDATE `locales_creature` SET `name_loc3`='Bürger von Sturmwind' WHERE `entry`=39686; +UPDATE `locales_creature` SET `name_loc3`='Bestrahlter Infanterist' WHERE `entry`=39755; +UPDATE `locales_creature` SET `name_loc3`='Besorgter Bürger' WHERE `entry`=39861; +UPDATE `locales_creature` SET `name_loc3`='Sanitäter aus Gnomeregan' WHERE `entry`=39888; +UPDATE `locales_creature` SET `name_loc3`='Weltuntergangskultist' WHERE `entry`=39891; +UPDATE `locales_creature` SET `name_loc3`='Todessucher' WHERE `entry`=39940; +UPDATE `locales_creature` SET `name_loc3`='Besorgter Bürger' WHERE `entry`=40110; +UPDATE `locales_creature` SET `name_loc3`='Infanterist aus Gnomeregan' WHERE `entry`=40122; +UPDATE `locales_creature` SET `name_loc3`='Weltuntergangsverkünder' WHERE `entry`=40124; +UPDATE `locales_creature` SET `name_loc3`='Bürger von Sturmwind' WHERE `entry`=40125; +UPDATE `locales_creature` SET `name_loc3`='Krieger der Dunkelspeere' WHERE `entry`=40241; +UPDATE `locales_creature` SET `name_loc3`='Krieger der Dunkelspeere' WHERE `entry`=40392; +UPDATE `locales_creature` SET `name_loc3`='Späher der Dunkelspeere' WHERE `entry`=40416; +-- Male esES + +UPDATE `locales_creature` SET `name_loc6`='Ratero' WHERE `entry`=94; +UPDATE `locales_creature` SET `name_loc6`='Bandido' WHERE `entry`=116; +UPDATE `locales_creature` SET `name_loc6`='Mago renegado Defias' WHERE `entry`=450; +UPDATE `locales_creature` SET `name_loc6`='Zahorí bribón' WHERE `entry`=474; +UPDATE `locales_creature` SET `name_loc6`='Trampero Defias' WHERE `entry`=504; +UPDATE `locales_creature` SET `name_loc6`='Saqueador Defias' WHERE `entry`=589; +UPDATE `locales_creature` SET `name_loc6`='Despojador Defias' WHERE `entry`=590; +UPDATE `locales_creature` SET `name_loc6`='Conjurador Defias' WHERE `entry`=619; +UPDATE `locales_creature` SET `name_loc6`='Guardanegro Defias' WHERE `entry`=636; +UPDATE `locales_creature` SET `name_loc6`='Velador rebelde' WHERE `entry`=754; +UPDATE `locales_creature` SET `name_loc6`='Explorador de Rocal' WHERE `entry`=861; +UPDATE `locales_creature` SET `name_loc6`='Expedicionario de Rocal' WHERE `entry`=862; +UPDATE `locales_creature` SET `name_loc6`='Cazador de Rocal' WHERE `entry`=863; +UPDATE `locales_creature` SET `name_loc6`='Bruto de Rocal' WHERE `entry`=866; +UPDATE `locales_creature` SET `name_loc6`='Encantador Defias' WHERE `entry`=910; +UPDATE `locales_creature` SET `name_loc6`='Novicio Peloescarcha' WHERE `entry`=946; +UPDATE `locales_creature` SET `name_loc6`='Bruto de Grom''gol' WHERE `entry`=1064; +UPDATE `locales_creature` SET `name_loc6`='Desollador Peloescarcha' WHERE `entry`=1122; +UPDATE `locales_creature` SET `name_loc6`='Taumaturgo umbrío Peloescarcha' WHERE `entry`=1124; +UPDATE `locales_creature` SET `name_loc6`='Depositario de sangre Ala de Fuego' WHERE `entry`=1410; +UPDATE `locales_creature` SET `name_loc6`='Converso Escarlata' WHERE `entry`=1506; +UPDATE `locales_creature` SET `name_loc6`='Iniciado Escarlata' WHERE `entry`=1507; +UPDATE `locales_creature` SET `name_loc6`='Guerrero Escarlata' WHERE `entry`=1535; +UPDATE `locales_creature` SET `name_loc6`='Misionero Escarlata' WHERE `entry`=1536; +UPDATE `locales_creature` SET `name_loc6`='Neófito Escarlata' WHERE `entry`=1539; +UPDATE `locales_creature` SET `name_loc6`='Brujo Velasangre' WHERE `entry`=1564; +UPDATE `locales_creature` SET `name_loc6`='Lobo de mar Velasangre' WHERE `entry`=1565; +UPDATE `locales_creature` SET `name_loc6`='Magiero Defias' WHERE `entry`=1726; +UPDATE `locales_creature` SET `name_loc6`='Evocador Defias' WHERE `entry`=1729; +UPDATE `locales_creature` SET `name_loc6`='Mago Escarlata' WHERE `entry`=1826; +UPDATE `locales_creature` SET `name_loc6`='Cazador Escarlata' WHERE `entry`=1831; +UPDATE `locales_creature` SET `name_loc6`='Convocador Escarlata' WHERE `entry`=1835; +UPDATE `locales_creature` SET `name_loc6`='Hidalgo Escarlata' WHERE `entry`=1836; +UPDATE `locales_creature` SET `name_loc6`='Aprendiz de Dalaran' WHERE `entry`=1867; +UPDATE `locales_creature` SET `name_loc6`='Trabajador Escarlata' WHERE `entry`=1883; +UPDATE `locales_creature` SET `name_loc6`='Leñador Escarlata' WHERE `entry`=1884; +UPDATE `locales_creature` SET `name_loc6`='Herrero Escarlata' WHERE `entry`=1885; +UPDATE `locales_creature` SET `name_loc6`='Protector de Molino Ámbar' WHERE `entry`=1912; +UPDATE `locales_creature` SET `name_loc6`='Depositario de Molino Ámbar' WHERE `entry`=1913; +UPDATE `locales_creature` SET `name_loc6`='Magister de Molino Ámbar' WHERE `entry`=1914; +UPDATE `locales_creature` SET `name_loc6`='Conjurador de Molino Ámbar' WHERE `entry`=1915; +UPDATE `locales_creature` SET `name_loc6`='Sirviente de Azora' WHERE `entry`=1949; +UPDATE `locales_creature` SET `name_loc6`='Ladrón de la Hermandad' WHERE `entry`=2241; +UPDATE `locales_creature` SET `name_loc6`='Avizor de la Hermandad' WHERE `entry`=2243; +UPDATE `locales_creature` SET `name_loc6`='Saboteador de la Hermandad' WHERE `entry`=2245; +UPDATE `locales_creature` SET `name_loc6`='Asesino de la Hermandad' WHERE `entry`=2246; +UPDATE `locales_creature` SET `name_loc6`='Sastre de Trabalomas' WHERE `entry`=2264; +UPDATE `locales_creature` SET `name_loc6`='Teúrgo de Dalaran' WHERE `entry`=2272; +UPDATE `locales_creature` SET `name_loc6`='Mago oscuro Argus' WHERE `entry`=2318; +UPDATE `locales_creature` SET `name_loc6`='Discípulo Crepuscular' WHERE `entry`=2338; +UPDATE `locales_creature` SET `name_loc6`='Matón Crepuscular' WHERE `entry`=2339; +UPDATE `locales_creature` SET `name_loc6`='Fusilero de Dun Garok' WHERE `entry`=2345; +UPDATE `locales_creature` SET `name_loc6`='Sacerdote de Dun Garok' WHERE `entry`=2346; +UPDATE `locales_creature` SET `name_loc6`='Invocador de Dalaran' WHERE `entry`=2358; +UPDATE `locales_creature` SET `name_loc6`='Taumaturgo umbrío Secacorteza' WHERE `entry`=2553; +UPDATE `locales_creature` SET `name_loc6`='Médico brujo Secacorteza' WHERE `entry`=2555; +UPDATE `locales_creature` SET `name_loc6`='Cazador de las Sombras Secacorteza' WHERE `entry`=2557; +UPDATE `locales_creature` SET `name_loc6`='Rabioso Secacorteza' WHERE `entry`=2558; +UPDATE `locales_creature` SET `name_loc6`='Miliciano Dabyrie' WHERE `entry`=2581; +UPDATE `locales_creature` SET `name_loc6`='Defensor de Stromgarde' WHERE `entry`=2584; +UPDATE `locales_creature` SET `name_loc6`='Merodeador de la Hermandad' WHERE `entry`=2588; +UPDATE `locales_creature` SET `name_loc6`='Mercenario de la Hermandad' WHERE `entry`=2589; +UPDATE `locales_creature` SET `name_loc6`='Conjurador de la Hermandad' WHERE `entry`=2590; +UPDATE `locales_creature` SET `name_loc6`='Guardián de Sentencia' WHERE `entry`=2621; +UPDATE `locales_creature` SET `name_loc6`='Marinero de cubierta Aguasnegras' WHERE `entry`=2636; +UPDATE `locales_creature` SET `name_loc6`='Médico brujo Vilrama' WHERE `entry`=2640; +UPDATE `locales_creature` SET `name_loc6`='Taumaturgo umbrío Vilrama' WHERE `entry`=2642; +UPDATE `locales_creature` SET `name_loc6`='Rabioso Vilrama' WHERE `entry`=2643; +UPDATE `locales_creature` SET `name_loc6`='Desollador Vilrama' WHERE `entry`=2644; +UPDATE `locales_creature` SET `name_loc6`='Cazador de las Sombras Vilrama' WHERE `entry`=2645; +UPDATE `locales_creature` SET `name_loc6`='Desollador Secacorteza' WHERE `entry`=2651; +UPDATE `locales_creature` SET `name_loc6`='Sádico Secacorteza' WHERE `entry`=2653; +UPDATE `locales_creature` SET `name_loc6`='Clamador Secacorteza' WHERE `entry`=2654; +UPDATE `locales_creature` SET `name_loc6`='Guardaespaldas Renegado' WHERE `entry`=2721; +UPDATE `locales_creature` SET `name_loc6`='Controlador de Ventura y Cía.' WHERE `entry`=2979; +UPDATE `locales_creature` SET `name_loc6`='Cavador de Bael''dun' WHERE `entry`=2989; +UPDATE `locales_creature` SET `name_loc6`='Tasador de Bael''dun' WHERE `entry`=2990; +UPDATE `locales_creature` SET `name_loc6`='Marinero Kul Tiras' WHERE `entry`=3129; +UPDATE `locales_creature` SET `name_loc6`='Matón Filo Ardiente' WHERE `entry`=3195; +UPDATE `locales_creature` SET `name_loc6`='Neófito Filo Ardiente' WHERE `entry`=3196; +UPDATE `locales_creature` SET `name_loc6`='Fanático Filo Ardiente' WHERE `entry`=3197; +UPDATE `locales_creature` SET `name_loc6`='Aprendiz Filo Ardiente' WHERE `entry`=3198; +UPDATE `locales_creature` SET `name_loc6`='Cultor Filo Ardiente' WHERE `entry`=3199; +UPDATE `locales_creature` SET `name_loc6`='Trol embrujado' WHERE `entry`=3207; +UPDATE `locales_creature` SET `name_loc6`='Bracero de Ventura y Cía.' WHERE `entry`=3284; +UPDATE `locales_creature` SET `name_loc6`='Bruto de Orgrimmar' WHERE `entry`=3296; +UPDATE `locales_creature` SET `name_loc6`='Excavador de Bael''dun' WHERE `entry`=3374; +UPDATE `locales_creature` SET `name_loc6`='Fusilero de Bael''dun' WHERE `entry`=3377; +UPDATE `locales_creature` SET `name_loc6`='Truhán Filo Ardiente' WHERE `entry`=3379; +UPDATE `locales_creature` SET `name_loc6`='Acólito Filo Ardiente' WHERE `entry`=3380; +UPDATE `locales_creature` SET `name_loc6`='Salteador de los Mares del Sur' WHERE `entry`=3381; +UPDATE `locales_creature` SET `name_loc6`='Cañonero de los Mares del Sur' WHERE `entry`=3382; +UPDATE `locales_creature` SET `name_loc6`='Degollador de los Mares del Sur' WHERE `entry`=3383; +UPDATE `locales_creature` SET `name_loc6`='Corsario de los Mares del Sur' WHERE `entry`=3384; +UPDATE `locales_creature` SET `name_loc6`='Cultor de la Facción Oscura' WHERE `entry`=3725; +UPDATE `locales_creature` SET `name_loc6`='Adepto de la Facción Oscura' WHERE `entry`=3728; +UPDATE `locales_creature` SET `name_loc6`='Excavador de la Facción Oscura' WHERE `entry`=3730; +UPDATE `locales_creature` SET `name_loc6`='Herborista Renegado' WHERE `entry`=3733; +UPDATE `locales_creature` SET `name_loc6`='Protector Cenarion' WHERE `entry`=3797; +UPDATE `locales_creature` SET `name_loc6`='Intruso Renegado' WHERE `entry`=3804; +UPDATE `locales_creature` SET `name_loc6`='Infiltrado Renegado' WHERE `entry`=3806; +UPDATE `locales_creature` SET `name_loc6`='Asesino Renegado' WHERE `entry`=3807; +UPDATE `locales_creature` SET `name_loc6`='Acechador oscuro Renegado' WHERE `entry`=3808; +UPDATE `locales_creature` SET `name_loc6`='Servidor encantado' WHERE `entry`=3875; +UPDATE `locales_creature` SET `name_loc6`='Explorador Renegado' WHERE `entry`=3893; +UPDATE `locales_creature` SET `name_loc6`='Operador de Ventura y Cía.' WHERE `entry`=3988; +UPDATE `locales_creature` SET `name_loc6`='Botánico Cenarion' WHERE `entry`=4051; +UPDATE `locales_creature` SET `name_loc6`='Valedor Escarlata' WHERE `entry`=4280; +UPDATE `locales_creature` SET `name_loc6`='Explorador Escarlata' WHERE `entry`=4281; +UPDATE `locales_creature` SET `name_loc6`='Magiero Escarlata' WHERE `entry`=4282; +UPDATE `locales_creature` SET `name_loc6`='Avizor Escarlata' WHERE `entry`=4283; +UPDATE `locales_creature` SET `name_loc6`='Discípulo Escarlata' WHERE `entry`=4285; +UPDATE `locales_creature` SET `name_loc6`='Gallardo Escarlata' WHERE `entry`=4287; +UPDATE `locales_creature` SET `name_loc6`='Maestro de bestias Escarlata' WHERE `entry`=4288; +UPDATE `locales_creature` SET `name_loc6`='Evocador Escarlata' WHERE `entry`=4289; +UPDATE `locales_creature` SET `name_loc6`='Custodio Escarlata' WHERE `entry`=4290; +UPDATE `locales_creature` SET `name_loc6`='Adivino Escarlata' WHERE `entry`=4291; +UPDATE `locales_creature` SET `name_loc6`='Protector Escarlata' WHERE `entry`=4292; +UPDATE `locales_creature` SET `name_loc6`='Adepto Escarlata' WHERE `entry`=4296; +UPDATE `locales_creature` SET `name_loc6`='Conjurador Escarlata' WHERE `entry`=4297; +UPDATE `locales_creature` SET `name_loc6`='Defensor Escarlata' WHERE `entry`=4298; +UPDATE `locales_creature` SET `name_loc6`='Campeón Escarlata' WHERE `entry`=4302; +UPDATE `locales_creature` SET `name_loc6`='Torturador Escarlata' WHERE `entry`=4306; +UPDATE `locales_creature` SET `name_loc6`='Guerrero Ancalodo' WHERE `entry`=4360; +UPDATE `locales_creature` SET `name_loc6`='Operario de foso gnomo' WHERE `entry`=4430; +UPDATE `locales_creature` SET `name_loc6`='Guerrero Vilrama' WHERE `entry`=4465; +UPDATE `locales_creature` SET `name_loc6`='Vengador Escarlata' WHERE `entry`=4493; +UPDATE `locales_creature` SET `name_loc6`='Marinero de cubierta Velasangre' WHERE `entry`=4505; +UPDATE `locales_creature` SET `name_loc6`='Atracador Filo Ardiente' WHERE `entry`=4664; +UPDATE `locales_creature` SET `name_loc6`='Adepto Filo Ardiente' WHERE `entry`=4665; +UPDATE `locales_creature` SET `name_loc6`='Mago oscuro Filo Ardiente' WHERE `entry`=4667; +UPDATE `locales_creature` SET `name_loc6`='Invocador Filo Ardiente' WHERE `entry`=4668; +UPDATE `locales_creature` SET `name_loc6`='Convocador Filo Ardiente' WHERE `entry`=4705; +UPDATE `locales_creature` SET `name_loc6`='Acólito Crepuscular' WHERE `entry`=4809; +UPDATE `locales_creature` SET `name_loc6`='Atracador Crepuscular' WHERE `entry`=4810; +UPDATE `locales_creature` SET `name_loc6`='Acuamántico Crepuscular' WHERE `entry`=4811; +UPDATE `locales_creature` SET `name_loc6`='Infiltrado de Theramore' WHERE `entry`=4834; +UPDATE `locales_creature` SET `name_loc6`='Hostigador de Theramore' WHERE `entry`=5044; +UPDATE `locales_creature` SET `name_loc6`='Avizor de Theramore' WHERE `entry`=5184; +UPDATE `locales_creature` SET `name_loc6`='Atal''ai maldito' WHERE `entry`=5243; +UPDATE `locales_creature` SET `name_loc6`='Médico brujo Atal''ai' WHERE `entry`=5259; +UPDATE `locales_creature` SET `name_loc6`='Atal''ai sometido' WHERE `entry`=5261; +UPDATE `locales_creature` SET `name_loc6`='Atal''ai momificado' WHERE `entry`=5263; +UPDATE `locales_creature` SET `name_loc6`='Sacerdote Atal''ai' WHERE `entry`=5269; +UPDATE `locales_creature` SET `name_loc6`='Sumo sacerdote Atal''ai' WHERE `entry`=5273; +UPDATE `locales_creature` SET `name_loc6`='Defensor Ala de Fuego' WHERE `entry`=5355; +UPDATE `locales_creature` SET `name_loc6`='Pícaro Vagayermo' WHERE `entry`=5615; +UPDATE `locales_creature` SET `name_loc6`='Ladrón Vagayermo' WHERE `entry`=5616; +UPDATE `locales_creature` SET `name_loc6`='Mago oscuro Vagayermo' WHERE `entry`=5617; +UPDATE `locales_creature` SET `name_loc6`='Bandido Vagayermo' WHERE `entry`=5618; +UPDATE `locales_creature` SET `name_loc6`='Asesino Vagayermo' WHERE `entry`=5623; +UPDATE `locales_creature` SET `name_loc6`='Desollador Furiarena' WHERE `entry`=5645; +UPDATE `locales_creature` SET `name_loc6`='Taumaturgo umbrío Furiarena' WHERE `entry`=5648; +UPDATE `locales_creature` SET `name_loc6`='Médico brujo Furiarena' WHERE `entry`=5650; +UPDATE `locales_creature` SET `name_loc6`='Trabajador esclavo' WHERE `entry`=5843; +UPDATE `locales_creature` SET `name_loc6`='Chamán Oscuro Crepuscular' WHERE `entry`=5860; +UPDATE `locales_creature` SET `name_loc6`='Geomántico Crepuscular' WHERE `entry`=5862; +UPDATE `locales_creature` SET `name_loc6`='Bruto del cubil' WHERE `entry`=5952; +UPDATE `locales_creature` SET `name_loc6`='Bruto de Cerrotajo' WHERE `entry`=5953; +UPDATE `locales_creature` SET `name_loc6`='Trabajador de Nethergarde' WHERE `entry`=5995; +UPDATE `locales_creature` SET `name_loc6`='Minero de Nethergarde' WHERE `entry`=5996; +UPDATE `locales_creature` SET `name_loc6`='Ingeniero de Nethergarde' WHERE `entry`=5997; +UPDATE `locales_creature` SET `name_loc6`='Supervisor de Nethergarde' WHERE `entry`=5998; +UPDATE `locales_creature` SET `name_loc6`='Matón Sombra Jurada' WHERE `entry`=6005; +UPDATE `locales_creature` SET `name_loc6`='Adepto Sombra Jurada' WHERE `entry`=6006; +UPDATE `locales_creature` SET `name_loc6`='Brujo Sombra Jurada' WHERE `entry`=6008; +UPDATE `locales_creature` SET `name_loc6`='Perito elfo de sangre' WHERE `entry`=6198; +UPDATE `locales_creature` SET `name_loc6`='Reivindicador elfo de sangre' WHERE `entry`=6199; +UPDATE `locales_creature` SET `name_loc6`='Defensor leproso' WHERE `entry`=6223; +UPDATE `locales_creature` SET `name_loc6`='Espectador de La Reyerta' WHERE `entry`=6249; +UPDATE `locales_creature` SET `name_loc6`='Guerrero resistente' WHERE `entry`=6391; +UPDATE `locales_creature` SET `name_loc6`='Médico resistente' WHERE `entry`=6392; +UPDATE `locales_creature` SET `name_loc6`='Técnico resistente' WHERE `entry`=6407; +UPDATE `locales_creature` SET `name_loc6`='Asesino de Ravenholdt' WHERE `entry`=6771; +UPDATE `locales_creature` SET `name_loc6`='Trabajador de embarcadero' WHERE `entry`=6927; +UPDATE `locales_creature` SET `name_loc6`='Avizor de torre Defias' WHERE `entry`=7056; +UPDATE `locales_creature` SET `name_loc6`='Acólito condenado' WHERE `entry`=7068; +UPDATE `locales_creature` SET `name_loc6`='Monje condenado' WHERE `entry`=7069; +UPDATE `locales_creature` SET `name_loc6`='Clérigo condenado' WHERE `entry`=7070; +UPDATE `locales_creature` SET `name_loc6`='Paladín maldito' WHERE `entry`=7071; +UPDATE `locales_creature` SET `name_loc6`='Mago en pena' WHERE `entry`=7075; +UPDATE `locales_creature` SET `name_loc6`='Cultor Jaedenar' WHERE `entry`=7112; +UPDATE `locales_creature` SET `name_loc6`='Guardián Jaedenar' WHERE `entry`=7113; +UPDATE `locales_creature` SET `name_loc6`='Adepto Jaedenar' WHERE `entry`=7115; +UPDATE `locales_creature` SET `name_loc6`='Instigador Jaedenar' WHERE `entry`=7117; +UPDATE `locales_creature` SET `name_loc6`='Invocador Jaedenar' WHERE `entry`=7119; +UPDATE `locales_creature` SET `name_loc6`='Brujo Jaedenar' WHERE `entry`=7120; +UPDATE `locales_creature` SET `name_loc6`='Campeón del Consejo de la Sombra' WHERE `entry`=7122; +UPDATE `locales_creature` SET `name_loc6`='Héroe muerto de Zul''Farrak' WHERE `entry`=7276; +UPDATE `locales_creature` SET `name_loc6`='Bruto del Espolón' WHERE `entry`=7730; +UPDATE `locales_creature` SET `name_loc6`='Esclavo Furiarena' WHERE `entry`=7787; +UPDATE `locales_creature` SET `name_loc6`='Bracero Furiarena' WHERE `entry`=7788; +UPDATE `locales_creature` SET `name_loc6`='Forajido Vagayermo' WHERE `entry`=7805; +UPDATE `locales_creature` SET `name_loc6`='Emboscador Vilrama' WHERE `entry`=7809; +UPDATE `locales_creature` SET `name_loc6`='Evacuado de Gnomeregan' WHERE `entry`=7843; +UPDATE `locales_creature` SET `name_loc6`='Filibustero de los Mares del Sur' WHERE `entry`=7856; +UPDATE `locales_creature` SET `name_loc6`='Portuario de los Mares del Sur' WHERE `entry`=7857; +UPDATE `locales_creature` SET `name_loc6`='Espadachín de los Mares del Sur' WHERE `entry`=7858; +UPDATE `locales_creature` SET `name_loc6`='Bucanero de los Mares del Sur' WHERE `entry`=7896; +UPDATE `locales_creature` SET `name_loc6`='Espadachín cazatesoros' WHERE `entry`=7901; +UPDATE `locales_creature` SET `name_loc6`='Bucanero cazatesoros' WHERE `entry`=7902; +UPDATE `locales_creature` SET `name_loc6`='Guardia de Los Baldíos' WHERE `entry`=8016; +UPDATE `locales_creature` SET `name_loc6`='Guardián de Sen''jin' WHERE `entry`=8017; +UPDATE `locales_creature` SET `name_loc6`='Depositario Sul''lithuz' WHERE `entry`=8149; +UPDATE `locales_creature` SET `name_loc6`='Bruto de Kargath' WHERE `entry`=8155; +UPDATE `locales_creature` SET `name_loc6`='Ingeniero Explorador del horizonte' WHERE `entry`=8389; +UPDATE `locales_creature` SET `name_loc6`='Arqueólogo esclavizado' WHERE `entry`=8402; +UPDATE `locales_creature` SET `name_loc6`='Furtivo Sedaumbría' WHERE `entry`=8442; +UPDATE `locales_creature` SET `name_loc6`='Adepto oscuro' WHERE `entry`=8546; +UPDATE `locales_creature` SET `name_loc6`='Cultor de la Muerte' WHERE `entry`=8547; +UPDATE `locales_creature` SET `name_loc6`='Tutor vil' WHERE `entry`=8548; +UPDATE `locales_creature` SET `name_loc6`='Mago oscuro' WHERE `entry`=8550; +UPDATE `locales_creature` SET `name_loc6`='Invocador oscuro' WHERE `entry`=8551; +UPDATE `locales_creature` SET `name_loc6`='Necrólito' WHERE `entry`=8552; +UPDATE `locales_creature` SET `name_loc6`='Explorador Fustamusgo' WHERE `entry`=8560; +UPDATE `locales_creature` SET `name_loc6`='Defensor elfo de sangre' WHERE `entry`=8581; +UPDATE `locales_creature` SET `name_loc6`='Acólito Furiarena' WHERE `entry`=8876; +UPDATE `locales_creature` SET `name_loc6`='Campesino de Forjatiniebla' WHERE `entry`=8896; +UPDATE `locales_creature` SET `name_loc6`='Reservista Yunque Colérico' WHERE `entry`=8901; +UPDATE `locales_creature` SET `name_loc6`='Ciudadano de Forjatiniebla' WHERE `entry`=8902; +UPDATE `locales_creature` SET `name_loc6`='Torturador del Martillo Crepuscular' WHERE `entry`=8912; +UPDATE `locales_creature` SET `name_loc6`='Emisario Crepuscular' WHERE `entry`=8913; +UPDATE `locales_creature` SET `name_loc6`='Embajador del Martillo Crepuscular' WHERE `entry`=8915; +UPDATE `locales_creature` SET `name_loc6`='Espectador de la arena' WHERE `entry`=8916; +UPDATE `locales_creature` SET `name_loc6`='Esclavo de la cantera' WHERE `entry`=8917; +UPDATE `locales_creature` SET `name_loc6`='Técnico de armas' WHERE `entry`=8920; +UPDATE `locales_creature` SET `name_loc6`='Bruto del Escudo del Estigma' WHERE `entry`=9043; +UPDATE `locales_creature` SET `name_loc6`='Avizor del Escudo del Estigma' WHERE `entry`=9044; +UPDATE `locales_creature` SET `name_loc6`='Acólito del Escudo del Estigma' WHERE `entry`=9045; +UPDATE `locales_creature` SET `name_loc6`='Legionario del Escudo del Estigma' WHERE `entry`=9097; +UPDATE `locales_creature` SET `name_loc6`='Místico Espina Ahumada' WHERE `entry`=9239; +UPDATE `locales_creature` SET `name_loc6`='Sacerdote de las Sombras Espina Ahumada' WHERE `entry`=9240; +UPDATE `locales_creature` SET `name_loc6`='Brujo del Escudo del Estigma' WHERE `entry`=9257; +UPDATE `locales_creature` SET `name_loc6`='Bruto Pirotigma' WHERE `entry`=9259; +UPDATE `locales_creature` SET `name_loc6`='Legionario Pirotigma' WHERE `entry`=9260; +UPDATE `locales_creature` SET `name_loc6`='Convocador Pirotigma' WHERE `entry`=9262; +UPDATE `locales_creature` SET `name_loc6`='Piromántico Pirotigma' WHERE `entry`=9264; +UPDATE `locales_creature` SET `name_loc6`='Cazador de las Sombras Espina Ahumada' WHERE `entry`=9265; +UPDATE `locales_creature` SET `name_loc6`='Médico brujo Espina Ahumada' WHERE `entry`=9266; +UPDATE `locales_creature` SET `name_loc6`='Depositario Escarlata' WHERE `entry`=9447; +UPDATE `locales_creature` SET `name_loc6`='Pretoriano Escarlata' WHERE `entry`=9448; +UPDATE `locales_creature` SET `name_loc6`='Coadjutor Escarlata' WHERE `entry`=9450; +UPDATE `locales_creature` SET `name_loc6`='Archimago Escarlata' WHERE `entry`=9451; +UPDATE `locales_creature` SET `name_loc6`='Encantador Escarlata' WHERE `entry`=9452; +UPDATE `locales_creature` SET `name_loc6`='Parroquiano lúgubre' WHERE `entry`=9545; +UPDATE `locales_creature` SET `name_loc6`='Parroquiano tragón' WHERE `entry`=9547; +UPDATE `locales_creature` SET `name_loc6`='Parroquiano beodo' WHERE `entry`=9554; +UPDATE `locales_creature` SET `name_loc6`='Veterano Hacha de Sangre' WHERE `entry`=9583; +UPDATE `locales_creature` SET `name_loc6`='Evocador Hacha de Sangre' WHERE `entry`=9693; +UPDATE `locales_creature` SET `name_loc6`='Invocador Hacha de Sangre' WHERE `entry`=9717; +UPDATE `locales_creature` SET `name_loc6`='Veterano Puño Negro' WHERE `entry`=9819; +UPDATE `locales_creature` SET `name_loc6`='Esclavo' WHERE `entry`=10116; +UPDATE `locales_creature` SET `name_loc6`='Carcelero Puño Negro' WHERE `entry`=10316; +UPDATE `locales_creature` SET `name_loc6`='Asesino Puño Negro' WHERE `entry`=10318; +UPDATE `locales_creature` SET `name_loc6`='Ciudadano espectral' WHERE `entry`=10384; +UPDATE `locales_creature` SET `name_loc6`='Ciudadano fantasmal' WHERE `entry`=10385; +UPDATE `locales_creature` SET `name_loc6`='Taumaturgo umbrío Thuzadin' WHERE `entry`=10398; +UPDATE `locales_creature` SET `name_loc6`='Acólito Thuzadin' WHERE `entry`=10399; +UPDATE `locales_creature` SET `name_loc6`='Custodio resucitado' WHERE `entry`=10418; +UPDATE `locales_creature` SET `name_loc6`='Conjurador resucitado' WHERE `entry`=10419; +UPDATE `locales_creature` SET `name_loc6`='Iniciado resucitado' WHERE `entry`=10420; +UPDATE `locales_creature` SET `name_loc6`='Defensor resucitado' WHERE `entry`=10421; +UPDATE `locales_creature` SET `name_loc6`='Hechicero resucitado' WHERE `entry`=10422; +UPDATE `locales_creature` SET `name_loc6`='Sacerdote resucitado' WHERE `entry`=10423; +UPDATE `locales_creature` SET `name_loc6`='Gallardo resucitado' WHERE `entry`=10424; +UPDATE `locales_creature` SET `name_loc6`='Mago de batalla resucitado' WHERE `entry`=10425; +UPDATE `locales_creature` SET `name_loc6`='Inquisidor resucitado' WHERE `entry`=10426; +UPDATE `locales_creature` SET `name_loc6`='Adepto de Scholomance' WHERE `entry`=10469; +UPDATE `locales_creature` SET `name_loc6`='Neófito de Scholomance' WHERE `entry`=10470; +UPDATE `locales_creature` SET `name_loc6`='Acólito de Scholomance' WHERE `entry`=10471; +UPDATE `locales_creature` SET `name_loc6`='Taumaturgo umbrío de Scholomance' WHERE `entry`=10473; +UPDATE `locales_creature` SET `name_loc6`='Necrólito de Scholomance' WHERE `entry`=10476; +UPDATE `locales_creature` SET `name_loc6`='Hechicero resucitado' WHERE `entry`=10493; +UPDATE `locales_creature` SET `name_loc6`='Médico Escarlata' WHERE `entry`=10605; +UPDATE `locales_creature` SET `name_loc6`='Sacerdote Escarlata' WHERE `entry`=10608; +UPDATE `locales_creature` SET `name_loc6`='Veterano Puño Negro invocado' WHERE `entry`=10681; +UPDATE `locales_creature` SET `name_loc6`='Defensor de Refugio de la Zaga' WHERE `entry`=10696; +UPDATE `locales_creature` SET `name_loc6`='Guerrero novicio' WHERE `entry`=10721; +UPDATE `locales_creature` SET `name_loc6`='Bandido Tótem Siniestro' WHERE `entry`=10758; +UPDATE `locales_creature` SET `name_loc6`='Matón Puño Negro' WHERE `entry`=10762; +UPDATE `locales_creature` SET `name_loc6`='Forjador de armaduras Puño Negro' WHERE `entry`=10898; +UPDATE `locales_creature` SET `name_loc6`='Defensor de Villa Darrow' WHERE `entry`=10948; +UPDATE `locales_creature` SET `name_loc6`='Discípulo de la Mano de Plata' WHERE `entry`=10949; +UPDATE `locales_creature` SET `name_loc6`='Miliciano Rutagrana' WHERE `entry`=10950; +UPDATE `locales_creature` SET `name_loc6`='Héroe caído' WHERE `entry`=10996; +UPDATE `locales_creature` SET `name_loc6`='Monje resucitado' WHERE `entry`=11043; +UPDATE `locales_creature` SET `name_loc6`='Fusilero resucitado' WHERE `entry`=11054; +UPDATE `locales_creature` SET `name_loc6`='Defensor Argenta' WHERE `entry`=11194; +UPDATE `locales_creature` SET `name_loc6`='Tamborilero Rompelanzas' WHERE `entry`=11196; +UPDATE `locales_creature` SET `name_loc6`='Controlador de Scholomance' WHERE `entry`=11257; +UPDATE `locales_creature` SET `name_loc6`='Ciudadano de Castel Darrow' WHERE `entry`=11277; +UPDATE `locales_creature` SET `name_loc6`='Custodio de Castel Darrow' WHERE `entry`=11279; +UPDATE `locales_creature` SET `name_loc6`='Cañonero de Castel Darrow' WHERE `entry`=11280; +UPDATE `locales_creature` SET `name_loc6`='Defensor espectral' WHERE `entry`=11289; +UPDATE `locales_creature` SET `name_loc6`='Cultor Hoja Abrasadora' WHERE `entry`=11322; +UPDATE `locales_creature` SET `name_loc6`='Brujo Hoja Abrasadora' WHERE `entry`=11324; +UPDATE `locales_creature` SET `name_loc6`='Taumaturgo umbrío Hakkari' WHERE `entry`=11338; +UPDATE `locales_creature` SET `name_loc6`='Cazador de las Sombras Hakkari' WHERE `entry`=11339; +UPDATE `locales_creature` SET `name_loc6`='Sacerdote de sangre Hakkari' WHERE `entry`=11340; +UPDATE `locales_creature` SET `name_loc6`='Guerrero Gurubashi' WHERE `entry`=11355; +UPDATE `locales_creature` SET `name_loc6`='Campeón Gurubashi' WHERE `entry`=11356; +UPDATE `locales_creature` SET `name_loc6`='Invocador Altonato' WHERE `entry`=11466; +UPDATE `locales_creature` SET `name_loc6`='Bullidor Eldreth' WHERE `entry`=11469; +UPDATE `locales_creature` SET `name_loc6`='Hechicero Eldreth' WHERE `entry`=11470; +UPDATE `locales_creature` SET `name_loc6`='Asesino Escarlata' WHERE `entry`=11581; +UPDATE `locales_creature` SET `name_loc6`='Invocador Oscuro de Scholomance' WHERE `entry`=11582; +UPDATE `locales_creature` SET `name_loc6`='Sirviente de Weldon Barov' WHERE `entry`=11636; +UPDATE `locales_creature` SET `name_loc6`='Sirviente de Alexi Barov' WHERE `entry`=11637; +UPDATE `locales_creature` SET `name_loc6`='Médico brujo Hacha Invernal' WHERE `entry`=11679; +UPDATE `locales_creature` SET `name_loc6`='Explorador de la Horda' WHERE `entry`=11680; +UPDATE `locales_creature` SET `name_loc6`='Deforestador de la Horda' WHERE `entry`=11681; +UPDATE `locales_creature` SET `name_loc6`='Bruto Grito de Guerra' WHERE `entry`=11682; +UPDATE `locales_creature` SET `name_loc6`='Celador de Claro de la Luna' WHERE `entry`=11822; +UPDATE `locales_creature` SET `name_loc6`='Sacerdote Hakkari' WHERE `entry`=11830; +UPDATE `locales_creature` SET `name_loc6`='Médico brujo Hakkari' WHERE `entry`=11831; +UPDATE `locales_creature` SET `name_loc6`='Vengador Crepuscular' WHERE `entry`=11880; +UPDATE `locales_creature` SET `name_loc6`='Geoseñor Crepuscular' WHERE `entry`=11881; +UPDATE `locales_creature` SET `name_loc6`='Maestro Crepuscular' WHERE `entry`=11883; +UPDATE `locales_creature` SET `name_loc6`='Mercenario Tótem Siniestro' WHERE `entry`=11911; +UPDATE `locales_creature` SET `name_loc6`='Tosco Tótem Siniestro' WHERE `entry`=11912; +UPDATE `locales_creature` SET `name_loc6`='Hechicero Tótem Siniestro' WHERE `entry`=11913; +UPDATE `locales_creature` SET `name_loc6`='Defensor Pico Tormenta' WHERE `entry`=12050; +UPDATE `locales_creature` SET `name_loc6`='Legionario Lobo Gélido' WHERE `entry`=12051; +UPDATE `locales_creature` SET `name_loc6`='Guerrero Lobo Gélido' WHERE `entry`=12052; +UPDATE `locales_creature` SET `name_loc6`='Guardián Lobo Gélido' WHERE `entry`=12053; +UPDATE `locales_creature` SET `name_loc6`='Custodio Pico Tormenta' WHERE `entry`=12127; +UPDATE `locales_creature` SET `name_loc6`='Cazador de las Sombras Hacha Invernal' WHERE `entry`=12157; +UPDATE `locales_creature` SET `name_loc6`='Cazador Hacha Invernal' WHERE `entry`=12158; +UPDATE `locales_creature` SET `name_loc6`='Toxicólogo Filo Ardiente' WHERE `entry`=12319; +UPDATE `locales_creature` SET `name_loc6`='Triturador Filo Ardiente' WHERE `entry`=12320; +UPDATE `locales_creature` SET `name_loc6`='Guardián Cazasombras' WHERE `entry`=12338; +UPDATE `locales_creature` SET `name_loc6`='Custodio sin vida' WHERE `entry`=12379; +UPDATE `locales_creature` SET `name_loc6`='Legionario Alanegra' WHERE `entry`=12416; +UPDATE `locales_creature` SET `name_loc6`='Mago Alanegra' WHERE `entry`=12420; +UPDATE `locales_creature` SET `name_loc6`='Brujo Alanegra' WHERE `entry`=12459; +UPDATE `locales_creature` SET `name_loc6`='Explorador Grito de Guerra' WHERE `entry`=12862; +UPDATE `locales_creature` SET `name_loc6`='Montaraz de Forjaz montado' WHERE `entry`=12996; +UPDATE `locales_creature` SET `name_loc6`='Granjero enano' WHERE `entry`=12998; +UPDATE `locales_creature` SET `name_loc6`='Ingeniero gnomo' WHERE `entry`=13000; +UPDATE `locales_creature` SET `name_loc6`='Invasor Minafría' WHERE `entry`=13087; +UPDATE `locales_creature` SET `name_loc6`='Expedicionario Minafría' WHERE `entry`=13096; +UPDATE `locales_creature` SET `name_loc6`='Supervisor Minafría' WHERE `entry`=13097; +UPDATE `locales_creature` SET `name_loc6`='Perito Ferrohondo' WHERE `entry`=13098; +UPDATE `locales_creature` SET `name_loc6`='Expedicionario Ferrohondo' WHERE `entry`=13099; +UPDATE `locales_creature` SET `name_loc6`='Salteador de la Hermandad' WHERE `entry`=13149; +UPDATE `locales_creature` SET `name_loc6`='Custodio avezado' WHERE `entry`=13324; +UPDATE `locales_creature` SET `name_loc6`='Montaraz avezado' WHERE `entry`=13325; +UPDATE `locales_creature` SET `name_loc6`='Defensor avezado' WHERE `entry`=13326; +UPDATE `locales_creature` SET `name_loc6`='Guardián avezado' WHERE `entry`=13328; +UPDATE `locales_creature` SET `name_loc6`='Legionario avezado' WHERE `entry`=13329; +UPDATE `locales_creature` SET `name_loc6`='Guerrero avezado' WHERE `entry`=13330; +UPDATE `locales_creature` SET `name_loc6`='Defensor veterano' WHERE `entry`=13331; +UPDATE `locales_creature` SET `name_loc6`='Guardián veterano' WHERE `entry`=13332; +UPDATE `locales_creature` SET `name_loc6`='Custodio veterano' WHERE `entry`=13333; +UPDATE `locales_creature` SET `name_loc6`='Legionario veterano' WHERE `entry`=13334; +UPDATE `locales_creature` SET `name_loc6`='Montaraz veterano' WHERE `entry`=13335; +UPDATE `locales_creature` SET `name_loc6`='Guerrero veterano' WHERE `entry`=13337; +UPDATE `locales_creature` SET `name_loc6`='Arquero Pico Tormenta' WHERE `entry`=13358; +UPDATE `locales_creature` SET `name_loc6`='Arquero Lobo Gélido' WHERE `entry`=13359; +UPDATE `locales_creature` SET `name_loc6`='Guardián Campeón' WHERE `entry`=13421; +UPDATE `locales_creature` SET `name_loc6`='Defensor Campeón' WHERE `entry`=13422; +UPDATE `locales_creature` SET `name_loc6`='Custodio Campeón' WHERE `entry`=13424; +UPDATE `locales_creature` SET `name_loc6`='Legionario Campeón' WHERE `entry`=13425; +UPDATE `locales_creature` SET `name_loc6`='Montaraz Campeón' WHERE `entry`=13426; +UPDATE `locales_creature` SET `name_loc6`='Guerrero Campeón' WHERE `entry`=13428; +UPDATE `locales_creature` SET `name_loc6`='Avanzado Lobo Gélido' WHERE `entry`=13516; +UPDATE `locales_creature` SET `name_loc6`='Avanzado avezado' WHERE `entry`=13517; +UPDATE `locales_creature` SET `name_loc6`='Avanzado veterano' WHERE `entry`=13518; +UPDATE `locales_creature` SET `name_loc6`='Avanzado Campeón' WHERE `entry`=13519; +UPDATE `locales_creature` SET `name_loc6`='Comando avezado' WHERE `entry`=13525; +UPDATE `locales_creature` SET `name_loc6`='Comando veterano' WHERE `entry`=13526; +UPDATE `locales_creature` SET `name_loc6`='Comando Campeón' WHERE `entry`=13527; +UPDATE `locales_creature` SET `name_loc6`='Atracador Lobo Gélido' WHERE `entry`=13528; +UPDATE `locales_creature` SET `name_loc6`='Atracador avezado' WHERE `entry`=13529; +UPDATE `locales_creature` SET `name_loc6`='Atracador veterano' WHERE `entry`=13530; +UPDATE `locales_creature` SET `name_loc6`='Atracador Campeón' WHERE `entry`=13531; +UPDATE `locales_creature` SET `name_loc6`='Guardia Minafría veterano' WHERE `entry`=13535; +UPDATE `locales_creature` SET `name_loc6`='Guardia Campeón Minafría' WHERE `entry`=13536; +UPDATE `locales_creature` SET `name_loc6`='Perito de Minafría avezado' WHERE `entry`=13537; +UPDATE `locales_creature` SET `name_loc6`='Perito Minafría veterano' WHERE `entry`=13538; +UPDATE `locales_creature` SET `name_loc6`='Supervisor Campeón Minafría' WHERE `entry`=13539; +UPDATE `locales_creature` SET `name_loc6`='Expedicionario Ferrohondo avezado' WHERE `entry`=13540; +UPDATE `locales_creature` SET `name_loc6`='Expedicionario veterano Ferrohondo' WHERE `entry`=13541; +UPDATE `locales_creature` SET `name_loc6`='Expedicionario Campeón Ferrohondo' WHERE `entry`=13542; +UPDATE `locales_creature` SET `name_loc6`='Asaltante veterano Ferrohondo' WHERE `entry`=13544; +UPDATE `locales_creature` SET `name_loc6`='Asaltante Campeón Ferrohondo' WHERE `entry`=13545; +UPDATE `locales_creature` SET `name_loc6`='Expedicionario de Minafría avezado' WHERE `entry`=13546; +UPDATE `locales_creature` SET `name_loc6`='Expedicionario Minafría veterano' WHERE `entry`=13547; +UPDATE `locales_creature` SET `name_loc6`='Expedicionario Campeón Minafría' WHERE `entry`=13548; +UPDATE `locales_creature` SET `name_loc6`='Invasor de Minafría avezado' WHERE `entry`=13549; +UPDATE `locales_creature` SET `name_loc6`='Invasor Minafría veterano' WHERE `entry`=13550; +UPDATE `locales_creature` SET `name_loc6`='Invasor Campeón Minafría' WHERE `entry`=13551; +UPDATE `locales_creature` SET `name_loc6`='Guardia veterano Ferrohondo' WHERE `entry`=13553; +UPDATE `locales_creature` SET `name_loc6`='Guardia Campeón Ferrohondo' WHERE `entry`=13554; +UPDATE `locales_creature` SET `name_loc6`='Perito Ferrohondo avezado' WHERE `entry`=13555; +UPDATE `locales_creature` SET `name_loc6`='Perito veterano Ferrohondo' WHERE `entry`=13556; +UPDATE `locales_creature` SET `name_loc6`='Supervisor Campeón Ferrohondo' WHERE `entry`=13557; +UPDATE `locales_creature` SET `name_loc6`='Místico Hacha Invernal' WHERE `entry`=13956; +UPDATE `locales_creature` SET `name_loc6`='Guerrero Hacha Invernal' WHERE `entry`=13957; +UPDATE `locales_creature` SET `name_loc6`='Técnico Alanegra' WHERE `entry`=13996; +UPDATE `locales_creature` SET `name_loc6`='Trol marchito' WHERE `entry`=14017; +UPDATE `locales_creature` SET `name_loc6`='Reivindicador Pico Tormenta' WHERE `entry`=14141; +UPDATE `locales_creature` SET `name_loc6`='Reivindicador Lobo Gélido' WHERE `entry`=14142; +UPDATE `locales_creature` SET `name_loc6`='BandaMago' WHERE `entry`=14162; +UPDATE `locales_creature` SET `name_loc6`='Montaraz expedicionario' WHERE `entry`=14390; +UPDATE `locales_creature` SET `name_loc6`='Sacerdote expedicionario' WHERE `entry`=14393; +UPDATE `locales_creature` SET `name_loc6`='Custodio Alanegra' WHERE `entry`=14456; +UPDATE `locales_creature` SET `name_loc6`='Campesino malherido' WHERE `entry`=14484; +UPDATE `locales_creature` SET `name_loc6`='Campesino apestado' WHERE `entry`=14485; +UPDATE `locales_creature` SET `name_loc6`='Sacerdote épico Realizador de sucesos' WHERE `entry`=14493; +UPDATE `locales_creature` SET `name_loc6`='Huérfano de Ventormenta' WHERE `entry`=14496; +UPDATE `locales_creature` SET `name_loc6`='Huérfano de la Horda' WHERE `entry`=14499; +UPDATE `locales_creature` SET `name_loc6`='Obrero de la Horda' WHERE `entry`=14718; +UPDATE `locales_creature` SET `name_loc6`='Tamborilero Sañadiente' WHERE `entry`=14734; +UPDATE `locales_creature` SET `name_loc6`='Secuestrador Vilrama' WHERE `entry`=14748; +UPDATE `locales_creature` SET `name_loc6`='Maestro de guerra del norte de Dun Baldar' WHERE `entry`=14770; +UPDATE `locales_creature` SET `name_loc6`='Maestro de guerra del sur de Dun Baldar' WHERE `entry`=14771; +UPDATE `locales_creature` SET `name_loc6`='Maestro de guerra del este Lobo Gélido' WHERE `entry`=14772; +UPDATE `locales_creature` SET `name_loc6`='Maestro de guerra Sangrehielo' WHERE `entry`=14773; +UPDATE `locales_creature` SET `name_loc6`='Maestro de guerra Alahielo' WHERE `entry`=14774; +UPDATE `locales_creature` SET `name_loc6`='Maestro de guerra Piedrahogar' WHERE `entry`=14775; +UPDATE `locales_creature` SET `name_loc6`='Maestro de guerra de Torre de la Punta' WHERE `entry`=14776; +UPDATE `locales_creature` SET `name_loc6`='Maestro de guerra del oeste Lobo Gélido' WHERE `entry`=14777; +UPDATE `locales_creature` SET `name_loc6`='Enviado de los Rapiñadores' WHERE `entry`=14990; +UPDATE `locales_creature` SET `name_loc6`='Emisario de la Liga de Arathor' WHERE `entry`=14991; +UPDATE `locales_creature` SET `name_loc6`='Granjero Renegado' WHERE `entry`=15046; +UPDATE `locales_creature` SET `name_loc6`='Herrero Renegado' WHERE `entry`=15064; +UPDATE `locales_creature` SET `name_loc6`='Minero Renegado' WHERE `entry`=15075; +UPDATE `locales_creature` SET `name_loc6`='Sirviente de la Mano' WHERE `entry`=15080; +UPDATE `locales_creature` SET `name_loc6`='Mozo de cuadra Renegado' WHERE `entry`=15087; +UPDATE `locales_creature` SET `name_loc6`='Leñador Renegado' WHERE `entry`=15089; +UPDATE `locales_creature` SET `name_loc6`='Emisario Pico Tormenta' WHERE `entry`=15103; +UPDATE `locales_creature` SET `name_loc6`='Enviado Grito de Guerra' WHERE `entry`=15105; +UPDATE `locales_creature` SET `name_loc6`='Enviado Lobo Gélido' WHERE `entry`=15106; +UPDATE `locales_creature` SET `name_loc6`='Prisionero Gurubashi' WHERE `entry`=15110; +UPDATE `locales_creature` SET `name_loc6`='Héroe honrado' WHERE `entry`=15113; +UPDATE `locales_creature` SET `name_loc6`='Antecesor honrado' WHERE `entry`=15115; +UPDATE `locales_creature` SET `name_loc6`='Élite Rapiñador' WHERE `entry`=15128; +UPDATE `locales_creature` SET `name_loc6`='Inquisidor Escarlata' WHERE `entry`=15162; +UPDATE `locales_creature` SET `name_loc6`='Flamatracador Crepuscular' WHERE `entry`=15201; +UPDATE `locales_creature` SET `name_loc6`='Señor supremo Crepuscular' WHERE `entry`=15213; +UPDATE `locales_creature` SET `name_loc6`='Defensor Amparo de la Noche' WHERE `entry`=15495; +UPDATE `locales_creature` SET `name_loc6`='Voluntario del esfuerzo de guerra' WHERE `entry`=15663; +UPDATE `locales_creature` SET `name_loc6`='Secuestrador de los Mares del Sur' WHERE `entry`=15685; +UPDATE `locales_creature` SET `name_loc6`='Fusilero tauren' WHERE `entry`=15855; +UPDATE `locales_creature` SET `name_loc6`='Tauren primigenio' WHERE `entry`=15856; +UPDATE `locales_creature` SET `name_loc6`='Archimago de Ventormenta' WHERE `entry`=15859; +UPDATE `locales_creature` SET `name_loc6`='Emisario del Festival Lunar' WHERE `entry`=15892; +UPDATE `locales_creature` SET `name_loc6`='Explorador darnassiano' WHERE `entry`=15968; +UPDATE `locales_creature` SET `name_loc6`='Aprendiz Lunargenta' WHERE `entry`=15971; +UPDATE `locales_creature` SET `name_loc6`='Cultor de Naxxramas' WHERE `entry`=15980; +UPDATE `locales_creature` SET `name_loc6`='Acólito de Naxxramas' WHERE `entry`=15981; +UPDATE `locales_creature` SET `name_loc6`='Asesino espectral' WHERE `entry`=16066; +UPDATE `locales_creature` SET `name_loc6`='Acechador espectral' WHERE `entry`=16093; +UPDATE `locales_creature` SET `name_loc6`='Explorador de Tranquillien' WHERE `entry`=16242; +UPDATE `locales_creature` SET `name_loc6`='Médico Argenta' WHERE `entry`=16284; +UPDATE `locales_creature` SET `name_loc6`='Acólito de la Ciudad de la Muerte' WHERE `entry`=16315; +UPDATE `locales_creature` SET `name_loc6`='Mago oscuro de la Ciudad de la Muerte' WHERE `entry`=16318; +UPDATE `locales_creature` SET `name_loc6`='Druida darnassiano' WHERE `entry`=16331; +UPDATE `locales_creature` SET `name_loc6`='Acólito de Necrópolis' WHERE `entry`=16368; +UPDATE `locales_creature` SET `name_loc6`='Avizor Argenta' WHERE `entry`=16378; +UPDATE `locales_creature` SET `name_loc6`='Iniciado de El Alba Argenta' WHERE `entry`=16384; +UPDATE `locales_creature` SET `name_loc6`='Aprendiz espectral' WHERE `entry`=16389; +UPDATE `locales_creature` SET `name_loc6`='Traidor Velasangre' WHERE `entry`=16399; +UPDATE `locales_creature` SET `name_loc6`='Sirviente espectral' WHERE `entry`=16407; +UPDATE `locales_creature` SET `name_loc6`='Aparición de invitado' WHERE `entry`=16409; +UPDATE `locales_creature` SET `name_loc6`='Criado espectral' WHERE `entry`=16410; +UPDATE `locales_creature` SET `name_loc6`='Panadero fantasmal' WHERE `entry`=16412; +UPDATE `locales_creature` SET `name_loc6`='Administrador fantasmal' WHERE `entry`=16414; +UPDATE `locales_creature` SET `name_loc6`='Avizor espectral' WHERE `entry`=16424; +UPDATE `locales_creature` SET `name_loc6`='Aparición de custodio' WHERE `entry`=16425; +UPDATE `locales_creature` SET `name_loc6`='Cruzado de El Alba Argenta' WHERE `entry`=16433; +UPDATE `locales_creature` SET `name_loc6`='Campeón de El Alba Argenta' WHERE `entry`=16434; +UPDATE `locales_creature` SET `name_loc6`='Sacerdote de El Alba Argenta' WHERE `entry`=16436; +UPDATE `locales_creature` SET `name_loc6`='Parroquiano espectral' WHERE `entry`=16468; +UPDATE `locales_creature` SET `name_loc6`='Filántropo fantasmal' WHERE `entry`=16470; +UPDATE `locales_creature` SET `name_loc6`='Actor espectral' WHERE `entry`=16473; +UPDATE `locales_creature` SET `name_loc6`='Seguidor de Naxxramas' WHERE `entry`=16505; +UPDATE `locales_creature` SET `name_loc6`='Venerador de Naxxramas' WHERE `entry`=16506; +UPDATE `locales_creature` SET `name_loc6`='Verdugo enigmático' WHERE `entry`=16519; +UPDATE `locales_creature` SET `name_loc6`='Explorador elfo de sangre' WHERE `entry`=16521; +UPDATE `locales_creature` SET `name_loc6`='Saqueador de las sombras' WHERE `entry`=16540; +UPDATE `locales_creature` SET `name_loc6`='Peregrino elfo de sangre' WHERE `entry`=16578; +UPDATE `locales_creature` SET `name_loc6`='Bruto de Thrallmar' WHERE `entry`=16580; +UPDATE `locales_creature` SET `name_loc6`='Tirador de Thrallmar' WHERE `entry`=16582; +UPDATE `locales_creature` SET `name_loc6`='Pacificador de El Exodar' WHERE `entry`=16733; +UPDATE `locales_creature` SET `name_loc6`='Brujo Ala de Fuego' WHERE `entry`=16769; +UPDATE `locales_creature` SET `name_loc6`='Celebrador del Solsticio de Verano' WHERE `entry`=16781; +UPDATE `locales_creature` SET `name_loc6`='Guardián de la llama del Festival' WHERE `entry`=16788; +UPDATE `locales_creature` SET `name_loc6`='Cadáver de elfo de la noche' WHERE `entry`=16804; +UPDATE `locales_creature` SET `name_loc6`='Arqueólogo de la Liga de Expedicionarios' WHERE `entry`=16835; +UPDATE `locales_creature` SET `name_loc6`='Minero de Bastión del Honor' WHERE `entry`=16838; +UPDATE `locales_creature` SET `name_loc6`='Defensor de Bastión del Honor' WHERE `entry`=16842; +UPDATE `locales_creature` SET `name_loc6`='Soldado de infantería de Ventormenta herido' WHERE `entry`=16865; +UPDATE `locales_creature` SET `name_loc6`='Arquero de Bastión del Honor' WHERE `entry`=16896; +UPDATE `locales_creature` SET `name_loc6`='Lacayo implacable' WHERE `entry`=16904; +UPDATE `locales_creature` SET `name_loc6`='Hechicero implacable' WHERE `entry`=16905; +UPDATE `locales_creature` SET `name_loc6`='Guardián de Valle Ammen' WHERE `entry`=16921; +UPDATE `locales_creature` SET `name_loc6`='Draenei herido' WHERE `entry`=16971; +UPDATE `locales_creature` SET `name_loc6`='Morador fantasmal' WHERE `entry`=16976; +UPDATE `locales_creature` SET `name_loc6`='Fiestero de Canción Eterna' WHERE `entry`=17056; +UPDATE `locales_creature` SET `name_loc6`='Invocador enigmático' WHERE `entry`=17088; +UPDATE `locales_creature` SET `name_loc6`='Asaltante Renegado' WHERE `entry`=17108; +UPDATE `locales_creature` SET `name_loc6`='Cultor Mata''penas' WHERE `entry`=17147; +UPDATE `locales_creature` SET `name_loc6`='Artificiero draenei' WHERE `entry`=17228; +UPDATE `locales_creature` SET `name_loc6`='Hachero de la Alianza' WHERE `entry`=17244; +UPDATE `locales_creature` SET `name_loc6`='Canalizador Fuego Infernal' WHERE `entry`=17256; +UPDATE `locales_creature` SET `name_loc6`='Peregrino en recuperación' WHERE `entry`=17263; +UPDATE `locales_creature` SET `name_loc6`='Gemólogo de Ventura y Cía.' WHERE `entry`=17279; +UPDATE `locales_creature` SET `name_loc6`='Tirador de Bastión del Honor' WHERE `entry`=17383; +UPDATE `locales_creature` SET `name_loc6`='Artificiero' WHERE `entry`=17406; +UPDATE `locales_creature` SET `name_loc6`='Cazador de valle' WHERE `entry`=17425; +UPDATE `locales_creature` SET `name_loc6`='Visión del héroe de la profecía' WHERE `entry`=17452; +UPDATE `locales_creature` SET `name_loc6`='Pacificador de Avanzada de Sangre' WHERE `entry`=17549; +UPDATE `locales_creature` SET `name_loc6`='Bandido elfo de sangre' WHERE `entry`=17591; +UPDATE `locales_creature` SET `name_loc6`='Rapiñador Halcón del Sol' WHERE `entry`=17605; +UPDATE `locales_creature` SET `name_loc6`='Reivindicador Halcón del Sol' WHERE `entry`=17606; +UPDATE `locales_creature` SET `name_loc6`='Defensor Halcón del Sol' WHERE `entry`=17607; +UPDATE `locales_creature` SET `name_loc6`='Piromántico Halcón del Sol' WHERE `entry`=17608; +UPDATE `locales_creature` SET `name_loc6`='Saboteador Halcón del Sol' WHERE `entry`=17609; +UPDATE `locales_creature` SET `name_loc6`='Emboscador Halcón del Sol' WHERE `entry`=17641; +UPDATE `locales_creature` SET `name_loc6`='Investigador de expedición' WHERE `entry`=17681; +UPDATE `locales_creature` SET `name_loc6`='Espadachín de la Mano de Argus' WHERE `entry`=17704; +UPDATE `locales_creature` SET `name_loc6`='Pícaro Halcón del Sol' WHERE `entry`=17705; +UPDATE `locales_creature` SET `name_loc6`='Viajero Sangre Maldita' WHERE `entry`=17714; +UPDATE `locales_creature` SET `name_loc6`='Velador de Lordaeron' WHERE `entry`=17814; +UPDATE `locales_creature` SET `name_loc6`='Avizor de Lordaeron' WHERE `entry`=17815; +UPDATE `locales_creature` SET `name_loc6`='Avizor de Durnholde' WHERE `entry`=17819; +UPDATE `locales_creature` SET `name_loc6`='Fusilero de Durnholde' WHERE `entry`=17820; +UPDATE `locales_creature` SET `name_loc6`='Celador de Durnholde' WHERE `entry`=17833; +UPDATE `locales_creature` SET `name_loc6`='Espectador del foso' WHERE `entry`=17846; +UPDATE `locales_creature` SET `name_loc6`='Rastreador de la Mano' WHERE `entry`=17853; +UPDATE `locales_creature` SET `name_loc6`='Cazador de la Mano' WHERE `entry`=17875; +UPDATE `locales_creature` SET `name_loc6`='Campesino de la Alianza' WHERE `entry`=17931; +UPDATE `locales_creature` SET `name_loc6`='Transformación de agente Halcón del Sol capturado' WHERE `entry`=17971; +UPDATE `locales_creature` SET `name_loc6`='Protector Depositario de Sangre' WHERE `entry`=17993; +UPDATE `locales_creature` SET `name_loc6`='Halconero Depositario de sangre' WHERE `entry`=17994; +UPDATE `locales_creature` SET `name_loc6`='Pacificador de Bruma Azur' WHERE `entry`=18038; +UPDATE `locales_creature` SET `name_loc6`='Custodio de Molino Tarren' WHERE `entry`=18092; +UPDATE `locales_creature` SET `name_loc6`='Protector de Molino Tarren' WHERE `entry`=18093; +UPDATE `locales_creature` SET `name_loc6`='Oteador de Molino Tarren' WHERE `entry`=18094; +UPDATE `locales_creature` SET `name_loc6`='Explorador de expedición' WHERE `entry`=18126; +UPDATE `locales_creature` SET `name_loc6`='Caballero de sangre iniciado' WHERE `entry`=18169; +UPDATE `locales_creature` SET `name_loc6`='Valedor de expedición' WHERE `entry`=18194; +UPDATE `locales_creature` SET `name_loc6`='Refugiado Foso Sangrante' WHERE `entry`=18292; +UPDATE `locales_creature` SET `name_loc6`='Refugiado de Puesto Primasol' WHERE `entry`=18293; +UPDATE `locales_creature` SET `name_loc6`='Huérfano de Puesto Primasol' WHERE `entry`=18296; +UPDATE `locales_creature` SET `name_loc6`='Huérfano Foso Sangrante' WHERE `entry`=18299; +UPDATE `locales_creature` SET `name_loc6`='Invasor Mata''penas' WHERE `entry`=18397; +UPDATE `locales_creature` SET `name_loc6`='Administrador Depositario de sangre' WHERE `entry`=18404; +UPDATE `locales_creature` SET `name_loc6`='Conservador Depositario de Sangre' WHERE `entry`=18419; +UPDATE `locales_creature` SET `name_loc6`='Geomántico Buscasol' WHERE `entry`=18420; +UPDATE `locales_creature` SET `name_loc6`='Investigador Buscasol' WHERE `entry`=18421; +UPDATE `locales_creature` SET `name_loc6`='Prisionero Mag''har' WHERE `entry`=18428; +UPDATE `locales_creature` SET `name_loc6`='Defensor de Garadar' WHERE `entry`=18489; +UPDATE `locales_creature` SET `name_loc6`='Druida caído' WHERE `entry`=18490; +UPDATE `locales_creature` SET `name_loc6`='Sacerdote de almas Auchenai' WHERE `entry`=18493; +UPDATE `locales_creature` SET `name_loc6`='Vindicador Auchenai' WHERE `entry`=18495; +UPDATE `locales_creature` SET `name_loc6`='Monje Auchenai' WHERE `entry`=18497; +UPDATE `locales_creature` SET `name_loc6`='Hechicero sin vida' WHERE `entry`=18499; +UPDATE `locales_creature` SET `name_loc6`='Acechador sin vida' WHERE `entry`=18501; +UPDATE `locales_creature` SET `name_loc6`='Posesor fantasmal' WHERE `entry`=18503; +UPDATE `locales_creature` SET `name_loc6`='Mensajero Ala de Fuego' WHERE `entry`=18548; +UPDATE `locales_creature` SET `name_loc6`='Vindicador Aldor' WHERE `entry`=18549; +UPDATE `locales_creature` SET `name_loc6`='Mampostero Aldor' WHERE `entry`=18552; +UPDATE `locales_creature` SET `name_loc6`='Hechicero de fase' WHERE `entry`=18558; +UPDATE `locales_creature` SET `name_loc6`='Acechador de fase' WHERE `entry`=18559; +UPDATE `locales_creature` SET `name_loc6`='Explorador de campo de la Alianza' WHERE `entry`=18581; +UPDATE `locales_creature` SET `name_loc6`='Criado Arúspice' WHERE `entry`=18593; +UPDATE `locales_creature` SET `name_loc6`='Asesino de la Cábala' WHERE `entry`=18636; +UPDATE `locales_creature` SET `name_loc6`='Mozo de cuadra de Molino Tarren' WHERE `entry`=18646; +UPDATE `locales_creature` SET `name_loc6`='Locutor del foso' WHERE `entry`=18673; +UPDATE `locales_creature` SET `name_loc6`='Antepasado orco ancestral' WHERE `entry`=18688; +UPDATE `locales_creature` SET `name_loc6`='Iniciado enigmático' WHERE `entry`=18716; +UPDATE `locales_creature` SET `name_loc6`='Obrero enigmático' WHERE `entry`=18717; +UPDATE `locales_creature` SET `name_loc6`='Consejero enigmático' WHERE `entry`=18719; +UPDATE `locales_creature` SET `name_loc6`='Protector Telhamat' WHERE `entry`=18758; +UPDATE `locales_creature` SET `name_loc6`='Ciudadano acosado' WHERE `entry`=18792; +UPDATE `locales_creature` SET `name_loc6`='Ciudadano de Lunargenta' WHERE `entry`=18799; +UPDATE `locales_creature` SET `name_loc6`='Sacerdote Solarium' WHERE `entry`=18806; +UPDATE `locales_creature` SET `name_loc6`='Depositaria Fuego Infernal' WHERE `entry`=18829; +UPDATE `locales_creature` SET `name_loc6`='Ingeniero de distorsión' WHERE `entry`=18852; +UPDATE `locales_creature` SET `name_loc6`='Depositario de sangre Furia del Sol' WHERE `entry`=18853; +UPDATE `locales_creature` SET `name_loc6`='Magister Furia del Sol' WHERE `entry`=18855; +UPDATE `locales_creature` SET `name_loc6`='Vindicador incorpóreo' WHERE `entry`=18872; +UPDATE `locales_creature` SET `name_loc6`='Protector incorpóreo' WHERE `entry`=18873; +UPDATE `locales_creature` SET `name_loc6`='Plebeyo humano' WHERE `entry`=18927; +UPDATE `locales_creature` SET `name_loc6`='Mago de Durnholde' WHERE `entry`=18934; +UPDATE `locales_creature` SET `name_loc6`='Defensor de Puerto Orebor' WHERE `entry`=18943; +UPDATE `locales_creature` SET `name_loc6`='Bruto de Orgrimmar' WHERE `entry`=18950; +UPDATE `locales_creature` SET `name_loc6`='Mago de Entrañas' WHERE `entry`=18971; +UPDATE `locales_creature` SET `name_loc6`='Bruto Rompepedras' WHERE `entry`=18973; +UPDATE `locales_creature` SET `name_loc6`='Defensor Allerian' WHERE `entry`=18999; +UPDATE `locales_creature` SET `name_loc6`='Elfo noble forestal' WHERE `entry`=19000; +UPDATE `locales_creature` SET `name_loc6`='Elfo noble refugiado' WHERE `entry`=19076; +UPDATE `locales_creature` SET `name_loc6`='Refugiado enano' WHERE `entry`=19077; +UPDATE `locales_creature` SET `name_loc6`='Refugiado Tábido' WHERE `entry`=19120; +UPDATE `locales_creature` SET `name_loc6`='Campesino Allerian' WHERE `entry`=19147; +UPDATE `locales_creature` SET `name_loc6`='Plebeyo enano' WHERE `entry`=19148; +UPDATE `locales_creature` SET `name_loc6`='Ciudadano Telaari' WHERE `entry`=19149; +UPDATE `locales_creature` SET `name_loc6`='Refugiado orco' WHERE `entry`=19150; +UPDATE `locales_creature` SET `name_loc6`='Caballero de sangre Halaani capturado' WHERE `entry`=19151; +UPDATE `locales_creature` SET `name_loc6`='Interrogador Khan' WHERE `entry`=19152; +UPDATE `locales_creature` SET `name_loc6`='Neófito Aldor' WHERE `entry`=19153; +UPDATE `locales_creature` SET `name_loc6`='Vindicador Halaani capturado' WHERE `entry`=19157; +UPDATE `locales_creature` SET `name_loc6`='Capitán de la guardia de Garadar' WHERE `entry`=19158; +UPDATE `locales_creature` SET `name_loc6`='Asesino Depositario de Sangre' WHERE `entry`=19167; +UPDATE `locales_creature` SET `name_loc6`='Astromago Buscasol' WHERE `entry`=19168; +UPDATE `locales_creature` SET `name_loc6`='Plebeyo elfo de sangre' WHERE `entry`=19169; +UPDATE `locales_creature` SET `name_loc6`='Campesino refugiado' WHERE `entry`=19170; +UPDATE `locales_creature` SET `name_loc6`='Plebeyo draenei' WHERE `entry`=19171; +UPDATE `locales_creature` SET `name_loc6`='Plebeyo gnomo' WHERE `entry`=19172; +UPDATE `locales_creature` SET `name_loc6`='Plebeyo elfo de la noche' WHERE `entry`=19173; +UPDATE `locales_creature` SET `name_loc6`='Plebeyo orco' WHERE `entry`=19175; +UPDATE `locales_creature` SET `name_loc6`='Plebeyo tauren' WHERE `entry`=19176; +UPDATE `locales_creature` SET `name_loc6`='Plebeyo trol' WHERE `entry`=19177; +UPDATE `locales_creature` SET `name_loc6`='Plebeyo Renegado' WHERE `entry`=19178; +UPDATE `locales_creature` SET `name_loc6`='Mago sangriento' WHERE `entry`=19258; +UPDATE `locales_creature` SET `name_loc6`='Vagabundo' WHERE `entry`=19289; +UPDATE `locales_creature` SET `name_loc6`='Protector Argenta' WHERE `entry`=19320; +UPDATE `locales_creature` SET `name_loc6`='Guardián Argenta' WHERE `entry`=19322; +UPDATE `locales_creature` SET `name_loc6`='Tirador Aldor' WHERE `entry`=19337; +UPDATE `locales_creature` SET `name_loc6`='Defensor Kor''kron' WHERE `entry`=19362; +UPDATE `locales_creature` SET `name_loc6`='Arquero Argenta' WHERE `entry`=19365; +UPDATE `locales_creature` SET `name_loc6`='Cazador Argenta' WHERE `entry`=19366; +UPDATE `locales_creature` SET `name_loc6`='Explorador Martillo Salvaje' WHERE `entry`=19384; +UPDATE `locales_creature` SET `name_loc6`='Montero de Cima del Trueno' WHERE `entry`=19406; +UPDATE `locales_creature` SET `name_loc6`='Vindicador de Bruma Azur' WHERE `entry`=19407; +UPDATE `locales_creature` SET `name_loc6`='Bruto Señor del Trueno' WHERE `entry`=19449; +UPDATE `locales_creature` SET `name_loc6`='Capitán Furia del Sol' WHERE `entry`=19453; +UPDATE `locales_creature` SET `name_loc6`='Infantería de Ventormenta caído' WHERE `entry`=19454; +UPDATE `locales_creature` SET `name_loc6`='Químico Buscasol' WHERE `entry`=19486; +UPDATE `locales_creature` SET `name_loc6`='Operativo de Bajo Arrabal' WHERE `entry`=19501; +UPDATE `locales_creature` SET `name_loc6`='Sanador de Bajo Arrabal' WHERE `entry`=19502; +UPDATE `locales_creature` SET `name_loc6`='Canalizador Buscasol' WHERE `entry`=19505; +UPDATE `locales_creature` SET `name_loc6`='Fusionador de genes Buscasol' WHERE `entry`=19507; +UPDATE `locales_creature` SET `name_loc6`='Centurión Depositario de Sangre' WHERE `entry`=19510; +UPDATE `locales_creature` SET `name_loc6`='Trabajador Furia del Sol' WHERE `entry`=19553; +UPDATE `locales_creature` SET `name_loc6`='Consejero de Nethergarde' WHERE `entry`=19566; +UPDATE `locales_creature` SET `name_loc6`='Guerrero Kor''kron' WHERE `entry`=19592; +UPDATE `locales_creature` SET `name_loc6`='Infantería de Ventormenta herido' WHERE `entry`=19624; +UPDATE `locales_creature` SET `name_loc6`='Ensalmador Depositario de sangre' WHERE `entry`=19633; +UPDATE `locales_creature` SET `name_loc6`='Pacificador de la ciudad de Shattrath' WHERE `entry`=19687; +UPDATE `locales_creature` SET `name_loc6`='Peregrino draenei' WHERE `entry`=19689; +UPDATE `locales_creature` SET `name_loc6`='Acólito Aldor' WHERE `entry`=19702; +UPDATE `locales_creature` SET `name_loc6`='Arquero Furia del Sol' WHERE `entry`=19707; +UPDATE `locales_creature` SET `name_loc6`='Geólogo Furia del Sol' WHERE `entry`=19779; +UPDATE `locales_creature` SET `name_loc6`='Implacable vengativo' WHERE `entry`=19863; +UPDATE `locales_creature` SET `name_loc6`='Capitán implacable vengativo' WHERE `entry`=19864; +UPDATE `locales_creature` SET `name_loc6`='Legionario Depositario de Sangre' WHERE `entry`=20031; +UPDATE `locales_creature` SET `name_loc6`='Vindicador Depositario de Sangre' WHERE `entry`=20032; +UPDATE `locales_creature` SET `name_loc6`='Mariscal Depositario de sangre' WHERE `entry`=20035; +UPDATE `locales_creature` SET `name_loc6`='Escudero Depositario de sangre' WHERE `entry`=20036; +UPDATE `locales_creature` SET `name_loc6`='Halconero de Tempestad' WHERE `entry`=20037; +UPDATE `locales_creature` SET `name_loc6`='Herrero Tempestad' WHERE `entry`=20042; +UPDATE `locales_creature` SET `name_loc6`='Aprendiz de arúspice estrella' WHERE `entry`=20043; +UPDATE `locales_creature` SET `name_loc6`='Astromante novicio' WHERE `entry`=20044; +UPDATE `locales_creature` SET `name_loc6`='Señor astromante' WHERE `entry`=20046; +UPDATE `locales_creature` SET `name_loc6`='Mago de batalla de la Mano Carmesí' WHERE `entry`=20047; +UPDATE `locales_creature` SET `name_loc6`='Inquisidor de la Mano Carmesí' WHERE `entry`=20050; +UPDATE `locales_creature` SET `name_loc6`='Espécimen de Avizor de Lordaeron' WHERE `entry`=20053; +UPDATE `locales_creature` SET `name_loc6`='Espécimen de velador de Lordaeron' WHERE `entry`=20054; +UPDATE `locales_creature` SET `name_loc6`='Ligador abisal Buscasol' WHERE `entry`=20059; +UPDATE `locales_creature` SET `name_loc6`='Reservista Depositario de sangre invocado' WHERE `entry`=20078; +UPDATE `locales_creature` SET `name_loc6`='Ensalmador Depositario de sangre invocado' WHERE `entry`=20083; +UPDATE `locales_creature` SET `name_loc6`='Plebeyo goblin' WHERE `entry`=20102; +UPDATE `locales_creature` SET `name_loc6`='Investigador Furia del Sol' WHERE `entry`=20136; +UPDATE `locales_creature` SET `name_loc6`='Lacayo implacable vengativo' WHERE `entry`=20137; +UPDATE `locales_creature` SET `name_loc6`='Conjurador Furia del Sol' WHERE `entry`=20139; +UPDATE `locales_creature` SET `name_loc6`='Técnico abisal' WHERE `entry`=20203; +UPDATE `locales_creature` SET `name_loc6`='Asaeteador Furia del Sol' WHERE `entry`=20207; +UPDATE `locales_creature` SET `name_loc6`='Técnico Furia del Sol' WHERE `entry`=20218; +UPDATE `locales_creature` SET `name_loc6`='Explorador de Bastión del Honor' WHERE `entry`=20238; +UPDATE `locales_creature` SET `name_loc6`='Abisálico Furia del Sol' WHERE `entry`=20248; +UPDATE `locales_creature` SET `name_loc6`='Mago del Kirin Tor' WHERE `entry`=20422; +UPDATE `locales_creature` SET `name_loc6`='Protector Furia del Sol' WHERE `entry`=20436; +UPDATE `locales_creature` SET `name_loc6`='Defensor de Bastión del Honor' WHERE `entry`=20513; +UPDATE `locales_creature` SET `name_loc6`='Marino de Ventormenta' WHERE `entry`=20556; +UPDATE `locales_creature` SET `name_loc6`='Defensor de Arcatraz' WHERE `entry`=20857; +UPDATE `locales_creature` SET `name_loc6`='Depositario de Arcatraz' WHERE `entry`=20859; +UPDATE `locales_creature` SET `name_loc6`='Refugiado humano' WHERE `entry`=20876; +UPDATE `locales_creature` SET `name_loc6`='Refugiado de Shattrath' WHERE `entry`=20877; +UPDATE `locales_creature` SET `name_loc6`='Defensor aislado' WHERE `entry`=20934; +UPDATE `locales_creature` SET `name_loc6`='Ingeniero Buscasol' WHERE `entry`=20988; +UPDATE `locales_creature` SET `name_loc6`='Médico Depositario de Sangre' WHERE `entry`=20990; +UPDATE `locales_creature` SET `name_loc6`='Exarca incorpóreo' WHERE `entry`=21058; +UPDATE `locales_creature` SET `name_loc6`='Cazador Mok''Nathal' WHERE `entry`=21081; +UPDATE `locales_creature` SET `name_loc6`='Técnico de estación' WHERE `entry`=21114; +UPDATE `locales_creature` SET `name_loc6`='Iniciado Auchenai' WHERE `entry`=21284; +UPDATE `locales_creature` SET `name_loc6`='Orador del Sino Auchenai' WHERE `entry`=21285; +UPDATE `locales_creature` SET `name_loc6`='Corruptor vil' WHERE `entry`=21300; +UPDATE `locales_creature` SET `name_loc6`='Brujo del Consejo de la Sombra' WHERE `entry`=21302; +UPDATE `locales_creature` SET `name_loc6`='Cadáver de defensor' WHERE `entry`=21303; +UPDATE `locales_creature` SET `name_loc6`='Cadáver de depositario' WHERE `entry`=21304; +UPDATE `locales_creature` SET `name_loc6`='Acólito Culto Vermis' WHERE `entry`=21383; +UPDATE `locales_creature` SET `name_loc6`='Tirador certero de estación' WHERE `entry`=21441; +UPDATE `locales_creature` SET `name_loc6`='Depositario de sangre Karabor' WHERE `entry`=21507; +UPDATE `locales_creature` SET `name_loc6`='Explorador Culto Vermis' WHERE `entry`=21637; +UPDATE `locales_creature` SET `name_loc6`='Abjurador de la Cábala' WHERE `entry`=21660; +UPDATE `locales_creature` SET `name_loc6`='Hostigador de la Cábala' WHERE `entry`=21661; +UPDATE `locales_creature` SET `name_loc6`='Defensor Martillo Salvaje' WHERE `entry`=21736; +UPDATE `locales_creature` SET `name_loc6`='Erradicador Furia del Sol' WHERE `entry`=21742; +UPDATE `locales_creature` SET `name_loc6`='Furtivo Culto Vermis' WHERE `entry`=21809; +UPDATE `locales_creature` SET `name_loc6`='Talador Culto Vermis' WHERE `entry`=21810; +UPDATE `locales_creature` SET `name_loc6`='Guerrero Auchenai asesinado' WHERE `entry`=21846; +UPDATE `locales_creature` SET `name_loc6`='Guerrero Auchenai' WHERE `entry`=21852; +UPDATE `locales_creature` SET `name_loc6`='Vindicador Sha''tar' WHERE `entry`=21858; +UPDATE `locales_creature` SET `name_loc6`='Vindicador Sha''tar asesinado' WHERE `entry`=21859; +UPDATE `locales_creature` SET `name_loc6`='Iniciado de la Cábala' WHERE `entry`=21907; +UPDATE `locales_creature` SET `name_loc6`='Aparecido detestable' WHERE `entry`=21941; +UPDATE `locales_creature` SET `name_loc6`='Emboscador Culto Vermis' WHERE `entry`=21982; +UPDATE `locales_creature` SET `name_loc6`='Vindicador del Altar de Sha''tar' WHERE `entry`=21986; +UPDATE `locales_creature` SET `name_loc6`='Emisario del Ojo de la Tormenta' WHERE `entry`=22013; +UPDATE `locales_creature` SET `name_loc6`='Enviado del Ojo de la Tormenta' WHERE `entry`=22015; +UPDATE `locales_creature` SET `name_loc6`='Soldado eclipsiano' WHERE `entry`=22016; +UPDATE `locales_creature` SET `name_loc6`='Vinculahechizos eclipsiano' WHERE `entry`=22017; +UPDATE `locales_creature` SET `name_loc6`='Hidalgo eclipsiano' WHERE `entry`=22018; +UPDATE `locales_creature` SET `name_loc6`='Promotor de arena' WHERE `entry`=22101; +UPDATE `locales_creature` SET `name_loc6`='Oteador de Durnholde' WHERE `entry`=22128; +UPDATE `locales_creature` SET `name_loc6`='Corruptor Tormenta Vil' WHERE `entry`=22217; +UPDATE `locales_creature` SET `name_loc6`='Corruptor de cólera' WHERE `entry`=22254; +UPDATE `locales_creature` SET `name_loc6`='Cazador Culto Vermis' WHERE `entry`=22308; +UPDATE `locales_creature` SET `name_loc6`='Niño cautivo' WHERE `entry`=22314; +UPDATE `locales_creature` SET `name_loc6`='Acólito Sombra de Muerte' WHERE `entry`=22341; +UPDATE `locales_creature` SET `name_loc6`='Vindicador Sha''tar atrapado con telaraña' WHERE `entry`=22354; +UPDATE `locales_creature` SET `name_loc6`='Brujo Sombra de Muerte' WHERE `entry`=22363; +UPDATE `locales_creature` SET `name_loc6`='Interrogador de la Cábala' WHERE `entry`=22378; +UPDATE `locales_creature` SET `name_loc6`='Druida Sotoeterno (Transformado: druida)' WHERE `entry`=22425; +UPDATE `locales_creature` SET `name_loc6`='Exarca reanimado' WHERE `entry`=22452; +UPDATE `locales_creature` SET `name_loc6`='Guerrero de Sha''tar liberado' WHERE `entry`=22459; +UPDATE `locales_creature` SET `name_loc6`='Vindicador Sha''tar herido' WHERE `entry`=22463; +UPDATE `locales_creature` SET `name_loc6`='Investigador de la Liga de Expedicionarios' WHERE `entry`=22464; +UPDATE `locales_creature` SET `name_loc6`='Truhán de Cosmotirón' WHERE `entry`=22494; +UPDATE `locales_creature` SET `name_loc6`='Druida de expedición Cenarion rescatado' WHERE `entry`=22810; +UPDATE `locales_creature` SET `name_loc6`='Vindicador Sha''tar rescatado' WHERE `entry`=22812; +UPDATE `locales_creature` SET `name_loc6`='Vindicador Juraluz' WHERE `entry`=22861; +UPDATE `locales_creature` SET `name_loc6`='Magister avezado' WHERE `entry`=22863; +UPDATE `locales_creature` SET `name_loc6`='Hidalgo Arúspice' WHERE `entry`=22967; +UPDATE `locales_creature` SET `name_loc6`='Juerguista elfo de sangre' WHERE `entry`=23045; +UPDATE `locales_creature` SET `name_loc6`='Aventurero de la Alianza' WHERE `entry`=23133; +UPDATE `locales_creature` SET `name_loc6`='Custodio de Molino Tarren' WHERE `entry`=23175; +UPDATE `locales_creature` SET `name_loc6`='Custodio de Molino Tarren' WHERE `entry`=23176; +UPDATE `locales_creature` SET `name_loc6`='Oteador de Molino Tarren' WHERE `entry`=23177; +UPDATE `locales_creature` SET `name_loc6`='Oteador de Molino Tarren' WHERE `entry`=23178; +UPDATE `locales_creature` SET `name_loc6`='Protector de Molino Tarren' WHERE `entry`=23179; +UPDATE `locales_creature` SET `name_loc6`='Protector de Molino Tarren' WHERE `entry`=23180; +UPDATE `locales_creature` SET `name_loc6`='Mago de batalla Illidari' WHERE `entry`=23402; +UPDATE `locales_creature` SET `name_loc6`='Asesino Illidari' WHERE `entry`=23403; +UPDATE `locales_creature` SET `name_loc6`='Defensor del Sagrario' WHERE `entry`=23435; +UPDATE `locales_creature` SET `name_loc6`='Defensor del altar' WHERE `entry`=23453; +UPDATE `locales_creature` SET `name_loc6`='Estibador Defias' WHERE `entry`=23589; +UPDATE `locales_creature` SET `name_loc6`='Conjurador Defias' WHERE `entry`=23590; +UPDATE `locales_creature` SET `name_loc6`='Rompedor Tótem Siniestro' WHERE `entry`=23592; +UPDATE `locales_creature` SET `name_loc6`='Transfigurador de espíritu Tótem Siniestro' WHERE `entry`=23593; +UPDATE `locales_creature` SET `name_loc6`='Vinculador terrestre Tótem Siniestro' WHERE `entry`=23595; +UPDATE `locales_creature` SET `name_loc6`='Corsario' WHERE `entry`=23620; +UPDATE `locales_creature` SET `name_loc6`='Huérfano ambulante' WHERE `entry`=23712; +UPDATE `locales_creature` SET `name_loc6`='Anciano Tótem Siniestro' WHERE `entry`=23714; +UPDATE `locales_creature` SET `name_loc6`='Prisionero de Theramore' WHERE `entry`=23720; +UPDATE `locales_creature` SET `name_loc6`='Defensor herido' WHERE `entry`=23783; +UPDATE `locales_creature` SET `name_loc6`='Médico de la Flota Norte' WHERE `entry`=23794; +UPDATE `locales_creature` SET `name_loc6`='Cañonero de Campo Venganza' WHERE `entry`=23809; +UPDATE `locales_creature` SET `name_loc6`='Cañonero de la Guardia Oeste' WHERE `entry`=23839; +UPDATE `locales_creature` SET `name_loc6`='Ballestero de la Guardia Oeste' WHERE `entry`=23840; +UPDATE `locales_creature` SET `name_loc6`='Defensor de la Guardia Oeste' WHERE `entry`=23842; +UPDATE `locales_creature` SET `name_loc6`='Enano caballista de la Guardia Oeste' WHERE `entry`=23856; +UPDATE `locales_creature` SET `name_loc6`='Humano caballista de la Guardia Oeste' WHERE `entry`=23857; +UPDATE `locales_creature` SET `name_loc6`='Aparecido inquieto' WHERE `entry`=23861; +UPDATE `locales_creature` SET `name_loc6`='Liberador de Venganza' WHERE `entry`=23865; +UPDATE `locales_creature` SET `name_loc6`='Marinero de la Flota Norte' WHERE `entry`=23866; +UPDATE `locales_creature` SET `name_loc6`='Ballestero Renegado' WHERE `entry`=23883; +UPDATE `locales_creature` SET `name_loc6`='Trabajador de la Guardia Oeste' WHERE `entry`=23911; +UPDATE `locales_creature` SET `name_loc6`='Defensor de la Guardia Oeste - durmiendo' WHERE `entry`=23933; +UPDATE `locales_creature` SET `name_loc6`='Rescatador de la Flota Norte' WHERE `entry`=23934; +UPDATE `locales_creature` SET `name_loc6`='Expedicionario perturbado' WHERE `entry`=23967; +UPDATE `locales_creature` SET `name_loc6`='Huérfano itinerante' WHERE `entry`=23971; +UPDATE `locales_creature` SET `name_loc6`='Prisionero de Gjalerbron' WHERE `entry`=24035; +UPDATE `locales_creature` SET `name_loc6`='Avizor de Vildervar' WHERE `entry`=24050; +UPDATE `locales_creature` SET `name_loc6`='Trabajador de Vildervar' WHERE `entry`=24058; +UPDATE `locales_creature` SET `name_loc6`='Minero de Vildervar' WHERE `entry`=24062; +UPDATE `locales_creature` SET `name_loc6`='Explorador de Valgarde' WHERE `entry`=24075; +UPDATE `locales_creature` SET `name_loc6`='Explorador de Valgarde empalado' WHERE `entry`=24077; +UPDATE `locales_creature` SET `name_loc6`='Ayudante boticario' WHERE `entry`=24081; +UPDATE `locales_creature` SET `name_loc6`='Niño de Valgarde capturado' WHERE `entry`=24091; +UPDATE `locales_creature` SET `name_loc6`='Enviado Pezuña Invernal' WHERE `entry`=24195; +UPDATE `locales_creature` SET `name_loc6`='Fusilero de la Guardia Oeste' WHERE `entry`=24197; +UPDATE `locales_creature` SET `name_loc6`='Enviado Pezuña Invernal liberado' WHERE `entry`=24211; +UPDATE `locales_creature` SET `name_loc6`='Prisionero Desuelladragones' WHERE `entry`=24226; +UPDATE `locales_creature` SET `name_loc6`='Prisionero Desuelladragones' WHERE `entry`=24253; +UPDATE `locales_creature` SET `name_loc6`='Prisionero Desuelladragones' WHERE `entry`=24254; +UPDATE `locales_creature` SET `name_loc6`='Prisionero Desuelladragones' WHERE `entry`=24255; +UPDATE `locales_creature` SET `name_loc6`='Antiguo ciudadano de Nafsavar' WHERE `entry`=24322; +UPDATE `locales_creature` SET `name_loc6`='Antiguo ciudadano de Nafsavar' WHERE `entry`=24323; +UPDATE `locales_creature` SET `name_loc6`='Excavador de Las Puertas de Acero' WHERE `entry`=24398; +UPDATE `locales_creature` SET `name_loc6`='Arqueólogo de Las Puertas de Acero' WHERE `entry`=24400; +UPDATE `locales_creature` SET `name_loc6`='Imagen de canalizador Buscasol' WHERE `entry`=24430; +UPDATE `locales_creature` SET `name_loc6`='Asesino de Campo Venganza' WHERE `entry`=24474; +UPDATE `locales_creature` SET `name_loc6`='Ladrón de la Hermandad' WHERE `entry`=24477; +UPDATE `locales_creature` SET `name_loc6`='Sirviente de vudú' WHERE `entry`=24529; +UPDATE `locales_creature` SET `name_loc6`='Ganadero de Rasganorte' WHERE `entry`=24535; +UPDATE `locales_creature` SET `name_loc6`='Pirata del Mar del Norte borracho' WHERE `entry`=24642; +UPDATE `locales_creature` SET `name_loc6`='Guardia mago Filosol' WHERE `entry`=24683; +UPDATE `locales_creature` SET `name_loc6`='Magister Filosol' WHERE `entry`=24685; +UPDATE `locales_creature` SET `name_loc6`='Brujo Filosol' WHERE `entry`=24686; +UPDATE `locales_creature` SET `name_loc6`='Médico Filosol' WHERE `entry`=24687; +UPDATE `locales_creature` SET `name_loc6`='Bucanero avezado' WHERE `entry`=24714; +UPDATE `locales_creature` SET `name_loc6`='Canalizador Sol Devastado' WHERE `entry`=24923; +UPDATE `locales_creature` SET `name_loc6`='Pesteador del Culto' WHERE `entry`=24957; +UPDATE `locales_creature` SET `name_loc6`='Guardia asesinado' WHERE `entry`=24962; +UPDATE `locales_creature` SET `name_loc6`='Explorador Sol Devastado' WHERE `entry`=24964; +UPDATE `locales_creature` SET `name_loc6`='Bombardero Sol Devastado' WHERE `entry`=25144; +UPDATE `locales_creature` SET `name_loc6`='Archimago Sol Devastado' WHERE `entry`=25170; +UPDATE `locales_creature` SET `name_loc6`='Tirador Grito de Guerra' WHERE `entry`=25244; +UPDATE `locales_creature` SET `name_loc6`='Herrero Grito de Guerra' WHERE `entry`=25275; +UPDATE `locales_creature` SET `name_loc6`='Ingeniero de asedio goblin' WHERE `entry`=25276; +UPDATE `locales_creature` SET `name_loc6`='Delegado draenei' WHERE `entry`=25300; +UPDATE `locales_creature` SET `name_loc6`='Cañonero de la Fortaleza Denuedo' WHERE `entry`=25306; +UPDATE `locales_creature` SET `name_loc6`='Portador de confalón Grito de Guerra' WHERE `entry`=25337; +UPDATE `locales_creature` SET `name_loc6`='Transformación de guardia de caravana muerto' WHERE `entry`=25340; +UPDATE `locales_creature` SET `name_loc6`='Transformación de trabajador de caravana muerto' WHERE `entry`=25341; +UPDATE `locales_creature` SET `name_loc6`='Enviado resucitado' WHERE `entry`=25350; +UPDATE `locales_creature` SET `name_loc6`='Sabio fantasmal' WHERE `entry`=25351; +UPDATE `locales_creature` SET `name_loc6`='Desertor de la Alianza' WHERE `entry`=25361; +UPDATE `locales_creature` SET `name_loc6`='Archimago Filosol' WHERE `entry`=25367; +UPDATE `locales_creature` SET `name_loc6`='Destripador Filosol' WHERE `entry`=25368; +UPDATE `locales_creature` SET `name_loc6`='Vindicador Filosol' WHERE `entry`=25369; +UPDATE `locales_creature` SET `name_loc6`='Sacerdote del anochecer Filosol' WHERE `entry`=25370; +UPDATE `locales_creature` SET `name_loc6`='Sacerdote del amanecer Filosol' WHERE `entry`=25371; +UPDATE `locales_creature` SET `name_loc6`='Explorador Filosol' WHERE `entry`=25372; +UPDATE `locales_creature` SET `name_loc6`='Guerrero del Bastión Grito de Guerra' WHERE `entry`=25414; +UPDATE `locales_creature` SET `name_loc6`='Mago del Bastión Grito de Guerra' WHERE `entry`=25420; +UPDATE `locales_creature` SET `name_loc6`='Explorador Grito de Guerra' WHERE `entry`=25439; +UPDATE `locales_creature` SET `name_loc6`='Reivindicador de Berilo' WHERE `entry`=25449; +UPDATE `locales_creature` SET `name_loc6`='Cultor clandestino' WHERE `entry`=25605; +UPDATE `locales_creature` SET `name_loc6`='Miliciano de Lindeallá' WHERE `entry`=25617; +UPDATE `locales_creature` SET `name_loc6`='Cultor necrólito' WHERE `entry`=25651; +UPDATE `locales_creature` SET `name_loc6`='Arquero Sol Devastado' WHERE `entry`=25662; +UPDATE `locales_creature` SET `name_loc6`='Mago Sol Devastado' WHERE `entry`=25663; +UPDATE `locales_creature` SET `name_loc6`='Desertor de la Alianza' WHERE `entry`=25761; +UPDATE `locales_creature` SET `name_loc6`='Furtivo enloquecido despojador' WHERE `entry`=25806; +UPDATE `locales_creature` SET `name_loc6`='Trampero de Nesingwary' WHERE `entry`=25835; +UPDATE `locales_creature` SET `name_loc6`='Fantasma de gnomo de Palanqueta' WHERE `entry`=26097; +UPDATE `locales_creature` SET `name_loc6`='Evacuado de Taunka''le' WHERE `entry`=26159; +UPDATE `locales_creature` SET `name_loc6`='Evacuado de Taunka''le' WHERE `entry`=26167; +UPDATE `locales_creature` SET `name_loc6`='Cultor asesinado' WHERE `entry`=26172; +UPDATE `locales_creature` SET `name_loc6`='Refugiado de Taunka''le' WHERE `entry`=26179; +UPDATE `locales_creature` SET `name_loc6`='Refugiado de Taunka''le' WHERE `entry`=26184; +UPDATE `locales_creature` SET `name_loc6`='Cultor en huida' WHERE `entry`=26189; +UPDATE `locales_creature` SET `name_loc6`='Lacayo de la Brigada de los Páramos de Poniente' WHERE `entry`=26217; +UPDATE `locales_creature` SET `name_loc6`='Anciano del Anillo de la Tierra' WHERE `entry`=26221; +UPDATE `locales_creature` SET `name_loc6`='Criomántico Crepuscular' WHERE `entry`=26222; +UPDATE `locales_creature` SET `name_loc6`='Pacificador Sol Devastado' WHERE `entry`=26253; +UPDATE `locales_creature` SET `name_loc6`='Hechicero de Aguja de Flujo' WHERE `entry`=26257; +UPDATE `locales_creature` SET `name_loc6`='Cazador de magos del Cementerio de Dragones' WHERE `entry`=26280; +UPDATE `locales_creature` SET `name_loc6`='Cultor Anub''ar' WHERE `entry`=26319; +UPDATE `locales_creature` SET `name_loc6`='Perito de la Liga de Expedicionarios' WHERE `entry`=26362; +UPDATE `locales_creature` SET `name_loc6`='Cazador del solsticio' WHERE `entry`=26389; +UPDATE `locales_creature` SET `name_loc6`='Refugiado de Taunka''le' WHERE `entry`=26432; +UPDATE `locales_creature` SET `name_loc6`='Refugiada de Taunka''le' WHERE `entry`=26433; +UPDATE `locales_creature` SET `name_loc6`='Transformación de cazador de magos muerto' WHERE `entry`=26476; +UPDATE `locales_creature` SET `name_loc6`='Guerrero de la Horda' WHERE `entry`=26486; +UPDATE `locales_creature` SET `name_loc6`='Químico Renegado' WHERE `entry`=26507; +UPDATE `locales_creature` SET `name_loc6`='Lacayo Escarlata' WHERE `entry`=26524; +UPDATE `locales_creature` SET `name_loc6`='Lacayo Escarlata plagado' WHERE `entry`=26526; +UPDATE `locales_creature` SET `name_loc6`='Aviador de Palanqueta' WHERE `entry`=26601; +UPDATE `locales_creature` SET `name_loc6`='Espectador Desuelladragones' WHERE `entry`=26667; +UPDATE `locales_creature` SET `name_loc6`='Trampero de Arroyoplata' WHERE `entry`=26679; +UPDATE `locales_creature` SET `name_loc6`='Ascendiente cazador de magos' WHERE `entry`=26727; +UPDATE `locales_creature` SET `name_loc6`='Iniciado cazador de magos' WHERE `entry`=26728; +UPDATE `locales_creature` SET `name_loc6`='Administrador' WHERE `entry`=26729; +UPDATE `locales_creature` SET `name_loc6`='Esbirro Cerveza Temible' WHERE `entry`=26776; +UPDATE `locales_creature` SET `name_loc6`='Rabioso de la Alianza' WHERE `entry`=26800; +UPDATE `locales_creature` SET `name_loc6`='Luchador de Palanqueta' WHERE `entry`=26817; +UPDATE `locales_creature` SET `name_loc6`='Legionario del Bastión de la Conquista' WHERE `entry`=26839; +UPDATE `locales_creature` SET `name_loc6`='Espectador de lucha de foso' WHERE `entry`=26869; +UPDATE `locales_creature` SET `name_loc6`='Cazador de dragones Lanza Negra' WHERE `entry`=26870; +UPDATE `locales_creature` SET `name_loc6`='Lacayo Pino Ámbar' WHERE `entry`=27072; +UPDATE `locales_creature` SET `name_loc6`='Guerrero Grito de Guerra herido' WHERE `entry`=27106; +UPDATE `locales_creature` SET `name_loc6`='Mago Grito de Guerra herido' WHERE `entry`=27107; +UPDATE `locales_creature` SET `name_loc6`='Apoderado Grito de Guerra herido' WHERE `entry`=27109; +UPDATE `locales_creature` SET `name_loc6`='Explorador Pino Ámbar' WHERE `entry`=27117; +UPDATE `locales_creature` SET `name_loc6`='Hidalgo de la Séptima Legión' WHERE `entry`=27161; +UPDATE `locales_creature` SET `name_loc6`='Ingeniero de asedio de la Séptima Legión' WHERE `entry`=27163; +UPDATE `locales_creature` SET `name_loc6`='Mago de batalla de la Séptima Legión' WHERE `entry`=27164; +UPDATE `locales_creature` SET `name_loc6`='Mago de guerra de El Saliente Ámbar' WHERE `entry`=27170; +UPDATE `locales_creature` SET `name_loc6`='Mago de guerra del Escudo de Tránsito' WHERE `entry`=27175; +UPDATE `locales_creature` SET `name_loc6`='Sacerdote cuervo del Embate' WHERE `entry`=27202; +UPDATE `locales_creature` SET `name_loc6`='Lacayo del Embate' WHERE `entry`=27203; +UPDATE `locales_creature` SET `name_loc6`='Marinero de cubierta del Embate' WHERE `entry`=27233; +UPDATE `locales_creature` SET `name_loc6`='Trabajador forestal Pino Ámbar' WHERE `entry`=27293; +UPDATE `locales_creature` SET `name_loc6`='Sanador Argenta' WHERE `entry`=27305; +UPDATE `locales_creature` SET `name_loc6`='Necrólito de las profundidades ardientes' WHERE `entry`=27356; +UPDATE `locales_creature` SET `name_loc6`='Habitante de Hibergarde atrapado' WHERE `entry`=27359; +UPDATE `locales_creature` SET `name_loc6`='Lacayo del Embate' WHERE `entry`=27405; +UPDATE `locales_creature` SET `name_loc6`='Lacayo del Embate' WHERE `entry`=27406; +UPDATE `locales_creature` SET `name_loc6`='Bruto del Bastión de la Conquista' WHERE `entry`=27470; +UPDATE `locales_creature` SET `name_loc6`='Trampero asesinado' WHERE `entry`=27479; +UPDATE `locales_creature` SET `name_loc6`='Emisario de la Alianza' WHERE `entry`=27492; +UPDATE `locales_creature` SET `name_loc6`='Rabioso del Bastión de la Conquista' WHERE `entry`=27500; +UPDATE `locales_creature` SET `name_loc6`='Marino de la Brigada de los Páramos de Poniente' WHERE `entry`=27501; +UPDATE `locales_creature` SET `name_loc6`='Soldado de Fordragón herido' WHERE `entry`=27517; +UPDATE `locales_creature` SET `name_loc6`='Lacayo de Fordragón' WHERE `entry`=27518; +UPDATE `locales_creature` SET `name_loc6`='Nigromante gélido' WHERE `entry`=27539; +UPDATE `locales_creature` SET `name_loc6`='Cazador de Arroyoplata' WHERE `entry`=27546; +UPDATE `locales_creature` SET `name_loc6`='Campeón del Bastión de la Conquista' WHERE `entry`=27550; +UPDATE `locales_creature` SET `name_loc6`='Lancero Lanza Negra' WHERE `entry`=27560; +UPDATE `locales_creature` SET `name_loc6`='Conscripto de la Alianza' WHERE `entry`=27564; +UPDATE `locales_creature` SET `name_loc6`='Defensor del Reposo del Dragón' WHERE `entry`=27629; +UPDATE `locales_creature` SET `name_loc6`='Clamador del templo' WHERE `entry`=27643; +UPDATE `locales_creature` SET `name_loc6`='Defensor de Arroyoplata' WHERE `entry`=27676; +UPDATE `locales_creature` SET `name_loc6`='Agresor nigromante gélido' WHERE `entry`=27687; +UPDATE `locales_creature` SET `name_loc6`='Defensor del Reposo del Dragón' WHERE `entry`=27690; +UPDATE `locales_creature` SET `name_loc6`='Mago de batalla de Fordragón' WHERE `entry`=27695; +UPDATE `locales_creature` SET `name_loc6`='Elfo noble mago sacerdote' WHERE `entry`=27747; +UPDATE `locales_creature` SET `name_loc6`='Defensor del Bastión de la Conquista' WHERE `entry`=27748; +UPDATE `locales_creature` SET `name_loc6`='Conscripto de la Horda' WHERE `entry`=27749; +UPDATE `locales_creature` SET `name_loc6`='Defensor de la Brigada de los Páramos de Poniente' WHERE `entry`=27758; +UPDATE `locales_creature` SET `name_loc6`='Soldado de la Séptima Legión herido' WHERE `entry`=27788; +UPDATE `locales_creature` SET `name_loc6`='Fusilero de la Séptima Legión' WHERE `entry`=27791; +UPDATE `locales_creature` SET `name_loc6`='Cruzado Argenta' WHERE `entry`=28029; +UPDATE `locales_creature` SET `name_loc6`='Tripulación aterradora' WHERE `entry`=28052; +UPDATE `locales_creature` SET `name_loc6`='Cruzado recluta' WHERE `entry`=28090; +UPDATE `locales_creature` SET `name_loc6`='Lacayo Argenta' WHERE `entry`=28117; +UPDATE `locales_creature` SET `name_loc6`='Excavador de Ventura y Cía.' WHERE `entry`=28123; +UPDATE `locales_creature` SET `name_loc6`='Lacayo Argenta derrotado' WHERE `entry`=28156; +UPDATE `locales_creature` SET `name_loc6`='Bombardero de la Guardia Oeste' WHERE `entry`=28157; +UPDATE `locales_creature` SET `name_loc6`='Ciudadano de Stratholme' WHERE `entry`=28167; +UPDATE `locales_creature` SET `name_loc6`='Cruzado Argenta' WHERE `entry`=28247; +UPDATE `locales_creature` SET `name_loc6`='Lacayo Argenta derrotado' WHERE `entry`=28260; +UPDATE `locales_creature` SET `name_loc6`='Gladiador huido' WHERE `entry`=28322; +UPDATE `locales_creature` SET `name_loc6`='Ciudadano de Stratholme' WHERE `entry`=28340; +UPDATE `locales_creature` SET `name_loc6`='Ingeniero de asedio de la Séptima Legión (DVD)' WHERE `entry`=28370; +UPDATE `locales_creature` SET `name_loc6`='Infiltrado cultor' WHERE `entry`=28373; +UPDATE `locales_creature` SET `name_loc6`='Prisionero de la Cruzada Escarlata' WHERE `entry`=28385; +UPDATE `locales_creature` SET `name_loc6`='Prisionero de El Alba Argenta' WHERE `entry`=28386; +UPDATE `locales_creature` SET `name_loc6`='Iniciado caballero de la Muerte' WHERE `entry`=28390; +UPDATE `locales_creature` SET `name_loc6`='Iniciado caballero de la Muerte' WHERE `entry`=28391; +UPDATE `locales_creature` SET `name_loc6`='Iniciado caballero de la Muerte' WHERE `entry`=28392; +UPDATE `locales_creature` SET `name_loc6`='Iniciado caballero de la Muerte' WHERE `entry`=28393; +UPDATE `locales_creature` SET `name_loc6`='Iniciado caballero de la Muerte' WHERE `entry`=28394; +UPDATE `locales_creature` SET `name_loc6`='Iniciado caballero de la Muerte' WHERE `entry`=28406; +UPDATE `locales_creature` SET `name_loc6`='Lacayo cautivo' WHERE `entry`=28415; +UPDATE `locales_creature` SET `name_loc6`='Cadáver de cultor' WHERE `entry`=28464; +UPDATE `locales_creature` SET `name_loc6`='Discípulo de sangre' WHERE `entry`=28489; +UPDATE `locales_creature` SET `name_loc6`='Discípulo de escarcha' WHERE `entry`=28490; +UPDATE `locales_creature` SET `name_loc6`='Discípulo profano' WHERE `entry`=28491; +UPDATE `locales_creature` SET `name_loc6`='Obrero esclavizado' WHERE `entry`=28505; +UPDATE `locales_creature` SET `name_loc6`='Trol marchito' WHERE `entry`=28519; +UPDATE `locales_creature` SET `name_loc6`='Cruzado Escarlata' WHERE `entry`=28529; +UPDATE `locales_creature` SET `name_loc6`='Cultor saboteador' WHERE `entry`=28538; +UPDATE `locales_creature` SET `name_loc6`='Albañil' WHERE `entry`=28569; +UPDATE `locales_creature` SET `name_loc6`='Albañil (con aspecto de enano)' WHERE `entry`=28593; +UPDATE `locales_creature` SET `name_loc6`='Predicador Escarlata' WHERE `entry`=28594; +UPDATE `locales_creature` SET `name_loc6`='Acólito Manomuerte' WHERE `entry`=28602; +UPDATE `locales_creature` SET `name_loc6`='Enano intrépido' WHERE `entry`=28604; +UPDATE `locales_creature` SET `name_loc6`='Médico Escarlata' WHERE `entry`=28608; +UPDATE `locales_creature` SET `name_loc6`='Capitán Escarlata' WHERE `entry`=28611; +UPDATE `locales_creature` SET `name_loc6`='Boticario Guardamuerte' WHERE `entry`=28637; +UPDATE `locales_creature` SET `name_loc6`='Boticario investigador' WHERE `entry`=28638; +UPDATE `locales_creature` SET `name_loc6`='Mensajero de la Sociedad de Boticarios' WHERE `entry`=28743; +UPDATE `locales_creature` SET `name_loc6`='Defensor de El Confín Argenta' WHERE `entry`=28801; +UPDATE `locales_creature` SET `name_loc6`='Sacerdote reverente' WHERE `entry`=28814; +UPDATE `locales_creature` SET `name_loc6`='Defensor de la Brecha de la Luz' WHERE `entry`=28818; +UPDATE `locales_creature` SET `name_loc6`='Defensor de la Flota Escarlata' WHERE `entry`=28834; +UPDATE `locales_creature` SET `name_loc6`='Transformación de discípulo de Mam''toth muerto' WHERE `entry`=28853; +UPDATE `locales_creature` SET `name_loc6`='Guardián de la Flota Escarlata' WHERE `entry`=28856; +UPDATE `locales_creature` SET `name_loc6`='Discípulo de Mam''toth' WHERE `entry`=28861; +UPDATE `locales_creature` SET `name_loc6`='Guardián de Puesto de Vigilancia de Ébano' WHERE `entry`=28865; +UPDATE `locales_creature` SET `name_loc6`='Guardián de la Flota Escarlata' WHERE `entry`=28884; +UPDATE `locales_creature` SET `name_loc6`='Defensor de la Flota Escarlata' WHERE `entry`=28886; +UPDATE `locales_creature` SET `name_loc6`='Médico Escarlata' WHERE `entry`=28895; +UPDATE `locales_creature` SET `name_loc6`='Capitán Escarlata' WHERE `entry`=28898; +UPDATE `locales_creature` SET `name_loc6`='Predicador Escarlata' WHERE `entry`=28939; +UPDATE `locales_creature` SET `name_loc6`='Cruzado Escarlata' WHERE `entry`=28940; +UPDATE `locales_creature` SET `name_loc6`='Ciudadano de Nuevo Avalon proxy' WHERE `entry`=28986; +UPDATE `locales_creature` SET `name_loc6`='Inquisidor Escarlata' WHERE `entry`=29029; +UPDATE `locales_creature` SET `name_loc6`='Campeón Escarlata' WHERE `entry`=29080; +UPDATE `locales_creature` SET `name_loc6`='Cañonero de Ventormenta' WHERE `entry`=29088; +UPDATE `locales_creature` SET `name_loc6`='Cruzado de Vega del Amparo' WHERE `entry`=29102; +UPDATE `locales_creature` SET `name_loc6`='Cruzado de Tirisfal' WHERE `entry`=29103; +UPDATE `locales_creature` SET `name_loc6`='Soldado Escarlata apoderado' WHERE `entry`=29150; +UPDATE `locales_creature` SET `name_loc6`='Desertor Escarlata' WHERE `entry`=29193; +UPDATE `locales_creature` SET `name_loc6`='Mago guardián de El Pacto de Plata' WHERE `entry`=29254; +UPDATE `locales_creature` SET `name_loc6`='Mago guardián Atracasol' WHERE `entry`=29255; +UPDATE `locales_creature` SET `name_loc6`='Trampero de la Alameda' WHERE `entry`=29269; +UPDATE `locales_creature` SET `name_loc6`='Recluta Renegado' WHERE `entry`=29422; +UPDATE `locales_creature` SET `name_loc6`='Minero goblin herido' WHERE `entry`=29434; +UPDATE `locales_creature` SET `name_loc6`='Cruzado Argenta' WHERE `entry`=29472; +UPDATE `locales_creature` SET `name_loc6`='Trampero de Puesto Fresno' WHERE `entry`=29492; +UPDATE `locales_creature` SET `name_loc6`='Iniciado indigno' WHERE `entry`=29519; +UPDATE `locales_creature` SET `name_loc6`='Iniciado indigno' WHERE `entry`=29520; +UPDATE `locales_creature` SET `name_loc6`='Iniciado indigno' WHERE `entry`=29565; +UPDATE `locales_creature` SET `name_loc6`='Iniciado indigno' WHERE `entry`=29566; +UPDATE `locales_creature` SET `name_loc6`='Iniciado indigno' WHERE `entry`=29567; +UPDATE `locales_creature` SET `name_loc6`='Arquero del Puerto de Ventormenta' WHERE `entry`=29578; +UPDATE `locales_creature` SET `name_loc6`='Espía creciente de la muerte capturada' WHERE `entry`=29649; +UPDATE `locales_creature` SET `name_loc6`='Cultor de las Sombras' WHERE `entry`=29717; +UPDATE `locales_creature` SET `name_loc6`='Espécimen de ciudadano de Stratholme' WHERE `entry`=29865; +UPDATE `locales_creature` SET `name_loc6`='Espécimen de niño de Stratholme' WHERE `entry`=29868; +UPDATE `locales_creature` SET `name_loc6`='Bruto del Bastión Grito de Guerra' WHERE `entry`=29942; +UPDATE `locales_creature` SET `name_loc6`='Defensor de Orgrimmar' WHERE `entry`=29949; +UPDATE `locales_creature` SET `name_loc6`='Vendedor del anfiteatro' WHERE `entry`=30098; +UPDATE `locales_creature` SET `name_loc6`='Espectador del anfiteatro' WHERE `entry`=30102; +UPDATE `locales_creature` SET `name_loc6`='Venerador Crepuscular' WHERE `entry`=30111; +UPDATE `locales_creature` SET `name_loc6`='Iniciado Crepuscular' WHERE `entry`=30114; +UPDATE `locales_creature` SET `name_loc6`='Campeón Argenta' WHERE `entry`=30188; +UPDATE `locales_creature` SET `name_loc6`='Cruzado de Virtud' WHERE `entry`=30189; +UPDATE `locales_creature` SET `name_loc6`='Espectador del anfiteatro' WHERE `entry`=30193; +UPDATE `locales_creature` SET `name_loc6`='Explorador Atracasol' WHERE `entry`=30233; +UPDATE `locales_creature` SET `name_loc6`='Explorador de El Pacto de Plata' WHERE `entry`=30238; +UPDATE `locales_creature` SET `name_loc6`='Señor de El Nexo' WHERE `entry`=30245; +UPDATE `locales_creature` SET `name_loc6`='Sucesor de la Eternidad' WHERE `entry`=30249; +UPDATE `locales_creature` SET `name_loc6`='Cruzado liberado' WHERE `entry`=30274; +UPDATE `locales_creature` SET `name_loc6`='Defensor del Puerto de Ventormenta' WHERE `entry`=30289; +UPDATE `locales_creature` SET `name_loc6`='Capitán del Puerto de Ventormenta' WHERE `entry`=30293; +UPDATE `locales_creature` SET `name_loc6`='Marinero de El Rompecielos' WHERE `entry`=30351; +UPDATE `locales_creature` SET `name_loc6`='Marino de El Rompecielos' WHERE `entry`=30352; +UPDATE `locales_creature` SET `name_loc6`='Voluntario Crepuscular' WHERE `entry`=30385; +UPDATE `locales_creature` SET `name_loc6`='Ingeniero de El Rompecielos' WHERE `entry`=30394; +UPDATE `locales_creature` SET `name_loc6`='Mecánico goblin' WHERE `entry`=30400; +UPDATE `locales_creature` SET `name_loc6`='Cruzado capturado' WHERE `entry`=30407; +UPDATE `locales_creature` SET `name_loc6`='Ingeniero gnómico' WHERE `entry`=30499; +UPDATE `locales_creature` SET `name_loc6`='Emisario de la Playa de los Ancestros' WHERE `entry`=30566; +UPDATE `locales_creature` SET `name_loc6`='Enviado de la Playa de los Ancestros' WHERE `entry`=30567; +UPDATE `locales_creature` SET `name_loc6`='Cazador de magos veterano' WHERE `entry`=30665; +UPDATE `locales_creature` SET `name_loc6`='Cruzado de Virtud' WHERE `entry`=30672; +UPDATE `locales_creature` SET `name_loc6`='Campeón Argenta' WHERE `entry`=30675; +UPDATE `locales_creature` SET `name_loc6`='Campeón de la Espada de Ébano' WHERE `entry`=30703; +UPDATE `locales_creature` SET `name_loc6`='Celador de caza de Nesingwary' WHERE `entry`=30737; +UPDATE `locales_creature` SET `name_loc6`='Campeón Grito de Guerra' WHERE `entry`=30739; +UPDATE `locales_creature` SET `name_loc6`='Campeón de la Expedición Denuedo' WHERE `entry`=30740; +UPDATE `locales_creature` SET `name_loc6`='Artillero del Martillo de Orgrim' WHERE `entry`=30752; +UPDATE `locales_creature` SET `name_loc6`='Ingeniero del Martillo de Orgrim' WHERE `entry`=30753; +UPDATE `locales_creature` SET `name_loc6`='Atracador Kor''kron' WHERE `entry`=30755; +UPDATE `locales_creature` SET `name_loc6`='Ingeniero de Conquista del Invierno' WHERE `entry`=30855; +UPDATE `locales_creature` SET `name_loc6`='Depositario de sombras del Martillo de Orgrim' WHERE `entry`=30866; +UPDATE `locales_creature` SET `name_loc6`='Mago guerrero de El Rompecielos' WHERE `entry`=30867; +UPDATE `locales_creature` SET `name_loc6`='Sacerdote de batalla Argenta' WHERE `entry`=30919; +UPDATE `locales_creature` SET `name_loc6`='Cruzado de Virtud' WHERE `entry`=31033; +UPDATE `locales_creature` SET `name_loc6`='Adepto de sombra' WHERE `entry`=31145; +UPDATE `locales_creature` SET `name_loc6`='Defensor de la Espada de Ébano' WHERE `entry`=31250; +UPDATE `locales_creature` SET `name_loc6`='Rabioso moribundo' WHERE `entry`=31273; +UPDATE `locales_creature` SET `name_loc6`='Sanador Argenta' WHERE `entry`=31282; +UPDATE `locales_creature` SET `name_loc6`='Veterano de la Espada de Ébano' WHERE `entry`=31314; +UPDATE `locales_creature` SET `name_loc6`='Segador de la Espada de Ébano' WHERE `entry`=31316; +UPDATE `locales_creature` SET `name_loc6`='Bruto de Orgrimmar' WHERE `entry`=31416; +UPDATE `locales_creature` SET `name_loc6`='Plebeyo orco' WHERE `entry`=31434; +UPDATE `locales_creature` SET `name_loc6`='Boticario químico' WHERE `entry`=31482; +UPDATE `locales_creature` SET `name_loc6`='Zahorí amistoso de Dalaran' WHERE `entry`=31522; +UPDATE `locales_creature` SET `name_loc6`='Gladiador amistoso de Dalaran' WHERE `entry`=31523; +UPDATE `locales_creature` SET `name_loc6`='Reanimador de vermis' WHERE `entry`=31731; +UPDATE `locales_creature` SET `name_loc6`='Guía espiritual enano' WHERE `entry`=31842; +UPDATE `locales_creature` SET `name_loc6`='Espíritu de héroe caído' WHERE `entry`=32149; +UPDATE `locales_creature` SET `name_loc6`='Zelote elegido' WHERE `entry`=32175; +UPDATE `locales_creature` SET `name_loc6`='Aviador Rompecielo' WHERE `entry`=32190; +UPDATE `locales_creature` SET `name_loc6`='Explorador del Martillo de Orgrim' WHERE `entry`=32201; +UPDATE `locales_creature` SET `name_loc6`='Subyugador oscuro' WHERE `entry`=32236; +UPDATE `locales_creature` SET `name_loc6`='Iniciado amargo' WHERE `entry`=32238; +UPDATE `locales_creature` SET `name_loc6`='Cruzado disfrazado' WHERE `entry`=32241; +UPDATE `locales_creature` SET `name_loc6`='Héroe transformado' WHERE `entry`=32255; +UPDATE `locales_creature` SET `name_loc6`='Conversor de la Plaga' WHERE `entry`=32257; +UPDATE `locales_creature` SET `name_loc6`='Invocador del vacío' WHERE `entry`=32259; +UPDATE `locales_creature` SET `name_loc6`='Canalizador de sombra' WHERE `entry`=32262; +UPDATE `locales_creature` SET `name_loc6`='Piloto bombardero de la Alianza' WHERE `entry`=32274; +UPDATE `locales_creature` SET `name_loc6`='Prisionero arruinado' WHERE `entry`=32275; +UPDATE `locales_creature` SET `name_loc6`='Guardanegro del Culto' WHERE `entry`=32276; +UPDATE `locales_creature` SET `name_loc6`='Guerrero verde' WHERE `entry`=32321; +UPDATE `locales_creature` SET `name_loc6`='Guerrero de oro' WHERE `entry`=32322; +UPDATE `locales_creature` SET `name_loc6`='Mago verde' WHERE `entry`=32324; +UPDATE `locales_creature` SET `name_loc6`='Sacerdote verde' WHERE `entry`=32343; +UPDATE `locales_creature` SET `name_loc6`='Boticario químico' WHERE `entry`=32395; +UPDATE `locales_creature` SET `name_loc6`='Ciudadano de Dalaran' WHERE `entry`=32451; +UPDATE `locales_creature` SET `name_loc6`='Ciudadano de Dalaran' WHERE `entry`=32453; +UPDATE `locales_creature` SET `name_loc6`='Ciudadano de Dalaran' WHERE `entry`=32454; +UPDATE `locales_creature` SET `name_loc6`='Iniciado de la Espada de Ébano' WHERE `entry`=32468; +UPDATE `locales_creature` SET `name_loc6`='Asesino a sueldo Tarrodecobre' WHERE `entry`=32476; +UPDATE `locales_creature` SET `name_loc6`='Vindicador de la Espada de Ébano' WHERE `entry`=32488; +UPDATE `locales_creature` SET `name_loc6`='Dalaran herido' WHERE `entry`=32493; +UPDATE `locales_creature` SET `name_loc6`='Hijo de Dalaran' WHERE `entry`=32494; +UPDATE `locales_creature` SET `name_loc6`='Acólito cultor' WHERE `entry`=32507; +UPDATE `locales_creature` SET `name_loc6`='Ingeniero infraverde de la Alianza' WHERE `entry`=32526; +UPDATE `locales_creature` SET `name_loc6`='Ingeniero infraverde de la Horda' WHERE `entry`=32529; +UPDATE `locales_creature` SET `name_loc6`='Instructor de némesis de Alto Señor' WHERE `entry`=32547; +UPDATE `locales_creature` SET `name_loc6`='Cazador de magos del Cementerio de Dragones' WHERE `entry`=32572; +UPDATE `locales_creature` SET `name_loc6`='Recolector primaveral' WHERE `entry`=32798; +UPDATE `locales_creature` SET `name_loc6`='Colector primaveral' WHERE `entry`=32799; +UPDATE `locales_creature` SET `name_loc6`='Vendedor del Jardín Noble' WHERE `entry`=32836; +UPDATE `locales_creature` SET `name_loc6`='Mercader del Jardín Noble' WHERE `entry`=32837; +UPDATE `locales_creature` SET `name_loc6`='Soldado mercenario capturado' WHERE `entry`=32883; +UPDATE `locales_creature` SET `name_loc6`='Soldado mercenario capturado' WHERE `entry`=32885; +UPDATE `locales_creature` SET `name_loc6`='Capitán mercenario capturado' WHERE `entry`=32907; +UPDATE `locales_creature` SET `name_loc6`='Capitán mercenario capturado' WHERE `entry`=32908; +UPDATE `locales_creature` SET `name_loc6`='Truhán de la Luna Negra' WHERE `entry`=33069; +UPDATE `locales_creature` SET `name_loc6`='Valeroso de Sen''jin' WHERE `entry`=33285; +UPDATE `locales_creature` SET `name_loc6`='Ingeniero de expedición' WHERE `entry`=33287; +UPDATE `locales_creature` SET `name_loc6`='Valeroso de Orgrimmar' WHERE `entry`=33306; +UPDATE `locales_creature` SET `name_loc6`='Valeroso de Lunargenta' WHERE `entry`=33382; +UPDATE `locales_creature` SET `name_loc6`='Valeroso de Cima del Trueno' WHERE `entry`=33383; +UPDATE `locales_creature` SET `name_loc6`='Valeroso de Entrañas' WHERE `entry`=33384; +UPDATE `locales_creature` SET `name_loc6`='Valeroso de Orgrimmar' WHERE `entry`=33460; +UPDATE `locales_creature` SET `name_loc6`='Valeroso de Gnomeregan' WHERE `entry`=33463; +UPDATE `locales_creature` SET `name_loc6`='Valeroso de Lunargenta' WHERE `entry`=33468; +UPDATE `locales_creature` SET `name_loc6`='Valeroso de Entrañas' WHERE `entry`=33469; +UPDATE `locales_creature` SET `name_loc6`='Valeroso de Cima del Trueno' WHERE `entry`=33473; +UPDATE `locales_creature` SET `name_loc6`='Valeroso de Sen''jin' WHERE `entry`=33476; +UPDATE `locales_creature` SET `name_loc6`='Valeroso de Ventormenta' WHERE `entry`=33479; +UPDATE `locales_creature` SET `name_loc6`='Valeroso de Forjaz' WHERE `entry`=33481; +UPDATE `locales_creature` SET `name_loc6`='Conspirador del Culto' WHERE `entry`=33537; +UPDATE `locales_creature` SET `name_loc6`='Valeroso de Gnomeregan' WHERE `entry`=33558; +UPDATE `locales_creature` SET `name_loc6`='Valeroso de Darnassus' WHERE `entry`=33559; +UPDATE `locales_creature` SET `name_loc6`='Valeroso de Ventormenta' WHERE `entry`=33561; +UPDATE `locales_creature` SET `name_loc6`='Valeroso de El Exodar' WHERE `entry`=33562; +UPDATE `locales_creature` SET `name_loc6`='Valeroso de Forjaz' WHERE `entry`=33564; +UPDATE `locales_creature` SET `name_loc6`='Valeroso de Darnassus' WHERE `entry`=33565; +UPDATE `locales_creature` SET `name_loc6`='Valeroso de El Exodar' WHERE `entry`=33566; +UPDATE `locales_creature` SET `name_loc6`='Ingeniero contratado' WHERE `entry`=33626; +UPDATE `locales_creature` SET `name_loc6`='Demoledor contratado' WHERE `entry`=33627; +UPDATE `locales_creature` SET `name_loc6`='Guardián de El Pacto de Plata' WHERE `entry`=33643; +UPDATE `locales_creature` SET `name_loc6`='Mago de batalla del Kirin Tor' WHERE `entry`=33662; +UPDATE `locales_creature` SET `name_loc6`='Mago del Kirin Tor' WHERE `entry`=33672; +UPDATE `locales_creature` SET `name_loc6`='Bombardero cultor' WHERE `entry`=33695; +UPDATE `locales_creature` SET `name_loc6`='Pacificador Argenta' WHERE `entry`=33698; +UPDATE `locales_creature` SET `name_loc6`='Campeón Argenta' WHERE `entry`=33707; +UPDATE `locales_creature` SET `name_loc6`='Defensor de expedición' WHERE `entry`=33816; +UPDATE `locales_creature` SET `name_loc6`='Partidario Crepuscular' WHERE `entry`=33818; +UPDATE `locales_creature` SET `name_loc6`='Mago de escarcha Crepuscular' WHERE `entry`=33819; +UPDATE `locales_creature` SET `name_loc6`='Mercenario de expedición' WHERE `entry`=34144; +UPDATE `locales_creature` SET `name_loc6`='Ingeniero de expedición' WHERE `entry`=34145; +UPDATE `locales_creature` SET `name_loc6`='Pacificador Argenta' WHERE `entry`=34179; +UPDATE `locales_creature` SET `name_loc6`='Asesino a sueldo Tarrodecobre' WHERE `entry`=34505; +UPDATE `locales_creature` SET `name_loc6`='Aspirante cautivo' WHERE `entry`=34716; +UPDATE `locales_creature` SET `name_loc6`='Zelote oscuro' WHERE `entry`=34728; +UPDATE `locales_creature` SET `name_loc6`='Ritualista oscuro' WHERE `entry`=34734; +UPDATE `locales_creature` SET `name_loc6`='Espectador del coliseo tauren' WHERE `entry`=34858; +UPDATE `locales_creature` SET `name_loc6`='Espectador del coliseo orco' WHERE `entry`=34859; +UPDATE `locales_creature` SET `name_loc6`='Espectador del coliseo elfo de sangre' WHERE `entry`=34861; +UPDATE `locales_creature` SET `name_loc6`='Espectador del coliseo draenei' WHERE `entry`=34868; +UPDATE `locales_creature` SET `name_loc6`='Espectador del coliseo gnomo' WHERE `entry`=34869; +UPDATE `locales_creature` SET `name_loc6`='Espectador del coliseo humano' WHERE `entry`=34870; +UPDATE `locales_creature` SET `name_loc6`='Emisario de la Isla de la Conquista' WHERE `entry`=34948; +UPDATE `locales_creature` SET `name_loc6`='Enviado de la Isla de la Conquista' WHERE `entry`=34949; +UPDATE `locales_creature` SET `name_loc6`='Emisario de la Isla de la Conquista' WHERE `entry`=34950; +UPDATE `locales_creature` SET `name_loc6`='Enviado de la Isla de la Conquista' WHERE `entry`=34951; +UPDATE `locales_creature` SET `name_loc6`='Espectador de la Cruzada Argenta' WHERE `entry`=34966; +UPDATE `locales_creature` SET `name_loc6`='Espectador de la Cruzada Argenta' WHERE `entry`=34970; +UPDATE `locales_creature` SET `name_loc6`='Espectador de la Cruzada Argenta' WHERE `entry`=34974; +UPDATE `locales_creature` SET `name_loc6`='Espectador de la Cruzada Argenta' WHERE `entry`=34975; +UPDATE `locales_creature` SET `name_loc6`='Espectador de la Cruzada Argenta' WHERE `entry`=34977; +UPDATE `locales_creature` SET `name_loc6`='Espectador de la Cruzada Argenta' WHERE `entry`=34979; +UPDATE `locales_creature` SET `name_loc6`='Marino del Halcón de Fuego' WHERE `entry`=35070; +UPDATE `locales_creature` SET `name_loc6`='Aspirante sacrificado' WHERE `entry`=35097; +UPDATE `locales_creature` SET `name_loc6`='Marino del Cresta de la Ola' WHERE `entry`=35098; +UPDATE `locales_creature` SET `name_loc6`='Saboteador del Culto' WHERE `entry`=35116; +UPDATE `locales_creature` SET `name_loc6`='Asesino del Culto' WHERE `entry`=35127; +UPDATE `locales_creature` SET `name_loc6`='Celebrante elfo de sangre fantasmal' WHERE `entry`=35243; +UPDATE `locales_creature` SET `name_loc6`='Celebrante Renegado fantasmal' WHERE `entry`=35244; +UPDATE `locales_creature` SET `name_loc6`='Celebrante enano fantasmal' WHERE `entry`=35247; +UPDATE `locales_creature` SET `name_loc6`='Celebrante gnomo fantasmal' WHERE `entry`=35248; +UPDATE `locales_creature` SET `name_loc6`='Celebrante humano fantasmal' WHERE `entry`=35249; +UPDATE `locales_creature` SET `name_loc6`='Celebrante elfo de la noche fantasmal' WHERE `entry`=35250; +UPDATE `locales_creature` SET `name_loc6`='Esgrimidor de la Luz Argenta' WHERE `entry`=35309; +UPDATE `locales_creature` SET `name_loc6`='Marinero del Alba Carmesí' WHERE `entry`=35318; +UPDATE `locales_creature` SET `name_loc6`='Marinero de La Espada de Plata' WHERE `entry`=35319; +UPDATE `locales_creature` SET `name_loc6`='Mecánico goblin' WHERE `entry`=35346; +UPDATE `locales_creature` SET `name_loc6`='Visitante brujo' WHERE `entry`=35475; +UPDATE `locales_creature` SET `name_loc6`='Pacificador Argenta' WHERE `entry`=35587; +UPDATE `locales_creature` SET `name_loc6`='Atracador Kor''kron' WHERE `entry`=36164; +UPDATE `locales_creature` SET `name_loc6`='Marinero de cubierta de la Séptima Legión' WHERE `entry`=36165; +UPDATE `locales_creature` SET `name_loc6`='Marino de la Séptima Legión' WHERE `entry`=36166; +UPDATE `locales_creature` SET `name_loc6`='Segador Guardaalma' WHERE `entry`=36499; +UPDATE `locales_creature` SET `name_loc6`='Alentador Guardaalma' WHERE `entry`=36516; +UPDATE `locales_creature` SET `name_loc6`='Boticario enloquecido' WHERE `entry`=36568; +UPDATE `locales_creature` SET `name_loc6`='Esclavo de la Alianza' WHERE `entry`=36764; +UPDATE `locales_creature` SET `name_loc6`='Esclavo de la Alianza' WHERE `entry`=36765; +UPDATE `locales_creature` SET `name_loc6`='Esclavo de la Alianza' WHERE `entry`=36766; +UPDATE `locales_creature` SET `name_loc6`='Esclavo de la Alianza' WHERE `entry`=36767; +UPDATE `locales_creature` SET `name_loc6`='Esclavo de la Horda' WHERE `entry`=36770; +UPDATE `locales_creature` SET `name_loc6`='Esclavo de la Horda' WHERE `entry`=36771; +UPDATE `locales_creature` SET `name_loc6`='Esclavo de la Horda' WHERE `entry`=36772; +UPDATE `locales_creature` SET `name_loc6`='Esclavo de la Horda' WHERE `entry`=36773; +UPDATE `locales_creature` SET `name_loc6`='Sirviente portavoz de la muerte' WHERE `entry`=36805; +UPDATE `locales_creature` SET `name_loc6`='Esclavo de la Horda rescatado' WHERE `entry`=36889; +UPDATE `locales_creature` SET `name_loc6`='Marino de El Rompecielos' WHERE `entry`=36950; +UPDATE `locales_creature` SET `name_loc6`='Atracador Kor''kron' WHERE `entry`=36957; +UPDATE `locales_creature` SET `name_loc6`='Fusilero de El Rompecielos' WHERE `entry`=36969; +UPDATE `locales_creature` SET `name_loc6`='Marinero de El Rompecielos' WHERE `entry`=36970; +UPDATE `locales_creature` SET `name_loc6`='Protector de El Rompecielos' WHERE `entry`=36998; +UPDATE `locales_creature` SET `name_loc6`='Asesino de El Rompecielos' WHERE `entry`=37017; +UPDATE `locales_creature` SET `name_loc6`='Vicario de El Rompecielos' WHERE `entry`=37021; +UPDATE `locales_creature` SET `name_loc6`='Hechicero de El Rompecielos' WHERE `entry`=37026; +UPDATE `locales_creature` SET `name_loc6`='Acechador Kor''kron' WHERE `entry`=37028; +UPDATE `locales_creature` SET `name_loc6`='Atracador Kor''kron' WHERE `entry`=37029; +UPDATE `locales_creature` SET `name_loc6`='Defensor Kor''kron' WHERE `entry`=37032; +UPDATE `locales_creature` SET `name_loc6`='Convocador Kor''kron' WHERE `entry`=37033; +UPDATE `locales_creature` SET `name_loc6`='Templario Kor''kron' WHERE `entry`=37034; +UPDATE `locales_creature` SET `name_loc6`='Vencedor Kor''kron' WHERE `entry`=37035; +UPDATE `locales_creature` SET `name_loc6`='Hechicero de El Rompecielos' WHERE `entry`=37116; +UPDATE `locales_creature` SET `name_loc6`='Mago de batalla Kor''kron' WHERE `entry`=37117; +UPDATE `locales_creature` SET `name_loc6`='Tirador de El Rompecielos' WHERE `entry`=37144; +UPDATE `locales_creature` SET `name_loc6`='Francotirador Kor''kron' WHERE `entry`=37146; +UPDATE `locales_creature` SET `name_loc6`='Necrólito Kor''kron' WHERE `entry`=37149; +UPDATE `locales_creature` SET `name_loc6`='Defensor de La Fuente del Sol' WHERE `entry`=37211; +UPDATE `locales_creature` SET `name_loc6`='Lacayo de La Corona' WHERE `entry`=37214; +UPDATE `locales_creature` SET `name_loc6`='Campeón del Coliseo' WHERE `entry`=37496; +UPDATE `locales_creature` SET `name_loc6`='Campeón del Coliseo' WHERE `entry`=37497; +UPDATE `locales_creature` SET `name_loc6`='Campeón del Coliseo' WHERE `entry`=37498; +UPDATE `locales_creature` SET `name_loc6`='Archimago Sol Devastado' WHERE `entry`=37510; +UPDATE `locales_creature` SET `name_loc6`='Celador de La Fuente del Sol' WHERE `entry`=37523; +UPDATE `locales_creature` SET `name_loc6`='Esclavo de la Alianza liberado' WHERE `entry`=37572; +UPDATE `locales_creature` SET `name_loc6`='Esclavo de la Alianza liberado' WHERE `entry`=37575; +UPDATE `locales_creature` SET `name_loc6`='Esclavo de la Alianza liberado' WHERE `entry`=37576; +UPDATE `locales_creature` SET `name_loc6`='Esclavo de la Horda liberado' WHERE `entry`=37577; +UPDATE `locales_creature` SET `name_loc6`='Esclavo de la Horda liberado' WHERE `entry`=37578; +UPDATE `locales_creature` SET `name_loc6`='Esclavo de la Horda liberado' WHERE `entry`=37579; +UPDATE `locales_creature` SET `name_loc6`='Campeón del Coliseo' WHERE `entry`=37584; +UPDATE `locales_creature` SET `name_loc6`='Campeón del Coliseo' WHERE `entry`=37587; +UPDATE `locales_creature` SET `name_loc6`='Campeón del Coliseo' WHERE `entry`=37588; +UPDATE `locales_creature` SET `name_loc6`='Noble Caído Oscuro' WHERE `entry`=37663; +UPDATE `locales_creature` SET `name_loc6`='Táctico Caído Oscuro' WHERE `entry`=37666; +UPDATE `locales_creature` SET `name_loc6`='Pacificador de El Exodar' WHERE `entry`=37798; +UPDATE `locales_creature` SET `name_loc6`='Marino de El Rompecielos' WHERE `entry`=37830; +UPDATE `locales_creature` SET `name_loc6`='Bruto de Orgrimmar' WHERE `entry`=37869; +UPDATE `locales_creature` SET `name_loc6`='Ingeniero de El Rompecielos' WHERE `entry`=37898; +UPDATE `locales_creature` SET `name_loc6`='Matón de La Corona' WHERE `entry`=37917; +UPDATE `locales_creature` SET `name_loc6`='Atracador Kor''kron' WHERE `entry`=37920; +UPDATE `locales_creature` SET `name_loc6`='Campeón Argenta' WHERE `entry`=37928; +UPDATE `locales_creature` SET `name_loc6`='Ingeniero de asedio del Martillo de Orgrim' WHERE `entry`=37932; +UPDATE `locales_creature` SET `name_loc6`='Alborotador Hierro Negro' WHERE `entry`=37937; +UPDATE `locales_creature` SET `name_loc6`='Desempolvador de La Corona' WHERE `entry`=37984; +UPDATE `locales_creature` SET `name_loc6`='Campeón de ébano' WHERE `entry`=37996; +UPDATE `locales_creature` SET `name_loc6`='Rociador de La Corona' WHERE `entry`=38023; +UPDATE `locales_creature` SET `name_loc6`='Subordinado de La Corona' WHERE `entry`=38030; +UPDATE `locales_creature` SET `name_loc6`='Pulverizador de La Corona' WHERE `entry`=38032; +UPDATE `locales_creature` SET `name_loc6`='Peregrino elfo de sangre' WHERE `entry`=38047; +UPDATE `locales_creature` SET `name_loc6`='Elfo noble peregrino' WHERE `entry`=38048; +UPDATE `locales_creature` SET `name_loc6`='Peregrino joven' WHERE `entry`=38049; +UPDATE `locales_creature` SET `name_loc6`='Bruto de Orgrimmar' WHERE `entry`=38050; +UPDATE `locales_creature` SET `name_loc6`='Ciudadano de Orgrimmar' WHERE `entry`=38067; +UPDATE `locales_creature` SET `name_loc6`='Mago de Orgrimmar' WHERE `entry`=38158; +UPDATE `locales_creature` SET `name_loc6`='Cruzado Argenta' WHERE `entry`=38493; +UPDATE `locales_creature` SET `name_loc6`='Cruzado Argenta (Mounted)' WHERE `entry`=38497; +UPDATE `locales_creature` SET `name_loc6`='Vigía de la Cima asesinado' WHERE `entry`=38831; +UPDATE `locales_creature` SET `name_loc6`='Buscador Crepuscular' WHERE `entry`=39103; +UPDATE `locales_creature` SET `name_loc6`='Evacuado de Gnomeregan rescatado' WHERE `entry`=39265; +UPDATE `locales_creature` SET `name_loc6`='Médico de Gnomeregan' WHERE `entry`=39275; +UPDATE `locales_creature` SET `name_loc6`='Orador del Sino' WHERE `entry`=39328; +UPDATE `locales_creature` SET `name_loc6`='Ciudadano de Orgrimmar' WHERE `entry`=39343; +UPDATE `locales_creature` SET `name_loc6`='Ciudadano de Orgrimmar' WHERE `entry`=39632; +UPDATE `locales_creature` SET `name_loc6`='Zombi inquieto' WHERE `entry`=39639; +UPDATE `locales_creature` SET `name_loc6`='Cultor del día del Juicio Final' WHERE `entry`=39648; +UPDATE `locales_creature` SET `name_loc6`='Ciudadano preocupado' WHERE `entry`=39861; +UPDATE `locales_creature` SET `name_loc6`='Médico de Gnomeregan' WHERE `entry`=39888; +UPDATE `locales_creature` SET `name_loc6`='Cultor del día del Juicio Final' WHERE `entry`=39891; +UPDATE `locales_creature` SET `name_loc6`='Avizor del zepelín' WHERE `entry`=39934; +UPDATE `locales_creature` SET `name_loc6`='Buscador muerto' WHERE `entry`=39940; +UPDATE `locales_creature` SET `name_loc6`='Ciudadano preocupado' WHERE `entry`=40110; +UPDATE `locales_creature` SET `name_loc6`='Orador del Sino' WHERE `entry`=40124; +UPDATE `locales_creature` SET `name_loc6`='Trol descerebrado' WHERE `entry`=40195; +UPDATE `locales_creature` SET `name_loc6`='Trol embrujado' WHERE `entry`=40231; +UPDATE `locales_creature` SET `name_loc6`='Guerrero Lanza Negra' WHERE `entry`=40241; +UPDATE `locales_creature` SET `name_loc6`='Zombi inquieto' WHERE `entry`=40274; +UPDATE `locales_creature` SET `name_loc6`='Guerrero Lanza Negra' WHERE `entry`=40392; +UPDATE `locales_creature` SET `name_loc6`='Explorador Lanza Negra' WHERE `entry`=40416; +UPDATE `locales_creature` SET `name_loc6`='Celebrador trol' WHERE `entry`=40481; +-- esMX +UPDATE `locales_creature` SET `name_loc7`='Teúrgo de Dalaran' WHERE `entry`=2272; +UPDATE `locales_creature` SET `name_loc7`='Depositaria Fuego Infernal' WHERE `entry`=18829; +UPDATE `locales_creature` SET `name_loc7`='Refugiada de Taunka''le' WHERE `entry`=26433; +UPDATE `locales_creature` SET `name_loc7`='Tripulación aterradora' WHERE `entry`=28052; +UPDATE `locales_creature` SET `name_loc7`='Espía creciente de la muerte capturada' WHERE `entry`=29649; +-- ruRU +UPDATE `locales_creature` SET `name_loc8`='Жрец Алого ордена' WHERE `entry`=10608; +UPDATE `locales_creature` SET `name_loc8`='Разведчик Похитителей Солнца' WHERE `entry`=30233; diff --git a/sql/updates/world/2014_06_22_01_world_gameobject.sql b/sql/updates/world/2014_06_22_01_world_gameobject.sql new file mode 100644 index 00000000000..9a180b24c95 --- /dev/null +++ b/sql/updates/world/2014_06_22_01_world_gameobject.sql @@ -0,0 +1,2 @@ +-- +UPDATE gameobject SET state=1 WHERE id = 185915; diff --git a/sql/updates/world/2014_06_22_02_world_misc.sql b/sql/updates/world/2014_06_22_02_world_misc.sql new file mode 100644 index 00000000000..fadeb279d94 --- /dev/null +++ b/sql/updates/world/2014_06_22_02_world_misc.sql @@ -0,0 +1,8 @@ +-- Blacksilt Scout +SET @ENTRY := 17326; +SET @SOURCETYPE := 0; + +DELETE FROM `smart_scripts` WHERE `entryorguid`=@ENTRY AND `source_type`=@SOURCETYPE; +UPDATE creature_template SET AIName="SmartAI" WHERE entry=@ENTRY LIMIT 1; +INSERT INTO `smart_scripts` (`entryorguid`,`source_type`,`id`,`link`,`event_type`,`event_phase_mask`,`event_chance`,`event_flags`,`event_param1`,`event_param2`,`event_param3`,`event_param4`,`action_type`,`action_param1`,`action_param2`,`action_param3`,`action_param4`,`action_param5`,`action_param6`,`target_type`,`target_param1`,`target_param2`,`target_param3`,`target_x`,`target_y`,`target_z`,`target_o`,`comment`) VALUES +(@ENTRY,@SOURCETYPE,0,0,8,0,100,0,30877,0,0,0,33,17654,0,0,0,0,0,16,0,0,0,0.0,0.0,0.0,0.0,"Blacksilt Scout - On Spellhit - Give Quest Credit"); diff --git a/sql/updates/world/2014_06_22_03_world_misc.sql b/sql/updates/world/2014_06_22_03_world_misc.sql new file mode 100644 index 00000000000..f85cfba9e79 --- /dev/null +++ b/sql/updates/world/2014_06_22_03_world_misc.sql @@ -0,0 +1,88 @@ +-- QUEST The Plains of Nasam +SET @GUID := 76299; -- set the guid for spawning 6 are required +DELETE FROM `creature` WHERE id =25334; + +INSERT INTO `creature` (`guid`, `id`, `map`, `spawnMask`, `phaseMask`, `position_x`, `position_y`, `position_z`, `orientation`, `spawntimesecs`, `spawndist`, `MovementType`) VALUES +(@GUID, 25334, 571, 1, 1, 2792.044, 6738.573, 7.797749, 4.34587, 120, 0, 0), -- 25334 (Area: 4130) +(@GUID+1, 25334, 571, 1, 1, 2798.961, 6735.21, 7.625851, 4.276057, 120, 0, 0), -- 25334 (Area: 4130) +(@GUID+2, 25334, 571, 1, 1, 2784.335, 6742.207, 7.92973, 4.29351, 120, 0, 0), -- 25334 (Area: 4130) +(@GUID+3, 25334, 571, 1, 1, 2766.58, 6751.198, 7.29528, 4.258604, 120, 0, 0), -- 25334 (Area: 4130) +(@GUID+4, 25334, 571, 1, 1, 2777.034, 6745.713, 7.899116, 4.29351, 120, 0, 0), -- 25334 (Area: 4130) +(@GUID+5, 25334, 571, 1, 1, 2807.21, 6730.922, 7.841674, 4.433136, 120, 0, 0); -- 25334 (Area: 4130) + +UPDATE `creature_template` SET `faction`=1981, `unit_flags`=4096, `dynamicflags`=0,`speed_walk`=1.2, `speed_run`=2 WHERE `entry`=25334; + +DELETE FROM `spell_area` WHERE `spell`=47917 AND `area` IN(4027,4130); +INSERT INTO `spell_area` (`spell`, `area`, `quest_start`, `quest_end`, `aura_spell`, `racemask`, `gender`, `autocast`, `quest_start_status`, `quest_end_status`) VALUES +(47917, 4027, 11652, 11652, 0, 0, 2, 0, 64, 11), +(47917, 4130, 11652, 11652, 0, 0, 2, 0, 64, 11); + +UPDATE `creature_template` SET `spell1`=50672, `spell2`=45750,`spell3`=50677, `spell4`=47849, `spell5`=47962, `Health_mod`=5, `Mana_mod`=5 WHERE `entry`=25334; +DELETE FROM `npc_spellclick_spells` WHERE `npc_entry`=25334 AND `spell_id`=46598; +INSERT INTO `npc_spellclick_spells` (`npc_entry`,`spell_id`,`cast_flags`) VALUES (25334, 46598, 1); + +UPDATE `creature_template` SET `AIName`='SmartAI' WHERE `entry` IN (27106, 27107, 27108, 27110); +DELETE FROM `smart_scripts` WHERE `entryorguid` IN (27106, 27107, 27108, 27110) AND `source_type`=0; +INSERT INTO `smart_scripts` (`entryorguid`, `source_type`, `id`, `link`, `event_type`, `event_phase_mask`, `event_chance`, `event_flags`, `event_param1`, `event_param2`, `event_param3`, `event_param4`, `action_type`, `action_param1`, `action_param2`, `action_param3`, `action_param4`, `action_param5`, `action_param6`, `target_type`, `target_param1`, `target_param2`, `target_param3`, `target_x`, `target_y`, `target_z`, `target_o`, `comment`) VALUES +(27106, 0, 0, 1, 8, 0, 100, 1, 47962, 0, 0, 0, 85, 47967, 1, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 'Injured Warsong Warrior - On Spell hit - Cast Killcredit on Invoker'), +(27106, 0, 1, 0, 61, 0, 100, 1, 47962, 0, 0, 0, 41, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'Injured Warsong Warrior - On Spell hit - Despawn after 1sec'), +(27107, 0, 0, 1, 8, 0, 100, 1, 47962, 0, 0, 0, 85, 47967, 1, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 'Injured Warsong Mage - On Spell hit - Cast Killcredit on Invoker'), +(27107, 0, 1, 0, 61, 0, 100, 1, 47962, 0, 0, 0, 41, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'Injured Warsong Mage - On Spell hit - Despawn after 1sec'), +(27108, 0, 0, 1, 8, 0, 100, 1, 47962, 0, 0, 0, 85, 47967, 1, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 'Injured Warsong Shaman - On Spell hit - Cast Killcredit on Invoker'), +(27108, 0, 1, 0, 61, 0, 100, 1, 47962, 0, 0, 0, 41, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'Injured Warsong Shaman - On Spell hit - Despawn after 1sec'), +(27110, 0, 0, 1, 8, 0, 100, 1, 47962, 0, 0, 0, 85, 47967, 1, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 'Injured Warsong Ingenieur - On Spell hit - Cast Killcredit on Invoker'), +(27110, 0, 1, 0, 61, 0, 100, 1, 47962, 0, 0, 0, 41, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'Injured Warsong Ingenieur - On Spell hit - Despawn after 1sec'); + +-- NPC Scourge Plague Spreader +UPDATE `creature_template` SET `faction`=974, `unit_flags`=`unit_flags`|2|33554432 WHERE `entry`=25349; +UPDATE `creature_template` SET `flags_extra`=`flags_extra`|64 WHERE `entry` IN (25333, 25469, 25332); +-- NPC Abandoned Fuel Tank +UPDATE `creature_template` SET `faction`=2022, `unit_flags`=`unit_flags`|2|4|33554432, `AIName`='SmartAI' WHERE `entry`=27064; +DELETE FROM `smart_scripts` WHERE `entryorguid`=27064 AND `source_type`=0; +INSERT INTO `smart_scripts` (`entryorguid`, `source_type`, `id`, `link`, `event_type`, `event_phase_mask`, `event_chance`, `event_flags`, `event_param1`, `event_param2`, `event_param3`, `event_param4`, `action_type`, `action_param1`, `action_param2`, `action_param3`, `action_param4`, `action_param5`, `action_param6`, `target_type`, `target_param1`, `target_param2`, `target_param3`, `target_x`, `target_y`, `target_z`, `target_o`, `comment`) VALUES +(27064, 0, 0, 1, 9, 0, 100, 0, 0, 5, 30000, 35000, 85, 47916, 2, 0, 0, 0, 0, 11, 25334, 5, 0, 0, 0, 0, 0, 'Abandoned Fuel Tank - On Range 2yd - Cast Fuel'), +(27064, 0, 1, 0, 61, 0, 100, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 19, 25334, 0, 0, 0, 0, 0, 0, 'Abandoned Fuel Tank - Linked with Previous Event - Say'), +(27064, 0, 2, 3, 11, 0, 100, 0, 0, 0, 0, 0, 20, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'Abandoned Fuel Tank - On Respawn - Disable Auto Attack'), +(27064, 0, 3, 0, 61, 0, 100, 0, 0, 0, 0, 0, 21, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'Abandoned Fuel Tank - On Respawn - Disable Combat Movement'); + +DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId`=22 AND `SourceEntry`=27064 AND `SourceId`=0; +INSERT INTO `conditions` (`SourceTypeOrReferenceId`, `SourceGroup`, `SourceEntry`, `SourceId`, `ElseGroup`, `ConditionTypeOrReference`, `ConditionTarget`, `ConditionValue1`, `ConditionValue2`, `ConditionValue3`, `NegativeCondition`, `ErrorType`, `ErrorTextId`, `ScriptName`, `Comment`) VALUES +(22, 1, 27064, 0, 1, 29, 0, 25334, 5, 0, 0, 0, 0, '', 'Execute SAI only if there is Horde Siege Tank within 2 yards'); + + +UPDATE `creature_template` SET `npcflag`=16777216 WHERE `entry`=25334; + +DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId`=16 AND `SourceEntry`=25334; +INSERT INTO `conditions` (`SourceTypeOrReferenceId`, `SourceGroup`, `SourceEntry`, `SourceId`, `ElseGroup`, `ConditionTypeOrReference`, `ConditionTarget`, `ConditionValue1`, `ConditionValue2`, `ConditionValue3`, `NegativeCondition`, `ErrorType`, `ErrorTextId`, `ScriptName`, `Comment`) VALUES +(16, 0, 25334, 0, 0, 23, 0, 4027, 0, 0, 0, 0, 0, '', 'Horde Siege Tank (Vehicle) Allowed in Coast of Echoes'), +(16, 0, 25334, 0, 1, 23, 0, 4130, 0, 0, 0, 0, 0, '', 'Horde Siege Tank (Vehicle) Allowed in Plains of Nasam'); + +DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId`=18 AND `SourceGroup`=25334; +INSERT INTO `conditions` (`SourceTypeOrReferenceId`, `SourceGroup`, `SourceEntry`, `SourceId`, `ElseGroup`, `ConditionTypeOrReference`, `ConditionTarget`, `ConditionValue1`, `ConditionValue2`, `ConditionValue3`, `NegativeCondition`, `ErrorType`, `ErrorTextId`, `ScriptName`, `Comment`) VALUES +(18, 25334, 46598, 0, 0, 9, 0, 11652, 0, 0, 0, 0, 0, '', 'Player must have The Plains of Nasam taken but not completed to use Horde Siege tank'); + +DELETE FROM `creature_template_addon` WHERE `entry` IN(25334,27064); +INSERT INTO `creature_template_addon` (`entry`, `mount`, `bytes1`, `bytes2`, `auras`) VALUES +(25334, 0, 0x0, 0x101, ''), -- 25334 +(27064, 0, 0x0, 0x1, '50162'); -- 27064 - 50162 + +-- Updated 14-06-22 - Kinzcool +DELETE FROM `creature_text` WHERE `entry`=25334; +INSERT INTO `creature_text` (`entry`, `groupid`, `id`, `text`, `type`, `language`, `probability`, `emote`, `duration`, `sound`, `comment`, `BroadcastTextID`) VALUES +(25334, 0, 0, '%s gains fuel.', 41, 0, 100, 0, 0, 0, 'Horde Siege Tank', 26171); + +DELETE FROM `spell_linked_spell` WHERE `spell_trigger`=45750; +INSERT INTO `spell_linked_spell` (`spell_trigger`, `spell_effect`, `type`, `comment`) VALUES +(45750, 45749, 0, 'Land Mine Barrier'), -- Front +(45750, 45751, 0, 'Land Mine Barrier'), -- Front, Right +(45750, 45752, 0, 'Land Mine Barrier'), -- Front, Left +(45750, 45753, 0, 'Land Mine Barrier'), -- Back +(45750, 45754, 0, 'Land Mine Barrier'), -- Back, Left +(45750, 45755, 0, 'Land Mine Barrier'), -- Back, Right +(45750, 45756, 0, 'Land Mine Barrier'), -- Left +(45750, 47839, 0, 'Land Mine Barrier'); -- Right + +DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId`=13 AND `SourceEntry`IN(50674); +INSERT INTO `conditions` (`SourceTypeOrReferenceId`, `SourceGroup`, `SourceEntry`, `SourceId`, `ElseGroup`, `ConditionTypeOrReference`, `ConditionTarget`, `ConditionValue1`, `ConditionValue2`, `ConditionValue3`, `NegativeCondition`, `ErrorType`, `ErrorTextId`, `ScriptName`, `Comment`) VALUES +(13, 1, 50674, 0, 0, 31, 0, 3, 0, 0, 0, 0, 0, '', 'The Demoralizer only hits unit'), +(13, 1, 50674, 0, 0, 31, 0, 3, 25334, 0, 1, 0, 0, '', 'The Demoralizer does not hit horde siege tank'); diff --git a/sql/updates/world/2014_06_22_04_world_misc.sql b/sql/updates/world/2014_06_22_04_world_misc.sql new file mode 100644 index 00000000000..f9cf3e0e2a9 --- /dev/null +++ b/sql/updates/world/2014_06_22_04_world_misc.sql @@ -0,0 +1,8 @@ +-- +UPDATE `creature_template` SET `ainame`='SmartAI' WHERE `entry` IN (18734,18735,18736,18737); +DELETE FROM `smart_scripts` WHERE `entryorguid` IN (18734,18735,18736,18737) AND `source_type`=0; +INSERT INTO `smart_scripts` (`entryorguid`, `source_type`, `id`, `link`, `event_type`, `event_phase_mask`, `event_chance`, `event_flags`, `event_param1`, `event_param2`, `event_param3`, `event_param4`, `action_type`, `action_param1`, `action_param2`, `action_param3`, `action_param4`, `action_param5`, `action_param6`, `target_type`, `target_param1`, `target_param2`, `target_param3`, `target_x`, `target_y`, `target_z`, `target_o`, `comment`) VALUES +(18734,0,0,0,1,0,100,0,0,0,0,0,11,32787,0,0,0,0,0,23,0,0,0,0,0,0,0,'Coarse Stone Statue - OOC - Cast ''Stone Healing'''), +(18735,0,0,0,1,0,100,0,0,0,0,0,11,32788,0,0,0,0,0,23,0,0,0,0,0,0,0,'Heavy Stone Statue - OOC - Cast ''Stone Healing'''), +(18736,0,0,0,1,0,100,0,0,0,0,0,11,32790,0,0,0,0,0,23,0,0,0,0,0,0,0,'Solid Stone Statue - OOC - Cast ''Stone Healing'''), +(18737,0,0,0,1,0,100,0,0,0,0,0,11,32791,0,0,0,0,0,23,0,0,0,0,0,0,0,'Dense Stone Statue - OOC - Cast ''Stone Healing'''); diff --git a/sql/updates/world/2014_06_22_05_world_misc.sql b/sql/updates/world/2014_06_22_05_world_misc.sql new file mode 100644 index 00000000000..72bb111cfce --- /dev/null +++ b/sql/updates/world/2014_06_22_05_world_misc.sql @@ -0,0 +1,13 @@ +-- +UPDATE `creature_template` SET `AIName` = 'SmartAI',`npcflag`=`npcflag`|1 WHERE `entry` =26809; + +DELETE FROM `smart_scripts` WHERE `entryorguid`=26809 AND `event_type`IN (25,61,64); +INSERT INTO `smart_scripts` (`entryorguid`, `source_type`, `id`, `link`, `event_type`, `event_phase_mask`, `event_chance`, `event_flags`, `event_param1`, `event_param2`, `event_param3`, `event_param4`, `action_type`, `action_param1`, `action_param2`, `action_param3`, `action_param4`, `action_param5`, `action_param6`, `target_type`, `target_param1`, `target_param2`, `target_param3`, `target_x`, `target_y`, `target_z`, `target_o`, `comment`) VALUES +(26809, 0, 0, 0, 25, 0, 100, 0, 0, 0, 0, 0, 11, 31261, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'Ravaged Crystalline Ice Giant - On Spawn - Cast Permanent Feign Death (Root) on self'), +(26809, 0, 1, 2, 64, 0, 100, 0, 0, 0, 0, 0, 56, 36765, 1, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 'Ravaged Crystalline Ice Giant - On Hello - Add Sample of Rockflesh'), +(26809, 0, 2, 0, 61, 0, 100, 0, 0, 0, 0, 0, 72, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 'Ravaged Crystalline Ice Giant - Linked with Previous Event - Close Gossip'), +(26809, 0, 3, 0, 64, 0, 100, 0, 0, 0, 0, 0, 72, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 'Ravaged Crystalline Ice Giant - Linked with Previous Event - Close Gossip - On No quest or complete'); + +DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId`=22 AND `SourceEntry` =26809; +INSERT INTO `conditions` (`SourceTypeOrReferenceId`,`SourceGroup`,`SourceEntry`,`SourceId`,`ElseGroup`,`ConditionTypeOrReference`,`ConditionTarget`,`ConditionValue1`,`ConditionValue2`,`ConditionValue3`,`NegativeCondition`,`ErrorTextId`,`ScriptName`,`Comment`) VALUES +(22,2,26809,0,0,9,0,12075,0,0,0,0,'','Ravaged Crystalline Ice Giant - Add Sample of Rockflesh only if player is on and has not completed slim pickings'); diff --git a/sql/updates/world/2014_06_22_06_world_misc.sql b/sql/updates/world/2014_06_22_06_world_misc.sql new file mode 100644 index 00000000000..207072a6989 --- /dev/null +++ b/sql/updates/world/2014_06_22_06_world_misc.sql @@ -0,0 +1,6 @@ +-- +UPDATE `creature_template` SET `npcflag`=`npcflag`|1 WHERE `entry`=29344; + +DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId`=15 AND `SourceGroup`=9806; +INSERT INTO `conditions` (`SourceTypeOrReferenceId`, `SourceGroup`, `SourceEntry`, `SourceId`, `ElseGroup`, `ConditionTypeOrReference`, `ConditionTarget`, `ConditionValue1`, `ConditionValue2`, `ConditionValue3`, `NegativeCondition`, `ErrorType`, `ErrorTextId`, `ScriptName`, `Comment`) VALUES +(15,9806,0,0,0,9,0,12807,0,0,0,0,0,'','Show gossip menu option only if player has quest(12807) ''The Story Thus Far...'''); diff --git a/sql/updates/world/2014_06_22_07_world_misc.sql b/sql/updates/world/2014_06_22_07_world_misc.sql new file mode 100644 index 00000000000..9ff6a15e0af --- /dev/null +++ b/sql/updates/world/2014_06_22_07_world_misc.sql @@ -0,0 +1,62 @@ +-- Assign queststarter +DELETE FROM `creature_queststarter` WHERE `id`=39675 AND `quest`=25199; +INSERT INTO `creature_queststarter` (`id`, `quest`) VALUES +(39675,25199); + +-- Assign questender +DELETE FROM `creature_questender` WHERE `id`=39675 AND `quest`=25199; +INSERT INTO `creature_questender` (`id`, `quest`) VALUES +(39675,25199); + +-- Update creatures to use SAI +UPDATE `creature_template` SET `ainame`='SmartAI' WHERE `entry` IN (39349,39368); + +-- Gnomeregan Trainee SAI +DELETE FROM `smart_scripts` WHERE `entryorguid`=39349 AND `source_type`=0; +INSERT INTO `smart_scripts` (`entryorguid`, `source_type`, `id`, `link`, `event_type`, `event_phase_mask`, `event_chance`, `event_flags`, `event_param1`, `event_param2`, `event_param3`, `event_param4`, `action_type`, `action_param1`, `action_param2`, `action_param3`, `action_param4`, `action_param5`, `action_param6`, `target_type`, `target_param1`, `target_param2`, `target_param3`, `target_x`, `target_y`, `target_z`, `target_o`, `comment`) VALUES +(39349,0,0,0,38,0,100,0,0,1,0,0,5,66,0,0,0,0,0,1,0,0,0,0,0,0,0,'Gnomeregan Trainee - On Data 0 1 Set - Emote Salute'), +(39349,0,1,0,38,0,100,0,0,2,0,0,5,15,0,0,0,0,0,1,0,0,0,0,0,0,0,'Gnomeregan Trainee - On Data 0 2 Set - Emote Roar'), +(39349,0,2,0,38,0,100,0,0,3,0,0,5,4,0,0,0,0,0,1,0,0,0,0,0,0,0,'Gnomeregan Trainee - On Data 0 3 Set - Emote Cheer'), +(39349,0,3,0,38,0,100,0,0,4,0,0,5,94,0,0,0,0,0,1,0,0,0,0,0,0,0,'Gnomeregan Trainee - On Data 0 4 Set - Emote Dance'), +(39349,0,4,0,38,0,100,0,0,5,0,0,5,0,0,0,0,0,0,1,0,0,0,0,0,0,0,'Gnomeregan Trainee - On Data 0 5 Set - Emote None'); + +-- Drill Sergeant Steamcrank SAI +DELETE FROM `smart_scripts` WHERE `entryorguid`=39368 AND `source_type`=0; +INSERT INTO `smart_scripts` (`entryorguid`, `source_type`, `id`, `link`, `event_type`, `event_phase_mask`, `event_chance`, `event_flags`, `event_param1`, `event_param2`, `event_param3`, `event_param4`, `action_type`, `action_param1`, `action_param2`, `action_param3`, `action_param4`, `action_param5`, `action_param6`, `target_type`, `target_param1`, `target_param2`, `target_param3`, `target_x`, `target_y`, `target_z`, `target_o`, `comment`) VALUES +(39368,0,0,0,11,0,100,0,0,0,0,0,1,0,4000,0,0,0,0,1,0,0,0,0,0,0,0,'Drill Sergeant Steamcrank - On Respawn - Say Line 0'), +(39368,0,1,0,52,0,100,0,0,39368,0,0,1,1,3000,0,0,0,0,1,0,0,0,0,0,0,0,'Drill Sergeant Steamcrank - On Text Over - Say Line 1'), +(39368,0,2,0,52,0,100,0,1,39368,0,0,1,2,3000,0,0,0,0,1,0,0,0,0,0,0,0,'Drill Sergeant Steamcrank - On Text Over - Say Line 2'), +(39368,0,3,0,52,0,100,0,2,39368,0,0,1,3,4000,0,0,0,0,1,0,0,0,0,0,0,0,'Drill Sergeant Steamcrank - On Text Over - Say Line 3'), +(39368,0,4,5,52,0,100,0,3,39368,0,0,1,4,6000,0,0,0,0,1,0,0,0,0,0,0,0,'Drill Sergeant Steamcrank - On Text Over - Say Line 4'), +(39368,0,5,6,61,0,100,0,0,0,0,0,45,0,1,0,0,0,0,11,39349,30,0,0,0,0,0,'Drill Sergeant Steamcrank - Link With Previous - Set data 0 1'), +(39368,0,6,0,61,0,100,0,0,0,0,0,22,1,0,0,0,0,0,1,0,0,0,0,0,0,0,'Drill Sergeant Steamcrank - Link With Previous - Set Phase 1'), +(39368,0,7,0,22,1,100,0,78,0,0,0,11,73771,2,0,0,0,0,7,0,0,0,0,0,0,0,'Drill Sergeant Steamcrank - Emote Received ''Salute'' - Cast ''[DND] Salute Quest Credit'' (phase 1)'), +(39368,0,8,9,52,0,100,0,4,39368,0,0,1,5,4000,0,0,0,0,1,0,0,0,0,0,0,0,'Drill Sergeant Steamcrank - On Text Over - Say Line 5'), +(39368,0,9,0,61,0,100,0,0,0,0,0,22,5,0,0,0,0,0,1,0,0,0,0,0,0,0,'Drill Sergeant Steamcrank - Link With Previous - Set Phase 5'), +(39368,0,10,0,52,0,100,0,5,39368,0,0,1,6,4000,0,0,0,0,1,0,0,0,0,0,0,0,'Drill Sergeant Steamcrank - On Text Over - Say Line 6'), +(39368,0,11,0,52,0,100,0,6,39368,0,0,1,7,4000,0,0,0,0,1,0,0,0,0,0,0,0,'Drill Sergeant Steamcrank - On Text Over - Say Line 7'), +(39368,0,12,13,52,0,100,0,7,39368,0,0,1,8,6000,0,0,0,0,1,0,0,0,0,0,0,0,'Drill Sergeant Steamcrank - On Text Over - Say Line 8'), +(39368,0,13,14,61,0,100,0,0,0,0,0,45,0,2,0,0,0,0,11,39349,30,0,0,0,0,0,'Drill Sergeant Steamcrank - Link With Previous - Set data 0 2'), +(39368,0,14,0,61,0,100,0,0,0,0,0,22,2,0,0,0,0,0,1,0,0,0,0,0,0,0,'Drill Sergeant Steamcrank - Link With Previous - Set Phase 2'), +(39368,0,15,0,22,2,100,0,75,0,0,0,11,73832,2,0,0,0,0,7,0,0,0,0,0,0,0,'Drill Sergeant Steamcrank - Emote Received ''Roar'' - Cast ''[DND] Cheer Quest Credit'' (phase 2)'), +(39368,0,16,17,52,0,100,0,8,39368,0,0,1,9,4000,0,0,0,0,1,0,0,0,0,0,0,0,'Drill Sergeant Steamcrank - On Text Over - Say Line - Say Line 9'), +(39368,0,17,0,61,0,100,0,0,0,0,0,22,5,0,0,0,0,0,1,0,0,0,0,0,0,0,'Drill Sergeant Steamcrank - Link With Previous - Set Phase 5'), +(39368,0,18,0,52,0,100,0,9,39368,0,0,1,10,4000,0,0,0,0,1,0,0,0,0,0,0,0,'Drill Sergeant Steamcrank - On Text Over - Say Line 10'), +(39368,0,19,0,52,0,100,0,10,39368,0,0,1,11,4000,0,0,0,0,1,0,0,0,0,0,0,0,'Drill Sergeant Steamcrank - On Text Over - Say Line 11'), +(39368,0,20,21,52,0,100,0,11,39368,0,0,1,12,6000,0,0,0,0,1,0,0,0,0,0,0,0,'Drill Sergeant Steamcrank - On Text Over - Say Line 12'), +(39368,0,21,22,61,0,100,0,0,0,0,0,22,3,0,0,0,0,0,1,0,0,0,0,0,0,0,'Drill Sergeant Steamcrank - Link With Previous - Set Phase 3'), +(39368,0,22,0,61,0,100,0,0,0,0,0,45,0,3,0,0,0,0,11,39349,30,0,0,0,0,0,'Drill Sergeant Steamcrank - Link With Previous - Set data 0 3'), +(39368,0,23,0,22,4,100,0,21,0,0,0,11,73833,2,0,0,0,0,7,0,0,0,0,0,0,0,'Drill Sergeant Steamcrank - Emote Received ''Cheer'' - Cast ''[DND] Cheer Quest Credit'' (phase 3)'), +(39368,0,24,25,52,0,100,0,12,39368,0,0,1,13,4000,0,0,0,0,1,0,0,0,0,0,0,0,'Drill Sergeant Steamcrank - On Text Over - Say Line 13'), +(39368,0,25,0,61,0,100,0,0,0,0,0,22,5,0,0,0,0,0,1,0,0,0,0,0,0,0,'Drill Sergeant Steamcrank - Link With Previous - Set Phase 5'), +(39368,0,26,0,52,0,100,0,13,39368,0,0,1,14,4000,0,0,0,0,1,0,0,0,0,0,0,0,'Drill Sergeant Steamcrank - On Text Over - Say Line 14'), +(39368,0,27,0,52,0,100,0,14,39368,0,0,1,15,4000,0,0,0,0,1,0,0,0,0,0,0,0,'Drill Sergeant Steamcrank - On Text Over - Say Line 15'), +(39368,0,28,29,52,0,100,0,15,39368,0,0,1,16,6000,0,0,0,0,1,0,0,0,0,0,0,0,'Drill Sergeant Steamcrank - On Text Over - Say Line 16'), +(39368,0,29,30,61,0,100,0,0,0,0,0,45,0,4,0,0,0,0,11,39349,30,0,0,0,0,0,'Drill Sergeant Steamcrank - Link With Previous - Set data 0 4'), +(39368,0,30,0,61,0,100,0,0,0,0,0,22,4,0,0,0,0,0,1,0,0,0,0,0,0,0,'Drill Sergeant Steamcrank - Link With Previous - Set Phase 4'), +(39368,0,31,32,52,0,100,0,16,39368,0,0,1,17,4000,0,0,0,0,1,0,0,0,0,0,0,0,'Drill Sergeant Steamcrank - On Text Over - Say Line 17'), +(39368,0,32,33,61,0,100,0,0,0,0,0,22,5,0,0,0,0,0,1,0,0,0,0,0,0,0,'Drill Sergeant Steamcrank - Link With Previous - Set Phase 5'), +(39368,0,33,0,61,0,100,0,0,0,0,0,45,0,5,0,0,0,0,11,39349,30,0,0,0,0,0,'Drill Sergeant Steamcrank - Link With Previous - Set data 0 5'), +(39368,0,34,0,22,8,100,0,34,0,0,0,11,73830,2,0,0,0,0,7,0,0,0,0,0,0,0,'Drill Sergeant Steamcrank - Emote Received ''Dance'' - Cast ''[DND] Dance Quest Credit'' (phase 4)'), +(39368,0,35,0,52,0,100,0,17,39368,0,0,1,18,4000,0,0,0,0,1,0,0,0,0,0,0,0,'Drill Sergeant Steamcrank - On Text Over - Say Line 18'), +(39368,0,36,0,52,0,100,0,18,39368,0,0,1,0,4000,0,0,0,0,1,0,0,0,0,0,0,0,'Drill Sergeant Steamcrank - On Text Over - Say Line 0'); diff --git a/sql/updates/world/2014_06_22_08_world_misc.sql b/sql/updates/world/2014_06_22_08_world_misc.sql new file mode 100644 index 00000000000..79b020b4dc4 --- /dev/null +++ b/sql/updates/world/2014_06_22_08_world_misc.sql @@ -0,0 +1,48 @@ +SET @GUID := 68282; -- Needs 3 + +-- Add Ahn'kahar Watcher's Corpse to heroic loot for Ahn'kahar Watcher +DELETE FROM `creature_loot_template` WHERE `entry`=31449 AND `item`=43494; +INSERT INTO `creature_loot_template` (`entry`, `item`, `ChanceOrQuestChance`, `lootmode`, `groupid`, `mincountOrRef`, `maxcount`) VALUES +(31449, 43494, 100, 1, 0, 1, 1); -- Ahn'kahar Watcher's Corpse + +-- Condition to ensure item only drops if player on quest since we cant use negative chance here since item is not requirement to complete quest +DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId`=1 AND `SourceGroup`=31449 AND `SourceEntry`=43494; +INSERT INTO `conditions` (`SourceTypeOrReferenceId`, `SourceGroup`, `SourceEntry`, `SourceId`, `ElseGroup`, `ConditionTypeOrReference`, `ConditionTarget`, `ConditionValue1`, `ConditionValue2`, `ConditionValue3`, `NegativeCondition`, `ErrorType`, `ErrorTextId`, `ScriptName`, `Comment`) VALUES +(1, 31449, 43494, 0, 1, 9, 0, 13190, 0, 0, 0, 0, 0, '', 'Ahn kahar Watchers Corpse drops if player has taken (13190) All Things in Good Time'); + +-- Add Ahn'kahet Brazier KC Bunny and Ahn'Kahar Watchers +DELETE FROM `creature` WHERE `guid` BETWEEN @GUID AND @GUID+2; +INSERT INTO `creature` (`guid`, `id`, `map`, `spawnMask`, `phaseMask`, `position_x`, `position_y`, `position_z`, `orientation`, `spawntimesecs`, `spawndist`, `MovementType`) VALUES +(@GUID, 31105, 619, 3, 173, 520.7055, -352.9016, 47.92243, 2.234021, 7200, 0, 0), -- 31105 (Area: 4627) +(@GUID+1, 31104, 619, 3, 1, 454.1534, -1024.992, 30.43521, 5.218534, 7200, 5, 1), -- 31104 (Area: 4623) (possible waypoints or random movement) +(@GUID+2, 31104, 619, 3, 1, 460.0319, -1034.93, 30.33384, 1.972222, 7200, 5, 1); -- 31104 (Area: 4623) (possible waypoints or random movement) + +UPDATE `creature_template` SET `flags_extra`=130 WHERE `entry`=31105; +DELETE FROM `creature_template_addon` WHERE `entry` =31104; +INSERT INTO `creature_template_addon` (`entry`, `mount`, `bytes1`, `bytes2`, `auras`) VALUES +(31104, 0, 0x0, 0x1, '18950'); -- 31104 - 18950 + +-- Condition for spellhit +DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId`=13 AND `SourceEntry`IN(58515); +INSERT INTO `conditions` (`SourceTypeOrReferenceId`, `SourceGroup`, `SourceEntry`, `SourceId`, `ElseGroup`, `ConditionTypeOrReference`, `ConditionTarget`, `ConditionValue1`, `ConditionValue2`, `ConditionValue3`, `NegativeCondition`, `ErrorType`, `ErrorTextId`, `ScriptName`, `Comment`) VALUES +(13, 1, 58515, 0, 0, 31, 0, 3, 31105, 0, 0, 0, 0, '', 'Burn Corpse hits Ahn kahet Brazier KC Bunny'); + +-- Script for Ahn'kahet Brazier KC Bunny +UPDATE `creature_template` SET `ainame`='SmartAI' WHERE `entry` =31105; +DELETE FROM `smart_scripts` WHERE `entryorguid` =31105 AND `source_type`=0; +INSERT INTO `smart_scripts` (`entryorguid`, `source_type`, `id`, `link`, `event_type`, `event_phase_mask`, `event_chance`, `event_flags`, `event_param1`, `event_param2`, `event_param3`, `event_param4`, `action_type`, `action_param1`, `action_param2`, `action_param3`, `action_param4`, `action_param5`, `action_param6`, `target_type`, `target_param1`, `target_param2`, `target_param3`, `target_x`, `target_y`, `target_z`, `target_o`, `comment`) VALUES +(31105,0,0,1,8,0,100,4,58515,0,0,0,11,58518,2,0,0,0,0,16,0,0,0,0,0,0,0,'Ahn kahet Brazier KC Bunny - On Spell Hit (Burn Corpse) - Give Quest Credit (Heroic Only)'), +(31105,0,1,0,61,0,100,4,0,0,0,0,11,58522,2,0,0,0,0,1,0,0,0,0,0,0,0,'Ahn kahet Brazier KC Bunny - Linked with Previous Event - Cast Ahn kahet Brazier Effect'); + +-- Script for Ahn'Kahar Watcher +DELETE FROM `smart_scripts` WHERE `entryorguid`=31104 AND `source_type`=0; +UPDATE creature_template SET AIName="SmartAI" WHERE entry =31104; +INSERT INTO `smart_scripts` (`entryorguid`, `source_type`, `id`, `link`, `event_type`, `event_phase_mask`, `event_chance`, `event_flags`, `event_param1`, `event_param2`, `event_param3`, `event_param4`, `action_type`, `action_param1`, `action_param2`, `action_param3`, `action_param4`, `action_param5`, `action_param6`, `target_type`, `target_param1`, `target_param2`, `target_param3`, `target_x`, `target_y`, `target_z`, `target_o`, `comment`) VALUES +(31104, 0, 0, 0, 9, 0, 100, 0, 0, 5, 14000, 17000, 11, 42746, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 'Ahn kahar Watcher - In Combat - Cast Cleave'), +(31104, 0, 1, 0, 0, 0, 100, 0, 9000, 12000, 15000, 18000, 11, 56643, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'Ahn kahar Watcher - In Combat - Cast Triple Slash'), +(31104, 0, 2, 0, 2, 0, 100, 0, 0, 30, 8000, 10000, 11, 56646, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'Ahn kahar Watcher - Between 0-30% Health - Cast Enrage'); + +DELETE FROM `disables` WHERE `sourceType`=0 AND `entry`IN(58515,58518); +INSERT INTO `disables` (`sourceType`, `entry`, `flags`, `params_0`, `params_1`, `comment`) VALUES +(0, 58515, 64, '', '', 'Ignore LOS on Burn Corpse'), +(0, 58518, 64, '', '', 'Ignore LOS on Ahn kahet Brazier Kill Credit'); diff --git a/sql/updates/world/2014_06_22_09_world_misc.sql b/sql/updates/world/2014_06_22_09_world_misc.sql new file mode 100644 index 00000000000..794b6a33268 --- /dev/null +++ b/sql/updates/world/2014_06_22_09_world_misc.sql @@ -0,0 +1,90 @@ +-- +UPDATE `creature_template` SET `AIName`='SmartAI' WHERE `entry` IN (29368, 29801, 30152); + +DELETE FROM `smart_scripts` WHERE `entryorguid` IN (29368, 29801, 30152, 2936800, 2980100, 3015200); +INSERT INTO `smart_scripts` (`entryorguid`, `source_type`, `id`, `link`, `event_type`, `event_phase_mask`, `event_chance`, `event_flags`, `event_param1`, `event_param2`, `event_param3`, `event_param4`, `action_type`, `action_param1`, `action_param2`, `action_param3`, `action_param4`, `action_param5`, `action_param6`, `target_type`, `target_param1`, `target_param2`, `target_param3`, `target_x`, `target_y`, `target_z`, `target_o`, `comment`) VALUES +(29368, 0, 0, 0, 4, 0, 100, 1, 0, 0, 0, 0, 22, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'Set Phase 1 on Aggro'), +(29368, 0, 1, 0, 4, 1, 100, 1, 0, 0, 0, 0, 21, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'Stop Moving on Aggro'), +(29368, 0, 2, 0, 4, 1, 100, 1, 0, 0, 0, 0, 11, 56326, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 'Cast bolt on Aggro'), +(29368, 0, 3, 0, 9, 1, 100, 0, 0, 40, 3400, 4700, 11, 56326, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 'Cast bolt'), +(29368, 0, 4, 0, 9, 1, 100, 0, 40, 100, 0, 0, 21, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'Start Moving when not in bolt Range'), +(29368, 0, 5, 0, 9, 1, 100, 0, 10, 15, 0, 0, 21, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'Stop Moving at 15 Yards'), +(29368, 0, 6, 0, 9, 1, 100, 0, 0, 40, 0, 0, 21, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'Stop Moving when in bolt Range'), +(29368, 0, 7, 0, 3, 1, 100, 0, 0, 15, 0, 0, 22, 2, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'Set Phase 2 at 15% Mana'), +(29368, 0, 8, 0, 3, 2, 100, 0, 0, 15, 0, 0, 21, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'Start Moving at 15% Mana'), +(29368, 0, 9, 0, 3, 2, 100, 0, 30, 100, 100, 100, 22, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'Set Phase 1 When Mana is above 30%'), +(29368, 0, 10, 0, 0, 1, 100, 0, 15000, 18000, 29000, 33000, 11, 56322, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'Cast Spark Frenzy'), +(29368, 0, 11, 0, 0, 1, 100, 0, 3000, 8000, 23000, 26000, 11, 56319, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 'Cast Ball Lightning'), +(29368, 0, 12, 13, 8, 0, 100, 0, 56189, 0, 0, 0, 11, 44762, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 'On spellhit - Cast Camera Shake'), +(29368, 0, 13, 14, 61, 0, 100, 0, 0, 0, 0, 0, 28, 56220, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'On link - Remove aura'), +(29368, 0, 14, 0, 61, 0, 100, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'On link - Stop emote'), +(29368, 0, 15, 0, 38, 0, 100, 0, 0, 1, 0, 0, 80, 2936800, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'On data - Run script'), +(29368, 0, 16, 0, 25, 0, 100, 0, 0, 0, 0, 0, 60, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'On Reset - Set fly'), +(29368, 0, 17, 18, 6, 0, 100, 0, 0, 0, 0, 0, 45, 1, 1, 0, 0, 0, 0, 11, 29801, 20, 0, 0, 0, 0, 0, 'On Death - Set data'), +(29368, 0, 18, 0, 61, 0, 100, 0, 0, 0, 0, 0, 45, 1, 1, 0, 0, 0, 0, 11, 30152, 20, 0, 0, 0, 0, 0, 'On link - Set data'), +(2936800, 9, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'Timed - Talk'), +(2936800, 9, 1, 0, 0, 0, 100, 0, 4000, 4000, 4000, 4000, 1, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'Timed - Talk'), +(2936800, 9, 2, 0, 0, 0, 100, 0, 5000, 5000, 5000, 5000, 60, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'Timed - Remove hover'), +(2936800, 9, 3, 0, 0, 0, 100, 0, 0, 0, 0, 0, 11, 61361, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'Timed - Cast teleport'), +(2936800, 9, 4, 0, 0, 0, 100, 0, 0, 0, 0, 0, 99, 3, 0, 0, 0, 0, 0, 20, 191510, 10, 0, 0, 0, 0, 0, 'Timed - Set gob state'), +(2936800, 9, 5, 0, 0, 0, 100, 0, 0, 0, 0, 0, 2, 2102, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'Timed - Set faction'), +(2936800, 9, 6, 0, 0, 0, 100, 0, 1000, 1000, 1000, 1000, 19, 768, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'Timed - Remove flags'), +(29801, 0, 0, 0, 2, 0, 100, 1, 0, 30, 0, 0, 11, 56330, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'Cast Iron''s Bane at 30% HP'), +(29801, 0, 1, 2, 54, 0, 100, 0, 0, 0, 0, 0, 53, 0, 29801, 0, 12984, 0, 2, 1, 0, 0, 0, 0, 0, 0, 0, 'On summoned - Start WP'), +(29801, 0, 2, 0, 61, 0, 100, 0, 0, 0, 0, 0, 83, 3, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'On link - Remove npc flags'), +(29801, 0, 3, 4, 58, 0, 100, 0, 0, 0, 0, 0, 66, 2, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'On WP end - Set orientation'), +(29801, 0, 4, 0, 61, 0, 100, 0, 0, 0, 0, 0, 80, 2980100, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'On link - Start script'), +(29801, 0, 5, 6, 38, 0, 100, 0, 1, 1, 0, 0, 41, 1000, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'On data - Despawn'), +(29801, 0, 6, 0, 61, 0, 100, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'On data - Talk'), +(2980100, 9, 0, 0, 0, 0, 100, 0, 1000, 1000, 1000, 1000, 1, 0, 2000, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'Timed - Talk'), +(2980100, 9, 1, 0, 0, 0, 100, 0, 4000, 4000, 4000, 4000, 17, 333, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'Timed - Play emote'), +(2980100, 9, 2, 0, 0, 0, 100, 0, 0, 0, 0, 0, 2, 1770, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'Timed - Set faction'), +(2980100, 9, 3, 0, 0, 0, 100, 0, 0, 0, 0, 0, 45, 0, 1, 0, 0, 0, 0, 11, 30152, 20, 0, 0, 0, 0, 0, 'Timed - Set data'), +(30152, 0, 0, 1, 54, 0, 100, 0, 0, 0, 0, 0, 53, 0, 30152, 0, 12984, 0, 2, 1, 0, 0, 0, 0, 0, 0, 0, 'On summoned - Start WP'), +(30152, 0, 1, 0, 61, 0, 100, 0, 0, 0, 0, 0, 83, 3, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'On link - Remove npc flags'), +(30152, 0, 2, 0, 58, 0, 100, 0, 0, 0, 0, 0, 66, 3, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'On summoned - Set orintation'), +(30152, 0, 3, 0, 38, 0, 100, 0, 0, 1, 0, 0, 80, 3015200, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'On data - Run script'), +(30152, 0, 4, 5, 38, 0, 100, 0, 1, 1, 0, 0, 41, 1000, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'On data - Despawn'), +(30152, 0, 5, 0, 61, 0, 100, 0, 0, 0, 0, 0, 1, 2, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'On link - Talk'), +(3015200, 9, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'Timed - Talk'), +(3015200, 9, 1, 0, 0, 0, 100, 0, 4000, 4000, 4000, 4000, 1, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'Timed - Talk'), +(3015200, 9, 2, 0, 0, 0, 100, 0, 2000, 2000, 2000, 2000, 17, 333, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'Timed - Play emote'), +(3015200, 9, 3, 0, 0, 0, 100, 0, 0, 0, 0, 0, 2, 1770, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'Timed - Set faction'), +(3015200, 9, 4, 0, 0, 0, 100, 0, 0, 0, 0, 0, 45, 0, 1, 0, 0, 0, 0, 11, 29368, 20, 0, 0, 0, 0, 0, 'Timed - Set data'); + +DELETE FROM `creature_text` WHERE `entry` IN (29368, 29801, 30152); +INSERT INTO `creature_text` (`entry`, `groupid`, `id`, `text`, `type`, `language`, `probability`, `emote`, `duration`, `sound`, `comment`, `BroadcastTextID`) VALUES +(29368, 0, 0, 'How predictable! But then, who would expect a rock to think like anything other than one?', 12, 0, 100, 11, 0, 0, '', 30895), +(29368, 1, 0, 'If you''re so eager to fight, I''ll oblige you. But know that nothing you do here can prevent the completion of the iron colossus!', 12, 0, 100, 274, 0, 0, '', 30896), +(29801, 0, 0, 'At last, the tyranny of the stormforged is at its end!', 12, 0, 100, 25, 0, 0, '', 30891), +(29801, 1, 0, 'We''ve defeated Valduran and we''ll fell his colossus.', 12, 0, 100, 0, 25, 0, '', 33052), +(30152, 0, 0, 'No more will your minions assail the creatures of stone and their allies.', 12, 0, 100, 1, 0, 0, '', 30893), +(30152, 1, 0, 'I am your doom, Valduran!', 12, 0, 100, 15, 0, 0, '', 30894), +(30152, 2, 0, 'Well fought! The day is ours, but the war goes on!', 12, 0, 100, 4, 0, 0, '', 33053); + +DELETE FROM `waypoints` WHERE `entry` IN (29801, 30152); +INSERT INTO `waypoints` (`entry`, `pointid`, `position_x`, `position_y`, `position_z`, `point_comment`) VALUES +(29801, 1, 7749.77, 77.0172, 1009.29, ''), +(29801, 2, 7729.19, 107.101, 1010.16, ''), +(29801, 3, 7725.79, 106.92, 1010.64, ''), +(30152, 1, 7752.48, 79.0734, 1009.24, ''), +(30152, 2, 7730.57, 108.277, 1010.05, ''), +(30152, 3, 7732.23, 111.521, 1010.64, ''); + +DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId`=13 AND `SourceEntry`=56189; +INSERT INTO `conditions` (`SourceTypeOrReferenceId`, `SourceGroup`, `SourceEntry`, `SourceId`, `ElseGroup`, `ConditionTypeOrReference`, `ConditionTarget`, `ConditionValue1`, `ConditionValue2`, `ConditionValue3`, `NegativeCondition`, `ErrorType`, `ErrorTextId`, `ScriptName`, `Comment`) VALUES +(13, 1, 56189, 0, 0, 31, 0, 3, 29368, 0, 0, 0, 0, '', 'Horn target Valduran'); + +DELETE FROM `creature_template_addon` WHERE `entry` =29368; +INSERT INTO `creature_template_addon` (`entry`, `path_id`, `mount`, `bytes1`, `bytes2`, `emote`, `auras`) VALUES +(29368, 0, 0, 0, 1, 382, '56220'); + +DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId`=22 AND `SourceEntry` IN (29801, 30152); +INSERT INTO `conditions` (`SourceTypeOrReferenceId`, `SourceGroup`, `SourceEntry`, `SourceId`, `ElseGroup`, `ConditionTypeOrReference`, `ConditionTarget`, `ConditionValue1`, `ConditionValue2`, `ConditionValue3`, `NegativeCondition`, `ErrorType`, `ErrorTextId`, `ScriptName`, `Comment`) VALUES +(22, 1, 29801, 0, 0, 23, 0, 4434, 0, 0, 0, 0, 0, '', 'execute sai only if npc in area Nidavelir(4434)'), +(22, 1, 30152, 0, 0, 23, 0, 4434, 0, 0, 0, 0, 0, '', 'execute sai only if npc in area Nidavelir(4434)'); + +DELETE FROM `event_scripts` WHERE `id`=19576; +INSERT INTO `event_scripts` (`id`, `delay`, `command`, `datalong`, `datalong2`, `dataint`, `x`, `y`,`z`,`o`) VALUES +(19576, 0, 10, 29801, 300000, 0, 7750.35, 76.9334, 1009.43, 1.69), +(19576, 0, 10, 30152, 300000, 0, 7752.38, 78.3693, 1009.43, 2.71); diff --git a/sql/updates/world/2014_06_22_10_world_spell_custom_attr.sql b/sql/updates/world/2014_06_22_10_world_spell_custom_attr.sql new file mode 100644 index 00000000000..07e702a7ecb --- /dev/null +++ b/sql/updates/world/2014_06_22_10_world_spell_custom_attr.sql @@ -0,0 +1,5 @@ +-- Fixes these two spells avoiding crit reduction +DELETE FROM `spell_custom_attr` WHERE `entry` IN (7268, 47666); +INSERT INTO `spell_custom_attr` (`entry`, `attributes`) VALUES +(7268, 4096), -- Arcane Missiles +(47666, 4096); -- penance damage diff --git a/sql/updates/world/2014_06_22_11_world_misc.sql b/sql/updates/world/2014_06_22_11_world_misc.sql new file mode 100644 index 00000000000..41100a23867 --- /dev/null +++ b/sql/updates/world/2014_06_22_11_world_misc.sql @@ -0,0 +1,28 @@ +-- +DELETE FROM `smart_scripts` WHERE `source_type`=1 AND `entryorguid`=190695; +DELETE FROM `smart_scripts` WHERE `source_type`=9 AND `entryorguid`=19069500; + +INSERT INTO `smart_scripts` (`entryorguid`, `source_type`, `id`, `link`, `event_type`, `event_phase_mask`, `event_chance`, `event_flags`, `event_param1`, `event_param2`, `event_param3`, `event_param4`, `action_type`, `action_param1`, `action_param2`, `action_param3`, `action_param4`, `action_param5`, `action_param6`, `target_type`, `target_param1`, `target_param2`, `target_param3`, `target_x`, `target_y`, `target_z`, `target_o`, `comment`) VALUES +(190695, 1, 0, 1, 70, 0, 100, 0, 2, 0, 0, 0, 64, 1, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 'Heb\'Jin\'s Drum - On state changed - Store targetlist'), +(190695, 1, 1, 0, 61, 0, 100, 0, 0, 0, 0, 0, 80, 19069500, 2, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'Heb\'Jin\'s Drum - Linked with Previous Event - Run Script'), +(19069500, 9, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 45, 1, 1, 0, 0, 0, 0, 10, 98562, 23837, 0, 0, 0,0,0, 'Heb\'Jin\'s Drum - Script - Set Data ELM General Purpose Bunny'), +(19069500, 9, 1, 0, 0, 0, 100, 0, 1000, 1000, 0, 0, 100, 1, 0, 0, 0, 0, 0, 19, 28636, 100, 0, 0, 0, 0, 0, 'Heb\'Jin\'s Drum - Script - Send Target list to heb jin'); + +UPDATE `smart_scripts` SET `action_param2`=2, `action_param3`=300000 WHERE `entryorguid`=2863600 AND `source_type`=9 AND `id`=3 AND `link`=0; +DELETE FROM `smart_scripts` WHERE `source_type`=0 AND `entryorguid`=28636 AND `id`=9; +DELETE FROM `smart_scripts` WHERE `source_type`=0 AND `entryorguid`=28639 AND `id`=10; +INSERT INTO `smart_scripts` (`entryorguid`, `source_type`, `id`, `link`, `event_type`, `event_phase_mask`, `event_chance`, `event_flags`, `event_param1`, `event_param2`, `event_param3`, `event_param4`, `action_type`, `action_param1`, `action_param2`, `action_param3`, `action_param4`, `action_param5`, `action_param6`, `target_type`, `target_param1`, `target_param2`, `target_param3`, `target_x`, `target_y`, `target_z`, `target_o`, `comment`) VALUES +(28636, 0, 9, 0, 7, 0, 100, 0, 0, 0, 0, 0, 41, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'Heb Jin - On Evade - Despawn'), +(28639, 0, 10, 0, 7, 0, 100, 0, 0, 0, 0, 0, 41, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'Heb Jins Bat - On Evade - Despawn'); + +DELETE FROM `event_scripts` WHERE `id`=18773; +DELETE FROM `smart_scripts` WHERE `source_type`=0 AND `entryorguid`=-98562; + +INSERT INTO `smart_scripts` (`entryorguid`, `source_type`, `id`, `link`, `event_type`, `event_phase_mask`, `event_chance`, `event_flags`, `event_param1`, `event_param2`, `event_param3`, `event_param4`, `action_type`, `action_param1`, `action_param2`, `action_param3`, `action_param4`, `action_param5`, `action_param6`, `target_type`, `target_param1`, `target_param2`, `target_param3`, `target_x`, `target_y`, `target_z`, `target_o`, `comment`) VALUES +(-98562, 0, 0, 1, 38, 0, 100, 0, 1, 1, 0, 0, 45, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'ELM General Purpose Bunny - On Data Set - Set Data'), +(-98562, 0, 1, 0, 61, 0, 100, 0, 1, 1, 0, 0, 12, 28636, 2, 300000, 0, 0, 0, 8, 0, 0, 0, 5988.71, -3878.04, 417.15, 2.35619, 'ELM General Purpose Bunny - Linked with Previous Event - Spawn Heb Jin'); + +DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId`=22 and `SourceId`=0 and `SourceEntry`=-98562; +INSERT INTO `conditions` (`SourceTypeOrReferenceId`, `SourceGroup`, `SourceEntry`, `SourceId`, `ElseGroup`, `ConditionTypeOrReference`, `ConditionTarget`, `ConditionValue1`, `ConditionValue2`, `ConditionValue3`, `NegativeCondition`, `ErrorType`, `ErrorTextId`, `ScriptName`, `Comment`) VALUES +(22, 1, -98562, 0, 0, 29, 1, 28636, 200, 0, 1, 0, 0, '', 'Only run SAI if no heb jin nearby'), +(22, 1, -98562, 0, 0, 29, 1, 28639, 200, 0, 1, 0, 0, '', 'Only run SAI if no heb jins bat nearby'); diff --git a/sql/updates/world/2014_06_22_12_world_misc.sql b/sql/updates/world/2014_06_22_12_world_misc.sql new file mode 100644 index 00000000000..7a5ca81bed4 --- /dev/null +++ b/sql/updates/world/2014_06_22_12_world_misc.sql @@ -0,0 +1,19 @@ +-- +UPDATE `creature_template` SET `AIName`='SmartAI' WHERE `entry` =28413; +DELETE FROM `smart_scripts` WHERE `entryorguid` =28413 AND `source_type`=0; +DELETE FROM `smart_scripts` WHERE `entryorguid` =2841300 AND `source_type`=9; +DELETE FROM `smart_scripts` WHERE `entryorguid` =2841301 AND `source_type`=9; +DELETE FROM `smart_scripts` WHERE `entryorguid` =2841302 AND `source_type`=9; + +INSERT INTO `smart_scripts` (`entryorguid`, `source_type`, `id`, `link`, `event_type`, `event_phase_mask`, `event_chance`, `event_flags`, `event_param1`, `event_param2`, `event_param3`, `event_param4`, `action_type`, `action_param1`, `action_param2`, `action_param3`, `action_param4`, `action_param5`, `action_param6`, `target_type`, `target_param1`, `target_param2`, `target_param3`, `target_x`, `target_y`, `target_z`, `target_o`, `comment`) VALUES +(28413, 0, 0, 1, 11, 0, 100, 1, 0, 0, 0, 0, 21, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'Nerubian Cocoon - On Respawn - Disable Combat Movement (No Repeat)'), +(28413, 0, 1, 2, 61, 0, 100, 0, 0, 0, 0, 0, 18, 2097152, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'Nerubian Cocoon - On Respawn - Set Flag Disarmed (No Repeat)'), +(28413, 0, 2, 0, 61, 0, 100, 0, 0, 0, 0, 0, 42, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'Nerubian Cocoon - On Respawn - Set Invincibility HP'), +(28413, 0, 3, 0, 4, 0, 100, 0, 0, 0, 0, 0, 64, 1, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 'Nerubian Cocoon - On Death - Store Target List (No Repeat)'), +(28413, 0, 4, 0, 2, 0, 100, 1, 0, 2, 0, 0, 87, 2841300, 2841301, 2841300, 2841302, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'Nerubian Cocoon - On Death - Run Random Script (No Repeat)'), +(2841300, 9, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 11, 51599, 2, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'Nerubian Cocoon - Script 1 - Cast Summon Captive Footman'), +(2841300, 9, 1, 0, 0, 0, 100, 0, 0, 0, 0, 0, 33, 28415, 0, 0, 0, 0, 0, 12, 1, 0, 0, 0, 0, 0, 0, 'Nerubian Cocoon - Script 1 - Give Kill Cedit'), +(2841300, 9, 2, 0, 0, 0, 100, 0, 0, 0, 0, 0, 41, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'Nerubian Cocoon - Script 1 - Despawn'), +(2841301, 9, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 11, 51597, 2, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'Nerubian Cocoon - Script 2 - Cast Summon Summon Scourged Captive'), +(2841301, 9, 1, 0, 0, 0, 100, 0, 0, 0, 0, 0, 41, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'Nerubian Cocoon - Script 2 - Despawn'), +(2841302, 9, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 41, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'Nerubian Cocoon - Script 3 - Despawn'); diff --git a/sql/updates/world/2014_06_22_13_world_misc.sql b/sql/updates/world/2014_06_22_13_world_misc.sql new file mode 100644 index 00000000000..18515f6c707 --- /dev/null +++ b/sql/updates/world/2014_06_22_13_world_misc.sql @@ -0,0 +1,19 @@ +-- +DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId`=22 AND `SourceEntry`=23689; +INSERT INTO `conditions` (`SourceTypeOrReferenceId`, `SourceGroup`, `SourceEntry`, `SourceId`, `ElseGroup`, `ConditionTypeOrReference`, `ConditionTarget`, `ConditionValue1`, `ConditionValue2`, `ConditionValue3`, `NegativeCondition`, `ErrorType`, `ErrorTextId`, `ScriptName`, `Comment`) VALUES +(22, 4, 23689, 0, 0, 29, 1, 24170, 75, 0, 0, 0, 0, '', 'Protodrake Only execute SAI if there is Draconis Gasritus Bunny'); + +DELETE FROM `smart_scripts` WHERE `entryorguid`=23689 AND `source_type`=0; +INSERT INTO `smart_scripts` (`entryorguid`, `source_type`, `id`, `link`, `event_type`, `event_phase_mask`, `event_chance`, `event_flags`, `event_param1`, `event_param2`, `event_param3`, `event_param4`, `action_type`, `action_param1`, `action_param2`, `action_param3`, `action_param4`, `action_param5`, `action_param6`, `target_type`, `target_param1`, `target_param2`, `target_param3`, `target_x`, `target_y`, `target_z`, `target_o`, `comment`) VALUES +(23689, 0, 1, 2, 65, 0, 100, 0, 0, 0, 0, 0, 11, 36809, 2, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'Proto-Drake - On Follow Complete - Cast \'Overpowering Sickness\''), +(23689, 0, 2, 7, 61, 0, 100, 0, 0, 0, 0, 0, 11, 43174, 0, 0, 0, 0, 0, 18, 35, 0, 0, 0, 0, 0, 0, 'Proto-Drake - On Follow Complete - Cast \'Draconis Gastritis: Kill Credit\''), +(23689, 0, 3, 5, 1, 0, 100, 0, 10000, 10000, 10000, 10000, 29, 0, 0, 24170, 1, 1, 0, 19, 24170, 75, 0, 0, 0, 0, 0, 'Proto-Drake - Out of Combat - Start Follow Closest Creature \'Draconis Gastritis Bunny\''), +(23689, 0, 4, 0, 65, 0, 100, 0, 0, 0, 0, 0, 51, 0, 0, 0, 0, 0, 0, 19, 24170, 5, 0, 0, 0, 0, 0, 'Proto-Drake - On Follow Complete - Kill Target'), +(23689, 0, 5, 0, 61, 0, 100, 0, 0, 0, 0, 0, 22, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'Proto-Drake - Out of Combat - Set Event Phase 1'), +(23689, 0, 6, 0, 1, 1, 100, 0, 45000, 45000, 45000, 45000, 41, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'Proto-Drake - Out of Combat - Despawn Instant'), +(23689, 0, 7, 0, 61, 0, 100, 0, 0, 0, 0, 0, 33, 24170, 0, 0, 0, 0, 0, 18, 35, 0, 0, 0, 0, 0, 0, 'Proto-Drake - On Death - Quest Reward'), +(23689, 0, 8, 0, 8, 0, 100, 0, 40969, 0, 120000, 120000, 69, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 'Proto-Drake - On Spellhit - Move to Position'), +(23689, 0, 9, 0, 9, 0, 100, 1, 0, 20, 0, 0, 101, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'Proto-Drake - On Range - Set Home Position'), +(23689, 0, 10, 0, 9, 0, 100, 0, 0, 5, 2000, 3500, 11, 51219, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 'Proto-Drake - On Range - Cast Flame Breath'), +(23689, 0, 11, 0, 0, 0, 100, 0, 3000, 9000, 30000, 45000, 11, 42362, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 'Proto-Drake - IC - Cast Flames of Birth'), +(23689, 0, 12, 0, 9, 0, 100, 0, 0, 20, 10000, 15000, 11, 41572, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'Proto-Drake - On Range - Cast Wing Buffet'); diff --git a/sql/updates/world/2014_06_22_14_world_misc.sql b/sql/updates/world/2014_06_22_14_world_misc.sql new file mode 100644 index 00000000000..b94cee72152 --- /dev/null +++ b/sql/updates/world/2014_06_22_14_world_misc.sql @@ -0,0 +1,11 @@ +-- +UPDATE `creature_template` SET `AIName`='SmartAI' WHERE `entry`=2230; +DELETE FROM `smart_scripts` WHERE `entryorguid` IN(2274,2275) AND `source_type`=0; +DELETE FROM `smart_scripts` WHERE `entryorguid` =227400 AND `source_type`=9; + +INSERT INTO `smart_scripts` (`entryorguid`, `source_type`, `id`, `link`, `event_type`, `event_phase_mask`, `event_chance`, `event_flags`, `event_param1`, `event_param2`, `event_param3`, `event_param4`, `action_type`, `action_param1`, `action_param2`, `action_param3`, `action_param4`, `action_param5`, `action_param6`, `target_type`, `target_param1`, `target_param2`, `target_param3`, `target_x`, `target_y`, `target_z`, `target_o`, `comment`) VALUES +(2274, 0, 0, 1, 20, 0, 100, 0, 502, 0, 0, 0, 36, 2275, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'Stanley - On Quest Complete "Elixir of Pain" - Update Template To "Enraged Stanley"'), +(2274, 0, 1, 2, 61, 0, 100, 0, 0, 0, 0, 0, 49, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 'Stanley - On Quest Complete "Elixir of Pain" - Attack Invoker'), +(2274, 0, 2, 0, 61, 0, 100, 0, 0, 0, 0, 0, 80, 227400, 2, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'Stanley - On Quest Complete "Elixir of Pain" - Run Script'), +(2274, 0, 3, 0, 6, 0, 100, 0, 0, 0, 0, 0, 78, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'Stanley - On Death - Reset All Scripts'), +(227400, 9, 0, 0, 0, 0, 100, 0, 120000, 120000, 0, 0, 36, 2274, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'Stanley - Script - Update Entry to Stanley'); diff --git a/sql/updates/world/2014_06_22_15_world_misc.sql b/sql/updates/world/2014_06_22_15_world_misc.sql new file mode 100644 index 00000000000..bab44b11d9d --- /dev/null +++ b/sql/updates/world/2014_06_22_15_world_misc.sql @@ -0,0 +1,18 @@ +-- +UPDATE `smart_scripts` SET `event_type`=11 WHERE `entryorguid`=24788 AND `source_type`=0 AND `id`=0 AND `link`=0; +DELETE FROM `smart_scripts` WHERE `entryorguid`=24639 AND `id`>2; +INSERT INTO `smart_scripts` (`entryorguid`, `source_type`, `id`, `link`, `event_type`, `event_phase_mask`, `event_chance`, `event_flags`, `event_param1`, `event_param2`, `event_param3`, `event_param4`, `action_type`, `action_param1`, `action_param2`, `action_param3`, `action_param4`, `action_param5`, `action_param6`, `target_type`, `target_param1`, `target_param2`, `target_param3`, `target_x`, `target_y`, `target_z`, `target_o`, `comment`) VALUES +(24639, 0, 3, 0, 40, 0, 100, 0, 3, 246390, 0, 0, 66, 5.07, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 'Olga, the Scalawag Wench - On Waypoint 3 (Return) Reached - Set Orientation'), +(24639, 0, 4, 5, 38, 0, 100, 0, 4, 4, 0, 0, 45, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'Olga, the Scalawag Wench - On Data set 4 4 - Set Data 1 0'), +(24639, 0, 5, 0, 61, 0, 100, 0, 0, 0, 0, 0, 81, 3, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'Olga, the Scalawag Wench - On Data set 4 4 - Set NPC Flags'); + +DELETE FROM `smart_scripts` WHERE `entryorguid`=24788 AND `id`>7; +INSERT INTO `smart_scripts` (`entryorguid`, `source_type`, `id`, `link`, `event_type`, `event_phase_mask`, `event_chance`, `event_flags`, `event_param1`, `event_param2`, `event_param3`, `event_param4`, `action_type`, `action_param1`, `action_param2`, `action_param3`, `action_param4`, `action_param5`, `action_param6`, `target_type`, `target_param1`, `target_param2`, `target_param3`, `target_x`, `target_y`, `target_z`, `target_o`, `comment`) VALUES +(24788, 0, 8, 9, 25, 0, 100, 0, 0, 0, 0, 0, 28, 58806, 3, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'Jack Adams - On Reset - Remove permanent feign death'), +(24788, 0, 9, 0, 61, 0, 100, 0, 0, 0, 0, 0, 45, 4, 4, 0, 0, 0, 0, 19, 24639, 0, 0, 0, 0, 0, 0, 'Jack Adams - On Reset - Set Data 4 4'); + +UPDATE `smart_scripts` SET `action_param1`=58806 WHERE `entryorguid`=2478800 AND `source_type`=9 AND `id`=6 AND `link`=0; + +DELETE FROM `waypoints` WHERE `entry`=246390 AND `pointid`=3; +INSERT INTO `waypoints` (`entry`, `pointid`, `position_x`, `position_y`, `position_z`, `point_comment`) VALUES +(246390, 3, -91.8194, -3532.71, 7.7126, 'Olga, the Scalawag Wench'); diff --git a/sql/updates/world/2014_06_22_16_world_misc.sql b/sql/updates/world/2014_06_22_16_world_misc.sql new file mode 100644 index 00000000000..5d0abc53187 --- /dev/null +++ b/sql/updates/world/2014_06_22_16_world_misc.sql @@ -0,0 +1,37 @@ +-- Gurgthock SAI +SET @ENTRY := 18471; +UPDATE `creature_template` SET `AIName`="SmartAI" WHERE `entry`=@ENTRY; +DELETE FROM `smart_scripts` WHERE `entryorguid`=@ENTRY AND `source_type`=0; +INSERT INTO `smart_scripts` (`entryorguid`,`source_type`,`id`,`link`,`event_type`,`event_phase_mask`,`event_chance`,`event_flags`,`event_param1`,`event_param2`,`event_param3`,`event_param4`,`action_type`,`action_param1`,`action_param2`,`action_param3`,`action_param4`,`action_param5`,`action_param6`,`target_type`,`target_param1`,`target_param2`,`target_param3`,`target_x`,`target_y`,`target_z`,`target_o`,`comment`) VALUES +(@ENTRY,0,0,1,19,0,100,0,9962,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,"Gurgthock - On Quest 'The Ring of Blood: Brokentoe' Taken - Say Line 0"), +(@ENTRY,0,1,20,61,0,100,0,9962,0,0,0,80,1847100,2,0,0,0,0,1,0,0,0,0,0,0,0,"Gurgthock - On Quest 'The Ring of Blood: Brokentoe' Taken - Run Script"), +(@ENTRY,0,2,3,19,0,100,0,9967,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,"Gurgthock - On Quest 'The Ring of Blood: The Blue Brothers' Taken - Say Line 0"), +(@ENTRY,0,3,20,61,0,100,0,9967,0,0,0,80,1847101,2,0,0,0,0,1,0,0,0,0,0,0,0,"Gurgthock - On Quest 'The Ring of Blood: The Blue Brothers' Taken - Run Script"), +(@ENTRY,0,4,5,19,0,100,0,9970,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,"Gurgthock - On Quest 'The Ring of Blood: Rokdar the Sundered Lord' Taken - Say Line 0"), +(@ENTRY,0,5,20,61,0,100,0,9970,0,0,0,80,1847102,2,0,0,0,0,1,0,0,0,0,0,0,0,"Gurgthock - On Quest 'The Ring of Blood: Rokdar the Sundered Lord' Taken - Run Script"), +(@ENTRY,0,6,7,19,0,100,0,9972,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,"Gurgthock - On Quest 'The Ring of Blood: Skra'gath' Taken - Say Line 0"), +(@ENTRY,0,7,20,61,0,100,0,9972,0,0,0,80,1847103,2,0,0,0,0,1,0,0,0,0,0,0,0,"Gurgthock - On Quest 'The Ring of Blood: Skra'gath' Taken - Run Script"), +(@ENTRY,0,8,9,19,0,100,0,9973,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,"Gurgthock - On Quest 'The Ring of Blood: The Warmaul Champion' Taken - Say Line 0"), +(@ENTRY,0,9,20,61,0,100,0,9973,0,0,0,80,1847104,2,0,0,0,0,1,0,0,0,0,0,0,0,"Gurgthock - On Quest 'The Ring of Blood: The Warmaul Champion' Taken - Run Script"), +(@ENTRY,0,10,11,19,0,100,0,9977,0,0,0,1,11,0,0,0,0,0,7,0,0,0,0,0,0,0,"Gurgthock - On Quest 'The Ring of Blood: The Final Challenge' Taken - Say Line 11"), +(@ENTRY,0,11,20,61,0,100,0,9977,0,0,0,45,1,1,0,0,0,0,19,18069,0,0,0,0,0,0,"Gurgthock - On Quest 'The Ring of Blood: The Final Challenge' Taken - Set Data 1 1"), +(@ENTRY,0,12,22,38,0,100,0,10,10,0,0,1,2,0,0,0,0,0,7,0,0,0,0,0,0,0,"Gurgthock - On Data Set 10 10 - Say Line 2"), +(@ENTRY,0,13,22,38,0,100,0,11,11,0,0,1,4,0,0,0,0,0,7,0,0,0,0,0,0,0,"Gurgthock - On Data Set 11 11 - Say Line 4"), +(@ENTRY,0,14,15,38,0,100,0,12,12,0,0,1,6,0,0,0,0,0,7,0,0,0,0,0,0,0,"Gurgthock - On Data Set 12 12 - Say Line 6"), +(@ENTRY,0,15,22,61,0,100,0,0,0,0,0,45,12,12,0,0,0,0,19,18069,0,0,0,0,0,0,"Gurgthock - On Data Set 12 12 - Set Data 12 12"), +(@ENTRY,0,16,17,38,0,100,0,13,13,0,0,1,8,0,0,0,0,0,7,0,0,0,0,0,0,0,"Gurgthock - On Data Set 13 13 - Say Line 8"), +(@ENTRY,0,17,22,61,0,100,0,0,0,0,0,45,13,13,0,0,0,0,19,18069,0,0,0,0,0,0,"Gurgthock - On Data Set 13 13 - Set Data 13 13"), +(@ENTRY,0,18,19,38,0,100,0,14,14,0,0,1,10,0,0,0,0,0,7,0,0,0,0,0,0,0,"Gurgthock - On Data Set 14 14 - Say Line 10"), +(@ENTRY,0,19,22,61,0,100,0,0,0,0,0,45,14,14,0,0,0,0,19,18069,0,0,0,0,0,0,"Gurgthock - On Data Set 14 14 - Set Data 14 14"), +(@ENTRY,0,20,21,61,0,100,0,0,0,0,0,81,1,0,0,0,0,0,1,0,0,0,0,0,0,0,"Gurgthock - On Data Set 14 14 - Set Npc Flag Gossip"), +(@ENTRY,0,21,0,61,0,100,0,0,0,0,0,22,2,0,0,0,0,0,1,0,0,0,0,0,0,0,"Gurgthock - Link - Set Event Phase 2"), +(@ENTRY,0,22,23,61,0,100,0,0,0,0,0,81,3,0,0,0,0,0,1,0,0,0,0,0,0,0,"Gurgthock - Link - Set Npc Flags Gossip & Questgiver"), +(@ENTRY,0,23,0,61,0,100,0,0,0,0,0,22,0,0,0,0,0,0,1,0,0,0,0,0,0,0,"Gurgthock - Link - Set Event Phase 0"), +(@ENTRY,0,24,25,1,2,100,0,300000,300000,300000,300000,81,3,0,0,0,0,0,1,0,0,0,0,0,0,0,"Gurgthock - Out of Combat - Set Npc Flags Gossip & Questgiver (Phase 2)"), +(@ENTRY,0,25,0,61,2,100,0,0,0,0,0,22,0,0,0,0,0,0,1,0,0,0,0,0,0,0,"Gurgthock - Out of Combat - Set Event Phase 0 (Phase 2)"), +(@ENTRY,0,26,22,38,0,100,0,15,15,0,0,70,0,0,0,0,0,0,19,18471,0,0,0,0,0,0,"Gurgthock - On Data Set 15 15 - Respawn Mogor"); + +UPDATE `smart_scripts` SET `link`=15 WHERE `entryorguid`=18069 AND `source_type`=0 AND `id`=14 AND `link`=0; +DELETE FROM `smart_scripts` WHERE `entryorguid`=18069 AND `id`=15 AND `source_type`=0; +INSERT INTO `smart_scripts` (`entryorguid`, `source_type`, `id`, `link`, `event_type`, `event_phase_mask`, `event_chance`, `event_flags`, `event_param1`, `event_param2`, `event_param3`, `event_param4`, `action_type`, `action_param1`, `action_param2`, `action_param3`, `action_param4`, `action_param5`, `action_param6`, `target_type`, `target_param1`, `target_param2`, `target_param3`, `target_x`, `target_y`, `target_z`, `target_o`, `comment`) VALUES +(18069, 0, 15, 0, 61, 0, 100, 0, 0, 0, 0, 0, 45, 15, 15, 0, 0, 0, 0, 19, 18471, 0, 0, 0, 0, 0, 0, 'Mogor - Linked with Previous Event - Say Data'); diff --git a/sql/updates/world/2014_06_22_17_world_misc.sql b/sql/updates/world/2014_06_22_17_world_misc.sql new file mode 100644 index 00000000000..a9a115e5955 --- /dev/null +++ b/sql/updates/world/2014_06_22_17_world_misc.sql @@ -0,0 +1,12 @@ +-- +SET @ENTRY := 18399; + +UPDATE `smart_scripts` SET `event_phase_mask`=1 WHERE `entryorguid`=18399 AND `source_type`=0 AND `id` IN(4,5); + +DELETE FROM `smart_scripts` WHERE `entryorguid`=@ENTRY AND `source_type`=0 AND `id` BETWEEN 6 AND 10; +INSERT INTO `smart_scripts` (`entryorguid`,`source_type`,`id`,`link`,`event_type`,`event_phase_mask`,`event_chance`,`event_flags`,`event_param1`,`event_param2`,`event_param3`,`event_param4`,`action_type`,`action_param1`,`action_param2`,`action_param3`,`action_param4`,`action_param5`,`action_param6`,`target_type`,`target_param1`,`target_param2`,`target_param3`,`target_x`,`target_y`,`target_z`,`target_o`,`comment`) VALUES +(@ENTRY,0,6,7,25,0,100,0,0,0,0,0,22,0,0,0,0,0,0,1,0,0,0,0,0,0,0,"Murkblood Twin - On Reset - Set Event Phase 0"), +(@ENTRY,0,7,0,61,0,100,0,0,0,0,0,70,0,0,0,0,0,0,9,18399,0,100,0,0,0,0,"Murkblood Twin - On Reset - Respawn "), +(@ENTRY,0,8,0,6,0,100,0,0,0,0,0,45,1,1,0,0,0,0,9,18399,0,100,0,0,0,0,"Murkblood Twin - On Just Died - Set Data 1 1"), +(@ENTRY,0,9,10,38,0,100,0,1,1,0,0,45,1,0,0,0,0,0,1,0,0,0,0,0,0,0,"Murkblood Twin - On Data Set 1 1 - Set Data 1 0"), +(@ENTRY,0,10,0,61,0,100,0,1,1,0,0,23,1,0,0,0,0,0,1,0,0,0,0,0,0,0,"Murkblood Twin - Linked with Previous Event - Increment Phase"); diff --git a/sql/updates/world/2014_06_23_00_world_gameobject.sql b/sql/updates/world/2014_06_23_00_world_gameobject.sql new file mode 100644 index 00000000000..a9be0afd0f4 --- /dev/null +++ b/sql/updates/world/2014_06_23_00_world_gameobject.sql @@ -0,0 +1,12 @@ +-- +SET @GUID = 13278; + +DELETE FROM `gameobject` WHERE guid BETWEEN @GUID+0 AND @GUID+6; +INSERT INTO `gameobject` (`guid`, `id`, `map`, `spawnMask`, `phaseMask`, `position_x`, `position_y`, `position_z`, `orientation`, `rotation0`, `rotation1`, `rotation2`, `rotation3`, `spawntimesecs`, `animprogress`, `state`) VALUES +(@GUID+0,194955,571,1,1,5988.04,4473.78,-87.3617,1.74533,0,0,0.766045,0.642787,180,255,1), +(@GUID+1,194955,571,1,1,6073.83,4463.66,-84.9872,-0.820303,0,0,-0.398748,0.91706,180,255,1), +(@GUID+2,194955,571,1,1,6130.8,4462.61,-84.544,2.75761,0,0,0.981626,0.190814,180,255,1), +(@GUID+3,194955,571,1,1,6075.99,4523.62,-81.0092,0.698132,0,0,0.34202,0.939693,180,255,1), +(@GUID+4,194955,571,1,1,6012.03,4517.3,-86.8614,0.872664,0,0,0.422618,0.906308,180,255,1), +(@GUID+5,194955,571,1,1,6092.64,4425.49,-83.9704,-2.72271,0,0,-0.978147,0.207914,180,255,1), +(@GUID+6,194955,571,1,1,6102.15,4497.03,-81.3401,-2.63544,0,0,-0.968147,0.250383,180,255,1); diff --git a/sql/updates/world/2014_06_23_00_world_spell_dbc.sql b/sql/updates/world/2014_06_23_00_world_spell_dbc.sql new file mode 100644 index 00000000000..4f8c82e148c --- /dev/null +++ b/sql/updates/world/2014_06_23_00_world_spell_dbc.sql @@ -0,0 +1,2437 @@ +UPDATE `spell_dbc` SET `ProcChance`=101, `EquippedItemClass`=2, `EquippedItemSubClassMask`=384, `Effect1`=6, `EffectDieSides1`=1, `EffectBasePoints1`=4, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=52, `EffectMultipleValue1`=1, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=19; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=1, `DmgMultiplier1`=1 WHERE `Id`=84; +UPDATE `spell_dbc` SET `ProcChance`=101, `EquippedItemClass`=2, `EquippedItemSubClassMask`=2048, `Effect1`=25, `DmgClass`=1, `PreventionType`=1, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=262; +UPDATE `spell_dbc` SET `ProcChance`=101, `EquippedItemClass`=2, `EquippedItemSubClassMask`=4096, `Effect1`=25, `DmgClass`=1, `PreventionType`=1, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=263; +UPDATE `spell_dbc` SET `ProcChance`=101, `EquippedItemClass`=2, `EquippedItemSubClassMask`=354, `Effect1`=6, `Effect2`=6, `Effect3`=6, `EffectDieSides1`=3, `EffectBasePoints1`=23, `EffectImplicitTargetA1`=1, `EffectImplicitTargetA2`=1, `EffectImplicitTargetA3`=1, `EffectApplyAuraName1`=77, `EffectApplyAuraName2`=77, `EffectApplyAuraName3`=77, `EffectMiscValue1`=15, `EffectMiscValue2`=1, `EffectMiscValue3`=27, `DmgClass`=2, `PreventionType`=2, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=278; +UPDATE `spell_dbc` SET `ProcChance`=101, `EquippedItemClass`=2, `EquippedItemSubClassMask`=354, `Effect1`=6, `Effect2`=6, `Effect3`=6, `EffectDieSides1`=5, `EffectBasePoints1`=32, `EffectImplicitTargetA1`=1, `EffectImplicitTargetA2`=1, `EffectImplicitTargetA3`=1, `EffectApplyAuraName1`=77, `EffectApplyAuraName2`=77, `EffectApplyAuraName3`=77, `EffectMiscValue1`=2, `EffectMiscValue2`=5, `EffectMiscValue3`=13, `DmgClass`=2, `PreventionType`=2, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=279; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=1, `DmgMultiplier1`=1 WHERE `Id`=482; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=22, `EffectImplicitTargetB1`=30, `EffectRadiusIndex1`=12, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=794; +UPDATE `spell_dbc` SET `ProcChance`=101, `EquippedItemSubClassMask`=-1, `Effect1`=30, `EffectDieSides1`=1, `EffectBasePoints1`=299, `EffectImplicitTargetA1`=1, `EffectMiscValue1`=1, `SpellFamilyName`=4, `SpellFamilyFlags1`=1048576, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=1134; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=2, `EffectDieSides1`=1, `EffectImplicitTargetA1`=1, `DmgMultiplier1`=1 WHERE `Id`=1177; +UPDATE `spell_dbc` SET `Targets`=256, `ProcChance`=101, `EquippedItemSubClassMask`=-1, `Effect1`=3, `EffectImplicitTargetA1`=1, `EffectTriggerSpell1`=11, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=1206; +UPDATE `spell_dbc` SET `ProcChance`=101, `EquippedItemClass`=2, `EquippedItemSubClassMask`=354, `Effect1`=6, `Effect2`=6, `Effect3`=6, `EffectDieSides1`=7, `EffectBasePoints1`=40, `EffectImplicitTargetA1`=1, `EffectImplicitTargetA2`=1, `EffectImplicitTargetA3`=1, `EffectApplyAuraName1`=77, `EffectApplyAuraName2`=77, `EffectApplyAuraName3`=77, `EffectMiscValue1`=24, `EffectMiscValue2`=14, `EffectMiscValue3`=26, `DmgClass`=2, `PreventionType`=2, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=1628; +UPDATE `spell_dbc` SET `ProcChance`=101, `EquippedItemClass`=2, `EquippedItemSubClassMask`=354, `Effect1`=6, `Effect2`=6, `Effect3`=6, `EffectDieSides1`=13, `EffectBasePoints1`=83, `EffectImplicitTargetA1`=1, `EffectImplicitTargetA2`=1, `EffectImplicitTargetA3`=1, `EffectApplyAuraName1`=77, `EffectApplyAuraName2`=77, `EffectApplyAuraName3`=77, `EffectMiscValue1`=8, `EffectMiscValue2`=17, `EffectMiscValue3`=7, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=1629; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=1, `EffectRadiusIndex1`=12, `DmgMultiplier1`=1 WHERE `Id`=1905; +UPDATE `spell_dbc` SET `ProcFlags`=139964, `ProcChance`=100, `EquippedItemSubClassMask`=-1, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=42, `EffectTriggerSpell1`=6591, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=2095; +UPDATE `spell_dbc` SET `ProcChance`=101, `SpellLevel`=37, `Effect1`=6, `Effect2`=6, `Effect3`=6, `EffectDieSides2`=1, `EffectBasePoints2`=99, `EffectImplicitTargetA1`=1, `EffectImplicitTargetA2`=1, `EffectImplicitTargetA3`=1, `EffectApplyAuraName1`=77, `EffectApplyAuraName2`=77, `EffectApplyAuraName3`=77, `EffectMiscValue1`=22, `EffectMiscValue2`=9, `EffectMiscValue3`=10, `DmgClass`=1, `PreventionType`=1, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=2463; +UPDATE `spell_dbc` SET `ProcChance`=101, `EquippedItemClass`=2, `EquippedItemSubClassMask`=131072, `Effect1`=25, `Effect2`=60, `DmgClass`=1, `PreventionType`=1, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=3386; +UPDATE `spell_dbc` SET `ProcFlags`=4, `ProcChance`=100, `ProcCharges`=1, `BaseLevel`=30, `SpellLevel`=30, `EquippedItemSubClassMask`=-1, `Effect1`=6, `EffectDieSides1`=1, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=42, `EffectTriggerSpell1`=4050, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=4051; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectDieSides1`=1, `EffectBasePoints1`=2, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=98, `EffectMiscValue1`=44, `DmgClass`=1, `PreventionType`=1, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=4289; +UPDATE `spell_dbc` SET `ProcChance`=101, `EquippedItemClass`=2, `EquippedItemSubClassMask`=1, `Effect1`=6, `EffectDieSides1`=1, `EffectBasePoints1`=3, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=47, `DmgClass`=1, `PreventionType`=1, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=4308; +UPDATE `spell_dbc` SET `ProcChance`=101, `EquippedItemClass`=2, `EquippedItemSubClassMask`=1, `Effect1`=6, `EffectDieSides1`=1, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=13, `EffectMiscValue1`=1, `DmgClass`=1, `PreventionType`=1, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=4334; +UPDATE `spell_dbc` SET `Targets`=256, `ProcChance`=101, `EquippedItemSubClassMask`=-1, `Effect1`=36, `EffectTriggerSpell1`=4792, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=4793; +UPDATE `spell_dbc` SET `ProcChance`=101, `EquippedItemSubClassMask`=-1, `Effect1`=6, `Effect2`=6, `EffectDieSides2`=1, `EffectBasePoints2`=199, `EffectImplicitTargetA1`=27, `EffectImplicitTargetA2`=27, `EffectApplyAuraName1`=25, `EffectApplyAuraName2`=18, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=4952; +UPDATE `spell_dbc` SET `ProcChance`=101, `EquippedItemSubClassMask`=-1, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=44, `EffectMiscValue1`=6, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=5120; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `Effect2`=6, `Effect3`=10, `EffectDieSides1`=1, `EffectDieSides2`=1, `EffectDieSides3`=1, `EffectBasePoints2`=69, `EffectBasePoints3`=999, `EffectImplicitTargetA1`=1, `EffectImplicitTargetA2`=1, `EffectImplicitTargetA3`=1, `EffectApplyAuraName1`=56, `EffectApplyAuraName2`=61, `EffectMiscValue1`=510, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=5402; +UPDATE `spell_dbc` SET `ProcFlags`=20, `ProcChance`=1, `EquippedItemClass`=2, `EquippedItemSubClassMask`=1, `Effect1`=6, `Effect2`=6, `EffectDieSides1`=1, `EffectBasePoints1`=13, `EffectImplicitTargetA1`=1, `EffectImplicitTargetA2`=1, `EffectApplyAuraName1`=13, `EffectApplyAuraName2`=42, `EffectMiscValue1`=1, `EffectTriggerSpell2`=5508, `DmgClass`=1, `PreventionType`=1, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=5429; +UPDATE `spell_dbc` SET `ProcFlags`=20, `ProcChance`=1, `EquippedItemClass`=2, `EquippedItemSubClassMask`=1, `Effect1`=6, `Effect2`=6, `EffectDieSides1`=1, `EffectBasePoints1`=17, `EffectImplicitTargetA1`=1, `EffectImplicitTargetA2`=1, `EffectApplyAuraName1`=13, `EffectApplyAuraName2`=42, `EffectMiscValue1`=1, `EffectTriggerSpell2`=5508, `DmgClass`=1, `PreventionType`=1, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=5431; +UPDATE `spell_dbc` SET `ProcChance`=101, `EquippedItemClass`=2, `EquippedItemSubClassMask`=1, `Effect1`=6, `EffectDieSides1`=1, `EffectBasePoints1`=3, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=52, `DmgClass`=1, `PreventionType`=1, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=5510; +UPDATE `spell_dbc` SET `ProcChance`=101, `EquippedItemClass`=2, `EquippedItemSubClassMask`=1, `Effect1`=6, `EffectDieSides1`=1, `EffectBasePoints1`=4, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=52, `DmgClass`=1, `PreventionType`=1, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=5511; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=22, `EffectImplicitTargetB1`=30, `EffectRadiusIndex1`=12, `DmgMultiplier1`=1 WHERE `Id`=5610; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectDieSides1`=1, `EffectBasePoints1`=-9, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=13, `EffectMiscValue1`=1, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=5667; +UPDATE `spell_dbc` SET `ProcChance`=101, `EquippedItemSubClassMask`=-1, `Effect1`=6, `EffectDieSides1`=1, `EffectBasePoints1`=9, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=13, `EffectMiscValue1`=1, `DmgClass`=1, `PreventionType`=1, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=6440; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectDieSides1`=1, `EffectBasePoints1`=-8, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=13, `EffectMiscValue1`=1, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=6467; +UPDATE `spell_dbc` SET `ProcChance`=101, `EquippedItemSubClassMask`=-1, `Effect1`=30, `EffectDieSides1`=1, `EffectBasePoints1`=29, `EffectImplicitTargetA1`=1, `EffectMiscValue1`=1, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=6591; +UPDATE `spell_dbc` SET `ProcFlags`=139944, `ProcChance`=100, `EquippedItemSubClassMask`=-1, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=42, `EffectTriggerSpell1`=6594, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=6592; +UPDATE `spell_dbc` SET `ProcFlags`=20, `ProcChance`=100, `EquippedItemSubClassMask`=-1, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=42, `EffectTriggerSpell1`=6594, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=6593; +UPDATE `spell_dbc` SET `ProcChance`=101, `EquippedItemSubClassMask`=-1, `Effect1`=30, `EffectDieSides1`=1, `EffectBasePoints1`=49, `EffectImplicitTargetA1`=1, `EffectMiscValue1`=1, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=6594; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=4, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=7336; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=4, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=7337; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=4, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=7338; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=4, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=7339; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=22, `EffectImplicitTargetB1`=7, `EffectRadiusIndex1`=12, `DmgMultiplier1`=1 WHERE `Id`=7392; +UPDATE `spell_dbc` SET `ProcChance`=101, `EquippedItemSubClassMask`=-1, `Effect1`=36, `EffectImplicitTargetA1`=1, `EffectTriggerSpell1`=7451, `DmgClass`=1, `PreventionType`=1, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=7462; +UPDATE `spell_dbc` SET `ProcChance`=101, `BaseLevel`=24, `SpellLevel`=24, `Effect1`=38, `EffectDieSides1`=1, `EffectBasePoints1`=99, `EffectImplicitTargetA1`=38, `EffectMiscValue1`=8, `DmgClass`=1, `PreventionType`=1, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=8320; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectDieSides1`=1, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=23, `EffectAmplitude1`=180000, `EffectTriggerSpell1`=8329, `DmgClass`=1, `PreventionType`=1, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=8327; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectDieSides1`=1, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=23, `EffectAmplitude1`=600000, `EffectTriggerSpell1`=8329, `DmgClass`=1, `PreventionType`=1, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=8328; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectDieSides1`=1, `EffectBasePoints1`=39, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=31, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=8392; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=22, `EffectImplicitTargetB1`=7, `EffectRadiusIndex1`=9, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=8603; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=22, `EffectImplicitTargetB1`=7, `EffectRadiusIndex1`=9, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=8655; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=22, `EffectImplicitTargetB1`=7, `EffectRadiusIndex1`=9, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=8894; +UPDATE `spell_dbc` SET `ProcChance`=101, `SpellLevel`=1, `EquippedItemSubClassMask`=-1, `Effect1`=77, `EffectImplicitTargetA1`=1, `SpellFamilyName`=7, `SpellFamilyFlags1`=67108864, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=9033; +UPDATE `spell_dbc` SET `ProcChance`=101, `EquippedItemClass`=4, `EquippedItemSubClassMask`=32, `Effect1`=60, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=9124; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectDieSides1`=1, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=56, `EffectMiscValue1`=6578, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=9127; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=1, `EffectRadiusIndex1`=16, `DmgMultiplier1`=1 WHERE `Id`=9135; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=22, `EffectImplicitTargetB1`=7, `EffectRadiusIndex1`=9, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=9144; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=1, `EffectRadiusIndex1`=9, `DmgMultiplier1`=1 WHERE `Id`=9173; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectDieSides1`=1, `EffectImplicitTargetA1`=6, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=9204; +UPDATE `spell_dbc` SET `ProcFlags`=20, `ProcChance`=50, `Effect1`=6, `EffectDieSides1`=1, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=42, `EffectTriggerSpell1`=9204, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=9205; +UPDATE `spell_dbc` SET `ProcChance`=101, `SpellLevel`=1, `Effect1`=3, `EffectImplicitTargetA1`=38, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=9372; +UPDATE `spell_dbc` SET `ProcChance`=101, `SpellLevel`=1, `Effect1`=3, `EffectDieSides1`=1, `EffectImplicitTargetA1`=38, `MaxTargetLevel`=60, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=9439; +UPDATE `spell_dbc` SET `ProcChance`=101, `SpellLevel`=45, `Effect1`=64, `EffectTriggerSpell1`=951, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=9772; +UPDATE `spell_dbc` SET `ProcFlags`=20, `ProcChance`=100, `Effect1`=6, `EffectDieSides1`=1, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=42, `EffectTriggerSpell1`=9204, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=10095; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectDieSides1`=1, `EffectImplicitTargetA1`=22, `EffectImplicitTargetB1`=7, `EffectRadiusIndex1`=12, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=10264; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=86, `Effect2`=86, `EffectDieSides1`=1, `EffectDieSides2`=1, `EffectImplicitTargetA1`=40, `EffectImplicitTargetA2`=40, `EffectMiscValue1`=5, `EffectMiscValue2`=15, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=10731; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectDieSides1`=1, `EffectImplicitTargetA1`=1, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=10829; +UPDATE `spell_dbc` SET `ProcChance`=101, `BaseLevel`=20, `SpellLevel`=20, `EquippedItemSubClassMask`=-1, `Effect1`=6, `EffectDieSides1`=1, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=23, `EffectAmplitude1`=12000, `EffectTriggerSpell1`=10829, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=10830; +UPDATE `spell_dbc` SET `ProcFlags`=139936, `ProcChance`=100, `Effect1`=6, `EffectDieSides1`=1, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=42, `EffectTriggerSpell1`=3617, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=10868; +UPDATE `spell_dbc` SET `ProcChance`=101, `BaseLevel`=1, `SpellLevel`=1, `Effect1`=42, `EffectDieSides1`=1, `EffectBasePoints1`=1, `EffectImplicitTargetA1`=46, `EffectMultipleValue1`=-1E+17, `EffectMiscValue1`=68, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=11475; +UPDATE `spell_dbc` SET `ProcChance`=101, `BaseLevel`=21, `SpellLevel`=21, `EquippedItemSubClassMask`=-1, `Effect1`=35, `EffectDieSides1`=1, `EffectRealPointsPerLevel1`=0.5, `EffectBasePoints1`=-1, `EffectImplicitTargetA1`=1, `EffectRadiusIndex1`=31, `EffectApplyAuraName1`=4, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=11515; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=61, `Effect2`=86, `EffectImplicitTargetA2`=40, `EffectMiscValue1`=2721, `EffectMiscValue2`=8, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=11518; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=61, `Effect2`=86, `EffectImplicitTargetA2`=40, `EffectMiscValue1`=2723, `EffectMiscValue2`=8, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=11521; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=61, `Effect2`=86, `EffectImplicitTargetA2`=40, `EffectMiscValue1`=2724, `EffectMiscValue2`=8, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=11523; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=61, `Effect2`=86, `EffectImplicitTargetA2`=40, `EffectMiscValue1`=2725, `EffectMiscValue2`=8, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=11524; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=61, `Effect2`=86, `EffectImplicitTargetA2`=40, `EffectMiscValue1`=2726, `EffectMiscValue2`=8, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=11526; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=61, `Effect2`=86, `EffectImplicitTargetA2`=40, `EffectMiscValue1`=2727, `EffectMiscValue2`=8, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=11527; +UPDATE `spell_dbc` SET `ProcChance`=101, `BaseLevel`=40, `EquippedItemSubClassMask`=-1, `Effect1`=30, `EffectDieSides1`=1, `EffectBasePoints1`=399, `EffectImplicitTargetA1`=1, `EffectMiscValue1`=1, `SpellFamilyName`=4, `SpellFamilyFlags1`=1048576, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=11560; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=22, `EffectImplicitTargetB1`=7, `EffectRadiusIndex1`=12, `DmgMultiplier1`=1 WHERE `Id`=11591; +UPDATE `spell_dbc` SET `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=4, `DmgMultiplier1`=1 WHERE `Id`=11592; +UPDATE `spell_dbc` SET `ProcChance`=101, `BaseLevel`=1, `SpellLevel`=1, `Effect1`=42, `EffectDieSides1`=1, `EffectBasePoints1`=1, `EffectImplicitTargetA1`=46, `EffectMultipleValue1`=-1E+18, `EffectMiscValue1`=3296, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=11632; +UPDATE `spell_dbc` SET `ProcChance`=101, `BaseLevel`=1, `SpellLevel`=1, `Effect1`=42, `EffectDieSides1`=1, `EffectBasePoints1`=1, `EffectImplicitTargetA1`=46, `EffectMultipleValue1`=-1E+19, `EffectMiscValue1`=7975, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=11633; +UPDATE `spell_dbc` SET `ProcChance`=101, `BaseLevel`=1, `SpellLevel`=1, `Effect1`=42, `EffectDieSides1`=1, `EffectBasePoints1`=1, `EffectImplicitTargetA1`=46, `EffectMultipleValue1`=-1E+29, `EffectMiscValue1`=4262, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=11634; +UPDATE `spell_dbc` SET `ProcChance`=101, `BaseLevel`=1, `SpellLevel`=1, `Effect1`=42, `EffectDieSides1`=1, `EffectBasePoints1`=1, `EffectImplicitTargetA1`=46, `EffectMultipleValue1`=-1E+18, `EffectMiscValue1`=727, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=11635; +UPDATE `spell_dbc` SET `ProcChance`=101, `BaseLevel`=1, `SpellLevel`=1, `Effect1`=42, `EffectDieSides1`=1, `EffectBasePoints1`=1, `EffectImplicitTargetA1`=46, `EffectMultipleValue1`=-1E+17, `EffectMiscValue1`=7980, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=11636; +UPDATE `spell_dbc` SET `ProcChance`=101, `BaseLevel`=1, `SpellLevel`=1, `Effect1`=42, `EffectDieSides1`=1, `EffectBasePoints1`=1, `EffectImplicitTargetA1`=46, `EffectMultipleValue1`=-1E+17, `EffectMiscValue1`=7975, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=11645; +UPDATE `spell_dbc` SET `ProcChance`=101, `BaseLevel`=1, `SpellLevel`=1, `Effect1`=42, `EffectDieSides1`=1, `EffectBasePoints1`=1, `EffectImplicitTargetA1`=46, `EffectMultipleValue1`=-1E+18, `EffectMiscValue1`=8017, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=11755; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=76, `Effect2`=76, `EffectDieSides1`=1, `EffectDieSides2`=1, `EffectImplicitTargetA1`=47, `EffectImplicitTargetA2`=47, `EffectRadiusIndex1`=15, `EffectRadiusIndex2`=15, `EffectMiscValue1`=144064, `EffectMiscValue2`=177683, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=11756; +UPDATE `spell_dbc` SET `ProcChance`=101, `BaseLevel`=1, `SpellLevel`=1, `Effect1`=42, `EffectDieSides1`=1, `EffectBasePoints1`=1, `EffectImplicitTargetA1`=46, `EffectMultipleValue1`=-1E+17, `EffectMiscValue1`=3501, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=11794; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=61, `Effect2`=86, `EffectImplicitTargetA2`=40, `EffectMiscValue1`=2814, `EffectMiscValue2`=8, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=11796; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=61, `Effect2`=86, `EffectImplicitTargetA2`=40, `EffectMiscValue1`=2815, `EffectMiscValue2`=8, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=11797; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=61, `Effect2`=86, `EffectImplicitTargetA2`=40, `EffectMiscValue1`=2816, `EffectMiscValue2`=8, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=11798; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=61, `Effect2`=86, `EffectImplicitTargetA2`=40, `EffectMiscValue1`=2817, `EffectMiscValue2`=8, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=11799; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=61, `Effect2`=86, `EffectImplicitTargetA2`=40, `EffectMiscValue1`=2818, `EffectMiscValue2`=8, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=11800; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=61, `Effect2`=86, `EffectImplicitTargetA2`=40, `EffectMiscValue1`=2819, `EffectMiscValue2`=8, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=11801; +UPDATE `spell_dbc` SET `ProcChance`=101, `BaseLevel`=1, `SpellLevel`=1, `Effect1`=42, `EffectDieSides1`=1, `EffectBasePoints1`=1, `EffectImplicitTargetA1`=46, `EffectMultipleValue1`=-1E+17, `EffectMiscValue1`=6087, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=11803; +UPDATE `spell_dbc` SET `ProcChance`=101, `BaseLevel`=1, `SpellLevel`=1, `Effect1`=42, `EffectDieSides1`=1, `EffectBasePoints1`=1, `EffectImplicitTargetA1`=46, `EffectMultipleValue1`=-1E+17, `EffectMiscValue1`=6086, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=11804; +UPDATE `spell_dbc` SET `ProcChance`=101, `BaseLevel`=1, `SpellLevel`=1, `Effect1`=42, `EffectDieSides1`=1, `EffectBasePoints1`=1, `EffectImplicitTargetA1`=46, `EffectMultipleValue1`=-1E+17, `EffectMiscValue1`=6233, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=11819; +UPDATE `spell_dbc` SET `ProcChance`=101, `BaseLevel`=1, `SpellLevel`=1, `Effect1`=42, `EffectDieSides1`=1, `EffectBasePoints1`=1, `EffectImplicitTargetA1`=46, `EffectMultipleValue1`=-1E+17, `EffectMiscValue1`=7489, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=11822; +UPDATE `spell_dbc` SET `ProcChance`=101, `BaseLevel`=1, `SpellLevel`=1, `Effect1`=42, `EffectDieSides1`=1, `EffectBasePoints1`=1, `EffectImplicitTargetA1`=46, `EffectMultipleValue1`=-1E+17, `EffectMiscValue1`=8055, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=11823; +UPDATE `spell_dbc` SET `ProcFlags`=4, `ProcChance`=100, `Effect1`=6, `EffectDieSides1`=1, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=42, `EffectTriggerSpell1`=11504, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=11830; +UPDATE `spell_dbc` SET `ProcFlags`=20, `ProcChance`=25, `Effect1`=6, `EffectDieSides1`=1, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=42, `EffectTriggerSpell1`=9204, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=11838; +UPDATE `spell_dbc` SET `ProcChance`=101, `BaseLevel`=1, `SpellLevel`=1, `Effect1`=42, `EffectDieSides1`=1, `EffectBasePoints1`=1, `EffectImplicitTargetA1`=46, `EffectMultipleValue1`=-1E+17, `EffectMiscValue1`=8096, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=11855; +UPDATE `spell_dbc` SET `AuraInterruptFlags`=8, `ProcChance`=101, `EquippedItemSubClassMask`=-1, `Effect1`=3, `EffectDieSides1`=1, `EffectImplicitTargetA1`=6, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=11878; +UPDATE `spell_dbc` SET `ProcChance`=101, `BaseLevel`=1, `SpellLevel`=1, `Effect1`=42, `EffectDieSides1`=1, `EffectBasePoints1`=3, `EffectImplicitTargetA1`=46, `EffectMultipleValue1`=-1E+17, `EffectMiscValue1`=7787, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=11904; +UPDATE `spell_dbc` SET `Dispel`=2, `ProcFlags`=20, `ProcChance`=10, `BaseLevel`=45, `SpellLevel`=45, `Effect1`=6, `EffectDieSides1`=1, `EffectImplicitTargetA1`=6, `EffectApplyAuraName1`=42, `EffectTriggerSpell1`=11960, `DmgClass`=1, `PreventionType`=1, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=11961; +UPDATE `spell_dbc` SET `Dispel`=1, `ProcChance`=101, `BaseLevel`=40, `SpellLevel`=40, `EquippedItemSubClassMask`=-1, `Effect1`=6, `EffectDieSides1`=1, `EffectBasePoints1`=-1, `EffectImplicitTargetA1`=21, `EffectApplyAuraName1`=23, `EffectAmplitude1`=3000, `EffectTriggerSpell1`=11968, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=11966; +UPDATE `spell_dbc` SET `ProcFlags`=40, `ProcChance`=5, `BaseLevel`=20, `SpellLevel`=20, `EquippedItemSubClassMask`=-1, `Effect1`=6, `EffectDieSides1`=1, `EffectBasePoints1`=-1, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=42, `EffectTriggerSpell1`=12001, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=12002; +UPDATE `spell_dbc` SET `Dispel`=3, `ProcFlags`=20, `ProcChance`=100, `BaseLevel`=30, `SpellLevel`=30, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=42, `EffectTriggerSpell1`=18270, `DmgClass`=1, `PreventionType`=1, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=12038; +UPDATE `spell_dbc` SET `ProcFlags`=20, `ProcChance`=5, `BaseLevel`=15, `SpellLevel`=15, `EquippedItemSubClassMask`=-1, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=42, `EffectTriggerSpell1`=3584, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=12094; +UPDATE `spell_dbc` SET `EquippedItemSubClassMask`=-1, `Effect1`=6, `Effect2`=6, `EffectDieSides1`=1, `EffectDieSides2`=1, `EffectBasePoints1`=24, `EffectBasePoints2`=999, `EffectImplicitTargetA1`=1, `EffectImplicitTargetA2`=1, `EffectApplyAuraName1`=109, `EffectApplyAuraName2`=107, `EffectMiscValue2`=1, `EffectTriggerSpell1`=12705, `SpellFamilyName`=4, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=12288; +UPDATE `spell_dbc` SET `ProcChance`=101, `EquippedItemSubClassMask`=-1, `EffectTriggerSpell1`=12086, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=12345; +UPDATE `spell_dbc` SET `ProcChance`=101, `BaseLevel`=50, `SpellLevel`=50, `Effect1`=6, `Effect2`=6, `EffectDieSides1`=1, `EffectDieSides2`=1, `EffectBasePoints1`=99, `EffectBasePoints2`=-81, `EffectImplicitTargetA1`=6, `EffectImplicitTargetA2`=6, `EffectApplyAuraName1`=6, `EffectApplyAuraName2`=33, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=12483; +UPDATE `spell_dbc` SET `ProcFlags`=20, `ProcChance`=10, `BaseLevel`=45, `SpellLevel`=45, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=42, `EffectTriggerSpell1`=12545, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=12546; +UPDATE `spell_dbc` SET `ProcFlags`=20, `ProcChance`=10, `MaxLevel`=1, `BaseLevel`=1, `SpellLevel`=1, `Effect1`=6, `EffectDieSides1`=1, `EffectBasePoints1`=-1, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=42, `EffectTriggerSpell1`=11443, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=12552; +UPDATE `spell_dbc` SET `ProcChance`=101, `SpellLevel`=1, `EquippedItemSubClassMask`=-1, `Effect1`=6, `EffectDieSides1`=1, `EffectBasePoints1`=-5001, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=107, `EffectMiscValue1`=11, `SpellFamilyName`=3, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=12602; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=22, `EffectImplicitTargetB1`=7, `EffectRadiusIndex1`=12, `DmgMultiplier1`=1 WHERE `Id`=12660; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `DmgMultiplier1`=1 WHERE `Id`=12681; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `DmgMultiplier1`=1 WHERE `Id`=12682; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `DmgMultiplier1`=1 WHERE `Id`=12689; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `DmgMultiplier1`=1 WHERE `Id`=12690; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `Effect2`=64, `Effect3`=64, `EffectDieSides1`=2, `EffectDieSides2`=1, `EffectDieSides3`=1, `EffectImplicitTargetA1`=18, `EffectImplicitTargetA2`=1, `EffectImplicitTargetA3`=1, `EffectMiscValue1`=7333, `EffectTriggerSpell2`=14802, `EffectTriggerSpell3`=14801, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=12694; +UPDATE `spell_dbc` SET `EquippedItemSubClassMask`=-1, `Effect1`=6, `Effect2`=6, `EffectDieSides1`=1, `EffectDieSides2`=1, `EffectBasePoints1`=49, `EffectBasePoints2`=1999, `EffectImplicitTargetA1`=1, `EffectImplicitTargetA2`=1, `EffectApplyAuraName1`=109, `EffectApplyAuraName2`=107, `EffectMiscValue2`=1, `EffectTriggerSpell1`=12705, `SpellFamilyName`=4, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=12707; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=1, `DmgMultiplier1`=1 WHERE `Id`=12728; +UPDATE `spell_dbc` SET `ProcChance`=101, `BaseLevel`=26, `SpellLevel`=26, `EquippedItemSubClassMask`=-1, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=39, `EffectMiscValue1`=127, `DmgClass`=1, `PreventionType`=1, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=12844; +UPDATE `spell_dbc` SET `AuraInterruptFlags`=4718592, `ProcChance`=101, `SpellLevel`=1, `Effect1`=6, `EffectDieSides1`=1, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=8, `EffectAmplitude1`=1000, `DmgMultiplier1`=1 WHERE `Id`=12939; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `EffectDieSides1`=1, `EffectImplicitTargetA1`=18, `EffectMiscValue1`=7356, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=12949; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectDieSides1`=1, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=23, `EffectAmplitude1`=1800000, `EffectTriggerSpell1`=8329, `DmgClass`=1, `PreventionType`=1, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=13167; +UPDATE `spell_dbc` SET `ProcFlags`=4, `ProcChance`=100, `ProcCharges`=1, `BaseLevel`=30, `SpellLevel`=30, `EquippedItemSubClassMask`=-1, `Effect1`=6, `EffectDieSides1`=1, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=42, `EffectTriggerSpell1`=13259, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=13260; +UPDATE `spell_dbc` SET `ProcFlags`=40, `ProcChance`=10, `Effect1`=6, `EffectDieSides1`=1, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=42, `EffectTriggerSpell1`=13319, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=13320; +UPDATE `spell_dbc` SET `ProcFlags`=20, `ProcChance`=20, `Effect1`=6, `EffectDieSides1`=1, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=42, `EffectTriggerSpell1`=9204, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=13767; +UPDATE `spell_dbc` SET `ProcChance`=101, `BaseLevel`=1, `SpellLevel`=1, `EquippedItemSubClassMask`=-1, `Effect1`=6, `Effect3`=6, `EffectDieSides1`=1, `EffectBasePoints1`=-1, `EffectImplicitTargetA1`=1, `EffectImplicitTargetA3`=1, `EffectApplyAuraName1`=39, `EffectApplyAuraName3`=39, `EffectMiscValue1`=1, `EffectMiscValue3`=126, `DmgClass`=1, `PreventionType`=1, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=13835; +UPDATE `spell_dbc` SET `ProcChance`=101, `BaseLevel`=1, `SpellLevel`=1, `Effect1`=24, `EffectDieSides1`=1, `EffectImplicitTargetA1`=1, `DmgMultiplier1`=1 WHERE `Id`=13909; +UPDATE `spell_dbc` SET `Effect1`=6, `EffectDieSides1`=1, `EffectBasePoints1`=44, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=108, `EffectMiscValue1`=8, `SpellFamilyName`=8, `DmgMultiplier1`=1 WHERE `Id`=14170; +UPDATE `spell_dbc` SET `ProcChance`=101, `BaseLevel`=1, `SpellLevel`=1, `Effect1`=42, `EffectDieSides1`=1, `EffectBasePoints1`=1, `EffectImplicitTargetA1`=32, `EffectMultipleValue1`=-1E+17, `EffectMiscValue1`=9521, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=14252; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=6, `EffectRadiusIndex1`=23, `DmgMultiplier1`=1 WHERE `Id`=14291; +UPDATE `spell_dbc` SET `ProcChance`=101, `BaseLevel`=1, `SpellLevel`=1, `Effect1`=42, `EffectDieSides1`=1, `EffectBasePoints1`=1, `EffectImplicitTargetA1`=32, `EffectMultipleValue1`=-1E+17, `EffectMiscValue1`=9297, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=14307; +UPDATE `spell_dbc` SET `ProcChance`=101, `BaseLevel`=1, `SpellLevel`=1, `Effect1`=42, `EffectDieSides1`=1, `EffectBasePoints1`=1, `EffectImplicitTargetA1`=32, `EffectRadiusIndex1`=8, `EffectMultipleValue1`=-1E+17, `EffectMiscValue1`=9526, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=14313; +UPDATE `spell_dbc` SET `ProcChance`=101, `BaseLevel`=1, `SpellLevel`=1, `Effect1`=42, `EffectDieSides1`=1, `EffectBasePoints1`=1, `EffectImplicitTargetA1`=32, `EffectRadiusIndex1`=8, `EffectMultipleValue1`=-1E+17, `EffectMiscValue1`=9527, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=14329; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `EffectDieSides1`=1, `EffectImplicitTargetA1`=47, `EffectRadiusIndex1`=7, `EffectMiscValue1`=7329, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=14801; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `EffectDieSides1`=2, `EffectBasePoints1`=-1, `EffectImplicitTargetA1`=48, `EffectRadiusIndex1`=7, `EffectMiscValue1`=7335, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=14802; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectDieSides1`=1, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=23, `EffectAmplitude1`=5000, `EffectTriggerSpell1`=15126, `DmgMultiplier1`=1 WHERE `Id`=15127; +UPDATE `spell_dbc` SET `ProcChance`=101, `StackAmount`=2, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=23, `EffectAmplitude1`=1000, `EffectTriggerSpell1`=35138, `DmgMultiplier1`=1 WHERE `Id`=15227; +UPDATE `spell_dbc` SET `ProcFlags`=20, `ProcChance`=100, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=42, `EffectTriggerSpell1`=15651, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=15650; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=22, `EffectImplicitTargetB1`=7, `EffectRadiusIndex1`=9, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=15782; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `Effect2`=6, `EffectDieSides1`=1, `EffectDieSides2`=1, `EffectBasePoints1`=49, `EffectBasePoints2`=-21, `EffectImplicitTargetA1`=1, `EffectImplicitTargetA2`=1, `EffectApplyAuraName1`=138, `EffectApplyAuraName2`=79, `EffectMiscValue2`=1, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=16076; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=1, `PreventionType`=1, `DmgMultiplier1`=1 WHERE `Id`=16134; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=1, `PreventionType`=1, `DmgMultiplier1`=1 WHERE `Id`=16135; +UPDATE `spell_dbc` SET `ProcFlags`=4, `ProcChance`=100, `Effect1`=6, `EffectDieSides1`=1, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=42, `EffectTriggerSpell1`=16141, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=16140; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectDieSides1`=1, `EffectBasePoints1`=49, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=49, `DmgMultiplier1`=1 WHERE `Id`=16331; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectDieSides1`=1, `EffectImplicitTargetA1`=38, `DmgMultiplier1`=1 WHERE `Id`=16364; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectDieSides1`=1, `EffectImplicitTargetA1`=38, `DmgMultiplier1`=1 WHERE `Id`=16365; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `EffectDieSides1`=4, `EffectBasePoints1`=1, `EffectImplicitTargetA1`=18, `EffectMiscValue1`=10461, `DmgMultiplier1`=1 WHERE `Id`=16369; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `EffectDieSides1`=4, `EffectBasePoints1`=1, `EffectImplicitTargetA1`=18, `EffectMiscValue1`=10536, `DmgMultiplier1`=1 WHERE `Id`=16370; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `EffectDieSides1`=4, `EffectBasePoints1`=1, `EffectImplicitTargetA1`=18, `EffectMiscValue1`=10441, `DmgMultiplier1`=1 WHERE `Id`=16371; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=46, `Effect2`=6, `Effect3`=6, `EffectDieSides1`=1, `EffectDieSides2`=1, `EffectDieSides3`=1, `EffectBasePoints2`=-76, `EffectImplicitTargetA1`=1, `EffectImplicitTargetA2`=1, `EffectImplicitTargetA3`=1, `EffectApplyAuraName2`=33, `EffectApplyAuraName3`=5, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=16420; +UPDATE `spell_dbc` SET `ProcFlags`=4, `ProcChance`=100, `Effect1`=6, `EffectDieSides1`=1, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=42, `EffectTriggerSpell1`=16424, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=16423; +UPDATE `spell_dbc` SET `ProcChance`=101, `BaseLevel`=1, `SpellLevel`=1, `EquippedItemSubClassMask`=-1, `Effect1`=3, `EffectImplicitTargetA1`=1, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=16424; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=38, `DmgMultiplier1`=1 WHERE `Id`=16426; +UPDATE `spell_dbc` SET `Dispel`=2, `ProcChance`=101, `BaseLevel`=1, `SpellLevel`=1, `Effect1`=6, `EffectImplicitTargetA1`=21, `EffectApplyAuraName1`=4, `DmgMultiplier1`=1 WHERE `Id`=16499; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=22, `EffectImplicitTargetB1`=7, `EffectRadiusIndex1`=9, `DmgMultiplier1`=1 WHERE `Id`=16507; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=24, `EffectDieSides1`=1, `EffectImplicitTargetA1`=21, `DmgMultiplier1`=1 WHERE `Id`=16548; +UPDATE `spell_dbc` SET `ProcFlags`=1048576, `ProcChance`=5, `BaseLevel`=1, `SpellLevel`=1, `EquippedItemSubClassMask`=-1, `Effect1`=6, `EffectDieSides1`=1, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=42, `EffectTriggerSpell1`=16555, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=16563; +UPDATE `spell_dbc` SET `ProcChance`=101, `EquippedItemSubClassMask`=-1, `Effect1`=41, `EffectDieSides1`=1, `EffectImplicitTargetA1`=32, `EffectMiscValue1`=10717, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=16619; +UPDATE `spell_dbc` SET `ProcChance`=101, `EquippedItemSubClassMask`=-1, `Effect1`=41, `Effect2`=64, `EffectDieSides1`=1, `EffectImplicitTargetA1`=32, `EffectImplicitTargetA2`=1, `EffectMiscValue1`=10717, `EffectTriggerSpell2`=16631, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=16630; +UPDATE `spell_dbc` SET `ProcChance`=101, `EquippedItemSubClassMask`=-1, `Effect1`=41, `EffectDieSides1`=1, `EffectImplicitTargetA1`=32, `EffectMiscValue1`=10717, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=16631; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=76, `EffectDieSides1`=1, `EffectImplicitTargetA1`=22, `EffectImplicitTargetB1`=32, `EffectMiscValue1`=175887, `DmgMultiplier1`=1 WHERE `Id`=16721; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=38, `DmgMultiplier1`=1 WHERE `Id`=16743; +UPDATE `spell_dbc` SET `Targets`=64, `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=22, `EffectImplicitTargetB1`=8, `EffectRadiusIndex1`=9, `DmgMultiplier1`=1 WHERE `Id`=16771; +UPDATE `spell_dbc` SET `Targets`=256, `ProcChance`=101, `EquippedItemSubClassMask`=-1, `Effect1`=77, `EffectDieSides1`=1, `EffectBasePoints1`=39096, `EffectImplicitTargetA1`=25, `EffectTriggerSpell1`=17039, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=17042; +UPDATE `spell_dbc` SET `Targets`=256, `ProcChance`=101, `EquippedItemSubClassMask`=-1, `Effect1`=77, `EffectDieSides1`=1, `EffectBasePoints1`=39097, `EffectImplicitTargetA1`=25, `EffectTriggerSpell1`=17041, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=17043; +UPDATE `spell_dbc` SET `Targets`=256, `ProcChance`=101, `EquippedItemSubClassMask`=-1, `Effect1`=77, `EffectDieSides1`=1, `EffectBasePoints1`=39098, `EffectImplicitTargetA1`=25, `EffectTriggerSpell1`=17040, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=17044; +UPDATE `spell_dbc` SET `Dispel`=2, `ProcChance`=101, `BaseLevel`=60, `SpellLevel`=60, `Effect1`=38, `EffectDieSides1`=1, `EffectImplicitTargetA1`=21, `EffectMiscValue1`=2, `MaxTargetLevel`=60, `DmgMultiplier1`=1 WHERE `Id`=17085; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectDieSides1`=1, `EffectImplicitTargetA1`=22, `EffectImplicitTargetB1`=7, `EffectRadiusIndex1`=9, `DmgMultiplier1`=1 WHERE `Id`=17163; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=56, `EffectMiscValue1`=5736, `DmgMultiplier1`=1 WHERE `Id`=17186; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=23, `EffectAmplitude1`=30000, `EffectTriggerSpell1`=17241, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=17225; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=23, `EffectAmplitude1`=30000, `EffectTriggerSpell1`=17242, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=17226; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `EffectDieSides1`=1, `EffectImplicitTargetA1`=22, `EffectImplicitTargetB1`=18, `EffectMiscValue1`=11064, `DmgMultiplier1`=1 WHERE `Id`=17310; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectDieSides1`=1, `EffectImplicitTargetA1`=38, `DmgMultiplier1`=1 WHERE `Id`=17372; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `EffectDieSides1`=4, `EffectImplicitTargetA1`=22, `EffectImplicitTargetB1`=18, `EffectMiscValue1`=11122, `DmgMultiplier1`=1 WHERE `Id`=17408; +UPDATE `spell_dbc` SET `ProcChance`=101, `BaseLevel`=1, `SpellLevel`=1, `EquippedItemSubClassMask`=-1, `Effect1`=3, `EffectImplicitTargetA1`=1, `SpellFamilyName`=1, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=17442; +UPDATE `spell_dbc` SET `ProcChance`=101, `BaseLevel`=1, `SpellLevel`=1, `Effect1`=1, `EffectImplicitTargetA1`=1, `DmgClass`=1, `PreventionType`=1, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=17472; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=26, `DmgMultiplier1`=1 WHERE `Id`=17507; +UPDATE `spell_dbc` SET `Targets`=256, `ProcChance`=101, `Effect1`=103, `EffectDieSides1`=1, `EffectBasePoints1`=2999, `EffectMiscValue1`=574, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=17621; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=39, `EffectMiscValue1`=1, `DmgMultiplier1`=1 WHERE `Id`=17674; +UPDATE `spell_dbc` SET `Targets`=256, `ProcChance`=101, `Effect1`=103, `EffectDieSides1`=1, `EffectBasePoints1`=5999, `EffectMiscValue1`=574, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=17681; +UPDATE `spell_dbc` SET `ProcChance`=101, `SpellLevel`=20, `Effect1`=42, `EffectDieSides1`=1, `EffectImplicitTargetA1`=47, `EffectRadiusIndex1`=9, `EffectMiscValue1`=11296, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=17694; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `Effect2`=6, `EffectDieSides1`=1, `EffectDieSides2`=1, `EffectBasePoints2`=99, `EffectImplicitTargetA1`=1, `EffectImplicitTargetA2`=1, `EffectApplyAuraName1`=5, `EffectApplyAuraName2`=31, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=17772; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `Effect2`=6, `Effect3`=6, `EffectDieSides1`=1, `EffectDieSides2`=1, `EffectDieSides3`=1, `EffectBasePoints2`=99, `EffectBasePoints3`=999, `EffectImplicitTargetA1`=1, `EffectImplicitTargetA2`=1, `EffectImplicitTargetA3`=1, `EffectApplyAuraName1`=5, `EffectApplyAuraName2`=31, `EffectApplyAuraName3`=18, `EffectMiscValue3`=1, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=17774; +UPDATE `spell_dbc` SET `Dispel`=1, `ProcChance`=101, `BaseLevel`=40, `SpellLevel`=40, `EquippedItemSubClassMask`=-1, `Effect1`=6, `EffectDieSides1`=1, `EffectBasePoints1`=-1, `EffectImplicitTargetA1`=21, `EffectApplyAuraName1`=23, `EffectAmplitude1`=5000, `EffectTriggerSpell1`=11968, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=18268; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectDieSides1`=1, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=23, `EffectAmplitude1`=20000, `EffectTriggerSpell1`=18349, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=18348; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectDieSides1`=1, `EffectImplicitTargetA1`=1, `DmgMultiplier1`=1 WHERE `Id`=18349; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=25, `DmgMultiplier1`=1 WHERE `Id`=18350; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectDieSides1`=1, `EffectImplicitTargetA1`=1, `DmgMultiplier1`=1 WHERE `Id`=18380; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectDieSides1`=1, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=23, `EffectAmplitude1`=50000, `EffectTriggerSpell1`=18380, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=18383; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectDieSides1`=1, `EffectBasePoints1`=199, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=31, `DmgMultiplier1`=1 WHERE `Id`=18391; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=26, `DmgMultiplier1`=1 WHERE `Id`=18430; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=25, `DmgMultiplier1`=1 WHERE `Id`=18433; +UPDATE `spell_dbc` SET `ProcChance`=101, `SpellLevel`=1, `EquippedItemSubClassMask`=-1, `Effect1`=6, `Effect2`=6, `EffectDieSides1`=1, `EffectDieSides2`=1, `EffectBasePoints1`=-1, `EffectBasePoints2`=-1, `EffectImplicitTargetA1`=1, `EffectImplicitTargetA2`=1, `EffectApplyAuraName1`=77, `EffectApplyAuraName2`=77, `EffectMiscValue1`=7, `EffectMiscValue2`=11, `SpellFamilyName`=7, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=18461; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=22, `EffectImplicitTargetB1`=15, `EffectRadiusIndex1`=9, `DmgMultiplier1`=1 WHERE `Id`=18759; +UPDATE `spell_dbc` SET `ProcChance`=101, `SpellLevel`=1, `Effect1`=77, `EffectImplicitTargetA1`=21, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=18793; +UPDATE `spell_dbc` SET `ProcChance`=101, `BaseLevel`=60, `SpellLevel`=60, `Effect1`=86, `EffectDieSides1`=1, `EffectImplicitTargetA1`=18, `EffectImplicitTargetB1`=52, `EffectRadiusIndex1`=17, `EffectMiscValue1`=5, `DmgClass`=1, `PreventionType`=1, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=18804; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=22, `EffectImplicitTargetB1`=7, `EffectRadiusIndex1`=12, `DmgMultiplier1`=1 WHERE `Id`=18908; +UPDATE `spell_dbc` SET `ProcChance`=101, `BaseLevel`=14, `SpellLevel`=14, `Effect1`=19, `EffectDieSides1`=1, `EffectImplicitTargetA1`=1, `DmgClass`=2, `PreventionType`=2, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=18941; +UPDATE `spell_dbc` SET `ProcChance`=101, `BaseLevel`=62, `SpellLevel`=62, `Effect1`=3, `EffectImplicitTargetA1`=1, `DmgMultiplier1`=1 WHERE `Id`=18947; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=22, `EffectImplicitTargetB1`=7, `EffectRadiusIndex1`=9, `DmgMultiplier1`=1 WHERE `Id`=18955; +UPDATE `spell_dbc` SET `ProcChance`=101, `BaseLevel`=20, `SpellLevel`=20, `EquippedItemSubClassMask`=-1, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=23, `EffectAmplitude1`=10000, `EffectTriggerSpell1`=18967, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=18959; +UPDATE `spell_dbc` SET `ProcChance`=101, `BaseLevel`=20, `SpellLevel`=20, `EquippedItemSubClassMask`=-1, `Effect1`=3, `EffectImplicitTargetA1`=1, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=18967; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectDieSides1`=1, `EffectImplicitTargetA1`=38, `DmgMultiplier1`=1 WHERE `Id`=18971; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=38, `DmgMultiplier1`=1 WHERE `Id`=18973; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=22, `EffectImplicitTargetB1`=7, `EffectRadiusIndex1`=9, `DmgMultiplier1`=1 WHERE `Id`=18993; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=38, `DmgMultiplier1`=1 WHERE `Id`=18997; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=38, `DmgMultiplier1`=1 WHERE `Id`=19033; +UPDATE `spell_dbc` SET `ProcFlags`=20, `ProcChance`=100, `Effect1`=6, `EffectDieSides1`=1, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=42, `EffectTriggerSpell1`=9204, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=19195; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=76, `EffectDieSides1`=1, `EffectImplicitTargetA1`=47, `EffectRadiusIndex1`=15, `EffectMiscValue1`=177681, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=19394; +UPDATE `spell_dbc` SET `ProcFlags`=20, `ProcChance`=100, `Effect1`=6, `EffectDieSides1`=1, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=42, `EffectTriggerSpell1`=19397, `DmgClass`=1, `PreventionType`=1, `DmgMultiplier1`=1 WHERE `Id`=19396; +UPDATE `spell_dbc` SET `ProcChance`=101, `BaseLevel`=60, `SpellLevel`=60, `Effect1`=6, `Effect2`=6, `EffectDieSides1`=1, `EffectDieSides2`=1, `EffectRealPointsPerLevel1`=1.5, `EffectRealPointsPerLevel2`=1.25, `EffectBasePoints1`=89, `EffectBasePoints2`=74, `EffectImplicitTargetA1`=1, `EffectImplicitTargetA2`=1, `EffectApplyAuraName1`=22, `EffectApplyAuraName2`=22, `EffectMiscValue1`=4, `EffectMiscValue2`=32, `SpellFamilyName`=5, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=19433; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=86, `EffectImplicitTargetA1`=40, `EffectMiscValue1`=15, `DmgMultiplier1`=1 WHERE `Id`=19436; +UPDATE `spell_dbc` SET `ProcChance`=101, `BaseLevel`=62, `SpellLevel`=62, `Effect1`=3, `EffectImplicitTargetA1`=38, `DmgMultiplier1`=1 WHERE `Id`=19515; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=5, `EffectDieSides1`=1, `EffectImplicitTargetA1`=1, `EffectImplicitTargetB1`=17, `DmgMultiplier1`=1 WHERE `Id`=19527; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=1, `DmgMultiplier1`=1 WHERE `Id`=19614; +UPDATE `spell_dbc` SET `Dispel`=1, `ProcChance`=101, `BaseLevel`=40, `SpellLevel`=40, `EquippedItemSubClassMask`=-1, `Effect1`=6, `EffectDieSides1`=1, `EffectBasePoints1`=-1, `EffectImplicitTargetA1`=21, `EffectApplyAuraName1`=23, `EffectAmplitude1`=2000, `EffectTriggerSpell1`=19627, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=19626; +UPDATE `spell_dbc` SET `ProcFlags`=20, `ProcChance`=100, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=42, `EffectTriggerSpell1`=19639, `DmgMultiplier1`=1 WHERE `Id`=19640; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectDieSides1`=1, `EffectImplicitTargetA1`=6, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=19707; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=22, `EffectImplicitTargetB1`=30, `EffectRadiusIndex1`=11, `DmgMultiplier1`=1 WHERE `Id`=19768; +UPDATE `spell_dbc` SET `ProcChance`=101, `MaxLevel`=1, `BaseLevel`=1, `SpellLevel`=1, `Effect1`=2, `EffectDieSides1`=1, `EffectBasePoints1`=69, `EffectImplicitTargetA1`=1, `DmgMultiplier1`=1 WHERE `Id`=19806; +UPDATE `spell_dbc` SET `ProcChance`=101, `MaxLevel`=1, `BaseLevel`=1, `SpellLevel`=1, `Effect1`=46, `Effect2`=2, `EffectDieSides2`=1, `EffectBasePoints2`=69, `EffectImplicitTargetA2`=1, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=19810; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectDieSides1`=1, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=23, `EffectAmplitude1`=15000, `EffectTriggerSpell1`=19826, `DmgMultiplier1`=1 WHERE `Id`=19824; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `EffectDieSides1`=1, `EffectImplicitTargetA1`=18, `EffectRadiusIndex1`=16, `EffectMiscValue1`=12416, `DmgMultiplier1`=1 WHERE `Id`=19826; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `EffectDieSides1`=1, `EffectImplicitTargetA1`=18, `EffectRadiusIndex1`=16, `EffectMiscValue1`=12420, `DmgMultiplier1`=1 WHERE `Id`=19827; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `EffectDieSides1`=1, `EffectImplicitTargetA1`=18, `EffectRadiusIndex1`=16, `EffectMiscValue1`=12422, `DmgMultiplier1`=1 WHERE `Id`=19828; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=42, `EffectImplicitTargetA1`=18, `DmgMultiplier1`=1 WHERE `Id`=19829; +UPDATE `spell_dbc` SET `ProcChance`=101, `BaseLevel`=62, `SpellLevel`=62, `EquippedItemSubClassMask`=-1, `Effect1`=6, `EffectDieSides1`=1, `EffectBasePoints1`=-1, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=25, `DmgClass`=1, `PreventionType`=1, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=19951; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=38, `DmgMultiplier1`=1 WHERE `Id`=20001; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=37, `EffectMiscValue1`=63, `DmgMultiplier1`=1 WHERE `Id`=20027; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectDieSides1`=1, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=23, `EffectAmplitude1`=2000, `EffectTriggerSpell1`=20172, `DmgMultiplier1`=1 WHERE `Id`=20171; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `EffectDieSides1`=1, `EffectImplicitTargetA1`=18, `EffectRadiusIndex1`=16, `EffectMiscValue1`=11262, `DmgMultiplier1`=1 WHERE `Id`=20172; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=77, `EffectImplicitTargetA1`=22, `EffectImplicitTargetB1`=15, `EffectRadiusIndex1`=12, `DmgMultiplier1`=1 WHERE `Id`=20226; +UPDATE `spell_dbc` SET `ProcChance`=101, `BaseLevel`=40, `SpellLevel`=40, `EquippedItemSubClassMask`=-1, `Effect1`=6, `EffectDieSides1`=1, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=23, `EffectAmplitude1`=2000, `EffectTriggerSpell1`=20275, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=20273; +UPDATE `spell_dbc` SET `ProcChance`=101, `BaseLevel`=1, `SpellLevel`=1, `EquippedItemSubClassMask`=-1, `Effect1`=3, `EffectDieSides1`=1, `EffectImplicitTargetA1`=22, `EffectImplicitTargetB1`=7, `EffectRadiusIndex1`=13, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=20275; +UPDATE `spell_dbc` SET `Effect1`=43, `EffectDieSides1`=1, `EffectImplicitTargetA1`=6, `EffectImplicitTargetB1`=47, `EffectRadiusIndex1`=9, `DmgMultiplier1`=1 WHERE `Id`=20311; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=56, `EffectMiscValue1`=12756, `DmgMultiplier1`=1 WHERE `Id`=20409; +UPDATE `spell_dbc` SET `ProcChance`=101, `BaseLevel`=62, `SpellLevel`=62, `Effect1`=6, `Effect2`=108, `EffectDieSides1`=1, `EffectImplicitTargetA1`=38, `EffectImplicitTargetA2`=38, `EffectApplyAuraName1`=77, `EffectMiscValue1`=18, `EffectMiscValue2`=18, `DmgClass`=1, `PreventionType`=1, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=20482; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=6, `DmgMultiplier1`=1 WHERE `Id`=20492; +UPDATE `spell_dbc` SET `ProcChance`=101, `BaseLevel`=60, `SpellLevel`=60, `Effect1`=112, `EffectDieSides1`=1, `EffectImplicitTargetA1`=49, `EffectRadiusIndex1`=8, `EffectMiscValue1`=14443, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=20493; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=76, `EffectImplicitTargetA1`=18, `EffectMiscValue1`=177704, `DmgMultiplier1`=1 WHERE `Id`=20494; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=76, `EffectImplicitTargetA1`=18, `EffectMiscValue1`=177704, `DmgMultiplier1`=1 WHERE `Id`=20495; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=46, `Effect2`=6, `Effect3`=6, `EffectDieSides1`=1, `EffectDieSides2`=1, `EffectDieSides3`=1, `EffectBasePoints2`=-51, `EffectImplicitTargetA1`=1, `EffectImplicitTargetA2`=1, `EffectImplicitTargetA3`=1, `EffectApplyAuraName2`=33, `EffectApplyAuraName3`=5, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=20507; +UPDATE `spell_dbc` SET `ProcChance`=101, `BaseLevel`=1, `SpellLevel`=1, `Effect1`=3, `EffectImplicitTargetA1`=22, `EffectImplicitTargetB1`=15, `EffectRadiusIndex1`=12, `DmgMultiplier1`=1 WHERE `Id`=20538; +UPDATE `spell_dbc` SET `ProcChance`=101, `BaseLevel`=1, `SpellLevel`=1, `Effect1`=63, `Effect2`=6, `Effect3`=6, `EffectDieSides1`=1, `EffectBasePoints1`=3999, `EffectImplicitTargetA1`=22, `EffectImplicitTargetA2`=22, `EffectImplicitTargetA3`=22, `EffectImplicitTargetB1`=7, `EffectImplicitTargetB2`=7, `EffectImplicitTargetB3`=7, `EffectRadiusIndex1`=12, `EffectRadiusIndex2`=12, `EffectRadiusIndex3`=12, `EffectApplyAuraName2`=38, `EffectApplyAuraName3`=39, `EffectMiscValue2`=11, `EffectMiscValue3`=127, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=20544; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=1, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=20546; +UPDATE `spell_dbc` SET `ProcChance`=101, `BaseLevel`=62, `SpellLevel`=62, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=26, `DmgMultiplier1`=1 WHERE `Id`=20548; +UPDATE `spell_dbc` SET `ProcChance`=101, `BaseLevel`=62, `SpellLevel`=62, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=23, `EffectAmplitude1`=1000, `EffectTriggerSpell1`=20553, `DmgMultiplier1`=1 WHERE `Id`=20556; +UPDATE `spell_dbc` SET `ProcFlags`=20, `ProcChance`=101, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=42, `EffectTriggerSpell1`=20564, `DmgMultiplier1`=1 WHERE `Id`=20563; +UPDATE `spell_dbc` SET `Targets`=256, `ProcChance`=101, `Effect1`=24, `DmgMultiplier1`=1 WHERE `Id`=20693; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=1, `DmgMultiplier1`=1 WHERE `Id`=20723; +UPDATE `spell_dbc` SET `Targets`=64, `ProcChance`=101, `Effect1`=41, `EffectDieSides1`=1, `EffectBasePoints1`=1, `EffectImplicitTargetA1`=22, `EffectRadiusIndex1`=16, `EffectMiscValue1`=6412, `DmgMultiplier1`=1 WHERE `Id`=20734; +UPDATE `spell_dbc` SET `BaseLevel`=1, `SpellLevel`=1, `StackAmount`=15, `Effect1`=6, `EffectDieSides1`=1, `EffectBasePoints1`=9, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=117, `EffectMiscValue1`=1, `SpellFamilyName`=5, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=20785; +UPDATE `spell_dbc` SET `ProcFlags`=20, `ProcChance`=100, `BaseLevel`=1, `SpellLevel`=1, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=42, `EffectTriggerSpell1`=20810, `DmgClass`=1, `PreventionType`=2, `DmgMultiplier1`=1 WHERE `Id`=20809; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `Effect2`=6, `EffectImplicitTargetA1`=1, `EffectImplicitTargetA2`=1, `EffectApplyAuraName1`=26, `EffectApplyAuraName2`=23, `EffectAmplitude2`=300000, `EffectTriggerSpell2`=20862, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=20861; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=1, `DmgMultiplier1`=1 WHERE `Id`=20862; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=22, `EffectImplicitTargetB1`=7, `EffectRadiusIndex1`=9, `DmgMultiplier1`=1 WHERE `Id`=20863; +UPDATE `spell_dbc` SET `ProcChance`=101, `BaseLevel`=62, `SpellLevel`=62, `StackAmount`=10, `Effect1`=6, `Effect2`=6, `EffectDieSides1`=1, `EffectBasePoints1`=5, `EffectImplicitTargetA1`=22, `EffectImplicitTargetA2`=22, `EffectImplicitTargetB1`=7, `EffectImplicitTargetB2`=7, `EffectRadiusIndex1`=12, `EffectRadiusIndex2`=12, `EffectApplyAuraName1`=77, `EffectApplyAuraName2`=38, `EffectMiscValue1`=17, `EffectMiscValue2`=5, `DmgClass`=1, `PreventionType`=1, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=21087; +UPDATE `spell_dbc` SET `ProcChance`=101, `BaseLevel`=62, `SpellLevel`=62, `Effect1`=6, `Effect2`=67, `Effect3`=6, `EffectDieSides1`=1, `EffectDieSides3`=1, `EffectBasePoints1`=49, `EffectBasePoints3`=24, `EffectImplicitTargetA1`=38, `EffectImplicitTargetA2`=38, `EffectImplicitTargetA3`=38, `EffectApplyAuraName1`=138, `EffectApplyAuraName3`=61, `DmgClass`=1, `PreventionType`=1, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=21090; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectImplicitTargetA1`=22, `EffectImplicitTargetB1`=7, `EffectRadiusIndex1`=12, `EffectApplyAuraName1`=4, `DmgMultiplier1`=1 WHERE `Id`=21094; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectRadiusIndex1`=16, `DmgMultiplier1`=1 WHERE `Id`=21108; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `EffectImplicitTargetA1`=17, `EffectRadiusIndex1`=16, `EffectMiscValue1`=12143, `DmgMultiplier1`=1 WHERE `Id`=21110; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `EffectImplicitTargetA1`=17, `EffectRadiusIndex1`=16, `EffectMiscValue1`=12143, `DmgMultiplier1`=1 WHERE `Id`=21111; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `EffectImplicitTargetA1`=17, `EffectRadiusIndex1`=16, `EffectMiscValue1`=12143, `DmgMultiplier1`=1 WHERE `Id`=21112; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `EffectImplicitTargetA1`=17, `EffectRadiusIndex1`=16, `EffectMiscValue1`=12143, `DmgMultiplier1`=1 WHERE `Id`=21113; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `EffectImplicitTargetA1`=17, `EffectRadiusIndex1`=16, `EffectMiscValue1`=12143, `DmgMultiplier1`=1 WHERE `Id`=21114; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `EffectImplicitTargetA1`=17, `EffectRadiusIndex1`=16, `EffectMiscValue1`=12143, `DmgMultiplier1`=1 WHERE `Id`=21115; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `EffectImplicitTargetA1`=17, `EffectRadiusIndex1`=16, `EffectMiscValue1`=12143, `DmgMultiplier1`=1 WHERE `Id`=21116; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `EffectImplicitTargetA1`=17, `EffectRadiusIndex1`=16, `EffectMiscValue1`=12143, `DmgMultiplier1`=1 WHERE `Id`=21117; +UPDATE `spell_dbc` SET `ProcChance`=101, `BaseLevel`=40, `SpellLevel`=40, `Effect1`=6, `EffectDieSides1`=1, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=23, `EffectAmplitude1`=10000, `EffectTriggerSpell1`=21174, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=21129; +UPDATE `spell_dbc` SET `ProcChance`=101, `BaseLevel`=45, `SpellLevel`=45, `Effect1`=6, `EffectDieSides1`=1, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=23, `EffectAmplitude1`=10000, `EffectTriggerSpell1`=21172, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=21130; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=26, `DmgMultiplier1`=1 WHERE `Id`=21173; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectDieSides1`=1, `EffectBasePoints1`=149, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=31, `DmgMultiplier1`=1 WHERE `Id`=21190; +UPDATE `spell_dbc` SET `ProcFlags`=87376, `ProcChance`=101, `Effect1`=1, `EffectDieSides1`=1, `EffectBasePoints1`=14999, `EffectImplicitTargetA1`=18, `EffectImplicitTargetB1`=8, `EffectRadiusIndex1`=28, `EffectApplyAuraName1`=107, `EffectMiscValue1`=1, `SpellFamilyName`=3, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=21247; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `EffectImplicitTargetA1`=32, `EffectRadiusIndex1`=12, `EffectMiscValue1`=13256, `DmgMultiplier1`=1 WHERE `Id`=21287; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectDieSides1`=1, `EffectBasePoints1`=99, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=31, `DmgMultiplier1`=1 WHERE `Id`=21353; +UPDATE `spell_dbc` SET `ProcFlags`=40, `ProcChance`=15, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=42, `EffectTriggerSpell1`=21388, `DmgMultiplier1`=1 WHERE `Id`=21387; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=76, `EffectImplicitTargetA1`=32, `EffectRadiusIndex1`=15, `EffectMiscValue1`=178584, `DmgMultiplier1`=1 WHERE `Id`=21545; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=86, `EffectDieSides1`=1, `EffectImplicitTargetA1`=18, `EffectImplicitTargetB1`=52, `EffectRadiusIndex1`=12, `EffectMiscValue1`=5, `DmgMultiplier1`=1 WHERE `Id`=21548; +UPDATE `spell_dbc` SET `Targets`=256, `ProcChance`=101, `Effect1`=77, `DmgMultiplier1`=1 WHERE `Id`=21554; +UPDATE `spell_dbc` SET `ProcChance`=101, `BaseLevel`=1, `SpellLevel`=1, `Effect1`=6, `Effect2`=6, `EffectImplicitTargetA1`=1, `EffectImplicitTargetA2`=1, `EffectApplyAuraName1`=38, `EffectApplyAuraName2`=37, `EffectMiscValue1`=12, `EffectMiscValue2`=68, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=21561; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=86, `EffectDieSides1`=1, `EffectImplicitTargetA1`=40, `EffectMiscValue1`=5, `DmgMultiplier1`=1 WHERE `Id`=21709; +UPDATE `spell_dbc` SET `Effect1`=43, `EffectDieSides1`=1, `EffectImplicitTargetA1`=6, `EffectImplicitTargetB1`=47, `EffectRadiusIndex1`=8, `DmgMultiplier1`=1 WHERE `Id`=21727; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectDieSides1`=1, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=23, `EffectAmplitude1`=5000, `EffectTriggerSpell1`=21709, `DmgMultiplier1`=1 WHERE `Id`=21733; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=86, `Effect2`=86, `EffectDieSides1`=1, `EffectDieSides2`=1, `EffectImplicitTargetA1`=22, `EffectImplicitTargetA2`=22, `EffectImplicitTargetB1`=51, `EffectImplicitTargetB2`=51, `EffectRadiusIndex1`=12, `EffectRadiusIndex2`=12, `EffectMiscValue1`=12, `EffectMiscValue2`=12, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=21767; +UPDATE `spell_dbc` SET `ProcFlags`=20, `ProcChance`=30, `Effect1`=6, `EffectDieSides1`=1, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=42, `EffectTriggerSpell1`=19707, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=21789; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=38, `DmgMultiplier1`=1 WHERE `Id`=21795; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectImplicitTargetA1`=25, `EffectApplyAuraName1`=4, `DmgMultiplier1`=1 WHERE `Id`=21827; +UPDATE `spell_dbc` SET `Targets`=256, `ProcChance`=101, `Effect1`=77, `Effect2`=64, `EffectTriggerSpell2`=21830, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=21828; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=22, `EffectImplicitTargetB1`=7, `EffectRadiusIndex1`=9, `DmgMultiplier1`=1 WHERE `Id`=21830; +UPDATE `spell_dbc` SET `ProcChance`=101, `BaseLevel`=62, `SpellLevel`=62, `Effect1`=6, `Effect2`=6, `EffectImplicitTargetA1`=1, `EffectImplicitTargetA2`=1, `EffectApplyAuraName1`=25, `EffectApplyAuraName2`=39, `EffectMiscValue2`=127, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=21859; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectImplicitTargetA1`=25, `EffectApplyAuraName1`=4, `DmgMultiplier1`=1 WHERE `Id`=21863; +UPDATE `spell_dbc` SET `Targets`=256, `ProcChance`=101, `Effect1`=77, `Effect2`=64, `EffectTriggerSpell2`=21865, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=21864; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=22, `EffectImplicitTargetB1`=7, `EffectRadiusIndex1`=9, `DmgMultiplier1`=1 WHERE `Id`=21865; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=38, `DmgMultiplier1`=1 WHERE `Id`=21867; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=76, `Effect2`=41, `EffectDieSides1`=1, `EffectDieSides2`=2, `EffectBasePoints2`=1, `EffectImplicitTargetA1`=22, `EffectImplicitTargetA2`=48, `EffectRadiusIndex2`=15, `EffectMiscValue1`=178904, `EffectMiscValue2`=13696, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=21883; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=76, `EffectImplicitTargetA1`=17, `EffectMiscValue1`=178088, `DmgMultiplier1`=1 WHERE `Id`=21886; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=76, `EffectImplicitTargetA1`=17, `EffectMiscValue1`=178088, `DmgMultiplier1`=1 WHERE `Id`=21900; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=76, `EffectImplicitTargetA1`=17, `EffectMiscValue1`=178088, `DmgMultiplier1`=1 WHERE `Id`=21901; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=76, `EffectImplicitTargetA1`=17, `EffectMiscValue1`=178088, `DmgMultiplier1`=1 WHERE `Id`=21902; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=76, `EffectImplicitTargetA1`=17, `EffectMiscValue1`=178088, `DmgMultiplier1`=1 WHERE `Id`=21903; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=76, `EffectImplicitTargetA1`=17, `EffectMiscValue1`=178088, `DmgMultiplier1`=1 WHERE `Id`=21904; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=76, `EffectImplicitTargetA1`=17, `EffectMiscValue1`=178088, `DmgMultiplier1`=1 WHERE `Id`=21905; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=76, `EffectImplicitTargetA1`=17, `EffectMiscValue1`=178088, `DmgMultiplier1`=1 WHERE `Id`=21906; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=76, `EffectImplicitTargetA1`=17, `EffectMiscValue1`=178088, `DmgMultiplier1`=1 WHERE `Id`=21907; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=1, `DmgMultiplier1`=1 WHERE `Id`=21908; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=1, `DmgMultiplier1`=1 WHERE `Id`=21914; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=22, `EffectImplicitTargetB1`=7, `EffectRadiusIndex1`=9, `DmgMultiplier1`=1 WHERE `Id`=21917; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=38, `EffectRadiusIndex1`=12, `DmgMultiplier1`=1 WHERE `Id`=21934; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=42, `EffectDieSides1`=1, `EffectBasePoints1`=1, `EffectImplicitTargetA1`=18, `EffectMultipleValue1`=1E+08, `EffectMiscValue1`=7360, `DmgMultiplier1`=1 WHERE `Id`=21988; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectDieSides1`=1, `EffectBasePoints1`=3, `EffectImplicitTargetA1`=25, `EffectApplyAuraName1`=139, `EffectMiscValue1`=790, `DmgMultiplier1`=1, `AreaGroupId`=27 WHERE `Id`=21989; +UPDATE `spell_dbc` SET `ProcChance`=101, `SpellLevel`=1, `EquippedItemSubClassMask`=-1, `Effect1`=6, `EffectDieSides1`=1, `EffectBasePoints1`=-1, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=23, `EffectAmplitude1`=2000, `SpellFamilyName`=11, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=22049; +UPDATE `spell_dbc` SET `ProcChance`=101, `SpellLevel`=1, `EquippedItemSubClassMask`=-1, `Effect1`=3, `EffectImplicitTargetA1`=1, `SpellFamilyName`=11, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=22050; +UPDATE `spell_dbc` SET `Targets`=256, `ProcChance`=101, `Effect1`=24, `DmgMultiplier1`=1 WHERE `Id`=22190; +UPDATE `spell_dbc` SET `Targets`=256, `ProcChance`=101, `Effect1`=24, `DmgMultiplier1`=1 WHERE `Id`=22208; +UPDATE `spell_dbc` SET `Targets`=256, `ProcChance`=101, `Effect1`=24, `DmgMultiplier1`=1 WHERE `Id`=22209; +UPDATE `spell_dbc` SET `Targets`=256, `ProcChance`=101, `Effect1`=24, `DmgMultiplier1`=1 WHERE `Id`=22210; +UPDATE `spell_dbc` SET `Targets`=256, `ProcChance`=101, `Effect1`=24, `DmgMultiplier1`=1 WHERE `Id`=22211; +UPDATE `spell_dbc` SET `ProcChance`=101, `EquippedItemSubClassMask`=-1, `Effect1`=3, `EffectImplicitTargetA1`=1, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=22269; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectDieSides1`=1, `EffectImplicitTargetA1`=1, `DmgMultiplier1`=1 WHERE `Id`=22276; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectDieSides1`=1, `EffectImplicitTargetA1`=1, `DmgMultiplier1`=1 WHERE `Id`=22282; +UPDATE `spell_dbc` SET `ProcFlags`=20, `ProcChance`=40, `Effect1`=6, `EffectDieSides1`=1, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=42, `EffectTriggerSpell1`=22284, `DmgMultiplier1`=1 WHERE `Id`=22283; +UPDATE `spell_dbc` SET `ProcFlags`=20, `ProcChance`=40, `Effect1`=6, `EffectDieSides1`=1, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=42, `EffectTriggerSpell1`=22290, `DmgMultiplier1`=1 WHERE `Id`=22285; +UPDATE `spell_dbc` SET `ProcFlags`=20, `ProcChance`=40, `Effect1`=6, `EffectDieSides1`=1, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=42, `EffectTriggerSpell1`=22291, `DmgMultiplier1`=1 WHERE `Id`=22286; +UPDATE `spell_dbc` SET `ProcFlags`=20, `ProcChance`=40, `Effect1`=6, `EffectDieSides1`=1, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=42, `EffectTriggerSpell1`=22312, `DmgMultiplier1`=1 WHERE `Id`=22287; +UPDATE `spell_dbc` SET `ProcFlags`=20, `ProcChance`=40, `Effect1`=6, `EffectDieSides1`=1, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=42, `EffectTriggerSpell1`=22289, `DmgMultiplier1`=1 WHERE `Id`=22288; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `Effect2`=6, `Effect3`=6, `EffectDieSides2`=1, `EffectDieSides3`=1, `EffectBasePoints2`=-276, `EffectBasePoints3`=274, `EffectImplicitTargetA1`=1, `EffectImplicitTargetA2`=1, `EffectImplicitTargetA3`=1, `EffectApplyAuraName1`=56, `EffectApplyAuraName2`=22, `EffectApplyAuraName3`=22, `EffectMiscValue1`=14061, `EffectMiscValue2`=32, `EffectMiscValue3`=4, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=22352; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `Effect2`=6, `Effect3`=6, `EffectDieSides2`=1, `EffectDieSides3`=1, `EffectBasePoints2`=-276, `EffectBasePoints3`=274, `EffectImplicitTargetA1`=1, `EffectImplicitTargetA2`=1, `EffectImplicitTargetA3`=1, `EffectApplyAuraName1`=56, `EffectApplyAuraName2`=22, `EffectApplyAuraName3`=22, `EffectMiscValue1`=14062, `EffectMiscValue2`=32, `EffectMiscValue3`=8, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=22353; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `Effect2`=6, `Effect3`=6, `EffectDieSides2`=1, `EffectDieSides3`=1, `EffectBasePoints2`=-276, `EffectBasePoints3`=274, `EffectImplicitTargetA1`=1, `EffectImplicitTargetA2`=1, `EffectImplicitTargetA3`=1, `EffectApplyAuraName1`=56, `EffectApplyAuraName2`=22, `EffectApplyAuraName3`=22, `EffectMiscValue1`=14063, `EffectMiscValue2`=32, `EffectMiscValue3`=64, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=22354; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectDieSides1`=1, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=23, `EffectAmplitude1`=30000, `EffectTriggerSpell1`=22392, `DmgMultiplier1`=1 WHERE `Id`=22391; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=56, `EffectMiscValue1`=14181, `DmgMultiplier1`=1 WHERE `Id`=22483; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `Effect2`=6, `Effect3`=6, `EffectDieSides2`=1, `EffectDieSides3`=1, `EffectBasePoints2`=-276, `EffectBasePoints3`=274, `EffectImplicitTargetA1`=1, `EffectImplicitTargetA2`=1, `EffectImplicitTargetA3`=1, `EffectApplyAuraName1`=56, `EffectApplyAuraName2`=22, `EffectApplyAuraName3`=22, `EffectMiscValue1`=14184, `EffectMiscValue2`=32, `EffectMiscValue3`=16, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=22520; +UPDATE `spell_dbc` SET `ProcChance`=101, `BaseLevel`=1, `SpellLevel`=1, `Effect1`=6, `Effect2`=6, `EffectDieSides1`=1, `EffectDieSides2`=1, `EffectBasePoints1`=199, `EffectBasePoints2`=199, `EffectImplicitTargetA1`=5, `EffectImplicitTargetA2`=5, `EffectApplyAuraName1`=79, `EffectApplyAuraName2`=133, `EffectMiscValue1`=127, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=22647; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=23, `EffectAmplitude1`=2000, `EffectTriggerSpell1`=22659, `DmgMultiplier1`=1 WHERE `Id`=22652; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=23, `EffectAmplitude1`=5000, `EffectTriggerSpell1`=22659, `DmgMultiplier1`=1 WHERE `Id`=22653; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=23, `EffectAmplitude1`=8000, `EffectTriggerSpell1`=22680, `DmgMultiplier1`=1 WHERE `Id`=22679; +UPDATE `spell_dbc` SET `ProcFlags`=664232, `ProcChance`=100, `Effect1`=6, `EffectDieSides1`=1, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=4, `EffectMultipleValue1`=1, `DmgMultiplier1`=1 WHERE `Id`=22697; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=77, `EffectImplicitTargetA1`=22, `EffectImplicitTargetB1`=15, `EffectRadiusIndex1`=13, `DmgMultiplier1`=1 WHERE `Id`=22701; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=26, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=22707; +UPDATE `spell_dbc` SET `Dispel`=1, `ProcFlags`=20, `ProcChance`=100, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=42, `EffectTriggerSpell1`=22715, `DmgClass`=1, `PreventionType`=1, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=22716; +UPDATE `spell_dbc` SET `ProcChance`=101, `EquippedItemClass`=2, `EquippedItemSubClassMask`=42483, `Effect1`=6, `EffectDieSides1`=1, `EffectBasePoints1`=27, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=189, `EffectMiscValue1`=256, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=22755; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=22, `EffectImplicitTargetB1`=15, `EffectRadiusIndex1`=13, `DmgMultiplier1`=1 WHERE `Id`=22764; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=63, `EffectDieSides1`=1, `EffectImplicitTargetA1`=6, `DmgMultiplier1`=1 WHERE `Id`=22765; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `Effect2`=6, `EffectDieSides2`=1, `EffectImplicitTargetA1`=1, `EffectImplicitTargetA2`=1, `EffectApplyAuraName1`=12, `EffectApplyAuraName2`=23, `EffectAmplitude2`=2000, `EffectTriggerSpell2`=22786, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=22787; +UPDATE `spell_dbc` SET `ProcChance`=101, `StackAmount`=500, `Effect1`=6, `EffectDieSides1`=1, `EffectBasePoints1`=99, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=61, `DmgMultiplier1`=1 WHERE `Id`=22788; +UPDATE `spell_dbc` SET `ProcChance`=101, `BaseLevel`=20, `SpellLevel`=20, `Effect1`=41, `EffectDieSides1`=1, `EffectBasePoints1`=3, `EffectImplicitTargetA1`=32, `EffectRadiusIndex1`=14, `EffectMiscValue1`=13022, `SpellFamilyName`=6, `SpellFamilyFlags1`=8388608, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=22803; +UPDATE `spell_dbc` SET `ProcChance`=101, `BaseLevel`=20, `SpellLevel`=20, `Effect1`=41, `EffectDieSides1`=1, `EffectImplicitTargetA1`=32, `EffectRadiusIndex1`=16, `EffectMiscValue1`=14366, `SpellFamilyName`=6, `SpellFamilyFlags1`=8388608, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=22821; +UPDATE `spell_dbc` SET `Targets`=256, `ProcChance`=101, `Effect1`=24, `DmgMultiplier1`=1 WHERE `Id`=22837; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `Effect2`=6, `EffectDieSides1`=1, `EffectDieSides2`=1, `EffectBasePoints1`=9, `EffectImplicitTargetA1`=1, `EffectImplicitTargetA2`=1, `EffectApplyAuraName1`=189, `EffectApplyAuraName2`=140, `EffectMiscValue1`=393216, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=22841; +UPDATE `spell_dbc` SET `ProcChance`=101, `EquippedItemSubClassMask`=-1, `Effect1`=6, `Effect2`=6, `EffectDieSides1`=1, `EffectDieSides2`=1, `EffectBasePoints1`=7, `EffectBasePoints2`=7, `EffectImplicitTargetA1`=1, `EffectImplicitTargetA2`=1, `EffectApplyAuraName1`=13, `EffectApplyAuraName2`=135, `EffectMiscValue1`=126, `EffectMiscValue2`=126, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=22843; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectDieSides1`=1, `EffectBasePoints1`=11, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=189, `EffectMiscValue1`=4, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=22847; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=1, `DmgMultiplier1`=1 WHERE `Id`=22879; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=61, `EffectImplicitTargetA1`=1, `EffectMiscValue1`=8227, `DmgMultiplier1`=1 WHERE `Id`=22880; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=61, `EffectImplicitTargetA1`=1, `EffectMiscValue1`=8229, `DmgMultiplier1`=1 WHERE `Id`=22881; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=61, `EffectImplicitTargetA1`=1, `EffectMiscValue1`=8228, `DmgMultiplier1`=1 WHERE `Id`=22882; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=76, `Effect2`=86, `EffectImplicitTargetA1`=46, `EffectImplicitTargetA2`=40, `EffectMiscValue1`=179562, `EffectMiscValue2`=15, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=22904; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=22, `EffectImplicitTargetB1`=15, `EffectRadiusIndex1`=12, `DmgMultiplier1`=1 WHERE `Id`=22913; +UPDATE `spell_dbc` SET `Targets`=256, `ProcChance`=101, `Effect1`=24, `DmgMultiplier1`=1 WHERE `Id`=22925; +UPDATE `spell_dbc` SET `Targets`=256, `ProcChance`=101, `Effect1`=24, `DmgMultiplier1`=1 WHERE `Id`=22941; +UPDATE `spell_dbc` SET `Targets`=256, `ProcChance`=101, `Effect1`=24, `DmgMultiplier1`=1 WHERE `Id`=22942; +UPDATE `spell_dbc` SET `Targets`=256, `ProcChance`=101, `Effect1`=24, `DmgMultiplier1`=1 WHERE `Id`=22943; +UPDATE `spell_dbc` SET `Targets`=256, `ProcChance`=101, `Effect1`=24, `DmgMultiplier1`=1 WHERE `Id`=22944; +UPDATE `spell_dbc` SET `Targets`=256, `ProcChance`=101, `Effect1`=24, `DmgMultiplier1`=1 WHERE `Id`=22958; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=1, `DmgMultiplier1`=1 WHERE `Id`=22970; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `Effect2`=6, `Effect3`=6, `EffectDieSides1`=1, `EffectDieSides2`=1, `EffectDieSides3`=1, `EffectBasePoints1`=-36, `EffectBasePoints2`=-101, `EffectBasePoints3`=-51, `EffectImplicitTargetA1`=1, `EffectImplicitTargetA2`=1, `EffectImplicitTargetA3`=1, `EffectApplyAuraName1`=61, `EffectApplyAuraName2`=138, `EffectApplyAuraName3`=79, `EffectMiscValue3`=1, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=23021; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=76, `EffectImplicitTargetA1`=18, `EffectMiscValue1`=179644, `DmgMultiplier1`=1 WHERE `Id`=23022; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=38, `EffectRadiusIndex1`=12, `DmgMultiplier1`=1 WHERE `Id`=23031; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=22, `EffectImplicitTargetB1`=7, `EffectRadiusIndex1`=12, `DmgMultiplier1`=1 WHERE `Id`=23032; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=50, `EffectImplicitTargetA1`=18, `EffectMiscValue1`=179681, `DmgMultiplier1`=1 WHERE `Id`=23057; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `EffectDieSides1`=3, `EffectImplicitTargetA1`=32, `EffectRadiusIndex1`=13, `EffectMiscValue1`=14486, `DmgMultiplier1`=1 WHERE `Id`=23118; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `Effect2`=64, `EffectDieSides1`=5, `EffectBasePoints1`=5, `EffectImplicitTargetA1`=32, `EffectRadiusIndex1`=8, `EffectMiscValue1`=14484, `EffectTriggerSpell2`=23121, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=23119; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `EffectDieSides1`=5, `EffectBasePoints1`=5, `EffectImplicitTargetA1`=32, `EffectRadiusIndex1`=8, `EffectMiscValue1`=14485, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=23121; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=22, `EffectImplicitTargetB1`=7, `EffectRadiusIndex1`=12, `DmgMultiplier1`=1 WHERE `Id`=23137; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=61, `EffectMiscValue1`=8430, `DmgMultiplier1`=1 WHERE `Id`=23156; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=22, `EffectImplicitTargetB1`=15, `EffectRadiusIndex1`=12, `DmgMultiplier1`=1 WHERE `Id`=23173; +UPDATE `spell_dbc` SET `AuraInterruptFlags`=524288, `ProcChance`=101, `Effect1`=6, `Effect2`=6, `Effect3`=6, `EffectDieSides1`=1, `EffectDieSides2`=1, `EffectDieSides3`=1, `EffectBasePoints1`=499, `EffectBasePoints2`=99, `EffectBasePoints3`=299, `EffectImplicitTargetA1`=1, `EffectImplicitTargetA2`=1, `EffectImplicitTargetA3`=1, `EffectApplyAuraName1`=79, `EffectApplyAuraName2`=138, `EffectApplyAuraName3`=65, `EffectMiscValue1`=127, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=23175; +UPDATE `spell_dbc` SET `AuraInterruptFlags`=524288, `ProcChance`=101, `Effect1`=6, `Effect2`=6, `EffectDieSides1`=1, `EffectDieSides2`=1, `EffectBasePoints1`=9999, `EffectBasePoints2`=999, `EffectImplicitTargetA1`=1, `EffectImplicitTargetA2`=1, `EffectApplyAuraName1`=34, `EffectApplyAuraName2`=136, `EffectMiscValue2`=127, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=23177; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=22, `EffectImplicitTargetB1`=15, `EffectRadiusIndex1`=12, `DmgMultiplier1`=1 WHERE `Id`=23185; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=1, `DmgMultiplier1`=1 WHERE `Id`=23195; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectDieSides1`=1, `EffectBasePoints1`=999, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=19, `EffectMiscValue1`=4, `DmgMultiplier1`=1 WHERE `Id`=23199; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=56, `EffectMiscValue1`=7728, `DmgMultiplier1`=1 WHERE `Id`=23200; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `Effect2`=41, `EffectDieSides2`=1, `EffectImplicitTargetA1`=6, `EffectImplicitTargetA2`=32, `EffectRadiusIndex2`=14, `EffectMiscValue2`=14503, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=23201; +UPDATE `spell_dbc` SET `ProcChance`=101, `EquippedItemSubClassMask`=-1, `Effect1`=41, `Effect2`=64, `EffectDieSides1`=1, `EffectImplicitTargetA1`=32, `EffectImplicitTargetA2`=1, `EffectMiscValue1`=14564, `EffectTriggerSpell2`=23253, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=23209; +UPDATE `spell_dbc` SET `ProcChance`=101, `EquippedItemSubClassMask`=-1, `Effect1`=41, `EffectDieSides1`=1, `EffectImplicitTargetA1`=32, `EffectMiscValue1`=14564, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=23253; +UPDATE `spell_dbc` SET `ProcFlags`=87380, `ProcChance`=100, `SpellLevel`=1, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=42, `EffectTriggerSpell1`=23256, `SpellFamilyName`=4, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=23255; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=38, `Effect2`=38, `Effect3`=38, `EffectDieSides1`=1, `EffectDieSides2`=1, `EffectDieSides3`=1, `EffectBasePoints1`=4, `EffectBasePoints2`=4, `EffectBasePoints3`=4, `EffectImplicitTargetA1`=1, `EffectImplicitTargetA2`=1, `EffectImplicitTargetA3`=1, `EffectMiscValue1`=1, `EffectMiscValue2`=3, `EffectMiscValue3`=4, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=23258; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=1, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=23307; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=63, `EffectImplicitTargetA1`=25, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=23311; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=61, `EffectMiscValue1`=8446, `DmgMultiplier1`=1 WHERE `Id`=23317; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=61, `EffectMiscValue1`=8447, `DmgMultiplier1`=1 WHERE `Id`=23318; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=61, `EffectMiscValue1`=8448, `DmgMultiplier1`=1 WHERE `Id`=23319; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=61, `EffectMiscValue1`=8449, `DmgMultiplier1`=1 WHERE `Id`=23320; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=61, `EffectMiscValue1`=8450, `DmgMultiplier1`=1 WHERE `Id`=23321; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=61, `EffectMiscValue1`=8451, `DmgMultiplier1`=1 WHERE `Id`=23322; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=61, `EffectMiscValue1`=8452, `DmgMultiplier1`=1 WHERE `Id`=23323; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=61, `EffectMiscValue1`=8453, `DmgMultiplier1`=1 WHERE `Id`=23324; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=61, `EffectMiscValue1`=8454, `DmgMultiplier1`=1 WHERE `Id`=23325; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=61, `EffectMiscValue1`=8455, `DmgMultiplier1`=1 WHERE `Id`=23326; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=67, `EffectDieSides1`=1, `EffectImplicitTargetA1`=1, `DmgMultiplier1`=1 WHERE `Id`=23329; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectDieSides1`=1, `EffectBasePoints1`=-501, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=17, `DmgMultiplier1`=1 WHERE `Id`=23330; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `DmgMultiplier1`=1 WHERE `Id`=23343; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=61, `EffectMiscValue1`=8520, `DmgMultiplier1`=1 WHERE `Id`=23344; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=61, `EffectMiscValue1`=8521, `DmgMultiplier1`=1 WHERE `Id`=23345; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=61, `EffectMiscValue1`=8522, `DmgMultiplier1`=1 WHERE `Id`=23346; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=61, `EffectMiscValue1`=8523, `DmgMultiplier1`=1 WHERE `Id`=23347; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=61, `EffectMiscValue1`=8524, `DmgMultiplier1`=1 WHERE `Id`=23348; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=61, `EffectMiscValue1`=8525, `DmgMultiplier1`=1 WHERE `Id`=23349; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=61, `EffectMiscValue1`=8526, `DmgMultiplier1`=1 WHERE `Id`=23350; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=61, `EffectMiscValue1`=8527, `DmgMultiplier1`=1 WHERE `Id`=23351; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=61, `EffectMiscValue1`=8528, `DmgMultiplier1`=1 WHERE `Id`=23352; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=61, `EffectMiscValue1`=8529, `DmgMultiplier1`=1 WHERE `Id`=23353; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `Effect2`=86, `EffectDieSides1`=1, `EffectDieSides2`=1, `EffectImplicitTargetA1`=18, `EffectImplicitTargetA2`=40, `EffectMiscValue1`=14605, `EffectMiscValue2`=15, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=23361; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=86, `EffectImplicitTargetA1`=22, `EffectImplicitTargetB1`=51, `EffectRadiusIndex1`=12, `EffectMiscValue1`=5, `DmgMultiplier1`=1 WHERE `Id`=23362; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=76, `EffectImplicitTargetA1`=18, `EffectMiscValue1`=179804, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=23363; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=25, `DmgMultiplier1`=1 WHERE `Id`=23383; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=25, `DmgMultiplier1`=1 WHERE `Id`=23384; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=61, `Effect2`=86, `EffectDieSides2`=1, `EffectBasePoints2`=-1, `EffectImplicitTargetA1`=1, `EffectImplicitTargetA2`=40, `EffectMiscValue1`=8508, `EffectMiscValue2`=15, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=23385; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=61, `Effect2`=86, `EffectDieSides2`=1, `EffectBasePoints2`=-1, `EffectImplicitTargetA1`=1, `EffectImplicitTargetA2`=40, `EffectMiscValue1`=8509, `EffectMiscValue2`=15, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=23386; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=4, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=23387; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=4, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=23388; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=22, `EffectImplicitTargetB1`=7, `EffectRadiusIndex1`=13, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=23390; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=5, `EffectImplicitTargetA1`=25, `EffectImplicitTargetB1`=17, `DmgMultiplier1`=1 WHERE `Id`=23405; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=5, `EffectImplicitTargetA1`=25, `EffectImplicitTargetB1`=17, `DmgMultiplier1`=1 WHERE `Id`=23406; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=22, `EffectImplicitTargetB1`=7, `EffectRadiusIndex1`=12, `DmgMultiplier1`=1 WHERE `Id`=23407; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=76, `EffectImplicitTargetA1`=32, `EffectRadiusIndex1`=15, `EffectMiscValue1`=179832, `DmgMultiplier1`=1 WHERE `Id`=23408; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=1, `SpellFamilyName`=4, `PreventionType`=1, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=23424; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=22, `EffectImplicitTargetB1`=15, `EffectRadiusIndex1`=12, `SpellFamilyName`=4, `PreventionType`=1, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=23439; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=24, `EffectDieSides1`=1, `EffectImplicitTargetA1`=1, `DmgMultiplier1`=1 WHERE `Id`=23464; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=86, `EffectImplicitTargetA1`=22, `EffectImplicitTargetB1`=51, `EffectRadiusIndex1`=12, `EffectMiscValue1`=15, `DmgMultiplier1`=1 WHERE `Id`=23479; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=22, `EffectImplicitTargetB1`=7, `EffectRadiusIndex1`=12, `DmgMultiplier1`=1 WHERE `Id`=23484; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectImplicitTargetA1`=22, `EffectImplicitTargetB1`=7, `EffectRadiusIndex1`=12, `EffectApplyAuraName1`=4, `DmgMultiplier1`=1 WHERE `Id`=23487; +UPDATE `spell_dbc` SET `ProcChance`=101, `BaseLevel`=10, `SpellLevel`=10, `Effect1`=109, `EffectDieSides1`=1, `EffectBasePoints1`=99, `EffectImplicitTargetA1`=47, `EffectRadiusIndex1`=15, `SpellFamilyName`=9, `SpellFamilyFlags1`=16777216, `DmgClass`=1, `PreventionType`=1, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=23499; +UPDATE `spell_dbc` SET `ProcChance`=101, `BaseLevel`=30, `SpellLevel`=30, `EquippedItemSubClassMask`=-1, `Effect1`=56, `EffectDieSides1`=1, `EffectImplicitTargetA1`=32, `EffectMiscValue1`=417, `SpellFamilyName`=5, `SpellFamilyFlags1`=536870912, `DmgClass`=1, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=23500; +UPDATE `spell_dbc` SET `ProcChance`=101, `BaseLevel`=30, `SpellLevel`=30, `EquippedItemSubClassMask`=-1, `Effect1`=56, `EffectDieSides1`=1, `EffectImplicitTargetA1`=32, `EffectMiscValue1`=1860, `SpellFamilyName`=5, `SpellFamilyFlags1`=536870912, `DmgClass`=1, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=23501; +UPDATE `spell_dbc` SET `ProcChance`=101, `BaseLevel`=30, `SpellLevel`=30, `EquippedItemSubClassMask`=-1, `Effect1`=56, `EffectDieSides1`=1, `EffectImplicitTargetA1`=32, `EffectMiscValue1`=1863, `SpellFamilyName`=5, `SpellFamilyFlags1`=536870912, `DmgClass`=1, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=23502; +UPDATE `spell_dbc` SET `ProcChance`=101, `BaseLevel`=30, `SpellLevel`=30, `EquippedItemSubClassMask`=-1, `Effect1`=56, `EffectDieSides1`=1, `EffectImplicitTargetA1`=32, `EffectMiscValue1`=416, `SpellFamilyName`=5, `SpellFamilyFlags1`=536870912, `DmgClass`=1, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=23503; +UPDATE `spell_dbc` SET `ProcChance`=101, `BaseLevel`=10, `SpellLevel`=10, `EquippedItemSubClassMask`=-1, `Effect1`=24, `EffectDieSides1`=1, `EffectImplicitTargetA1`=1, `SpellFamilyName`=5, `DmgClass`=1, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=23518; +UPDATE `spell_dbc` SET `ProcChance`=101, `BaseLevel`=10, `SpellLevel`=10, `EquippedItemSubClassMask`=-1, `Effect1`=24, `EffectDieSides1`=1, `EffectImplicitTargetA1`=1, `SpellFamilyName`=5, `DmgClass`=1, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=23519; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=103, `EffectDieSides1`=1, `EffectBasePoints1`=34, `EffectImplicitTargetA1`=21, `EffectMiscValue1`=890, `DmgMultiplier1`=1 WHERE `Id`=23523; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=103, `EffectDieSides1`=1, `EffectBasePoints1`=41, `EffectImplicitTargetA1`=21, `EffectMiscValue1`=890, `DmgMultiplier1`=1 WHERE `Id`=23524; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=103, `EffectDieSides1`=1, `EffectBasePoints1`=34, `EffectImplicitTargetA1`=21, `EffectMiscValue1`=889, `DmgMultiplier1`=1 WHERE `Id`=23525; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=103, `EffectDieSides1`=1, `EffectBasePoints1`=41, `EffectImplicitTargetA1`=21, `EffectMiscValue1`=889, `DmgMultiplier1`=1 WHERE `Id`=23526; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=103, `EffectDieSides1`=1, `EffectBasePoints1`=11, `EffectImplicitTargetA1`=21, `EffectMiscValue1`=730, `DmgMultiplier1`=1 WHERE `Id`=23527; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=103, `EffectDieSides1`=1, `EffectBasePoints1`=11, `EffectImplicitTargetA1`=21, `EffectMiscValue1`=729, `DmgMultiplier1`=1 WHERE `Id`=23528; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=103, `EffectDieSides1`=1, `EffectBasePoints1`=23, `EffectImplicitTargetA1`=21, `EffectMiscValue1`=729, `DmgMultiplier1`=1 WHERE `Id`=23529; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=103, `EffectDieSides1`=1, `EffectBasePoints1`=59, `EffectImplicitTargetA1`=21, `EffectMiscValue1`=729, `DmgMultiplier1`=1 WHERE `Id`=23532; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=103, `EffectDieSides1`=1, `EffectBasePoints1`=349, `EffectImplicitTargetA1`=21, `EffectMiscValue1`=729, `DmgMultiplier1`=1 WHERE `Id`=23533; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=103, `EffectDieSides1`=1, `EffectBasePoints1`=23, `EffectImplicitTargetA1`=21, `EffectMiscValue1`=730, `DmgMultiplier1`=1 WHERE `Id`=23534; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=103, `EffectDieSides1`=1, `EffectBasePoints1`=124, `EffectImplicitTargetA1`=21, `EffectMiscValue1`=730, `DmgMultiplier1`=1 WHERE `Id`=23535; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=103, `EffectDieSides1`=1, `EffectBasePoints1`=349, `EffectImplicitTargetA1`=21, `EffectMiscValue1`=730, `DmgMultiplier1`=1 WHERE `Id`=23536; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=1, `EffectImplicitTargetA1`=1, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=23644; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=61, `Effect2`=86, `EffectImplicitTargetA2`=40, `EffectMiscValue1`=8510, `EffectMiscValue2`=15, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=23648; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=61, `Effect2`=86, `EffectImplicitTargetA2`=40, `EffectMiscValue1`=8511, `EffectMiscValue2`=15, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=23649; +UPDATE `spell_dbc` SET `AuraInterruptFlags`=1703936, `ProcChance`=101, `Effect1`=86, `EffectDieSides1`=1, `EffectBasePoints1`=-1, `EffectImplicitTargetA1`=40, `EffectMiscValue1`=15, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=23763; +UPDATE `spell_dbc` SET `AuraInterruptFlags`=1703936, `ProcChance`=101, `Effect1`=86, `EffectDieSides1`=1, `EffectBasePoints1`=-1, `EffectImplicitTargetA1`=40, `EffectMiscValue1`=15, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=23764; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectImplicitTargetA1`=25, `EffectApplyAuraName1`=4, `DmgMultiplier1`=1 WHERE `Id`=23770; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=22, `EffectImplicitTargetB1`=7, `EffectRadiusIndex1`=12, `DmgMultiplier1`=1 WHERE `Id`=23776; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=1, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=23777; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectDieSides1`=1, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=21, `EffectAmplitude1`=3000, `DmgMultiplier1`=1 WHERE `Id`=23779; +UPDATE `spell_dbc` SET `ProcChance`=101, `BaseLevel`=58, `SpellLevel`=58, `EquippedItemSubClassMask`=-1, `Effect1`=114, `Effect2`=6, `EffectImplicitTargetA1`=22, `EffectImplicitTargetA2`=22, `EffectImplicitTargetB1`=15, `EffectImplicitTargetB2`=15, `EffectRadiusIndex1`=13, `EffectRadiusIndex2`=13, `EffectApplyAuraName2`=11, `DmgClass`=1, `PreventionType`=1, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=23790; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=38, `DmgMultiplier1`=1 WHERE `Id`=23845; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=22, `EffectImplicitTargetB1`=15, `EffectRadiusIndex1`=12, `DmgMultiplier1`=1 WHERE `Id`=23878; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=61, `EffectImplicitTargetA1`=1, `EffectMiscValue1`=8567, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=23896; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=61, `EffectImplicitTargetA1`=1, `EffectMiscValue1`=8568, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=23897; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=77, `EffectImplicitTargetA1`=25, `DmgMultiplier1`=1 WHERE `Id`=23932; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=61, `EffectMiscValue1`=8868, `DmgMultiplier1`=1 WHERE `Id`=23933; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=61, `EffectMiscValue1`=8867, `DmgMultiplier1`=1 WHERE `Id`=23934; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=77, `EffectImplicitTargetA1`=25, `DmgMultiplier1`=1 WHERE `Id`=23935; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=77, `EffectImplicitTargetA1`=25, `DmgMultiplier1`=1 WHERE `Id`=23936; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=77, `EffectImplicitTargetA1`=25, `DmgMultiplier1`=1 WHERE `Id`=23937; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=77, `EffectImplicitTargetA1`=25, `DmgMultiplier1`=1 WHERE `Id`=23938; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=61, `EffectMiscValue1`=8882, `DmgMultiplier1`=1 WHERE `Id`=23939; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=61, `EffectMiscValue1`=8884, `DmgMultiplier1`=1 WHERE `Id`=23940; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=61, `EffectMiscValue1`=8878, `DmgMultiplier1`=1 WHERE `Id`=23941; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=61, `EffectMiscValue1`=8880, `DmgMultiplier1`=1 WHERE `Id`=23942; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=61, `EffectMiscValue1`=8870, `DmgMultiplier1`=1 WHERE `Id`=23943; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=61, `EffectMiscValue1`=8872, `DmgMultiplier1`=1 WHERE `Id`=23944; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=61, `EffectMiscValue1`=8874, `DmgMultiplier1`=1 WHERE `Id`=23945; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=61, `EffectMiscValue1`=8876, `DmgMultiplier1`=1 WHERE `Id`=23946; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=26, `DmgMultiplier1`=1 WHERE `Id`=23973; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=24, `EffectDieSides1`=1, `EffectImplicitTargetA1`=25, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=23975; +UPDATE `spell_dbc` SET `Targets`=256, `ProcChance`=101, `Effect1`=24, `DmgMultiplier1`=1 WHERE `Id`=23998; +UPDATE `spell_dbc` SET `Targets`=256, `ProcChance`=101, `Effect1`=24, `DmgMultiplier1`=1 WHERE `Id`=23999; +UPDATE `spell_dbc` SET `Targets`=256, `ProcChance`=101, `Effect1`=24, `DmgMultiplier1`=1 WHERE `Id`=24000; +UPDATE `spell_dbc` SET `Targets`=256, `ProcChance`=101, `Effect1`=24, `DmgMultiplier1`=1 WHERE `Id`=24001; +UPDATE `spell_dbc` SET `Targets`=256, `ProcChance`=101, `Effect1`=24, `DmgMultiplier1`=1 WHERE `Id`=24007; +UPDATE `spell_dbc` SET `Targets`=256, `ProcChance`=101, `Effect1`=24, `DmgMultiplier1`=1 WHERE `Id`=24008; +UPDATE `spell_dbc` SET `Targets`=256, `ProcChance`=101, `Effect1`=24, `DmgMultiplier1`=1 WHERE `Id`=24009; +UPDATE `spell_dbc` SET `Targets`=256, `ProcChance`=101, `Effect1`=24, `DmgMultiplier1`=1 WHERE `Id`=24010; +UPDATE `spell_dbc` SET `Targets`=256, `ProcChance`=101, `Effect1`=24, `DmgMultiplier1`=1 WHERE `Id`=24012; +UPDATE `spell_dbc` SET `Targets`=256, `ProcChance`=101, `Effect1`=24, `DmgMultiplier1`=1 WHERE `Id`=24013; +UPDATE `spell_dbc` SET `Targets`=256, `ProcChance`=101, `Effect1`=24, `DmgMultiplier1`=1 WHERE `Id`=24014; +UPDATE `spell_dbc` SET `Targets`=256, `ProcChance`=101, `Effect1`=24, `DmgMultiplier1`=1 WHERE `Id`=24015; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=22, `EffectImplicitTargetB1`=15, `EffectRadiusIndex1`=10, `DmgMultiplier1`=1 WHERE `Id`=24019; +UPDATE `spell_dbc` SET `Targets`=256, `ProcChance`=101, `Effect1`=24, `DmgMultiplier1`=1 WHERE `Id`=24038; +UPDATE `spell_dbc` SET `Targets`=256, `ProcChance`=101, `Effect1`=24, `DmgMultiplier1`=1 WHERE `Id`=24039; +UPDATE `spell_dbc` SET `Targets`=256, `ProcChance`=101, `Effect1`=24, `DmgMultiplier1`=1 WHERE `Id`=24040; +UPDATE `spell_dbc` SET `Targets`=256, `ProcChance`=101, `Effect1`=24, `DmgMultiplier1`=1 WHERE `Id`=24041; +UPDATE `spell_dbc` SET `Targets`=256, `ProcChance`=101, `Effect1`=24, `DmgMultiplier1`=1 WHERE `Id`=24044; +UPDATE `spell_dbc` SET `Targets`=256, `ProcChance`=101, `Effect1`=24, `DmgMultiplier1`=1 WHERE `Id`=24045; +UPDATE `spell_dbc` SET `Targets`=256, `ProcChance`=101, `Effect1`=24, `DmgMultiplier1`=1 WHERE `Id`=24046; +UPDATE `spell_dbc` SET `Targets`=256, `ProcChance`=101, `Effect1`=24, `DmgMultiplier1`=1 WHERE `Id`=24047; +UPDATE `spell_dbc` SET `Targets`=256, `ProcChance`=101, `Effect1`=24, `DmgMultiplier1`=1 WHERE `Id`=24055; +UPDATE `spell_dbc` SET `Targets`=256, `ProcChance`=101, `Effect1`=24, `DmgMultiplier1`=1 WHERE `Id`=24056; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `Effect2`=6, `EffectDieSides1`=1, `EffectDieSides2`=1, `EffectBasePoints2`=49, `EffectImplicitTargetA1`=1, `EffectImplicitTargetA2`=1, `EffectApplyAuraName1`=5, `EffectApplyAuraName2`=31, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=24057; +UPDATE `spell_dbc` SET `Targets`=256, `ProcChance`=101, `Effect1`=24, `DmgMultiplier1`=1 WHERE `Id`=24059; +UPDATE `spell_dbc` SET `Targets`=256, `ProcChance`=101, `Effect1`=24, `DmgMultiplier1`=1 WHERE `Id`=24060; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=23, `EffectAmplitude1`=4000, `EffectTriggerSpell1`=24065, `DmgMultiplier1`=1 WHERE `Id`=24066; +UPDATE `spell_dbc` SET `Targets`=256, `ProcChance`=101, `Effect1`=24, `DmgMultiplier1`=1 WHERE `Id`=24067; +UPDATE `spell_dbc` SET `Targets`=256, `ProcChance`=101, `Effect1`=24, `DmgMultiplier1`=1 WHERE `Id`=24068; +UPDATE `spell_dbc` SET `Targets`=256, `ProcChance`=101, `Effect1`=24, `DmgMultiplier1`=1 WHERE `Id`=24069; +UPDATE `spell_dbc` SET `Targets`=256, `ProcChance`=101, `Effect1`=24, `DmgMultiplier1`=1 WHERE `Id`=24070; +UPDATE `spell_dbc` SET `Targets`=256, `ProcChance`=101, `Effect1`=24, `DmgMultiplier1`=1 WHERE `Id`=24072; +UPDATE `spell_dbc` SET `Targets`=256, `ProcChance`=101, `Effect1`=24, `DmgMultiplier1`=1 WHERE `Id`=24073; +UPDATE `spell_dbc` SET `Targets`=256, `ProcChance`=101, `Effect1`=24, `DmgMultiplier1`=1 WHERE `Id`=24074; +UPDATE `spell_dbc` SET `Targets`=256, `ProcChance`=101, `Effect1`=24, `DmgMultiplier1`=1 WHERE `Id`=24075; +UPDATE `spell_dbc` SET `Targets`=256, `ProcChance`=101, `Effect1`=24, `DmgMultiplier1`=1 WHERE `Id`=24076; +UPDATE `spell_dbc` SET `Targets`=256, `ProcChance`=101, `Effect1`=24, `DmgMultiplier1`=1 WHERE `Id`=24077; +UPDATE `spell_dbc` SET `Targets`=256, `ProcChance`=101, `Effect1`=24, `DmgMultiplier1`=1 WHERE `Id`=24078; +UPDATE `spell_dbc` SET `Targets`=256, `ProcChance`=101, `Effect1`=24, `DmgMultiplier1`=1 WHERE `Id`=24079; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=1, `EffectDieSides1`=6, `EffectImplicitTargetA1`=25, `EffectMultipleValue1`=1, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=24080; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `EffectDieSides1`=1, `EffectImplicitTargetA1`=18, `EffectRadiusIndex1`=16, `EffectMiscValue1`=15041, `DmgMultiplier1`=1 WHERE `Id`=24081; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=86, `EffectDieSides1`=1, `EffectImplicitTargetA1`=40, `EffectMiscValue1`=8, `DmgMultiplier1`=1 WHERE `Id`=24082; +UPDATE `spell_dbc` SET `ProcChance`=101, `StackAmount`=10, `Effect1`=6, `Effect2`=6, `EffectDieSides1`=1, `EffectDieSides2`=1, `EffectBasePoints1`=24, `EffectBasePoints2`=24, `EffectImplicitTargetA1`=1, `EffectImplicitTargetA2`=1, `EffectApplyAuraName1`=79, `EffectApplyAuraName2`=61, `EffectMiscValue1`=1, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=24086; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectDieSides1`=1, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=23, `EffectAmplitude1`=4000, `EffectTriggerSpell1`=24086, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=24087; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `Effect2`=6, `Effect3`=6, `EffectDieSides1`=1, `EffectBasePoints1`=49, `EffectImplicitTargetA1`=1, `EffectImplicitTargetA2`=1, `EffectImplicitTargetA3`=1, `EffectApplyAuraName1`=77, `EffectApplyAuraName2`=77, `EffectApplyAuraName3`=77, `EffectMiscValue1`=17, `EffectMiscValue2`=5, `EffectMiscValue3`=10, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=24089; +UPDATE `spell_dbc` SET `ProcChance`=101, `EquippedItemSubClassMask`=-1, `Effect1`=3, `EffectImplicitTargetA1`=22, `EffectImplicitTargetB1`=15, `EffectRadiusIndex1`=20, `DmgClass`=1, `PreventionType`=1, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=24150; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=103, `EffectDieSides1`=1, `EffectBasePoints1`=9, `EffectImplicitTargetA1`=21, `EffectMiscValue1`=510, `DmgMultiplier1`=1 WHERE `Id`=24181; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=103, `EffectDieSides1`=1, `EffectBasePoints1`=9, `EffectImplicitTargetA1`=21, `EffectMiscValue1`=509, `DmgMultiplier1`=1 WHERE `Id`=24182; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=77, `EffectImplicitTargetA1`=1, `DmgMultiplier1`=1 WHERE `Id`=24205; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=10, `EffectImplicitTargetA1`=1, `DmgMultiplier1`=1 WHERE `Id`=24206; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `EffectImplicitTargetA1`=22, `EffectImplicitTargetB1`=18, `EffectMiscValue1`=15073, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=24215; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `Effect2`=6, `EffectDieSides1`=1, `EffectDieSides2`=1, `EffectBasePoints1`=129, `EffectBasePoints2`=129, `EffectImplicitTargetA1`=1, `EffectImplicitTargetA2`=1, `EffectApplyAuraName1`=99, `EffectApplyAuraName2`=124, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=24218; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectDieSides1`=1, `EffectBasePoints1`=4, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=52, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=24219; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=120, `EffectImplicitTargetA1`=22, `EffectImplicitTargetB1`=30, `EffectRadiusIndex1`=10, `DmgMultiplier1`=1 WHERE `Id`=24237; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=23, `EffectAmplitude1`=5000, `EffectTriggerSpell1`=24246, `DmgMultiplier1`=1 WHERE `Id`=24247; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=23, `EffectAmplitude1`=5000, `EffectTriggerSpell1`=24250, `DmgMultiplier1`=1 WHERE `Id`=24249; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `EffectDieSides1`=1, `EffectImplicitTargetA1`=18, `EffectRadiusIndex1`=7, `EffectMiscValue1`=15067, `DmgMultiplier1`=1 WHERE `Id`=24250; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=24, `EffectImplicitTargetA1`=21, `DmgMultiplier1`=1 WHERE `Id`=24304; +UPDATE `spell_dbc` SET `ProcChance`=101, `BaseLevel`=34, `SpellLevel`=34, `EquippedItemSubClassMask`=-1, `Effect1`=6, `EffectDieSides1`=1, `EffectBasePoints1`=-1, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=23, `EffectAmplitude1`=3000, `EffectTriggerSpell1`=24311, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=24310; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=22, `EffectImplicitTargetB1`=7, `EffectRadiusIndex1`=12, `DmgMultiplier1`=1 WHERE `Id`=24342; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=38, `EffectRadiusIndex1`=12, `DmgMultiplier1`=1 WHERE `Id`=24343; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=23, `EffectAmplitude1`=2000, `EffectTriggerSpell1`=24345, `DmgMultiplier1`=1 WHERE `Id`=24344; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectImplicitTargetA1`=22, `EffectImplicitTargetB1`=15, `EffectRadiusIndex1`=12, `EffectApplyAuraName1`=4, `DmgMultiplier1`=1 WHERE `Id`=24345; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `EffectDieSides1`=1, `EffectImplicitTargetA1`=18, `EffectRadiusIndex1`=16, `EffectMiscValue1`=14988, `DmgMultiplier1`=1 WHERE `Id`=24349; +UPDATE `spell_dbc` SET `ProcChance`=101, `BaseLevel`=40, `SpellLevel`=40, `Effect1`=6, `Effect2`=6, `Effect3`=6, `EffectDieSides1`=1, `EffectDieSides2`=1, `EffectDieSides3`=1, `EffectBasePoints1`=-1, `EffectBasePoints2`=-1, `EffectBasePoints3`=-1, `EffectImplicitTargetA1`=1, `EffectImplicitTargetA2`=1, `EffectImplicitTargetA3`=1, `EffectApplyAuraName1`=77, `EffectApplyAuraName2`=77, `EffectApplyAuraName3`=77, `EffectMiscValue1`=1, `EffectMiscValue2`=5, `EffectMiscValue3`=17, `SpellFamilyName`=9, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=24395; +UPDATE `spell_dbc` SET `ProcChance`=101, `BaseLevel`=40, `SpellLevel`=40, `Effect1`=6, `Effect2`=6, `Effect3`=6, `EffectDieSides1`=1, `EffectDieSides2`=1, `EffectDieSides3`=1, `EffectBasePoints1`=-1, `EffectBasePoints2`=-1, `EffectBasePoints3`=-1, `EffectImplicitTargetA1`=1, `EffectImplicitTargetA2`=1, `EffectImplicitTargetA3`=1, `EffectApplyAuraName1`=77, `EffectApplyAuraName2`=77, `EffectApplyAuraName3`=77, `EffectMiscValue1`=14, `EffectMiscValue2`=13, `EffectMiscValue3`=24, `SpellFamilyName`=9, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=24396; +UPDATE `spell_dbc` SET `ProcChance`=101, `BaseLevel`=40, `SpellLevel`=40, `Effect1`=6, `Effect2`=6, `Effect3`=6, `EffectDieSides1`=1, `EffectDieSides2`=1, `EffectDieSides3`=1, `EffectBasePoints1`=-1, `EffectBasePoints2`=-1, `EffectBasePoints3`=-1, `EffectImplicitTargetA1`=1, `EffectImplicitTargetA2`=1, `EffectImplicitTargetA3`=1, `EffectApplyAuraName1`=77, `EffectApplyAuraName2`=77, `EffectApplyAuraName3`=77, `EffectMiscValue1`=7, `EffectMiscValue2`=10, `EffectMiscValue3`=11, `SpellFamilyName`=9, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=24397; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=22, `EffectImplicitTargetB1`=7, `EffectRadiusIndex1`=12, `DmgMultiplier1`=1 WHERE `Id`=24474; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectDieSides1`=1, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=23, `EffectAmplitude1`=10000, `EffectTriggerSpell1`=24622, `DmgMultiplier1`=1 WHERE `Id`=24620; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=100, `EffectDieSides1`=1, `EffectBasePoints1`=-10001, `EffectImplicitTargetA1`=25, `DmgMultiplier1`=1 WHERE `Id`=24635; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=103, `EffectDieSides1`=1, `EffectBasePoints1`=9, `EffectImplicitTargetA1`=21, `EffectMiscValue1`=889, `DmgMultiplier1`=1 WHERE `Id`=24638; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=103, `EffectDieSides1`=1, `EffectBasePoints1`=9, `EffectImplicitTargetA1`=21, `EffectMiscValue1`=890, `DmgMultiplier1`=1 WHERE `Id`=24639; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=103, `EffectDieSides1`=1, `EffectBasePoints1`=5, `EffectImplicitTargetA1`=21, `EffectMiscValue1`=729, `DmgMultiplier1`=1 WHERE `Id`=24642; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=103, `EffectDieSides1`=1, `EffectBasePoints1`=5, `EffectImplicitTargetA1`=21, `EffectMiscValue1`=730, `DmgMultiplier1`=1 WHERE `Id`=24643; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=103, `EffectDieSides1`=1, `EffectBasePoints1`=174, `EffectImplicitTargetA1`=21, `EffectMiscValue1`=730, `DmgMultiplier1`=1 WHERE `Id`=24644; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=103, `EffectDieSides1`=1, `EffectBasePoints1`=174, `EffectImplicitTargetA1`=21, `EffectMiscValue1`=729, `DmgMultiplier1`=1 WHERE `Id`=24645; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=103, `EffectDieSides1`=1, `EffectBasePoints1`=4, `EffectImplicitTargetA1`=25, `EffectMiscValue1`=69, `DmgMultiplier1`=1 WHERE `Id`=24650; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=103, `EffectDieSides1`=1, `EffectBasePoints1`=59, `EffectImplicitTargetA1`=21, `EffectMiscValue1`=730, `DmgMultiplier1`=1 WHERE `Id`=24651; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=103, `EffectDieSides1`=1, `EffectBasePoints1`=124, `EffectImplicitTargetA1`=21, `EffectMiscValue1`=729, `DmgMultiplier1`=1 WHERE `Id`=24652; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=61, `EffectMiscValue1`=9163, `DmgMultiplier1`=1 WHERE `Id`=24678; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=61, `EffectMiscValue1`=9165, `DmgMultiplier1`=1 WHERE `Id`=24679; +UPDATE `spell_dbc` SET `ProcChance`=101, `StackAmount`=5, `Effect1`=6, `Effect2`=6, `Effect3`=6, `EffectDieSides1`=1, `EffectDieSides2`=1, `EffectDieSides3`=1, `EffectBasePoints1`=19, `EffectBasePoints2`=9, `EffectBasePoints3`=19, `EffectImplicitTargetA1`=1, `EffectImplicitTargetA2`=1, `EffectImplicitTargetA3`=1, `EffectApplyAuraName1`=79, `EffectApplyAuraName2`=133, `EffectApplyAuraName3`=61, `EffectMiscValue1`=1, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=24692; +UPDATE `spell_dbc` SET `ProcChance`=101, `StackAmount`=5, `Effect1`=77, `EffectDieSides1`=1, `EffectImplicitTargetA1`=1, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=24693; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=5, `Effect2`=6, `Effect3`=63, `EffectDieSides3`=1, `EffectBasePoints3`=499, `EffectImplicitTargetA1`=25, `EffectImplicitTargetA2`=25, `EffectImplicitTargetA3`=25, `EffectImplicitTargetB1`=18, `EffectApplyAuraName2`=12, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=24700; +UPDATE `spell_dbc` SET `ProcChance`=101, `BaseLevel`=10, `SpellLevel`=10, `EquippedItemSubClassMask`=-1, `Effect1`=30, `EffectDieSides1`=1, `EffectBasePoints1`=999999, `EffectImplicitTargetA1`=5, `EffectMiscValue1`=4, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=24722; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `Effect2`=6, `Effect3`=6, `EffectImplicitTargetA1`=25, `EffectImplicitTargetA2`=25, `EffectImplicitTargetA3`=25, `EffectApplyAuraName1`=56, `EffectApplyAuraName2`=67, `EffectApplyAuraName3`=23, `EffectAmplitude3`=5000, `EffectMiscValue1`=15214, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=24743; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectImplicitTargetA1`=25, `EffectApplyAuraName1`=12, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=24754; +UPDATE `spell_dbc` SET `ProcFlags`=4, `ProcChance`=100, `Effect1`=2, `Effect2`=77, `EffectDieSides1`=1, `EffectBasePoints1`=-1, `EffectImplicitTargetA1`=6, `EffectImplicitTargetA2`=6, `DmgClass`=1, `PreventionType`=1, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=24779; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=22, `EffectImplicitTargetB1`=15, `EffectRadiusIndex1`=12, `DmgClass`=1, `PreventionType`=1, `DmgMultiplier1`=1 WHERE `Id`=24781; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=22, `EffectImplicitTargetB1`=15, `EffectRadiusIndex1`=12, `DmgMultiplier1`=1 WHERE `Id`=24796; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=24, `EffectImplicitTargetA1`=25, `DmgMultiplier1`=1 WHERE `Id`=24805; +UPDATE `spell_dbc` SET `Targets`=256, `ProcChance`=101, `Effect1`=24, `DmgMultiplier1`=1 WHERE `Id`=24806; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=24, `EffectImplicitTargetA1`=25, `DmgMultiplier1`=1 WHERE `Id`=24807; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=112, `EffectDieSides1`=1, `EffectImplicitTargetA1`=18, `EffectMultipleValue1`=999999, `EffectMiscValue1`=15261, `DmgMultiplier1`=1 WHERE `Id`=24810; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=24, `EffectDieSides1`=1, `EffectImplicitTargetA1`=25, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=24863; +UPDATE `spell_dbc` SET `Stances`=1073741969, `ProcChance`=101, `BaseLevel`=20, `SpellLevel`=20, `EquippedItemSubClassMask`=-1, `Effect1`=6, `EffectDieSides1`=1, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=99, `SpellFamilyName`=7, `SpellFamilyFlags1`=134217728, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=24868; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=22, `EffectImplicitTargetB1`=7, `EffectRadiusIndex1`=12, `DmgMultiplier1`=1 WHERE `Id`=24886; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectDieSides1`=1, `EffectImplicitTargetA1`=22, `EffectImplicitTargetB1`=15, `EffectRadiusIndex1`=12, `EffectApplyAuraName1`=4, `DmgMultiplier1`=1 WHERE `Id`=24906; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectImplicitTargetA1`=25, `EffectApplyAuraName1`=4, `DmgMultiplier1`=1 WHERE `Id`=24920; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectDieSides1`=1, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=34, `DmgMultiplier1`=1 WHERE `Id`=24931; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=77, `EffectImplicitTargetA1`=1, `DmgMultiplier1`=1 WHERE `Id`=24936; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=86, `Effect2`=86, `EffectDieSides1`=1, `EffectImplicitTargetA1`=40, `EffectImplicitTargetA2`=40, `EffectMiscValue1`=6, `EffectMiscValue2`=10, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=24938; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=4, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=24948; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=23, `EffectAmplitude1`=60000, `DmgMultiplier1`=1 WHERE `Id`=24956; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=86, `EffectImplicitTargetA1`=22, `EffectImplicitTargetB1`=51, `EffectRadiusIndex1`=12, `EffectMiscValue1`=15, `DmgMultiplier1`=1 WHERE `Id`=24958; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectDieSides1`=1, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=34, `DmgMultiplier1`=1 WHERE `Id`=24959; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=22, `EffectImplicitTargetB1`=15, `EffectRadiusIndex1`=12, `DmgMultiplier1`=1 WHERE `Id`=25044; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=56, `EffectMiscValue1`=15410, `DmgMultiplier1`=1 WHERE `Id`=25108; +UPDATE `spell_dbc` SET `Stances`=144, `ProcChance`=101, `Effect1`=10, `EffectImplicitTargetA1`=1, `DmgMultiplier1`=1 WHERE `Id`=25142; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `EffectDieSides1`=1, `EffectImplicitTargetA1`=18, `EffectRadiusIndex1`=16, `EffectMiscValue1`=15300, `DmgMultiplier1`=1 WHERE `Id`=25151; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=22, `EffectImplicitTargetB1`=30, `EffectRadiusIndex1`=10, `DmgMultiplier1`=1 WHERE `Id`=25153; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=8, `EffectDieSides1`=1, `EffectBasePoints1`=999, `EffectImplicitTargetA1`=1, `DmgMultiplier1`=1 WHERE `Id`=25157; +UPDATE `spell_dbc` SET `ProcChance`=101, `BaseLevel`=14, `SpellLevel`=14, `Effect1`=19, `EffectDieSides1`=1, `EffectBasePoints1`=1, `EffectImplicitTargetA1`=1, `DmgClass`=2, `PreventionType`=2, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=25175; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectDieSides1`=1, `EffectBasePoints1`=99, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=31, `DmgMultiplier1`=1 WHERE `Id`=25184; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=77, `EffectImplicitTargetA1`=38, `DmgMultiplier1`=1 WHERE `Id`=25186; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=76, `EffectDieSides1`=1, `EffectImplicitTargetA1`=18, `EffectMiscValue1`=180619, `DmgMultiplier1`=1 WHERE `Id`=25192; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=86, `EffectImplicitTargetA1`=40, `EffectMiscValue1`=8, `DmgMultiplier1`=1 WHERE `Id`=25193; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=77, `EffectImplicitTargetA1`=22, `EffectImplicitTargetB1`=7, `EffectRadiusIndex1`=28, `DmgMultiplier1`=1 WHERE `Id`=25194; +UPDATE `spell_dbc` SET `ProcChance`=101, `BaseLevel`=20, `SpellLevel`=20, `EquippedItemClass`=2, `EquippedItemSubClassMask`=262156, `Effect1`=2, `EffectDieSides1`=13, `EffectBasePoints1`=35, `EffectImplicitTargetA1`=6, `SpellFamilyName`=9, `SpellFamilyFlags1`=1, `DmgClass`=3, `PreventionType`=2, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=25200; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=26, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=25374; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `Effect2`=79, `Effect3`=6, `EffectDieSides1`=1, `EffectBasePoints1`=1, `EffectImplicitTargetA1`=1, `EffectImplicitTargetA2`=1, `EffectApplyAuraName1`=139, `EffectApplyAuraName3`=56, `EffectMiscValue1`=14, `EffectMiscValue3`=15214, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=25410; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `Effect2`=3, `EffectImplicitTargetA1`=22, `EffectImplicitTargetA2`=38, `EffectImplicitTargetB1`=15, `EffectRadiusIndex1`=23, `EffectRadiusIndex2`=12, `EffectApplyAuraName1`=11, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=25473; +UPDATE `spell_dbc` SET `Stances`=144, `ProcChance`=101, `EquippedItemSubClassMask`=-1, `Effect2`=6, `EffectDieSides2`=1, `EffectBasePoints2`=-27, `EffectImplicitTargetA2`=1, `EffectApplyAuraName2`=101, `EffectMiscValue2`=1, `SpellFamilyName`=7, `SpellFamilyFlags1`=524288, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=25503; +UPDATE `spell_dbc` SET `ProcFlags`=20, `ProcChance`=10, `Effect1`=6, `EffectDieSides1`=1, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=42, `EffectTriggerSpell1`=9204, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=25592; +UPDATE `spell_dbc` SET `Targets`=256, `ProcChance`=101, `Effect1`=24, `DmgMultiplier1`=1 WHERE `Id`=25600; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=6, `DmgMultiplier1`=1 WHERE `Id`=25604; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=22, `EffectImplicitTargetB1`=15, `EffectRadiusIndex1`=12, `DmgMultiplier1`=1 WHERE `Id`=25657; +UPDATE `spell_dbc` SET `ProcChance`=101, `SpellLevel`=1, `EquippedItemSubClassMask`=-1, `Effect1`=39, `EffectMiscValue1`=34, `DmgClass`=1, `PreventionType`=1, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=25667; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=77, `EffectImplicitTargetA1`=22, `EffectImplicitTargetB1`=15, `EffectRadiusIndex1`=12, `DmgMultiplier1`=1 WHERE `Id`=25676; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=22, `EffectImplicitTargetB1`=15, `EffectRadiusIndex1`=12, `DmgMultiplier1`=1 WHERE `Id`=25680; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=77, `EffectImplicitTargetA1`=1, `DmgMultiplier1`=1 WHERE `Id`=25684; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `EffectDieSides1`=1, `EffectImplicitTargetA1`=17, `EffectRadiusIndex1`=12, `EffectMiscValue1`=15546, `DmgMultiplier1`=1 WHERE `Id`=25708; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=77, `EffectImplicitTargetA1`=1, `DmgMultiplier1`=1 WHERE `Id`=25711; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=22, `EffectImplicitTargetB1`=7, `EffectRadiusIndex1`=12, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=25724; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=22, `EffectImplicitTargetB1`=7, `EffectRadiusIndex1`=12, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=25726; +UPDATE `spell_dbc` SET `Dispel`=1, `ProcFlags`=20, `ProcChance`=100, `MaxLevel`=48, `BaseLevel`=42, `SpellLevel`=42, `Effect1`=6, `Effect3`=6, `EffectDieSides1`=1, `EffectDieSides3`=1, `EffectRealPointsPerLevel1`=0.5, `EffectBasePoints1`=39, `EffectBasePoints3`=20283, `EffectImplicitTargetA1`=1, `EffectImplicitTargetA3`=1, `EffectApplyAuraName1`=43, `EffectApplyAuraName3`=4, `SpellFamilyName`=10, `SpellFamilyFlags1`=134218752, `DmgClass`=1, `PreventionType`=1, `DmgMultiplier1`=1, `DmgMultiplier3`=1 WHERE `Id`=25728; +UPDATE `spell_dbc` SET `Dispel`=1, `ProcFlags`=20, `ProcChance`=100, `MaxLevel`=24, `BaseLevel`=18, `SpellLevel`=18, `Effect1`=6, `Effect3`=6, `EffectDieSides1`=1, `EffectDieSides3`=1, `EffectRealPointsPerLevel1`=0.3, `EffectBasePoints1`=12, `EffectBasePoints3`=20280, `EffectImplicitTargetA1`=1, `EffectImplicitTargetA3`=1, `EffectApplyAuraName1`=43, `EffectApplyAuraName3`=4, `SpellFamilyName`=10, `SpellFamilyFlags1`=134218752, `DmgClass`=1, `PreventionType`=1, `DmgMultiplier1`=1, `DmgMultiplier3`=1 WHERE `Id`=25731; +UPDATE `spell_dbc` SET `ProcFlags`=4, `ProcChance`=100, `BaseLevel`=1, `SpellLevel`=1, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=42, `EffectTriggerSpell1`=25753, `SpellFamilyName`=10, `SpellFamilyFlags1`=524288, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=25752; +UPDATE `spell_dbc` SET `ProcChance`=100, `BaseLevel`=1, `SpellLevel`=1, `Effect1`=3, `EffectImplicitTargetA1`=6, `SpellFamilyName`=10, `SpellFamilyFlags1`=524288, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=25753; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=77, `EffectImplicitTargetA1`=22, `EffectImplicitTargetB1`=15, `EffectRadiusIndex1`=12, `DmgMultiplier1`=1 WHERE `Id`=25754; +UPDATE `spell_dbc` SET `ProcFlags`=4, `ProcChance`=100, `BaseLevel`=1, `SpellLevel`=1, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=42, `EffectTriggerSpell1`=25758, `SpellFamilyName`=10, `SpellFamilyFlags1`=524288, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=25757; +UPDATE `spell_dbc` SET `ProcChance`=100, `BaseLevel`=1, `SpellLevel`=1, `Effect1`=3, `EffectImplicitTargetA1`=6, `SpellFamilyName`=10, `SpellFamilyFlags1`=524288, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=25758; +UPDATE `spell_dbc` SET `Targets`=256, `ProcChance`=101, `Effect1`=24, `DmgMultiplier1`=1 WHERE `Id`=25763; +UPDATE `spell_dbc` SET `Targets`=256, `ProcChance`=101, `Effect1`=24, `DmgMultiplier1`=1 WHERE `Id`=25764; +UPDATE `spell_dbc` SET `Targets`=256, `ProcChance`=101, `Effect1`=24, `DmgMultiplier1`=1 WHERE `Id`=25765; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=25, `EffectRadiusIndex1`=22, `DmgMultiplier1`=1 WHERE `Id`=25769; +UPDATE `spell_dbc` SET `AuraInterruptFlags`=524288, `ProcChance`=101, `Effect1`=6, `Effect2`=6, `Effect3`=6, `EffectDieSides1`=1, `EffectDieSides2`=1, `EffectDieSides3`=1, `EffectBasePoints1`=499, `EffectBasePoints2`=99, `EffectBasePoints3`=299, `EffectImplicitTargetA1`=1, `EffectImplicitTargetA2`=1, `EffectImplicitTargetA3`=1, `EffectApplyAuraName1`=79, `EffectApplyAuraName2`=138, `EffectApplyAuraName3`=65, `EffectMiscValue1`=127, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=25773; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=22, `EffectImplicitTargetB1`=7, `EffectRadiusIndex1`=12, `DmgMultiplier1`=1 WHERE `Id`=25775; +UPDATE `spell_dbc` SET `Targets`=256, `ProcChance`=101, `Effect1`=24, `DmgMultiplier1`=1 WHERE `Id`=25784; +UPDATE `spell_dbc` SET `Targets`=256, `ProcChance`=101, `Effect1`=24, `DmgMultiplier1`=1 WHERE `Id`=25785; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `EffectDieSides1`=1, `EffectBasePoints1`=9, `EffectImplicitTargetA1`=18, `EffectMiscValue1`=15621, `DmgMultiplier1`=1 WHERE `Id`=25789; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=22, `EffectImplicitTargetB1`=7, `EffectRadiusIndex1`=12, `DmgMultiplier1`=1 WHERE `Id`=25792; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=77, `EffectImplicitTargetA1`=1, `DmgMultiplier1`=1 WHERE `Id`=25830; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=1, `DmgMultiplier1`=1 WHERE `Id`=25833; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=1, `DmgMultiplier1`=1 WHERE `Id`=25834; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=1, `DmgMultiplier1`=1 WHERE `Id`=25835; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=22, `EffectImplicitTargetB1`=7, `EffectRadiusIndex1`=12, `DmgMultiplier1`=1 WHERE `Id`=25842; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=22, `EffectImplicitTargetB1`=7, `EffectRadiusIndex1`=12, `DmgMultiplier1`=1 WHERE `Id`=25844; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=77, `EffectImplicitTargetA1`=1, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=25885; +UPDATE `spell_dbc` SET `ProcChance`=101, `StackAmount`=20, `Effect1`=10, `Effect2`=77, `EffectImplicitTargetA1`=25, `EffectImplicitTargetA2`=25, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=25897; +UPDATE `spell_dbc` SET `ProcChance`=101, `StackAmount`=20, `Effect1`=5, `EffectImplicitTargetA1`=1, `EffectImplicitTargetB1`=17, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=25904; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectDieSides1`=1, `EffectBasePoints1`=99999, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=18, `EffectMiscValue1`=2, `DmgMultiplier1`=1 WHERE `Id`=25905; +UPDATE `spell_dbc` SET `Targets`=256, `ProcChance`=101, `Effect1`=24, `DmgMultiplier1`=1 WHERE `Id`=25921; +UPDATE `spell_dbc` SET `Targets`=256, `ProcChance`=101, `Effect1`=24, `DmgMultiplier1`=1 WHERE `Id`=25922; +UPDATE `spell_dbc` SET `Targets`=256, `ProcChance`=101, `Effect1`=24, `DmgMultiplier1`=1 WHERE `Id`=25923; +UPDATE `spell_dbc` SET `Targets`=256, `ProcChance`=101, `Effect1`=24, `DmgMultiplier1`=1 WHERE `Id`=25924; +UPDATE `spell_dbc` SET `Targets`=256, `ProcChance`=101, `Effect1`=24, `DmgMultiplier1`=1 WHERE `Id`=25925; +UPDATE `spell_dbc` SET `ProcFlags`=139944, `ProcChance`=100, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=4, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=25926; +UPDATE `spell_dbc` SET `Targets`=256, `ProcChance`=101, `Effect1`=24, `DmgMultiplier1`=1 WHERE `Id`=25927; +UPDATE `spell_dbc` SET `Targets`=256, `ProcChance`=101, `Effect1`=24, `DmgMultiplier1`=1 WHERE `Id`=25928; +UPDATE `spell_dbc` SET `Targets`=256, `ProcChance`=101, `Effect1`=24, `DmgMultiplier1`=1 WHERE `Id`=25929; +UPDATE `spell_dbc` SET `Targets`=256, `ProcChance`=101, `Effect1`=24, `DmgMultiplier1`=1 WHERE `Id`=25930; +UPDATE `spell_dbc` SET `Targets`=256, `ProcChance`=101, `Effect1`=24, `DmgMultiplier1`=1 WHERE `Id`=25931; +UPDATE `spell_dbc` SET `Targets`=256, `ProcChance`=101, `Effect1`=24, `DmgMultiplier1`=1 WHERE `Id`=25932; +UPDATE `spell_dbc` SET `Targets`=256, `ProcChance`=101, `Effect1`=24, `DmgMultiplier1`=1 WHERE `Id`=25933; +UPDATE `spell_dbc` SET `Targets`=256, `ProcChance`=101, `Effect1`=24, `DmgMultiplier1`=1 WHERE `Id`=25934; +UPDATE `spell_dbc` SET `Targets`=256, `ProcChance`=101, `Effect1`=24, `DmgMultiplier1`=1 WHERE `Id`=25935; +UPDATE `spell_dbc` SET `Targets`=256, `ProcChance`=101, `Effect1`=24, `DmgMultiplier1`=1 WHERE `Id`=25936; +UPDATE `spell_dbc` SET `ProcChance`=100, `BaseLevel`=1, `SpellLevel`=1, `Effect1`=3, `EffectImplicitTargetA1`=6, `SpellFamilyName`=10, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=25944; +UPDATE `spell_dbc` SET `ProcFlags`=4, `ProcChance`=100, `BaseLevel`=1, `SpellLevel`=1, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=42, `EffectTriggerSpell1`=25944, `SpellFamilyName`=10, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=25945; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectDieSides1`=1, `EffectBasePoints1`=-51, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=87, `EffectMiscValue1`=127, `DmgMultiplier1`=1 WHERE `Id`=25994; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=22, `EffectImplicitTargetB1`=7, `EffectRadiusIndex1`=12, `DmgMultiplier1`=1 WHERE `Id`=25998; +UPDATE `spell_dbc` SET `ProcChance`=101, `SpellLevel`=45, `Effect1`=1, `EffectDieSides1`=1, `EffectImplicitTargetA1`=1, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=26002; +UPDATE `spell_dbc` SET `AuraInterruptFlags`=4194304, `ProcChance`=101, `Effect1`=6, `EffectImplicitTargetA1`=25, `EffectApplyAuraName1`=4, `DmgMultiplier1`=1 WHERE `Id`=26014; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectImplicitTargetA1`=25, `EffectApplyAuraName1`=4, `DmgMultiplier1`=1 WHERE `Id`=26015; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=77, `EffectImplicitTargetA1`=1, `DmgMultiplier1`=1 WHERE `Id`=26057; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=77, `EffectImplicitTargetA1`=38, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=26075; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=77, `EffectImplicitTargetA1`=22, `EffectImplicitTargetB1`=7, `EffectRadiusIndex1`=12, `DmgMultiplier1`=1 WHERE `Id`=26076; +UPDATE `spell_dbc` SET `ProcChance`=101, `EquippedItemSubClassMask`=-1, `Effect1`=3, `EffectImplicitTargetA1`=22, `EffectImplicitTargetB1`=15, `EffectRadiusIndex1`=20, `DmgClass`=1, `PreventionType`=1, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=26080; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=23, `EffectAmplitude1`=1000, `EffectTriggerSpell1`=26093, `DmgMultiplier1`=1 WHERE `Id`=26092; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=76, `EffectImplicitTargetA1`=32, `EffectRadiusIndex1`=7, `EffectMiscValue1`=180794, `DmgMultiplier1`=1 WHERE `Id`=26096; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=77, `EffectImplicitTargetA1`=22, `EffectImplicitTargetB1`=15, `EffectRadiusIndex1`=20, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=26101; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=1, `DmgMultiplier1`=1 WHERE `Id`=26104; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=2, `EffectDieSides1`=1, `EffectBasePoints1`=-1, `EffectImplicitTargetA1`=6, `DmgClass`=3, `PreventionType`=2, `DmgMultiplier1`=1 WHERE `Id`=26105; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=76, `EffectDieSides1`=1, `EffectImplicitTargetA1`=18, `EffectMiscValue1`=180795, `DmgMultiplier1`=1 WHERE `Id`=26133; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `EffectDieSides1`=1, `EffectImplicitTargetA1`=18, `EffectRadiusIndex1`=16, `EffectMiscValue1`=15725, `DmgMultiplier1`=1 WHERE `Id`=26140; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `EffectDieSides1`=1, `EffectImplicitTargetA1`=47, `EffectRadiusIndex1`=10, `EffectMiscValue1`=15726, `DmgMultiplier1`=1 WHERE `Id`=26144; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `EffectDieSides1`=1, `EffectImplicitTargetA1`=50, `EffectRadiusIndex1`=10, `EffectMiscValue1`=15726, `DmgMultiplier1`=1 WHERE `Id`=26145; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `EffectDieSides1`=1, `EffectImplicitTargetA1`=48, `EffectRadiusIndex1`=10, `EffectMiscValue1`=15726, `DmgMultiplier1`=1 WHERE `Id`=26146; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `EffectDieSides1`=1, `EffectImplicitTargetA1`=49, `EffectRadiusIndex1`=10, `EffectMiscValue1`=15726, `DmgMultiplier1`=1 WHERE `Id`=26147; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `EffectDieSides1`=1, `EffectImplicitTargetA1`=41, `EffectRadiusIndex1`=10, `EffectMiscValue1`=15726, `DmgMultiplier1`=1 WHERE `Id`=26148; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `EffectDieSides1`=1, `EffectImplicitTargetA1`=42, `EffectRadiusIndex1`=10, `EffectMiscValue1`=15726, `DmgMultiplier1`=1 WHERE `Id`=26149; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `EffectDieSides1`=1, `EffectImplicitTargetA1`=43, `EffectRadiusIndex1`=10, `EffectMiscValue1`=15726, `DmgMultiplier1`=1 WHERE `Id`=26150; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `EffectDieSides1`=1, `EffectImplicitTargetA1`=44, `EffectRadiusIndex1`=10, `EffectMiscValue1`=15726, `DmgMultiplier1`=1 WHERE `Id`=26151; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=23, `EffectAmplitude1`=45000, `DmgMultiplier1`=1 WHERE `Id`=26152; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `Effect2`=61, `EffectDieSides1`=1, `EffectBasePoints1`=-100, `EffectImplicitTargetA1`=1, `EffectImplicitTargetA2`=1, `EffectApplyAuraName1`=87, `EffectMiscValue1`=127, `EffectMiscValue2`=9735, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=26156; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=103, `EffectDieSides1`=1, `EffectBasePoints1`=4, `EffectImplicitTargetA1`=25, `EffectMiscValue1`=54, `DmgMultiplier1`=1 WHERE `Id`=26159; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=103, `EffectDieSides1`=1, `EffectBasePoints1`=4, `EffectImplicitTargetA1`=25, `EffectMiscValue1`=47, `DmgMultiplier1`=1 WHERE `Id`=26160; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=103, `EffectDieSides1`=1, `EffectBasePoints1`=4, `EffectImplicitTargetA1`=25, `EffectMiscValue1`=72, `DmgMultiplier1`=1 WHERE `Id`=26161; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=103, `EffectDieSides1`=1, `EffectBasePoints1`=4, `EffectImplicitTargetA1`=25, `EffectMiscValue1`=76, `DmgMultiplier1`=1 WHERE `Id`=26162; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=103, `EffectDieSides1`=1, `EffectBasePoints1`=4, `EffectImplicitTargetA1`=25, `EffectMiscValue1`=530, `DmgMultiplier1`=1 WHERE `Id`=26163; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=103, `EffectDieSides1`=1, `EffectBasePoints1`=4, `EffectImplicitTargetA1`=25, `EffectMiscValue1`=68, `DmgMultiplier1`=1 WHERE `Id`=26164; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=103, `EffectDieSides1`=1, `EffectBasePoints1`=4, `EffectImplicitTargetA1`=25, `EffectMiscValue1`=81, `DmgMultiplier1`=1 WHERE `Id`=26165; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=77, `EffectImplicitTargetA1`=6, `DmgMultiplier1`=1 WHERE `Id`=26182; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=25, `DmgMultiplier1`=1 WHERE `Id`=26183; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `EffectDieSides1`=1, `EffectImplicitTargetA1`=53, `EffectRadiusIndex1`=16, `EffectMiscValue1`=15728, `DmgMultiplier1`=1 WHERE `Id`=26191; +UPDATE `spell_dbc` SET `ProcChance`=101, `BaseLevel`=1, `SpellLevel`=1, `EquippedItemSubClassMask`=-1, `Effect1`=6, `EffectImplicitTargetA1`=25, `EffectApplyAuraName1`=56, `EffectMiscValue1`=15772, `SpellFamilyName`=1, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=26199; +UPDATE `spell_dbc` SET `ProcChance`=101, `BaseLevel`=1, `SpellLevel`=1, `EquippedItemSubClassMask`=-1, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=56, `EffectMiscValue1`=15772, `SpellFamilyName`=1, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=26200; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=77, `EffectImplicitTargetA1`=25, `DmgMultiplier1`=1 WHERE `Id`=26205; +UPDATE `spell_dbc` SET `ProcChance`=101, `BaseLevel`=1, `SpellLevel`=1, `EquippedItemSubClassMask`=-1, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=56, `EffectMiscValue1`=15773, `SpellFamilyName`=1, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=26209; +UPDATE `spell_dbc` SET `ProcChance`=101, `BaseLevel`=1, `SpellLevel`=1, `EquippedItemSubClassMask`=-1, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=56, `EffectMiscValue1`=15774, `SpellFamilyName`=1, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=26210; +UPDATE `spell_dbc` SET `ProcChance`=101, `BaseLevel`=1, `SpellLevel`=1, `EquippedItemSubClassMask`=-1, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=56, `EffectMiscValue1`=15775, `SpellFamilyName`=1, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=26212; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=23, `EffectAmplitude1`=60000, `EffectTriggerSpell1`=26217, `DmgMultiplier1`=1 WHERE `Id`=26213; +UPDATE `spell_dbc` SET `ProcChance`=101, `BaseLevel`=1, `SpellLevel`=1, `EquippedItemSubClassMask`=-1, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=56, `EffectMiscValue1`=15776, `SpellFamilyName`=1, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=26214; +UPDATE `spell_dbc` SET `ProcChance`=101, `BaseLevel`=1, `SpellLevel`=1, `EquippedItemSubClassMask`=-1, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=56, `EffectMiscValue1`=15777, `SpellFamilyName`=1, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=26215; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `EffectDieSides1`=1, `EffectImplicitTargetA1`=18, `EffectMiscValue1`=15728, `DmgMultiplier1`=1 WHERE `Id`=26216; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=77, `EffectImplicitTargetA1`=22, `EffectImplicitTargetB1`=15, `EffectRadiusIndex1`=12, `DmgMultiplier1`=1 WHERE `Id`=26217; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=5, `Effect2`=64, `EffectImplicitTargetA1`=1, `EffectImplicitTargetA2`=1, `EffectImplicitTargetB1`=17, `EffectTriggerSpell2`=26479, `MaxAffectedTargets`=1, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=26220; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `Effect2`=6, `EffectDieSides1`=1, `EffectBasePoints1`=-1, `EffectImplicitTargetA1`=1, `EffectImplicitTargetA2`=1, `EffectApplyAuraName1`=12, `EffectApplyAuraName2`=12, `EffectMiscValue1`=4, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=26222; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=98, `EffectDieSides1`=1, `EffectBasePoints1`=499, `EffectImplicitTargetA1`=22, `EffectImplicitTargetB1`=15, `EffectRadiusIndex1`=13, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=26224; +UPDATE `spell_dbc` SET `Effect1`=43, `EffectDieSides1`=1, `EffectImplicitTargetA1`=6, `EffectImplicitTargetB1`=18, `DmgMultiplier1`=1 WHERE `Id`=26229; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=98, `Effect2`=77, `EffectDieSides1`=1, `EffectBasePoints1`=149, `EffectImplicitTargetA1`=22, `EffectImplicitTargetA2`=22, `EffectImplicitTargetB1`=7, `EffectImplicitTargetB2`=7, `EffectRadiusIndex1`=13, `EffectRadiusIndex2`=13, `EffectMiscValue1`=500, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=26230; +UPDATE `spell_dbc` SET `ProcChance`=101, `BaseLevel`=1, `SpellLevel`=1, `EquippedItemSubClassMask`=-1, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=56, `EffectMiscValue1`=15796, `SpellFamilyName`=1, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=26231; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=23, `EffectAmplitude1`=10000, `EffectTriggerSpell1`=26237, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=26236; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=77, `EffectImplicitTargetA1`=22, `EffectImplicitTargetB1`=15, `EffectRadiusIndex1`=12, `DmgMultiplier1`=1 WHERE `Id`=26237; +UPDATE `spell_dbc` SET `ProcChance`=101, `BaseLevel`=1, `SpellLevel`=1, `EquippedItemSubClassMask`=-1, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=56, `EffectMiscValue1`=15780, `SpellFamilyName`=1, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=26239; +UPDATE `spell_dbc` SET `ProcChance`=101, `BaseLevel`=1, `SpellLevel`=1, `EquippedItemSubClassMask`=-1, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=56, `EffectMiscValue1`=15781, `SpellFamilyName`=1, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=26240; +UPDATE `spell_dbc` SET `ProcChance`=101, `BaseLevel`=1, `SpellLevel`=1, `EquippedItemSubClassMask`=-1, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=56, `EffectMiscValue1`=15782, `SpellFamilyName`=1, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=26241; +UPDATE `spell_dbc` SET `ProcChance`=101, `BaseLevel`=1, `SpellLevel`=1, `EquippedItemSubClassMask`=-1, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=56, `EffectMiscValue1`=15783, `SpellFamilyName`=1, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=26242; +UPDATE `spell_dbc` SET `ProcChance`=101, `BaseLevel`=1, `SpellLevel`=1, `EquippedItemSubClassMask`=-1, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=56, `EffectMiscValue1`=15787, `SpellFamilyName`=1, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=26243; +UPDATE `spell_dbc` SET `ProcChance`=101, `BaseLevel`=1, `SpellLevel`=1, `EquippedItemSubClassMask`=-1, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=56, `EffectMiscValue1`=15795, `SpellFamilyName`=1, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=26244; +UPDATE `spell_dbc` SET `ProcChance`=101, `BaseLevel`=1, `SpellLevel`=1, `EquippedItemSubClassMask`=-1, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=56, `EffectMiscValue1`=15784, `SpellFamilyName`=1, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=26245; +UPDATE `spell_dbc` SET `ProcChance`=101, `BaseLevel`=1, `SpellLevel`=1, `EquippedItemSubClassMask`=-1, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=56, `EffectMiscValue1`=15794, `SpellFamilyName`=1, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=26246; +UPDATE `spell_dbc` SET `ProcChance`=101, `BaseLevel`=1, `SpellLevel`=1, `EquippedItemSubClassMask`=-1, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=56, `EffectMiscValue1`=15786, `SpellFamilyName`=1, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=26247; +UPDATE `spell_dbc` SET `ProcChance`=101, `BaseLevel`=1, `SpellLevel`=1, `EquippedItemSubClassMask`=-1, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=56, `EffectMiscValue1`=15791, `SpellFamilyName`=1, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=26248; +UPDATE `spell_dbc` SET `ProcChance`=101, `BaseLevel`=1, `SpellLevel`=1, `EquippedItemSubClassMask`=-1, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=56, `EffectMiscValue1`=15789, `SpellFamilyName`=1, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=26249; +UPDATE `spell_dbc` SET `ProcChance`=101, `BaseLevel`=1, `SpellLevel`=1, `EquippedItemSubClassMask`=-1, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=56, `EffectMiscValue1`=15793, `SpellFamilyName`=1, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=26250; +UPDATE `spell_dbc` SET `ProcChance`=101, `BaseLevel`=1, `SpellLevel`=1, `EquippedItemSubClassMask`=-1, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=56, `EffectMiscValue1`=15785, `SpellFamilyName`=1, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=26251; +UPDATE `spell_dbc` SET `ProcChance`=101, `BaseLevel`=1, `SpellLevel`=1, `EquippedItemSubClassMask`=-1, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=56, `EffectMiscValue1`=15792, `SpellFamilyName`=1, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=26252; +UPDATE `spell_dbc` SET `ProcChance`=101, `BaseLevel`=1, `SpellLevel`=1, `EquippedItemSubClassMask`=-1, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=56, `EffectMiscValue1`=15788, `SpellFamilyName`=1, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=26253; +UPDATE `spell_dbc` SET `ProcChance`=101, `BaseLevel`=1, `SpellLevel`=1, `EquippedItemSubClassMask`=-1, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=56, `EffectMiscValue1`=15790, `SpellFamilyName`=1, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=26254; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=23, `EffectAmplitude1`=10000, `EffectTriggerSpell1`=26256, `DmgMultiplier1`=1 WHERE `Id`=26255; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=22, `EffectImplicitTargetB1`=15, `EffectRadiusIndex1`=12, `DmgMultiplier1`=1 WHERE `Id`=26256; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=61, `EffectImplicitTargetA1`=1, `EffectMiscValue1`=9738, `DmgMultiplier1`=1 WHERE `Id`=26257; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=77, `EffectImplicitTargetA1`=1, `DmgMultiplier1`=1 WHERE `Id`=26264; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=23, `EffectAmplitude1`=30000, `EffectTriggerSpell1`=26264, `DmgMultiplier1`=1 WHERE `Id`=26268; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=23, `EffectAmplitude1`=15000, `EffectTriggerSpell1`=26264, `DmgMultiplier1`=1 WHERE `Id`=26270; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=5, `EffectImplicitTargetA1`=1, `EffectImplicitTargetB1`=17, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=26285; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=76, `EffectDieSides1`=1, `EffectImplicitTargetA1`=46, `EffectMiscValue1`=180854, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=26300; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=76, `EffectDieSides1`=1, `EffectImplicitTargetA1`=46, `EffectMiscValue1`=180854, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=26301; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=76, `EffectDieSides1`=1, `EffectImplicitTargetA1`=46, `EffectMiscValue1`=180854, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=26302; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=76, `EffectDieSides1`=1, `EffectImplicitTargetA1`=46, `EffectMiscValue1`=180854, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=26303; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect2`=76, `EffectDieSides2`=1, `EffectImplicitTargetA2`=46, `EffectMiscValue2`=180851, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=26305; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect2`=76, `EffectDieSides2`=1, `EffectImplicitTargetA2`=46, `EffectMiscValue2`=180851, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=26306; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect2`=76, `EffectDieSides2`=1, `EffectImplicitTargetA2`=46, `EffectMiscValue2`=180851, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=26307; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect2`=76, `EffectDieSides2`=1, `EffectImplicitTargetA2`=46, `EffectMiscValue2`=180851, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=26308; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect2`=76, `EffectDieSides2`=1, `EffectImplicitTargetA2`=46, `EffectMiscValue2`=180855, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=26309; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect2`=76, `EffectDieSides2`=1, `EffectImplicitTargetA2`=46, `EffectMiscValue2`=180855, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=26310; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect2`=76, `EffectDieSides2`=1, `EffectImplicitTargetA2`=46, `EffectMiscValue2`=180855, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=26311; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect2`=76, `EffectDieSides2`=1, `EffectImplicitTargetA2`=46, `EffectMiscValue2`=180855, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=26312; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect2`=76, `EffectDieSides2`=1, `EffectImplicitTargetA2`=46, `EffectMiscValue2`=180856, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=26313; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect2`=76, `EffectDieSides2`=1, `EffectImplicitTargetA2`=46, `EffectMiscValue2`=180856, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=26314; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect2`=76, `EffectDieSides2`=1, `EffectImplicitTargetA2`=46, `EffectMiscValue2`=180856, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=26315; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect2`=76, `EffectDieSides2`=1, `EffectImplicitTargetA2`=46, `EffectMiscValue2`=180856, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=26316; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect2`=76, `EffectDieSides2`=1, `EffectImplicitTargetA2`=46, `EffectMiscValue2`=180857, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=26317; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect2`=76, `EffectDieSides2`=1, `EffectImplicitTargetA2`=46, `EffectMiscValue2`=180857, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=26318; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect2`=76, `EffectDieSides2`=1, `EffectImplicitTargetA2`=46, `EffectMiscValue2`=180857, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=26319; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect2`=76, `EffectDieSides2`=1, `EffectImplicitTargetA2`=46, `EffectMiscValue2`=180857, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=26320; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect2`=76, `EffectDieSides2`=1, `EffectImplicitTargetA2`=46, `EffectMiscValue2`=180858, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=26321; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect2`=76, `EffectDieSides2`=1, `EffectImplicitTargetA2`=46, `EffectMiscValue2`=180858, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=26322; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect2`=76, `EffectDieSides2`=1, `EffectImplicitTargetA2`=46, `EffectMiscValue2`=180858, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=26323; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect2`=76, `EffectDieSides2`=1, `EffectImplicitTargetA2`=46, `EffectMiscValue2`=180858, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=26324; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=22, `EffectImplicitTargetB1`=7, `EffectRadiusIndex1`=12, `DmgMultiplier1`=1 WHERE `Id`=26340; +UPDATE `spell_dbc` SET `ProcFlags`=139944, `ProcChance`=100, `SpellLevel`=1, `EquippedItemSubClassMask`=-1, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=42, `EffectTriggerSpell1`=26339, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=26341; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=103, `EffectDieSides1`=1, `EffectBasePoints1`=44, `EffectImplicitTargetA1`=1, `EffectMiscValue1`=609, `DmgMultiplier1`=1 WHERE `Id`=26342; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=76, `EffectDieSides1`=1, `EffectImplicitTargetA1`=46, `EffectMiscValue1`=180854, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=26357; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect2`=76, `EffectDieSides2`=1, `EffectImplicitTargetA2`=46, `EffectMiscValue2`=180855, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=26358; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect2`=76, `EffectDieSides2`=1, `EffectImplicitTargetA2`=46, `EffectMiscValue2`=180856, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=26359; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect2`=76, `EffectDieSides2`=1, `EffectImplicitTargetA2`=46, `EffectMiscValue2`=180851, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=26360; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect2`=76, `EffectDieSides2`=1, `EffectImplicitTargetA2`=46, `EffectMiscValue2`=180857, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=26361; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect2`=76, `EffectDieSides2`=1, `EffectImplicitTargetA2`=46, `EffectMiscValue2`=180858, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=26362; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=5, `Effect2`=6, `Effect3`=63, `EffectDieSides3`=1, `EffectBasePoints3`=499, `EffectImplicitTargetA1`=25, `EffectImplicitTargetA2`=25, `EffectImplicitTargetA3`=25, `EffectImplicitTargetB1`=48, `EffectRadiusIndex1`=13, `EffectApplyAuraName2`=12, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=26382; +UPDATE `spell_dbc` SET `ProcChance`=101, `BaseLevel`=1, `SpellLevel`=1, `EquippedItemSubClassMask`=-1, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=56, `EffectMiscValue1`=15900, `SpellFamilyName`=1, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=26383; +UPDATE `spell_dbc` SET `ProcChance`=101, `BaseLevel`=1, `SpellLevel`=1, `EquippedItemSubClassMask`=-1, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=56, `EffectMiscValue1`=15899, `SpellFamilyName`=1, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=26384; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `EffectImplicitTargetA1`=18, `EffectMiscValue1`=15904, `DmgMultiplier1`=1 WHERE `Id`=26396; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=23, `EffectAmplitude1`=8000, `EffectTriggerSpell1`=26398, `DmgMultiplier1`=1 WHERE `Id`=26397; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=77, `EffectImplicitTargetA1`=22, `EffectImplicitTargetB1`=15, `EffectRadiusIndex1`=12, `DmgMultiplier1`=1 WHERE `Id`=26398; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `Effect2`=3, `EffectImplicitTargetA1`=22, `EffectImplicitTargetA2`=22, `EffectImplicitTargetB1`=7, `EffectImplicitTargetB2`=7, `EffectRadiusIndex1`=12, `EffectRadiusIndex2`=12, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=26399; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=38, `EffectRadiusIndex1`=8, `DmgMultiplier1`=1 WHERE `Id`=26404; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=22, `EffectImplicitTargetB1`=7, `EffectRadiusIndex1`=12, `DmgMultiplier1`=1 WHERE `Id`=26447; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=77, `EffectImplicitTargetA1`=22, `EffectImplicitTargetB1`=15, `EffectRadiusIndex1`=12, `DmgMultiplier1`=1 WHERE `Id`=26457; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `EffectImplicitTargetA1`=18, `EffectMiscValue1`=15910, `DmgMultiplier1`=1 WHERE `Id`=26477; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=77, `EffectImplicitTargetA1`=38, `MaxAffectedTargets`=1, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=26479; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=76, `EffectDieSides1`=1, `EffectImplicitTargetA1`=46, `EffectMiscValue1`=180861, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=26483; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=76, `EffectDieSides1`=1, `EffectImplicitTargetA1`=46, `EffectMiscValue1`=180861, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=26484; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=76, `EffectDieSides1`=1, `EffectImplicitTargetA1`=46, `EffectMiscValue1`=180861, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=26485; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=76, `EffectDieSides1`=1, `EffectImplicitTargetA1`=46, `EffectMiscValue1`=180861, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=26486; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=76, `EffectDieSides1`=1, `EffectImplicitTargetA1`=46, `EffectMiscValue1`=180861, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=26487; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=76, `EffectDieSides1`=1, `EffectImplicitTargetA1`=46, `EffectMiscValue1`=180862, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=26491; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=76, `EffectDieSides1`=1, `EffectImplicitTargetA1`=46, `EffectMiscValue1`=180862, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=26492; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=76, `EffectDieSides1`=1, `EffectImplicitTargetA1`=46, `EffectMiscValue1`=180862, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=26493; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=76, `EffectDieSides1`=1, `EffectImplicitTargetA1`=46, `EffectMiscValue1`=180862, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=26494; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=76, `EffectDieSides1`=1, `EffectImplicitTargetA1`=46, `EffectMiscValue1`=180862, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=26495; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=76, `EffectDieSides1`=1, `EffectImplicitTargetA1`=46, `EffectMiscValue1`=180863, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=26496; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=76, `EffectDieSides1`=1, `EffectImplicitTargetA1`=46, `EffectMiscValue1`=180863, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=26497; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=76, `EffectDieSides1`=1, `EffectImplicitTargetA1`=46, `EffectMiscValue1`=180863, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=26498; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=76, `EffectDieSides1`=1, `EffectImplicitTargetA1`=46, `EffectMiscValue1`=180863, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=26499; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=76, `EffectDieSides1`=1, `EffectImplicitTargetA1`=46, `EffectMiscValue1`=180863, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=26500; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=76, `EffectDieSides1`=1, `EffectImplicitTargetA1`=46, `EffectMiscValue1`=180860, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=26501; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=76, `EffectDieSides1`=1, `EffectImplicitTargetA1`=46, `EffectMiscValue1`=180860, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=26502; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=76, `EffectDieSides1`=1, `EffectImplicitTargetA1`=46, `EffectMiscValue1`=180860, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=26503; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=76, `EffectDieSides1`=1, `EffectImplicitTargetA1`=46, `EffectMiscValue1`=180860, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=26504; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=76, `EffectDieSides1`=1, `EffectImplicitTargetA1`=46, `EffectMiscValue1`=180860, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=26505; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=76, `EffectDieSides1`=1, `EffectImplicitTargetA1`=46, `EffectMiscValue1`=180864, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=26506; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=76, `EffectDieSides1`=1, `EffectImplicitTargetA1`=46, `EffectMiscValue1`=180864, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=26507; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=76, `EffectDieSides1`=1, `EffectImplicitTargetA1`=46, `EffectMiscValue1`=180864, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=26508; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=76, `EffectDieSides1`=1, `EffectImplicitTargetA1`=46, `EffectMiscValue1`=180864, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=26509; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=76, `EffectDieSides1`=1, `EffectImplicitTargetA1`=46, `EffectMiscValue1`=180864, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=26510; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=76, `EffectDieSides1`=1, `EffectImplicitTargetA1`=46, `EffectMiscValue1`=180865, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=26511; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=76, `EffectDieSides1`=1, `EffectImplicitTargetA1`=46, `EffectMiscValue1`=180865, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=26512; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=76, `EffectDieSides1`=1, `EffectImplicitTargetA1`=46, `EffectMiscValue1`=180865, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=26513; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=76, `EffectDieSides1`=1, `EffectImplicitTargetA1`=46, `EffectMiscValue1`=180865, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=26514; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=76, `EffectDieSides1`=1, `EffectImplicitTargetA1`=46, `EffectMiscValue1`=180865, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=26515; +UPDATE `spell_dbc` SET `ProcChance`=101, `BaseLevel`=1, `SpellLevel`=1, `EquippedItemSubClassMask`=-1, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=56, `EffectMiscValue1`=15892, `SpellFamilyName`=1, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=26520; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=103, `EffectDieSides1`=1, `EffectBasePoints1`=14, `EffectImplicitTargetA1`=22, `EffectImplicitTargetB1`=7, `EffectRadiusIndex1`=12, `EffectMiscValue1`=609, `DmgMultiplier1`=1 WHERE `Id`=26523; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=77, `EffectImplicitTargetA1`=22, `EffectImplicitTargetB1`=15, `EffectRadiusIndex1`=12, `DmgMultiplier1`=1 WHERE `Id`=26524; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectDieSides1`=1, `EffectBasePoints1`=299, `EffectImplicitTargetA1`=25, `EffectApplyAuraName1`=136, `EffectMiscValue1`=127, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=26525; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `Effect2`=77, `EffectDieSides1`=1, `EffectImplicitTargetA1`=17, `EffectImplicitTargetA2`=1, `EffectRadiusIndex1`=12, `EffectMiscValue1`=15555, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=26538; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `Effect2`=77, `EffectDieSides1`=1, `EffectImplicitTargetA1`=17, `EffectImplicitTargetA2`=1, `EffectRadiusIndex1`=12, `EffectMiscValue1`=15555, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=26539; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=23, `EffectAmplitude1`=10000, `EffectTriggerSpell1`=26543, `DmgMultiplier1`=1 WHERE `Id`=26542; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectDieSides1`=1, `EffectBasePoints1`=119, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=31, `DmgMultiplier1`=1 WHERE `Id`=26543; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=2, `EffectDieSides1`=81, `EffectBasePoints1`=159, `EffectImplicitTargetA1`=1, `DmgMultiplier1`=1 WHERE `Id`=26544; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=1, `EffectRadiusIndex1`=16, `DmgMultiplier1`=1 WHERE `Id`=26553; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=77, `EffectImplicitTargetA1`=22, `EffectImplicitTargetB1`=15, `EffectRadiusIndex1`=12, `DmgMultiplier1`=1 WHERE `Id`=26559; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `Effect2`=77, `EffectDieSides1`=1, `EffectDieSides2`=1, `EffectImplicitTargetA1`=18, `EffectImplicitTargetA2`=1, `EffectMiscValue1`=15922, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=26564; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=23, `EffectAmplitude1`=10000, `EffectTriggerSpell1`=26264, `DmgMultiplier1`=1 WHERE `Id`=26567; +UPDATE `spell_dbc` SET `ProcChance`=101, `BaseLevel`=1, `SpellLevel`=1, `Effect1`=3, `EffectImplicitTargetA1`=22, `EffectImplicitTargetB1`=15, `EffectRadiusIndex1`=12, `DmgMultiplier1`=1 WHERE `Id`=26569; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=22, `EffectImplicitTargetB1`=7, `EffectRadiusIndex1`=12, `DmgMultiplier1`=1 WHERE `Id`=26570; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `EffectDieSides1`=1, `EffectImplicitTargetA1`=18, `EffectMiscValue1`=15925, `DmgClass`=1, `PreventionType`=1, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=26577; +UPDATE `spell_dbc` SET `ProcChance`=101, `MaxLevel`=1, `SpellLevel`=1, `Effect1`=5, `EffectImplicitTargetA1`=25, `EffectImplicitTargetB1`=17, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=26579; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=23, `EffectAmplitude1`=18000, `EffectTriggerSpell1`=26264, `DmgMultiplier1`=1 WHERE `Id`=26582; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=77, `EffectImplicitTargetA1`=22, `EffectImplicitTargetB1`=7, `EffectRadiusIndex1`=12, `DmgMultiplier1`=1 WHERE `Id`=26585; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=22, `EffectImplicitTargetB1`=7, `EffectRadiusIndex1`=12, `DmgMultiplier1`=1 WHERE `Id`=26589; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=1, `EffectRadiusIndex1`=8, `DmgMultiplier1`=1 WHERE `Id`=26591; +UPDATE `spell_dbc` SET `ProcChance`=101, `BaseLevel`=40, `SpellLevel`=40, `Effect1`=6, `Effect2`=6, `Effect3`=6, `EffectDieSides1`=1, `EffectBasePoints1`=-1, `EffectImplicitTargetA1`=1, `EffectImplicitTargetA2`=1, `EffectImplicitTargetA3`=1, `EffectApplyAuraName1`=77, `EffectApplyAuraName2`=77, `EffectApplyAuraName3`=77, `EffectMiscValue1`=2, `EffectMiscValue2`=18, `EffectMiscValue3`=30, `SpellFamilyName`=9, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=26592; +UPDATE `spell_dbc` SET `ProcChance`=101, `SpellLevel`=1, `Effect1`=86, `EffectImplicitTargetA1`=40, `EffectMiscValue1`=15, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=26594; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `Effect2`=6, `EffectImplicitTargetA1`=1, `EffectImplicitTargetA2`=1, `EffectApplyAuraName1`=38, `EffectApplyAuraName2`=37, `EffectMiscValue1`=11, `EffectMiscValue2`=114, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=26602; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=1, `EffectRadiusIndex1`=8, `DmgMultiplier1`=1 WHERE `Id`=26603; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `EffectDieSides1`=1, `EffectImplicitTargetA1`=18, `EffectRadiusIndex1`=16, `EffectMiscValue1`=15712, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=26617; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=23, `EffectAmplitude1`=30000, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=26619; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=22, `EffectImplicitTargetB1`=15, `EffectRadiusIndex1`=23, `DmgMultiplier1`=1 WHERE `Id`=26626; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=1, `EffectDieSides1`=1, `EffectBasePoints1`=-1, `EffectImplicitTargetA1`=1, `EffectMultipleValue1`=1, `DmgClass`=1, `PreventionType`=1, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=26627; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=1, `EffectRadiusIndex1`=8, `DmgMultiplier1`=1 WHERE `Id`=26628; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `EffectDieSides1`=1, `EffectBasePoints1`=3, `EffectImplicitTargetA1`=17, `EffectRadiusIndex1`=15, `EffectMiscValue1`=15962, `DmgMultiplier1`=1 WHERE `Id`=26630; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `EffectDieSides1`=1, `EffectBasePoints1`=3, `EffectImplicitTargetA1`=17, `EffectRadiusIndex1`=15, `EffectMiscValue1`=15962, `DmgMultiplier1`=1 WHERE `Id`=26631; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `EffectDieSides1`=1, `EffectBasePoints1`=3, `EffectImplicitTargetA1`=17, `EffectRadiusIndex1`=15, `EffectMiscValue1`=15962, `DmgMultiplier1`=1 WHERE `Id`=26632; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=23, `EffectAmplitude1`=1000, `EffectTriggerSpell1`=26634, `DmgMultiplier1`=1 WHERE `Id`=26633; +UPDATE `spell_dbc` SET `ProcChance`=101, `StackAmount`=4, `Effect1`=6, `EffectDieSides1`=1, `EffectBasePoints1`=149, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=31, `DmgMultiplier1`=1 WHERE `Id`=26634; +UPDATE `spell_dbc` SET `ProcChance`=101, `BaseLevel`=1, `SpellLevel`=1, `Effect1`=3, `Effect2`=6, `EffectDieSides2`=1, `EffectImplicitTargetA1`=22, `EffectImplicitTargetA2`=1, `EffectImplicitTargetB1`=15, `EffectRadiusIndex1`=12, `EffectApplyAuraName2`=12, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=26637; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=1, `EffectImplicitTargetA1`=22, `EffectImplicitTargetB1`=7, `EffectRadiusIndex1`=12, `DmgMultiplier1`=1 WHERE `Id`=26644; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=1, `EffectImplicitTargetA1`=1, `DmgMultiplier1`=1 WHERE `Id`=26648; +UPDATE `spell_dbc` SET `Stances`=1, `ProcChance`=101, `Effect1`=6, `EffectDieSides1`=1, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=4, `SpellFamilyName`=4, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=26651; +UPDATE `spell_dbc` SET `ProcChance`=101, `MaxLevel`=10, `BaseLevel`=1, `SpellLevel`=1, `Effect1`=63, `EffectDieSides1`=1, `EffectRealPointsPerLevel1`=2, `EffectImplicitTargetA1`=6, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=26658; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=24, `EffectImplicitTargetA1`=1, `DmgMultiplier1`=1 WHERE `Id`=26668; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=24, `EffectImplicitTargetA1`=1, `DmgMultiplier1`=1 WHERE `Id`=26670; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=24, `EffectImplicitTargetA1`=1, `DmgMultiplier1`=1 WHERE `Id`=26671; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=24, `EffectImplicitTargetA1`=1, `DmgMultiplier1`=1 WHERE `Id`=26672; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=24, `EffectImplicitTargetA1`=1, `DmgMultiplier1`=1 WHERE `Id`=26673; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=24, `EffectImplicitTargetA1`=1, `DmgMultiplier1`=1 WHERE `Id`=26674; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=24, `EffectImplicitTargetA1`=1, `DmgMultiplier1`=1 WHERE `Id`=26675; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=24, `EffectImplicitTargetA1`=1, `DmgMultiplier1`=1 WHERE `Id`=26676; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=1, `DmgMultiplier1`=1 WHERE `Id`=26684; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=1, `DmgMultiplier1`=1 WHERE `Id`=26685; +UPDATE `spell_dbc` SET `ProcChance`=101, `BaseLevel`=70, `SpellLevel`=70, `Effect2`=6, `EffectDieSides2`=1, `EffectBasePoints2`=99, `EffectImplicitTargetA2`=1, `EffectApplyAuraName2`=107, `EffectMiscValue2`=18, `SpellFamilyName`=8, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=26741; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=23, `EffectAmplitude1`=1000, `EffectTriggerSpell1`=24320, `DmgMultiplier1`=1 WHERE `Id`=26744; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=23, `EffectAmplitude1`=60000, `EffectTriggerSpell1`=26767, `DmgMultiplier1`=1 WHERE `Id`=26766; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=77, `EffectImplicitTargetA1`=22, `EffectImplicitTargetB1`=15, `EffectRadiusIndex1`=12, `DmgMultiplier1`=1 WHERE `Id`=26767; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `EffectDieSides1`=1, `EffectImplicitTargetA1`=18, `EffectMiscValue1`=15334, `DmgMultiplier1`=1 WHERE `Id`=26768; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=23, `EffectAmplitude1`=30000, `DmgMultiplier1`=1 WHERE `Id`=26769; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectImplicitTargetA1`=25, `EffectApplyAuraName1`=39, `EffectMiscValue1`=126, `DmgClass`=1, `PreventionType`=1, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=26787; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `EffectDieSides1`=1, `EffectImplicitTargetA1`=18, `EffectMiscValue1`=16006, `DmgMultiplier1`=1 WHERE `Id`=26837; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=77, `EffectImplicitTargetA1`=22, `EffectImplicitTargetB1`=7, `EffectRadiusIndex1`=28, `DmgMultiplier1`=1 WHERE `Id`=26838; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `Effect2`=77, `EffectImplicitTargetA1`=1, `EffectImplicitTargetA2`=1, `EffectApplyAuraName1`=23, `EffectAmplitude1`=600000, `EffectTriggerSpell1`=27742, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=26870; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectDieSides1`=1, `EffectImplicitTargetA1`=6, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=26886; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=24, `EffectDieSides1`=1, `EffectImplicitTargetA1`=25, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=26973; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=24, `EffectDieSides1`=1, `EffectImplicitTargetA1`=25, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=26974; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=22, `EffectImplicitTargetB1`=15, `EffectRadiusIndex1`=12, `DmgMultiplier1`=1 WHERE `Id`=27027; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `Effect2`=1, `EffectDieSides1`=1, `EffectImplicitTargetA1`=18, `EffectImplicitTargetA2`=1, `EffectMiscValue1`=16066, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=27178; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=24, `EffectDieSides1`=1, `EffectImplicitTargetA1`=25, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=27537; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=24, `EffectDieSides1`=1, `EffectImplicitTargetA1`=25, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=27542; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=24, `EffectDieSides1`=1, `EffectImplicitTargetA1`=25, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=27544; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=24, `EffectDieSides1`=1, `EffectImplicitTargetA1`=25, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=27558; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=24, `EffectDieSides1`=1, `EffectImplicitTargetA1`=25, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=27560; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=24, `EffectDieSides1`=1, `EffectImplicitTargetA1`=25, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=27562; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=24, `EffectDieSides1`=1, `EffectImplicitTargetA1`=25, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=27563; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=24, `EffectDieSides1`=1, `EffectImplicitTargetA1`=25, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=27566; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=5, `EffectImplicitTargetA1`=1, `EffectImplicitTargetB1`=17, `DmgMultiplier1`=1 WHERE `Id`=27597; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=5, `EffectImplicitTargetA1`=1, `EffectImplicitTargetB1`=17, `DmgMultiplier1`=1 WHERE `Id`=27598; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=77, `EffectImplicitTargetA1`=22, `EffectImplicitTargetB1`=7, `EffectRadiusIndex1`=12, `DmgMultiplier1`=1 WHERE `Id`=27600; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=76, `EffectDieSides1`=2, `EffectBasePoints1`=-1, `EffectImplicitTargetA1`=32, `EffectRadiusIndex1`=14, `EffectMiscValue1`=181068, `DmgMultiplier1`=1 WHERE `Id`=27627; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=76, `EffectDieSides1`=2, `EffectImplicitTargetA1`=32, `EffectRadiusIndex1`=14, `EffectMiscValue1`=181068, `DmgMultiplier1`=1 WHERE `Id`=27628; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=76, `EffectDieSides1`=2, `EffectBasePoints1`=1, `EffectImplicitTargetA1`=32, `EffectRadiusIndex1`=14, `EffectMiscValue1`=181068, `DmgMultiplier1`=1 WHERE `Id`=27629; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=76, `EffectDieSides1`=1, `EffectImplicitTargetA1`=32, `EffectRadiusIndex1`=14, `EffectMiscValue1`=181069, `DmgMultiplier1`=1 WHERE `Id`=27630; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=76, `EffectDieSides1`=1, `EffectBasePoints1`=1, `EffectImplicitTargetA1`=32, `EffectRadiusIndex1`=14, `EffectMiscValue1`=181069, `DmgMultiplier1`=1 WHERE `Id`=27631; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `EffectDieSides1`=1, `EffectImplicitTargetA1`=18, `EffectMiscValue1`=16103, `DmgMultiplier1`=1 WHERE `Id`=27643; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `EffectDieSides1`=1, `EffectImplicitTargetA1`=18, `EffectMiscValue1`=16104, `DmgMultiplier1`=1 WHERE `Id`=27644; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=76, `EffectDieSides1`=1, `EffectImplicitTargetA1`=18, `EffectMiscValue1`=153464, `DmgMultiplier1`=1 WHERE `Id`=27645; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `Effect2`=77, `EffectImplicitTargetA1`=1, `EffectImplicitTargetA2`=1, `EffectApplyAuraName1`=23, `EffectAmplitude1`=120000, `EffectTriggerSpell1`=27741, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=27654; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=63, `EffectImplicitTargetA1`=25, `DmgMultiplier1`=1 WHERE `Id`=27674; +UPDATE `spell_dbc` SET `ProcChance`=101, `BaseLevel`=1, `SpellLevel`=1, `Effect1`=3, `EffectImplicitTargetA1`=22, `EffectImplicitTargetB1`=15, `EffectRadiusIndex1`=12, `DmgMultiplier1`=1 WHERE `Id`=27678; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `EffectDieSides1`=1, `EffectImplicitTargetA1`=47, `EffectRadiusIndex1`=8, `EffectMiscValue1`=16119, `DmgMultiplier1`=1 WHERE `Id`=27690; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `EffectDieSides1`=1, `EffectImplicitTargetA1`=48, `EffectRadiusIndex1`=8, `EffectMiscValue1`=16119, `DmgMultiplier1`=1 WHERE `Id`=27691; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `EffectDieSides1`=1, `EffectImplicitTargetA1`=50, `EffectRadiusIndex1`=8, `EffectMiscValue1`=16119, `DmgMultiplier1`=1 WHERE `Id`=27692; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `EffectDieSides1`=1, `EffectImplicitTargetA1`=49, `EffectRadiusIndex1`=8, `EffectMiscValue1`=16119, `DmgMultiplier1`=1 WHERE `Id`=27693; +UPDATE `spell_dbc` SET `ProcChance`=101, `MaxLevel`=1, `SpellLevel`=1, `Effect1`=5, `EffectDieSides1`=1, `EffectBasePoints1`=4, `EffectImplicitTargetA1`=1, `EffectImplicitTargetB1`=17, `EffectMultipleValue1`=1, `DmgClass`=1, `PreventionType`=1, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=27694; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=23, `EffectAmplitude1`=90000, `EffectTriggerSpell1`=26869, `DmgMultiplier1`=1 WHERE `Id`=27742; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectDieSides1`=1, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=35, `DmgMultiplier1`=1 WHERE `Id`=27748; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=77, `EffectImplicitTargetA1`=1, `DmgMultiplier1`=1 WHERE `Id`=27749; +UPDATE `spell_dbc` SET `ProcChance`=101, `SpellLevel`=1, `Effect1`=2, `EffectDieSides1`=1, `EffectImplicitTargetA1`=6, `SpellFamilyName`=6, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=27770; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=103, `EffectDieSides1`=1, `EffectBasePoints1`=149, `EffectImplicitTargetA1`=21, `EffectMiscValue1`=529, `DmgMultiplier1`=1 WHERE `Id`=27773; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectDieSides1`=1, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=23, `EffectAmplitude1`=15000, `EffectTriggerSpell1`=8329, `DmgClass`=1, `PreventionType`=1, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=27791; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `EffectDieSides1`=1, `EffectImplicitTargetA1`=1, `EffectImplicitTargetB1`=32, `EffectRadiusIndex1`=16, `EffectMiscValue1`=16124, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=27884; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=23, `EffectAmplitude1`=5000, `EffectTriggerSpell1`=27885, `DmgMultiplier1`=1 WHERE `Id`=27887; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=22, `EffectImplicitTargetB1`=7, `EffectRadiusIndex1`=12, `DmgMultiplier1`=1 WHERE `Id`=27896; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `EffectDieSides1`=1, `EffectImplicitTargetA1`=32, `EffectRadiusIndex1`=15, `EffectMiscValue1`=16127, `DmgMultiplier1`=1 WHERE `Id`=27921; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=22, `EffectImplicitTargetB1`=7, `EffectRadiusIndex1`=12, `DmgMultiplier1`=1 WHERE `Id`=27930; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `EffectDieSides1`=1, `EffectImplicitTargetA1`=32, `EffectRadiusIndex1`=15, `EffectMiscValue1`=16148, `DmgMultiplier1`=1 WHERE `Id`=27932; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=56, `EffectMiscValue1`=15214, `DmgMultiplier1`=1 WHERE `Id`=27933; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=77, `EffectImplicitTargetA1`=1, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=27934; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=22, `EffectImplicitTargetB1`=7, `EffectRadiusIndex1`=12, `DmgMultiplier1`=1 WHERE `Id`=27938; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `Effect2`=41, `EffectDieSides1`=1, `EffectDieSides2`=1, `EffectImplicitTargetA1`=32, `EffectImplicitTargetA2`=32, `EffectRadiusIndex1`=15, `EffectRadiusIndex2`=15, `EffectMiscValue1`=16149, `EffectMiscValue2`=16150, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=27939; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=123, `EffectImplicitTargetA1`=25, `EffectMiscValue1`=315, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=27998; +UPDATE `spell_dbc` SET `ProcChance`=101, `EquippedItemSubClassMask`=-1, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=23, `EffectAmplitude1`=1000, `EffectTriggerSpell1`=28000, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=27999; +UPDATE `spell_dbc` SET `ProcChance`=101, `EquippedItemSubClassMask`=-1, `Effect1`=3, `EffectImplicitTargetA1`=22, `EffectImplicitTargetB1`=7, `EffectRadiusIndex1`=7, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=28000; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=123, `EffectImplicitTargetA1`=25, `EffectMiscValue1`=316, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=28001; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectImplicitTargetA1`=22, `EffectImplicitTargetB1`=7, `EffectRadiusIndex1`=12, `EffectApplyAuraName1`=23, `EffectAmplitude1`=20000, `EffectTriggerSpell1`=27884, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=28007; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `EffectDieSides1`=1, `EffectImplicitTargetA1`=1, `EffectImplicitTargetB1`=32, `EffectRadiusIndex1`=16, `EffectMiscValue1`=16125, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=28008; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectImplicitTargetA1`=22, `EffectImplicitTargetB1`=7, `EffectRadiusIndex1`=12, `EffectApplyAuraName1`=23, `EffectAmplitude1`=25000, `EffectTriggerSpell1`=28008, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=28009; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `EffectDieSides1`=1, `EffectImplicitTargetA1`=1, `EffectImplicitTargetB1`=32, `EffectRadiusIndex1`=16, `EffectMiscValue1`=16126, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=28010; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectImplicitTargetA1`=22, `EffectImplicitTargetB1`=7, `EffectRadiusIndex1`=12, `EffectApplyAuraName1`=23, `EffectAmplitude1`=30000, `EffectTriggerSpell1`=28010, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=28011; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=22, `EffectImplicitTargetB1`=15, `EffectRadiusIndex1`=12, `DmgMultiplier1`=1 WHERE `Id`=28033; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=22, `EffectImplicitTargetB1`=15, `EffectRadiusIndex1`=12, `DmgMultiplier1`=1 WHERE `Id`=28034; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=22, `EffectImplicitTargetB1`=7, `EffectRadiusIndex1`=12, `DmgMultiplier1`=1 WHERE `Id`=28035; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=77, `EffectImplicitTargetA1`=22, `EffectImplicitTargetB1`=7, `EffectRadiusIndex1`=12, `DmgMultiplier1`=1 WHERE `Id`=28082; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=38, `EffectRadiusIndex1`=12, `DmgMultiplier1`=1 WHERE `Id`=28083; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=23, `EffectAmplitude1`=150000, `EffectTriggerSpell1`=28091, `DmgMultiplier1`=1 WHERE `Id`=28090; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=1, `DmgMultiplier1`=1 WHERE `Id`=28091; +UPDATE `spell_dbc` SET `Dispel`=5, `AuraInterruptFlags`=6147, `ProcChance`=101, `BaseLevel`=1, `SpellLevel`=1, `EquippedItemSubClassMask`=-1, `Effect1`=6, `EffectDieSides1`=1, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=4, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=28094; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=22, `EffectImplicitTargetB1`=7, `EffectRadiusIndex1`=12, `DmgMultiplier1`=1 WHERE `Id`=28098; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=1, `DmgMultiplier1`=1 WHERE `Id`=28108; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=22, `EffectImplicitTargetB1`=7, `EffectRadiusIndex1`=12, `DmgMultiplier1`=1 WHERE `Id`=28110; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=63, `EffectDieSides1`=1, `EffectBasePoints1`=499, `EffectImplicitTargetA1`=22, `EffectImplicitTargetB1`=15, `EffectRadiusIndex1`=12, `DmgMultiplier1`=1 WHERE `Id`=28115; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=77, `EffectImplicitTargetA1`=38, `DmgMultiplier1`=1 WHERE `Id`=28116; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=77, `EffectImplicitTargetA1`=38, `DmgMultiplier1`=1 WHERE `Id`=28117; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=123, `EffectImplicitTargetA1`=1, `EffectMiscValue1`=629, `DmgMultiplier1`=1 WHERE `Id`=28129; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=77, `EffectImplicitTargetA1`=38, `DmgMultiplier1`=1 WHERE `Id`=28138; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=4, `DmgMultiplier1`=1 WHERE `Id`=28139; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectImplicitTargetA1`=25, `EffectApplyAuraName1`=11, `DmgMultiplier1`=1 WHERE `Id`=28140; +UPDATE `spell_dbc` SET `ProcChance`=101, `EquippedItemSubClassMask`=-1, `Effect1`=6, `EffectDieSides1`=1, `EffectBasePoints1`=9, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=22, `EffectMiscValue1`=8, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=28162; +UPDATE `spell_dbc` SET `ProcChance`=101, `EquippedItemSubClassMask`=-1, `Effect1`=6, `EffectDieSides1`=1, `EffectBasePoints1`=9, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=22, `EffectMiscValue1`=16, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=28164; +UPDATE `spell_dbc` SET `ProcChance`=101, `EquippedItemSubClassMask`=-1, `Effect1`=6, `EffectDieSides1`=1, `EffectBasePoints1`=9, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=22, `EffectMiscValue1`=32, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=28166; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `EffectImplicitTargetA1`=18, `EffectRadiusIndex1`=8, `EffectMiscValue1`=16298, `DmgMultiplier1`=1 WHERE `Id`=28175; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `EffectImplicitTargetA1`=18, `EffectRadiusIndex1`=8, `EffectMiscValue1`=16299, `DmgMultiplier1`=1 WHERE `Id`=28177; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `EffectImplicitTargetA1`=18, `EffectRadiusIndex1`=8, `EffectMiscValue1`=16141, `DmgMultiplier1`=1 WHERE `Id`=28179; +UPDATE `spell_dbc` SET `ProcChance`=101, `BaseLevel`=64, `SpellLevel`=64, `EquippedItemSubClassMask`=-1, `Effect1`=6, `EffectDieSides1`=1, `EffectBasePoints1`=19, `EffectImplicitTargetA1`=57, `EffectApplyAuraName1`=153, `EffectMultipleValue1`=1, `EffectMiscValue1`=127, `SpellFamilyName`=6, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=28188; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `Effect2`=6, `Effect3`=6, `EffectDieSides1`=1, `EffectDieSides2`=1, `EffectDieSides3`=1, `EffectBasePoints1`=799, `EffectBasePoints2`=19, `EffectBasePoints3`=99, `EffectImplicitTargetA1`=25, `EffectImplicitTargetA2`=25, `EffectImplicitTargetA3`=25, `EffectApplyAuraName1`=13, `EffectApplyAuraName2`=31, `EffectApplyAuraName3`=56, `EffectMiscValue1`=1, `EffectMiscValue3`=8545, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=28190; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=25, `DmgMultiplier1`=1 WHERE `Id`=28203; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=23, `EffectAmplitude1`=6000, `EffectTriggerSpell1`=28217, `DmgMultiplier1`=1 WHERE `Id`=28216; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `EffectDieSides1`=1, `EffectImplicitTargetA1`=18, `EffectMiscValue1`=16360, `DmgMultiplier1`=1 WHERE `Id`=28217; +UPDATE `spell_dbc` SET `Targets`=64, `ProcChance`=101, `Effect1`=41, `EffectDieSides1`=1, `EffectImplicitTargetA1`=25, `EffectRadiusIndex1`=12, `EffectMiscValue1`=16290, `DmgMultiplier1`=1 WHERE `Id`=28218; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `EffectImplicitTargetA1`=18, `EffectRadiusIndex1`=8, `EffectMiscValue1`=16356, `DmgMultiplier1`=1 WHERE `Id`=28227; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=23, `EffectAmplitude1`=3000, `EffectTriggerSpell1`=28236, `DmgMultiplier1`=1 WHERE `Id`=28235; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=77, `EffectImplicitTargetA1`=22, `EffectImplicitTargetB1`=7, `EffectRadiusIndex1`=18, `MaxAffectedTargets`=1, `DmgMultiplier1`=1 WHERE `Id`=28236; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `Effect2`=6, `Effect3`=6, `EffectDieSides1`=1, `EffectDieSides2`=1, `EffectDieSides3`=1, `EffectImplicitTargetA1`=25, `EffectImplicitTargetA2`=25, `EffectImplicitTargetA3`=25, `EffectApplyAuraName1`=77, `EffectApplyAuraName2`=77, `EffectApplyAuraName3`=77, `EffectMiscValue1`=17, `EffectMiscValue2`=5, `EffectMiscValue3`=7, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=28237; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=38, `EffectRadiusIndex1`=12, `DmgMultiplier1`=1 WHERE `Id`=28238; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=124, `EffectImplicitTargetA1`=25, `EffectMiscValue1`=300, `DmgMultiplier1`=1 WHERE `Id`=28266; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=103, `EffectDieSides1`=1, `EffectBasePoints1`=999, `EffectImplicitTargetA1`=25, `EffectMiscValue1`=922, `DmgMultiplier1`=1 WHERE `Id`=28283; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `EffectImplicitTargetA1`=18, `EffectRadiusIndex1`=18, `EffectMiscValue1`=14697, `DmgMultiplier1`=1 WHERE `Id`=28289; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `EffectImplicitTargetA1`=18, `EffectRadiusIndex1`=18, `EffectMiscValue1`=16379, `DmgMultiplier1`=1 WHERE `Id`=28290; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `EffectImplicitTargetA1`=18, `EffectRadiusIndex1`=18, `EffectMiscValue1`=16380, `DmgMultiplier1`=1 WHERE `Id`=28291; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=23, `EffectAmplitude1`=600000, `EffectTriggerSpell1`=28091, `DmgMultiplier1`=1 WHERE `Id`=28292; +UPDATE `spell_dbc` SET `ProcChance`=101, `BaseLevel`=29, `SpellLevel`=29, `EquippedItemSubClassMask`=-1, `Effect1`=6, `EffectDieSides1`=1, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=23, `EffectAmplitude1`=1000, `EffectTriggerSpell1`=28297, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=28298; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=103, `EffectDieSides1`=1, `EffectBasePoints1`=2999, `EffectImplicitTargetA1`=25, `EffectMiscValue1`=922, `DmgMultiplier1`=1 WHERE `Id`=28300; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=103, `EffectDieSides1`=1, `EffectBasePoints1`=199, `EffectImplicitTargetA1`=25, `EffectMiscValue1`=922, `DmgMultiplier1`=1 WHERE `Id`=28302; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=22, `EffectImplicitTargetB1`=15, `EffectRadiusIndex1`=10, `DmgMultiplier1`=1 WHERE `Id`=28307; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=103, `EffectDieSides1`=1, `EffectBasePoints1`=1999, `EffectImplicitTargetA1`=25, `EffectMiscValue1`=922, `DmgMultiplier1`=1 WHERE `Id`=28312; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=4, `DmgMultiplier1`=1 WHERE `Id`=28316; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=1, `DmgMultiplier1`=1 WHERE `Id`=28345; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=25, `DmgMultiplier1`=1 WHERE `Id`=28349; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=22, `EffectImplicitTargetB1`=7, `EffectRadiusIndex1`=12, `DmgMultiplier1`=1 WHERE `Id`=28359; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=2, `EffectDieSides1`=401, `EffectBasePoints1`=3799, `EffectImplicitTargetA1`=6, `EffectImplicitTargetB1`=46, `DmgMultiplier1`=1 WHERE `Id`=28364; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectDieSides1`=1, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=23, `EffectAmplitude1`=10000, `EffectTriggerSpell1`=28389, `DmgMultiplier1`=1 WHERE `Id`=28384; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=22, `EffectImplicitTargetB1`=15, `EffectRadiusIndex1`=12, `DmgMultiplier1`=1 WHERE `Id`=28388; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectDieSides1`=1, `EffectBasePoints1`=199, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=61, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=28409; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=77, `EffectImplicitTargetA1`=22, `EffectImplicitTargetB1`=7, `EffectRadiusIndex1`=12, `DmgMultiplier1`=1 WHERE `Id`=28415; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=77, `EffectImplicitTargetA1`=22, `EffectImplicitTargetB1`=7, `EffectRadiusIndex1`=12, `DmgMultiplier1`=1 WHERE `Id`=28416; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=77, `EffectImplicitTargetA1`=22, `EffectImplicitTargetB1`=7, `EffectRadiusIndex1`=12, `DmgMultiplier1`=1 WHERE `Id`=28417; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `EffectImplicitTargetA1`=18, `EffectMiscValue1`=16427, `DmgMultiplier1`=1 WHERE `Id`=28421; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `EffectImplicitTargetA1`=18, `EffectMiscValue1`=16428, `DmgMultiplier1`=1 WHERE `Id`=28422; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `EffectImplicitTargetA1`=18, `EffectMiscValue1`=16429, `DmgMultiplier1`=1 WHERE `Id`=28423; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=23, `EffectAmplitude1`=3000, `EffectTriggerSpell1`=28415, `DmgMultiplier1`=1 WHERE `Id`=28425; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=23, `EffectAmplitude1`=30000, `EffectTriggerSpell1`=28416, `DmgMultiplier1`=1 WHERE `Id`=28426; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=23, `EffectAmplitude1`=30000, `EffectTriggerSpell1`=28417, `DmgMultiplier1`=1 WHERE `Id`=28427; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=77, `EffectImplicitTargetA1`=1, `DmgMultiplier1`=1 WHERE `Id`=28432; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=1, `DmgMultiplier1`=1 WHERE `Id`=28446; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=77, `EffectImplicitTargetA1`=22, `EffectImplicitTargetB1`=7, `EffectRadiusIndex1`=12, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=28452; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=23, `EffectAmplitude1`=10000, `EffectTriggerSpell1`=28455, `DmgMultiplier1`=1 WHERE `Id`=28453; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `EffectImplicitTargetA1`=18, `EffectMiscValue1`=16441, `DmgMultiplier1`=1 WHERE `Id`=28454; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=77, `EffectImplicitTargetA1`=22, `EffectImplicitTargetB1`=7, `EffectRadiusIndex1`=12, `DmgMultiplier1`=1 WHERE `Id`=28455; +UPDATE `spell_dbc` SET `Stances`=134217728, `ProcChance`=101, `BaseLevel`=44, `SpellLevel`=44, `EquippedItemSubClassMask`=-1, `Effect1`=6, `Effect2`=6, `EffectImplicitTargetA1`=25, `EffectImplicitTargetA2`=1, `EffectRadiusIndex1`=22, `EffectApplyAuraName1`=1, `EffectApplyAuraName2`=4, `SpellFamilyName`=1, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=28469; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=86, `EffectDieSides1`=1, `EffectImplicitTargetA1`=40, `EffectMiscValue1`=15, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=28523; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=23, `EffectAmplitude1`=2000, `EffectTriggerSpell1`=28531, `DmgMultiplier1`=1 WHERE `Id`=28529; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=24, `EffectDieSides1`=1, `EffectImplicitTargetA1`=25, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=28532; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=23, `EffectAmplitude1`=3000, `EffectTriggerSpell1`=28547, `DmgMultiplier1`=1 WHERE `Id`=28534; +UPDATE `spell_dbc` SET `Targets`=64, `ProcChance`=101, `Effect1`=76, `EffectImplicitTargetA1`=1, `EffectMiscValue1`=181247, `DmgClass`=1, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=28535; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `EffectDieSides1`=1, `EffectImplicitTargetA1`=32, `EffectRadiusIndex1`=13, `EffectMiscValue1`=16474, `DmgMultiplier1`=1 WHERE `Id`=28561; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=77, `EffectImplicitTargetA1`=38, `DmgMultiplier1`=1 WHERE `Id`=28617; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=124, `Effect2`=6, `Effect3`=6, `EffectImplicitTargetA1`=25, `EffectImplicitTargetA2`=25, `EffectImplicitTargetA3`=25, `EffectApplyAuraName2`=23, `EffectApplyAuraName3`=60, `EffectAmplitude2`=1000, `EffectMiscValue1`=200, `EffectTriggerSpell2`=28622, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=28618; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=124, `Effect2`=6, `Effect3`=6, `EffectImplicitTargetA1`=25, `EffectImplicitTargetA2`=25, `EffectImplicitTargetA3`=25, `EffectApplyAuraName2`=23, `EffectApplyAuraName3`=60, `EffectAmplitude2`=2000, `EffectMiscValue1`=300, `EffectTriggerSpell2`=28622, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=28619; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=124, `Effect2`=6, `Effect3`=6, `EffectImplicitTargetA1`=25, `EffectImplicitTargetA2`=25, `EffectImplicitTargetA3`=25, `EffectApplyAuraName2`=23, `EffectApplyAuraName3`=60, `EffectAmplitude2`=2000, `EffectMiscValue1`=400, `EffectTriggerSpell2`=28622, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=28620; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=124, `Effect2`=6, `Effect3`=6, `EffectImplicitTargetA1`=25, `EffectImplicitTargetA2`=25, `EffectImplicitTargetA3`=25, `EffectApplyAuraName2`=23, `EffectApplyAuraName3`=60, `EffectAmplitude2`=2000, `EffectMiscValue1`=500, `EffectTriggerSpell2`=28622, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=28621; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=77, `EffectDieSides1`=1, `EffectBasePoints1`=9, `EffectImplicitTargetA1`=1, `DmgMultiplier1`=1 WHERE `Id`=28625; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `Effect2`=6, `EffectDieSides1`=1, `EffectImplicitTargetA1`=18, `EffectImplicitTargetA2`=1, `EffectApplyAuraName2`=56, `EffectMiscValue1`=16486, `EffectMiscValue2`=17286, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=28627; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=77, `EffectImplicitTargetA1`=25, `DmgMultiplier1`=1 WHERE `Id`=28628; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=77, `EffectImplicitTargetA1`=1, `DmgMultiplier1`=1 WHERE `Id`=28629; +UPDATE `spell_dbc` SET `ProcChance`=101, `BaseLevel`=62, `SpellLevel`=62, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=4, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=28663; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=25, `EffectRadiusIndex1`=13, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=28713; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=1, `EffectImplicitTargetA1`=1, `DmgMultiplier1`=1 WHERE `Id`=28748; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=38, `EffectRadiusIndex1`=12, `MaxAffectedTargets`=3, `DmgMultiplier1`=1 WHERE `Id`=28781; +UPDATE `spell_dbc` SET `ProcChance`=101, `EquippedItemSubClassMask`=-1, `Effect1`=3, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=28797; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=77, `EffectImplicitTargetA1`=1, `DmgMultiplier1`=1 WHERE `Id`=28838; +UPDATE `spell_dbc` SET `Targets`=256, `ProcChance`=101, `EquippedItemSubClassMask`=-1, `Effect1`=36, `EffectTriggerSpell1`=28867, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=28868; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectDieSides1`=1, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=23, `EffectAmplitude1`=1000, `EffectTriggerSpell1`=28865, `DmgMultiplier1`=1 WHERE `Id`=28874; +UPDATE `spell_dbc` SET `ProcFlags`=20, `ProcChance`=25, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=42, `EffectTriggerSpell1`=28882, `DmgMultiplier1`=1 WHERE `Id`=28881; +UPDATE `spell_dbc` SET `Targets`=256, `ProcChance`=101, `Effect1`=24, `DmgMultiplier1`=1 WHERE `Id`=28885; +UPDATE `spell_dbc` SET `Targets`=256, `ProcChance`=101, `Effect1`=24, `DmgMultiplier1`=1 WHERE `Id`=28886; +UPDATE `spell_dbc` SET `Targets`=256, `ProcChance`=101, `Effect1`=24, `DmgMultiplier1`=1 WHERE `Id`=28908; +UPDATE `spell_dbc` SET `Targets`=256, `ProcChance`=101, `Effect1`=24, `DmgMultiplier1`=1 WHERE `Id`=28909; +UPDATE `spell_dbc` SET `Targets`=256, `ProcChance`=101, `Effect1`=24, `DmgMultiplier1`=1 WHERE `Id`=28919; +UPDATE `spell_dbc` SET `Targets`=256, `ProcChance`=101, `Effect1`=24, `DmgMultiplier1`=1 WHERE `Id`=28920; +UPDATE `spell_dbc` SET `Targets`=256, `ProcChance`=101, `Effect1`=24, `DmgMultiplier1`=1 WHERE `Id`=28921; +UPDATE `spell_dbc` SET `Targets`=256, `ProcChance`=101, `Effect1`=24, `DmgMultiplier1`=1 WHERE `Id`=28923; +UPDATE `spell_dbc` SET `Targets`=256, `ProcChance`=101, `Effect1`=24, `DmgMultiplier1`=1 WHERE `Id`=28926; +UPDATE `spell_dbc` SET `Targets`=256, `ProcChance`=101, `Effect1`=24, `DmgMultiplier1`=1 WHERE `Id`=28929; +UPDATE `spell_dbc` SET `Targets`=256, `ProcChance`=101, `Effect1`=24, `DmgMultiplier1`=1 WHERE `Id`=28930; +UPDATE `spell_dbc` SET `Targets`=256, `ProcChance`=101, `Effect1`=24, `DmgMultiplier1`=1 WHERE `Id`=28935; +UPDATE `spell_dbc` SET `Targets`=256, `ProcChance`=101, `Effect1`=24, `DmgMultiplier1`=1 WHERE `Id`=28937; +UPDATE `spell_dbc` SET `Targets`=256, `ProcChance`=101, `Effect1`=24, `DmgMultiplier1`=1 WHERE `Id`=28939; +UPDATE `spell_dbc` SET `Targets`=256, `ProcChance`=101, `Effect1`=24, `DmgMultiplier1`=1 WHERE `Id`=28940; +UPDATE `spell_dbc` SET `Targets`=256, `ProcChance`=101, `Effect1`=24, `DmgMultiplier1`=1 WHERE `Id`=28941; +UPDATE `spell_dbc` SET `Targets`=256, `ProcChance`=101, `Effect1`=24, `DmgMultiplier1`=1 WHERE `Id`=28942; +UPDATE `spell_dbc` SET `Targets`=256, `ProcChance`=101, `Effect1`=24, `DmgMultiplier1`=1 WHERE `Id`=28943; +UPDATE `spell_dbc` SET `Targets`=256, `ProcChance`=101, `Effect1`=24, `DmgMultiplier1`=1 WHERE `Id`=28945; +UPDATE `spell_dbc` SET `Targets`=256, `ProcChance`=101, `Effect1`=24, `DmgMultiplier1`=1 WHERE `Id`=28946; +UPDATE `spell_dbc` SET `Targets`=256, `ProcChance`=101, `Effect1`=24, `DmgMultiplier1`=1 WHERE `Id`=28949; +UPDATE `spell_dbc` SET `Targets`=256, `ProcChance`=101, `Effect1`=24, `DmgMultiplier1`=1 WHERE `Id`=28951; +UPDATE `spell_dbc` SET `Targets`=256, `ProcChance`=101, `Effect1`=24, `DmgMultiplier1`=1 WHERE `Id`=28952; +UPDATE `spell_dbc` SET `Targets`=256, `ProcChance`=101, `Effect1`=24, `DmgMultiplier1`=1 WHERE `Id`=28954; +UPDATE `spell_dbc` SET `Targets`=256, `ProcChance`=101, `Effect1`=24, `DmgMultiplier1`=1 WHERE `Id`=28956; +UPDATE `spell_dbc` SET `Targets`=256, `ProcChance`=101, `Effect1`=24, `DmgMultiplier1`=1 WHERE `Id`=28958; +UPDATE `spell_dbc` SET `Targets`=256, `ProcChance`=101, `Effect1`=24, `DmgMultiplier1`=1 WHERE `Id`=28959; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=38, `EffectRadiusIndex1`=12, `DmgMultiplier1`=1 WHERE `Id`=28961; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=77, `EffectImplicitTargetA1`=38, `DmgMultiplier1`=1 WHERE `Id`=28992; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=1, `DmgMultiplier1`=1 WHERE `Id`=28994; +UPDATE `spell_dbc` SET `Targets`=256, `ProcChance`=101, `Effect1`=24, `DmgMultiplier1`=1 WHERE `Id`=29009; +UPDATE `spell_dbc` SET `Targets`=256, `ProcChance`=101, `Effect1`=24, `DmgMultiplier1`=1 WHERE `Id`=29010; +UPDATE `spell_dbc` SET `Targets`=256, `ProcChance`=101, `Effect1`=24, `DmgMultiplier1`=1 WHERE `Id`=29011; +UPDATE `spell_dbc` SET `Targets`=256, `ProcChance`=101, `Effect1`=24, `DmgMultiplier1`=1 WHERE `Id`=29012; +UPDATE `spell_dbc` SET `Targets`=256, `ProcChance`=101, `Effect1`=24, `DmgMultiplier1`=1 WHERE `Id`=29013; +UPDATE `spell_dbc` SET `Targets`=256, `ProcChance`=101, `Effect1`=24, `DmgMultiplier1`=1 WHERE `Id`=29014; +UPDATE `spell_dbc` SET `Targets`=256, `ProcChance`=101, `Effect1`=24, `DmgMultiplier1`=1 WHERE `Id`=29015; +UPDATE `spell_dbc` SET `Targets`=256, `ProcChance`=101, `Effect1`=24, `DmgMultiplier1`=1 WHERE `Id`=29016; +UPDATE `spell_dbc` SET `Targets`=256, `ProcChance`=101, `Effect1`=24, `DmgMultiplier1`=1 WHERE `Id`=29017; +UPDATE `spell_dbc` SET `Targets`=256, `ProcChance`=101, `Effect1`=24, `DmgMultiplier1`=1 WHERE `Id`=29018; +UPDATE `spell_dbc` SET `Targets`=256, `ProcChance`=101, `Effect1`=24, `DmgMultiplier1`=1 WHERE `Id`=29019; +UPDATE `spell_dbc` SET `Targets`=256, `ProcChance`=101, `Effect1`=24, `DmgMultiplier1`=1 WHERE `Id`=29020; +UPDATE `spell_dbc` SET `Targets`=256, `ProcChance`=101, `Effect1`=24, `DmgMultiplier1`=1 WHERE `Id`=29021; +UPDATE `spell_dbc` SET `Targets`=256, `ProcChance`=101, `Effect1`=24, `DmgMultiplier1`=1 WHERE `Id`=29022; +UPDATE `spell_dbc` SET `Targets`=256, `ProcChance`=101, `Effect1`=24, `DmgMultiplier1`=1 WHERE `Id`=29023; +UPDATE `spell_dbc` SET `Targets`=256, `ProcChance`=101, `Effect1`=24, `DmgMultiplier1`=1 WHERE `Id`=29024; +UPDATE `spell_dbc` SET `Targets`=256, `ProcChance`=101, `Effect1`=24, `DmgMultiplier1`=1 WHERE `Id`=29025; +UPDATE `spell_dbc` SET `Targets`=256, `ProcChance`=101, `Effect1`=24, `DmgMultiplier1`=1 WHERE `Id`=29026; +UPDATE `spell_dbc` SET `Targets`=256, `ProcChance`=101, `Effect1`=24, `DmgMultiplier1`=1 WHERE `Id`=29027; +UPDATE `spell_dbc` SET `Targets`=256, `ProcChance`=101, `Effect1`=24, `DmgMultiplier1`=1 WHERE `Id`=29028; +UPDATE `spell_dbc` SET `Targets`=256, `ProcChance`=101, `Effect1`=24, `DmgMultiplier1`=1 WHERE `Id`=29030; +UPDATE `spell_dbc` SET `Targets`=256, `ProcChance`=101, `Effect1`=24, `DmgMultiplier1`=1 WHERE `Id`=29031; +UPDATE `spell_dbc` SET `Targets`=256, `ProcChance`=101, `Effect1`=24, `DmgMultiplier1`=1 WHERE `Id`=29032; +UPDATE `spell_dbc` SET `Targets`=256, `ProcChance`=101, `Effect1`=24, `DmgMultiplier1`=1 WHERE `Id`=29033; +UPDATE `spell_dbc` SET `Targets`=256, `ProcChance`=101, `Effect1`=24, `DmgMultiplier1`=1 WHERE `Id`=29034; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=4, `DmgMultiplier1`=1 WHERE `Id`=29035; +UPDATE `spell_dbc` SET `Targets`=256, `ProcChance`=101, `Effect1`=24, `DmgMultiplier1`=1 WHERE `Id`=29036; +UPDATE `spell_dbc` SET `Targets`=256, `ProcChance`=101, `Effect1`=24, `DmgMultiplier1`=1 WHERE `Id`=29037; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=56, `EffectMiscValue1`=16805, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=29046; +UPDATE `spell_dbc` SET `ProcChance`=101, `StackAmount`=500, `Effect1`=6, `EffectDieSides1`=1, `EffectBasePoints1`=99, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=61, `DmgMultiplier1`=1 WHERE `Id`=29050; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=56, `EffectMiscValue1`=16810, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=29052; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=23, `EffectAmplitude1`=2000, `EffectTriggerSpell1`=29104, `DmgMultiplier1`=1 WHERE `Id`=29103; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectImplicitTargetA1`=22, `EffectImplicitTargetB1`=15, `EffectRadiusIndex1`=12, `EffectApplyAuraName1`=4, `DmgMultiplier1`=1 WHERE `Id`=29104; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=1, `EffectImplicitTargetA1`=38, `DmgMultiplier1`=1 WHERE `Id`=29108; +UPDATE `spell_dbc` SET `ProcChance`=101, `BaseLevel`=1, `SpellLevel`=1, `Effect1`=42, `Effect2`=42, `EffectDieSides1`=1, `EffectDieSides2`=1, `EffectImplicitTargetA1`=32, `EffectImplicitTargetA2`=32, `EffectRadiusIndex1`=8, `EffectRadiusIndex2`=8, `EffectMultipleValue1`=-1E+17, `EffectMiscValue1`=9526, `EffectMiscValue2`=9297, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=29110; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectDieSides1`=1, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=7, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=29111; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `EffectImplicitTargetA1`=18, `EffectMiscValue1`=16857, `DmgMultiplier1`=1 WHERE `Id`=29141; +UPDATE `spell_dbc` SET `ProcChance`=101, `StackAmount`=500, `Effect1`=6, `Effect2`=46, `EffectDieSides1`=1, `EffectBasePoints1`=-51, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=61, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=29149; +UPDATE `spell_dbc` SET `ProcChance`=101, `BaseLevel`=62, `SpellLevel`=62, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=4, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=29153; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=4, `DmgMultiplier1`=1 WHERE `Id`=29154; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=24, `EffectDieSides1`=1, `EffectImplicitTargetA1`=25, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=29156; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `EffectImplicitTargetA1`=53, `EffectRadiusIndex1`=30, `EffectApplyAuraName1`=4, `EffectMiscValue1`=20602, `SpellFamilyName`=9, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=29218; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=39, `EffectMiscValue1`=127, `DmgMultiplier1`=1 WHERE `Id`=29230; +UPDATE `spell_dbc` SET `ProcChance`=101, `BaseLevel`=1, `SpellLevel`=1, `EquippedItemSubClassMask`=-1, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=56, `EffectMiscValue1`=16986, `SpellFamilyName`=1, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=29241; +UPDATE `spell_dbc` SET `ProcChance`=101, `BaseLevel`=1, `SpellLevel`=1, `EquippedItemSubClassMask`=-1, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=56, `EffectMiscValue1`=16985, `SpellFamilyName`=1, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=29242; +UPDATE `spell_dbc` SET `ProcChance`=101, `BaseLevel`=1, `SpellLevel`=1, `EquippedItemSubClassMask`=-1, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=56, `EffectMiscValue1`=16989, `SpellFamilyName`=1, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=29243; +UPDATE `spell_dbc` SET `ProcChance`=101, `BaseLevel`=1, `SpellLevel`=1, `EquippedItemSubClassMask`=-1, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=56, `EffectMiscValue1`=16987, `SpellFamilyName`=1, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=29244; +UPDATE `spell_dbc` SET `ProcChance`=101, `BaseLevel`=1, `SpellLevel`=1, `EquippedItemSubClassMask`=-1, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=56, `EffectMiscValue1`=16990, `SpellFamilyName`=1, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=29245; +UPDATE `spell_dbc` SET `ProcChance`=101, `BaseLevel`=1, `SpellLevel`=1, `EquippedItemSubClassMask`=-1, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=56, `EffectMiscValue1`=16988, `SpellFamilyName`=1, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=29246; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=61, `EffectMiscValue1`=10211, `DmgMultiplier1`=1 WHERE `Id`=29250; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=23, `EffectAmplitude1`=5000, `DmgMultiplier1`=1 WHERE `Id`=29252; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=23, `EffectAmplitude1`=5000, `DmgMultiplier1`=1 WHERE `Id`=29261; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=2, `EffectDieSides1`=1, `EffectBasePoints1`=29, `EffectImplicitTargetA1`=25, `DmgMultiplier1`=1 WHERE `Id`=29263; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=23, `EffectAmplitude1`=5000, `DmgMultiplier1`=1 WHERE `Id`=29265; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=23, `EffectAmplitude1`=5000, `DmgMultiplier1`=1 WHERE `Id`=29270; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=77, `EffectImplicitTargetA1`=25, `DmgMultiplier1`=1 WHERE `Id`=29272; +UPDATE `spell_dbc` SET `StancesNot`=1073741824, `ProcChance`=101, `SpellLevel`=1, `EquippedItemSubClassMask`=-1, `Effect1`=3, `EffectImplicitTargetA1`=1, `EffectSpellClassMaskA1`=16777825, `SpellFamilyName`=7, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=29275; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=77, `EffectImplicitTargetA1`=38, `DmgMultiplier1`=1 WHERE `Id`=29280; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=77, `EffectImplicitTargetA1`=38, `DmgMultiplier1`=1 WHERE `Id`=29281; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=77, `EffectImplicitTargetA1`=38, `DmgMultiplier1`=1 WHERE `Id`=29282; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=77, `EffectImplicitTargetA1`=38, `DmgMultiplier1`=1 WHERE `Id`=29283; +UPDATE `spell_dbc` SET `StancesNot`=1073741824, `ProcChance`=101, `SpellLevel`=1, `EquippedItemSubClassMask`=-1, `Effect1`=3, `EffectImplicitTargetA1`=1, `SpellFamilyName`=7, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=29284; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=77, `EffectImplicitTargetA1`=38, `DmgMultiplier1`=1 WHERE `Id`=29285; +UPDATE `spell_dbc` SET `StancesNot`=1073741824, `ProcChance`=101, `SpellLevel`=1, `EquippedItemSubClassMask`=-1, `Effect1`=3, `EffectImplicitTargetA1`=1, `SpellFamilyName`=7, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=29286; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=77, `EffectImplicitTargetA1`=38, `DmgMultiplier1`=1 WHERE `Id`=29287; +UPDATE `spell_dbc` SET `StancesNot`=1073741824, `ProcChance`=101, `SpellLevel`=1, `EquippedItemSubClassMask`=-1, `Effect1`=3, `EffectImplicitTargetA1`=1, `SpellFamilyName`=7, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=29288; +UPDATE `spell_dbc` SET `Targets`=256, `ProcChance`=101, `Effect1`=6, `EffectApplyAuraName1`=23, `EffectAmplitude1`=2000, `EffectTriggerSpell1`=29294, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=29296; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=23, `EffectAmplitude1`=1000, `EffectTriggerSpell1`=29328, `DmgMultiplier1`=1 WHERE `Id`=29327; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `EffectImplicitTargetA1`=18, `EffectMiscValue1`=17025, `DmgMultiplier1`=1 WHERE `Id`=29329; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=23, `EffectAmplitude1`=20000, `DmgMultiplier1`=1 WHERE `Id`=29330; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=77, `EffectImplicitTargetA1`=38, `DmgMultiplier1`=1 WHERE `Id`=29336; +UPDATE `spell_dbc` SET `ProcChance`=101, `MaxLevel`=1, `SpellLevel`=1, `Effect1`=5, `EffectImplicitTargetA1`=25, `EffectImplicitTargetB1`=17, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=29337; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=24, `EffectDieSides1`=1, `EffectImplicitTargetA1`=25, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=29344; +UPDATE `spell_dbc` SET `ProcChance`=101, `BaseLevel`=1, `SpellLevel`=1, `Effect1`=3, `EffectImplicitTargetA1`=38, `EffectRadiusIndex1`=8, `DmgMultiplier1`=1 WHERE `Id`=29345; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=23, `EffectAmplitude1`=10000, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=29351; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=24, `EffectImplicitTargetA1`=1, `DmgMultiplier1`=1 WHERE `Id`=29372; +UPDATE `spell_dbc` SET `StancesNot`=1073742079, `ProcChance`=101, `Effect1`=123, `EffectImplicitTargetA1`=25, `EffectMiscValue1`=507, `DmgMultiplier1`=1 WHERE `Id`=29376; +UPDATE `spell_dbc` SET `StancesNot`=1073742079, `ProcChance`=101, `Effect1`=123, `EffectImplicitTargetA1`=25, `EffectMiscValue1`=508, `DmgMultiplier1`=1 WHERE `Id`=29377; +UPDATE `spell_dbc` SET `ProcChance`=101, `BaseLevel`=1, `SpellLevel`=1, `Effect1`=3, `EffectImplicitTargetA1`=38, `EffectRadiusIndex1`=8, `DmgMultiplier1`=1 WHERE `Id`=29378; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=77, `Effect2`=77, `EffectImplicitTargetA1`=22, `EffectImplicitTargetA2`=22, `EffectImplicitTargetB1`=7, `EffectImplicitTargetB2`=7, `EffectRadiusIndex1`=28, `EffectRadiusIndex2`=28, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=29379; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=23, `EffectAmplitude1`=4000, `EffectTriggerSpell1`=28415, `DmgMultiplier1`=1 WHERE `Id`=29391; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=23, `EffectAmplitude1`=2000, `EffectTriggerSpell1`=28415, `DmgMultiplier1`=1 WHERE `Id`=29392; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=23, `EffectAmplitude1`=25000, `EffectTriggerSpell1`=28416, `DmgMultiplier1`=1 WHERE `Id`=29393; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=23, `EffectAmplitude1`=20000, `EffectTriggerSpell1`=28416, `DmgMultiplier1`=1 WHERE `Id`=29394; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `EffectDieSides1`=1, `EffectImplicitTargetA1`=46, `EffectRadiusIndex1`=13, `EffectMiscValue1`=17034, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=29396; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `EffectDieSides1`=1, `EffectImplicitTargetA1`=46, `EffectRadiusIndex1`=13, `EffectMiscValue1`=17039, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=29397; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=23, `EffectAmplitude1`=15000, `EffectTriggerSpell1`=28416, `DmgMultiplier1`=1 WHERE `Id`=29398; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=23, `EffectAmplitude1`=40000, `EffectTriggerSpell1`=28417, `DmgMultiplier1`=1 WHERE `Id`=29399; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=23, `EffectAmplitude1`=35000, `EffectTriggerSpell1`=28417, `DmgMultiplier1`=1 WHERE `Id`=29400; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=23, `EffectAmplitude1`=20000, `EffectTriggerSpell1`=28417, `DmgMultiplier1`=1 WHERE `Id`=29401; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=23, `EffectAmplitude1`=2000, `EffectTriggerSpell1`=28415, `DmgMultiplier1`=1 WHERE `Id`=29404; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=23, `EffectAmplitude1`=1000, `EffectTriggerSpell1`=28415, `DmgMultiplier1`=1 WHERE `Id`=29409; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=23, `EffectAmplitude1`=5000, `EffectTriggerSpell1`=28415, `DmgMultiplier1`=1 WHERE `Id`=29410; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=23, `EffectAmplitude1`=10000, `EffectTriggerSpell1`=28416, `DmgMultiplier1`=1 WHERE `Id`=29411; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=23, `EffectAmplitude1`=15000, `EffectTriggerSpell1`=28417, `DmgMultiplier1`=1 WHERE `Id`=29412; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=1, `DmgMultiplier1`=1 WHERE `Id`=29429; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=1, `DmgMultiplier1`=1 WHERE `Id`=29430; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=22, `EffectImplicitTargetB1`=15, `EffectRadiusIndex1`=28, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=29431; +UPDATE `spell_dbc` SET `ProcChance`=101, `BaseLevel`=70, `SpellLevel`=70, `Effect1`=6, `EffectDieSides1`=1, `EffectBasePoints1`=-1, `EffectImplicitTargetA1`=6, `EffectApplyAuraName1`=23, `EffectAmplitude1`=1000, `EffectTriggerSpell1`=37066, `SpellFamilyName`=8, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=29433; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `EffectDieSides1`=1, `EffectBasePoints1`=9, `EffectImplicitTargetA1`=18, `EffectRadiusIndex1`=16, `EffectMiscValue1`=17055, `DmgMultiplier1`=1 WHERE `Id`=29434; +UPDATE `spell_dbc` SET `ProcChance`=101, `BaseLevel`=70, `SpellLevel`=70, `Effect1`=77, `EffectImplicitTargetA1`=6, `DmgClass`=1, `PreventionType`=1, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=29493; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=6, `EffectRadiusIndex1`=21, `DmgMultiplier1`=1 WHERE `Id`=29498; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=77, `EffectImplicitTargetA1`=22, `EffectImplicitTargetB1`=15, `EffectRadiusIndex1`=12, `DmgMultiplier1`=1 WHERE `Id`=29499; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `EffectDieSides1`=1, `EffectImplicitTargetA1`=17, `EffectRadiusIndex1`=16, `EffectMiscValue1`=16573, `DmgMultiplier1`=1 WHERE `Id`=29508; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=77, `EffectImplicitTargetA1`=1, `DmgMultiplier1`=1 WHERE `Id`=29509; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=1, `DmgMultiplier1`=1 WHERE `Id`=29510; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=25, `DmgMultiplier1`=1 WHERE `Id`=29518; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=23, `EffectAmplitude1`=2000, `EffectTriggerSpell1`=29512, `DmgClass`=1, `PreventionType`=1, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=29523; +UPDATE `spell_dbc` SET `ProcFlags`=20, `ProcChance`=50, `Effect1`=6, `EffectDieSides1`=1, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=42, `EffectTriggerSpell1`=9204, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=29526; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectImplicitTargetA1`=25, `EffectApplyAuraName1`=4, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=29530; +UPDATE `spell_dbc` SET `AuraInterruptFlags`=4102, `ProcChance`=101, `Effect1`=6, `EffectDieSides1`=1, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=42, `EffectTriggerSpell1`=29532, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=29532; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=22, `EffectImplicitTargetB1`=7, `EffectRadiusIndex1`=12, `DmgMultiplier1`=1 WHERE `Id`=29536; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=23, `EffectAmplitude1`=3000, `EffectTriggerSpell1`=29682, `DmgMultiplier1`=1 WHERE `Id`=29681; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=22, `EffectImplicitTargetB1`=7, `EffectRadiusIndex1`=14, `DmgMultiplier1`=1 WHERE `Id`=29682; +UPDATE `spell_dbc` SET `AuraInterruptFlags`=4102, `ProcChance`=101, `Effect1`=77, `EffectImplicitTargetA1`=25, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=29710; +UPDATE `spell_dbc` SET `ProcFlags`=20, `ProcChance`=20, `BaseLevel`=70, `SpellLevel`=70, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=42, `EffectTriggerSpell1`=29716, `DmgMultiplier1`=1 WHERE `Id`=29713; +UPDATE `spell_dbc` SET `ProcChance`=101, `BaseLevel`=70, `SpellLevel`=70, `Effect1`=3, `EffectImplicitTargetA1`=1, `DmgMultiplier1`=1 WHERE `Id`=29767; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=25, `EffectRadiusIndex1`=28, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=29785; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=77, `EffectImplicitTargetA1`=38, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=29800; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=29805; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=29806; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=29807; +UPDATE `spell_dbc` SET `ProcChance`=101, `SpellLevel`=45, `Effect1`=6, `EffectDieSides1`=1, `EffectBasePoints1`=-1, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=12, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=29826; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=24, `EffectImplicitTargetA1`=1, `DmgMultiplier1`=1 WHERE `Id`=29827; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=24, `EffectImplicitTargetA1`=1, `DmgMultiplier1`=1 WHERE `Id`=29828; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=24, `EffectImplicitTargetA1`=1, `DmgMultiplier1`=1 WHERE `Id`=29829; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=22, `EffectImplicitTargetB1`=15, `EffectRadiusIndex1`=33, `DmgClass`=1, `PreventionType`=1, `DmgMultiplier1`=1 WHERE `Id`=29856; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `EffectDieSides1`=1, `EffectImplicitTargetA1`=18, `EffectRadiusIndex1`=16, `EffectMiscValue1`=17283, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=29857; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=23, `EffectAmplitude1`=1000, `EffectTriggerSpell1`=29864, `DmgMultiplier1`=1 WHERE `Id`=29863; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=24, `EffectDieSides1`=1, `EffectImplicitTargetA1`=1, `DmgMultiplier1`=1 WHERE `Id`=29867; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=24, `EffectDieSides1`=1, `EffectImplicitTargetA1`=1, `DmgMultiplier1`=1 WHERE `Id`=29868; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `EffectImplicitTargetA1`=46, `EffectMiscValue1`=17102, `DmgMultiplier1`=1 WHERE `Id`=29869; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectImplicitTargetA1`=22, `EffectImplicitTargetB1`=7, `EffectRadiusIndex1`=9, `EffectApplyAuraName1`=4, `DmgMultiplier1`=1 WHERE `Id`=29871; +UPDATE `spell_dbc` SET `ProcFlags`=4, `ProcChance`=100, `Effect1`=2, `EffectDieSides1`=1, `EffectBasePoints1`=-1, `EffectImplicitTargetA1`=6, `DmgClass`=1, `PreventionType`=1, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=29873; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=1, `EffectRadiusIndex1`=12, `MaxAffectedTargets`=3, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=29874; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=22, `EffectImplicitTargetB1`=15, `EffectRadiusIndex1`=12, `DmgMultiplier1`=1 WHERE `Id`=29875; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=1, `EffectImplicitTargetA1`=1, `DmgMultiplier1`=1 WHERE `Id`=29878; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `Effect2`=6, `EffectDieSides1`=1, `EffectDieSides2`=1, `EffectBasePoints2`=6, `EffectImplicitTargetA1`=1, `EffectImplicitTargetA2`=1, `EffectApplyAuraName1`=139, `EffectApplyAuraName2`=191, `EffectMiscValue1`=951, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1, `AreaGroupId`=44 WHERE `Id`=29894; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `Effect2`=6, `EffectDieSides1`=1, `EffectDieSides2`=1, `EffectBasePoints2`=6, `EffectImplicitTargetA1`=1, `EffectImplicitTargetA2`=1, `EffectApplyAuraName1`=139, `EffectApplyAuraName2`=191, `EffectMiscValue1`=954, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1, `AreaGroupId`=44 WHERE `Id`=29895; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=61, `EffectMiscValue1`=10536, `DmgMultiplier1`=1 WHERE `Id`=29898; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=61, `EffectMiscValue1`=10537, `DmgMultiplier1`=1 WHERE `Id`=29899; +UPDATE `spell_dbc` SET `StancesNot`=1073742079, `ProcChance`=101, `Effect1`=123, `EffectImplicitTargetA1`=25, `EffectMiscValue1`=494, `DmgMultiplier1`=1 WHERE `Id`=29931; +UPDATE `spell_dbc` SET `StancesNot`=1073742079, `ProcChance`=101, `Effect1`=123, `EffectImplicitTargetA1`=25, `EffectMiscValue1`=495, `DmgMultiplier1`=1 WHERE `Id`=29934; +UPDATE `spell_dbc` SET `ProcFlags`=87376, `ProcChance`=10, `SpellLevel`=1, `EquippedItemSubClassMask`=-1, `Effect1`=3, `EffectImplicitTargetA1`=1, `SpellFamilyName`=11, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=29936; +UPDATE `spell_dbc` SET `ProcChance`=101, `BaseLevel`=40, `SpellLevel`=40, `Effect1`=6, `EffectDieSides1`=1, `EffectBasePoints1`=26, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=144, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=29950; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=77, `EffectImplicitTargetA1`=1, `DmgMultiplier1`=1 WHERE `Id`=29971; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=77, `EffectImplicitTargetA1`=1, `DmgMultiplier1`=1 WHERE `Id`=29984; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=6, `DmgMultiplier1`=1 WHERE `Id`=29985; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=22, `EffectImplicitTargetB1`=7, `EffectRadiusIndex1`=12, `DmgMultiplier1`=1 WHERE `Id`=29986; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=64, `EffectImplicitTargetA1`=1, `EffectTriggerSpell1`=29970, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=29988; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=77, `EffectImplicitTargetA1`=1, `DmgMultiplier1`=1 WHERE `Id`=29993; +UPDATE `spell_dbc` SET `StancesNot`=1073742079, `ProcChance`=101, `Effect1`=123, `EffectImplicitTargetA1`=25, `EffectMiscValue1`=496, `DmgMultiplier1`=1 WHERE `Id`=29994; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=1, `DmgMultiplier1`=1 WHERE `Id`=29995; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=1, `DmgMultiplier1`=1 WHERE `Id`=29996; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=1, `DmgMultiplier1`=1 WHERE `Id`=29997; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=77, `EffectImplicitTargetA1`=1, `DmgMultiplier1`=1 WHERE `Id`=30005; +UPDATE `spell_dbc` SET `Mechanic`=11, `ProcChance`=101, `BaseLevel`=1, `SpellLevel`=1, `Effect1`=6, `EffectDieSides1`=1, `EffectBasePoints1`=-31, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=33, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=30011; +UPDATE `spell_dbc` SET `ProcChance`=101, `BaseLevel`=70, `SpellLevel`=70, `Effect1`=6, `EffectDieSides1`=1, `EffectBasePoints1`=-1, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=23, `EffectAmplitude1`=8000, `EffectTriggerSpell1`=30023, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=30028; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=64, `Effect2`=6, `Effect3`=64, `EffectDieSides2`=1, `EffectBasePoints2`=14, `EffectImplicitTargetA1`=25, `EffectImplicitTargetA2`=25, `EffectImplicitTargetA3`=25, `EffectApplyAuraName2`=31, `EffectTriggerSpell1`=30535, `EffectTriggerSpell3`=32474, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=30058; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=64, `EffectImplicitTargetA1`=25, `EffectTriggerSpell1`=28001, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=30059; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `EffectDieSides1`=1, `EffectBasePoints1`=2, `EffectImplicitTargetA1`=18, `EffectRadiusIndex1`=16, `EffectMiscValue1`=17055, `DmgMultiplier1`=1 WHERE `Id`=30076; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=4, `DmgMultiplier1`=1 WHERE `Id`=30078; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectImplicitTargetA1`=25, `EffectApplyAuraName1`=4, `DmgMultiplier1`=1 WHERE `Id`=30082; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `EffectDieSides1`=1, `EffectImplicitTargetA1`=32, `EffectRadiusIndex1`=8, `EffectMiscValue1`=17197, `DmgMultiplier1`=1 WHERE `Id`=30083; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=77, `Effect2`=77, `Effect3`=77, `EffectImplicitTargetA1`=22, `EffectImplicitTargetA2`=22, `EffectImplicitTargetA3`=22, `EffectImplicitTargetB1`=7, `EffectImplicitTargetB2`=7, `EffectImplicitTargetB3`=7, `EffectRadiusIndex1`=28, `EffectRadiusIndex2`=28, `EffectRadiusIndex3`=28, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=30097; +UPDATE `spell_dbc` SET `ProcChance`=101, `BaseLevel`=70, `SpellLevel`=70, `EquippedItemSubClassMask`=-1, `Effect1`=2, `EffectDieSides1`=1, `EffectImplicitTargetA1`=1, `SpellFamilyName`=11, `SpellFamilyFlags1`=67108864, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=30106; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=23, `EffectAmplitude1`=3000, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=30114; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=86, `Effect2`=86, `Effect3`=86, `EffectImplicitTargetA1`=22, `EffectImplicitTargetA2`=22, `EffectImplicitTargetA3`=22, `EffectImplicitTargetB1`=51, `EffectImplicitTargetB2`=51, `EffectImplicitTargetB3`=51, `EffectRadiusIndex1`=28, `EffectRadiusIndex2`=28, `EffectRadiusIndex3`=28, `EffectMiscValue1`=5, `EffectMiscValue2`=5, `EffectMiscValue3`=5, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=30116; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=86, `Effect2`=86, `Effect3`=86, `EffectImplicitTargetA1`=22, `EffectImplicitTargetA2`=22, `EffectImplicitTargetA3`=22, `EffectImplicitTargetB1`=51, `EffectImplicitTargetB2`=51, `EffectImplicitTargetB3`=51, `EffectRadiusIndex1`=28, `EffectRadiusIndex2`=28, `EffectRadiusIndex3`=28, `EffectMiscValue1`=5, `EffectMiscValue2`=5, `EffectMiscValue3`=5, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=30117; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=86, `Effect2`=86, `Effect3`=86, `EffectImplicitTargetA1`=22, `EffectImplicitTargetA2`=22, `EffectImplicitTargetA3`=22, `EffectImplicitTargetB1`=51, `EffectImplicitTargetB2`=51, `EffectImplicitTargetB3`=51, `EffectRadiusIndex1`=28, `EffectRadiusIndex2`=28, `EffectRadiusIndex3`=28, `EffectMiscValue1`=5, `EffectMiscValue2`=5, `EffectMiscValue3`=5, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=30118; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=86, `Effect2`=86, `Effect3`=86, `EffectImplicitTargetA1`=22, `EffectImplicitTargetA2`=22, `EffectImplicitTargetA3`=22, `EffectImplicitTargetB1`=51, `EffectImplicitTargetB2`=51, `EffectImplicitTargetB3`=51, `EffectRadiusIndex1`=28, `EffectRadiusIndex2`=28, `EffectRadiusIndex3`=28, `EffectMiscValue1`=5, `EffectMiscValue2`=5, `EffectMiscValue3`=5, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=30119; +UPDATE `spell_dbc` SET `ProcChance`=101, `BaseLevel`=70, `SpellLevel`=70, `Effect1`=6, `EffectImplicitTargetA1`=17, `EffectImplicitTargetB1`=8, `EffectRadiusIndex1`=7, `EffectApplyAuraName1`=4, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=30123; +UPDATE `spell_dbc` SET `ProcChance`=101, `BaseLevel`=70, `SpellLevel`=70, `Effect1`=3, `EffectImplicitTargetA1`=38, `EffectRadiusIndex1`=12, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=30126; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=86, `Effect2`=77, `EffectDieSides1`=1, `EffectImplicitTargetA1`=22, `EffectImplicitTargetA2`=22, `EffectImplicitTargetB1`=51, `EffectImplicitTargetB2`=15, `EffectRadiusIndex1`=22, `EffectRadiusIndex2`=22, `EffectMiscValue1`=15, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=30132; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=1, `DmgMultiplier1`=1 WHERE `Id`=30133; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=77, `EffectImplicitTargetA1`=22, `EffectImplicitTargetB1`=7, `EffectRadiusIndex1`=28, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=30134; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=25, `EffectRadiusIndex1`=14, `DmgMultiplier1`=1 WHERE `Id`=30135; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=25, `EffectRadiusIndex1`=14, `DmgMultiplier1`=1 WHERE `Id`=30136; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=25, `EffectRadiusIndex1`=14, `DmgMultiplier1`=1 WHERE `Id`=30137; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=24, `EffectDieSides1`=1, `EffectImplicitTargetA1`=25, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=30139; +UPDATE `spell_dbc` SET `ProcChance`=101, `BaseLevel`=30, `SpellLevel`=30, `Effect1`=6, `EffectDieSides1`=1, `EffectRealPointsPerLevel1`=2, `EffectBasePoints1`=59, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=22, `EffectMiscValue1`=126, `SpellFamilyName`=5, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=30150; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=1, `DmgMultiplier1`=1 WHERE `Id`=30176; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=24, `EffectDieSides1`=1, `EffectImplicitTargetA1`=25, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=30182; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=24, `EffectDieSides1`=1, `EffectImplicitTargetA1`=25, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=30185; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=24, `EffectDieSides1`=1, `EffectImplicitTargetA1`=25, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=30186; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=24, `EffectDieSides1`=1, `EffectImplicitTargetA1`=25, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=30188; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=24, `EffectDieSides1`=1, `EffectImplicitTargetA1`=25, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=30189; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `Effect2`=3, `EffectImplicitTargetA1`=22, `EffectImplicitTargetA2`=22, `EffectImplicitTargetB1`=7, `EffectImplicitTargetB2`=7, `EffectRadiusIndex1`=12, `EffectRadiusIndex2`=12, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=30191; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=24, `EffectDieSides1`=1, `EffectImplicitTargetA1`=25, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=30192; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=24, `EffectDieSides1`=1, `EffectImplicitTargetA1`=25, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=30193; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=4, `DmgMultiplier1`=1 WHERE `Id`=30196; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=61, `EffectMiscValue1`=10611, `DmgMultiplier1`=1 WHERE `Id`=30203; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=25, `EffectRadiusIndex1`=14, `DmgMultiplier1`=1 WHERE `Id`=30204; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=64, `EffectImplicitTargetA1`=22, `EffectImplicitTargetB1`=15, `EffectRadiusIndex1`=22, `EffectTriggerSpell1`=30129, `DmgMultiplier1`=1 WHERE `Id`=30209; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=22, `EffectImplicitTargetB1`=15, `EffectRadiusIndex1`=12, `DmgMultiplier1`=1 WHERE `Id`=30215; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=77, `EffectImplicitTargetA1`=22, `EffectImplicitTargetB1`=7, `EffectRadiusIndex1`=28, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=30228; +UPDATE `spell_dbc` SET `ProcChance`=101, `BaseLevel`=73, `SpellLevel`=73, `Effect1`=41, `EffectDieSides1`=1, `EffectImplicitTargetA1`=41, `EffectRadiusIndex1`=13, `EffectMiscValue1`=19781, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=30236; +UPDATE `spell_dbc` SET `ProcChance`=101, `BaseLevel`=73, `SpellLevel`=73, `Effect1`=41, `EffectDieSides1`=1, `EffectImplicitTargetA1`=44, `EffectRadiusIndex1`=13, `EffectMiscValue1`=17096, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=30239; +UPDATE `spell_dbc` SET `ProcChance`=101, `BaseLevel`=73, `SpellLevel`=73, `Effect1`=41, `EffectDieSides1`=1, `EffectImplicitTargetA1`=42, `EffectRadiusIndex1`=13, `EffectMiscValue1`=19782, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=30240; +UPDATE `spell_dbc` SET `ProcChance`=101, `BaseLevel`=73, `SpellLevel`=73, `Effect1`=41, `EffectDieSides1`=1, `EffectImplicitTargetA1`=43, `EffectRadiusIndex1`=13, `EffectMiscValue1`=19783, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=30241; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=23, `EffectAmplitude1`=3000, `EffectTriggerSpell1`=30244, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=30243; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=26, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=30259; +UPDATE `spell_dbc` SET `ProcChance`=101, `BaseLevel`=1, `SpellLevel`=1, `Effect1`=3, `EffectImplicitTargetA1`=60, `EffectRadiusIndex1`=13, `SpellFamilyName`=4, `MaxAffectedTargets`=1, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=30268; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=18, `EffectImplicitTargetB1`=8, `EffectRadiusIndex1`=26, `DmgMultiplier1`=1 WHERE `Id`=30272; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=5, `EffectImplicitTargetA1`=1, `EffectImplicitTargetB1`=47, `EffectRadiusIndex1`=7, `DmgMultiplier1`=1 WHERE `Id`=30274; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=18, `EffectImplicitTargetB1`=8, `EffectRadiusIndex1`=15, `DmgMultiplier1`=1 WHERE `Id`=30275; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=25, `DmgMultiplier1`=1 WHERE `Id`=30276; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=18, `EffectImplicitTargetB1`=8, `EffectRadiusIndex1`=15, `DmgMultiplier1`=1 WHERE `Id`=30277; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=25, `DmgMultiplier1`=1 WHERE `Id`=30278; +UPDATE `spell_dbc` SET `ProcChance`=101, `BaseLevel`=1, `SpellLevel`=1, `Effect1`=3, `EffectImplicitTargetA1`=60, `EffectRadiusIndex1`=13, `SpellFamilyName`=4, `MaxAffectedTargets`=1, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=30279; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=25, `DmgMultiplier1`=1 WHERE `Id`=30287; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=56, `EffectMiscValue1`=17354, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=30333; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `Effect2`=6, `EffectDieSides1`=1, `EffectDieSides2`=1, `EffectBasePoints1`=99, `EffectBasePoints2`=99, `EffectImplicitTargetA1`=1, `EffectImplicitTargetA2`=1, `EffectApplyAuraName1`=21, `EffectApplyAuraName2`=20, `EffectAmplitude1`=1000, `EffectAmplitude2`=1000, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=30352; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=22, `EffectImplicitTargetB1`=15, `EffectRadiusIndex1`=11, `DmgMultiplier1`=1 WHERE `Id`=30382; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectDieSides1`=1, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=23, `EffectAmplitude1`=1000, `EffectTriggerSpell1`=30469, `DmgMultiplier1`=1 WHERE `Id`=30396; +UPDATE `spell_dbc` SET `ProcChance`=101, `SpellLevel`=1, `Effect1`=50, `EffectDieSides1`=1, `EffectImplicitTargetA1`=32, `EffectRadiusIndex1`=13, `EffectMiscValue1`=181717, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=30411; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `DmgMultiplier1`=1 WHERE `Id`=30415; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=77, `EffectImplicitTargetA1`=25, `DmgMultiplier1`=1 WHERE `Id`=30420; +UPDATE `spell_dbc` SET `ProcChance`=101, `BaseLevel`=1, `SpellLevel`=1, `Effect1`=24, `EffectDieSides1`=3, `EffectBasePoints1`=2, `EffectImplicitTargetA1`=25, `DmgMultiplier1`=1 WHERE `Id`=30436; +UPDATE `spell_dbc` SET `ProcChance`=101, `BaseLevel`=1, `SpellLevel`=1, `Effect1`=24, `EffectDieSides1`=3, `EffectBasePoints1`=2, `EffectImplicitTargetA1`=25, `DmgMultiplier1`=1 WHERE `Id`=30438; +UPDATE `spell_dbc` SET `ProcChance`=101, `BaseLevel`=1, `SpellLevel`=1, `Effect1`=24, `EffectDieSides1`=3, `EffectBasePoints1`=2, `EffectImplicitTargetA1`=25, `DmgMultiplier1`=1 WHERE `Id`=30439; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectDieSides1`=1, `EffectBasePoints1`=7, `EffectImplicitTargetA1`=25, `EffectApplyAuraName1`=107, `EffectMiscValue1`=16, `SpellFamilyName`=4, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=30440; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectDieSides1`=1, `EffectBasePoints1`=12, `EffectImplicitTargetA1`=25, `EffectApplyAuraName1`=107, `EffectMiscValue1`=16, `SpellFamilyName`=7, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=30441; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectDieSides1`=1, `EffectImplicitTargetA1`=21, `EffectApplyAuraName1`=23, `EffectAmplitude1`=1000, `EffectTriggerSpell1`=30445, `DmgMultiplier1`=1 WHERE `Id`=30444; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `Effect2`=6, `EffectImplicitTargetA1`=32, `EffectImplicitTargetA2`=1, `EffectRadiusIndex1`=7, `EffectApplyAuraName2`=4, `EffectMiscValue1`=17393, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=30445; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=76, `EffectImplicitTargetA1`=18, `EffectMiscValue1`=181742, `DmgMultiplier1`=1 WHERE `Id`=30480; +UPDATE `spell_dbc` SET `ProcFlags`=1048576, `ProcChance`=70, `EquippedItemSubClassMask`=-1, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=42, `EffectTriggerSpell1`=30494, `DmgClass`=1, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=30492; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectDieSides1`=1, `EffectBasePoints1`=-1, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=4, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=30509; +UPDATE `spell_dbc` SET `ProcChance`=101, `EquippedItemSubClassMask`=-1, `Effect1`=6, `EffectDieSides1`=1, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=4, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=30517; +UPDATE `spell_dbc` SET `ProcChance`=101, `EquippedItemSubClassMask`=-1, `Effect1`=3, `EffectDieSides1`=1, `EffectImplicitTargetA1`=22, `EffectImplicitTargetB1`=30, `EffectRadiusIndex1`=9, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=30518; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=63, `EffectDieSides1`=1, `EffectBasePoints1`=-90001, `EffectImplicitTargetA1`=22, `EffectImplicitTargetB1`=15, `EffectRadiusIndex1`=22, `DmgMultiplier1`=1 WHERE `Id`=30521; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `Effect2`=114, `EffectImplicitTargetA1`=22, `EffectImplicitTargetA2`=22, `EffectImplicitTargetB1`=7, `EffectImplicitTargetB2`=7, `EffectRadiusIndex1`=12, `EffectRadiusIndex2`=12, `EffectApplyAuraName1`=11, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=30525; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=123, `EffectImplicitTargetA1`=25, `EffectMiscValue1`=506, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=30535; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `Effect2`=6, `EffectImplicitTargetA1`=1, `EffectImplicitTargetA2`=1, `EffectApplyAuraName1`=23, `EffectApplyAuraName2`=12, `EffectAmplitude1`=1000, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=30576; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=1, `EffectRadiusIndex1`=16, `DmgMultiplier1`=1 WHERE `Id`=30620; +UPDATE `spell_dbc` SET `ProcChance`=101, `BaseLevel`=70, `SpellLevel`=70, `EquippedItemSubClassMask`=-1, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=23, `EffectAmplitude1`=2000, `EffectTriggerSpell1`=30624, `DmgClass`=1, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=30623; +UPDATE `spell_dbc` SET `ProcChance`=101, `BaseLevel`=70, `SpellLevel`=70, `EquippedItemSubClassMask`=-1, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=23, `EffectAmplitude1`=1000, `EffectTriggerSpell1`=30625, `DmgClass`=1, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=30627; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=77, `EffectImplicitTargetA1`=22, `EffectImplicitTargetB1`=7, `EffectRadiusIndex1`=12, `DmgMultiplier1`=1 WHERE `Id`=30629; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `EffectImplicitTargetA1`=18, `EffectMiscValue1`=17516, `DmgMultiplier1`=1 WHERE `Id`=30630; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=24, `EffectDieSides1`=1, `EffectImplicitTargetA1`=1, `DmgMultiplier1`=1 WHERE `Id`=30634; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=22, `EffectImplicitTargetB1`=30, `EffectRadiusIndex1`=25, `DmgMultiplier1`=1 WHERE `Id`=30642; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=1, `EffectImplicitTargetA1`=1, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=30655; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=77, `EffectImplicitTargetA1`=22, `EffectImplicitTargetB1`=7, `EffectRadiusIndex1`=30, `DmgMultiplier1`=1 WHERE `Id`=30693; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=1, `EffectRadiusIndex1`=16, `DmgMultiplier1`=1 WHERE `Id`=30694; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=25, `EffectRadiusIndex1`=14, `DmgMultiplier1`=1 WHERE `Id`=30696; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=25, `EffectRadiusIndex1`=14, `DmgMultiplier1`=1 WHERE `Id`=30698; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=25, `EffectRadiusIndex1`=14, `DmgMultiplier1`=1 WHERE `Id`=30699; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=1, `EffectRadiusIndex1`=16, `DmgMultiplier1`=1 WHERE `Id`=30726; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=77, `EffectImplicitTargetA1`=22, `EffectImplicitTargetB1`=15, `EffectRadiusIndex1`=12, `DmgMultiplier1`=1 WHERE `Id`=30733; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=77, `EffectImplicitTargetA1`=1, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=30734; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `EffectDieSides1`=1, `EffectImplicitTargetA1`=18, `EffectRadiusIndex1`=16, `EffectMiscValue1`=17621, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=30737; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=22, `EffectImplicitTargetB1`=7, `EffectRadiusIndex1`=12, `DmgMultiplier1`=1 WHERE `Id`=30743; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=16, `EffectImplicitTargetA1`=1, `EffectMiscValue1`=9611, `DmgMultiplier1`=1 WHERE `Id`=30747; +UPDATE `spell_dbc` SET `Targets`=256, `ProcChance`=101, `Effect1`=6, `EffectApplyAuraName1`=23, `EffectAmplitude1`=1000, `EffectTriggerSpell1`=30747, `DmgMultiplier1`=1 WHERE `Id`=30748; +UPDATE `spell_dbc` SET `ProcChance`=101, `MaxLevel`=10, `BaseLevel`=1, `SpellLevel`=1, `Effect1`=6, `Effect2`=6, `EffectDieSides1`=1, `EffectImplicitTargetA1`=21, `EffectImplicitTargetA2`=21, `EffectApplyAuraName1`=4, `EffectApplyAuraName2`=23, `EffectAmplitude2`=1000, `EffectTriggerSpell2`=30774, `DmgClass`=1, `PreventionType`=1, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=30773; +UPDATE `spell_dbc` SET `ProcChance`=101, `MaxLevel`=15, `BaseLevel`=15, `SpellLevel`=15, `Effect1`=6, `Effect2`=41, `EffectDieSides1`=1, `EffectBasePoints1`=9, `EffectImplicitTargetA1`=1, `EffectImplicitTargetA2`=32, `EffectRadiusIndex2`=26, `EffectApplyAuraName1`=4, `EffectMiscValue2`=17601, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=30774; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=16, `EffectImplicitTargetA1`=25, `EffectMiscValue1`=9625, `DmgMultiplier1`=1 WHERE `Id`=30781; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `EffectDieSides1`=1, `EffectImplicitTargetA1`=18, `EffectRadiusIndex1`=16, `EffectMiscValue1`=17623, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=30785; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `EffectDieSides1`=1, `EffectImplicitTargetA1`=18, `EffectRadiusIndex1`=16, `EffectMiscValue1`=17622, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=30786; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectDieSides1`=1, `EffectImplicitTargetA1`=22, `EffectImplicitTargetB1`=7, `EffectRadiusIndex1`=28, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=30788; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=16, `EffectImplicitTargetA1`=22, `EffectImplicitTargetB1`=15, `EffectRadiusIndex1`=10, `EffectMiscValue1`=9595, `DmgMultiplier1`=1 WHERE `Id`=30789; +UPDATE `spell_dbc` SET `ProcChance`=101, `BaseLevel`=70, `SpellLevel`=70, `EquippedItemSubClassMask`=-1, `Effect1`=6, `EffectDieSides1`=1, `EffectImplicitTargetA1`=22, `EffectImplicitTargetB1`=15, `EffectRadiusIndex1`=28, `EffectApplyAuraName1`=4, `DmgClass`=1, `PreventionType`=1, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1, `AreaGroupId`=49 WHERE `Id`=30791; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `EffectDieSides1`=1, `EffectBasePoints1`=1, `EffectImplicitTargetA1`=32, `EffectRadiusIndex1`=13, `EffectMiscValue1`=17620, `DmgMultiplier1`=1 WHERE `Id`=30792; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=63, `EffectDieSides1`=1, `EffectImplicitTargetA1`=38, `DmgMultiplier1`=1 WHERE `Id`=30793; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=4, `DmgMultiplier1`=1 WHERE `Id`=30794; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=4, `DmgMultiplier1`=1 WHERE `Id`=30795; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=4, `DmgMultiplier1`=1 WHERE `Id`=30796; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=4, `DmgMultiplier1`=1 WHERE `Id`=30797; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `EffectDieSides1`=1, `EffectBasePoints1`=1, `EffectImplicitTargetA1`=32, `EffectRadiusIndex1`=13, `EffectMiscValue1`=17638, `DmgMultiplier1`=1 WHERE `Id`=30825; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `EffectDieSides1`=1, `EffectBasePoints1`=1, `EffectImplicitTargetA1`=32, `EffectRadiusIndex1`=13, `EffectMiscValue1`=17639, `DmgMultiplier1`=1 WHERE `Id`=30826; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `EffectDieSides1`=1, `EffectBasePoints1`=2, `EffectImplicitTargetA1`=32, `EffectRadiusIndex1`=13, `EffectMiscValue1`=17640, `DmgMultiplier1`=1 WHERE `Id`=30827; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `EffectDieSides1`=2, `EffectBasePoints1`=3, `EffectImplicitTargetA1`=32, `EffectRadiusIndex1`=13, `EffectMiscValue1`=17641, `DmgMultiplier1`=1 WHERE `Id`=30828; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=6, `EffectRadiusIndex1`=12, `DmgMultiplier1`=1 WHERE `Id`=30855; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=61, `EffectImplicitTargetA1`=1, `EffectMiscValue1`=10918, `DmgMultiplier1`=1 WHERE `Id`=30897; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `Effect2`=6, `EffectDieSides1`=1, `EffectDieSides2`=1, `EffectBasePoints1`=49, `EffectBasePoints2`=29, `EffectImplicitTargetA1`=1, `EffectImplicitTargetA2`=1, `EffectApplyAuraName1`=138, `EffectApplyAuraName2`=79, `EffectMiscValue2`=1, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=30899; +UPDATE `spell_dbc` SET `ProcChance`=101, `BaseLevel`=1, `SpellLevel`=1, `EquippedItemSubClassMask`=-1, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=56, `EffectMiscValue1`=17225, `SpellFamilyName`=1, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=30929; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=23, `EffectAmplitude1`=5000, `EffectTriggerSpell1`=30949, `DmgMultiplier1`=1 WHERE `Id`=30948; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=22, `EffectImplicitTargetB1`=7, `EffectRadiusIndex1`=10, `DmgMultiplier1`=1 WHERE `Id`=30949; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `EffectImplicitTargetA1`=18, `EffectMiscValue1`=17346, `DmgMultiplier1`=1 WHERE `Id`=30954; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `EffectImplicitTargetA1`=18, `EffectMiscValue1`=17353, `DmgMultiplier1`=1 WHERE `Id`=30955; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `EffectImplicitTargetA1`=18, `EffectMiscValue1`=17527, `DmgMultiplier1`=1 WHERE `Id`=30956; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `EffectImplicitTargetA1`=18, `EffectMiscValue1`=17607, `DmgMultiplier1`=1 WHERE `Id`=30957; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `EffectImplicitTargetA1`=18, `EffectMiscValue1`=17608, `DmgMultiplier1`=1 WHERE `Id`=30958; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `EffectImplicitTargetA1`=18, `EffectMiscValue1`=17342, `DmgMultiplier1`=1 WHERE `Id`=30959; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `EffectImplicitTargetA1`=18, `EffectMiscValue1`=17340, `DmgMultiplier1`=1 WHERE `Id`=30960; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `EffectImplicitTargetA1`=18, `EffectMiscValue1`=17350, `DmgMultiplier1`=1 WHERE `Id`=30961; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `EffectImplicitTargetA1`=18, `EffectMiscValue1`=17330, `DmgMultiplier1`=1 WHERE `Id`=30962; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `EffectImplicitTargetA1`=18, `EffectMiscValue1`=17348, `DmgMultiplier1`=1 WHERE `Id`=30963; +UPDATE `spell_dbc` SET `ProcChance`=101, `SpellLevel`=1, `Effect1`=1, `EffectDieSides1`=1, `EffectImplicitTargetA1`=1, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=30966; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=23, `EffectAmplitude1`=45000, `EffectTriggerSpell1`=30976, `DmgMultiplier1`=1 WHERE `Id`=30975; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `EffectDieSides1`=1, `EffectBasePoints1`=1, `EffectImplicitTargetA1`=17, `EffectMiscValue1`=17462, `DmgMultiplier1`=1 WHERE `Id`=30976; +UPDATE `spell_dbc` SET `Dispel`=4, `Mechanic`=11, `ProcFlags`=20, `ProcChance`=20, `BaseLevel`=70, `SpellLevel`=70, `EquippedItemSubClassMask`=-1, `Effect1`=6, `EffectDieSides1`=1, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=42, `EffectTriggerSpell1`=30981, `SpellFamilyName`=8, `DmgClass`=1, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=30982; +UPDATE `spell_dbc` SET `Dispel`=4, `Mechanic`=11, `ProcFlags`=20, `ProcChance`=20, `EquippedItemSubClassMask`=-1, `Effect1`=6, `EffectDieSides1`=1, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=42, `EffectTriggerSpell1`=30984, `SpellFamilyName`=8, `DmgClass`=1, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=30983; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=77, `Effect2`=61, `EffectImplicitTargetA1`=22, `EffectImplicitTargetB1`=7, `EffectRadiusIndex1`=30, `EffectMiscValue2`=10978, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=30993; +UPDATE `spell_dbc` SET `Mechanic`=12, `Stances`=536870912, `ProcFlags`=4, `ProcChance`=100, `ProcCharges`=1, `BaseLevel`=70, `SpellLevel`=70, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=42, `EffectTriggerSpell1`=30986, `SpellFamilyName`=8, `SpellFamilyFlags1`=1024, `DmgClass`=2, `PreventionType`=2, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=30998; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=50, `EffectImplicitTargetA1`=32, `EffectMiscValue1`=181919, `DmgMultiplier1`=1 WHERE `Id`=31001; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `EffectDieSides1`=1, `EffectImplicitTargetA1`=63, `EffectRadiusIndex1`=12, `EffectMiscValue1`=17681, `DmgMultiplier1`=1 WHERE `Id`=31010; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectImplicitTargetA1`=6, `EffectApplyAuraName1`=23, `EffectAmplitude1`=1000, `EffectTriggerSpell1`=31010, `DmgMultiplier1`=1 WHERE `Id`=31011; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectDieSides1`=1, `EffectBasePoints1`=14, `EffectImplicitTargetA1`=22, `EffectImplicitTargetB1`=15, `EffectRadiusIndex1`=27, `EffectApplyAuraName1`=3, `EffectAmplitude1`=1000, `DmgMultiplier1`=1 WHERE `Id`=31030; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectDieSides1`=1, `EffectBasePoints1`=14, `EffectImplicitTargetA1`=22, `EffectImplicitTargetB1`=15, `EffectRadiusIndex1`=27, `EffectApplyAuraName1`=3, `EffectAmplitude1`=1000, `DmgMultiplier1`=1 WHERE `Id`=31031; +UPDATE `spell_dbc` SET `AuraInterruptFlags`=4127, `ProcChance`=101, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=4, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=31207; +UPDATE `spell_dbc` SET `ProcChance`=101, `SpellLevel`=1, `Effect1`=6, `EffectDieSides1`=1, `EffectBasePoints1`=-1, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=12, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=31248; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=24, `EffectImplicitTargetA1`=6, `DmgMultiplier1`=1 WHERE `Id`=31251; +UPDATE `spell_dbc` SET `ProcChance`=101, `BaseLevel`=1, `SpellLevel`=1, `EquippedItemSubClassMask`=-1, `Effect1`=28, `EffectImplicitTargetA1`=32, `EffectRadiusIndex1`=16, `EffectMiscValue1`=17477, `DmgClass`=1, `PreventionType`=1, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=31253; +UPDATE `spell_dbc` SET `ProcChance`=101, `BaseLevel`=1, `SpellLevel`=1, `EquippedItemSubClassMask`=-1, `Effect1`=1, `EffectImplicitTargetA1`=38, `DmgClass`=1, `PreventionType`=1, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=31254; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=16, `EffectImplicitTargetA1`=21, `EffectMiscValue1`=9678, `DmgMultiplier1`=1 WHERE `Id`=31265; +UPDATE `spell_dbc` SET `ProcFlags`=40, `ProcChance`=3, `BaseLevel`=35, `SpellLevel`=35, `EquippedItemSubClassMask`=-1, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=42, `EffectTriggerSpell1`=31292, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=31291; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=77, `EffectImplicitTargetA1`=25, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=31313; +UPDATE `spell_dbc` SET `Targets`=256, `ProcChance`=101, `Effect1`=24, `DmgMultiplier1`=1 WHERE `Id`=31314; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `EffectDieSides1`=1, `EffectImplicitTargetA1`=18, `EffectMiscValue1`=17835, `DmgMultiplier1`=1 WHERE `Id`=31318; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `EffectDieSides1`=1, `EffectImplicitTargetA1`=18, `EffectRadiusIndex1`=8, `EffectMiscValue1`=17839, `DmgMultiplier1`=1 WHERE `Id`=31321; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=77, `EffectImplicitTargetA1`=1, `DmgMultiplier1`=1 WHERE `Id`=31322; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=77, `EffectImplicitTargetA1`=25, `DmgMultiplier1`=1 WHERE `Id`=31323; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `Effect2`=3, `EffectImplicitTargetA1`=1, `EffectImplicitTargetA2`=22, `EffectImplicitTargetB2`=7, `EffectRadiusIndex2`=28, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=31327; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=22, `EffectImplicitTargetB1`=7, `EffectRadiusIndex1`=11, `MaxAffectedTargets`=1, `DmgMultiplier1`=1 WHERE `Id`=31342; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=1, `Effect2`=64, `EffectImplicitTargetA1`=1, `EffectImplicitTargetA2`=32, `EffectRadiusIndex2`=7, `EffectTriggerSpell2`=31350, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=31348; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectDieSides1`=1, `EffectImplicitTargetA1`=22, `EffectImplicitTargetB1`=15, `EffectRadiusIndex1`=10, `EffectApplyAuraName1`=4, `DmgMultiplier1`=1 WHERE `Id`=31351; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=77, `EffectImplicitTargetA1`=22, `EffectImplicitTargetB1`=7, `EffectRadiusIndex1`=28, `DmgMultiplier1`=1 WHERE `Id`=31352; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=23, `EffectAmplitude1`=60000, `DmgMultiplier1`=1 WHERE `Id`=31353; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=61, `EffectImplicitTargetA1`=1, `EffectMiscValue1`=11137, `DmgMultiplier1`=1 WHERE `Id`=31354; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=61, `EffectImplicitTargetA1`=1, `EffectMiscValue1`=11138, `DmgMultiplier1`=1 WHERE `Id`=31355; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=61, `EffectImplicitTargetA1`=1, `EffectMiscValue1`=11139, `DmgMultiplier1`=1 WHERE `Id`=31356; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=61, `EffectImplicitTargetA1`=1, `EffectMiscValue1`=11140, `DmgMultiplier1`=1 WHERE `Id`=31357; +UPDATE `spell_dbc` SET `Targets`=64, `ProcChance`=101, `Effect1`=98, `Effect2`=2, `EffectDieSides1`=1, `EffectDieSides2`=125, `EffectBasePoints1`=149, `EffectBasePoints2`=437, `EffectImplicitTargetA1`=22, `EffectImplicitTargetA2`=8, `EffectImplicitTargetB1`=7, `EffectRadiusIndex1`=11, `EffectRadiusIndex2`=11, `EffectMiscValue1`=250, `DmgClass`=2, `PreventionType`=2, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=31360; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `Effect2`=3, `Effect3`=6, `EffectDieSides1`=1, `EffectDieSides3`=1, `EffectImplicitTargetA1`=25, `EffectImplicitTargetA2`=25, `EffectImplicitTargetA3`=25, `EffectRadiusIndex2`=26, `EffectApplyAuraName1`=92, `EffectApplyAuraName3`=26, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=31362; +UPDATE `spell_dbc` SET `ProcChance`=101, `MaxLevel`=70, `Effect1`=41, `EffectImplicitTargetA1`=18, `EffectMiscValue1`=17870, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=31374; +UPDATE `spell_dbc` SET `ProcFlags`=20, `ProcChance`=10, `BaseLevel`=10, `SpellLevel`=10, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=42, `EffectTriggerSpell1`=31376, `DmgMultiplier1`=1 WHERE `Id`=31375; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=77, `EffectImplicitTargetA1`=1, `DmgMultiplier1`=1 WHERE `Id`=31388; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `EffectDieSides1`=1, `EffectImplicitTargetA1`=18, `EffectRadiusIndex1`=8, `EffectMiscValue1`=17879, `DmgMultiplier1`=1 WHERE `Id`=31391; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `EffectDieSides1`=1, `EffectImplicitTargetA1`=18, `EffectRadiusIndex1`=8, `EffectMiscValue1`=17880, `DmgMultiplier1`=1 WHERE `Id`=31392; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `EffectDieSides1`=1, `EffectImplicitTargetA1`=18, `EffectRadiusIndex1`=8, `EffectMiscValue1`=17881, `DmgMultiplier1`=1 WHERE `Id`=31393; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=22, `EffectImplicitTargetB1`=7, `EffectRadiusIndex1`=28, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=31395; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `EffectDieSides1`=1, `EffectImplicitTargetA1`=18, `EffectMiscValue1`=17892, `DmgMultiplier1`=1 WHERE `Id`=31421; +UPDATE `spell_dbc` SET `ProcFlags`=1, `ProcChance`=101, `Effect1`=6, `EffectDieSides1`=1, `EffectBasePoints1`=74, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=31, `EffectMultipleValue1`=1, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=31514; +UPDATE `spell_dbc` SET `ProcChance`=101, `BaseLevel`=70, `SpellLevel`=70, `EquippedItemSubClassMask`=-1, `Effect1`=6, `Effect2`=6, `EffectDieSides1`=1, `EffectImplicitTargetA1`=1, `EffectImplicitTargetA2`=1, `EffectApplyAuraName1`=4, `EffectApplyAuraName2`=23, `EffectAmplitude2`=4000, `EffectTriggerSpell2`=31519, `PreventionType`=1, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=31518; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=38, `EffectRadiusIndex1`=12, `DmgMultiplier1`=1 WHERE `Id`=31520; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=77, `EffectImplicitTargetA1`=22, `EffectImplicitTargetB1`=7, `EffectRadiusIndex1`=12, `DmgMultiplier1`=1 WHERE `Id`=31522; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=38, `EffectRadiusIndex1`=12, `DmgMultiplier1`=1 WHERE `Id`=31524; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=77, `EffectImplicitTargetA1`=22, `EffectImplicitTargetB1`=7, `EffectRadiusIndex1`=12, `DmgMultiplier1`=1 WHERE `Id`=31525; +UPDATE `spell_dbc` SET `ProcChance`=101, `BaseLevel`=60, `SpellLevel`=60, `Effect1`=41, `EffectDieSides1`=1, `EffectImplicitTargetA1`=17, `EffectRadiusIndex1`=16, `EffectMiscValue1`=17951, `DmgMultiplier1`=1 WHERE `Id`=31528; +UPDATE `spell_dbc` SET `ProcChance`=101, `BaseLevel`=60, `SpellLevel`=60, `Effect1`=41, `EffectDieSides1`=1, `EffectImplicitTargetA1`=17, `EffectRadiusIndex1`=16, `EffectMiscValue1`=17951, `DmgMultiplier1`=1 WHERE `Id`=31529; +UPDATE `spell_dbc` SET `ProcChance`=101, `BaseLevel`=60, `SpellLevel`=60, `Effect1`=41, `EffectDieSides1`=1, `EffectImplicitTargetA1`=17, `EffectRadiusIndex1`=16, `EffectMiscValue1`=17951, `DmgMultiplier1`=1 WHERE `Id`=31530; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=23, `EffectAmplitude1`=3000, `DmgMultiplier1`=1 WHERE `Id`=31531; +UPDATE `spell_dbc` SET `ProcChance`=101, `BaseLevel`=60, `SpellLevel`=60, `Effect1`=41, `EffectDieSides1`=1, `EffectImplicitTargetA1`=17, `EffectRadiusIndex1`=16, `EffectMiscValue1`=17954, `DmgMultiplier1`=1 WHERE `Id`=31544; +UPDATE `spell_dbc` SET `ProcChance`=101, `BaseLevel`=60, `SpellLevel`=60, `Effect1`=41, `EffectDieSides1`=1, `EffectImplicitTargetA1`=17, `EffectRadiusIndex1`=16, `EffectMiscValue1`=17954, `DmgMultiplier1`=1 WHERE `Id`=31545; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=23, `EffectAmplitude1`=5000, `EffectTriggerSpell1`=31563, `DmgMultiplier1`=1 WHERE `Id`=31562; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=1, `EffectRadiusIndex1`=10, `DmgMultiplier1`=1 WHERE `Id`=31564; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=77, `EffectImplicitTargetA1`=38, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=31580; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `Effect2`=64, `EffectImplicitTargetA1`=6, `EffectImplicitTargetA2`=1, `EffectTriggerSpell2`=31591, `PreventionType`=2, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=31592; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `EffectDieSides1`=1, `EffectImplicitTargetA1`=22, `EffectImplicitTargetB1`=32, `EffectRadiusIndex1`=13, `EffectMiscValue1`=17612, `DmgMultiplier1`=1 WHERE `Id`=31593; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectImplicitTargetA1`=6, `EffectApplyAuraName1`=4, `DmgMultiplier1`=1 WHERE `Id`=31594; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=23, `EffectAmplitude1`=120000, `DmgMultiplier1`=1 WHERE `Id`=31632; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=23, `EffectAmplitude1`=30000, `DmgMultiplier1`=1 WHERE `Id`=31636; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=23, `EffectAmplitude1`=75000, `DmgMultiplier1`=1 WHERE `Id`=31637; +UPDATE `spell_dbc` SET `ProcChance`=101, `StackAmount`=500, `Effect1`=6, `Effect2`=46, `EffectDieSides1`=1, `EffectBasePoints1`=-96, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=61, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=31691; +UPDATE `spell_dbc` SET `ProcChance`=101, `BaseLevel`=63, `SpellLevel`=63, `Effect1`=41, `EffectDieSides1`=1, `EffectImplicitTargetA1`=72, `EffectRadiusIndex1`=8, `EffectMiscValue1`=17990, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=31692; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=77, `EffectImplicitTargetA1`=22, `EffectImplicitTargetB1`=15, `EffectRadiusIndex1`=12, `DmgMultiplier1`=1 WHERE `Id`=31693; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `Effect2`=6, `EffectDieSides1`=1, `EffectDieSides2`=1, `EffectBasePoints1`=99, `EffectBasePoints2`=-31, `EffectImplicitTargetA1`=1, `EffectImplicitTargetA2`=1, `EffectApplyAuraName1`=65, `EffectApplyAuraName2`=79, `EffectMiscValue2`=126, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=31708; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=23, `EffectAmplitude1`=1000, `EffectTriggerSpell1`=31719, `DmgMultiplier1`=1 WHERE `Id`=31720; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect2`=5, `EffectImplicitTargetA2`=1, `EffectImplicitTargetB2`=17, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=31728; +UPDATE `spell_dbc` SET `StancesNot`=1073742047, `AuraInterruptFlags`=4194304, `ProcChance`=101, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=56, `EffectMiscValue1`=17970, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=31746; +UPDATE `spell_dbc` SET `StancesNot`=1073742079, `ProcChance`=101, `Effect1`=123, `EffectImplicitTargetA1`=25, `EffectMiscValue1`=489, `DmgMultiplier1`=1 WHERE `Id`=31752; +UPDATE `spell_dbc` SET `StancesNot`=1073742079, `ProcChance`=101, `Effect1`=123, `EffectImplicitTargetA1`=25, `EffectMiscValue1`=488, `DmgMultiplier1`=1 WHERE `Id`=31753; +UPDATE `spell_dbc` SET `ProcChance`=101, `BaseLevel`=70, `SpellLevel`=70, `Effect1`=6, `EffectImplicitTargetA1`=22, `EffectImplicitTargetB1`=7, `EffectRadiusIndex1`=13, `EffectApplyAuraName1`=4, `DmgMultiplier1`=1 WHERE `Id`=31763; +UPDATE `spell_dbc` SET `ProcChance`=101, `BaseLevel`=70, `SpellLevel`=70, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=4, `DmgMultiplier1`=1 WHERE `Id`=31767; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=76, `EffectDieSides1`=1, `EffectImplicitTargetA1`=18, `EffectMiscValue1`=182110, `DmgMultiplier1`=1 WHERE `Id`=31768; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=22, `EffectImplicitTargetB1`=7, `EffectRadiusIndex1`=28, `DmgMultiplier1`=1 WHERE `Id`=31770; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=4, `DmgMultiplier1`=1 WHERE `Id`=31773; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `Effect2`=61, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=4, `EffectMiscValue2`=11286, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=31774; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `Effect2`=61, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=4, `EffectMiscValue2`=11289, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=31775; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `Effect2`=61, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=4, `EffectMiscValue2`=11290, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=31776; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `Effect2`=61, `Effect3`=16, `EffectImplicitTargetA1`=1, `EffectImplicitTargetA3`=1, `EffectApplyAuraName1`=4, `EffectMiscValue2`=11291, `EffectMiscValue3`=9718, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=31777; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=123, `EffectImplicitTargetA1`=25, `EffectMiscValue1`=514, `DmgMultiplier1`=1 WHERE `Id`=31788; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=39, `EffectMiscValue1`=127, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=31800; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectImplicitTargetA1`=25, `EffectApplyAuraName1`=4, `DmgMultiplier1`=1 WHERE `Id`=31887; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=77, `EffectImplicitTargetA1`=22, `EffectImplicitTargetB1`=15, `EffectRadiusIndex1`=21, `DmgMultiplier1`=1 WHERE `Id`=31888; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=1, `EffectImplicitTargetA1`=22, `EffectImplicitTargetB1`=30, `EffectRadiusIndex1`=10, `DmgMultiplier1`=1 WHERE `Id`=31899; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=77, `EffectImplicitTargetA1`=22, `EffectImplicitTargetB1`=7, `EffectRadiusIndex1`=12, `DmgMultiplier1`=1 WHERE `Id`=31912; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=38, `EffectRadiusIndex1`=12, `DmgMultiplier1`=1 WHERE `Id`=31913; +UPDATE `spell_dbc` SET `ProcChance`=101, `BaseLevel`=1, `SpellLevel`=1, `EquippedItemSubClassMask`=-1, `Effect1`=29, `EffectDieSides1`=1, `EffectBasePoints1`=-1, `EffectImplicitTargetA1`=1, `EffectImplicitTargetB1`=47, `EffectRadiusIndex1`=14, `SpellFamilyName`=3, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=31917; +UPDATE `spell_dbc` SET `ProcChance`=101, `BaseLevel`=1, `SpellLevel`=1, `EquippedItemSubClassMask`=-1, `Effect1`=29, `EffectDieSides1`=1, `EffectBasePoints1`=-1, `EffectImplicitTargetA1`=1, `EffectImplicitTargetB1`=44, `EffectRadiusIndex1`=14, `SpellFamilyName`=3, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=31918; +UPDATE `spell_dbc` SET `ProcChance`=101, `BaseLevel`=1, `SpellLevel`=1, `EquippedItemSubClassMask`=-1, `Effect1`=29, `EffectDieSides1`=1, `EffectBasePoints1`=-1, `EffectImplicitTargetA1`=1, `EffectImplicitTargetB1`=41, `EffectRadiusIndex1`=14, `SpellFamilyName`=3, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=31919; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=1, `EffectImplicitTargetA1`=25, `DmgMultiplier1`=1 WHERE `Id`=31924; +UPDATE `spell_dbc` SET `ProcChance`=101, `StackAmount`=500, `Effect1`=6, `EffectDieSides1`=1, `EffectBasePoints1`=399, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=61, `DmgMultiplier1`=1 WHERE `Id`=31937; +UPDATE `spell_dbc` SET `ProcChance`=101, `BaseLevel`=1, `SpellLevel`=1, `EquippedItemSubClassMask`=-1, `Effect1`=3, `EffectDieSides1`=1, `EffectImplicitTargetA1`=22, `EffectImplicitTargetB1`=7, `EffectRadiusIndex1`=18, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=31940; +UPDATE `spell_dbc` SET `ProcChance`=101, `BaseLevel`=40, `SpellLevel`=40, `EquippedItemSubClassMask`=-1, `Effect1`=6, `EffectDieSides1`=1, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=23, `EffectAmplitude1`=2000, `EffectTriggerSpell1`=31940, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=31952; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=1, `DmgMultiplier1`=1 WHERE `Id`=31957; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=77, `EffectImplicitTargetA1`=1, `DmgMultiplier1`=1 WHERE `Id`=31959; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=77, `EffectImplicitTargetA1`=25, `DmgMultiplier1`=1 WHERE `Id`=31960; +UPDATE `spell_dbc` SET `ProcChance`=101, `BaseLevel`=73, `SpellLevel`=73, `Effect1`=3, `EffectImplicitTargetA1`=1, `DmgMultiplier1`=1 WHERE `Id`=31968; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectDieSides1`=1, `EffectBasePoints1`=199, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=61, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=31989; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `EffectDieSides1`=2, `EffectBasePoints1`=1, `EffectImplicitTargetA1`=18, `EffectRadiusIndex1`=29, `EffectMiscValue1`=18181, `DmgMultiplier1`=1 WHERE `Id`=31995; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=77, `EffectImplicitTargetA1`=25, `DmgMultiplier1`=1 WHERE `Id`=32031; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectImplicitTargetA1`=22, `EffectImplicitTargetB1`=15, `EffectRadiusIndex1`=28, `EffectApplyAuraName1`=4, `DmgMultiplier1`=1 WHERE `Id`=32044; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectImplicitTargetA1`=25, `EffectApplyAuraName1`=4, `DmgMultiplier1`=1 WHERE `Id`=32046; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectDieSides1`=1, `EffectBasePoints1`=9, `EffectImplicitTargetA1`=25, `EffectApplyAuraName1`=4, `DmgMultiplier1`=1 WHERE `Id`=32047; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectDieSides1`=1, `EffectBasePoints1`=19, `EffectImplicitTargetA1`=25, `EffectApplyAuraName1`=4, `DmgMultiplier1`=1 WHERE `Id`=32048; +UPDATE `spell_dbc` SET `ProcFlags`=2, `ProcChance`=100, `Effect1`=35, `EffectImplicitTargetA1`=1, `EffectRadiusIndex1`=31, `EffectApplyAuraName1`=4, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=32050; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectImplicitTargetA1`=25, `EffectApplyAuraName1`=4, `DmgMultiplier1`=1 WHERE `Id`=32058; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=123, `Effect2`=24, `Effect3`=77, `EffectDieSides2`=1, `EffectBasePoints2`=9, `EffectImplicitTargetA1`=25, `EffectImplicitTargetA2`=25, `EffectImplicitTargetA3`=25, `EffectMiscValue1`=520, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=32059; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=38, `DmgMultiplier1`=1 WHERE `Id`=32061; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=123, `Effect2`=24, `Effect3`=77, `EffectDieSides2`=1, `EffectBasePoints2`=9, `EffectImplicitTargetA1`=25, `EffectImplicitTargetA2`=25, `EffectImplicitTargetA3`=25, `EffectMiscValue1`=523, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=32068; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectDieSides1`=1, `EffectBasePoints1`=9, `EffectImplicitTargetA1`=25, `EffectApplyAuraName1`=4, `DmgMultiplier1`=1 WHERE `Id`=32069; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectDieSides1`=1, `EffectBasePoints1`=19, `EffectImplicitTargetA1`=25, `EffectApplyAuraName1`=4, `DmgMultiplier1`=1 WHERE `Id`=32070; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `Effect2`=77, `EffectImplicitTargetA2`=1, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=32072; +UPDATE `spell_dbc` SET `Targets`=64, `ProcChance`=101, `Effect1`=77, `EffectImplicitTargetA1`=31, `EffectRadiusIndex1`=12, `DmgMultiplier1`=1 WHERE `Id`=32073; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=123, `Effect2`=24, `Effect3`=77, `EffectDieSides2`=1, `EffectBasePoints2`=9, `EffectImplicitTargetA1`=25, `EffectImplicitTargetA2`=25, `EffectImplicitTargetA3`=25, `EffectMiscValue1`=522, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=32075; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=123, `Effect2`=24, `Effect3`=77, `EffectDieSides2`=1, `EffectBasePoints2`=9, `EffectImplicitTargetA1`=25, `EffectImplicitTargetA2`=25, `EffectImplicitTargetA3`=25, `EffectMiscValue1`=524, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=32081; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectImplicitTargetA1`=6, `EffectApplyAuraName1`=4, `DmgMultiplier1`=1 WHERE `Id`=32086; +UPDATE `spell_dbc` SET `Mechanic`=7, `ProcChance`=101, `Effect1`=6, `EffectMechanic1`=7, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=26, `DmgMultiplier1`=1 WHERE `Id`=32113; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `EffectDieSides1`=1, `EffectImplicitTargetA1`=73, `EffectRadiusIndex1`=25, `EffectMiscValue1`=17946, `DmgMultiplier1`=1 WHERE `Id`=32114; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=1, `EffectImplicitTargetA1`=1, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=32116; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=77, `EffectImplicitTargetA1`=22, `EffectImplicitTargetB1`=15, `EffectRadiusIndex1`=13, `DmgMultiplier1`=1 WHERE `Id`=32117; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectDieSides1`=1, `EffectImplicitTargetA1`=1, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=32118; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=77, `EffectImplicitTargetA1`=22, `EffectImplicitTargetB1`=15, `EffectRadiusIndex1`=27, `DmgMultiplier1`=1 WHERE `Id`=32123; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=1, `DmgMultiplier1`=1 WHERE `Id`=32128; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=76, `EffectImplicitTargetA1`=46, `EffectMiscValue1`=182211, `DmgMultiplier1`=1 WHERE `Id`=32147; +UPDATE `spell_dbc` SET `Targets`=64, `ProcChance`=101, `Effect1`=41, `EffectRadiusIndex1`=27, `EffectMiscValue1`=17908, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=32151; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=24, `EffectImplicitTargetA1`=21, `DmgMultiplier1`=1 WHERE `Id`=32152; +UPDATE `spell_dbc` SET `Dispel`=4, `ProcChance`=101, `BaseLevel`=20, `SpellLevel`=20, `EquippedItemSubClassMask`=-1, `Effect1`=3, `EffectImplicitTargetA1`=6, `DmgClass`=1, `PreventionType`=1, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=32153; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=77, `EffectImplicitTargetA1`=22, `EffectImplicitTargetB1`=7, `EffectRadiusIndex1`=22, `DmgMultiplier1`=1 WHERE `Id`=32156; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=77, `EffectImplicitTargetA1`=22, `EffectImplicitTargetB1`=7, `EffectRadiusIndex1`=22, `DmgMultiplier1`=1 WHERE `Id`=32157; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=24, `EffectDieSides1`=1, `EffectBasePoints1`=9, `EffectImplicitTargetA1`=25, `DmgMultiplier1`=1 WHERE `Id`=32165; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=38, `EffectRadiusIndex1`=28, `DmgMultiplier1`=1 WHERE `Id`=32171; +UPDATE `spell_dbc` SET `ProcChance`=101, `StackAmount`=500, `Effect1`=6, `Effect2`=46, `EffectDieSides1`=1, `EffectBasePoints1`=-1, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=56, `EffectMiscValue1`=19637, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=32184; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=23, `EffectAmplitude1`=2000, `EffectTriggerSpell1`=30638, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=32185; +UPDATE `spell_dbc` SET `ProcChance`=101, `StackAmount`=500, `Effect1`=6, `Effect2`=46, `EffectDieSides1`=1, `EffectBasePoints1`=-1, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=56, `EffectMiscValue1`=19636, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=32186; +UPDATE `spell_dbc` SET `ProcChance`=101, `StackAmount`=500, `Effect1`=6, `Effect2`=46, `EffectDieSides1`=1, `EffectBasePoints1`=-1, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=56, `EffectMiscValue1`=19638, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=32187; +UPDATE `spell_dbc` SET `ProcChance`=101, `StackAmount`=500, `Effect1`=6, `Effect2`=46, `EffectDieSides1`=1, `EffectBasePoints1`=-1, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=56, `EffectMiscValue1`=19639, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=32188; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectImplicitTargetA1`=6, `EffectApplyAuraName1`=26, `DmgMultiplier1`=1 WHERE `Id`=32210; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectDieSides1`=1, `EffectBasePoints1`=199, `EffectImplicitTargetA1`=21, `EffectApplyAuraName1`=19, `DmgMultiplier1`=1 WHERE `Id`=32213; +UPDATE `spell_dbc` SET `Targets`=256, `ProcChance`=101, `EquippedItemSubClassMask`=-1, `Effect1`=36, `EffectDieSides1`=1, `EffectBasePoints1`=-1, `EffectTriggerSpell1`=34428, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=32218; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=16, `EffectMiscValue1`=9713, `DmgMultiplier1`=1 WHERE `Id`=32222; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=76, `EffectImplicitTargetA1`=32, `EffectRadiusIndex1`=7, `EffectMiscValue1`=182342, `DmgMultiplier1`=1 WHERE `Id`=32229; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=40, `EffectMiscValue1`=127, `DmgMultiplier1`=1 WHERE `Id`=32252; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=18, `EffectImplicitTargetB1`=8, `EffectRadiusIndex1`=28, `DmgMultiplier1`=1 WHERE `Id`=32257; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=18, `EffectImplicitTargetB1`=8, `EffectRadiusIndex1`=28, `DmgMultiplier1`=1 WHERE `Id`=32258; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `EffectDieSides1`=1, `EffectImplicitTargetA1`=18, `EffectRadiusIndex1`=16, `EffectMiscValue1`=18374, `DmgMultiplier1`=1 WHERE `Id`=32283; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectImplicitTargetA1`=6, `EffectApplyAuraName1`=23, `EffectAmplitude1`=1000, `EffectTriggerSpell1`=32283, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=32291; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=16, `EffectImplicitTargetA1`=25, `EffectMiscValue1`=9926, `DmgMultiplier1`=1 WHERE `Id`=32299; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=1, `DmgMultiplier1`=1 WHERE `Id`=32313; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=77, `EffectImplicitTargetA1`=22, `EffectImplicitTargetB1`=15, `EffectRadiusIndex1`=12, `DmgMultiplier1`=1 WHERE `Id`=32326; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=77, `EffectImplicitTargetA1`=22, `EffectImplicitTargetB1`=7, `EffectRadiusIndex1`=28, `DmgMultiplier1`=1 WHERE `Id`=32331; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=23, `EffectAmplitude1`=1000, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=32333; +UPDATE `spell_dbc` SET `ProcChance`=101, `BaseLevel`=40, `SpellLevel`=40, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=23, `EffectAmplitude1`=1000, `EffectTriggerSpell1`=32336, `DmgClass`=2, `PreventionType`=2, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=32335; +UPDATE `spell_dbc` SET `ProcChance`=101, `BaseLevel`=40, `SpellLevel`=40, `Effect2`=98, `EffectDieSides2`=75, `EffectBasePoints2`=112, `EffectImplicitTargetA2`=22, `EffectImplicitTargetB2`=15, `EffectRadiusIndex2`=19, `DmgClass`=2, `PreventionType`=2, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=32336; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=77, `EffectImplicitTargetA1`=22, `EffectImplicitTargetB1`=7, `EffectRadiusIndex1`=28, `DmgMultiplier1`=1 WHERE `Id`=32340; +UPDATE `spell_dbc` SET `ProcChance`=101, `BaseLevel`=1, `SpellLevel`=1, `EquippedItemSubClassMask`=-1, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=56, `EffectMiscValue1`=17091, `SpellFamilyName`=1, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=32341; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=77, `EffectImplicitTargetA1`=22, `EffectImplicitTargetB1`=7, `EffectRadiusIndex1`=28, `DmgMultiplier1`=1 WHERE `Id`=32342; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `EffectDieSides1`=1, `EffectImplicitTargetA1`=32, `EffectRadiusIndex1`=16, `EffectMiscValue1`=18441, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=32360; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=1, `EffectRadiusIndex1`=7, `DmgMultiplier1`=1 WHERE `Id`=32425; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=30, `Effect2`=67, `EffectDieSides1`=1, `EffectDieSides2`=1, `EffectBasePoints1`=99999, `EffectBasePoints2`=99, `EffectImplicitTargetA1`=1, `EffectImplicitTargetA2`=1, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=32432; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=77, `EffectImplicitTargetA1`=22, `EffectImplicitTargetB1`=7, `EffectRadiusIndex1`=30, `DmgMultiplier1`=1 WHERE `Id`=32433; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=77, `EffectImplicitTargetA1`=25, `DmgMultiplier1`=1 WHERE `Id`=32438; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=38, `EffectRadiusIndex1`=28, `DmgMultiplier1`=1 WHERE `Id`=32444; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=23, `EffectAmplitude1`=1000, `EffectTriggerSpell1`=32459, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=32460; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=123, `EffectImplicitTargetA1`=25, `EffectMiscValue1`=532, `DmgMultiplier1`=1 WHERE `Id`=32551; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=22, `EffectImplicitTargetB1`=7, `EffectRadiusIndex1`=28, `DmgMultiplier1`=1 WHERE `Id`=32555; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=38, `EffectRadiusIndex1`=28, `DmgMultiplier1`=1 WHERE `Id`=32558; +UPDATE `spell_dbc` SET `StancesNot`=1073742079, `ProcChance`=101, `Effect1`=123, `Effect2`=6, `EffectImplicitTargetA1`=1, `EffectImplicitTargetA2`=1, `EffectApplyAuraName2`=4, `EffectMiscValue1`=532, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=32559; +UPDATE `spell_dbc` SET `StancesNot`=1073742047, `AuraInterruptFlags`=4194304, `ProcChance`=101, `Effect1`=6, `EffectImplicitTargetA1`=25, `EffectApplyAuraName1`=4, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=32561; +UPDATE `spell_dbc` SET `StancesNot`=1073742047, `AuraInterruptFlags`=4194304, `ProcChance`=101, `Effect1`=16, `Effect2`=5, `EffectImplicitTargetA1`=1, `EffectImplicitTargetA2`=1, `EffectImplicitTargetB2`=17, `EffectMiscValue1`=9991, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=32562; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=22, `EffectImplicitTargetB1`=7, `EffectRadiusIndex1`=30, `DmgMultiplier1`=1 WHERE `Id`=32565; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `EffectImplicitTargetA1`=18, `EffectRadiusIndex1`=16, `EffectMiscValue1`=18555, `DmgMultiplier1`=1 WHERE `Id`=32579; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=16, `Effect2`=6, `EffectImplicitTargetA1`=22, `EffectImplicitTargetA2`=22, `EffectImplicitTargetB1`=15, `EffectImplicitTargetB2`=15, `EffectRadiusIndex1`=11, `EffectRadiusIndex2`=11, `EffectApplyAuraName2`=4, `EffectMiscValue1`=10004, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `AreaGroupId`=7 WHERE `Id`=32586; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect2`=77, `EffectImplicitTargetA2`=22, `EffectImplicitTargetB2`=7, `EffectRadiusIndex2`=28, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=32611; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=61, `EffectImplicitTargetA1`=1, `EffectMiscValue1`=11858, `DmgMultiplier1`=1 WHERE `Id`=32613; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectDieSides1`=1, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=56, `EffectMiscValue1`=18645, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=32617; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=61, `EffectImplicitTargetA1`=1, `EffectMiscValue1`=11888, `DmgMultiplier1`=1 WHERE `Id`=32619; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=77, `EffectImplicitTargetA1`=22, `EffectImplicitTargetB1`=7, `EffectRadiusIndex1`=30, `DmgMultiplier1`=1 WHERE `Id`=32620; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=23, `EffectAmplitude1`=3000, `EffectTriggerSpell1`=32620, `DmgMultiplier1`=1 WHERE `Id`=32621; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=54, `EffectRadiusIndex1`=27, `DmgMultiplier1`=1 WHERE `Id`=32624; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=54, `EffectRadiusIndex1`=27, `DmgMultiplier1`=1 WHERE `Id`=32625; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=54, `EffectRadiusIndex1`=27, `DmgMultiplier1`=1 WHERE `Id`=32626; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=54, `EffectRadiusIndex1`=27, `DmgMultiplier1`=1 WHERE `Id`=32627; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=54, `EffectRadiusIndex1`=27, `DmgMultiplier1`=1 WHERE `Id`=32628; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=54, `EffectRadiusIndex1`=27, `DmgMultiplier1`=1 WHERE `Id`=32629; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=54, `EffectRadiusIndex1`=27, `DmgMultiplier1`=1 WHERE `Id`=32630; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=54, `EffectRadiusIndex1`=27, `DmgMultiplier1`=1 WHERE `Id`=32631; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `EffectDieSides1`=1, `EffectImplicitTargetA1`=47, `EffectRadiusIndex1`=27, `EffectMiscValue1`=18665, `DmgMultiplier1`=1 WHERE `Id`=32632; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=77, `EffectImplicitTargetA1`=1, `DmgMultiplier1`=1 WHERE `Id`=32634; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=25, `EffectRadiusIndex1`=30, `DmgMultiplier1`=1 WHERE `Id`=32635; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=24, `EffectDieSides1`=1, `EffectImplicitTargetA1`=25, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=32673; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect2`=77, `EffectImplicitTargetA2`=22, `EffectImplicitTargetB2`=7, `EffectRadiusIndex2`=28, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=32687; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=23, `EffectAmplitude1`=10000, `EffectTriggerSpell1`=32719, `DmgMultiplier1`=1 WHERE `Id`=32718; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectDieSides1`=1, `EffectBasePoints1`=119, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=31, `DmgMultiplier1`=1 WHERE `Id`=32719; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=18, `EffectImplicitTargetB1`=8, `EffectRadiusIndex1`=28, `DmgMultiplier1`=1 WHERE `Id`=32726; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=24, `EffectImplicitTargetA1`=25, `DmgMultiplier1`=1 WHERE `Id`=32762; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectImplicitTargetA1`=1, `DmgMultiplier1`=1, `AreaGroupId`=52 WHERE `Id`=32763; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=4, `DmgMultiplier1`=1 WHERE `Id`=32781; +UPDATE `spell_dbc` SET `ProcChance`=101, `BaseLevel`=30, `SpellLevel`=30, `EquippedItemSubClassMask`=-1, `Effect1`=56, `EffectDieSides1`=1, `EffectImplicitTargetA1`=32, `EffectMiscValue1`=17252, `SpellFamilyName`=5, `SpellFamilyFlags1`=536870912, `DmgClass`=1, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=32782; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectDieSides1`=1, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=23, `EffectAmplitude1`=18000, `EffectTriggerSpell1`=8329, `DmgClass`=1, `PreventionType`=1, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=32798; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectDieSides1`=1, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=23, `EffectAmplitude1`=22000, `EffectTriggerSpell1`=8329, `DmgClass`=1, `PreventionType`=1, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=32799; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectDieSides1`=1, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=23, `EffectAmplitude1`=26000, `EffectTriggerSpell1`=8329, `DmgClass`=1, `PreventionType`=1, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=32800; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=103, `EffectDieSides1`=1, `EffectBasePoints1`=124, `EffectImplicitTargetA1`=25, `EffectMiscValue1`=941, `DmgMultiplier1`=1 WHERE `Id`=32827; +UPDATE `spell_dbc` SET `ProcFlags`=4, `ProcChance`=100, `Effect1`=2, `Effect2`=77, `EffectDieSides1`=1, `EffectBasePoints1`=-1, `EffectImplicitTargetA1`=6, `EffectImplicitTargetA2`=6, `DmgClass`=1, `PreventionType`=1, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=32887; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=123, `EffectImplicitTargetA1`=25, `EffectMiscValue1`=533, `DmgMultiplier1`=1 WHERE `Id`=32891; +UPDATE `spell_dbc` SET `StancesNot`=1073742079, `ProcChance`=101, `Effect1`=123, `Effect2`=132, `EffectImplicitTargetA1`=25, `EffectImplicitTargetA2`=25, `EffectMiscValue1`=534, `EffectMiscValue2`=10773, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=32892; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=56, `EffectMiscValue1`=18769, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=32893; +UPDATE `spell_dbc` SET `AuraInterruptFlags`=5131, `ProcChance`=101, `BaseLevel`=20, `SpellLevel`=20, `Effect1`=3, `EffectImplicitTargetA1`=38, `EffectRadiusIndex1`=16, `SpellFamilyName`=6, `SpellFamilyFlags1`=8388608, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=32941; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=61, `EffectMiscValue1`=12019, `DmgMultiplier1`=1 WHERE `Id`=32949; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=56, `EffectRadiusIndex1`=12, `DmgMultiplier1`=1 WHERE `Id`=32985; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=4, `DmgMultiplier1`=1 WHERE `Id`=33003; +UPDATE `spell_dbc` SET `ProcFlags`=2, `ProcChance`=100, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=42, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=33007; +UPDATE `spell_dbc` SET `ProcFlags`=2, `ProcChance`=100, `Effect1`=35, `EffectImplicitTargetA1`=1, `EffectRadiusIndex1`=12, `EffectApplyAuraName1`=42, `EffectTriggerSpell1`=18350, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=33008; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=1, `EffectRadiusIndex1`=16, `DmgMultiplier1`=1 WHERE `Id`=33011; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `EffectImplicitTargetA1`=32, `EffectRadiusIndex1`=15, `EffectMiscValue1`=18904, `DmgMultiplier1`=1 WHERE `Id`=33121; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectImplicitTargetA1`=25, `EffectApplyAuraName1`=23, `EffectAmplitude1`=1000, `EffectTriggerSpell1`=33121, `DmgMultiplier1`=1 WHERE `Id`=33122; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=24, `EffectDieSides1`=1, `EffectImplicitTargetA1`=25, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=33137; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=28, `EffectDieSides1`=1, `EffectImplicitTargetA1`=18, `EffectImplicitTargetB1`=44, `EffectRadiusIndex1`=20, `EffectMiscValue1`=18928, `EffectMiscValueB1`=64, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=33189; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=1, `DmgMultiplier1`=1 WHERE `Id`=33228; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `EffectDieSides1`=1, `EffectImplicitTargetA1`=32, `EffectRadiusIndex1`=16, `EffectMiscValue1`=18932, `MaxAffectedTargets`=1, `DmgMultiplier1`=1 WHERE `Id`=33229; +UPDATE `spell_dbc` SET `Targets`=64, `ProcChance`=101, `Effect1`=41, `EffectRadiusIndex1`=27, `EffectMiscValue1`=19259, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=33242; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=5, `EffectImplicitTargetA1`=1, `EffectImplicitTargetB1`=17, `DmgMultiplier1`=1 WHERE `Id`=33244; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=28, `EffectDieSides1`=1, `EffectImplicitTargetA1`=18, `EffectImplicitTargetB1`=50, `EffectRadiusIndex1`=20, `EffectMiscValue1`=18928, `EffectMiscValueB1`=64, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=33281; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=28, `EffectDieSides1`=1, `EffectImplicitTargetA1`=18, `EffectImplicitTargetB1`=47, `EffectRadiusIndex1`=20, `EffectMiscValue1`=18928, `EffectMiscValueB1`=64, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=33282; +UPDATE `spell_dbc` SET `StancesNot`=1073742079, `ProcChance`=101, `Effect1`=123, `EffectImplicitTargetA1`=25, `EffectMiscValue1`=564, `DmgMultiplier1`=1 WHERE `Id`=33317; +UPDATE `spell_dbc` SET `StancesNot`=1073742079, `ProcChance`=101, `Effect1`=123, `EffectImplicitTargetA1`=25, `EffectMiscValue1`=565, `DmgMultiplier1`=1 WHERE `Id`=33318; +UPDATE `spell_dbc` SET `StancesNot`=1073742079, `ProcChance`=101, `Effect1`=123, `EffectImplicitTargetA1`=25, `EffectMiscValue1`=565, `DmgMultiplier1`=1 WHERE `Id`=33319; +UPDATE `spell_dbc` SET `StancesNot`=1073742079, `ProcChance`=101, `Effect1`=123, `EffectImplicitTargetA1`=25, `EffectMiscValue1`=565, `DmgMultiplier1`=1 WHERE `Id`=33320; +UPDATE `spell_dbc` SET `AuraInterruptFlags`=4127, `ProcChance`=101, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=7, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=33330; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=28, `EffectDieSides1`=1, `EffectImplicitTargetA1`=18, `EffectImplicitTargetB1`=41, `EffectRadiusIndex1`=20, `EffectMiscValue1`=18928, `EffectMiscValueB1`=64, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=33347; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=28, `EffectDieSides1`=1, `EffectImplicitTargetA1`=18, `EffectImplicitTargetB1`=49, `EffectRadiusIndex1`=20, `EffectMiscValue1`=18928, `EffectMiscValueB1`=64, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=33348; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=28, `EffectDieSides1`=1, `EffectImplicitTargetA1`=18, `EffectImplicitTargetB1`=42, `EffectRadiusIndex1`=20, `EffectMiscValue1`=18928, `EffectMiscValueB1`=64, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=33349; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=28, `EffectDieSides1`=1, `EffectImplicitTargetA1`=18, `EffectImplicitTargetB1`=48, `EffectRadiusIndex1`=20, `EffectMiscValue1`=18928, `EffectMiscValueB1`=64, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=33350; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=28, `EffectDieSides1`=1, `EffectImplicitTargetA1`=18, `EffectImplicitTargetB1`=43, `EffectRadiusIndex1`=20, `EffectMiscValue1`=18928, `EffectMiscValueB1`=64, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=33351; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=28, `EffectDieSides1`=1, `EffectImplicitTargetA1`=18, `EffectImplicitTargetB1`=41, `EffectRadiusIndex1`=17, `EffectMiscValue1`=18928, `EffectMiscValueB1`=64, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=33352; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=28, `EffectDieSides1`=1, `EffectImplicitTargetA1`=18, `EffectImplicitTargetB1`=44, `EffectRadiusIndex1`=17, `EffectMiscValue1`=18928, `EffectMiscValueB1`=64, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=33353; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=28, `EffectDieSides1`=1, `EffectImplicitTargetA1`=18, `EffectImplicitTargetB1`=42, `EffectRadiusIndex1`=17, `EffectMiscValue1`=18928, `EffectMiscValueB1`=64, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=33354; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=28, `EffectDieSides1`=1, `EffectImplicitTargetA1`=18, `EffectImplicitTargetB1`=43, `EffectRadiusIndex1`=17, `EffectMiscValue1`=18928, `EffectMiscValueB1`=64, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=33355; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `EffectDieSides1`=1, `EffectBasePoints1`=4, `EffectImplicitTargetA1`=32, `EffectRadiusIndex1`=7, `EffectMiscValue1`=18925, `DmgMultiplier1`=1 WHERE `Id`=33362; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `EffectDieSides1`=1, `EffectImplicitTargetA1`=18, `EffectMiscValue1`=18994, `DmgMultiplier1`=1 WHERE `Id`=33363; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `EffectDieSides1`=1, `EffectImplicitTargetA1`=18, `EffectMiscValue1`=18995, `DmgMultiplier1`=1 WHERE `Id`=33364; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=5, `EffectDieSides1`=1, `EffectImplicitTargetA1`=38, `EffectImplicitTargetB1`=18, `DmgMultiplier1`=1 WHERE `Id`=33366; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `EffectDieSides1`=1, `EffectImplicitTargetA1`=32, `EffectRadiusIndex1`=16, `EffectMiscValue1`=18806, `DmgMultiplier1`=1 WHERE `Id`=33367; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=1, `EffectRadiusIndex1`=16, `DmgMultiplier1`=1 WHERE `Id`=33374; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=22, `EffectImplicitTargetB1`=7, `EffectRadiusIndex1`=13, `MaxAffectedTargets`=1, `DmgMultiplier1`=1 WHERE `Id`=33375; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=77, `EffectImplicitTargetA1`=1, `DmgMultiplier1`=1 WHERE `Id`=33376; +UPDATE `spell_dbc` SET `ProcChance`=101, `BaseLevel`=20, `SpellLevel`=20, `EquippedItemClass`=2, `EquippedItemSubClassMask`=262156, `Effect1`=3, `EffectImplicitTargetA1`=25, `SpellFamilyName`=9, `SpellFamilyFlags1`=1, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=33399; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectDieSides1`=1, `EffectBasePoints1`=49, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=33, `DmgMultiplier1`=1 WHERE `Id`=33408; +UPDATE `spell_dbc` SET `ProcChance`=101, `SpellLevel`=1, `EquippedItemSubClassMask`=-1, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=23, `EffectAmplitude1`=1000, `EffectTriggerSpell1`=18350, `SpellFamilyName`=3, `SpellFamilyFlags1`=2048, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=33420; +UPDATE `spell_dbc` SET `ProcChance`=101, `BaseLevel`=65, `SpellLevel`=65, `StackAmount`=4, `Effect1`=6, `EffectDieSides1`=1, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=23, `EffectAmplitude1`=3000, `EffectTriggerSpell1`=32264, `PreventionType`=1, `DmgMultiplier1`=1 WHERE `Id`=33460; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `EffectDieSides1`=1, `EffectImplicitTargetA1`=18, `EffectImplicitTargetB1`=47, `EffectRadiusIndex1`=21, `EffectMiscValue1`=19198, `DmgMultiplier1`=1 WHERE `Id`=33495; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=124, `EffectImplicitTargetA1`=25, `EffectMiscValue1`=150, `DmgMultiplier1`=1 WHERE `Id`=33497; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=1, `DmgMultiplier1`=1 WHERE `Id`=33505; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `EffectDieSides1`=1, `EffectImplicitTargetA1`=18, `EffectImplicitTargetB1`=41, `EffectRadiusIndex1`=21, `EffectMiscValue1`=19198, `DmgMultiplier1`=1 WHERE `Id`=33514; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `EffectDieSides1`=1, `EffectImplicitTargetA1`=18, `EffectImplicitTargetB1`=49, `EffectRadiusIndex1`=21, `EffectMiscValue1`=19198, `DmgMultiplier1`=1 WHERE `Id`=33515; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `EffectDieSides1`=1, `EffectImplicitTargetA1`=18, `EffectImplicitTargetB1`=42, `EffectRadiusIndex1`=21, `EffectMiscValue1`=19198, `DmgMultiplier1`=1 WHERE `Id`=33516; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `EffectDieSides1`=1, `EffectImplicitTargetA1`=18, `EffectImplicitTargetB1`=48, `EffectRadiusIndex1`=21, `EffectMiscValue1`=19198, `DmgMultiplier1`=1 WHERE `Id`=33517; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `EffectDieSides1`=1, `EffectImplicitTargetA1`=18, `EffectImplicitTargetB1`=43, `EffectRadiusIndex1`=21, `EffectMiscValue1`=19198, `DmgMultiplier1`=1 WHERE `Id`=33518; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `EffectDieSides1`=1, `EffectImplicitTargetA1`=18, `EffectImplicitTargetB1`=50, `EffectRadiusIndex1`=21, `EffectMiscValue1`=19198, `DmgMultiplier1`=1 WHERE `Id`=33519; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `EffectDieSides1`=1, `EffectImplicitTargetA1`=18, `EffectImplicitTargetB1`=44, `EffectRadiusIndex1`=21, `EffectMiscValue1`=19198, `DmgMultiplier1`=1 WHERE `Id`=33520; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=77, `EffectImplicitTargetA1`=25, `DmgMultiplier1`=1 WHERE `Id`=33521; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=77, `EffectImplicitTargetA1`=25, `DmgMultiplier1`=1 WHERE `Id`=33524; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=4, `DmgMultiplier1`=1 WHERE `Id`=33544; +UPDATE `spell_dbc` SET `Targets`=32, `ProcChance`=101, `Effect1`=5, `Effect2`=43, `EffectImplicitTargetA1`=1, `EffectImplicitTargetA2`=15, `EffectImplicitTargetB1`=17, `EffectImplicitTargetB2`=17, `EffectRadiusIndex2`=33, `PreventionType`=1, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=33558; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `EffectDieSides1`=1, `EffectImplicitTargetA1`=17, `EffectRadiusIndex1`=16, `EffectMiscValue1`=19224, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=33567; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=22, `EffectImplicitTargetB1`=7, `EffectRadiusIndex1`=28, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=33568; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=77, `EffectImplicitTargetA1`=1, `DmgMultiplier1`=1 WHERE `Id`=33595; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=77, `EffectImplicitTargetA1`=25, `DmgMultiplier1`=1 WHERE `Id`=33609; +UPDATE `spell_dbc` SET `ProcChance`=101, `BaseLevel`=70, `SpellLevel`=70, `Effect1`=3, `EffectImplicitTargetA1`=22, `EffectImplicitTargetB1`=7, `EffectRadiusIndex1`=28, `DmgMultiplier1`=1 WHERE `Id`=33610; +UPDATE `spell_dbc` SET `ProcChance`=101, `BaseLevel`=70, `SpellLevel`=70, `Effect1`=3, `EffectImplicitTargetA1`=22, `EffectImplicitTargetB1`=7, `EffectRadiusIndex1`=28, `DmgMultiplier1`=1 WHERE `Id`=33611; +UPDATE `spell_dbc` SET `ProcChance`=101, `BaseLevel`=70, `SpellLevel`=70, `Effect1`=3, `EffectImplicitTargetA1`=22, `EffectImplicitTargetB1`=7, `EffectRadiusIndex1`=28, `DmgMultiplier1`=1 WHERE `Id`=33612; +UPDATE `spell_dbc` SET `ProcChance`=101, `BaseLevel`=70, `SpellLevel`=70, `Effect1`=3, `EffectImplicitTargetA1`=22, `EffectImplicitTargetB1`=7, `EffectRadiusIndex1`=28, `DmgMultiplier1`=1 WHERE `Id`=33613; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect2`=41, `EffectDieSides2`=1, `EffectImplicitTargetA2`=17, `EffectRadiusIndex2`=16, `EffectMiscValue2`=19224, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=33614; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect3`=41, `EffectDieSides3`=1, `EffectImplicitTargetA3`=17, `EffectRadiusIndex3`=16, `EffectMiscValue3`=19224, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=33615; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect2`=41, `EffectDieSides2`=1, `EffectImplicitTargetA2`=17, `EffectRadiusIndex2`=16, `EffectMiscValue2`=19224, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=33616; +UPDATE `spell_dbc` SET `ProcChance`=101, `BaseLevel`=70, `SpellLevel`=70, `Effect1`=3, `EffectImplicitTargetA1`=22, `EffectImplicitTargetB1`=7, `EffectRadiusIndex1`=28, `DmgMultiplier1`=1 WHERE `Id`=33621; +UPDATE `spell_dbc` SET `Dispel`=1, `Mechanic`=5, `ProcChance`=101, `BaseLevel`=8, `SpellLevel`=8, `EquippedItemSubClassMask`=-1, `Effect1`=6, `EffectDieSides1`=1, `EffectBasePoints1`=-1, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=7, `DmgClass`=1, `PreventionType`=1, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=33629; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=22, `EffectImplicitTargetB1`=7, `EffectRadiusIndex1`=10, `DmgMultiplier1`=1 WHERE `Id`=33635; +UPDATE `spell_dbc` SET `Targets`=64, `ProcChance`=101, `Effect1`=41, `EffectRadiusIndex1`=27, `EffectMiscValue1`=18946, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=33636; +UPDATE `spell_dbc` SET `Dispel`=1, `Stances`=134217728, `ProcChance`=101, `EquippedItemSubClassMask`=-1, `Effect1`=35, `EffectDieSides1`=1, `EffectBasePoints1`=-21, `EffectImplicitTargetA1`=1, `EffectRadiusIndex1`=12, `EffectApplyAuraName1`=152, `MaxTargetLevel`=100, `SpellFamilyName`=6, `SpellFamilyFlags1`=67108864, `DmgClass`=1, `PreventionType`=1, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=33639; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=77, `EffectImplicitTargetA1`=22, `EffectImplicitTargetB1`=15, `EffectRadiusIndex1`=21, `DmgMultiplier1`=1 WHERE `Id`=33645; +UPDATE `spell_dbc` SET `ProcChance`=101, `BaseLevel`=70, `SpellLevel`=70, `Effect1`=98, `Effect2`=6, `EffectDieSides1`=1, `EffectBasePoints1`=249, `EffectImplicitTargetA1`=1, `EffectImplicitTargetA2`=1, `EffectApplyAuraName2`=4, `PreventionType`=1, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=33673; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `EffectDieSides1`=1, `EffectImplicitTargetA1`=18, `EffectRadiusIndex1`=16, `EffectMiscValue1`=19300, `DmgMultiplier1`=1 WHERE `Id`=33677; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `EffectDieSides1`=1, `EffectImplicitTargetA1`=18, `EffectRadiusIndex1`=16, `EffectMiscValue1`=19301, `DmgMultiplier1`=1 WHERE `Id`=33680; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `EffectDieSides1`=1, `EffectImplicitTargetA1`=18, `EffectRadiusIndex1`=16, `EffectMiscValue1`=19302, `DmgMultiplier1`=1 WHERE `Id`=33681; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `EffectDieSides1`=1, `EffectImplicitTargetA1`=18, `EffectRadiusIndex1`=16, `EffectMiscValue1`=19303, `DmgMultiplier1`=1 WHERE `Id`=33682; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `EffectDieSides1`=1, `EffectImplicitTargetA1`=18, `EffectRadiusIndex1`=16, `EffectMiscValue1`=19304, `DmgMultiplier1`=1 WHERE `Id`=33683; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=77, `EffectImplicitTargetA1`=1, `DmgMultiplier1`=1 WHERE `Id`=33687; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `Effect2`=6, `Effect3`=6, `EffectDieSides1`=1, `EffectImplicitTargetA1`=1, `EffectImplicitTargetA2`=1, `EffectImplicitTargetA3`=1, `EffectApplyAuraName1`=26, `EffectApplyAuraName2`=25, `EffectApplyAuraName3`=23, `EffectAmplitude3`=2000, `EffectTriggerSpell3`=33716, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=33722; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectImplicitTargetA1`=22, `EffectImplicitTargetB1`=7, `EffectRadiusIndex1`=12, `EffectApplyAuraName1`=4, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=33730; +UPDATE `spell_dbc` SET `ProcFlags`=2, `ProcChance`=100, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=42, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=33734; +UPDATE `spell_dbc` SET `ProcChance`=101, `BaseLevel`=70, `SpellLevel`=70, `Effect1`=6, `EffectImplicitTargetA1`=22, `EffectImplicitTargetB1`=30, `EffectRadiusIndex1`=28, `EffectApplyAuraName1`=4, `DmgMultiplier1`=1 WHERE `Id`=33761; +UPDATE `spell_dbc` SET `ProcFlags`=2, `ProcChance`=100, `Effect1`=6, `EffectDieSides1`=1, `EffectBasePoints1`=-1, `EffectImplicitTargetA1`=56, `EffectRadiusIndex1`=12, `EffectApplyAuraName1`=4, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=33765; +UPDATE `spell_dbc` SET `ProcFlags`=2, `ProcChance`=100, `Effect1`=24, `EffectDieSides1`=1, `EffectImplicitTargetA1`=1, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=33766; +UPDATE `spell_dbc` SET `ProcFlags`=2, `ProcChance`=100, `Effect1`=24, `EffectDieSides1`=1, `EffectImplicitTargetA1`=1, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=33767; +UPDATE `spell_dbc` SET `ProcChance`=101, `BaseLevel`=70, `SpellLevel`=70, `Effect1`=6, `EffectImplicitTargetA1`=22, `EffectImplicitTargetB1`=30, `EffectRadiusIndex1`=12, `EffectApplyAuraName1`=4, `DmgMultiplier1`=1 WHERE `Id`=33769; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=1, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=33797; +UPDATE `spell_dbc` SET `ProcChance`=101, `BaseLevel`=1, `SpellLevel`=1, `EquippedItemSubClassMask`=-1, `Effect1`=29, `EffectDieSides1`=1, `EffectBasePoints1`=-1, `EffectImplicitTargetA1`=1, `EffectImplicitTargetB1`=47, `EffectRadiusIndex1`=7, `SpellFamilyName`=3, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=33801; +UPDATE `spell_dbc` SET `Dispel`=1, `Mechanic`=5, `ProcChance`=101, `BaseLevel`=8, `SpellLevel`=8, `EquippedItemSubClassMask`=-1, `Effect1`=6, `EffectDieSides1`=1, `EffectBasePoints1`=-1, `EffectImplicitTargetA1`=22, `EffectImplicitTargetB1`=30, `EffectRadiusIndex1`=11, `EffectApplyAuraName1`=7, `DmgClass`=1, `PreventionType`=1, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=33815; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=23, `EffectAmplitude1`=15000, `DmgMultiplier1`=1 WHERE `Id`=33823; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=77, `EffectImplicitTargetA1`=1, `DmgMultiplier1`=1 WHERE `Id`=33842; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=77, `EffectImplicitTargetA1`=1, `DmgMultiplier1`=1 WHERE `Id`=33843; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=77, `EffectImplicitTargetA1`=1, `DmgMultiplier1`=1 WHERE `Id`=33845; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=24, `EffectDieSides1`=1, `EffectBasePoints1`=14, `EffectImplicitTargetA1`=1, `DmgMultiplier1`=1 WHERE `Id`=33892; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=24, `EffectDieSides1`=1, `EffectBasePoints1`=14, `EffectImplicitTargetA1`=25, `DmgMultiplier1`=1 WHERE `Id`=33893; +UPDATE `spell_dbc` SET `ProcChance`=101, `BaseLevel`=20, `SpellLevel`=20, `Effect2`=6, `Effect3`=6, `EffectImplicitTargetA2`=1, `EffectImplicitTargetA3`=1, `EffectApplyAuraName2`=60, `EffectApplyAuraName3`=26, `DmgClass`=1, `PreventionType`=1, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=33897; +UPDATE `spell_dbc` SET `ProcChance`=101, `StackAmount`=3, `Effect1`=41, `Effect2`=6, `EffectDieSides1`=1, `EffectDieSides2`=1, `EffectBasePoints2`=-21, `EffectImplicitTargetA1`=18, `EffectImplicitTargetA2`=1, `EffectRadiusIndex1`=29, `EffectApplyAuraName2`=61, `EffectMiscValue1`=19418, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=33901; +UPDATE `spell_dbc` SET `ProcChance`=101, `StackAmount`=3, `Effect1`=41, `Effect2`=6, `EffectDieSides1`=1, `EffectDieSides2`=1, `EffectBasePoints2`=-31, `EffectImplicitTargetA1`=48, `EffectImplicitTargetA2`=1, `EffectRadiusIndex1`=29, `EffectApplyAuraName2`=61, `EffectMiscValue1`=19419, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=33903; +UPDATE `spell_dbc` SET `ProcChance`=101, `BaseLevel`=1, `SpellLevel`=1, `EquippedItemSubClassMask`=-1, `Effect1`=29, `EffectDieSides1`=1, `EffectBasePoints1`=-1, `EffectImplicitTargetA1`=1, `EffectImplicitTargetB1`=47, `EffectRadiusIndex1`=9, `SpellFamilyName`=3, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=33921; +UPDATE `spell_dbc` SET `Mechanic`=12, `ProcChance`=101, `Effect2`=98, `EffectDieSides2`=37, `EffectBasePoints2`=56, `EffectImplicitTargetA2`=22, `EffectImplicitTargetB2`=15, `EffectRadiusIndex2`=8, `EffectMiscValue2`=75, `DmgClass`=1, `PreventionType`=1, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=33922; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `EffectDieSides1`=1, `EffectImplicitTargetA1`=32, `EffectRadiusIndex1`=16, `EffectMiscValue1`=19427, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=33927; +UPDATE `spell_dbc` SET `ProcChance`=101, `BaseLevel`=1, `SpellLevel`=1, `Effect1`=42, `EffectDieSides1`=1, `EffectImplicitTargetA1`=32, `EffectMiscValue1`=19431, `DmgMultiplier1`=1 WHERE `Id`=33931; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=77, `EffectImplicitTargetA1`=22, `EffectImplicitTargetB1`=7, `EffectRadiusIndex1`=28, `DmgMultiplier1`=1 WHERE `Id`=33936; +UPDATE `spell_dbc` SET `Dispel`=1, `ProcChance`=101, `BaseLevel`=40, `SpellLevel`=40, `EquippedItemSubClassMask`=-1, `Effect1`=6, `EffectDieSides1`=1, `EffectBasePoints1`=19, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=23, `EffectAmplitude1`=1000, `EffectTriggerSpell1`=12744, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=33952; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=77, `EffectImplicitTargetA1`=22, `EffectImplicitTargetB1`=7, `EffectRadiusIndex1`=28, `DmgMultiplier1`=1 WHERE `Id`=34015; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=77, `EffectImplicitTargetA1`=22, `EffectImplicitTargetB1`=7, `EffectRadiusIndex1`=28, `DmgMultiplier1`=1 WHERE `Id`=34021; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=77, `EffectImplicitTargetA1`=22, `EffectImplicitTargetB1`=7, `EffectRadiusIndex1`=28, `DmgMultiplier1`=1 WHERE `Id`=34022; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=77, `EffectImplicitTargetA1`=22, `EffectImplicitTargetB1`=7, `EffectRadiusIndex1`=28, `DmgMultiplier1`=1 WHERE `Id`=34028; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=38, `EffectRadiusIndex1`=10, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=34029; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=56, `EffectMiscValue1`=18184, `DmgMultiplier1`=1 WHERE `Id`=34034; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `EffectImplicitTargetA1`=18, `EffectMiscValue1`=19480, `DmgMultiplier1`=1 WHERE `Id`=34064; +UPDATE `spell_dbc` SET `ProcChance`=101, `BaseLevel`=70, `SpellLevel`=70, `Effect1`=6, `EffectImplicitTargetA1`=22, `EffectImplicitTargetB1`=30, `EffectRadiusIndex1`=28, `EffectApplyAuraName1`=4, `DmgMultiplier1`=1 WHERE `Id`=34065; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectDieSides1`=1, `EffectBasePoints1`=14, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=47, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=34081; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=4, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=34084; +UPDATE `spell_dbc` SET `BaseLevel`=30, `SpellLevel`=30, `EquippedItemSubClassMask`=-1, `Effect1`=79, `EffectDieSides1`=1, `EffectBasePoints1`=-1, `EffectImplicitTargetA1`=25, `SpellFamilyName`=10, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=34103; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=38, `EffectRadiusIndex1`=28, `DmgMultiplier1`=1 WHERE `Id`=34116; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=23, `EffectAmplitude1`=55000, `EffectTriggerSpell1`=26264, `DmgMultiplier1`=1 WHERE `Id`=34118; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=1, `DmgMultiplier1`=1 WHERE `Id`=34122; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=77, `EffectImplicitTargetA1`=22, `EffectImplicitTargetB1`=7, `EffectRadiusIndex1`=28, `DmgMultiplier1`=1 WHERE `Id`=34124; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `EffectDieSides1`=1, `EffectImplicitTargetA1`=18, `EffectRadiusIndex1`=16, `EffectMiscValue1`=15631, `DmgMultiplier1`=1 WHERE `Id`=34125; +UPDATE `spell_dbc` SET `ProcChance`=101, `SpellLevel`=1, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=23, `EffectAmplitude1`=1000, `EffectTriggerSpell1`=18350, `DmgMultiplier1`=1 WHERE `Id`=34127; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectDieSides1`=1, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=201, `DmgMultiplier1`=1 WHERE `Id`=34134; +UPDATE `spell_dbc` SET `ProcChance`=101, `BaseLevel`=60, `SpellLevel`=60, `Effect1`=50, `EffectDieSides1`=1, `EffectImplicitTargetA1`=47, `EffectRadiusIndex1`=8, `EffectMiscValue1`=183510, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=34147; +UPDATE `spell_dbc` SET `ProcChance`=101, `BaseLevel`=60, `SpellLevel`=60, `Effect1`=50, `EffectDieSides1`=1, `EffectImplicitTargetA1`=47, `EffectRadiusIndex1`=8, `EffectMiscValue1`=183511, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=34148; +UPDATE `spell_dbc` SET `ProcChance`=101, `StackAmount`=50, `Effect1`=6, `Effect2`=6, `EffectDieSides1`=1, `EffectDieSides2`=1, `EffectBasePoints1`=-16, `EffectBasePoints2`=-26, `EffectImplicitTargetA1`=1, `EffectImplicitTargetA2`=1, `EffectApplyAuraName1`=61, `EffectApplyAuraName2`=79, `EffectMiscValue2`=127, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=34160; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=1, `EffectRadiusIndex1`=16, `DmgMultiplier1`=1 WHERE `Id`=34174; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `EffectImplicitTargetA1`=53, `EffectRadiusIndex1`=16, `EffectMiscValue1`=19577, `DmgMultiplier1`=1 WHERE `Id`=34175; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=23, `EffectAmplitude1`=30000, `DmgMultiplier1`=1 WHERE `Id`=34188; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=1, `DmgMultiplier1`=1 WHERE `Id`=34192; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=1, `DmgMultiplier1`=1 WHERE `Id`=34193; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=1, `DmgMultiplier1`=1 WHERE `Id`=34194; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=1, `DmgMultiplier1`=1 WHERE `Id`=34195; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=1, `DmgMultiplier1`=1 WHERE `Id`=34196; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=1, `DmgMultiplier1`=1 WHERE `Id`=34197; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=1, `DmgMultiplier1`=1 WHERE `Id`=34198; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=22, `EffectImplicitTargetB1`=15, `EffectRadiusIndex1`=12, `DmgMultiplier1`=1 WHERE `Id`=34220; +UPDATE `spell_dbc` SET `Mechanic`=12, `Stances`=536870912, `ProcFlags`=4, `ProcChance`=100, `ProcCharges`=1, `Effect1`=6, `EffectDieSides1`=1, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=42, `EffectTriggerSpell1`=34243, `SpellFamilyName`=8, `SpellFamilyFlags1`=1024, `DmgClass`=2, `PreventionType`=2, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=34242; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=23, `EffectAmplitude1`=2000, `EffectTriggerSpell1`=34257, `DmgMultiplier1`=1 WHERE `Id`=34255; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=22, `EffectImplicitTargetB1`=7, `EffectRadiusIndex1`=32, `DmgMultiplier1`=1 WHERE `Id`=34257; +UPDATE `spell_dbc` SET `ProcChance`=101, `BaseLevel`=70, `SpellLevel`=70, `Effect1`=6, `EffectImplicitTargetA1`=22, `EffectImplicitTargetB1`=30, `EffectRadiusIndex1`=28, `EffectApplyAuraName1`=4, `DmgMultiplier1`=1 WHERE `Id`=34265; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=38, `DmgMultiplier1`=1 WHERE `Id`=34266; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=56, `EffectImplicitTargetA1`=32, `EffectRadiusIndex1`=7, `EffectMiscValue1`=19591, `DmgMultiplier1`=1 WHERE `Id`=34327; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=56, `EffectImplicitTargetA1`=32, `EffectRadiusIndex1`=7, `EffectMiscValue1`=19605, `DmgMultiplier1`=1 WHERE `Id`=34328; +UPDATE `spell_dbc` SET `Targets`=256, `ProcChance`=101, `Effect1`=24, `DmgMultiplier1`=1 WHERE `Id`=34362; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectDieSides1`=1, `EffectBasePoints1`=99, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=87, `EffectMiscValue1`=127, `DmgClass`=1, `PreventionType`=2, `DmgMultiplier1`=1 WHERE `Id`=34364; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=26, `DmgMultiplier1`=1 WHERE `Id`=34369; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=4, `DmgMultiplier1`=1 WHERE `Id`=34377; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=4, `SpellFamilyName`=6, `SpellFamilyFlags1`=8388608, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=34405; +UPDATE `spell_dbc` SET `Targets`=32, `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=7, `EffectImplicitTargetB1`=38, `EffectRadiusIndex1`=10, `DmgMultiplier1`=1 WHERE `Id`=34408; +UPDATE `spell_dbc` SET `Targets`=32, `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=7, `EffectRadiusIndex1`=10, `DmgMultiplier1`=1 WHERE `Id`=34434; +UPDATE `spell_dbc` SET `Targets`=32, `ProcChance`=101, `Effect1`=16, `EffectImplicitTargetA1`=7, `EffectRadiusIndex1`=18, `EffectMiscValue1`=10211, `DmgMultiplier1`=1 WHERE `Id`=34443; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectDieSides1`=1, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=56, `EffectMiscValue1`=19695, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=34450; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=50, `EffectImplicitTargetA1`=32, `EffectRadiusIndex1`=16, `EffectMiscValue1`=182072, `DmgMultiplier1`=1 WHERE `Id`=34521; +UPDATE `spell_dbc` SET `Dispel`=1, `ProcChance`=101, `BaseLevel`=40, `SpellLevel`=40, `EquippedItemSubClassMask`=-1, `Effect1`=6, `EffectDieSides1`=1, `EffectRealPointsPerLevel1`=0.6, `EffectBasePoints1`=19, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=23, `EffectAmplitude1`=1000, `EffectTriggerSpell1`=34528, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=34527; +UPDATE `spell_dbc` SET `ProcChance`=101, `BaseLevel`=20, `SpellLevel`=20, `EquippedItemClass`=2, `EquippedItemSubClassMask`=262156, `Effect1`=1, `EffectImplicitTargetA1`=25, `SpellFamilyName`=9, `SpellFamilyFlags1`=1, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=34532; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=16, `Effect2`=3, `Effect3`=6, `EffectImplicitTargetA1`=22, `EffectImplicitTargetA2`=22, `EffectImplicitTargetA3`=22, `EffectImplicitTargetB1`=7, `EffectImplicitTargetB2`=7, `EffectImplicitTargetB3`=7, `EffectRadiusIndex1`=11, `EffectRadiusIndex2`=28, `EffectRadiusIndex3`=11, `EffectApplyAuraName3`=4, `EffectMiscValue1`=10231, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1, `AreaGroupId`=7 WHERE `Id`=34549; +UPDATE `spell_dbc` SET `ProcChance`=101, `BaseLevel`=1, `SpellLevel`=1, `EquippedItemSubClassMask`=-1, `Effect1`=29, `EffectDieSides1`=1, `EffectBasePoints1`=-1, `EffectImplicitTargetA1`=1, `EffectImplicitTargetB1`=44, `EffectRadiusIndex1`=7, `SpellFamilyName`=3, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=34572; +UPDATE `spell_dbc` SET `ProcChance`=101, `BaseLevel`=1, `SpellLevel`=1, `EquippedItemSubClassMask`=-1, `Effect1`=29, `EffectDieSides1`=1, `EffectBasePoints1`=-1, `EffectImplicitTargetA1`=1, `EffectImplicitTargetB1`=41, `EffectRadiusIndex1`=7, `SpellFamilyName`=3, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=34573; +UPDATE `spell_dbc` SET `ProcChance`=101, `BaseLevel`=1, `SpellLevel`=1, `EquippedItemSubClassMask`=-1, `Effect1`=29, `EffectDieSides1`=1, `EffectBasePoints1`=-1, `EffectImplicitTargetA1`=1, `EffectImplicitTargetB1`=47, `EffectRadiusIndex1`=7, `SpellFamilyName`=3, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=34575; +UPDATE `spell_dbc` SET `Stances`=134217728, `ProcChance`=101, `EquippedItemSubClassMask`=-1, `Effect1`=3, `EffectImplicitTargetA1`=38, `EffectRadiusIndex1`=12, `SpellFamilyName`=6, `SpellFamilyFlags1`=131072, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=34628; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=77, `EffectImplicitTargetA1`=38, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=34651; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=38, `EffectRadiusIndex1`=28, `DmgMultiplier1`=1 WHERE `Id`=34652; +UPDATE `spell_dbc` SET `ProcChance`=101, `StackAmount`=500, `Effect1`=6, `Effect2`=46, `EffectDieSides1`=1, `EffectBasePoints1`=-51, `EffectImplicitTargetA1`=6, `EffectApplyAuraName1`=61, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=34668; +UPDATE `spell_dbc` SET `ProcFlags`=4, `ProcChance`=100, `Effect1`=77, `EffectImplicitTargetA1`=22, `EffectImplicitTargetB1`=7, `EffectRadiusIndex1`=14, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=34689; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=22, `EffectImplicitTargetB1`=15, `EffectRadiusIndex1`=13, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=34701; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `Effect2`=6, `Effect3`=6, `EffectDieSides2`=1, `EffectDieSides3`=1, `EffectBasePoints2`=-501, `EffectBasePoints3`=499, `EffectImplicitTargetA1`=1, `EffectImplicitTargetA2`=1, `EffectImplicitTargetA3`=1, `EffectApplyAuraName1`=56, `EffectApplyAuraName2`=22, `EffectApplyAuraName3`=22, `EffectMiscValue1`=19928, `EffectMiscValue2`=32, `EffectMiscValue3`=64, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=34703; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `Effect2`=6, `Effect3`=6, `EffectDieSides2`=1, `EffectDieSides3`=1, `EffectBasePoints2`=-501, `EffectBasePoints3`=499, `EffectImplicitTargetA1`=1, `EffectImplicitTargetA2`=1, `EffectImplicitTargetA3`=1, `EffectApplyAuraName1`=56, `EffectApplyAuraName2`=22, `EffectApplyAuraName3`=22, `EffectMiscValue1`=19929, `EffectMiscValue2`=32, `EffectMiscValue3`=4, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=34704; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `Effect2`=6, `Effect3`=6, `EffectDieSides2`=1, `EffectDieSides3`=1, `EffectBasePoints2`=-501, `EffectBasePoints3`=499, `EffectImplicitTargetA1`=1, `EffectImplicitTargetA2`=1, `EffectImplicitTargetA3`=1, `EffectApplyAuraName1`=56, `EffectApplyAuraName2`=22, `EffectApplyAuraName3`=22, `EffectMiscValue1`=19930, `EffectMiscValue2`=32, `EffectMiscValue3`=16, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=34705; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=24, `EffectImplicitTargetA1`=25, `DmgMultiplier1`=1 WHERE `Id`=34706; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `Effect2`=6, `Effect3`=6, `EffectDieSides2`=1, `EffectDieSides3`=1, `EffectBasePoints2`=-501, `EffectBasePoints3`=499, `EffectImplicitTargetA1`=1, `EffectImplicitTargetA2`=1, `EffectImplicitTargetA3`=1, `EffectApplyAuraName1`=56, `EffectApplyAuraName2`=22, `EffectApplyAuraName3`=22, `EffectMiscValue1`=19931, `EffectMiscValue2`=32, `EffectMiscValue3`=8, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=34707; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=76, `EffectImplicitTargetA1`=18, `EffectMiscValue1`=184005, `DmgMultiplier1`=1 WHERE `Id`=34708; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `Effect2`=6, `Effect3`=6, `EffectDieSides2`=1, `EffectDieSides3`=1, `EffectBasePoints2`=-501, `EffectBasePoints3`=499, `EffectImplicitTargetA1`=1, `EffectImplicitTargetA2`=1, `EffectImplicitTargetA3`=1, `EffectApplyAuraName1`=56, `EffectApplyAuraName2`=22, `EffectApplyAuraName3`=22, `EffectMiscValue1`=17980, `EffectMiscValue2`=32, `EffectMiscValue3`=32, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=34710; +UPDATE `spell_dbc` SET `ProcChance`=101, `BaseLevel`=1, `SpellLevel`=1, `Effect1`=6, `EffectDieSides1`=31, `EffectBasePoints1`=-1, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=9, `DmgMultiplier1`=1 WHERE `Id`=34711; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `Effect2`=6, `Effect3`=6, `EffectDieSides1`=1, `EffectDieSides2`=1, `EffectDieSides3`=1, `EffectBasePoints1`=-71, `EffectBasePoints2`=-71, `EffectBasePoints3`=-71, `EffectImplicitTargetA1`=1, `EffectImplicitTargetA2`=1, `EffectImplicitTargetA3`=1, `EffectApplyAuraName1`=184, `EffectApplyAuraName2`=185, `EffectApplyAuraName3`=186, `EffectMiscValue3`=126, `SpellFamilyName`=9, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=34721; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectDieSides1`=1, `EffectBasePoints1`=99, `EffectImplicitTargetA1`=38, `EffectApplyAuraName1`=6, `MaxAffectedTargets`=1, `DmgMultiplier1`=1 WHERE `Id`=34726; +UPDATE `spell_dbc` SET `ProcChance`=101, `BaseLevel`=65, `SpellLevel`=65, `EquippedItemSubClassMask`=-1, `Effect1`=6, `EffectDieSides1`=1, `EffectBasePoints1`=-1, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=23, `EffectAmplitude1`=3000, `EffectTriggerSpell1`=34756, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=34755; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=38, `DmgMultiplier1`=1 WHERE `Id`=34777; +UPDATE `spell_dbc` SET `ProcChance`=101, `BaseLevel`=29, `SpellLevel`=29, `EquippedItemSubClassMask`=-1, `Effect1`=6, `EffectDieSides1`=1, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=23, `EffectAmplitude1`=5000, `EffectTriggerSpell1`=34782, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=34781; +UPDATE `spell_dbc` SET `ProcFlags`=20, `ProcChance`=30, `BaseLevel`=70, `SpellLevel`=70, `EquippedItemSubClassMask`=-1, `Effect1`=6, `EffectDieSides1`=1, `EffectBasePoints1`=-1, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=42, `EffectTriggerSpell1`=34794, `DmgClass`=1, `PreventionType`=1, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=34792; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectDieSides1`=1, `EffectBasePoints1`=-1, `EffectImplicitTargetA1`=25, `EffectApplyAuraName1`=4, `DmgMultiplier1`=1 WHERE `Id`=34805; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `EffectDieSides1`=1, `EffectImplicitTargetA1`=48, `EffectRadiusIndex1`=26, `EffectMiscValue1`=20083, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=34810; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=77, `EffectImplicitTargetA1`=25, `DmgMultiplier1`=1 WHERE `Id`=34813; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `EffectDieSides1`=1, `EffectImplicitTargetA1`=47, `EffectRadiusIndex1`=26, `EffectMiscValue1`=20078, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=34817; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `EffectDieSides1`=1, `EffectImplicitTargetA1`=41, `EffectRadiusIndex1`=26, `EffectMiscValue1`=20078, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=34818; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `EffectDieSides1`=1, `EffectImplicitTargetA1`=44, `EffectRadiusIndex1`=26, `EffectMiscValue1`=20078, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=34819; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=22, `EffectImplicitTargetB1`=15, `EffectRadiusIndex1`=10, `DmgMultiplier1`=1 WHERE `Id`=34822; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=39, `EffectMiscValue1`=127, `DmgMultiplier1`=1 WHERE `Id`=34825; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=25, `DmgMultiplier1`=1 WHERE `Id`=34843; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `Effect2`=114, `EffectImplicitTargetA1`=22, `EffectImplicitTargetA2`=22, `EffectImplicitTargetB1`=7, `EffectImplicitTargetB2`=7, `EffectRadiusIndex1`=10, `EffectRadiusIndex2`=10, `EffectApplyAuraName1`=11, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=34853; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectDieSides1`=1, `EffectBasePoints1`=-1, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=56, `EffectMiscValue1`=21799, `DmgMultiplier1`=1 WHERE `Id`=34876; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectDieSides1`=1, `EffectImplicitTargetA1`=25, `EffectApplyAuraName1`=23, `EffectAmplitude1`=1000, `EffectTriggerSpell1`=34877, `DmgMultiplier1`=1 WHERE `Id`=34878; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=63, `EffectDieSides1`=1, `EffectBasePoints1`=9, `EffectImplicitTargetA1`=22, `EffectImplicitTargetB1`=7, `EffectRadiusIndex1`=23, `DmgMultiplier1`=1 WHERE `Id`=34884; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=1, `DmgMultiplier1`=1 WHERE `Id`=34901; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=63, `EffectDieSides1`=1, `EffectBasePoints1`=9999, `EffectImplicitTargetA1`=25, `DmgMultiplier1`=1 WHERE `Id`=34915; +UPDATE `spell_dbc` SET `ProcFlags`=20, `ProcChance`=100, `BaseLevel`=1, `SpellLevel`=1, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=42, `EffectTriggerSpell1`=34929, `DmgClass`=1, `PreventionType`=2, `DmgMultiplier1`=1 WHERE `Id`=34928; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=23, `EffectAmplitude1`=2000, `DmgMultiplier1`=1 WHERE `Id`=34966; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=25, `DmgMultiplier1`=1 WHERE `Id`=34989; +UPDATE `spell_dbc` SET `Targets`=32, `ProcChance`=101, `Effect1`=16, `EffectImplicitTargetA1`=7, `EffectRadiusIndex1`=18, `EffectMiscValue1`=10299, `DmgMultiplier1`=1 WHERE `Id`=34993; +UPDATE `spell_dbc` SET `Targets`=32, `ProcChance`=101, `Effect1`=16, `EffectImplicitTargetA1`=7, `EffectRadiusIndex1`=18, `EffectMiscValue1`=10211, `DmgMultiplier1`=1 WHERE `Id`=34994; +UPDATE `spell_dbc` SET `AuraInterruptFlags`=1703936, `ProcChance`=101, `Effect1`=86, `EffectDieSides1`=1, `EffectBasePoints1`=-1, `EffectImplicitTargetA1`=40, `EffectMiscValue1`=15, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=34997; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=22, `EffectImplicitTargetB1`=30, `EffectRadiusIndex1`=31, `DmgMultiplier1`=1 WHERE `Id`=35006; +UPDATE `spell_dbc` SET `ProcChance`=101, `BaseLevel`=20, `SpellLevel`=20, `EquippedItemSubClassMask`=-1, `Effect1`=98, `EffectDieSides1`=1, `EffectBasePoints1`=59, `EffectImplicitTargetA1`=22, `EffectImplicitTargetB1`=30, `EffectRadiusIndex1`=13, `EffectMiscValue1`=60, `DmgClass`=1, `PreventionType`=1, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=35019; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=1, `DmgMultiplier1`=1 WHERE `Id`=35023; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=5, `EffectDieSides1`=1, `EffectImplicitTargetA1`=1, `EffectImplicitTargetB1`=47, `EffectRadiusIndex1`=7, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=35051; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=77, `EffectImplicitTargetA1`=22, `EffectImplicitTargetB1`=7, `EffectRadiusIndex1`=28, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=35073; +UPDATE `spell_dbc` SET `Dispel`=1, `ProcFlags`=664232, `ProcChance`=100, `ProcCharges`=1, `BaseLevel`=1, `SpellLevel`=1, `Effect1`=6, `EffectDieSides1`=1, `EffectBasePoints1`=-1, `EffectImplicitTargetA1`=22, `EffectImplicitTargetB1`=56, `EffectRadiusIndex1`=9, `EffectApplyAuraName1`=4, `SpellFamilyName`=6, `SpellFamilyFlags2`=32, `DmgMultiplier1`=1, `DmgMultiplier3`=1 WHERE `Id`=35094; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectImplicitTargetA1`=22, `EffectImplicitTargetB1`=7, `EffectRadiusIndex1`=28, `EffectApplyAuraName1`=4, `DmgMultiplier1`=1 WHERE `Id`=35119; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `EffectImplicitTargetA1`=47, `EffectRadiusIndex1`=9, `EffectMiscValue1`=20392, `DmgMultiplier1`=1 WHERE `Id`=35127; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `EffectImplicitTargetA1`=41, `EffectRadiusIndex1`=15, `EffectMiscValue1`=19692, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=35128; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `EffectImplicitTargetA1`=44, `EffectRadiusIndex1`=15, `EffectMiscValue1`=19692, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=35130; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=23, `EffectAmplitude1`=1000, `EffectTriggerSpell1`=30023, `MaxAffectedTargets`=1, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=35134; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `EffectImplicitTargetA1`=32, `EffectRadiusIndex1`=15, `EffectMiscValue1`=20396, `DmgMultiplier1`=1 WHERE `Id`=35136; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=77, `EffectImplicitTargetA1`=38, `DmgMultiplier1`=1 WHERE `Id`=35138; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `EffectDieSides1`=1, `EffectImplicitTargetA1`=32, `EffectRadiusIndex1`=16, `EffectMiscValue1`=20399, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=35142; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=23, `EffectAmplitude1`=5000, `DmgMultiplier1`=1 WHERE `Id`=35143; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `EffectDieSides1`=1, `EffectImplicitTargetA1`=32, `EffectRadiusIndex1`=16, `EffectMiscValue1`=20402, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=35145; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `EffectDieSides1`=1, `EffectImplicitTargetA1`=32, `EffectRadiusIndex1`=16, `EffectMiscValue1`=20403, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=35146; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=23, `EffectAmplitude1`=2000, `EffectTriggerSpell1`=35151, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=35148; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `EffectDieSides1`=1, `EffectImplicitTargetA1`=41, `EffectRadiusIndex1`=13, `EffectMiscValue1`=20405, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=35153; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=105, `DmgMultiplier1`=1 WHERE `Id`=35154; +UPDATE `spell_dbc` SET `ProcChance`=101, `BaseLevel`=1, `SpellLevel`=1, `EquippedItemSubClassMask`=-1, `Effect1`=3, `EffectImplicitTargetA1`=38, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=35171; +UPDATE `spell_dbc` SET `ProcChance`=101, `BaseLevel`=70, `SpellLevel`=70, `EquippedItemSubClassMask`=-1, `Effect1`=6, `EffectDieSides1`=1, `EffectBasePoints1`=-1, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=23, `EffectAmplitude1`=40000, `EffectTriggerSpell1`=35159, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=35173; +UPDATE `spell_dbc` SET `ProcChance`=101, `BaseLevel`=70, `SpellLevel`=70, `EquippedItemSubClassMask`=-1, `Effect1`=6, `EffectDieSides1`=1, `EffectBasePoints1`=-1, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=23, `EffectAmplitude1`=40000, `EffectTriggerSpell1`=35158, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=35174; +UPDATE `spell_dbc` SET `Targets`=32, `ProcChance`=101, `Effect1`=16, `EffectImplicitTargetA1`=7, `EffectRadiusIndex1`=32, `EffectMiscValue1`=10198, `DmgMultiplier1`=1 WHERE `Id`=35208; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=22, `EffectImplicitTargetB1`=7, `EffectRadiusIndex1`=10, `DmgMultiplier1`=1 WHERE `Id`=35210; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=16, `EffectImplicitTargetA1`=25, `EffectMiscValue1`=10344, `DmgMultiplier1`=1 WHERE `Id`=35237; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=77, `EffectImplicitTargetA1`=25, `DmgMultiplier1`=1 WHERE `Id`=35241; +UPDATE `spell_dbc` SET `ProcChance`=101, `BaseLevel`=63, `SpellLevel`=63, `Effect1`=41, `EffectDieSides1`=1, `EffectImplicitTargetA1`=41, `EffectRadiusIndex1`=8, `EffectMiscValue1`=20479, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=35256; +UPDATE `spell_dbc` SET `ProcFlags`=20, `ProcChance`=100, `BaseLevel`=70, `SpellLevel`=70, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=42, `EffectTriggerSpell1`=35263, `DmgClass`=1, `PreventionType`=1, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=35264; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=22, `EffectImplicitTargetB1`=15, `EffectRadiusIndex1`=12, `DmgClass`=1, `PreventionType`=1, `DmgMultiplier1`=1 WHERE `Id`=35274; +UPDATE `spell_dbc` SET `ProcChance`=101, `BaseLevel`=70, `SpellLevel`=70, `Effect1`=1, `EffectImplicitTargetA1`=22, `EffectImplicitTargetB1`=30, `EffectRadiusIndex1`=28, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=35277; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=23, `EffectAmplitude1`=1000, `EffectTriggerSpell1`=35278, `DmgMultiplier1`=1 WHERE `Id`=35281; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=77, `EffectImplicitTargetA1`=1, `DmgMultiplier1`=1 WHERE `Id`=35284; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=26, `DmgMultiplier1`=1 WHERE `Id`=35340; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectImplicitTargetA1`=22, `EffectImplicitTargetB1`=7, `EffectRadiusIndex1`=28, `EffectApplyAuraName1`=4, `DmgMultiplier1`=1 WHERE `Id`=35343; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `Effect2`=46, `EffectDieSides1`=1, `EffectBasePoints1`=99999, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=18, `EffectMiscValue1`=4, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=35344; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=77, `EffectImplicitTargetA1`=22, `EffectImplicitTargetB1`=15, `EffectRadiusIndex1`=28, `DmgMultiplier1`=1 WHERE `Id`=35366; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=56, `EffectMiscValue1`=20562, `DmgMultiplier1`=1 WHERE `Id`=35368; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=76, `EffectImplicitTargetA1`=18, `EffectMiscValue1`=184445, `DmgMultiplier1`=1 WHERE `Id`=35374; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=56, `EffectMiscValue1`=20559, `DmgMultiplier1`=1 WHERE `Id`=35375; +UPDATE `spell_dbc` SET `Targets`=256, `ProcChance`=101, `Effect1`=24, `DmgMultiplier1`=1 WHERE `Id`=35378; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectDieSides1`=1, `EffectImplicitTargetA1`=21, `EffectApplyAuraName1`=23, `EffectAmplitude1`=1000, `EffectTriggerSpell1`=35381, `DmgMultiplier1`=1 WHERE `Id`=35379; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=23, `EffectAmplitude1`=120000, `EffectTriggerSpell1`=26264, `DmgMultiplier1`=1 WHERE `Id`=35384; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=25, `DmgMultiplier1`=1 WHERE `Id`=35393; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=25, `DmgMultiplier1`=1 WHERE `Id`=35398; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=38, `DmgMultiplier1`=1 WHERE `Id`=35414; +UPDATE `spell_dbc` SET `Targets`=64, `ProcChance`=101, `Effect1`=41, `EffectRadiusIndex1`=9, `EffectMiscValue1`=19759, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=35430; +UPDATE `spell_dbc` SET `Stances`=134217728, `ProcChance`=101, `MaxLevel`=62, `BaseLevel`=62, `SpellLevel`=62, `Effect1`=3, `EffectMechanic2`=12, `EffectImplicitTargetA1`=1, `EffectRadiusIndex1`=10, `SpellFamilyName`=6, `SpellFamilyFlags1`=8388608, `DmgClass`=1, `PreventionType`=1, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=35463; +UPDATE `spell_dbc` SET `ProcChance`=101, `EquippedItemClass`=2, `EquippedItemSubClassMask`=2096639, `Effect1`=25, `Effect2`=60, `DmgClass`=1, `PreventionType`=1, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=35467; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=23, `EffectAmplitude1`=3000, `EffectTriggerSpell1`=35487, `DmgMultiplier1`=1 WHERE `Id`=35469; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=4, `DmgMultiplier1`=1 WHERE `Id`=35479; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectImplicitTargetA1`=22, `EffectImplicitTargetB1`=7, `EffectRadiusIndex1`=28, `EffectApplyAuraName1`=4, `DmgMultiplier1`=1 WHERE `Id`=35484; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `Effect2`=6, `Effect3`=6, `EffectImplicitTargetA1`=1, `EffectImplicitTargetA2`=1, `EffectImplicitTargetA3`=1, `EffectApplyAuraName1`=112, `EffectApplyAuraName2`=112, `EffectApplyAuraName3`=112, `EffectMiscValue1`=5261, `EffectMiscValue2`=5262, `EffectMiscValue3`=5273, `SpellFamilyName`=7, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=35485; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=112, `EffectMiscValue1`=5266, `SpellFamilyName`=11, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=35496; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectImplicitTargetA1`=38, `EffectApplyAuraName1`=4, `DmgMultiplier1`=1 WHERE `Id`=35503; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=61, `EffectMiscValue1`=13292, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=35505; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `Effect2`=6, `Effect3`=6, `EffectImplicitTargetA1`=1, `EffectImplicitTargetA2`=1, `EffectImplicitTargetA3`=1, `EffectApplyAuraName1`=112, `EffectApplyAuraName2`=112, `EffectApplyAuraName3`=112, `EffectMiscValue1`=5272, `EffectMiscValue2`=5271, `EffectMiscValue3`=5804, `SpellFamilyName`=7, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=35586; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=22, `EffectImplicitTargetB1`=15, `EffectRadiusIndex1`=33, `PreventionType`=1, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=35642; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `Effect2`=6, `Effect3`=6, `EffectImplicitTargetA1`=1, `EffectImplicitTargetA2`=1, `EffectImplicitTargetA3`=1, `EffectApplyAuraName1`=29, `EffectApplyAuraName2`=99, `EffectApplyAuraName3`=13, `EffectMiscValue1`=2, `EffectMiscValue3`=126, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=35657; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `Effect2`=6, `Effect3`=6, `EffectImplicitTargetA1`=1, `EffectImplicitTargetA2`=1, `EffectImplicitTargetA3`=1, `EffectApplyAuraName1`=29, `EffectApplyAuraName2`=22, `EffectApplyAuraName3`=22, `EffectMiscValue1`=3, `EffectMiscValue2`=1, `EffectMiscValue3`=4, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=35658; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `Effect2`=6, `Effect3`=6, `EffectImplicitTargetA1`=1, `EffectImplicitTargetA2`=1, `EffectImplicitTargetA3`=1, `EffectApplyAuraName1`=22, `EffectApplyAuraName2`=22, `EffectApplyAuraName3`=22, `EffectMiscValue1`=16, `EffectMiscValue2`=64, `EffectMiscValue3`=8, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=35659; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=22, `EffectMiscValue1`=32, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=35660; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `Effect2`=6, `Effect3`=6, `EffectImplicitTargetA1`=1, `EffectImplicitTargetA2`=1, `EffectImplicitTargetA3`=1, `EffectApplyAuraName1`=29, `EffectApplyAuraName2`=99, `EffectApplyAuraName3`=13, `EffectMiscValue1`=2, `EffectMiscValue3`=126, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=35661; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `Effect2`=6, `Effect3`=6, `EffectImplicitTargetA1`=1, `EffectImplicitTargetA2`=1, `EffectImplicitTargetA3`=1, `EffectApplyAuraName1`=29, `EffectApplyAuraName2`=22, `EffectApplyAuraName3`=22, `EffectMiscValue1`=3, `EffectMiscValue2`=1, `EffectMiscValue3`=4, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=35662; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `Effect2`=6, `Effect3`=6, `EffectImplicitTargetA1`=1, `EffectImplicitTargetA2`=1, `EffectImplicitTargetA3`=1, `EffectApplyAuraName1`=22, `EffectApplyAuraName2`=22, `EffectApplyAuraName3`=22, `EffectMiscValue1`=16, `EffectMiscValue2`=64, `EffectMiscValue3`=8, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=35663; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=22, `EffectMiscValue1`=32, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=35664; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `Effect2`=6, `Effect3`=6, `EffectImplicitTargetA1`=1, `EffectImplicitTargetA2`=1, `EffectImplicitTargetA3`=1, `EffectApplyAuraName1`=4, `EffectApplyAuraName2`=99, `EffectApplyAuraName3`=13, `EffectMiscValue3`=126, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=35665; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `Effect2`=6, `Effect3`=6, `EffectImplicitTargetA1`=1, `EffectImplicitTargetA2`=1, `EffectImplicitTargetA3`=1, `EffectApplyAuraName1`=29, `EffectApplyAuraName2`=22, `EffectApplyAuraName3`=22, `EffectMiscValue1`=3, `EffectMiscValue2`=1, `EffectMiscValue3`=4, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=35666; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `Effect2`=6, `Effect3`=6, `EffectImplicitTargetA1`=1, `EffectImplicitTargetA2`=1, `EffectImplicitTargetA3`=1, `EffectApplyAuraName1`=22, `EffectApplyAuraName2`=22, `EffectApplyAuraName3`=22, `EffectMiscValue1`=16, `EffectMiscValue2`=64, `EffectMiscValue3`=8, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=35667; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=22, `EffectMiscValue1`=32, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=35668; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `Effect2`=6, `Effect3`=6, `EffectImplicitTargetA1`=1, `EffectImplicitTargetA2`=1, `EffectImplicitTargetA3`=1, `EffectApplyAuraName1`=29, `EffectApplyAuraName2`=99, `EffectApplyAuraName3`=13, `EffectMiscValue1`=2, `EffectMiscValue3`=126, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=35669; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `Effect2`=6, `Effect3`=6, `EffectImplicitTargetA1`=1, `EffectImplicitTargetA2`=1, `EffectImplicitTargetA3`=1, `EffectApplyAuraName1`=29, `EffectApplyAuraName2`=22, `EffectApplyAuraName3`=22, `EffectMiscValue1`=3, `EffectMiscValue2`=1, `EffectMiscValue3`=4, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=35670; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `Effect2`=6, `Effect3`=6, `EffectImplicitTargetA1`=1, `EffectImplicitTargetA2`=1, `EffectImplicitTargetA3`=1, `EffectApplyAuraName1`=22, `EffectApplyAuraName2`=22, `EffectApplyAuraName3`=22, `EffectMiscValue1`=16, `EffectMiscValue2`=64, `EffectMiscValue3`=8, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=35671; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=22, `EffectMiscValue1`=32, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=35672; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `Effect2`=6, `Effect3`=6, `EffectImplicitTargetA1`=1, `EffectImplicitTargetA2`=1, `EffectImplicitTargetA3`=1, `EffectApplyAuraName1`=29, `EffectApplyAuraName2`=99, `EffectApplyAuraName3`=13, `EffectMiscValue1`=2, `EffectMiscValue3`=126, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=35674; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `Effect2`=6, `Effect3`=6, `EffectImplicitTargetA1`=1, `EffectImplicitTargetA2`=1, `EffectImplicitTargetA3`=1, `EffectApplyAuraName1`=22, `EffectApplyAuraName2`=22, `EffectApplyAuraName3`=22, `EffectMiscValue1`=4, `EffectMiscValue2`=16, `EffectMiscValue3`=8, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=35675; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `Effect2`=6, `Effect3`=6, `EffectImplicitTargetA1`=1, `EffectImplicitTargetA2`=1, `EffectImplicitTargetA3`=1, `EffectApplyAuraName1`=22, `EffectApplyAuraName2`=22, `EffectApplyAuraName3`=22, `EffectMiscValue1`=32, `EffectMiscValue2`=64, `EffectMiscValue3`=1, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=35676; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=77, `EffectImplicitTargetA1`=1, `DmgMultiplier1`=1 WHERE `Id`=35677; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectDieSides1`=1, `EffectImplicitTargetA1`=21, `EffectApplyAuraName1`=23, `EffectAmplitude1`=1000, `EffectTriggerSpell1`=35679, `DmgMultiplier1`=1 WHERE `Id`=35678; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=16, `EffectImplicitTargetA1`=25, `EffectMiscValue1`=10406, `DmgMultiplier1`=1 WHERE `Id`=35680; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `EffectDieSides1`=3, `EffectBasePoints1`=7, `EffectImplicitTargetA1`=18, `EffectRadiusIndex1`=7, `EffectMiscValue1`=20806, `DmgMultiplier1`=1 WHERE `Id`=35687; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `EffectDieSides1`=3, `EffectBasePoints1`=7, `EffectImplicitTargetA1`=18, `EffectRadiusIndex1`=7, `EffectMiscValue1`=20805, `DmgMultiplier1`=1 WHERE `Id`=35688; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=22, `EffectImplicitTargetB1`=7, `EffectRadiusIndex1`=28, `DmgMultiplier1`=1 WHERE `Id`=35689; +UPDATE `spell_dbc` SET `Targets`=256, `ProcChance`=101, `Effect1`=24, `DmgMultiplier1`=1 WHERE `Id`=35690; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=42, `EffectImplicitTargetA1`=42, `EffectRadiusIndex1`=26, `EffectMiscValue1`=20710, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=35721; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=42, `EffectImplicitTargetA1`=43, `EffectRadiusIndex1`=26, `EffectMiscValue1`=20710, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=35722; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=42, `EffectImplicitTargetA1`=48, `EffectRadiusIndex1`=26, `EffectMiscValue1`=20710, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=35723; +UPDATE `spell_dbc` SET `ProcChance`=101, `BaseLevel`=66, `SpellLevel`=66, `Effect1`=6, `EffectDieSides1`=1, `EffectBasePoints1`=-1, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=39, `EffectMiscValue1`=126, `SpellFamilyName`=8, `SpellFamilyFlags1`=1073741824, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=35729; +UPDATE `spell_dbc` SET `StancesNot`=1073742079, `ProcChance`=101, `Effect1`=123, `EffectImplicitTargetA1`=25, `EffectMiscValue1`=628, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=35731; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `EffectImplicitTargetA1`=48, `EffectRadiusIndex1`=16, `EffectMiscValue1`=20845, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=35737; +UPDATE `spell_dbc` SET `Targets`=32, `ProcChance`=101, `Effect1`=16, `EffectImplicitTargetA1`=7, `EffectRadiusIndex1`=31, `EffectMiscValue1`=10409, `DmgMultiplier1`=1 WHERE `Id`=35762; +UPDATE `spell_dbc` SET `ProcChance`=101, `BaseLevel`=70, `SpellLevel`=70, `Effect1`=1, `EffectImplicitTargetA1`=22, `EffectImplicitTargetB1`=7, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=35765; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectDieSides1`=1, `EffectBasePoints1`=99, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=10, `EffectMiscValue1`=127, `DmgMultiplier1`=1 WHERE `Id`=35773; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=77, `EffectImplicitTargetA1`=22, `EffectImplicitTargetB1`=15, `EffectRadiusIndex1`=12, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=35852; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `EffectDieSides1`=1, `EffectImplicitTargetA1`=47, `EffectRadiusIndex1`=13, `EffectMiscValue1`=21002, `DmgMultiplier1`=1 WHERE `Id`=35861; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `EffectDieSides1`=1, `EffectImplicitTargetA1`=50, `EffectRadiusIndex1`=13, `EffectMiscValue1`=21002, `DmgMultiplier1`=1 WHERE `Id`=35862; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `EffectDieSides1`=1, `EffectImplicitTargetA1`=49, `EffectRadiusIndex1`=13, `EffectMiscValue1`=21002, `DmgMultiplier1`=1 WHERE `Id`=35863; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `EffectDieSides1`=1, `EffectImplicitTargetA1`=48, `EffectRadiusIndex1`=13, `EffectMiscValue1`=21002, `DmgMultiplier1`=1 WHERE `Id`=35864; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=77, `EffectImplicitTargetA1`=22, `EffectImplicitTargetB1`=15, `EffectRadiusIndex1`=28, `DmgClass`=1, `PreventionType`=1, `DmgMultiplier1`=1 WHERE `Id`=35880; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=25, `EffectRadiusIndex1`=12, `DmgClass`=1, `PreventionType`=1, `DmgMultiplier1`=1 WHERE `Id`=35881; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=77, `EffectImplicitTargetA1`=1, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=35883; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=23, `EffectAmplitude1`=1000, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=35884; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=23, `EffectAmplitude1`=1000, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=35885; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `EffectDieSides1`=1, `EffectImplicitTargetA1`=44, `EffectRadiusIndex1`=13, `EffectMiscValue1`=20405, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=35904; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `EffectDieSides1`=1, `EffectImplicitTargetA1`=42, `EffectRadiusIndex1`=13, `EffectMiscValue1`=20405, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=35905; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `EffectDieSides1`=1, `EffectImplicitTargetA1`=43, `EffectRadiusIndex1`=13, `EffectMiscValue1`=20405, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=35906; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=1, `EffectRadiusIndex1`=16, `DmgMultiplier1`=1 WHERE `Id`=35934; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `EffectDieSides1`=1, `EffectImplicitTargetA1`=32, `EffectRadiusIndex1`=13, `EffectMiscValue1`=21044, `DmgMultiplier1`=1 WHERE `Id`=35937; +UPDATE `spell_dbc` SET `AuraInterruptFlags`=524288, `ProcChance`=101, `Effect1`=98, `EffectDieSides1`=101, `EffectBasePoints1`=399, `EffectImplicitTargetA1`=1, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=35938; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=56, `EffectMiscValue1`=21035, `DmgMultiplier1`=1 WHERE `Id`=35939; +UPDATE `spell_dbc` SET `ProcChance`=101, `BaseLevel`=70, `SpellLevel`=70, `Effect1`=3, `EffectMechanic2`=11, `EffectImplicitTargetA1`=1, `EffectRadiusIndex1`=16, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=36014; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=77, `EffectImplicitTargetA1`=1, `DmgMultiplier1`=1 WHERE `Id`=36019; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=38, `EffectRadiusIndex1`=8, `DmgMultiplier1`=1 WHERE `Id`=36024; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `EffectImplicitTargetA1`=18, `EffectMiscValue1`=21073, `DmgMultiplier1`=1 WHERE `Id`=36026; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `EffectImplicitTargetA1`=47, `EffectRadiusIndex1`=9, `EffectMiscValue1`=20796, `DmgMultiplier1`=1 WHERE `Id`=36036; +UPDATE `spell_dbc` SET `ProcChance`=101, `StackAmount`=3, `Effect1`=41, `Effect2`=6, `Effect3`=6, `EffectDieSides1`=1, `EffectDieSides2`=1, `EffectDieSides3`=1, `EffectBasePoints2`=-31, `EffectBasePoints3`=-21, `EffectImplicitTargetA1`=48, `EffectImplicitTargetA2`=1, `EffectImplicitTargetA3`=1, `EffectRadiusIndex1`=29, `EffectApplyAuraName2`=61, `EffectApplyAuraName3`=79, `EffectMiscValue1`=21077, `EffectMiscValue3`=127, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=36042; +UPDATE `spell_dbc` SET `ProcChance`=101, `StackAmount`=3, `Effect1`=41, `Effect2`=6, `Effect3`=6, `EffectDieSides1`=1, `EffectDieSides2`=1, `EffectDieSides3`=1, `EffectBasePoints2`=-31, `EffectBasePoints3`=-21, `EffectImplicitTargetA1`=43, `EffectImplicitTargetA2`=1, `EffectImplicitTargetA3`=1, `EffectRadiusIndex1`=29, `EffectApplyAuraName2`=61, `EffectApplyAuraName3`=79, `EffectMiscValue1`=21077, `EffectMiscValue3`=127, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=36043; +UPDATE `spell_dbc` SET `ProcChance`=101, `StackAmount`=3, `Effect1`=41, `Effect2`=6, `Effect3`=6, `EffectDieSides1`=1, `EffectDieSides2`=1, `EffectDieSides3`=1, `EffectBasePoints2`=-31, `EffectBasePoints3`=-21, `EffectImplicitTargetA1`=42, `EffectImplicitTargetA2`=1, `EffectImplicitTargetA3`=1, `EffectRadiusIndex1`=29, `EffectApplyAuraName2`=61, `EffectApplyAuraName3`=79, `EffectMiscValue1`=21077, `EffectMiscValue3`=127, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=36044; +UPDATE `spell_dbc` SET `ProcChance`=101, `StackAmount`=3, `Effect1`=41, `Effect2`=6, `Effect3`=6, `EffectDieSides1`=1, `EffectDieSides2`=1, `EffectDieSides3`=1, `EffectBasePoints2`=-31, `EffectBasePoints3`=-21, `EffectImplicitTargetA1`=48, `EffectImplicitTargetA2`=1, `EffectImplicitTargetA3`=1, `EffectRadiusIndex1`=29, `EffectApplyAuraName2`=61, `EffectApplyAuraName3`=79, `EffectMiscValue1`=21078, `EffectMiscValue3`=127, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=36045; +UPDATE `spell_dbc` SET `ProcChance`=101, `StackAmount`=3, `Effect1`=41, `Effect2`=6, `Effect3`=6, `EffectDieSides1`=1, `EffectDieSides2`=1, `EffectDieSides3`=1, `EffectBasePoints2`=-31, `EffectBasePoints3`=-21, `EffectImplicitTargetA1`=43, `EffectImplicitTargetA2`=1, `EffectImplicitTargetA3`=1, `EffectRadiusIndex1`=29, `EffectApplyAuraName2`=61, `EffectApplyAuraName3`=79, `EffectMiscValue1`=21078, `EffectMiscValue3`=127, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=36046; +UPDATE `spell_dbc` SET `ProcChance`=101, `StackAmount`=3, `Effect1`=41, `Effect2`=6, `Effect3`=6, `EffectDieSides1`=1, `EffectDieSides2`=1, `EffectDieSides3`=1, `EffectBasePoints2`=-31, `EffectBasePoints3`=-21, `EffectImplicitTargetA1`=42, `EffectImplicitTargetA2`=1, `EffectImplicitTargetA3`=1, `EffectRadiusIndex1`=29, `EffectApplyAuraName2`=61, `EffectApplyAuraName3`=79, `EffectMiscValue1`=21078, `EffectMiscValue3`=127, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=36047; +UPDATE `spell_dbc` SET `ProcChance`=101, `StackAmount`=3, `Effect1`=41, `Effect2`=6, `Effect3`=6, `EffectDieSides1`=1, `EffectDieSides2`=1, `EffectDieSides3`=1, `EffectBasePoints2`=-31, `EffectBasePoints3`=-21, `EffectImplicitTargetA1`=48, `EffectImplicitTargetA2`=1, `EffectImplicitTargetA3`=1, `EffectRadiusIndex1`=29, `EffectApplyAuraName2`=61, `EffectApplyAuraName3`=79, `EffectMiscValue1`=21079, `EffectMiscValue3`=127, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=36048; +UPDATE `spell_dbc` SET `ProcChance`=101, `StackAmount`=3, `Effect1`=41, `Effect2`=6, `Effect3`=6, `EffectDieSides1`=1, `EffectDieSides2`=1, `EffectDieSides3`=1, `EffectBasePoints2`=-31, `EffectBasePoints3`=-21, `EffectImplicitTargetA1`=43, `EffectImplicitTargetA2`=1, `EffectImplicitTargetA3`=1, `EffectRadiusIndex1`=29, `EffectApplyAuraName2`=61, `EffectApplyAuraName3`=79, `EffectMiscValue1`=21079, `EffectMiscValue3`=127, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=36049; +UPDATE `spell_dbc` SET `ProcChance`=101, `StackAmount`=3, `Effect1`=41, `Effect2`=6, `Effect3`=6, `EffectDieSides1`=1, `EffectDieSides2`=1, `EffectDieSides3`=1, `EffectBasePoints2`=-31, `EffectBasePoints3`=-21, `EffectImplicitTargetA1`=42, `EffectImplicitTargetA2`=1, `EffectImplicitTargetA3`=1, `EffectRadiusIndex1`=29, `EffectApplyAuraName2`=61, `EffectApplyAuraName3`=79, `EffectMiscValue1`=21079, `EffectMiscValue3`=127, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=36050; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectDieSides1`=1, `EffectBasePoints1`=99, `EffectImplicitTargetA1`=22, `EffectImplicitTargetB1`=7, `EffectRadiusIndex1`=20, `EffectApplyAuraName1`=177, `MaxAffectedTargets`=1, `DmgMultiplier1`=1 WHERE `Id`=36053; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=38, `DmgMultiplier1`=1 WHERE `Id`=36063; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=22, `EffectImplicitTargetB1`=7, `EffectRadiusIndex1`=28, `DmgMultiplier1`=1 WHERE `Id`=36087; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectImplicitTargetA1`=27, `EffectApplyAuraName1`=23, `EffectAmplitude1`=1000, `EffectTriggerSpell1`=36108, `DmgMultiplier1`=1 WHERE `Id`=36106; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `EffectImplicitTargetA1`=18, `EffectMiscValue1`=21097, `DmgMultiplier1`=1 WHERE `Id`=36112; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectImplicitTargetA1`=27, `EffectApplyAuraName1`=23, `EffectAmplitude1`=1000, `EffectTriggerSpell1`=36117, `DmgMultiplier1`=1 WHERE `Id`=36116; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `EffectImplicitTargetA1`=18, `EffectMiscValue1`=21109, `DmgMultiplier1`=1 WHERE `Id`=36168; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectImplicitTargetA1`=27, `EffectApplyAuraName1`=23, `EffectAmplitude1`=1000, `EffectTriggerSpell1`=36171, `DmgMultiplier1`=1 WHERE `Id`=36172; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `EffectImplicitTargetA1`=18, `EffectMiscValue1`=21116, `DmgMultiplier1`=1 WHERE `Id`=36180; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectImplicitTargetA1`=27, `EffectApplyAuraName1`=23, `EffectAmplitude1`=1000, `EffectTriggerSpell1`=36182, `DmgMultiplier1`=1 WHERE `Id`=36183; +UPDATE `spell_dbc` SET `ProcChance`=101, `StackAmount`=99, `Effect1`=6, `Effect2`=6, `EffectDieSides1`=1, `EffectDieSides2`=1, `EffectBasePoints1`=19, `EffectBasePoints2`=9, `EffectImplicitTargetA1`=1, `EffectImplicitTargetA2`=1, `EffectApplyAuraName1`=61, `EffectApplyAuraName2`=31, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=36184; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `Effect2`=6, `Effect3`=6, `EffectImplicitTargetA1`=1, `EffectImplicitTargetA2`=1, `EffectImplicitTargetA3`=1, `EffectApplyAuraName1`=29, `EffectApplyAuraName2`=99, `EffectApplyAuraName3`=13, `EffectMiscValue1`=2, `EffectMiscValue3`=126, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=36186; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `Effect2`=6, `Effect3`=6, `EffectImplicitTargetA1`=1, `EffectImplicitTargetA2`=1, `EffectImplicitTargetA3`=1, `EffectApplyAuraName1`=29, `EffectApplyAuraName2`=22, `EffectApplyAuraName3`=22, `EffectMiscValue1`=3, `EffectMiscValue2`=1, `EffectMiscValue3`=4, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=36188; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `Effect2`=6, `Effect3`=6, `EffectImplicitTargetA1`=1, `EffectImplicitTargetA2`=1, `EffectImplicitTargetA3`=1, `EffectApplyAuraName1`=22, `EffectApplyAuraName2`=22, `EffectApplyAuraName3`=22, `EffectMiscValue1`=16, `EffectMiscValue2`=64, `EffectMiscValue3`=8, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=36189; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `Effect2`=6, `EffectDieSides2`=1, `EffectBasePoints2`=-1, `EffectImplicitTargetA1`=1, `EffectImplicitTargetA2`=1, `EffectApplyAuraName1`=22, `EffectApplyAuraName2`=85, `EffectMiscValue1`=32, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=36190; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=6, `DmgMultiplier1`=1 WHERE `Id`=36192; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=25, `DmgMultiplier1`=1 WHERE `Id`=36195; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=77, `EffectImplicitTargetA1`=25, `DmgMultiplier1`=1 WHERE `Id`=36202; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=4, `DmgMultiplier1`=1 WHERE `Id`=36215; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectDieSides1`=1, `EffectBasePoints1`=2, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=139, `EffectMiscValue1`=1006, `DmgMultiplier1`=1 WHERE `Id`=36216; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectDieSides1`=1, `EffectBasePoints1`=2, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=139, `EffectMiscValue1`=1007, `DmgMultiplier1`=1 WHERE `Id`=36217; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectDieSides1`=1, `EffectBasePoints1`=2, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=139, `EffectMiscValue1`=1008, `DmgMultiplier1`=1 WHERE `Id`=36218; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectDieSides1`=1, `EffectBasePoints1`=2, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=139, `EffectMiscValue1`=1009, `DmgMultiplier1`=1 WHERE `Id`=36219; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `EffectImplicitTargetA1`=47, `EffectMiscValue1`=21134, `DmgMultiplier1`=1 WHERE `Id`=36221; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectImplicitTargetA1`=25, `EffectApplyAuraName1`=23, `EffectAmplitude1`=5000, `DmgMultiplier1`=1 WHERE `Id`=36222; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=22, `EffectImplicitTargetB1`=7, `EffectRadiusIndex1`=9, `MaxAffectedTargets`=3, `DmgMultiplier1`=1 WHERE `Id`=36223; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `EffectDieSides1`=1, `EffectImplicitTargetA1`=18, `EffectMiscValue1`=21137, `DmgMultiplier1`=1 WHERE `Id`=36229; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=76, `EffectImplicitTargetA1`=18, `EffectMiscValue1`=184658, `DmgMultiplier1`=1 WHERE `Id`=36230; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `EffectDieSides1`=1, `EffectImplicitTargetA1`=18, `EffectMiscValue1`=21136, `DmgMultiplier1`=1 WHERE `Id`=36231; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `EffectDieSides1`=1, `EffectImplicitTargetA1`=18, `EffectMiscValue1`=21138, `DmgMultiplier1`=1 WHERE `Id`=36232; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `EffectDieSides1`=1, `EffectImplicitTargetA1`=18, `EffectMiscValue1`=21139, `DmgMultiplier1`=1 WHERE `Id`=36233; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `EffectDieSides1`=1, `EffectImplicitTargetA1`=18, `EffectRadiusIndex1`=8, `EffectMiscValue1`=21140, `DmgMultiplier1`=1 WHERE `Id`=36234; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `EffectDieSides1`=1, `EffectImplicitTargetA1`=18, `EffectRadiusIndex1`=8, `EffectMiscValue1`=21104, `DmgMultiplier1`=1 WHERE `Id`=36235; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `EffectDieSides1`=1, `EffectImplicitTargetA1`=18, `EffectRadiusIndex1`=8, `EffectMiscValue1`=21148, `DmgMultiplier1`=1 WHERE `Id`=36236; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=5, `EffectImplicitTargetA1`=25, `EffectImplicitTargetB1`=17, `DmgMultiplier1`=1 WHERE `Id`=36272; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=5, `EffectImplicitTargetA1`=25, `EffectImplicitTargetB1`=17, `DmgMultiplier1`=1 WHERE `Id`=36273; +UPDATE `spell_dbc` SET `ProcFlags`=20, `ProcChance`=75, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=42, `EffectTriggerSpell1`=36288, `DmgClass`=1, `PreventionType`=1, `DmgMultiplier1`=1 WHERE `Id`=36287; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=1, `DmgMultiplier1`=1 WHERE `Id`=36294; +UPDATE `spell_dbc` SET `ProcChance`=101, `EquippedItemSubClassMask`=-1, `Effect1`=3, `EffectImplicitTargetA1`=1, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=36303; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=22, `EffectImplicitTargetB1`=7, `EffectRadiusIndex1`=20, `DmgMultiplier1`=1 WHERE `Id`=36309; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=24, `EffectDieSides1`=1, `EffectBasePoints1`=4, `EffectImplicitTargetA1`=25, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=36377; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `EffectDieSides1`=3, `EffectBasePoints1`=2, `EffectImplicitTargetA1`=32, `EffectRadiusIndex1`=29, `EffectMiscValue1`=21204, `DmgMultiplier1`=1 WHERE `Id`=36379; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=22, `EffectImplicitTargetB1`=7, `EffectRadiusIndex1`=13, `DmgMultiplier1`=1 WHERE `Id`=36388; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=63, `EffectImplicitTargetA1`=22, `EffectImplicitTargetB1`=7, `EffectRadiusIndex1`=18, `DmgMultiplier1`=1 WHERE `Id`=36403; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectDieSides1`=1, `EffectBasePoints1`=99999, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=18, `EffectMiscValue1`=2, `DmgMultiplier1`=1 WHERE `Id`=36407; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=35, `EffectImplicitTargetA1`=1, `EffectRadiusIndex1`=12, `EffectApplyAuraName1`=4, `DmgMultiplier1`=1 WHERE `Id`=36419; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=77, `EffectImplicitTargetA1`=38, `DmgMultiplier1`=1 WHERE `Id`=36420; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=134, `EffectImplicitTargetA1`=25, `EffectMiscValue1`=21241, `DmgMultiplier1`=1 WHERE `Id`=36421; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=23, `EffectAmplitude1`=5000, `EffectTriggerSpell1`=36445, `DmgMultiplier1`=1 WHERE `Id`=36443; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=22, `EffectImplicitTargetB1`=7, `EffectRadiusIndex1`=18, `DmgMultiplier1`=1 WHERE `Id`=36445; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=1, `DmgMultiplier1`=1 WHERE `Id`=36451; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=1, `DmgMultiplier1`=1 WHERE `Id`=36454; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=77, `EffectDieSides1`=1, `EffectBasePoints1`=49, `EffectImplicitTargetA1`=1, `DmgMultiplier1`=1 WHERE `Id`=36466; +UPDATE `spell_dbc` SET `ProcChance`=101, `EquippedItemSubClassMask`=-1, `Effect1`=3, `EffectDieSides1`=1, `EffectImplicitTargetA1`=38, `EffectRadiusIndex1`=9, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=36485; +UPDATE `spell_dbc` SET `StancesNot`=134217728, `ProcChance`=101, `SpellLevel`=1, `Effect1`=3, `EffectImplicitTargetA1`=1, `SpellFamilyName`=6, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=36491; +UPDATE `spell_dbc` SET `StancesNot`=134217728, `ProcChance`=101, `SpellLevel`=1, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=23, `EffectAmplitude1`=1000, `EffectTriggerSpell1`=36491, `SpellFamilyName`=6, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=36492; +UPDATE `spell_dbc` SET `ProcChance`=101, `BaseLevel`=70, `SpellLevel`=70, `EquippedItemSubClassMask`=-1, `Effect1`=6, `EffectDieSides1`=1, `EffectBasePoints1`=-91, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=87, `EffectMiscValue1`=32, `SpellFamilyName`=10, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=36493; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=23, `EffectAmplitude1`=2000, `EffectTriggerSpell1`=36505, `DmgMultiplier1`=1 WHERE `Id`=36504; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=63, `EffectImplicitTargetA1`=22, `EffectImplicitTargetB1`=7, `EffectRadiusIndex1`=10, `DmgMultiplier1`=1 WHERE `Id`=36505; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `EffectImplicitTargetA1`=18, `EffectRadiusIndex1`=16, `EffectMiscValue1`=21290, `DmgMultiplier1`=1 WHERE `Id`=36521; +UPDATE `spell_dbc` SET `Targets`=32, `ProcChance`=101, `Effect1`=16, `EffectImplicitTargetA1`=7, `EffectRadiusIndex1`=31, `EffectMiscValue1`=9645, `DmgMultiplier1`=1 WHERE `Id`=36547; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=77, `EffectImplicitTargetA1`=1, `DmgMultiplier1`=1 WHERE `Id`=36551; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=1, `DmgMultiplier1`=1 WHERE `Id`=36557; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=1, `DmgMultiplier1`=1 WHERE `Id`=36560; +UPDATE `spell_dbc` SET `ProcChance`=101, `BaseLevel`=70, `SpellLevel`=70, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=23, `EffectAmplitude1`=2000, `EffectTriggerSpell1`=36038, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=36564; +UPDATE `spell_dbc` SET `ProcChance`=101, `BaseLevel`=70, `SpellLevel`=70, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=23, `EffectAmplitude1`=3000, `EffectTriggerSpell1`=35754, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=36566; +UPDATE `spell_dbc` SET `AuraInterruptFlags`=4194304, `ProcChance`=101, `Effect1`=16, `EffectImplicitTargetA1`=1, `EffectMiscValue1`=10525, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=36569; +UPDATE `spell_dbc` SET `ProcChance`=101, `StackAmount`=3, `Effect1`=41, `Effect2`=6, `Effect3`=6, `EffectDieSides1`=1, `EffectDieSides2`=1, `EffectDieSides3`=1, `EffectBasePoints2`=-31, `EffectBasePoints3`=-21, `EffectImplicitTargetA1`=48, `EffectImplicitTargetA2`=1, `EffectImplicitTargetA3`=1, `EffectRadiusIndex1`=29, `EffectApplyAuraName2`=61, `EffectApplyAuraName3`=79, `EffectMiscValue1`=21323, `EffectMiscValue3`=127, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=36579; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=23, `EffectAmplitude1`=1000, `EffectTriggerSpell1`=36580, `DmgMultiplier1`=1 WHERE `Id`=36581; +UPDATE `spell_dbc` SET `ProcChance`=101, `StackAmount`=3, `Effect1`=41, `Effect2`=6, `Effect3`=6, `EffectDieSides1`=1, `EffectDieSides2`=1, `EffectDieSides3`=1, `EffectBasePoints2`=-31, `EffectBasePoints3`=-21, `EffectImplicitTargetA1`=42, `EffectImplicitTargetA2`=1, `EffectImplicitTargetA3`=1, `EffectRadiusIndex1`=29, `EffectApplyAuraName2`=61, `EffectApplyAuraName3`=79, `EffectMiscValue1`=21323, `EffectMiscValue3`=127, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=36584; +UPDATE `spell_dbc` SET `ProcChance`=101, `StackAmount`=3, `Effect1`=41, `Effect2`=6, `Effect3`=6, `EffectDieSides1`=1, `EffectDieSides2`=1, `EffectDieSides3`=1, `EffectBasePoints2`=-31, `EffectBasePoints3`=-21, `EffectImplicitTargetA1`=43, `EffectImplicitTargetA2`=1, `EffectImplicitTargetA3`=1, `EffectRadiusIndex1`=29, `EffectApplyAuraName2`=61, `EffectApplyAuraName3`=79, `EffectMiscValue1`=21323, `EffectMiscValue3`=127, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=36585; +UPDATE `spell_dbc` SET `ProcChance`=101, `StackAmount`=3, `Effect1`=41, `Effect2`=6, `Effect3`=6, `EffectDieSides1`=1, `EffectDieSides2`=1, `EffectDieSides3`=1, `EffectBasePoints2`=-31, `EffectBasePoints3`=-21, `EffectImplicitTargetA1`=48, `EffectImplicitTargetA2`=1, `EffectImplicitTargetA3`=1, `EffectRadiusIndex1`=29, `EffectApplyAuraName2`=61, `EffectApplyAuraName3`=79, `EffectMiscValue1`=21328, `EffectMiscValue3`=127, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=36595; +UPDATE `spell_dbc` SET `ProcChance`=101, `StackAmount`=3, `Effect1`=41, `Effect2`=6, `Effect3`=6, `EffectDieSides1`=1, `EffectDieSides2`=1, `EffectDieSides3`=1, `EffectBasePoints2`=-31, `EffectBasePoints3`=-21, `EffectImplicitTargetA1`=42, `EffectImplicitTargetA2`=1, `EffectImplicitTargetA3`=1, `EffectRadiusIndex1`=29, `EffectApplyAuraName2`=61, `EffectApplyAuraName3`=79, `EffectMiscValue1`=21328, `EffectMiscValue3`=127, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=36596; +UPDATE `spell_dbc` SET `ProcChance`=101, `StackAmount`=3, `Effect1`=41, `Effect2`=6, `Effect3`=6, `EffectDieSides1`=1, `EffectDieSides2`=1, `EffectDieSides3`=1, `EffectBasePoints2`=-31, `EffectBasePoints3`=-21, `EffectImplicitTargetA1`=43, `EffectImplicitTargetA2`=1, `EffectImplicitTargetA3`=1, `EffectRadiusIndex1`=29, `EffectApplyAuraName2`=61, `EffectApplyAuraName3`=79, `EffectMiscValue1`=21328, `EffectMiscValue3`=127, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=36597; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=76, `EffectImplicitTargetA1`=18, `EffectMiscValue1`=184752, `DmgMultiplier1`=1 WHERE `Id`=36598; +UPDATE `spell_dbc` SET `ProcFlags`=20, `ProcChance`=100, `MaxLevel`=1, `BaseLevel`=1, `SpellLevel`=1, `EquippedItemSubClassMask`=-1, `Effect1`=6, `EffectDieSides1`=1, `EffectBasePoints1`=-1, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=42, `EffectTriggerSpell1`=36601, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=36600; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=77, `EffectDieSides1`=1, `EffectBasePoints1`=36605, `EffectImplicitTargetA1`=22, `EffectImplicitTargetB1`=7, `EffectRadiusIndex1`=20, `MaxAffectedTargets`=1, `DmgMultiplier1`=1 WHERE `Id`=36605; +UPDATE `spell_dbc` SET `Mechanic`=7, `ProcFlags`=20, `ProcChance`=50, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=42, `EffectTriggerSpell1`=35963, `PreventionType`=2, `DmgMultiplier1`=1 WHERE `Id`=36610; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=23, `EffectAmplitude1`=2000, `EffectTriggerSpell1`=36615, `DmgMultiplier1`=1 WHERE `Id`=36614; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=22, `EffectImplicitTargetB1`=7, `EffectRadiusIndex1`=10, `DmgMultiplier1`=1 WHERE `Id`=36615; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `Effect2`=41, `EffectImplicitTargetA1`=38, `EffectImplicitTargetA2`=63, `EffectRadiusIndex2`=8, `EffectMiscValue2`=20427, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=36616; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectDieSides1`=1, `EffectImplicitTargetA1`=21, `EffectApplyAuraName1`=23, `EffectAmplitude1`=1000, `EffectTriggerSpell1`=36620, `DmgMultiplier1`=1 WHERE `Id`=36618; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=42, `EffectImplicitTargetA1`=65, `EffectRadiusIndex1`=7, `EffectMiscValue1`=21335, `DmgMultiplier1`=1 WHERE `Id`=36626; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectDieSides1`=1, `EffectBasePoints1`=199, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=31, `DmgMultiplier1`=1 WHERE `Id`=36666; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=1, `DmgMultiplier1`=1 WHERE `Id`=36685; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=38, `EffectRadiusIndex1`=28, `DmgMultiplier1`=1 WHERE `Id`=36687; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=38, `EffectRadiusIndex1`=28, `DmgMultiplier1`=1 WHERE `Id`=36688; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=38, `EffectRadiusIndex1`=28, `DmgMultiplier1`=1 WHERE `Id`=36689; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=76, `EffectImplicitTargetA1`=18, `EffectMiscValue1`=184684, `DmgMultiplier1`=1 WHERE `Id`=36691; +UPDATE `spell_dbc` SET `ProcChance`=101, `EquippedItemSubClassMask`=-1, `Effect1`=3, `EffectImplicitTargetA1`=1, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=36715; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `Effect2`=6, `EffectDieSides1`=1, `EffectDieSides2`=1, `EffectBasePoints2`=9999, `EffectImplicitTargetA1`=18, `EffectImplicitTargetA2`=1, `EffectApplyAuraName2`=18, `EffectMiscValue1`=21364, `EffectMiscValue2`=4, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=36724; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=77, `EffectImplicitTargetA1`=25, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=36726; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=38, `DmgMultiplier1`=1 WHERE `Id`=36793; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=38, `DmgMultiplier1`=1 WHERE `Id`=36794; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=24, `EffectDieSides1`=1, `EffectBasePoints1`=4, `EffectImplicitTargetA1`=25, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=36799; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `EffectImplicitTargetA1`=46, `EffectRadiusIndex1`=16, `EffectMiscValue1`=21419, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=36818; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectDieSides1`=1, `EffectBasePoints1`=36852, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=12, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=36850; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=22, `EffectImplicitTargetB1`=7, `EffectRadiusIndex1`=12, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=36853; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=77, `EffectDieSides1`=1, `EffectBasePoints1`=49, `EffectImplicitTargetA1`=25, `DmgMultiplier1`=1 WHERE `Id`=36855; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `EffectImplicitTargetA1`=17, `EffectMiscValue1`=21394, `DmgMultiplier1`=1 WHERE `Id`=36865; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=22, `EffectImplicitTargetB1`=7, `EffectRadiusIndex1`=20, `MaxAffectedTargets`=3, `DmgMultiplier1`=1 WHERE `Id`=36869; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=22, `EffectImplicitTargetB1`=7, `EffectRadiusIndex1`=20, `DmgMultiplier1`=1 WHERE `Id`=36870; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=5, `EffectImplicitTargetA1`=1, `EffectImplicitTargetB1`=17, `DmgMultiplier1`=1 WHERE `Id`=36874; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=77, `EffectImplicitTargetA1`=25, `DmgMultiplier1`=1 WHERE `Id`=36875; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=38, `EffectRadiusIndex1`=9, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=36898; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=22, `EffectImplicitTargetB1`=15, `EffectRadiusIndex1`=28, `DmgMultiplier1`=1 WHERE `Id`=36925; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=77, `EffectDieSides1`=1, `EffectBasePoints1`=65, `EffectImplicitTargetA1`=1, `DmgMultiplier1`=1 WHERE `Id`=36928; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=77, `EffectDieSides1`=1, `EffectBasePoints1`=32, `EffectImplicitTargetA1`=1, `DmgMultiplier1`=1 WHERE `Id`=36930; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=5, `EffectImplicitTargetA1`=1, `EffectImplicitTargetB1`=72, `EffectRadiusIndex1`=9, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=36933; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `Effect2`=6, `Effect3`=6, `EffectDieSides1`=1, `EffectDieSides2`=1, `EffectDieSides3`=1, `EffectBasePoints2`=99, `EffectBasePoints3`=999, `EffectImplicitTargetA1`=1, `EffectImplicitTargetA2`=1, `EffectImplicitTargetA3`=1, `EffectApplyAuraName1`=5, `EffectApplyAuraName2`=31, `EffectApplyAuraName3`=18, `EffectMiscValue3`=1, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=36934; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=1, `DmgMultiplier1`=1 WHERE `Id`=36942; +UPDATE `spell_dbc` SET `Dispel`=4, `Mechanic`=11, `ProcFlags`=20, `ProcChance`=20, `EquippedItemSubClassMask`=-1, `Effect1`=6, `EffectDieSides1`=1, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=42, `EffectTriggerSpell1`=36974, `SpellFamilyName`=8, `DmgClass`=1, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=36975; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectDieSides1`=1, `EffectBasePoints1`=899, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=31, `DmgMultiplier1`=1 WHERE `Id`=36993; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=77, `EffectImplicitTargetA1`=1, `DmgMultiplier1`=1 WHERE `Id`=37010; +UPDATE `spell_dbc` SET `AuraInterruptFlags`=4718592, `ProcChance`=101, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=4, `DmgMultiplier1`=1 WHERE `Id`=37025; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=112, `EffectDieSides1`=1, `EffectImplicitTargetA1`=72, `EffectRadiusIndex1`=15, `EffectMiscValue1`=21508, `DmgMultiplier1`=1 WHERE `Id`=37026; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=129, `Effect2`=6, `EffectImplicitTargetA1`=1, `EffectImplicitTargetA2`=1, `EffectRadiusIndex1`=33, `EffectApplyAuraName1`=23, `EffectApplyAuraName2`=23, `EffectAmplitude1`=1000, `EffectAmplitude2`=1000, `EffectTriggerSpell1`=30023, `EffectTriggerSpell2`=30023, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=37061; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=24, `EffectImplicitTargetA1`=25, `DmgMultiplier1`=1 WHERE `Id`=37064; +UPDATE `spell_dbc` SET `ProcChance`=101, `BaseLevel`=40, `SpellLevel`=40, `EquippedItemSubClassMask`=-1, `Effect1`=6, `EffectDieSides1`=1, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=23, `EffectAmplitude1`=9000, `EffectTriggerSpell1`=30425, `DmgClass`=1, `PreventionType`=1, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=37070; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=24, `EffectImplicitTargetA1`=25, `DmgMultiplier1`=1 WHERE `Id`=37084; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=24, `Effect2`=77, `EffectDieSides1`=1, `EffectBasePoints1`=2, `EffectImplicitTargetA1`=21, `EffectImplicitTargetA2`=21, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=37085; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=24, `Effect2`=77, `EffectDieSides1`=1, `EffectImplicitTargetA1`=21, `EffectImplicitTargetA2`=21, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=37086; +UPDATE `spell_dbc` SET `ProcChance`=101, `BaseLevel`=70, `SpellLevel`=70, `Effect1`=6, `EffectDieSides1`=1, `EffectBasePoints1`=-200001, `EffectImplicitTargetA1`=6, `EffectApplyAuraName1`=103, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=37088; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=24, `EffectImplicitTargetA1`=25, `DmgMultiplier1`=1 WHERE `Id`=37100; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectDieSides1`=1, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=23, `EffectAmplitude1`=5000, `EffectTriggerSpell1`=37103, `DmgMultiplier1`=1 WHERE `Id`=37101; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=124, `EffectImplicitTargetA1`=22, `EffectImplicitTargetB1`=7, `EffectRadiusIndex1`=30, `EffectMiscValue1`=150, `DmgMultiplier1`=1 WHERE `Id`=37105; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `Effect2`=77, `EffectImplicitTargetA1`=22, `EffectImplicitTargetA2`=22, `EffectImplicitTargetB1`=15, `EffectImplicitTargetB2`=15, `EffectRadiusIndex1`=12, `EffectRadiusIndex2`=12, `EffectApplyAuraName1`=4, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=37127; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=77, `EffectImplicitTargetA1`=22, `EffectImplicitTargetB1`=15, `EffectRadiusIndex1`=12, `DmgMultiplier1`=1 WHERE `Id`=37130; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=1, `DmgMultiplier1`=1 WHERE `Id`=37137; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `EffectDieSides1`=1, `EffectImplicitTargetA1`=18, `EffectRadiusIndex1`=8, `EffectMiscValue1`=21697, `DmgMultiplier1`=1 WHERE `Id`=37177; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `EffectDieSides1`=1, `EffectImplicitTargetA1`=18, `EffectRadiusIndex1`=8, `EffectMiscValue1`=21698, `DmgMultiplier1`=1 WHERE `Id`=37178; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=16, `EffectImplicitTargetA1`=1, `EffectMiscValue1`=10297, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=37215; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=24, `EffectImplicitTargetA1`=25, `DmgMultiplier1`=1 WHERE `Id`=37244; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=24, `EffectImplicitTargetA1`=25, `DmgMultiplier1`=1 WHERE `Id`=37245; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `Effect2`=6, `Effect3`=6, `EffectDieSides1`=1, `EffectDieSides2`=1, `EffectDieSides3`=1, `EffectBasePoints1`=249, `EffectBasePoints2`=249, `EffectBasePoints3`=249, `EffectImplicitTargetA1`=1, `EffectImplicitTargetA2`=1, `EffectImplicitTargetA3`=1, `EffectApplyAuraName1`=206, `EffectApplyAuraName2`=32, `EffectApplyAuraName3`=31, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=37246; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=22, `EffectImplicitTargetB1`=15, `EffectRadiusIndex1`=10, `DmgMultiplier1`=1 WHERE `Id`=37269; +UPDATE `spell_dbc` SET `AuraInterruptFlags`=4718592, `ProcChance`=101, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=23, `EffectAmplitude1`=2000, `DmgMultiplier1`=1 WHERE `Id`=37280; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=1, `EffectRadiusIndex1`=8, `DmgMultiplier1`=1 WHERE `Id`=37308; +UPDATE `spell_dbc` SET `ProcChance`=101, `BaseLevel`=1, `SpellLevel`=1, `Effect1`=3, `EffectImplicitTargetA1`=22, `EffectImplicitTargetB1`=15, `EffectRadiusIndex1`=28, `DmgMultiplier1`=1 WHERE `Id`=37326; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=56, `EffectMiscValue1`=21419, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=37347; +UPDATE `spell_dbc` SET `ProcChance`=101, `BaseLevel`=1, `SpellLevel`=1, `EquippedItemSubClassMask`=-1, `Effect1`=3, `EffectDieSides1`=1, `EffectBasePoints1`=-1, `EffectImplicitTargetA1`=22, `EffectImplicitTargetB1`=7, `EffectRadiusIndex1`=20, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=37356; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect2`=77, `EffectImplicitTargetA2`=22, `EffectImplicitTargetB2`=7, `EffectRadiusIndex2`=28, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=37357; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=77, `EffectImplicitTargetA1`=22, `EffectImplicitTargetB1`=7, `EffectRadiusIndex1`=28, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=37358; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=50, `EffectImplicitTargetA1`=18, `EffectMiscValue1`=184926, `DmgMultiplier1`=1 WHERE `Id`=37373; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `EffectDieSides1`=1, `EffectImplicitTargetA1`=18, `EffectRadiusIndex1`=16, `EffectMiscValue1`=21761, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=37394; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=50, `EffectImplicitTargetA1`=18, `EffectMiscValue1`=184928, `DmgMultiplier1`=1 WHERE `Id`=37403; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=16, `EffectImplicitTargetA1`=1, `EffectMiscValue1`=10594, `DmgMultiplier1`=1 WHERE `Id`=37415; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=50, `EffectImplicitTargetA1`=18, `EffectMiscValue1`=184942, `DmgMultiplier1`=1 WHERE `Id`=37419; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `Effect2`=3, `EffectImplicitTargetA1`=22, `EffectImplicitTargetA2`=22, `EffectImplicitTargetB1`=7, `EffectImplicitTargetB2`=7, `EffectRadiusIndex1`=13, `EffectRadiusIndex2`=13, `MaxAffectedTargets`=1, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=37442; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `EffectImplicitTargetA1`=22, `EffectImplicitTargetB1`=32, `EffectRadiusIndex1`=7, `EffectMiscValue1`=12581, `DmgMultiplier1`=1 WHERE `Id`=37457; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=5, `EffectImplicitTargetA1`=1, `EffectImplicitTargetB1`=18, `DmgMultiplier1`=1 WHERE `Id`=37458; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=23, `EffectAmplitude1`=20000, `EffectTriggerSpell1`=37489, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=37490; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=77, `EffectImplicitTargetA1`=1, `DmgMultiplier1`=1 WHERE `Id`=37491; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `Effect2`=61, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=12, `EffectMiscValue2`=13852, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=37492; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=77, `EffectImplicitTargetA1`=25, `DmgMultiplier1`=1 WHERE `Id`=37524; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=77, `EffectImplicitTargetA1`=60, `EffectRadiusIndex1`=14, `MaxAffectedTargets`=1, `DmgMultiplier1`=1 WHERE `Id`=37534; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `EffectDieSides1`=1, `EffectImplicitTargetA1`=18, `EffectRadiusIndex1`=16, `EffectMiscValue1`=21812, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=37545; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectDieSides1`=1, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=56, `EffectMiscValue1`=21829, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=37562; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=18, `EffectRadiusIndex1`=13, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=37575; +UPDATE `spell_dbc` SET `ProcChance`=101, `EquippedItemSubClassMask`=-1, `Effect1`=3, `EffectDieSides1`=1, `EffectImplicitTargetA1`=22, `EffectImplicitTargetB1`=30, `EffectRadiusIndex1`=9, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=37576; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `EffectDieSides1`=1, `EffectImplicitTargetA1`=72, `EffectRadiusIndex1`=7, `EffectMiscValue1`=21818, `DmgMultiplier1`=1 WHERE `Id`=37606; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=38, `EffectRadiusIndex1`=8, `DmgMultiplier1`=1 WHERE `Id`=37639; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectDieSides1`=1, `EffectBasePoints1`=499, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=79, `EffectMiscValue1`=127, `DmgMultiplier1`=1 WHERE `Id`=37643; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectDieSides1`=1, `EffectBasePoints1`=499, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=133, `DmgMultiplier1`=1 WHERE `Id`=37644; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=77, `EffectImplicitTargetA1`=60, `EffectRadiusIndex1`=14, `MaxAffectedTargets`=1, `DmgMultiplier1`=1 WHERE `Id`=37653; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=77, `EffectImplicitTargetA1`=1, `MaxAffectedTargets`=1, `DmgMultiplier1`=1 WHERE `Id`=37659; +UPDATE `spell_dbc` SET `ProcChance`=101, `BaseLevel`=10, `SpellLevel`=10, `Effect1`=135, `EffectImplicitTargetA1`=47, `EffectRadiusIndex1`=15, `SpellFamilyName`=9, `SpellFamilyFlags1`=16777216, `DmgClass`=1, `PreventionType`=1, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=37663; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=77, `EffectImplicitTargetA1`=1, `MaxAffectedTargets`=1, `DmgMultiplier1`=1 WHERE `Id`=37677; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=60, `EffectRadiusIndex1`=14, `MaxAffectedTargets`=3, `DmgMultiplier1`=1 WHERE `Id`=37680; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=60, `EffectRadiusIndex1`=14, `MaxAffectedTargets`=3, `DmgMultiplier1`=1 WHERE `Id`=37682; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=60, `EffectRadiusIndex1`=19, `MaxAffectedTargets`=3, `DmgMultiplier1`=1 WHERE `Id`=37684; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=25, `DmgMultiplier1`=1 WHERE `Id`=37686; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=60, `EffectRadiusIndex1`=19, `MaxAffectedTargets`=3, `DmgMultiplier1`=1 WHERE `Id`=37687; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=38, `MaxAffectedTargets`=3, `DmgMultiplier1`=1 WHERE `Id`=37698; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=38, `DmgMultiplier1`=1 WHERE `Id`=37699; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=22, `EffectImplicitTargetB1`=7, `EffectRadiusIndex1`=13, `DmgMultiplier1`=1 WHERE `Id`=37701; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=22, `EffectImplicitTargetB1`=7, `EffectRadiusIndex1`=13, `MaxAffectedTargets`=3, `DmgMultiplier1`=1 WHERE `Id`=37702; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `Effect2`=3, `EffectImplicitTargetA1`=60, `EffectImplicitTargetA2`=60, `EffectRadiusIndex1`=19, `EffectRadiusIndex2`=19, `MaxAffectedTargets`=3, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=37703; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=60, `EffectRadiusIndex1`=14, `MaxAffectedTargets`=1, `DmgMultiplier1`=1 WHERE `Id`=37707; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=60, `EffectRadiusIndex1`=14, `MaxAffectedTargets`=1, `DmgMultiplier1`=1 WHERE `Id`=37708; +UPDATE `spell_dbc` SET `Targets`=32, `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=7, `EffectRadiusIndex1`=23, `DmgMultiplier1`=1 WHERE `Id`=37715; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectImplicitTargetA1`=25, `EffectApplyAuraName1`=4, `DmgMultiplier1`=1 WHERE `Id`=37724; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `Effect2`=77, `EffectDieSides1`=1, `EffectImplicitTargetA1`=6, `EffectImplicitTargetA2`=6, `EffectApplyAuraName1`=139, `EffectMiscValue1`=1018, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=37725; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `Effect2`=77, `EffectDieSides1`=1, `EffectImplicitTargetA1`=6, `EffectImplicitTargetA2`=6, `EffectApplyAuraName1`=139, `EffectMiscValue1`=1019, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=37726; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `Effect2`=77, `EffectDieSides1`=1, `EffectImplicitTargetA1`=6, `EffectImplicitTargetA2`=6, `EffectApplyAuraName1`=139, `EffectMiscValue1`=1020, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=37731; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `Effect2`=77, `EffectDieSides1`=1, `EffectImplicitTargetA1`=6, `EffectImplicitTargetA2`=6, `EffectApplyAuraName1`=139, `EffectMiscValue1`=1021, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=37732; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `Effect2`=77, `EffectDieSides1`=1, `EffectImplicitTargetA1`=6, `EffectImplicitTargetA2`=6, `EffectApplyAuraName1`=139, `EffectMiscValue1`=1022, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=37733; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `EffectDieSides1`=1, `EffectImplicitTargetA1`=18, `EffectRadiusIndex1`=16, `EffectMiscValue1`=21857, `DmgMultiplier1`=1 WHERE `Id`=37735; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=1, `DmgMultiplier1`=1 WHERE `Id`=37741; +UPDATE `spell_dbc` SET `Targets`=32, `ProcChance`=101, `Effect1`=3, `Effect2`=3, `EffectImplicitTargetA1`=7, `EffectImplicitTargetA2`=7, `EffectRadiusIndex1`=9, `EffectRadiusIndex2`=9, `MaxAffectedTargets`=3, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=37753; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `Effect2`=3, `EffectImplicitTargetA1`=60, `EffectImplicitTargetA2`=60, `EffectRadiusIndex1`=32, `EffectRadiusIndex2`=13, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=37756; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=12, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=37757; +UPDATE `spell_dbc` SET `ProcChance`=101, `BaseLevel`=1, `SpellLevel`=1, `EquippedItemSubClassMask`=-1, `Effect1`=41, `EffectImplicitTargetA1`=32, `EffectRadiusIndex1`=7, `EffectMiscValue1`=21870, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=37758; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectRadiusIndex1`=16, `DmgMultiplier1`=1 WHERE `Id`=37765; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `EffectDieSides1`=1, `EffectImplicitTargetA1`=17, `EffectRadiusIndex1`=16, `EffectMiscValue1`=21920, `DmgMultiplier1`=1 WHERE `Id`=37766; +UPDATE `spell_dbc` SET `Targets`=32, `ProcChance`=101, `Effect1`=3, `Effect2`=3, `EffectImplicitTargetA1`=7, `EffectImplicitTargetA2`=7, `EffectRadiusIndex1`=20, `EffectRadiusIndex2`=20, `MaxAffectedTargets`=3, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=37767; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectImplicitTargetA1`=25, `EffectApplyAuraName1`=23, `EffectAmplitude1`=1000, `EffectTriggerSpell1`=37748, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=37769; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=38, `EffectRadiusIndex1`=20, `MaxAffectedTargets`=1, `DmgMultiplier1`=1 WHERE `Id`=37771; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `EffectDieSides1`=1, `EffectImplicitTargetA1`=17, `EffectRadiusIndex1`=16, `EffectMiscValue1`=21920, `DmgMultiplier1`=1 WHERE `Id`=37772; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `EffectDieSides1`=1, `EffectImplicitTargetA1`=17, `EffectRadiusIndex1`=16, `EffectMiscValue1`=21874, `DmgMultiplier1`=1 WHERE `Id`=37773; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `EffectDieSides1`=1, `EffectImplicitTargetA1`=17, `EffectRadiusIndex1`=16, `EffectMiscValue1`=21874, `DmgMultiplier1`=1 WHERE `Id`=37774; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectDieSides1`=1, `EffectBasePoints1`=-91, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=61, `DmgMultiplier1`=1 WHERE `Id`=37780; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=112, `EffectDieSides1`=1, `EffectImplicitTargetA1`=18, `EffectRadiusIndex1`=16, `EffectMiscValue1`=21875, `DmgMultiplier1`=1 WHERE `Id`=37781; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=56, `EffectMiscValue1`=21871, `DmgMultiplier1`=1, `AreaGroupId`=71 WHERE `Id`=37782; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=22, `EffectImplicitTargetB1`=7, `EffectRadiusIndex1`=14, `MaxAffectedTargets`=9, `DmgMultiplier1`=1 WHERE `Id`=37783; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=22, `EffectImplicitTargetB1`=7, `EffectRadiusIndex1`=14, `MaxAffectedTargets`=9, `DmgMultiplier1`=1 WHERE `Id`=37785; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=46, `Effect3`=6, `EffectImplicitTargetA1`=1, `EffectImplicitTargetA3`=1, `EffectApplyAuraName3`=25, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=37791; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=134, `Effect2`=77, `EffectImplicitTargetA1`=1, `EffectImplicitTargetA2`=1, `EffectMiscValue1`=21877, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=37812; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=22, `EffectImplicitTargetB1`=15, `EffectRadiusIndex1`=7, `DmgMultiplier1`=1 WHERE `Id`=37814; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=23, `EffectAmplitude1`=500, `EffectTriggerSpell1`=37814, `DmgMultiplier1`=1 WHERE `Id`=37815; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=23, `EffectAmplitude1`=500, `EffectTriggerSpell1`=30023, `DmgMultiplier1`=1 WHERE `Id`=37827; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=22, `EffectImplicitTargetB1`=7, `EffectRadiusIndex1`=20, `DmgMultiplier1`=1 WHERE `Id`=37828; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=134, `EffectImplicitTargetA1`=1, `EffectMiscValue1`=21910, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=37829; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `Effect2`=3, `EffectImplicitTargetA1`=22, `EffectImplicitTargetA2`=22, `EffectImplicitTargetB1`=7, `EffectImplicitTargetB2`=7, `EffectRadiusIndex1`=20, `EffectRadiusIndex2`=20, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=37831; +UPDATE `spell_dbc` SET `ProcChance`=101, `BaseLevel`=70, `SpellLevel`=70, `EquippedItemSubClassMask`=-1, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=93, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=37832; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=134, `EffectImplicitTargetA1`=1, `EffectMiscValue1`=20156, `DmgMultiplier1`=1 WHERE `Id`=37835; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=23, `EffectAmplitude1`=30000, `EffectTriggerSpell1`=26264, `DmgMultiplier1`=1 WHERE `Id`=37845; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectRadiusIndex1`=16, `DmgMultiplier1`=1 WHERE `Id`=37866; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectDieSides1`=1, `EffectBasePoints1`=-1, `EffectImplicitTargetA1`=22, `EffectImplicitTargetB1`=15, `EffectRadiusIndex1`=31, `EffectApplyAuraName1`=4, `DmgMultiplier1`=1 WHERE `Id`=37870; +UPDATE `spell_dbc` SET `ProcChance`=101, `BaseLevel`=70, `SpellLevel`=70, `EquippedItemSubClassMask`=-1, `Effect1`=79, `EffectImplicitTargetA1`=1, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=37872; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=50, `EffectImplicitTargetA1`=18, `EffectMiscValue1`=185011, `DmgMultiplier1`=1 WHERE `Id`=37900; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=77, `EffectImplicitTargetA1`=38, `DmgMultiplier1`=1 WHERE `Id`=37901; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=22, `EffectImplicitTargetB1`=7, `EffectRadiusIndex1`=20, `MaxAffectedTargets`=1, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=37902; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=134, `EffectImplicitTargetA1`=25, `EffectMiscValue1`=21929, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=37903; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=77, `EffectImplicitTargetA1`=25, `DmgMultiplier1`=1 WHERE `Id`=37909; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `EffectDieSides1`=1, `EffectImplicitTargetA1`=17, `EffectRadiusIndex1`=16, `EffectMiscValue1`=21874, `DmgMultiplier1`=1 WHERE `Id`=37911; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `EffectDieSides1`=1, `EffectImplicitTargetA1`=17, `EffectRadiusIndex1`=16, `EffectMiscValue1`=21874, `DmgMultiplier1`=1 WHERE `Id`=37912; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `EffectDieSides1`=1, `EffectImplicitTargetA1`=17, `EffectRadiusIndex1`=16, `EffectMiscValue1`=21874, `DmgMultiplier1`=1 WHERE `Id`=37914; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=5, `EffectImplicitTargetA1`=1, `EffectImplicitTargetB1`=17, `DmgMultiplier1`=1 WHERE `Id`=37915; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `EffectDieSides1`=1, `EffectImplicitTargetA1`=17, `EffectRadiusIndex1`=16, `EffectMiscValue1`=21874, `DmgMultiplier1`=1 WHERE `Id`=37916; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `EffectDieSides1`=1, `EffectImplicitTargetA1`=17, `EffectRadiusIndex1`=16, `EffectMiscValue1`=21920, `DmgMultiplier1`=1 WHERE `Id`=37923; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `EffectDieSides1`=1, `EffectImplicitTargetA1`=17, `EffectRadiusIndex1`=16, `EffectMiscValue1`=21920, `DmgMultiplier1`=1 WHERE `Id`=37925; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `EffectDieSides1`=1, `EffectImplicitTargetA1`=17, `EffectRadiusIndex1`=16, `EffectMiscValue1`=21920, `DmgMultiplier1`=1 WHERE `Id`=37926; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `EffectDieSides1`=1, `EffectImplicitTargetA1`=17, `EffectRadiusIndex1`=16, `EffectMiscValue1`=21920, `DmgMultiplier1`=1 WHERE `Id`=37927; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `EffectDieSides1`=1, `EffectImplicitTargetA1`=17, `EffectRadiusIndex1`=16, `EffectMiscValue1`=21920, `DmgMultiplier1`=1 WHERE `Id`=37928; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `EffectDieSides1`=1, `EffectImplicitTargetA1`=17, `EffectRadiusIndex1`=16, `EffectMiscValue1`=21920, `DmgMultiplier1`=1 WHERE `Id`=37929; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `EffectDieSides1`=1, `EffectImplicitTargetA1`=17, `EffectRadiusIndex1`=16, `EffectMiscValue1`=21920, `DmgMultiplier1`=1 WHERE `Id`=37931; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `EffectDieSides1`=1, `EffectImplicitTargetA1`=17, `EffectRadiusIndex1`=16, `EffectMiscValue1`=21920, `DmgMultiplier1`=1 WHERE `Id`=37932; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=5, `EffectImplicitTargetA1`=1, `EffectImplicitTargetB1`=17, `DmgMultiplier1`=1 WHERE `Id`=37938; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=77, `EffectImplicitTargetA1`=25, `DmgMultiplier1`=1 WHERE `Id`=37943; +UPDATE `spell_dbc` SET `ProcChance`=101, `StackAmount`=3, `Effect1`=41, `Effect2`=6, `Effect3`=6, `EffectDieSides1`=1, `EffectDieSides2`=1, `EffectDieSides3`=1, `EffectBasePoints2`=-31, `EffectBasePoints3`=-31, `EffectImplicitTargetA1`=48, `EffectImplicitTargetA2`=1, `EffectImplicitTargetA3`=1, `EffectRadiusIndex1`=29, `EffectApplyAuraName2`=61, `EffectApplyAuraName3`=79, `EffectMiscValue1`=21936, `EffectMiscValue3`=127, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=37947; +UPDATE `spell_dbc` SET `ProcChance`=101, `StackAmount`=3, `Effect1`=41, `Effect2`=6, `Effect3`=6, `EffectDieSides1`=1, `EffectDieSides2`=1, `EffectDieSides3`=1, `EffectBasePoints2`=-31, `EffectBasePoints3`=-31, `EffectImplicitTargetA1`=42, `EffectImplicitTargetA2`=1, `EffectImplicitTargetA3`=1, `EffectRadiusIndex1`=29, `EffectApplyAuraName2`=61, `EffectApplyAuraName3`=79, `EffectMiscValue1`=21936, `EffectMiscValue3`=127, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=37948; +UPDATE `spell_dbc` SET `ProcChance`=101, `StackAmount`=3, `Effect1`=41, `Effect2`=6, `Effect3`=6, `EffectDieSides1`=1, `EffectDieSides2`=1, `EffectDieSides3`=1, `EffectBasePoints2`=-31, `EffectBasePoints3`=-31, `EffectImplicitTargetA1`=43, `EffectImplicitTargetA2`=1, `EffectImplicitTargetA3`=1, `EffectRadiusIndex1`=29, `EffectApplyAuraName2`=61, `EffectApplyAuraName3`=79, `EffectMiscValue1`=21936, `EffectMiscValue3`=127, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=37949; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=5, `EffectImplicitTargetA1`=1, `EffectImplicitTargetB1`=17, `DmgMultiplier1`=1 WHERE `Id`=37953; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=77, `EffectImplicitTargetA1`=25, `DmgMultiplier1`=1 WHERE `Id`=37955; +UPDATE `spell_dbc` SET `AuraInterruptFlags`=128, `ProcChance`=101, `SpellLevel`=1, `EquippedItemSubClassMask`=-1, `Effect1`=76, `EffectDieSides1`=1, `EffectImplicitTargetA1`=18, `EffectMiscValue1`=185033, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=37957; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectDieSides1`=1, `EffectBasePoints1`=-100, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=61, `DmgMultiplier1`=1 WHERE `Id`=37963; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=5, `EffectImplicitTargetA1`=1, `EffectImplicitTargetB1`=17, `DmgMultiplier1`=1 WHERE `Id`=37969; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=77, `EffectImplicitTargetA1`=25, `DmgMultiplier1`=1 WHERE `Id`=37971; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=1, `DmgMultiplier1`=1 WHERE `Id`=37977; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=24, `EffectImplicitTargetA1`=25, `DmgMultiplier1`=1 WHERE `Id`=38005; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectDieSides1`=1, `EffectBasePoints1`=4999, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=19, `EffectMiscValue1`=7, `DmgMultiplier1`=1 WHERE `Id`=38013; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=23, `EffectAmplitude1`=10000, `EffectTriggerSpell1`=38017, `DmgMultiplier1`=1 WHERE `Id`=38018; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `EffectDieSides1`=1, `EffectImplicitTargetA1`=72, `EffectRadiusIndex1`=8, `EffectMiscValue1`=21958, `DmgMultiplier1`=1 WHERE `Id`=38019; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=23, `EffectAmplitude1`=10000, `EffectTriggerSpell1`=38037, `DmgMultiplier1`=1 WHERE `Id`=38036; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=77, `EffectImplicitTargetA1`=22, `EffectImplicitTargetB1`=7, `EffectRadiusIndex1`=22, `DmgMultiplier1`=1 WHERE `Id`=38037; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=77, `EffectImplicitTargetA1`=22, `EffectImplicitTargetB1`=7, `EffectRadiusIndex1`=22, `DmgMultiplier1`=1 WHERE `Id`=38038; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=77, `EffectImplicitTargetA1`=22, `EffectImplicitTargetB1`=7, `EffectRadiusIndex1`=22, `DmgMultiplier1`=1 WHERE `Id`=38039; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=23, `EffectAmplitude1`=10000, `EffectTriggerSpell1`=38038, `DmgMultiplier1`=1 WHERE `Id`=38040; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=23, `EffectAmplitude1`=10000, `EffectTriggerSpell1`=38039, `DmgMultiplier1`=1 WHERE `Id`=38041; +UPDATE `spell_dbc` SET `ProcFlags`=20, `ProcChance`=100, `BaseLevel`=1, `SpellLevel`=1, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=42, `EffectTriggerSpell1`=38061, `DmgClass`=1, `PreventionType`=2, `DmgMultiplier1`=1 WHERE `Id`=38060; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=2, `EffectImplicitTargetA1`=6, `DmgMultiplier1`=1 WHERE `Id`=38062; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=25, `DmgMultiplier1`=1 WHERE `Id`=38077; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=25, `DmgMultiplier1`=1 WHERE `Id`=38079; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectImplicitTargetA1`=38, `EffectApplyAuraName1`=4, `DmgMultiplier1`=1 WHERE `Id`=38096; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectImplicitTargetA1`=25, `EffectApplyAuraName1`=4, `DmgMultiplier1`=1 WHERE `Id`=38098; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `EffectImplicitTargetA1`=18, `EffectRadiusIndex1`=36, `EffectMiscValue1`=15242, `DmgMultiplier1`=1 WHERE `Id`=38111; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `EffectImplicitTargetA1`=18, `EffectRadiusIndex1`=29, `EffectMiscValue1`=2615, `DmgMultiplier1`=1 WHERE `Id`=38114; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=77, `EffectImplicitTargetA1`=1, `DmgMultiplier1`=1 WHERE `Id`=38117; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `EffectImplicitTargetA1`=18, `EffectRadiusIndex1`=36, `EffectMiscValue1`=21976, `DmgMultiplier1`=1 WHERE `Id`=38118; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `EffectImplicitTargetA1`=18, `EffectRadiusIndex1`=29, `EffectMiscValue1`=2615, `DmgMultiplier1`=1 WHERE `Id`=38124; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=4, `DmgMultiplier1`=1 WHERE `Id`=38131; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `EffectImplicitTargetA1`=18, `EffectMiscValue1`=22008, `DmgMultiplier1`=1 WHERE `Id`=38137; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=77, `EffectImplicitTargetA1`=22, `EffectImplicitTargetB1`=7, `EffectRadiusIndex1`=28, `DmgMultiplier1`=1 WHERE `Id`=38140; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=24, `EffectImplicitTargetA1`=25, `DmgMultiplier1`=1 WHERE `Id`=38172; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `EffectImplicitTargetA1`=18, `EffectRadiusIndex1`=29, `EffectMiscValue1`=2614, `DmgMultiplier1`=1 WHERE `Id`=38179; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `EffectImplicitTargetA1`=18, `EffectRadiusIndex1`=29, `EffectMiscValue1`=2614, `DmgMultiplier1`=1 WHERE `Id`=38180; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `EffectImplicitTargetA1`=18, `EffectRadiusIndex1`=36, `EffectMiscValue1`=15241, `DmgMultiplier1`=1 WHERE `Id`=38181; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectImplicitTargetA1`=38, `EffectApplyAuraName1`=11, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=38186; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `EffectDieSides1`=1, `EffectImplicitTargetA1`=44, `EffectRadiusIndex1`=13, `EffectMiscValue1`=22036, `DmgMultiplier1`=1 WHERE `Id`=38188; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `EffectDieSides1`=1, `EffectImplicitTargetA1`=41, `EffectRadiusIndex1`=13, `EffectMiscValue1`=22036, `DmgMultiplier1`=1 WHERE `Id`=38189; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `EffectDieSides1`=1, `EffectImplicitTargetA1`=42, `EffectRadiusIndex1`=13, `EffectMiscValue1`=22036, `DmgMultiplier1`=1 WHERE `Id`=38190; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `EffectDieSides1`=1, `EffectImplicitTargetA1`=43, `EffectRadiusIndex1`=13, `EffectMiscValue1`=22036, `DmgMultiplier1`=1 WHERE `Id`=38191; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=77, `EffectImplicitTargetA1`=1, `DmgMultiplier1`=1 WHERE `Id`=38192; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `EffectDieSides1`=1, `EffectImplicitTargetA1`=41, `EffectRadiusIndex1`=13, `EffectMiscValue1`=22035, `DmgMultiplier1`=1 WHERE `Id`=38198; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `EffectDieSides1`=1, `EffectImplicitTargetA1`=44, `EffectRadiusIndex1`=13, `EffectMiscValue1`=22035, `DmgMultiplier1`=1 WHERE `Id`=38199; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `EffectDieSides1`=1, `EffectImplicitTargetA1`=42, `EffectRadiusIndex1`=13, `EffectMiscValue1`=22035, `DmgMultiplier1`=1 WHERE `Id`=38200; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `EffectDieSides1`=1, `EffectImplicitTargetA1`=43, `EffectRadiusIndex1`=13, `EffectMiscValue1`=22035, `DmgMultiplier1`=1 WHERE `Id`=38201; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=77, `EffectImplicitTargetA1`=25, `DmgMultiplier1`=1 WHERE `Id`=38211; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=134, `EffectImplicitTargetA1`=1, `EffectMiscValue1`=22051, `DmgMultiplier1`=1 WHERE `Id`=38228; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=77, `EffectImplicitTargetA1`=22, `EffectImplicitTargetB1`=7, `EffectRadiusIndex1`=28, `DmgMultiplier1`=1 WHERE `Id`=38241; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `EffectDieSides1`=1, `EffectImplicitTargetA1`=72, `EffectRadiusIndex1`=8, `EffectMiscValue1`=22056, `DmgMultiplier1`=1 WHERE `Id`=38242; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `EffectDieSides1`=1, `EffectImplicitTargetA1`=72, `EffectRadiusIndex1`=8, `EffectMiscValue1`=22009, `DmgMultiplier1`=1 WHERE `Id`=38244; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `EffectDieSides1`=1, `EffectImplicitTargetA1`=72, `EffectRadiusIndex1`=8, `EffectMiscValue1`=22055, `DmgMultiplier1`=1 WHERE `Id`=38247; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=77, `EffectImplicitTargetA1`=22, `EffectImplicitTargetB1`=7, `EffectRadiusIndex1`=28, `DmgMultiplier1`=1 WHERE `Id`=38248; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=24, `EffectImplicitTargetA1`=25, `DmgMultiplier1`=1 WHERE `Id`=38251; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=24, `EffectImplicitTargetA1`=25, `DmgMultiplier1`=1 WHERE `Id`=38255; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `EffectImplicitTargetA1`=18, `EffectRadiusIndex1`=29, `EffectMiscValue1`=21974, `DmgMultiplier1`=1 WHERE `Id`=38261; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `EffectImplicitTargetA1`=18, `EffectRadiusIndex1`=36, `EffectMiscValue1`=22064, `DmgMultiplier1`=1 WHERE `Id`=38266; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `EffectImplicitTargetA1`=18, `EffectRadiusIndex1`=36, `EffectMiscValue1`=22067, `DmgMultiplier1`=1 WHERE `Id`=38268; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `EffectImplicitTargetA1`=18, `EffectRadiusIndex1`=29, `EffectMiscValue1`=22069, `DmgMultiplier1`=1 WHERE `Id`=38270; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `EffectImplicitTargetA1`=18, `EffectRadiusIndex1`=29, `EffectMiscValue1`=22071, `DmgMultiplier1`=1 WHERE `Id`=38271; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `EffectImplicitTargetA1`=18, `EffectRadiusIndex1`=36, `EffectMiscValue1`=22077, `DmgMultiplier1`=1 WHERE `Id`=38278; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `EffectImplicitTargetA1`=18, `EffectRadiusIndex1`=29, `EffectMiscValue1`=22078, `DmgMultiplier1`=1 WHERE `Id`=38283; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `EffectImplicitTargetA1`=18, `EffectRadiusIndex1`=36, `EffectMiscValue1`=22085, `DmgMultiplier1`=1 WHERE `Id`=38286; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `EffectImplicitTargetA1`=18, `EffectRadiusIndex1`=29, `EffectMiscValue1`=22086, `DmgMultiplier1`=1 WHERE `Id`=38287; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `EffectImplicitTargetA1`=18, `EffectRadiusIndex1`=36, `EffectMiscValue1`=22089, `DmgMultiplier1`=1 WHERE `Id`=38288; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `EffectImplicitTargetA1`=18, `EffectRadiusIndex1`=29, `EffectMiscValue1`=2614, `DmgMultiplier1`=1 WHERE `Id`=38291; +UPDATE `spell_dbc` SET `Dispel`=1, `ProcChance`=101, `BaseLevel`=40, `SpellLevel`=40, `EquippedItemSubClassMask`=-1, `Effect1`=6, `EffectDieSides1`=1, `EffectBasePoints1`=19, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=23, `EffectAmplitude1`=1000, `EffectTriggerSpell1`=12744, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=38323; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectImplicitTargetA1`=38, `EffectApplyAuraName1`=26, `DmgMultiplier1`=1 WHERE `Id`=38352; +UPDATE `spell_dbc` SET `Targets`=64, `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=8, `EffectRadiusIndex1`=32, `DmgMultiplier1`=1 WHERE `Id`=38355; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=1, `DmgMultiplier1`=1 WHERE `Id`=38359; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=76, `EffectImplicitTargetA1`=18, `EffectMiscValue1`=185133, `DmgMultiplier1`=1 WHERE `Id`=38375; +UPDATE `spell_dbc` SET `ProcFlags`=4, `ProcChance`=100, `Effect1`=2, `Effect2`=77, `EffectDieSides1`=1, `EffectBasePoints1`=-1, `EffectImplicitTargetA1`=6, `EffectImplicitTargetA2`=6, `DmgClass`=1, `PreventionType`=1, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=38381; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `EffectImplicitTargetA1`=18, `EffectRadiusIndex1`=36, `EffectMiscValue1`=22122, `DmgMultiplier1`=1 WHERE `Id`=38402; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `EffectImplicitTargetA1`=18, `EffectRadiusIndex1`=29, `EffectMiscValue1`=22124, `DmgMultiplier1`=1 WHERE `Id`=38403; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectDieSides1`=1, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=23, `EffectAmplitude1`=4000, `EffectTriggerSpell1`=38405, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=38404; +UPDATE `spell_dbc` SET `ProcChance`=101, `StackAmount`=10, `Effect1`=6, `Effect2`=6, `EffectDieSides1`=1, `EffectDieSides2`=1, `EffectBasePoints1`=19, `EffectBasePoints2`=14, `EffectImplicitTargetA1`=1, `EffectImplicitTargetA2`=1, `EffectApplyAuraName1`=79, `EffectApplyAuraName2`=61, `EffectMiscValue1`=1, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=38405; +UPDATE `spell_dbc` SET `ProcFlags`=20, `ProcChance`=100, `Effect1`=6, `EffectDieSides1`=1, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=42, `EffectTriggerSpell1`=26886, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=38409; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `Effect2`=6, `EffectDieSides1`=1, `EffectImplicitTargetA1`=1, `EffectImplicitTargetA2`=1, `EffectApplyAuraName1`=23, `EffectApplyAuraName2`=23, `EffectAmplitude1`=29000, `EffectAmplitude2`=30000, `EffectTriggerSpell1`=38419, `EffectTriggerSpell2`=29878, `DmgClass`=1, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=38423; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=134, `EffectImplicitTargetA1`=25, `EffectMiscValue1`=22131, `DmgMultiplier1`=1 WHERE `Id`=38440; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=63, `Effect2`=6, `EffectDieSides1`=1, `EffectDieSides2`=1, `EffectImplicitTargetA1`=38, `EffectImplicitTargetA2`=1, `EffectApplyAuraName2`=23, `EffectAmplitude2`=2000, `EffectTriggerSpell2`=38360, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=38450; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectDieSides1`=1, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=4, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=38454; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `EffectDieSides1`=1, `EffectImplicitTargetA1`=17, `EffectRadiusIndex1`=28, `EffectMiscValue1`=22140, `DmgMultiplier1`=1 WHERE `Id`=38489; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `EffectDieSides1`=1, `EffectImplicitTargetA1`=17, `EffectRadiusIndex1`=28, `EffectMiscValue1`=22140, `DmgMultiplier1`=1 WHERE `Id`=38490; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `EffectDieSides1`=1, `EffectImplicitTargetA1`=17, `EffectRadiusIndex1`=28, `EffectMiscValue1`=22140, `DmgMultiplier1`=1 WHERE `Id`=38492; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `EffectDieSides1`=1, `EffectImplicitTargetA1`=17, `EffectRadiusIndex1`=28, `EffectMiscValue1`=22140, `DmgMultiplier1`=1 WHERE `Id`=38493; +UPDATE `spell_dbc` SET `ProcChance`=101, `BaseLevel`=1, `SpellLevel`=1, `Effect1`=41, `EffectDieSides1`=1, `EffectImplicitTargetA1`=53, `EffectRadiusIndex1`=16, `EffectMiscValue1`=22161, `DmgMultiplier1`=1 WHERE `Id`=38512; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `Effect2`=6, `Effect3`=6, `EffectDieSides1`=1, `EffectDieSides2`=1, `EffectBasePoints1`=199, `EffectBasePoints2`=999, `EffectImplicitTargetA1`=1, `EffectImplicitTargetA2`=1, `EffectImplicitTargetA3`=1, `EffectApplyAuraName1`=79, `EffectApplyAuraName2`=136, `EffectApplyAuraName3`=147, `EffectMiscValue1`=127, `EffectMiscValue2`=127, `EffectMiscValue3`=215, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=38514; +UPDATE `spell_dbc` SET `ProcChance`=101, `BaseLevel`=40, `SpellLevel`=40, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=23, `EffectAmplitude1`=1000, `EffectTriggerSpell1`=38521, `DmgClass`=2, `PreventionType`=2, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=38518; +UPDATE `spell_dbc` SET `ProcChance`=101, `BaseLevel`=40, `SpellLevel`=40, `Effect2`=98, `EffectDieSides2`=75, `EffectBasePoints2`=112, `EffectImplicitTargetA2`=22, `EffectImplicitTargetB2`=15, `EffectRadiusIndex2`=19, `DmgClass`=2, `PreventionType`=2, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=38521; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=1, `DmgMultiplier1`=1 WHERE `Id`=38525; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=1, `DmgMultiplier1`=1 WHERE `Id`=38527; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=77, `EffectImplicitTargetA1`=25, `DmgMultiplier1`=1 WHERE `Id`=38529; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=1, `EffectRadiusIndex1`=16, `DmgMultiplier1`=1 WHERE `Id`=38532; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=23, `EffectAmplitude1`=5000, `EffectTriggerSpell1`=38548, `DmgMultiplier1`=1 WHERE `Id`=38545; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=4, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=38547; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=1, `EffectRadiusIndex1`=16, `DmgMultiplier1`=1 WHERE `Id`=38548; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=1, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=38578; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `EffectDieSides1`=1, `EffectImplicitTargetA1`=32, `EffectRadiusIndex1`=16, `EffectMiscValue1`=22210, `DmgMultiplier1`=1 WHERE `Id`=38587; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=23, `EffectAmplitude1`=1000, `DmgMultiplier1`=1 WHERE `Id`=38600; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=38, `EffectRadiusIndex1`=18, `DmgMultiplier1`=1 WHERE `Id`=38640; +UPDATE `spell_dbc` SET `ProcChance`=101, `BaseLevel`=70, `SpellLevel`=70, `Effect1`=41, `EffectDieSides1`=1, `EffectImplicitTargetA1`=72, `EffectRadiusIndex1`=8, `EffectMiscValue1`=22250, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=38651; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=24, `EffectDieSides1`=1, `EffectImplicitTargetA1`=25, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=38656; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectDieSides1`=1, `EffectBasePoints1`=29999, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=34, `DmgMultiplier1`=1 WHERE `Id`=38662; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `DmgMultiplier1`=1 WHERE `Id`=38666; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `DmgMultiplier1`=1 WHERE `Id`=38667; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `DmgMultiplier1`=1 WHERE `Id`=38668; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=38, `EffectRadiusIndex1`=14, `DmgMultiplier1`=1 WHERE `Id`=38670; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=38, `EffectRadiusIndex1`=13, `DmgMultiplier1`=1 WHERE `Id`=38671; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=1, `DmgMultiplier1`=1 WHERE `Id`=38674; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `EffectImplicitTargetA1`=47, `EffectRadiusIndex1`=29, `EffectMiscValue1`=22267, `DmgMultiplier1`=1 WHERE `Id`=38675; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `EffectImplicitTargetA1`=48, `EffectRadiusIndex1`=29, `EffectMiscValue1`=22267, `DmgMultiplier1`=1 WHERE `Id`=38676; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `EffectImplicitTargetA1`=49, `EffectRadiusIndex1`=29, `EffectMiscValue1`=22267, `DmgMultiplier1`=1 WHERE `Id`=38677; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `EffectImplicitTargetA1`=50, `EffectRadiusIndex1`=29, `EffectMiscValue1`=22267, `DmgMultiplier1`=1 WHERE `Id`=38678; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `EffectImplicitTargetA1`=46, `EffectRadiusIndex1`=29, `EffectMiscValue1`=22259, `DmgMultiplier1`=1 WHERE `Id`=38679; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `EffectImplicitTargetA1`=18, `EffectMiscValue1`=22260, `DmgMultiplier1`=1 WHERE `Id`=38681; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=38, `EffectRadiusIndex1`=17, `DmgMultiplier1`=1 WHERE `Id`=38685; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=77, `EffectImplicitTargetA1`=22, `EffectImplicitTargetB1`=15, `EffectRadiusIndex1`=19, `DmgMultiplier1`=1 WHERE `Id`=38686; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectDieSides1`=1, `EffectBasePoints1`=2, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=139, `EffectMiscValue1`=1028, `DmgMultiplier1`=1 WHERE `Id`=38687; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectDieSides1`=1, `EffectBasePoints1`=-100, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=10, `DmgMultiplier1`=1 WHERE `Id`=38689; +UPDATE `spell_dbc` SET `ProcChance`=101, `StackAmount`=30, `Effect1`=6, `EffectDieSides1`=1, `EffectBasePoints1`=19, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=61, `DmgMultiplier1`=1 WHERE `Id`=38705; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=1, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=38706; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `EffectImplicitTargetA1`=46, `EffectRadiusIndex1`=29, `EffectMiscValue1`=22273, `DmgMultiplier1`=1 WHERE `Id`=38709; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=56, `EffectMiscValue1`=22277, `DmgMultiplier1`=1 WHERE `Id`=38710; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `Effect2`=6, `EffectDieSides1`=1, `EffectDieSides2`=1, `EffectImplicitTargetA1`=1, `EffectImplicitTargetA2`=1, `EffectApplyAuraName1`=139, `EffectApplyAuraName2`=139, `EffectMiscValue1`=1010, `EffectMiscValue2`=965, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=38713; +UPDATE `spell_dbc` SET `ProcFlags`=87380, `ProcChance`=100, `SpellLevel`=1, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=42, `EffectTriggerSpell1`=23256, `SpellFamilyName`=4, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=38716; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=76, `EffectDieSides1`=1, `EffectImplicitTargetA1`=72, `EffectRadiusIndex1`=14, `EffectMiscValue1`=185199, `DmgMultiplier1`=1 WHERE `Id`=38726; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=23, `EffectAmplitude1`=500, `EffectTriggerSpell1`=38724, `DmgMultiplier1`=1 WHERE `Id`=38727; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=26, `DmgMultiplier1`=1 WHERE `Id`=38735; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=22, `EffectImplicitTargetB1`=15, `EffectRadiusIndex1`=33, `DmgMultiplier1`=1 WHERE `Id`=38745; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=23, `EffectAmplitude1`=2000, `EffectTriggerSpell1`=38749, `DmgMultiplier1`=1 WHERE `Id`=38747; +UPDATE `spell_dbc` SET `ProcChance`=101, `BaseLevel`=20, `SpellLevel`=20, `Effect1`=77, `EffectDieSides1`=1, `EffectBasePoints1`=39434, `EffectImplicitTargetA1`=22, `EffectImplicitTargetB1`=15, `EffectRadiusIndex1`=12, `SpellFamilyName`=4, `SpellFamilyFlags1`=1, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=38749; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=77, `EffectDieSides1`=1, `EffectBasePoints1`=37090, `EffectImplicitTargetA1`=38, `DmgMultiplier1`=1 WHERE `Id`=38752; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=77, `EffectImplicitTargetA1`=1, `DmgMultiplier1`=1 WHERE `Id`=38756; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=24, `EffectImplicitTargetA1`=25, `DmgMultiplier1`=1 WHERE `Id`=38786; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `DmgMultiplier1`=1 WHERE `Id`=38789; +UPDATE `spell_dbc` SET `ProcFlags`=20, `ProcChance`=100, `MaxLevel`=1, `BaseLevel`=1, `SpellLevel`=1, `EquippedItemSubClassMask`=-1, `Effect1`=6, `EffectDieSides1`=1, `EffectBasePoints1`=-1, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=42, `EffectTriggerSpell1`=38804, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=38803; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `EffectImplicitTargetA1`=18, `EffectMiscValue1`=22339, `DmgMultiplier1`=1 WHERE `Id`=38854; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `EffectImplicitTargetA1`=18, `EffectMiscValue1`=22337, `DmgMultiplier1`=1 WHERE `Id`=38865; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=22, `EffectImplicitTargetB1`=7, `EffectRadiusIndex1`=20, `MaxAffectedTargets`=1, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=38872; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=77, `EffectImplicitTargetA1`=38, `DmgMultiplier1`=1 WHERE `Id`=38873; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `EffectDieSides1`=1, `EffectImplicitTargetA1`=18, `EffectMiscValue1`=22335, `DmgMultiplier1`=1 WHERE `Id`=38874; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectDieSides1`=1, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=23, `EffectAmplitude1`=30000, `EffectTriggerSpell1`=38877, `DmgMultiplier1`=1 WHERE `Id`=38878; +UPDATE `spell_dbc` SET `ProcChance`=101, `StackAmount`=3, `Effect1`=41, `Effect2`=6, `Effect3`=6, `EffectDieSides1`=1, `EffectDieSides2`=1, `EffectDieSides3`=1, `EffectBasePoints2`=-31, `EffectBasePoints3`=-31, `EffectImplicitTargetA1`=48, `EffectImplicitTargetA2`=1, `EffectImplicitTargetA3`=1, `EffectRadiusIndex1`=29, `EffectApplyAuraName2`=61, `EffectApplyAuraName3`=79, `EffectMiscValue1`=22344, `EffectMiscValue3`=127, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=38888; +UPDATE `spell_dbc` SET `ProcChance`=101, `StackAmount`=3, `Effect1`=41, `Effect2`=6, `Effect3`=6, `EffectDieSides1`=1, `EffectDieSides2`=1, `EffectDieSides3`=1, `EffectBasePoints2`=-31, `EffectBasePoints3`=-31, `EffectImplicitTargetA1`=42, `EffectImplicitTargetA2`=1, `EffectImplicitTargetA3`=1, `EffectRadiusIndex1`=29, `EffectApplyAuraName2`=61, `EffectApplyAuraName3`=79, `EffectMiscValue1`=22344, `EffectMiscValue3`=127, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=38889; +UPDATE `spell_dbc` SET `ProcChance`=101, `StackAmount`=3, `Effect1`=41, `Effect2`=6, `Effect3`=6, `EffectDieSides1`=1, `EffectDieSides2`=1, `EffectDieSides3`=1, `EffectBasePoints2`=-31, `EffectBasePoints3`=-31, `EffectImplicitTargetA1`=43, `EffectImplicitTargetA2`=1, `EffectImplicitTargetA3`=1, `EffectRadiusIndex1`=29, `EffectApplyAuraName2`=61, `EffectApplyAuraName3`=79, `EffectMiscValue1`=22344, `EffectMiscValue3`=127, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=38890; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `EffectDieSides1`=1, `EffectBasePoints1`=1, `EffectImplicitTargetA1`=18, `EffectMiscValue1`=22347, `DmgMultiplier1`=1 WHERE `Id`=38922; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `EffectDieSides1`=1, `EffectBasePoints1`=9, `EffectImplicitTargetA1`=18, `EffectMiscValue1`=22352, `DmgMultiplier1`=1 WHERE `Id`=38928; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=46, `Effect2`=6, `Effect3`=6, `EffectDieSides1`=1, `EffectDieSides2`=1, `EffectDieSides3`=1, `EffectBasePoints3`=29, `EffectImplicitTargetA1`=1, `EffectImplicitTargetA2`=1, `EffectImplicitTargetA3`=1, `EffectApplyAuraName2`=5, `EffectApplyAuraName3`=31, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=38931; +UPDATE `spell_dbc` SET `Dispel`=1, `ProcChance`=101, `BaseLevel`=20, `SpellLevel`=20, `EquippedItemSubClassMask`=-1, `Effect1`=6, `EffectDieSides1`=1, `EffectBasePoints1`=-1, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=23, `EffectAmplitude1`=3000, `EffectTriggerSpell1`=38999, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=38937; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `EffectImplicitTargetA1`=18, `EffectMiscValue1`=16805, `DmgMultiplier1`=1 WHERE `Id`=38953; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `EffectImplicitTargetA1`=18, `EffectMiscValue1`=21242, `DmgMultiplier1`=1 WHERE `Id`=38955; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `EffectImplicitTargetA1`=18, `EffectMiscValue1`=18470, `DmgMultiplier1`=1 WHERE `Id`=38956; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `EffectImplicitTargetA1`=18, `EffectMiscValue1`=21661, `DmgMultiplier1`=1 WHERE `Id`=38957; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `EffectImplicitTargetA1`=18, `EffectMiscValue1`=18452, `DmgMultiplier1`=1 WHERE `Id`=38958; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=4, `DmgMultiplier1`=1 WHERE `Id`=38969; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=123, `Effect2`=6, `Effect3`=61, `EffectImplicitTargetA1`=25, `EffectImplicitTargetA2`=25, `EffectApplyAuraName2`=23, `EffectAmplitude2`=1000, `EffectMiscValue1`=649, `EffectMiscValue3`=14374, `EffectTriggerSpell2`=38969, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=38970; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectImplicitTargetA1`=38, `EffectApplyAuraName1`=11, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=38972; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=61, `EffectMiscValue1`=14373, `DmgMultiplier1`=1 WHERE `Id`=38975; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `EffectImplicitTargetA1`=63, `EffectRadiusIndex1`=12, `EffectMiscValue1`=22459, `DmgMultiplier1`=1 WHERE `Id`=38978; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=134, `EffectImplicitTargetA1`=1, `EffectMiscValue1`=22348, `DmgMultiplier1`=1 WHERE `Id`=38982; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=134, `EffectImplicitTargetA1`=1, `EffectMiscValue1`=22351, `DmgMultiplier1`=1 WHERE `Id`=38983; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=134, `EffectImplicitTargetA1`=1, `EffectMiscValue1`=22350, `DmgMultiplier1`=1 WHERE `Id`=38984; +UPDATE `spell_dbc` SET `ProcFlags`=20, `ProcChance`=100, `Effect1`=6, `EffectDieSides1`=1, `EffectBasePoints1`=-1, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=42, `EffectTriggerSpell1`=39015, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=39014; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=1, `EffectRadiusIndex1`=36, `DmgMultiplier1`=1 WHERE `Id`=39041; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=134, `Effect2`=41, `EffectImplicitTargetA1`=1, `EffectImplicitTargetA2`=72, `EffectRadiusIndex2`=16, `EffectMiscValue1`=22383, `EffectMiscValue2`=22023, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=39074; +UPDATE `spell_dbc` SET `ProcChance`=101, `StackAmount`=3, `Effect1`=41, `Effect2`=6, `Effect3`=6, `EffectDieSides1`=1, `EffectDieSides2`=1, `EffectDieSides3`=1, `EffectBasePoints2`=-31, `EffectBasePoints3`=-21, `EffectImplicitTargetA1`=73, `EffectImplicitTargetA2`=1, `EffectImplicitTargetA3`=1, `EffectRadiusIndex1`=29, `EffectApplyAuraName2`=61, `EffectApplyAuraName3`=79, `EffectMiscValue1`=22390, `EffectMiscValue3`=127, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=39080; +UPDATE `spell_dbc` SET `ProcChance`=101, `StackAmount`=3, `Effect1`=41, `Effect2`=6, `Effect3`=6, `EffectDieSides1`=1, `EffectDieSides2`=1, `EffectDieSides3`=1, `EffectBasePoints2`=-31, `EffectBasePoints3`=-21, `EffectImplicitTargetA1`=72, `EffectImplicitTargetA2`=1, `EffectImplicitTargetA3`=1, `EffectRadiusIndex1`=29, `EffectApplyAuraName2`=61, `EffectApplyAuraName3`=79, `EffectMiscValue1`=22391, `EffectMiscValue3`=127, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=39081; +UPDATE `spell_dbc` SET `ProcFlags`=20, `ProcChance`=100, `BaseLevel`=70, `SpellLevel`=70, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=42, `EffectTriggerSpell1`=39087, `DmgClass`=1, `PreventionType`=1, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=39086; +UPDATE `spell_dbc` SET `ProcChance`=101, `EquippedItemSubClassMask`=-1, `Effect1`=41, `EffectDieSides1`=1, `EffectBasePoints1`=1, `EffectImplicitTargetA1`=72, `EffectRadiusIndex1`=13, `EffectMiscValue1`=19551, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=39110; +UPDATE `spell_dbc` SET `ProcChance`=101, `MaxLevel`=70, `Effect1`=41, `EffectImplicitTargetA1`=18, `EffectMiscValue1`=22408, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=39111; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=23, `EffectAmplitude1`=600000, `EffectTriggerSpell1`=39114, `DmgMultiplier1`=1 WHERE `Id`=39115; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=24, `EffectImplicitTargetA1`=25, `DmgMultiplier1`=1 WHERE `Id`=39118; +UPDATE `spell_dbc` SET `Dispel`=1, `ProcChance`=101, `BaseLevel`=20, `SpellLevel`=20, `EquippedItemSubClassMask`=-1, `Effect1`=6, `EffectDieSides1`=1, `EffectBasePoints1`=59, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=23, `EffectAmplitude1`=1000, `EffectTriggerSpell1`=39138, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=39137; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=38, `EffectRadiusIndex1`=16, `SpellFamilyName`=6, `SpellFamilyFlags1`=8388608, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=39142; +UPDATE `spell_dbc` SET `ProcFlags`=20, `ProcChance`=15, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=42, `EffectTriggerSpell1`=39153, `DmgMultiplier1`=1 WHERE `Id`=39152; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=77, `EffectImplicitTargetA1`=25, `DmgMultiplier1`=1 WHERE `Id`=39162; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=23, `EffectAmplitude1`=100, `EffectTriggerSpell1`=39166, `DmgMultiplier1`=1 WHERE `Id`=39167; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=25, `EffectRadiusIndex1`=13, `DmgMultiplier1`=1 WHERE `Id`=39173; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `EffectDieSides1`=1, `EffectImplicitTargetA1`=18, `EffectImplicitTargetB1`=73, `EffectRadiusIndex1`=21, `EffectMiscValue1`=19198, `DmgMultiplier1`=1 WHERE `Id`=39186; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `EffectImplicitTargetA1`=18, `EffectMiscValue1`=22449, `DmgMultiplier1`=1 WHERE `Id`=39191; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=24, `EffectImplicitTargetA1`=25, `DmgMultiplier1`=1 WHERE `Id`=39203; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `EffectImplicitTargetA1`=18, `EffectRadiusIndex1`=29, `EffectMiscValue1`=22483, `DmgMultiplier1`=1 WHERE `Id`=39240; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `EffectImplicitTargetA1`=18, `EffectRadiusIndex1`=29, `EffectMiscValue1`=22482, `DmgMultiplier1`=1 WHERE `Id`=39241; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=22, `EffectImplicitTargetB1`=7, `EffectRadiusIndex1`=18, `DmgMultiplier1`=1 WHERE `Id`=39243; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `EffectDieSides1`=2, `EffectBasePoints1`=1, `EffectImplicitTargetA1`=18, `EffectRadiusIndex1`=29, `EffectMiscValue1`=22482, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=39245; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `EffectDieSides1`=2, `EffectBasePoints1`=1, `EffectImplicitTargetA1`=18, `EffectRadiusIndex1`=29, `EffectMiscValue1`=22483, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=39247; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=38, `DmgMultiplier1`=1 WHERE `Id`=39250; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=77, `EffectImplicitTargetA1`=22, `EffectImplicitTargetB1`=7, `EffectRadiusIndex1`=28, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=39254; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectImplicitTargetA1`=5, `EffectApplyAuraName1`=4, `DmgMultiplier1`=1 WHERE `Id`=39260; +UPDATE `spell_dbc` SET `ProcFlags`=20, `ProcChance`=100, `Effect1`=6, `EffectDieSides1`=1, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=42, `EffectTriggerSpell1`=39266, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=39265; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=77, `EffectImplicitTargetA1`=38, `DmgMultiplier1`=1 WHERE `Id`=39276; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=22, `EffectImplicitTargetB1`=7, `EffectRadiusIndex1`=12, `DmgMultiplier1`=1 WHERE `Id`=39279; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=46, `Effect2`=6, `EffectDieSides1`=1, `EffectDieSides2`=1, `EffectImplicitTargetA1`=1, `EffectImplicitTargetA2`=1, `EffectApplyAuraName2`=12, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=39292; +UPDATE `spell_dbc` SET `SpellLevel`=1, `Effect2`=125, `EffectDieSides2`=1, `EffectBasePoints2`=-11, `EffectImplicitTargetA2`=6, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=39301; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `EffectImplicitTargetA1`=18, `EffectRadiusIndex1`=8, `EffectMiscValue1`=22506, `DmgMultiplier1`=1 WHERE `Id`=39302; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=4, `DmgMultiplier1`=1 WHERE `Id`=39304; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=41, `EffectImplicitTargetA1`=18, `EffectMiscValue1`=22507, `DmgMultiplier1`=1 WHERE `Id`=39305; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=23, `EffectAmplitude1`=15000, `EffectTriggerSpell1`=35487, `DmgMultiplier1`=1 WHERE `Id`=39308; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=77, `EffectImplicitTargetA1`=38, `DmgMultiplier1`=1 WHERE `Id`=39310; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=56, `EffectMiscValue1`=22509, `DmgMultiplier1`=1 WHERE `Id`=39311; +UPDATE `spell_dbc` SET `ProcChance`=101, `EquippedItemSubClassMask`=-1, `Effect1`=77, `EffectDieSides1`=1, `EffectBasePoints1`=10658, `EffectImplicitTargetA1`=25, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=39324; +UPDATE `spell_dbc` SET `ProcChance`=101, `EquippedItemSubClassMask`=-1, `Effect1`=77, `EffectDieSides1`=1, `EffectBasePoints1`=10660, `EffectImplicitTargetA1`=25, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=39325; +UPDATE `spell_dbc` SET `ProcChance`=101, `EquippedItemSubClassMask`=-1, `Effect1`=77, `EffectDieSides1`=1, `EffectBasePoints1`=10656, `EffectImplicitTargetA1`=25, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=39326; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectImplicitTargetA1`=25, `EffectApplyAuraName1`=23, `EffectAmplitude1`=1000, `EffectTriggerSpell1`=32559, `DmgMultiplier1`=1 WHERE `Id`=39327; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `Effect2`=6, `Effect3`=6, `EffectDieSides1`=1, `EffectDieSides2`=1, `EffectDieSides3`=1, `EffectBasePoints1`=249, `EffectBasePoints2`=249, `EffectBasePoints3`=249, `EffectImplicitTargetA1`=1, `EffectImplicitTargetA2`=1, `EffectImplicitTargetA3`=1, `EffectApplyAuraName1`=206, `EffectApplyAuraName2`=32, `EffectApplyAuraName3`=31, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=39333; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=24, `EffectImplicitTargetA1`=25, `DmgMultiplier1`=1 WHERE `Id`=39336; +UPDATE `spell_dbc` SET `ProcChance`=101, `StackAmount`=500, `Effect1`=6, `EffectDieSides1`=1, `EffectBasePoints1`=-51, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=61, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=39351; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=124, `EffectDieSides1`=1, `EffectBasePoints1`=-1, `EffectImplicitTargetA1`=22, `EffectImplicitTargetB1`=30, `EffectRadiusIndex1`=12, `EffectMiscValue1`=300, `DmgMultiplier1`=1 WHERE `Id`=39366; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=77, `EffectImplicitTargetA1`=22, `EffectImplicitTargetB1`=7, `EffectRadiusIndex1`=27, `DmgMultiplier1`=1 WHERE `Id`=39379; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=25, `EffectRadiusIndex1`=36, `DmgMultiplier1`=1 WHERE `Id`=39388; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=1, `EffectRadiusIndex1`=8, `DmgMultiplier1`=1 WHERE `Id`=39389; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=23, `EffectAmplitude1`=2000, `EffectTriggerSpell1`=39393, `DmgMultiplier1`=1 WHERE `Id`=39392; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=23, `EffectAmplitude1`=200, `EffectTriggerSpell1`=39395, `DmgMultiplier1`=1 WHERE `Id`=39394; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=39, `EffectMiscValue1`=127, `DmgMultiplier1`=1 WHERE `Id`=39397; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=22, `EffectImplicitTargetB1`=7, `EffectRadiusIndex1`=7, `DmgMultiplier1`=1 WHERE `Id`=39402; +UPDATE `spell_dbc` SET `ProcChance`=101, `BaseLevel`=1, `SpellLevel`=1, `Effect1`=42, `EffectDieSides1`=1, `EffectBasePoints1`=1, `EffectImplicitTargetA1`=46, `EffectMultipleValue1`=-1E+17, `EffectMiscValue1`=22398, `PreventionType`=1, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=39424; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=134, `EffectImplicitTargetA1`=25, `EffectMiscValue1`=22798, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=39426; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=134, `EffectImplicitTargetA1`=25, `EffectMiscValue1`=22799, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=39428; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=134, `EffectImplicitTargetA1`=25, `EffectMiscValue1`=22800, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=39430; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=134, `EffectImplicitTargetA1`=25, `EffectMiscValue1`=22801, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=39431; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=77, `EffectImplicitTargetA1`=1, `DmgMultiplier1`=1 WHERE `Id`=39448; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=4, `DmgMultiplier1`=1, `AreaGroupId`=80 WHERE `Id`=39485; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=22, `EffectImplicitTargetB1`=15, `EffectRadiusIndex1`=27, `DmgMultiplier1`=1 WHERE `Id`=39491; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=77, `EffectImplicitTargetA1`=1, `DmgMultiplier1`=1 WHERE `Id`=39494; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=1, `DmgMultiplier1`=1 WHERE `Id`=39496; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=1, `EffectRadiusIndex1`=16, `MaxAffectedTargets`=1, `DmgMultiplier1`=1 WHERE `Id`=39506; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=16, `EffectImplicitTargetA1`=1, `EffectMiscValue1`=9836, `DmgMultiplier1`=1 WHERE `Id`=39539; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=77, `EffectImplicitTargetA1`=1, `DmgMultiplier1`=1 WHERE `Id`=39570; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=77, `EffectImplicitTargetA1`=1, `DmgMultiplier1`=1 WHERE `Id`=39571; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=77, `EffectImplicitTargetA1`=1, `DmgMultiplier1`=1 WHERE `Id`=39572; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=77, `EffectImplicitTargetA1`=1, `DmgMultiplier1`=1 WHERE `Id`=39573; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=46, `Effect2`=6, `EffectDieSides1`=1, `EffectDieSides2`=1, `EffectImplicitTargetA1`=1, `EffectImplicitTargetA2`=1, `EffectApplyAuraName2`=12, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=39795; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=77, `EffectImplicitTargetA1`=1, `DmgMultiplier1`=1 WHERE `Id`=39892; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=24, `EffectDieSides1`=1, `EffectImplicitTargetA1`=25, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=40550; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=24, `EffectDieSides1`=1, `EffectImplicitTargetA1`=25, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=40551; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=24, `EffectDieSides1`=1, `EffectImplicitTargetA1`=25, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=40552; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=77, `EffectImplicitTargetA1`=6, `DmgMultiplier1`=1 WHERE `Id`=40609; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=25, `DmgMultiplier1`=1, `DmgMultiplier2`=1 WHERE `Id`=40800; +UPDATE `spell_dbc` SET `ProcChance`=101, `BaseLevel`=20, `SpellLevel`=20, `EquippedItemClass`=2, `EquippedItemSubClassMask`=262156, `Effect1`=2, `Effect2`=98, `EffectDieSides1`=19, `EffectDieSides2`=1, `EffectBasePoints1`=53, `EffectBasePoints2`=99, `EffectImplicitTargetA1`=6, `EffectImplicitTargetA2`=6, `EffectMiscValue2`=100, `SpellFamilyName`=9, `SpellFamilyFlags1`=1, `PreventionType`=2, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=42130; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=23, `EffectTriggerSpell1`=42415, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=42416; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=24, `EffectDieSides1`=1, `EffectBasePoints1`=99, `EffectImplicitTargetA1`=25, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=42752; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=24, `EffectDieSides1`=1, `EffectImplicitTargetA1`=25, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=42773; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=77, `EffectDieSides1`=1, `EffectBasePoints1`=44731, `EffectImplicitTargetA1`=22, `EffectImplicitTargetB1`=15, `EffectRadiusIndex1`=22, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=44733; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=23, `EffectAmplitude1`=3000, `EffectTriggerSpell1`=44965, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=44964; +UPDATE `spell_dbc` SET `ProcFlags`=664232, `ProcChance`=100, `ProcCharges`=1, `Effect1`=6, `EffectDieSides1`=1, `EffectBasePoints1`=-1, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=243, `EffectMiscValue1`=1814, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=45092; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=24, `EffectDieSides1`=1, `EffectImplicitTargetA1`=25, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=45126; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=24, `EffectDieSides1`=1, `EffectImplicitTargetA1`=25, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=45128; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=24, `EffectDieSides1`=1, `EffectImplicitTargetA1`=25, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=45132; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=24, `EffectDieSides1`=1, `EffectBasePoints1`=49, `EffectImplicitTargetA1`=25, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=46204; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `Effect2`=98, `EffectDieSides2`=1, `EffectBasePoints2`=249, `EffectImplicitTargetA1`=22, `EffectImplicitTargetA2`=18, `EffectImplicitTargetB1`=7, `EffectImplicitTargetB2`=8, `EffectRadiusIndex1`=15, `EffectRadiusIndex2`=8, `EffectApplyAuraName1`=12, `EffectMiscValue2`=50, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=46370; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=24, `EffectDieSides1`=1, `EffectBasePoints1`=99, `EffectImplicitTargetA1`=25, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=46752; +UPDATE `spell_dbc` SET `ProcChance`=101, `BaseLevel`=55, `SpellLevel`=55, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=249, `EffectMiscValueB1`=3, `SpellFamilyName`=15, `SpellFamilyFlags1`=8, `PreventionType`=1, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=47802; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectImplicitTargetA1`=27, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=49615; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=24, `EffectDieSides1`=1, `EffectBasePoints1`=99, `EffectImplicitTargetA1`=25, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=50209; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=24, `EffectDieSides1`=1, `EffectBasePoints1`=99, `EffectImplicitTargetA1`=25, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=50210; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=24, `EffectDieSides1`=1, `EffectBasePoints1`=99, `EffectImplicitTargetA1`=25, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=50211; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=77, `Effect2`=130, `EffectDieSides2`=1, `EffectBasePoints2`=99, `EffectImplicitTargetA1`=25, `EffectImplicitTargetA2`=25, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=50474; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=24, `EffectDieSides1`=1, `EffectBasePoints1`=99, `EffectImplicitTargetA1`=25, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=50847; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=24, `EffectDieSides1`=1, `EffectBasePoints1`=99, `EffectImplicitTargetA1`=25, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=50848; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=24, `EffectDieSides1`=1, `EffectBasePoints1`=99, `EffectImplicitTargetA1`=25, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=50849; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=24, `EffectDieSides1`=1, `EffectBasePoints1`=99, `EffectImplicitTargetA1`=25, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=50850; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=24, `EffectDieSides1`=1, `EffectBasePoints1`=99, `EffectImplicitTargetA1`=25, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=50851; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=24, `EffectDieSides1`=1, `EffectBasePoints1`=99, `EffectImplicitTargetA1`=25, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=50852; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=154, `EffectImplicitTargetA1`=25, `EffectMiscValue1`=226, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=50912; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=24, `EffectDieSides1`=1, `EffectBasePoints1`=99, `EffectImplicitTargetA1`=25, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=51452; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=24, `EffectDieSides1`=1, `EffectBasePoints1`=99, `EffectImplicitTargetA1`=25, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=51453; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=32, `EffectImplicitTargetA1`=48, `EffectRadiusIndex1`=14, `EffectTriggerSpell1`=51790, `SpellFamilyName`=9, `SpellFamilyFlags1`=128, `PreventionType`=1, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=51741; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `Effect2`=6, `EffectDieSides1`=1, `EffectDieSides2`=1, `EffectDieSides3`=1, `EffectBasePoints1`=-1, `EffectBasePoints2`=-1, `EffectBasePoints3`=-1, `EffectImplicitTargetA1`=1, `EffectImplicitTargetA2`=1, `EffectApplyAuraName1`=107, `EffectApplyAuraName2`=23, `EffectAmplitude2`=300000, `EffectMiscValue1`=8, `EffectSpellClassMaskA2`=8192, `SpellFamilyName`=5, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=54352; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=77, `EffectImplicitTargetA1`=1, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=56561; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=77, `EffectDieSides1`=1, `EffectBasePoints1`=43670, `EffectImplicitTargetA1`=1, `SpellFamilyName`=4, `SpellFamilyFlags1`=1, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=56866; +UPDATE `spell_dbc` SET `ProcChance`=101, `StackAmount`=1, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=4, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=58156; +UPDATE `spell_dbc` SET `ProcChance`=101, `StackAmount`=3, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=4, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=58162; +UPDATE `spell_dbc` SET `ProcChance`=101, `StackAmount`=4, `Effect1`=6, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=4, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=58164; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `Effect2`=6, `EffectDieSides1`=1, `EffectDieSides2`=1, `EffectDieSides3`=1, `EffectBasePoints1`=7, `EffectBasePoints2`=7, `EffectBasePoints3`=-1, `EffectImplicitTargetA1`=1, `EffectImplicitTargetA2`=1, `EffectApplyAuraName1`=211, `EffectApplyAuraName2`=172, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=61417; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `Effect2`=6, `EffectDieSides1`=1, `EffectDieSides2`=1, `EffectDieSides3`=1, `EffectBasePoints1`=14, `EffectBasePoints2`=14, `EffectBasePoints3`=-1, `EffectImplicitTargetA1`=1, `EffectImplicitTargetA2`=1, `EffectApplyAuraName1`=211, `EffectApplyAuraName2`=172, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=61418; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectImplicitTargetA1`=22, `EffectImplicitTargetB1`=15, `EffectRadiusIndex1`=28, `EffectApplyAuraName1`=4, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=62219; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=24, `EffectDieSides1`=1, `EffectBasePoints1`=99, `EffectImplicitTargetA1`=25, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=62843; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=24, `EffectDieSides1`=1, `EffectBasePoints1`=49, `EffectImplicitTargetA1`=25, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=62871; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=24, `EffectDieSides1`=1, `EffectImplicitTargetA1`=1, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=62984; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=24, `EffectDieSides1`=1, `EffectImplicitTargetA1`=25, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=62986; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=24, `EffectDieSides1`=1, `EffectImplicitTargetA1`=1, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=63376; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=24, `EffectDieSides1`=1, `EffectImplicitTargetA1`=1, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=63377; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=24, `EffectDieSides1`=1, `EffectImplicitTargetA1`=1, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=63378; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=24, `EffectDieSides1`=1, `EffectImplicitTargetA1`=1, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=63379; +UPDATE `spell_dbc` SET `ProcChance`=101, `BaseLevel`=1, `SpellLevel`=1, `Effect1`=77, `EffectDieSides2`=1, `EffectDieSides3`=1, `EffectBasePoints2`=-1, `EffectBasePoints3`=-1, `EffectImplicitTargetA1`=6, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=63974; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=24, `EffectDieSides1`=1, `EffectImplicitTargetA1`=1, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=64018; +UPDATE `spell_dbc` SET `ProcChance`=101, `BaseLevel`=40, `SpellLevel`=40, `Effect1`=6, `Effect2`=6, `Effect3`=6, `EffectDieSides1`=1, `EffectBasePoints1`=-1, `EffectImplicitTargetA1`=1, `EffectImplicitTargetA2`=1, `EffectImplicitTargetA3`=1, `EffectApplyAuraName1`=37, `EffectApplyAuraName2`=37, `EffectApplyAuraName3`=37, `EffectMiscValue1`=98, `EffectMiscValue2`=138, `EffectMiscValue3`=144, `SpellFamilyName`=9, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=64556; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=24, `EffectDieSides1`=1, `EffectBasePoints1`=99, `EffectImplicitTargetA1`=25, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=65741; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=24, `EffectDieSides1`=1, `EffectBasePoints1`=99, `EffectImplicitTargetA1`=25, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=65743; +UPDATE `spell_dbc` SET `ProcChance`=101, `BaseLevel`=80, `SpellLevel`=80, `StackAmount`=99, `Effect1`=6, `EffectDieSides1`=1, `EffectDieSides2`=1, `EffectBasePoints1`=-1, `EffectBasePoints2`=-1, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=4, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=66161; +UPDATE `spell_dbc` SET `ProcFlags`=139944, `ProcChance`=100, `BaseLevel`=80, `SpellLevel`=80, `Effect1`=6, `EffectDieSides1`=1, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=42, `EffectMiscValue1`=1, `EffectTriggerSpell1`=66161, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=66162; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=3, `EffectDieSides1`=1, `EffectBasePoints1`=66728, `EffectImplicitTargetA1`=22, `EffectImplicitTargetB1`=15, `EffectRadiusIndex1`=22, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=66732; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=24, `EffectDieSides1`=1, `EffectImplicitTargetA1`=25, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=66871; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=24, `EffectDieSides1`=1, `EffectImplicitTargetA1`=25, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=66872; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=24, `Effect2`=140, `EffectDieSides1`=1, `EffectImplicitTargetA1`=25, `EffectImplicitTargetA2`=25, `EffectTriggerSpell2`=66874, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=66873; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=24, `EffectDieSides1`=1, `EffectImplicitTargetA1`=25, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=66874; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=24, `Effect2`=140, `EffectDieSides1`=1, `EffectImplicitTargetA1`=25, `EffectImplicitTargetA2`=25, `EffectTriggerSpell2`=66876, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=66875; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=24, `EffectDieSides1`=1, `EffectImplicitTargetA1`=25, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=66876; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `Effect2`=63, `Effect3`=77, `EffectDieSides1`=1, `EffectDieSides2`=1, `EffectDieSides3`=1, `EffectBasePoints1`=-1, `EffectBasePoints2`=9999999, `EffectBasePoints3`=-1, `EffectImplicitTargetA1`=6, `EffectImplicitTargetA2`=6, `EffectImplicitTargetA3`=6, `EffectApplyAuraName1`=236, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=67580; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=2, `Effect2`=64, `EffectDieSides1`=1, `EffectBasePoints1`=-1, `EffectImplicitTargetA1`=6, `EffectImplicitTargetA2`=1, `EffectTriggerSpell2`=68497, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=68500; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=24, `EffectDieSides1`=1, `EffectImplicitTargetA1`=25, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=68807; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=24, `EffectDieSides1`=1, `EffectBasePoints1`=49, `EffectImplicitTargetA1`=25, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=68808; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=24, `EffectDieSides1`=1, `EffectBasePoints1`=49, `EffectImplicitTargetA1`=25, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=68809; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=24, `EffectDieSides1`=1, `EffectImplicitTargetA1`=25, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=68811; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=77, `EffectImplicitTargetA1`=18, `EffectImplicitTargetB1`=8, `EffectRadiusIndex1`=41, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=69643; +UPDATE `spell_dbc` SET `StancesNot`=1073741824, `ProcChance`=101, `SpellLevel`=1, `Effect1`=6, `EffectDieSides1`=1, `EffectBasePoints1`=-1, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=4, `EffectMiscValue1`=10, `EffectSpellClassMaskA1`=268436065, `EffectSpellClassMaskA2`=33554464, `SpellFamilyName`=11, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=69932; +UPDATE `spell_dbc` SET `ProcChance`=101, `BaseLevel`=83, `SpellLevel`=83, `Effect1`=77, `EffectDieSides1`=1, `EffectBasePoints1`=70156, `EffectImplicitTargetA1`=38, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=70159; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=6, `EffectDieSides1`=1, `EffectBasePoints1`=-1, `EffectImplicitTargetA1`=1, `EffectApplyAuraName1`=226, `EffectAmplitude1`=5000, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=71896; +UPDATE `spell_dbc` SET `ProcChance`=101, `SpellLevel`=80, `Effect1`=77, `EffectDieSides1`=1, `EffectBasePoints1`=-1, `EffectImplicitTargetA1`=22, `EffectImplicitTargetB1`=7, `EffectRadiusIndex1`=28, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=72291; +UPDATE `spell_dbc` SET `ProcChance`=101, `Effect1`=24, `EffectDieSides1`=1, `EffectImplicitTargetA1`=25, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=72826; +UPDATE `spell_dbc` SET `ProcChance`=101, `BaseLevel`=1, `SpellLevel`=1, `Effect1`=77, `EffectDieSides2`=1, `EffectDieSides3`=1, `EffectBasePoints2`=-1, `EffectBasePoints3`=-1, `EffectImplicitTargetA1`=6, `DmgMultiplier1`=1, `DmgMultiplier2`=1, `DmgMultiplier3`=1 WHERE `Id`=74210; diff --git a/sql/updates/world/2014_06_23_01_world_creature_text.sql b/sql/updates/world/2014_06_23_01_world_creature_text.sql new file mode 100644 index 00000000000..ed02107ade9 --- /dev/null +++ b/sql/updates/world/2014_06_23_01_world_creature_text.sql @@ -0,0 +1 @@ +UPDATE `creature_text` `A` INNER JOIN `broadcast_text` `B` ON `A`.`BroadcastTextID`=`B`.`ID` SET `A`.`Language`=`B`.`Language`; diff --git a/sql/updates/world/2014_06_23_03_world_misc.sql b/sql/updates/world/2014_06_23_03_world_misc.sql new file mode 100644 index 00000000000..a100c662823 --- /dev/null +++ b/sql/updates/world/2014_06_23_03_world_misc.sql @@ -0,0 +1,57 @@ +DELETE FROM `areatrigger_scripts` WHERE `entry` IN (5082,5083,5084); +INSERT INTO `areatrigger_scripts` (`entry`, `ScriptName`) VALUES +(5082,'SmartTrigger'), +(5083,'SmartTrigger'), +(5084,'SmartTrigger'); + +DELETE FROM `smart_scripts` WHERE `entryorguid` IN (5082,5083,5084) AND `source_type`=2; +INSERT INTO `smart_scripts` (`entryorguid`,`source_type`,`id`,`link`,`event_type`,`event_phase_mask`,`event_chance`,`event_flags`,`event_param1`,`event_param2`,`event_param3`,`event_param4`,`action_type`,`action_param1`,`action_param2`,`action_param3`,`action_param4`,`action_param5`,`action_param6`,`target_type`,`target_param1`,`target_param2`,`target_param3`,`target_x`,`target_y`,`target_z`,`target_o`,`comment`) VALUES +(5082,2,0,1,46,0,100,0,5082,0,0,0,45,1,1,0,0,0,0,10,126866,15214,0,0,0,0,0,"On Trigger - Set Data"), +(5083,2,0,1,46,0,100,0,5083,0,0,0,45,1,2,0,0,0,0,10,126866,15214,0,0,0,0,0,"On Trigger - Set Data"), +(5084,2,0,1,46,0,100,0,5084,0,0,0,45,1,3,0,0,0,0,10,126866,15214,0,0,0,0,0,"On Trigger - Set Data"); + +DELETE FROM `smart_scripts` WHERE `entryorguid` =-126866 AND `source_type`=0; +INSERT INTO `smart_scripts` (`entryorguid`,`source_type`,`id`,`link`,`event_type`,`event_phase_mask`,`event_chance`,`event_flags`,`event_param1`,`event_param2`,`event_param3`,`event_param4`,`action_type`,`action_param1`,`action_param2`,`action_param3`,`action_param4`,`action_param5`,`action_param6`,`target_type`,`target_param1`,`target_param2`,`target_param3`,`target_x`,`target_y`,`target_z`,`target_o`,`comment`) VALUES +(-126866,0,0,1,38,0,100,0,1,1,60000,60000,45,1,1,0,0,0,0,10,126860,28965,0,0,0,0,0,"Invisible Stalker - On Data Set - Set Data"), +(-126866,0,1,2,61,0,100,0,0,0,0,0,45,1,1,0,0,0,0,10,126848,28965,0,0,0,0,0,"Invisible Stalker - Linked with Previous Event - Set Data"), +(-126866,0,2,3,61,0,100,0,0,0,0,0,45,1,1,0,0,0,0,10,126851,28965,0,0,0,0,0,"Invisible Stalker - Linked with Previous Event - Set Data"), +(-126866,0,3,4,61,0,100,0,0,0,0,0,45,1,1,0,0,0,0,10,126836,28961,0,0,0,0,0,"Invisible Stalker - Linked with Previous Event - Set Data"), +(-126866,0,4,5,61,0,100,0,0,0,0,0,45,1,1,0,0,0,0,10,126847,28961,0,0,0,0,0,"Invisible Stalker - Linked with Previous Event - Set Data"), +(-126866,0,5,6,61,0,100,0,0,0,0,0,45,1,1,0,0,0,0,10,126846,28961,0,0,0,0,0,"Invisible Stalker - Linked with Previous Event - Set Data"), +(-126866,0,6,7,61,0,100,0,0,0,0,0,45,1,1,0,0,0,0,10,126844,28961,0,0,0,0,0,"Invisible Stalker - Linked with Previous Event - Set Data"), +(-126866,0,7,28,61,0,100,0,0,0,0,0,45,1,1,0,0,0,0,10,126845,28961,0,0,0,0,0,"Invisible Stalker - Linked with Previous Event - Set Data"), +(-126866,0,8,9,38,0,100,0,1,2,60000,60000,45,1,1,0,0,0,0,10,126837,28961,0,0,0,0,0,"Invisible Stalker - On Data Set - Set Data"), +(-126866,0,9,10,61,0,100,0,0,0,0,0,45,1,1,0,0,0,0,10,126852,28965,0,0,0,0,0,"Invisible Stalker - Linked with Previous Event - Set Data"), +(-126866,0,10,11,61,0,100,0,0,0,0,0,45,1,1,0,0,0,0,10,126861,28965,0,0,0,0,0,"Invisible Stalker - Linked with Previous Event - Set Data"), +(-126866,0,11,12,61,0,100,0,0,0,0,0,45,1,1,0,0,0,0,10,126838,28961,0,0,0,0,0,"Invisible Stalker - Linked with Previous Event - Set Data"), +(-126866,0,12,13,61,0,100,0,0,0,0,0,45,1,1,0,0,0,0,10,126843,28961,0,0,0,0,0,"Invisible Stalker - Linked with Previous Event - Set Data"), +(-126866,0,13,14,61,0,100,0,0,0,0,0,45,1,1,0,0,0,0,10,126841,28961,0,0,0,0,0,"Invisible Stalker - Linked with Previous Event - Set Data"), +(-126866,0,14,15,61,0,100,0,0,0,0,0,45,1,1,0,0,0,0,10,126849,28965,0,0,0,0,0,"Invisible Stalker - Linked with Previous Event - Set Data"), +(-126866,0,15,29,61,0,100,0,0,0,0,0,45,1,1,0,0,0,0,10,126862,28965,0,0,0,0,0,"Invisible Stalker - Linked with Previous Event - Set Data"), +(-126866,0,16,17,38,0,100,0,1,3,60000,60000,45,1,1,0,0,0,0,10,126857,28965,0,0,0,0,0,"Invisible Stalker - On Data Set - Set Data"), +(-126866,0,17,18,61,0,100,0,0,0,0,0,45,1,1,0,0,0,0,10,126855,28965,0,0,0,0,0,"Invisible Stalker - Linked with Previous Event - Set Data"), +(-126866,0,18,19,61,0,100,0,0,0,0,0,45,1,1,0,0,0,0,10,126859,28965,0,0,0,0,0,"Invisible Stalker - Linked with Previous Event - Set Data"), +(-126866,0,19,20,61,0,100,0,0,0,0,0,45,1,1,0,0,0,0,10,126854,28965,0,0,0,0,0,"Invisible Stalker - Linked with Previous Event - Set Data"), +(-126866,0,20,21,61,0,100,0,0,0,0,0,45,1,1,0,0,0,0,10,126853,28965,0,0,0,0,0,"Invisible Stalker - Linked with Previous Event - Set Data"), +(-126866,0,21,22,61,0,100,0,0,0,0,0,45,1,1,0,0,0,0,10,126858,28965,0,0,0,0,0,"Invisible Stalker - Linked with Previous Event - Set Data"), +(-126866,0,22,23,61,0,100,0,0,0,0,0,45,1,1,0,0,0,0,10,126856,28965,0,0,0,0,0,"Invisible Stalker - Linked with Previous Event - Set Data"), +(-126866,0,23,24,61,0,100,0,0,0,0,0,45,1,1,0,0,0,0,10,126850,28965,0,0,0,0,0,"Invisible Stalker - Linked with Previous Event - Set Data"), +(-126866,0,24,25,61,0,100,0,0,0,0,0,45,1,1,0,0,0,0,10,126835,28961,0,0,0,0,0,"Invisible Stalker - Linked with Previous Event - Set Data"), +(-126866,0,25,26,61,0,100,0,0,0,0,0,45,1,1,0,0,0,0,10,126840,28961,0,0,0,0,0,"Invisible Stalker - Linked with Previous Event - Set Data"), +(-126866,0,26,27,61,0,100,0,0,0,0,0,45,1,1,0,0,0,0,10,126839,28961,0,0,0,0,0,"Invisible Stalker - Linked with Previous Event - Set Data"), +(-126866,0,27,0,61,0,100,0,0,0,0,0,45,1,1,0,0,0,0,10,126842,28961,0,0,0,0,0,"Invisible Stalker - Linked with Previous Event - Set Data"); + +DELETE FROM `smart_scripts` WHERE `entryorguid` IN (28961,28965) AND `id`>3; +INSERT INTO `smart_scripts` (`entryorguid`, `source_type`, `id`, `link`, `event_type`, `event_phase_mask`, `event_chance`, `event_flags`, `event_param1`, `event_param2`, `event_param3`, `event_param4`, `action_type`, `action_param1`, `action_param2`, `action_param3`, `action_param4`, `action_param5`, `action_param6`, `target_type`, `target_param1`, `target_param2`, `target_param3`, `target_x`, `target_y`, `target_z`, `target_o`, `comment`) VALUES +(28961, 0, 4, 0, 4, 0, 100, 0, 0, 0, 0, 0, 28, 16245, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'Titanium Siegebreaker - On Aggro - Remove Freeze Animation'), +(28965, 0, 4, 0, 4, 0, 100, 0, 0, 0, 0, 0, 28, 16245, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'Titanium Thunderer - On Aggro - Remove Freeze Animation'), +(28961, 0, 5, 8,38, 0, 35, 0, 1, 1, 0, 0, 19, 33555200, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'Titanium Siegebreaker - On Data Set - Remove Unattackable Flags'), +(28965, 0, 5, 10,38, 0, 35, 0, 1, 1, 0, 0, 19, 33555200, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'Titanium Thunderer - On Data Set - Remove Unattackable Flags'), +(28961, 0, 6, 0, 2, 0, 100, 1, 0, 20, 0, 0, 11, 19134, 2, 0, 0, 0, 0, 16, 0, 0, 0, 0, 0, 0, 0, 'Titanium Siegebreaker - On Death - Cast Frightening Shout'), +(28961, 0, 7, 0, 9, 0, 100, 0, 0, 5, 10000, 15000, 11, 52890, 2, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 'Titanium Siegebreaker - On Range - Cast Penetrating Strike'), +(28965, 0, 6, 0,13, 0, 100, 3, 45000, 60000, 0, 0, 11, 52885, 2, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 'Titanium Thunderer - On Target Casting - Cast Deadly Throw'), +(28965, 0, 7, 0,13, 0, 100, 5, 45000, 60000, 0, 0, 11, 59180, 2, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 'Titanium Thunderer - On Target Casting - Cast Deadly Throw (Heroic)'), +(28965, 0, 8, 0,0, 0, 100, 2, 0, 5000, 7000, 15000, 11, 52904, 2, 0, 0, 0, 0,5, 0, 0, 0, 0, 0, 0, 0, 'Titanium Thunderer - IC - Cast Throw'), +(28965, 0, 9, 0,0, 0, 100, 4, 0, 5000, 7000, 15000, 11, 59179, 2, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 'Titanium Thunderer - IC - Cast Throw (Heroic)'), +(28961, 0, 8, 0,61, 0, 100, 0, 0, 0, 0, 0, 49, 0, 0, 0, 0, 0, 0, 21, 80, 0, 0, 0, 0, 0, 0, 'Titanium Siegebreaker - Linked with Previous Event - Attack closest player'), +(28965, 0, 10, 0,61, 0, 100, 0, 0, 0, 0, 0, 49, 0, 0, 0, 0, 0, 0, 21,80, 0, 0, 0, 0, 0, 0, 'Titanium Thunderer - Linked with Previous Event - Attack closest player'); diff --git a/sql/updates/world/2014_06_23_04_world_gameobject.sql b/sql/updates/world/2014_06_23_04_world_gameobject.sql new file mode 100644 index 00000000000..d3efda89e5b --- /dev/null +++ b/sql/updates/world/2014_06_23_04_world_gameobject.sql @@ -0,0 +1,6 @@ +-- +SET @GUID1 := 5380; -- Set by TDB team + +DELETE FROM `gameobject` WHERE (`guid`=@GUID1); +INSERT INTO `gameobject` (`guid`, `id`, `map`, `spawnMask`, `phaseMask`, `position_x`, `position_y`, `position_z`, `orientation`, `rotation0`, `rotation1`, `rotation2`, `rotation3`, `spawntimesecs`, `animprogress`, `state`) VALUES +(@GUID1, 180659, 1, 1, 1, 5086.19, -5116.32, 931.162, 4.78877, 0, 0, 0.679593, -0.733589, -150, 0, 1); diff --git a/sql/updates/world/2014_06_23_05_world_creature_template.sql b/sql/updates/world/2014_06_23_05_world_creature_template.sql new file mode 100644 index 00000000000..7fe21f2699b --- /dev/null +++ b/sql/updates/world/2014_06_23_05_world_creature_template.sql @@ -0,0 +1,2 @@ +-- +UPDATE `creature_template` SET `exp`=2 WHERE `entry` IN(23564,24198); diff --git a/sql/updates/world/2014_06_23_06_world_misc.sql b/sql/updates/world/2014_06_23_06_world_misc.sql new file mode 100644 index 00000000000..ab2bf07579c --- /dev/null +++ b/sql/updates/world/2014_06_23_06_world_misc.sql @@ -0,0 +1,6 @@ +-- +UPDATE `smart_scripts` SET `target_param2`=30 WHERE `entryorguid`=22444 AND `source_type`=0 AND `id`=1; +UPDATE `gameobject_template` SET `ainame`='SmartGameObjectAI' WHERE `entry`=185298; +DELETE FROM `smart_scripts` WHERE `entryorguid`=185298 AND `source_type`=1; +INSERT INTO `smart_scripts` (`entryorguid`, `source_type`, `id`, `link`, `event_type`, `event_phase_mask`, `event_chance`, `event_flags`, `event_param1`, `event_param2`, `event_param3`, `event_param4`, `action_type`, `action_param1`, `action_param2`, `action_param3`, `action_param4`, `action_param5`, `action_param6`, `target_type`, `target_param1`, `target_param2`, `target_param3`, `target_x`, `target_y`, `target_z`, `target_o`, `comment`) VALUES +(185298,1,0,0,70,0,100,0,2,0,0,0,41,0,0,0,0,0,0,19,22444,5,0,0,0,0,0,'Anchorite Relic - On State Changed - Despawn Anchorite Relic Bunny'); diff --git a/sql/updates/world/2014_06_23_07_world_misc_335a.sql b/sql/updates/world/2014_06_23_07_world_misc_335a.sql new file mode 100644 index 00000000000..f4ab6a4f67e --- /dev/null +++ b/sql/updates/world/2014_06_23_07_world_misc_335a.sql @@ -0,0 +1,55 @@ +-- Texts needs to be updated for cata (no BroadcastTextID because this reason) +UPDATE `gameobject_template` SET `AIName`= 'SmartGameObjectAI' WHERE `entry`=148498; + +DELETE FROM `smart_scripts` WHERE `entryorguid` =148498; +INSERT INTO `smart_scripts` (`entryorguid`, `source_type`, `id`, `link`, `event_type`, `event_phase_mask`, `event_chance`, `event_flags`, `event_param1`, `event_param2`, `event_param3`, `event_param4`, `action_type`, `action_param1`, `action_param2`, `action_param3`, `action_param4`, `action_param5`, `action_param6`, `target_type`, `target_param1`, `target_param2`, `target_param3`, `target_x`, `target_y`, `target_z`, `target_o`, `comment`) VALUES +(148498,1,0,1,62,0,100,0,1282,0,0,0,72,0,0,0,0,0,0,7,0,0,0,0,0,0,0,'Altar of Suntara - On Gossip Select - Close gossip'), +(148498,1,1,0,61,0,100,0,0,0,0,0,12,8391,3,300000,0,0,0,8,0,0,0,-6460.528,-1267.63,180.7818,1.89,'Altar of Suntara - Linked with previous event - spawn Lathoric the Black'); + + +UPDATE `creature_template` SET `AIName`= 'SmartAI' WHERE `entry`=8391; + +DELETE FROM `smart_scripts` WHERE `entryorguid` =8391; +INSERT INTO `smart_scripts` (`entryorguid`, `source_type`, `id`, `link`, `event_type`, `event_phase_mask`, `event_chance`, `event_flags`, `event_param1`, `event_param2`, `event_param3`, `event_param4`, `action_type`, `action_param1`, `action_param2`, `action_param3`, `action_param4`, `action_param5`, `action_param6`, `target_type`, `target_param1`, `target_param2`, `target_param3`, `target_x`, `target_y`, `target_z`, `target_o`, `comment`) VALUES +(8391, 0,0,1,11,0,100,0,0,0,0,0,69,0,0,0,0,0,0,8,0,0,0,-6475.467285,-1242.283203,180.190109,3.58,'Lathoric the Black - On Spawn - Move to Altar of Suntara'), +(8391, 0,1,0,61,0,100,1,0,0,0,0,12,8421,3,45000,0,0,0,8,0,0,0,-6481.127441,-1237.451538,180.067535,5.104429,'Lathoric the Black - Linked with Previous Event - Spawn Dorius'), +(8391, 0,2,0,1 ,0,100,1,8000,8000,0,0,1,0,5000,0,0,0,0,9,8421,0,100,0,0,0,0,'Lathoric the Black - OOC - Say (Dorius)'), +(8391, 0,3,0,52,0,100,0,0,8421,0,0,1,1,5000,0,0,0,0,9,8421,0,100,0,0,0,0,'Lathoric the Black - On Text Over - Say (Dorius)'), +(8391, 0,4,0,52,0,100,0,1,8421,0,0,1,2,5000,0,0,0,0,9,8421,0,100,0,0,0,0,'Lathoric the Black - On Text Over - Say (Dorius)'), +(8391, 0,5,0,52,0,100,0,2,8421,0,0,1,3,5000,0,0,0,0,9,8421,0,100,0,0,0,0,'Lathoric the Black - On Text Over - Say (Dorius)'), +(8391, 0,6,0,52,0,100,0,3,8421,0,0,1,4,5000,0,0,0,0,9,8421,0,100,0,0,0,0,'Lathoric the Black - On Text Over - Say (Dorius)'), +(8391, 0,7,0,52,0,100,0,4,8421,0,0,1,0,5000,0,0,0,0,1,0,0,0,0,0,0,0,'Lathoric the Black - On Text Over - Say'), +(8391, 0,8,0,52,0,100,0,0,8391,0,0,1,1,2000,0,0,0,0,1,0,0,0,0,0,0,0,'Lathoric the Black - On Text Over - Say'), +(8391, 0,9,10,52,0,100,0,1,8391,0,0,45,1,1,0,0,0,0,10,5799,8400,0,0,0,0,0,'Lathoric the Black - OOC - Send Data to Obsidion'), +(8391, 0,10,11,61,0,100,1,0,0,0,0,101,0,0,0,0,0,0,1,0,0,0,0,0,0,0,'Lathoric the Black - Linked with Previous Event - Set Home Position'), +(8391, 0,11,0,61,0,100,1,0,0,0,0,49,0,0,0,0,0,0,21,100,0,0,0,0,0,0,'Lathoric the Black - Linked with Previous Event - Attack'), +(8391, 0,12,0,7,0,100,1,0,0,0,0,41,0,0,0,0,0,0,1,0,0,0,0,0,0,0,'Lathoric the Black - On Evade - Despawn'), +(8391, 0,13,0,11,0,100,1,0,0,0,0,8,1,0,0,0,0,0,1,0,0,0,0,0,0,0,'Lathoric the Black - On Spawn - Set React State Defensive'); + +UPDATE `creature_template` SET `AIName`= 'SmartAI' WHERE `entry`=8400; + +DELETE FROM `smart_scripts` WHERE `entryorguid` =8400; +INSERT INTO `smart_scripts` (`entryorguid`, `source_type`, `id`, `link`, `event_type`, `event_phase_mask`, `event_chance`, `event_flags`, `event_param1`, `event_param2`, `event_param3`, `event_param4`, `action_type`, `action_param1`, `action_param2`, `action_param3`, `action_param4`, `action_param5`, `action_param6`, `target_type`, `target_param1`, `target_param2`, `target_param3`, `target_x`, `target_y`, `target_z`, `target_o`, `comment`) VALUES +(8400, 0,0,1,38,0,100,0,1,1,0,0,19,256,0,0,0,0,0,8,0,0,0,0,0,0,0,'Obsidion - On Data Set - Remove Unattackable Flags'), +(8400, 0,1,2,61,0,100,0,0,0,0,0,91,7,0,0,0,0,0,1,0,0,0,0,0,0,0,'Obsidion - Linked with Previous Event - Set Bytes_1'), +(8400, 0,2,0,61,0,100,0,0,0,0,0,49,0,0,0,0,0,0,21,100,0,0,0,0,0,0,'Obsidion - Linked with Previous Event - Attack'), +(8400, 0,3,4,7,0,100,0,0,0,0,0,90,7,0,0,0,0,0,1,0,0,0,0,0,0,0,'Obsidion - On Evade - Set Bytes_1'), +(8400, 0,4,0,61,0,100,0,0,0,0,0,18,256,0,0,0,0,0,1,0,0,0,0,0,0,0,'Obsidion - On Evade - Set Unit Flags'), +(8400, 0,5,0,9,0,100,0,0,10,20000,30000,11,12734,2,0,0,0,0,1,0,0,0,0,0,0,0,'Obsidion - On Range - Cast Floor Smash'), +(8400, 0,6,0,9,0,100,0,0,5,15000,30000,11,10101,2,0,0,0,0,7,0,0,0,0,0,0,0,'Obsidion - On Range - Cast Knock Away'); + +DELETE FROM `creature_text` WHERE `entry` IN (8391,8421); +INSERT INTO `creature_text` (`entry`,`groupid`,`id`,`text`,`type`,`language`,`probability`,`emote`,`duration`,`sound`,`comment`) VALUES +(8421,0,0,'Fools. I knew that if I played upon my brother''s feeble emotions, he would send ''rescuers.''',12,0,100,0,0,0,'Dorius'), +(8421,1,0,'How easy it was to manipulate you into recovering the last Suntara stone from those imbeciles of the Twilight''s Hammer.',12,0,100,0,0,0,'Dorius'), +(8421,2,0,'When I stumbled upon the Suntara stones at the Grimesilt Digsite, the power of Ragnaros surged through my being. It was Ragnaros that gave me a purpose.',12,0,100,0,0,0,'Dorius'), +(8421,3,0,'It was the will of Ragnaros that Obsidion be built. Obsidion will destroy the Blackrock orcs of Blackrock Spire, uniting us with our bretheren in the fiery depths.',12,0,100,0,0,0,'Dorius'), +(8421,4,0,'And ultimately, it was Ragnaros that named me when I was reborn as an acolyte of fire: Lathoric... Lathoric the Black.',12,0,100,0,0,0,'Dorius'), +(8391,0,0,'Your task is complete. Prepare to meet your doom.',12,0,100,0,0,0,'Lathoric the Black'), +(8391,1,0,'Obsidion, Rise and Serve your Master!',12,0,100,0,0,0,'Lathoric the Black'); + +UPDATE `creature_template` SET `AIName`= 'SmartAI' WHERE `entry`=8417; + +DELETE FROM `smart_scripts` WHERE `entryorguid` =8417; +INSERT INTO `smart_scripts` (`entryorguid`, `source_type`, `id`, `link`, `event_type`, `event_phase_mask`, `event_chance`, `event_flags`, `event_param1`, `event_param2`, `event_param3`, `event_param4`, `action_type`, `action_param1`, `action_param2`, `action_param3`, `action_param4`, `action_param5`, `action_param6`, `target_type`, `target_param1`, `target_param2`, `target_param3`, `target_x`, `target_y`, `target_z`, `target_o`, `comment`) VALUES +(8417,0,0,0,19,0,100,0,3566,0,0,0,12,8391,3,300000,0,0,0,8,0,0,0,-6460.528,-1267.63,180.7818,1.89,' Dying Archaeologist - On Quest Accept - spawn Lathoric the Black'); diff --git a/sql/updates/world/2014_06_23_08_world_gameobject_loot_template.sql b/sql/updates/world/2014_06_23_08_world_gameobject_loot_template.sql new file mode 100644 index 00000000000..d2d47c32cd0 --- /dev/null +++ b/sql/updates/world/2014_06_23_08_world_gameobject_loot_template.sql @@ -0,0 +1,2 @@ +-- +UPDATE `gameobject_loot_template` SET `ChanceOrQuestChance`=100 WHERE `entry`=13580 AND `item`=12845; diff --git a/sql/updates/world/2014_06_23_09_world_misc.sql b/sql/updates/world/2014_06_23_09_world_misc.sql new file mode 100644 index 00000000000..7fe4481b53a --- /dev/null +++ b/sql/updates/world/2014_06_23_09_world_misc.sql @@ -0,0 +1,15 @@ +-- +UPDATE `gameobject_template` SET `AIName`='SmartGameObjectAI' WHERE `entry`=185928; + +DELETE FROM `smart_scripts` WHERE `entryorguid`=185928 AND `source_type`=1; +INSERT INTO `smart_scripts` (`entryorguid`, `source_type`, `id`, `link`, `event_type`, `event_phase_mask`, `event_chance`, `event_flags`, `event_param1`, `event_param2`, `event_param3`, `event_param4`, `action_type`, `action_param1`, `action_param2`, `action_param3`, `action_param4`, `action_param5`, `action_param6`, `target_type`, `target_param1`, `target_param2`, `target_param3`, `target_x`, `target_y`, `target_z`, `target_o`, `comment`) VALUES +(185928, 1, 0, 1, 62, 0, 100, 0, 8687, 0, 0, 0, 85, 41004, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 'Ancient Skull Pile - On Gossip Option 0 Selected - Invoker Cast Summon Terokk'), +(185928, 1, 1, 0, 61, 0, 100, 0, 0, 0, 0, 0, 72, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 'Ancient Skull Pile - On Gossip Option 0 Selected - Close Gossip'); + +DELETE FROM `event_scripts` WHERE `id` =15014; +INSERT INTO `event_scripts` (`id`, `delay`, `command`, `datalong`, `datalong2`, `dataint`, `x`, `y`, `z`, `o`) VALUES +(15014, 0, 10, 21838, 3000000, 0, -3789.4, 3507.63, 286.982, -0.994838); + +DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId`=15 AND `SourceGroup`=8687 AND `ConditionTypeOrReference`=29; +INSERT INTO `conditions` (`SourceTypeOrReferenceId`, `SourceGroup`, `SourceEntry`, `SourceId`, `ElseGroup`, `ConditionTypeOrReference`, `ConditionTarget`, `ConditionValue1`, `ConditionValue2`, `ConditionValue3`, `NegativeCondition`, `ErrorType`, `ErrorTextId`, `ScriptName`, `Comment`) VALUES +(15, 8687, 0, 0, 0, 29, 0, 21838, 200, 0, 1, 0, 0, '', 'Only show gossip if no terokk nearby'); diff --git a/sql/updates/world/2014_06_23_10_world_misc.sql b/sql/updates/world/2014_06_23_10_world_misc.sql new file mode 100644 index 00000000000..fe333a4743a --- /dev/null +++ b/sql/updates/world/2014_06_23_10_world_misc.sql @@ -0,0 +1,24 @@ +-- +UPDATE `creature_template` SET `AIName`= 'SmartAI', `ScriptName`= '' WHERE `entry`=4979; + +DELETE FROM `smart_scripts` WHERE `entryorguid` =4979 AND `source_type`=0; +INSERT INTO `smart_scripts` (`entryorguid`,`source_type`,`id`,`link`,`event_type`,`event_phase_mask`,`event_chance`,`event_flags`,`event_param1`,`event_param2`,`event_param3`,`event_param4`,`action_type`,`action_param1`,`action_param2`,`action_param3`,`action_param4`,`action_param5`,`action_param6`,`target_type`,`target_param1`,`target_param2`,`target_param3`,`target_x`,`target_y`,`target_z`,`target_o`,`comment`) VALUES +(4979,0,0,1,62,0,100,0,8851,0,0,0,81,0,0,0,0,0,0,1,0,0,0,0,0,0,0,'Theramore Guard - on Gossip option select - set NPC Flags'), +(4979,0,1,2,61,0,100,0,0,0,0,0,72,0,0,0,0,0,0,1,0,0,0,0,0,0,0,'Theramore Guard - Linked with Previous Event - Close Gossip'), +(4979,0,2,3,61,0,100,0,0,0,0,0,1,0,3000,0,0,0,0,1,0,0,0,0,0,0,0,'Theramore Guard - Linked with Previous Event - Say Line 0'), +(4979,0,3,0,61,0,100,0,0,0,0,0,64,1,0,0,0,0,0,7,0,0,0,0,0,0,0,'Theramore Guard - Linked with Previous Event - Store Targetlist'), +(4979,0,4,0,52,0,100,0,0,4979,0,0,11,42725,0,0,0,0,0,1,0,0,0,0,0,0,0,'Theramore Guard - Linked with Previous Event - Cast Doctored Leaflet'), +(4979,0,5,6,23,0,100,0,42246,1,121000,121000,1,1,3000,0,0,0,0,1,0,0,0,0,0,0,0,'Theramore Guard - On Has Aura Propagandized! - Say Line 1'), +(4979,0,6,0,61,0,100,0,0,0,0,0,33,4979,0,0,0,0,0,12,1,0,0,0,0,0,0,'Theramore Guard - Linked with Previous Event - Give Kill Credit'), +(4979,0,7,8,52,0,100,0,1,4979,0,0,1,2,4000,0,0,0,0,1,0,0,0,0,0,0,0,'Theramore Guard - On Text Over Line 1 - Say line 2'), +(4979,0,8,0,61,0,100,0,0,0,0,0,5,11,0,0,0,0,0,1,0,0,0,0,0,0,0,'Theramore Guard - Linked with Previous Event - Play Emote ONESHOT_LAUGH'), +(4979,0,9,0,52,0,100,0,2,4979,0,0,81,1,0,0,0,0,0,1,0,0,0,0,0,0,0,'Theramore Guard - On Text Over Line 2 - Set NPC Flags'); + +DELETE FROM `gossip_menu_option` WHERE `menu_id` in(8851); +INSERT INTO `gossip_menu_option` (`menu_id`, `id`, `option_icon`, `option_text`, `OptionBroadcastTextID`, `option_id`, `npc_option_npcflag`, `action_menu_id`, `action_poi_id`, `box_coded`, `box_money`, `box_text`, `BoxBroadcastTextID`) VALUES +(8851, 0, 0, 'You look like an intelligent person. Why don''t you read one of these leaflets and give it some thought?', 22549, 1, 1, 21084, 0, 0, 0, NULL, 0); + +DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId`=15 AND `SourceGroup` IN(8851); +INSERT INTO `conditions` (`SourceTypeOrReferenceId`, `SourceGroup`, `SourceEntry`, `SourceId`, `ElseGroup`, `ConditionTypeOrReference`, `ConditionTarget`, `ConditionValue1`, `ConditionValue2`, `ConditionValue3`, `NegativeCondition`, `ErrorType`, `ErrorTextId`, `ScriptName`, `Comment`) VALUES +(15, 8851, 0, 0, 0, 9, 0, 11133, 0, 0, 0, 0, 0, '', 'Gossip Option requires Discrediting the Deserters Taken'), +(15, 8851, 0, 0, 0, 1, 1, 42246, 0, 0, 1, 0, 0, '', 'Gossip Option requires NPC does not have aura Propagandized!'); diff --git a/sql/updates/world/2014_06_23_11_world_misc.sql b/sql/updates/world/2014_06_23_11_world_misc.sql new file mode 100644 index 00000000000..878889e7a7a --- /dev/null +++ b/sql/updates/world/2014_06_23_11_world_misc.sql @@ -0,0 +1,22 @@ +-- +UPDATE `creature_template` SET `AIName`='SmartAI' WHERE `entry`=27353; + +DELETE FROM `smart_scripts` WHERE `source_type`=0 AND `entryorguid`=27353; +INSERT INTO `smart_scripts` (`entryorguid`, `source_type`, `id`, `link`, `event_type`, `event_phase_mask`, `event_chance`, `event_flags`, `event_param1`, `event_param2`, `event_param3`, `event_param4`, `action_type`, `action_param1`, `action_param2`, `action_param3`, `action_param4`, `action_param5`, `action_param6`, `target_type`, `target_param1`, `target_param2`, `target_param3`, `target_x`, `target_y`, `target_z`, `target_o`, `comment`) VALUES +(27353, 0, 0, 0, 11, 0, 100, 0, 0, 0, 0, 0, 12, 27238, 2, 120000, 0, 0, 0, 8, 0, 0, 0, 2802.381836,-199.922272,139.160980,3.575861, 'Levine Family Termite Bunny - On Spawn - Summon Foreman Kaleiki'); + +DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId`=22 AND `SourceEntry` =27353; +INSERT INTO `conditions` (`SourceTypeOrReferenceId`,`SourceGroup`,`SourceEntry`,`SourceId`,`ElseGroup`,`ConditionTypeOrReference`,`ConditionTarget`,`ConditionValue1`,`ConditionValue2`,`ConditionValue3`,`NegativeCondition`,`ErrorTextId`,`ScriptName`,`Comment`) VALUES +(22,1,27353,0,0,29,1,27238,40,0,1,0,'',' Foreman Kaleiki only spawns if not present'); + +UPDATE `creature_template` SET `AIName`='SmartAI' WHERE `entry`=27238; +DELETE FROM `smart_scripts` WHERE `source_type`=0 AND `entryorguid`=27238; +INSERT INTO `smart_scripts` (`entryorguid`, `source_type`, `id`, `link`, `event_type`, `event_phase_mask`, `event_chance`, `event_flags`, `event_param1`, `event_param2`, `event_param3`, `event_param4`, `action_type`, `action_param1`, `action_param2`, `action_param3`, `action_param4`, `action_param5`, `action_param6`, `target_type`, `target_param1`, `target_param2`, `target_param3`, `target_x`, `target_y`, `target_z`, `target_o`, `comment`) VALUES +(27238, 0, 0, 0, 9, 0, 100, 0, 0, 5, 14000, 18000, 11, 9080, 2, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 'Foreman Kaleiki - On Range - Cast Hamstring'), +(27238, 0, 1, 0, 0, 0, 100, 0, 8000, 11000, 8000, 11000, 11, 43673, 2, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 'Foreman Kaleiki - IC - Cast Mighty Blow'), +(27238, 0, 2, 3,11, 0, 100, 0, 0, 0, 0, 0, 2, 14, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'Foreman Kaleiki - On Spawn - Set Faction'), +(27238, 0, 3, 0,61, 0, 100, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'Foreman Kaleiki - Linked with Previous Event - Say'); + +DELETE FROM `creature_text` WHERE `entry` =27238; +INSERT INTO `creature_text` (`entry`, `groupid`, `id`, `text`, `type`, `language`, `probability`, `emote`, `duration`, `sound`, `comment`, `BroadcastTextID`) VALUES +(27238, 0, 0, 'My beautiful mill. You! You\'ll die for this!', 12, 0, 100, 0, 0, 0, 'Foreman Kaleiki', 26418); diff --git a/sql/updates/world/2014_06_23_12_world_misc.sql b/sql/updates/world/2014_06_23_12_world_misc.sql new file mode 100644 index 00000000000..eb2d5285933 --- /dev/null +++ b/sql/updates/world/2014_06_23_12_world_misc.sql @@ -0,0 +1,128 @@ +-- Quest 12467: Chasing Icestorm: Thel'zan's Phylactery +-- Icestorm SAI +SET @ENTRY := 26287; +SET @SPELL1 := 47425; -- Frost Breath +SET @SPELL2 := 49695; -- Summon Thel'zan's Phylactery + +UPDATE `creature_template` SET `AIName`= 'SmartAI' WHERE `entry`=@ENTRY; + +DELETE FROM `smart_scripts` WHERE `source_type`=0 AND `entryorguid`=@ENTRY; +DELETE FROM `smart_scripts` WHERE `source_type`=9 AND `entryorguid`=@ENTRY*100; +INSERT INTO `smart_scripts` (`entryorguid`,`source_type`,`id`,`link`,`event_type`,`event_phase_mask`,`event_chance`,`event_flags`,`event_param1`,`event_param2`,`event_param3`,`event_param4`,`action_type`,`action_param1`,`action_param2`,`action_param3`,`action_param4`,`action_param5`,`action_param6`,`target_type`,`target_param1`,`target_param2`,`target_param3`,`target_x`,`target_y`,`target_z`,`target_o`,`comment`) VALUES +(@ENTRY,0,0,1,11,0,100,0,0,0,0,0,3,0,24165,0,0,0,0,1,0,0,0,0,0,0,0,'Icestorm - Just created - set model'), +(@ENTRY,0,1,2,61,0,100,0,0,0,0,0,60,1,0,0,0,0,0,1,0,0,0,0,0,0,0,'Icestorm - Just created - turn fly on'), +(@ENTRY,0,2,0,61,0,100,0,0,0,0,0,53,1,@ENTRY*100,0,0,0,0,1,0,0,0,0,0,0,0,'Icestorm - Just created - load path'), +(@ENTRY,0,3,0,0,0,100,0,1000,3000,3000,5000,11,@SPELL1,0,0,0,0,0,5,0,0,0,0,0,0,0,'Icestorm - Combat - Cast Frost Breath'), +(@ENTRY,0,4,11,6,0,100,0,0,0,0,0,11,@SPELL2,3,0,0,0,0,1,0,0,0,0,0,0,0,'Icestorm - On death - Cast Summon Thel''zan''s Phylactery'), +(@ENTRY,0,5,6,4,0,100,0,0,0,0,0,45,0,1,0,0,0,0,11,27843,100,0,0,0,0,0,'Wyrmbait - reach waypoint path 1 wp 5 - set data'), +(@ENTRY,0,6,7,61,0,100,0,0,0,0,0,60,0,0,0,0,0,0,1,0,0,0,0,0,0,0,'Wyrmbait - reach waypoint path 1 wp 5 - Run Script'), +(@ENTRY,0,7,0,61,0,100,0,0,0,0,0,80,@ENTRY*100,2,0,0,0,0,1,0,0,0,0,0,0,0,'Wyrmbait - reach waypoint path 1 wp 5 - Run Script'), +(@ENTRY,0,8,0,4,0,100,0,0,0,0,0,91,50331648,0,0,0,0,0,1,0,0,0,0,0,0,0,'Icestorm - Just created - turn fly on'), +(@ENTRY,0,9,0,40,0,100,0,0,0,0,0,101,0,0,0,0,0,0,1,0,0,0,0,0,0,0,'Icestorm - On WP - Set Home Position'), +(@ENTRY,0,10,0,40,0,100,0,5,@ENTRY*100,0,0,1,0,0,0,0,0,0,19,27844,0,0,0,0,0,0,'Wyrmbait - reach waypoint path 1 wp 5 - Say'), +(@ENTRY,0,11,0,61,0,100,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,'Icestorm - On Death - Say'), +(@ENTRY*100,9,0,0,0,0,100,0,0,0,0,0,60,0,0,0,0,0,0,1,0,0,0,0,0,0,0,'Wyrmbait - reach waypoint path 2 wp 1 - turn fly off'), +(@ENTRY*100,9,1,0,0,0,100,0,0,0,0,0,53,0,@ENTRY*100+1,2,0,0,0,1,0,0,0,0,0,0,0,'Icestorm - script - load path'); + +-- waypoints for Icestorm +DELETE FROM `waypoints` WHERE `entry` IN (@ENTRY*100,@ENTRY*100+1); +INSERT INTO `waypoints` (`entry`,`pointid`,`position_x`,`position_y`,`position_z`,`point_comment`) VALUES +(@ENTRY*100,5,4543.821,45.72195,104.5742, 'Icestorm'), +(@ENTRY*100,4,4551.378,94.04321,127.0742, 'Icestorm'), +(@ENTRY*100,3,4561.495,200.4222,139.8242, 'Icestorm'), +(@ENTRY*100,2,4560.903,224.9135,135.4687, 'Icestorm'), +(@ENTRY*100,1,4561.007,225.9081,135.4687, 'Icestorm'), +(@ENTRY*100+1,1,4543.458,46.66932,82.14817, 'Icestorm'); + +-- Update Model info for Icestorm +UPDATE `creature_model_info` SET `bounding_radius`=1.5,`combat_reach`=7.5 WHERE `modelid`=16919; + +DELETE FROM `creature_model_info` WHERE `modelid`=24165; +INSERT INTO `creature_model_info` (`modelid`,`bounding_radius`,`combat_reach`,`gender`) VALUES +(24165,1.5,7.5,2); + +-- Add creature_template_addon for Icestorm +DELETE FROM `creature_template_addon` WHERE `entry`=26287; +INSERT INTO `creature_template_addon` (`entry`,`bytes1`,`bytes2`) VALUES (26287,50331648,1); + +-- 7th Legion Harpoon Gun SAI +SET @ENTRY := 27839; +SET @SPELL1 := 49679; -- Harpoon Chain +SET @SPELL2 := 49682; -- Harpoon Chain +SET @SPELL3 := 49683; -- Harpoon Chain +SET @SPELL4 := 49684; -- Harpoon Chain + +UPDATE `creature_template` SET `AIName`= 'SmartAI' WHERE `entry`=@ENTRY; + +DELETE FROM `smart_scripts` WHERE `source_type`=0 AND `entryorguid`=@ENTRY; +INSERT INTO `smart_scripts` (`entryorguid`,`source_type`,`id`,`link`,`event_type`,`event_phase_mask`,`event_chance`,`event_flags`,`event_param1`,`event_param2`,`event_param3`,`event_param4`,`action_type`,`action_param1`,`action_param2`,`action_param3`,`action_param4`,`action_param5`,`action_param6`,`target_type`,`target_param1`,`target_param2`,`target_param3`,`target_x`,`target_y`,`target_z`,`target_o`,`comment`) VALUES +(@ENTRY,0,0,0,1,1,100,0,2000,2000,2000,2000,11,@SPELL1,0,0,0,0,0,11,26287,100,0,0,0,0,0,'7th Legion Harpoon Gun - OOC - Cast spell (phase 1)'), +(@ENTRY,0,1,0,38,0,100,0,0,1,0,0,22,1,0,0,0,0,0,1,0,0,0,0,0,0,0,'7th Legion Harpoon Gun - on dataset 0 1 - set phase 1'); + +-- Spell Conditions +DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId`=13 AND `SourceEntry` IN (49679,49682,49683,49684); +INSERT INTO `conditions` (`SourceTypeOrReferenceId`,`SourceGroup`,`SourceEntry`,`ElseGroup`,`ConditionTypeOrReference`,`ConditionValue1`,`ConditionValue2`,`ConditionValue3`,`ErrorTextId`,`ScriptName`,`Comment`) VALUES +(13,1,49679,0,31,3,26287,0,0,'','Spell 49679 can only target Icestorm'), +(13,1,49682,0,31,3,26287,0,0,'','Spell 49682 can only target Icestorm'), +(13,1,49683,0,31,3,26287,0,0,'','Spell 49683 can only target Icestorm'), +(13,1,49684,0,31,3,26287,0,0,'','Spell 49684 can only target Icestorm'); + +-- Gossip option +DELETE FROM `gossip_menu_option` WHERE `menu_id` IN (9603); +INSERT INTO `gossip_menu_option` (`menu_id`, `id`, `option_icon`, `option_text`, `OptionBroadcastTextID`, `option_id`, `npc_option_npcflag`, `action_menu_id`, `action_poi_id`, `box_coded`, `box_money`, `box_text`, `BoxBroadcastTextID`) VALUES +(9603, 0, 0, 'Wyrmbait, eh? Welp, go fetch us Icestorm!', 27137, 1, 1, 0, 0, 0, 0, '', 0); + +-- Conditions for the gossip options +DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId` IN (15) AND `SourceGroup` IN (9603); +INSERT INTO `conditions` (`SourceTypeOrReferenceId`,`SourceGroup`,`SourceEntry`,`ElseGroup`,`ConditionTypeOrReference`,`ConditionValue1`,`comment`) VALUES +(15,9603,0,0,9,12467,'Gossip option 0 requires quest 12467 active'); + +-- Wyrmbait SAI +SET @ENTRY := 27843; +SET @SPELL1 := 15620; -- Shoot + +UPDATE `creature_template` SET `AIName`= 'SmartAI' WHERE `entry`=@ENTRY; + +DELETE FROM `smart_scripts` WHERE `source_type`=0 AND `entryorguid`=@ENTRY AND `id`>13; +DELETE FROM `smart_scripts` WHERE `source_type`=9 AND `entryorguid` IN (@ENTRY*100,@ENTRY*100+1); +INSERT INTO `smart_scripts` (`entryorguid`,`source_type`,`id`,`link`,`event_type`,`event_phase_mask`,`event_chance`,`event_flags`,`event_param1`,`event_param2`,`event_param3`,`event_param4`,`action_type`,`action_param1`,`action_param2`,`action_param3`,`action_param4`,`action_param5`,`action_param6`,`target_type`,`target_param1`,`target_param2`,`target_param3`,`target_x`,`target_y`,`target_z`,`target_o`,`comment`) VALUES +(@ENTRY,0,14,0,62,0,100,0,9603,0,0,0,80,@ENTRY*100,2,0,0,0,0,1,0,0,0,0,0,0,0,'Wyrmbait - gossip option select - Run Script'), +(@ENTRY,0,15,0,0,0,100,1,0,0,0,0,39,100,0,0,0,0,0,1,0,0,0,0,0,0,0,'Wyrmbait - combat - call for help'), +(@ENTRY,0,17,0,7,0,100,0,0,0,0,0,81,1,0,0,0,0,0,1,0,0,0,0,0,0,0,'Wyrmbait - on reset - add npcflag'), +(@ENTRY,0,18,0,40,0,100,0,5,@ENTRY*100,0,0,12,26287,6,14000,0,1,0,8,0,0,0,4561.007,225.9081,135.4687,4.939622,'Wyrmbait - reach waypoint path 0 wp 4 - spawn Icestorm'), +(@ENTRY,0,19,0,40,0,100,0,8,@ENTRY*100,0,0,60,0,0,0,0,0,0,1,0,0,0,0,0,0,0,'Wyrmbait - reach waypoint path 1 wp 4 - turn fly off'), +(@ENTRY,0,20,0,40,0,100,0,9,@ENTRY*100,0,0,66,0,0,0,0,0,0,8,0,0,0,0,0,0,1.67552,'Wyrmbait - reach waypoint path 1 wp 9 - turn to'), +(@ENTRY,0,21,0,38,0,100,0,0,1,0,0,80,@ENTRY*100+1,2,0,0,0,0,1,0,0,0,0,0,0,0,'7th Legion Harpoon Gun - on dataset 0 1 - run script'), +(@ENTRY*100,9,0,0,0,0,100,0,0,0,0,0,72,0,0,0,0,0,0,7,0,0,0,0,0,0,0,'Wyrmbait - script - close gossip'), +(@ENTRY*100,9,1,0,0,0,100,0,0,0,0,0,18,33280,0,0,0,0,0,1,0,0,0,0,0,0,0,'Wyrmbait - script - set unit flags'), +(@ENTRY*100,9,2,0,0,0,100,0,0,0,0,0,83,1,0,0,0,0,0,1,0,0,0,0,0,0,0,'Wyrmbait - script - remove npc flag'), +(@ENTRY*100,9,3,0,0,0,100,0,500,500,0,0,5,66,0,0,0,0,0,1,0,0,0,0,0,0,0,'Wyrmbait - script - emote'), +(@ENTRY*100,9,4,0,0,0,100,0,4000,4000,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,'Wyrmbait - script - say 0'), +(@ENTRY*100,9,5,0,0,0,100,0,5000,5000,0,0,60,1,0,0,0,0,0,1,0,0,0,0,0,0,0,'Wyrmbait - script - turn fly on'), +(@ENTRY*100,9,6,0,0,0,100,0,0,0,0,0,53,1,@ENTRY*100,0,0,0,0,1,0,0,0,0,0,0,0,'Wyrmbait - script - load path'), +(@ENTRY*100,9,7,0,0,0,100,0,0,0,0,0,45,0,1,0,0,0,0,11,27839,100,0,0,0,0,0,'Wyrmbait - script - set data on 7th Legion Harpoon Gun'), +(@ENTRY*100+1,9,0,0,0,0,100,0,0,0,0,0,18,32768,0,0,0,0,0,1,0,0,0,0,0,0,0,'Wyrmbait - script - set unit flags'), +(@ENTRY*100+1,9,1,0,0,0,100,0,0,0,0,0,19,768,0,0,0,0,0,1,0,0,0,0,0,0,0,'Wyrmbait - script - set unit flags'), +(@ENTRY*100+1,9,2,0,0,0,100,0,0,0,0,0,43,0,0,0,0,0,0,1,0,0,0,0,0,0,0,'Wyrmbait - script - Dismount'), +(@ENTRY*100+1,9,3,0,0,0,100,0,0,0,0,0,8,2,0,0,0,0,0,1,0,0,0,0,0,0,0,'Wyrmbait - script - Set Agressive'), +(@ENTRY*100+1,9,6,0,0,0,100,0,0,0,0,0,49,0,0,0,0,0,0,11,26287,100,0,0,0,0,0,'Wyrmbait - script - attack start'); + +-- waypoints for Wyrmbait +DELETE FROM `waypoints` WHERE `entry` IN (@ENTRY*100,@ENTRY*100+1,@ENTRY*100+2); +INSERT INTO `waypoints` (`entry`,`pointid`,`position_x`,`position_y`,`position_z`,`point_comment`) VALUES +(@ENTRY*100,1,4534.954,32.78271,88.17386, 'Wyrmbait'), +(@ENTRY*100,2,4537.267,76.02501,97.88784, 'Wyrmbait'), +(@ENTRY*100,3,4544.147,147.8844,108.8601, 'Wyrmbait'), +(@ENTRY*100,4,4549.169,196.2009,121.7767, 'Wyrmbait'), +(@ENTRY*100,5,4568.908,150.4734,113.5349, 'Wyrmbait'), +(@ENTRY*100,6,4552.6,67.66856,92.95158, 'Wyrmbait'), +(@ENTRY*100,7,4541.015,34.2519,88.31277, 'Wyrmbait'), +(@ENTRY*100,8,4548.401,3.602159,71.40673, 'Wyrmbait'), +(@ENTRY*100,9,4548.401,3.60216,70.40673, 'Wyrmbait'), +(@ENTRY*100+1,1,4545.04,34.41992,80.48003, 'Wyrmbait'); + +DELETE FROM `creature_text` WHERE `entry`IN(27843,27844,26287); +INSERT INTO `creature_text` (`entry`, `groupid`, `id`, `text`, `type`, `language`, `probability`, `emote`, `duration`, `sound`, `comment`, `BroadcastTextID`) VALUES +(26287, 0, 0, 'Thel\'zan\'s phylactery drops to the ground beneath Icestorm', 41, 0, 100, 0, 0, 0, 'Icestorm', 27125), +(27843, 0, 0, 'I\'ll flush her out, $N! You just be ready for her when she comes in!', 12, 0, 100, 1, 0, 0, 'Wyrmbait', 27120), +(27844, 0, 0, 'FIRE! FIRE! BRING HER DOWN!', 14, 0, 100, 0, 0, 0, 'Legion Commander Tyralion', 27123); diff --git a/sql/updates/world/2014_06_23_13_world_spell_group.sql b/sql/updates/world/2014_06_23_13_world_spell_group.sql new file mode 100644 index 00000000000..fb763d82e24 --- /dev/null +++ b/sql/updates/world/2014_06_23_13_world_spell_group.sql @@ -0,0 +1,2 @@ +-- +DELETE FROM `spell_group` WHERE id=2 AND spell_id=11364; diff --git a/sql/updates/world/2014_06_23_14_world_misc.sql b/sql/updates/world/2014_06_23_14_world_misc.sql new file mode 100644 index 00000000000..22eac2a435c --- /dev/null +++ b/sql/updates/world/2014_06_23_14_world_misc.sql @@ -0,0 +1,54 @@ +-- Fix quest 11879 "Kaw the Mammoth Destroyer" +-- Set to SAI and delete CAIS +UPDATE `creature_template` SET `AIName`='SmartAI' WHERE `entry`='25802'; +UPDATE `creature_template` SET `AIName`='SmartAI' WHERE `entry`='25881'; + +-- Wooly Mammoth Bull SAI +UPDATE `creature_template` SET `npcflag`=16777216 WHERE `entry`=25743; + +UPDATE `creature_template` SET `spell1`=46317,`spell2`=46315,`spell3`=46316,`Health_mod`=2 WHERE `entry`=25743; +DELETE FROM `smart_scripts` WHERE `entryorguid`=25743 AND `source_type`=0 AND `id` IN (2,3); +INSERT INTO `smart_scripts` (`entryorguid`,`source_type`,`id`,`link`,`event_type`,`event_phase_mask`,`event_chance`,`event_flags`,`event_param1`,`event_param2`,`event_param3`,`event_param4`,`action_type`,`action_param1`,`action_param2`,`action_param3`,`action_param4`,`action_param5`,`action_param6`,`target_type`,`target_param1`,`target_param2`,`target_param3`,`target_x`,`target_y`,`target_z`,`target_o`,`comment`) VALUES +(25743,0,2,0,27,0,100,0,0,0,0,0,8,0,0,0,0,0,0,1,0,0,0,0,0,0,0,'Wooly Mammoth Bull - On Passenger board - Set react state passive'), +(25743,0,3,0,28,0,100,0,0,0,0,0,41,1,0,0,0,0,0,1,0,0,0,0,0,0,0,'Wooly Mammoth Bull - On Passenger remove - Despawn'); + +-- Wooly Mammoth Bull Vehicle condition +DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId`=16 AND `SourceEntry`=25743; +INSERT INTO `conditions` (`SourceTypeOrReferenceId`,`SourceGroup`,`SourceEntry`,`SourceId`,`ElseGroup`,`ConditionTypeOrReference`,`ConditionTarget`,`ConditionValue1`,`ConditionValue2`,`ConditionValue3`,`NegativeCondition`,`ErrorTextId`,`ScriptName`,`Comment`) VALUES +(16,0,25743,0,0,9,0,11879,0,0,0,0,'','Vehicle Wooly Mammoth Bull requires quest 11879'); + +-- Apply rep aura on quest accept +DELETE FROM `spell_area` WHERE `spell`=46234; +INSERT INTO `spell_area` (`spell`, `area`, `quest_start`, `quest_end`, `aura_spell`, `racemask`, `gender`, `autocast`, `quest_start_status`, `quest_end_status`) VALUES +(46234, 3537, 11879, 0, 0, 0, 2, 1, 74, 11); + +-- Kaw speach on event start +DELETE FROM `creature_text` WHERE `entry`='25802'; +INSERT INTO `creature_text` (`entry`, `groupid`, `id`, `text`, `type`, `language`, `probability`, `emote`, `duration`, `sound`, `comment`, `BroadcastTextID`) VALUES +(25802, 0, 0, 'You challenge Kaw, destroyer of mammoths? Then face me and feel my thunder!', 14, 0, 100, 0, 0, 0, 'Kaw the Mammoth Destroyer', 25071); + +-- Kaw SAI +DELETE FROM `smart_scripts` WHERE `entryorguid`='25802' and `source_type`=0; +DELETE FROM `smart_scripts` WHERE `entryorguid`='2580200' and `source_type`=9; +INSERT INTO `smart_scripts` (`entryorguid`,`source_type`,`id`,`link`,`event_type`,`event_phase_mask`,`event_chance`,`event_flags`,`event_param1`,`event_param2`,`event_param3`,`event_param4`,`action_type`,`action_param1`,`action_param2`,`action_param3`,`action_param4`,`action_param5`,`action_param6`,`target_type`,`target_param1`,`target_param2`,`target_param3`,`target_x`,`target_y`,`target_z`,`target_o`,`comment`) VALUES +(25802,0,0,0,1,0,100,1,0,0,0,0,18,33024,0,0,0,0,0,1,0,0,0,0,0,0,0,'Kaw - OOC - Make self unattackable'), +(25802,0,1,0,38,0,100,0,1,1,0,0,80,2580200,2,0,0,0,0,1,0,0,0,0,0,0,0,'Kaw - On Data Set 1 1 - Run Script'), +(25802,0,2,0,6,0,100,0,0,0,0,0,11,46310,2,0,0,0,0,1,0,0,0,0,0,0,0,'Kaw - On Death - Cast Drop War Halberd'), +(2580200,9,0,0,0,0,100,1,0,0,0,0,1,0,2000,0,0,0,0,1,0,0,0,0,0,0,0,'Kaw - Timed - Yell'), +(2580200,9,1,0,0,0,100,1,0,0,0,0,59,1,0,0,0,0,0,1,0,0,0,0,0,0,0,'Kaw - Timed - Enable Running'), +(2580200,9,2,0,0,0,100,1,3000,3000,0,0,69,0,0,0,0,0,0,8,0,0,0,3974.17,5476.31,35.602,5.564,'Kaw - Timed - Move to Moria'), +(2580200,9,3,0,0,0,100,1,2500,2500,0,0,11,46260,2,0,0,0,0,19,25881,100,0,0,0,0,0,'Kaw - Timed - Mount to Moria'); + +-- Moria SAI +DELETE FROM `smart_scripts` WHERE `entryorguid`='25881'; +DELETE FROM `smart_scripts` WHERE `entryorguid`='2588100'; + +INSERT INTO `smart_scripts` (`entryorguid`,`source_type`,`id`,`link`,`event_type`,`event_phase_mask`,`event_chance`,`event_flags`,`event_param1`,`event_param2`,`event_param3`,`event_param4`,`action_type`,`action_param1`,`action_param2`,`action_param3`,`action_param4`,`action_param5`,`action_param6`,`target_type`,`target_param1`,`target_param2`,`target_param3`,`target_x`,`target_y`,`target_z`,`target_o`,`comment`) VALUES +(25881,0,0,0,8,0,100,1,46317,0,0,0,80,2588100,2,0,0,0,0,1,0,0,0,0,0,0,0,'Moria - On spell hit - Start Event'), +(25881,0,1,0,6,0,100,1,0,0,0,0,19,33024,0,0,0,0,0,19,25802,100,0,0,0,0,0,'Moria - On death - Make Kaw attackable'), +(25881,0,2,0,1,0,100,1,0,0,0,0,8,0,0,0,0,0,0,1,0,0,0,0,0,0,0,'Moria - OOC - Set passive'), +(25881,0,3,0,1,0,100,1,0,0,0,0,28,46260,0,0,0,0,0,1,0,0,0,0,0,0,0,'Moria - OOC - Dismount Kaw'), +(2588100,9,0,0,0,0,100,1,0,0,0,0,11,17683,2,0,0,0,0,1,0,0,0,0,0,0,0,'Moria - Timed - Heal self'), +(2588100,9,1,0,0,0,100,1,0,0,0,0,45,1,1,0,0,0,0,19,25802,100,0,0,0,0,0,'Moria - Timed - Set Data 1 1 on Kaw'), +(2588100,9,2,0,0,0,100,1,5500,5500,0,0,8,2,0,0,0,0,0,1,0,0,0,0,0,0,0,'Moria - Timed - Set aggresive'), +(2588100,9,3,0,0,0,100,1,0,0,0,0,11,17683,2,0,0,0,0,1,0,0,0,0,0,0,0,'Moria - Timed - Heal self'); diff --git a/sql/updates/world/2014_06_23_15_world_misc.sql b/sql/updates/world/2014_06_23_15_world_misc.sql new file mode 100644 index 00000000000..2d7621a67fa --- /dev/null +++ b/sql/updates/world/2014_06_23_15_world_misc.sql @@ -0,0 +1,203 @@ +UPDATE `quest_template` SET `SpecialFlags`=2 WHERE `Id`=12473; + +DELETE FROM `smart_scripts` WHERE `entryorguid`=27857 AND `source_type`=0; +DELETE FROM `smart_scripts` WHERE `entryorguid`=26780 AND `source_type`=0; +DELETE FROM `smart_scripts` WHERE `entryorguid`=27713 AND `source_type`=0; +DELETE FROM `smart_scripts` WHERE `entryorguid`=27851 AND `source_type`=0 AND `id`>1; +DELETE FROM `smart_scripts` WHERE `entryorguid`=27383 AND `source_type`=0; +DELETE FROM `smart_scripts` WHERE `entryorguid`=27858 AND `source_type`=0; +DELETE FROM `smart_scripts` WHERE `entryorguid`=2785700 AND `source_type`=9; +DELETE FROM `smart_scripts` WHERE `entryorguid`=2785701 AND `source_type`=9; +DELETE FROM `smart_scripts` WHERE `entryorguid`=2738300 AND `source_type`=9; + +INSERT INTO `smart_scripts` (`entryorguid`, `source_type`, `id`, `link`, `event_type`, `event_phase_mask`, `event_chance`, `event_flags`, `event_param1`, `event_param2`, `event_param3`, `event_param4`, `action_type`, `action_param1`, `action_param2`, `action_param3`, `action_param4`, `action_param5`, `action_param6`, `target_type`, `target_param1`, `target_param2`, `target_param3`, `target_x`, `target_y`, `target_z`, `target_o`, `comment`) VALUES +(27383, 0, 0, 0, 11, 0, 100, 0, 0, 0, 0, 0, 21, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'Thel zan the Duskbringer - On Spawn - Disable Combat Movement'), +(27383, 0, 1, 0, 11, 0, 100, 0, 0, 0, 0, 0, 11, 31256, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'Thel zan the Duskbringer - On Spawn - Cast Frost Armor'), +(27383, 0, 2, 0, 9, 1, 100, 0, 0, 40, 3400, 4800, 11, 42719, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 'Thel zan the Duskbringer - Within 0-40 Range - Cast Frostbolt (No Repeat)'), +(27383, 0, 3, 0, 3, 1, 100, 1, 0, 7, 0, 0, 21, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'Thel zan the Duskbringer - Between 0-7% Mana - Enable Combat Movement (Phase 1) (No Repeat)'), +(27383, 0, 4, 0, 4, 0, 100, 0, 0, 0, 0, 0, 11, 49735, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'Thel zan the Duskbringer - On Agro - Cast Terrifying Countenance'), +(27383, 0, 5, 0, 9, 1, 100, 1, 35, 80, 0, 0, 21, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'Thel zan the Duskbringer - Within 35-80 Range - Enable Combat Movement (Phase 1) (No Repeat)'), +(27383, 0, 6, 0, 9, 1, 100, 1, 5, 15, 0, 0, 21, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'Thel zan the Duskbringer - Within 5-15 Range - Disable Combat Movement (Phase 1) (No Repeat)'), +(27383, 0, 7, 0, 9, 1, 100, 1, 0, 5, 0, 0, 21, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'Thel zan the Duskbringer - Within 0-5 Range - Enable Combat Movement (Phase 1) (No Repeat)'), +(27383, 0, 8, 0, 2, 0, 100, 1, 0, 50, 0, 0, 11, 50497, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'Thel zan the Duskbringer - Between 0-50% Health - Cast Scream of Chaos (Phase 1) (No Repeat)'), +(27383, 0, 9, 0, 2, 0, 100, 1, 0, 15, 0, 0, 11, 50497, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'Thel zan the Duskbringer - Between 0-15% Health - Cast Scream of Chaos (Phase 1) (No Repeat)'), +(27383, 0, 10, 0, 9, 1, 100, 0, 0, 10, 15000, 20000, 11, 22643, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'Thel zan the Duskbringer - Within 0-10 Range - Cast Frostbolt Volley (Phase 1) (No Repeat)'), +(27383, 0, 11, 0, 0, 1, 100, 0, 7000, 11000, 14000, 18000, 11, 39268, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 'Thel zan the Duskbringer - In Combat - Cast Chains of Ice (Phase 1) (No Repeat)'), +(27383, 0, 12, 13, 11, 0, 100, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'Thel zan the Duskbringer - On Spawn - Say'), +(27383, 0, 13, 0, 61, 0, 100, 0, 0, 0, 0, 0, 53, 0, 27383, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'Thel zan the Duskbringer - On Spawn - Start WP'), +(27383, 0, 14, 15, 40, 0, 100, 0, 1, 27383, 0, 0, 19, 768, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'Thel zan the Duskbringer - On Reached WP1 - Run Script'), +(27383, 0, 15, 16, 61, 0, 100, 0, 0, 0, 0, 0, 49, 0, 0, 0, 0, 0, 0, 19, 27713, 0, 0, 0, 0, 0, 0, 'Thel zan the Duskbringer - On Reached WP1 - Run Script'), +(27383, 0, 16, 17, 61, 0, 100, 0, 0, 0, 0, 0, 45, 1, 1, 0, 0, 0, 0, 19, 27857, 0, 0, 0, 0, 0, 0, 'Thel zan the Duskbringer - On Reached WP1 - Set Data'), +(27383, 0, 17, 0, 61, 0, 100, 0, 0, 0, 0, 0, 80, 2738300, 2, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'Thel zan the Duskbringer - On Reached WP1 - Run Script'), +(27383, 0, 18, 0, 7, 0, 100, 0, 0, 0, 0, 0, 19, 768, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'Thel zan the Duskbringer - On Evade- Set Unit Flags'), +(27383, 0, 19, 20, 6, 0, 100, 0, 0, 0, 0, 0, 15, 12473, 0, 0, 0, 0, 0, 17, 0, 100, 0, 0, 0, 0, 0, 'Thel zan the Duskbringer - On Death - Quest Credit'), +(27383, 0, 20, 0, 61, 0, 100, 0, 0, 0, 0, 0, 45, 3, 3, 0, 0, 0, 0, 19, 27857, 0, 0, 0, 0, 0, 0, 'Thel zan the Duskbringer - On Death - Set Data'), +(27851, 0, 2, 0, 38, 0, 100, 0, 1, 1, 0, 0, 22, 2, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'Thel zan Spell Dummy - On Data Set - Set Phase 2'), +(27851, 0, 3, 0, 1, 2, 100, 0, 90000, 90000, 90000, 90000, 22, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'Thel zan Spell Dummy - OOC (Phase 2) - Set Phase 0'), +(27851, 0, 4, 0, 1, 2, 100, 0, 0, 300, 300, 500, 11, 49734, 0, 0, 0, 0, 0, 9, 27851, 5, 30, 0, 0, 0, 0, 'Thel zan Spell Dummy - Cast Thel zan Intro Beams'), +(27851, 0, 5, 0, 38, 0, 100, 0, 3, 3, 0, 0, 12, 27383, 1, 900000, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'Thel zan Spell Dummy - On Data Set - Spawn Thel zan the Duskbringer'), +(27851, 0, 6, 0, 38, 0, 100, 0, 5, 5, 0, 0, 22, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'Thel zan Spell Dummy - On Data Set - Set Phase 1'), +(27851, 0, 7, 0, 38, 0, 100, 0, 6, 6, 0, 0, 12, 27868, 1, 60000, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'Thel zan Spell Dummy - On Data Set - Spawn Thel zan s Phylactery'), +(27851, 0, 8, 0, 1, 1, 100, 0, 0, 0, 1000, 1000, 11, 45849, 2, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'Thel zan Spell Dummy - OOC (Phase 1) - Cast Cast Camera Shake - Tremor'), +(27851, 0, 9, 0, 1, 1, 100, 0, 5000, 5000, 5000, 5000, 22, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'Thel zan Spell Dummy - OOC (Phase 1) - Set Phase 0'), +(27857, 0, 0, 1, 1, 0, 100, 1, 0, 0, 0, 0, 21, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'Legion Commander Yorik - Out of Combat - Disable Combat Movement (No Repeat)'), +(27857, 0, 1, 0, 61, 0, 100, 0, 0, 0, 0, 0, 20, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'Legion Commander Yorik - Out of Combat - Stop Attacking (No Repeat)'), +(27857, 0, 2, 3, 4, 0, 100, 0, 0, 0, 0, 0, 11, 15620, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 'Legion Commander Yorik - On Aggro - Cast \'Shoot\' (No Repeat)'), +(27857, 0, 3, 0, 61, 0, 100, 0, 0, 0, 0, 0, 22, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'Legion Commander Yorik - On Aggro - Set Phase 1'), +(27857, 0, 4, 5, 9, 1, 100, 0, 5, 30, 2300, 3900, 11, 15620, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 'Legion Commander Yorik - Within 5-30 Range - Cast \'Shoot\' (Phase 1)'), +(27857, 0, 5, 0, 61, 1, 100, 0, 0, 0, 0, 0, 40, 2, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'Legion Commander Yorik - Within 5-30 Range - Set Sheath Ranged (Phase 1)'), +(27857, 0, 6, 7, 9, 1, 100, 0, 25, 80, 0, 0, 21, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'Legion Commander Yorik - Within 25-80 Range - Enable Combat Movement (Phase 1)'), +(27857, 0, 7, 0, 61, 1, 100, 0, 0, 0, 0, 0, 20, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'Legion Commander Yorik - Within 25-80 Range - Start Attacking (Phase 1)'), +(27857, 0, 8, 9, 9, 1, 100, 0, 0, 5, 0, 0, 21, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'Legion Commander Yorik - Within 0-5 Range - Enable Combat Movement (Phase 1)'), +(27857, 0, 9, 10, 61, 1, 100, 0, 0, 0, 0, 0, 40, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'Legion Commander Yorik - Within 0-5 Range - Set Sheath Melee (Phase 1)'), +(27857, 0, 10, 0, 61, 1, 100, 0, 0, 0, 0, 0, 20, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'Legion Commander Yorik - Within 0-5 Range - Start Attacking (Phase 1)'), +(27857, 0, 12, 0, 61, 1, 100, 0, 0, 0, 0, 0, 20, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'Legion Commander Yorik - Within 5-15 Range - Stop Attacking (Phase 1)'), +(27857, 0, 11, 12, 9, 1, 100, 0, 5, 15, 0, 0, 21, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'Legion Commander Yorik - Within 5-15 Range - Disable Combat Movement (Phase 1)'), +(27857, 0, 13, 0, 7, 0, 100, 1, 0, 0, 0, 0, 40, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'Legion Commander Yorik - On Evade - Set Sheath Melee (Phase 1)'), +(27857, 0, 14, 0, 11, 0, 100, 0, 0, 0, 0, 0, 22, 2, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'Legion Commander Yorik - OOC - Set Phase 2'), +(27857, 0, 15, 0, 1, 2, 100, 0, 6000, 19000, 27000, 32000, 1, 0, 0, 0, 0, 0, 0, 10, 133302, 27713, 0, 0, 0, 0, 0, 'Legion Commander Yorik - OOC - Say (Phase 2)'), +(27857, 0, 16, 0, 1, 2, 100, 0, 12000, 16000, 35000, 40000, 1, 0, 0, 0, 0, 0, 0, 10, 133303, 27713, 0, 0, 0, 0, 0, 'Legion Commander Yorik - OOC - Say (Phase 2)'), +(27857, 0, 17, 0, 1, 2, 100, 0, 23000, 37000, 48000, 53000, 1, 0, 0, 0, 0, 0, 0, 10, 133304, 27713, 0, 0, 0, 0, 0, 'Legion Commander Yorik - OOC - Say (Phase 2)'), +(27857, 0, 18, 0, 1, 2, 100, 0, 10000, 14000, 21000, 34000, 1, 0, 0, 0, 0, 0, 0, 10, 133305, 27713, 0, 0, 0, 0, 0, 'Legion Commander Yorik - OOC - Say (Phase 2)'), +(27857, 0, 19, 20, 19, 0, 100, 0, 12473, 0, 0, 0, 64, 1, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 'Legion Commander Yorik - On Quest 12473 Accepted - Store Targetlist'), +(27857, 0, 20, 21, 61, 0, 100, 0, 0, 0, 0, 0, 81, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'Legion Commander Yorik - On Quest 12473 Accepted - Set NPC Flags'), +(27857, 0, 21, 22, 61, 0, 100, 0, 0, 0, 0, 0, 22, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'Legion Commander Yorik - On Quest 12473 Accepted - Set Phase 0'), +(27857, 0, 22, 0, 61, 0, 100, 0, 0, 0, 0, 0, 80, 2785700, 2, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'Legion Commander Yorik - On Quest 12473 Accepted - Run Script'), +(27857, 0, 23, 24, 38, 0, 100, 0, 2, 2, 0, 0, 8, 2, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'Legion Commander Yorik - On Data Set - Set Agressive'), +(27857, 0, 24, 25, 61, 0, 100, 0, 0, 0, 0, 0, 28, 49735, 0, 0, 0, 0, 0, 17, 0, 200, 0, 0, 0, 0, 0, 'Legion Commander Yorik - On Data Set - Remove Aura'), +(27857, 0, 25, 26, 61, 0, 100, 0, 0, 0, 0, 0, 28, 49735, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'Legion Commander Yorik - On Data Set - Remove Aura'), +(27857, 0, 26, 27, 61, 0, 100, 0, 0, 0, 0, 0, 28, 49735, 0, 0, 0, 0, 0, 11, 27713, 200, 0, 0, 0, 0, 0, 'Legion Commander Yorik - On Data Set - Remove Aura'), +(27857, 0, 27, 28, 61, 0, 100, 0, 0, 0, 0, 0, 28, 49735, 0, 0, 0, 0, 0, 11, 26780, 200, 0, 0, 0, 0, 0, 'Legion Commander Yorik - On Data Set - Remove Aura'), +(27857, 0, 28, 0, 61, 0, 100, 0, 0, 0, 0, 0, 49, 0, 0, 0, 0, 0, 0, 19, 27383, 0, 0, 0, 0, 0, 0, 'Legion Commander Yorik - On Data Set - Attack'), +(27857, 0, 29, 0, 38, 0, 100, 0, 3, 3, 0, 0, 80, 2785701, 2, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'Legion Commander Yorik - On Data Set - Run Script'), +(27857, 0, 30, 0, 1, 0, 100, 0, 120000, 120000, 120000, 120000, 22, 2, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'Legion Commander Yorik - OOC - S'), +(27857, 0, 31, 0, 40, 0, 100, 0, 1, 27857, 0, 0, 45, 6, 6, 0, 0, 0, 0, 10, 133697, 27851, 0, 0, 0, 0, 0, 'Legion Commander Yorik - On Reached WP1 - Set Data'), +(27857, 0, 32, 33, 38, 0, 100, 0, 1, 1, 0, 0, 8, 2, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'Legion Commander Yorik - On Data Set - Set Agressive'), +(27857, 0, 33, 0, 61, 0, 100, 0, 0, 0, 0, 0, 49, 0, 0, 0, 0, 0, 0, 19, 27383, 0, 0, 0, 0, 0, 0, 'Legion Commander Yorik - On Data Set - Attack'), +(27858, 0, 0, 0, 11, 0, 100, 0, 0, 0, 0, 0, 53, 0, 27858, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'Highlord Bolvar Fordragon - On Spawn - Start WP'), +(27858, 0, 1, 2, 38, 0, 100, 0, 1, 1, 0, 0, 1, 3, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'Highlord Bolvar Fordragon - On Data Set - Say'), +(27858, 0, 2, 3, 61, 0, 100, 0, 0, 0, 0, 0, 101, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'Highlord Bolvar Fordragon - On Data Set - Set Home Position'), +(27858, 0, 3, 4, 61, 0, 100, 0, 0, 0, 0, 0, 8, 2, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'Highlord Bolvar Fordragon - On Data Set - Set Agressive'), +(27858, 0, 4, 0, 61, 0, 100, 0, 0, 0, 0, 0, 49, 0, 0, 0, 0, 0, 0, 19, 27383, 0, 0, 0, 0, 0, 0, 'Highlord Bolvar Fordragon - On Data Set Attack'), +(27858, 0, 5, 0, 4, 0, 100, 0, 0, 0, 0, 0, 11, 49765, 2, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'Highlord Bolvar Fordragon - On Agro - Cast Fordragons resolve '), +(27858, 0, 6, 0, 40, 0, 100, 0, 1, 27858, 0, 0, 54, 10000, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'Highlord Bolvar Fordragon - On reached WP1 -Pause WP 10 seconds'), +(26780, 0, 0, 0, 1, 0, 100, 1, 0, 0, 0, 0, 21, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, '7th Legion Cleric - Out of Combat - Disable Combat Movement (Phase 1)'), +(26780, 0, 1, 2, 4, 0, 100, 1, 0, 0, 0, 0, 11, 25054, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, '7th Legion Cleric - On Aggro - Cast \'Holy Smite\' (No Repeat)'), +(26780, 0, 2, 0, 61, 0, 100, 0, 0, 0, 0, 0, 22, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, '7th Legion Cleric - On Aggro - Increment Phase By 1 (No Repeat)'), +(26780, 0, 3, 0, 9, 1, 100, 0, 0, 40, 3400, 4800, 11, 25054, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, '7th Legion Cleric - Within 0-40 Range - Cast \'Holy Smite\' (No Repeat)'), +(26780, 0, 4, 5, 3, 1, 100, 1, 0, 7, 0, 0, 21, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, '7th Legion Cleric - Between 0-7% Mana - Enable Combat Movement (Phase 1) (No Repeat)'), +(26780, 0, 5, 0, 61, 1, 100, 0, 0, 0, 0, 0, 23, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, '7th Legion Cleric - Between 0-7% Mana - Increment Phase By 1 (Phase 1) (No Repeat)'), +(26780, 0, 6, 0, 9, 1, 100, 1, 35, 80, 0, 0, 21, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, '7th Legion Cleric - Within 35-80 Range - Enable Combat Movement (Phase 1) (No Repeat)'), +(26780, 0, 7, 0, 9, 1, 100, 1, 5, 15, 0, 0, 21, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, '7th Legion Cleric - Within 5-15 Range - Disable Combat Movement (Phase 1) (No Repeat)'), +(26780, 0, 8, 0, 9, 1, 100, 1, 0, 5, 0, 0, 21, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, '7th Legion Cleric - Within 0-5 Range - Enable Combat Movement (Phase 1) (No Repeat)'), +(26780, 0, 9, 0, 3, 2, 100, 0, 15, 100, 100, 100, 22, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, '7th Legion Cleric - Between 15-100% Mana - Decrement Phase By 1 (Phase 1) (No Repeat)'), +(26780, 0, 10, 0, 14, 0, 100, 0, 7000, 40, 17000, 24000, 11, 31739, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, '7th Legion Cleric - Friendly At 7000 Health - Cast \'Heal\' (Phase 1) (No Repeat)'), +(26780, 0, 11, 12, 2, 0, 100, 1, 0, 15, 0, 0, 22, 3, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, '7th Legion Cleric - Between 0-15% Health - Set Event Phase 3 (No Repeat)'), +(26780, 0, 12, 13, 61, 0, 100, 0, 0, 0, 0, 0, 21, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, '7th Legion Cleric - Between 0-15% Health - Enable Combat Movement (No Repeat)'), +(26780, 0, 13, 0, 61, 0, 100, 0, 0, 0, 0, 0, 25, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '7th Legion Cleric - Between 0-15% Health - Flee For Assist (No Repeat)'), +(26780, 0, 14, 15,38, 0, 100, 0, 1, 1, 0, 0, 11, 25054, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, '7th Legion Cleric - On Data Set - Cast \'Holy Smite\' (No Repeat)'), +(26780, 0, 15, 0, 61, 0, 100, 0, 0, 0, 0, 0, 22, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, '7th Legion Cleric - On Data Set - Increment Phase By 1 (No Repeat)'), +(27713, 0, 0, 1, 1, 0, 100, 1, 0, 0, 0, 0, 21, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, '7th Legion Elite - Out of Combat - Disable Combat Movement (No Repeat)'), +(27713, 0, 1, 0, 61, 0, 100, 0, 0, 0, 0, 0, 20, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, '7th Legion Elite - Out of Combat - Stop Attacking (No Repeat)'), +(27713, 0, 2, 3, 4, 0, 100, 1, 0, 0, 0, 0, 11, 50092, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, '7th Legion Elite - On Aggro - Cast \'Shoot\' (No Repeat)'), +(27713, 0, 3, 0, 61, 0, 100, 0, 0, 0, 0, 0, 22, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, '7th Legion Elite - On Aggro - Increment Phase By 1 (No Repeat)'), +(27713, 0, 4, 5, 9, 1, 100, 0, 5, 30, 2300, 3900, 11, 50092, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, '7th Legion Elite - Within 5-30 Range - Cast \'Shoot\' (Phase 1)'), +(27713, 0, 5, 0, 61, 1, 100, 0, 0, 0, 0, 0, 40, 2, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, '7th Legion Elite - Within 5-30 Range - Set Sheath Ranged (Phase 1)'), +(27713, 0, 6, 7, 9, 1, 100, 0, 25, 80, 0, 0, 21, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, '7th Legion Elite - Within 25-80 Range - Enable Combat Movement (Phase 1)'), +(27713, 0, 7, 0, 61, 1, 100, 0, 0, 0, 0, 0, 20, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, '7th Legion Elite - Within 25-80 Range - Start Attacking (Phase 1)'), +(27713, 0, 8, 9, 9, 1, 100, 0, 0, 5, 0, 0, 21, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, '7th Legion Elite - Within 0-5 Range - Enable Combat Movement (Phase 1)'), +(27713, 0, 9, 10, 61, 1, 100, 0, 0, 0, 0, 0, 40, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, '7th Legion Elite - Within 0-5 Range - Set Sheath Melee (Phase 1)'), +(27713, 0, 10, 0, 61, 1, 100, 0, 0, 0, 0, 0, 20, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, '7th Legion Elite - Within 0-5 Range - Start Attacking (Phase 1)'), +(27713, 0, 12, 0, 61, 1, 100, 0, 0, 0, 0, 0, 20, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, '7th Legion Elite - Within 5-15 Range - Stop Attacking (Phase 1)'), +(27713, 0, 11, 12, 9, 1, 100, 0, 5, 15, 0, 0, 21, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, '7th Legion Elite - Within 5-15 Range - Disable Combat Movement (Phase 1)'), +(27713, 0, 13, 0, 9, 1, 100, 0, 0, 20, 9000, 12000, 11, 62312, 1, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, '7th Legion Elite - Within 0-20 Range - Cast \'Net\' (Phase 1)'), +(27713, 0, 14, 0, 7, 0, 100, 1, 0, 0, 0, 0, 40, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, '7th Legion Elite - On Evade - Set Sheath Melee (Phase 1)'), +(27713, 0, 15, 16 ,38, 0, 100, 0, 1, 1, 0, 0, 11, 50092, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, '7th Legion Elite - On Data Set - Cast \'Shoot\' (No Repeat)'), +(27713, 0, 16, 0, 61, 0, 100, 0, 0, 0, 0, 0, 22, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, '7th Legion Elite - On Aggro - Increment Phase By 1 (No Repeat)'), +(2738300, 9, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 1, 2, 0, 0, 0, 0, 0, 19, 27857, 0, 0, 0, 0, 0, 0, 'Thel zan the Duskbringer - Script - Say'), +(2738300, 9, 1, 0, 0, 0, 100, 0, 0, 0, 0, 0, 101, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'Thel zan the Duskbringer - Script - Set Home Position'), +(2738300, 9, 2, 0, 0, 0, 100, 0, 1000, 1000, 0, 0, 22, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'Thel zan the Duskbringer - Script - Set Phase 0'), +(2738300, 9, 3, 0, 0, 0, 100, 0, 7000, 7000, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'Thel zan the Duskbringer - Script - Say'), +(2738300, 9, 4, 0, 0, 0, 100, 0, 7000, 7000, 0, 0, 1, 2, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'Thel zan the Duskbringer - Script - Say'), +(2738300, 9, 5, 0, 0, 0, 100, 0, 7000, 7000, 0, 0, 1, 3, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'Thel zan the Duskbringer - Script - Say'), +(2738300, 9, 6, 0, 0, 0, 100, 0, 7000, 7000, 0, 0, 1, 4, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'Thel zan the Duskbringer - Script - Say'), +(2738300, 9, 7, 0, 0, 0, 100, 0, 0, 0, 0, 0, 12, 27858, 1, 900000, 0, 0, 0, 8, 0, 0, 0, 3678.688965,-951.346069,90.707184,1.534565, 'Thel zan the Duskbringer - Script - Say'), +(2738300, 9, 8, 0, 0, 0, 100, 0, 10000, 10000, 0, 0, 1, 5, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'Thel zan the Duskbringer - Script - Say'), +(2738300, 9, 9, 0, 0, 0, 100, 0, 2000, 2000, 0, 0, 1, 0, 0, 0, 0, 0, 0, 19, 27858, 0, 0, 0, 0, 0, 0, 'Thel zan the Duskbringer - Script - Say'), +(2738300, 9, 10, 0, 0, 0, 100, 0, 5000, 5000, 0, 0, 1, 1, 0, 0, 0, 0, 0, 19, 27713, 0, 0, 0, 0, 0, 0, 'Thel zan the Duskbringer - Script - Say'), +(2738300, 9, 11, 0, 0, 0, 100, 0, 5000, 5000, 0, 0, 1, 1, 0, 0, 0, 0, 0, 19, 27858, 0, 0, 0, 0, 0, 0, 'Thel zan the Duskbringer - Script - Say'), +(2738300, 9, 12, 0, 0, 0, 100, 0, 10000, 10000, 0, 0, 1, 2, 0, 0, 0, 0, 0, 19, 27858, 0, 0, 0, 0, 0, 0, 'Thel zan the Duskbringer - Script - Say'), +(2738300, 9, 13, 0, 0, 0, 100, 0, 7000, 7000, 0, 0, 1, 6, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'Thel zan the Duskbringer - Script - Say'), +(2738300, 9, 14, 0, 0, 0, 100, 0, 7000, 7000, 0, 0, 1, 7, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'Thel zan the Duskbringer - Script - Say'), +(2738300, 9, 15, 0, 0, 0, 100, 0, 0, 0, 0, 0, 11, 49808, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'Thel zan the Duskbringer - Script - Cast Minions of Thel zan'), +(2738300, 9, 16, 0, 0, 0, 100, 0, 1000, 1000, 0, 0, 28, 49735, 0, 0, 0, 0, 0, 19, 27857, 0, 0, 0, 0, 0, 0, 'Thel zan the Duskbringer - Script - Set Data'), +(2738300, 9, 17, 0, 0, 0, 100, 0, 0, 0, 0, 0, 45, 2, 2, 0, 0, 0, 0, 19, 27857, 0, 0, 0, 0, 0, 0, 'Thel zan the Duskbringer - Script - Set Data'), +(2738300, 9, 18, 0, 0, 0, 100, 0, 0, 0, 0, 0, 45, 1, 1, 0, 0, 0, 0, 19, 27858, 0, 0, 0, 0, 0, 0, 'Thel zan the Duskbringer - Script - Set Data'), +(2738300, 9, 19, 0, 0, 0, 100, 0, 0, 0, 0, 0, 45, 1, 1, 0, 0, 0, 0, 11, 27713, 200, 0, 0, 0, 0, 0, 'Thel zan the Duskbringer - Script - Set Data'), +(2738300, 9, 20, 0, 0, 0, 100, 0, 0, 0, 0, 0, 45, 1, 1, 0, 0, 0, 0, 11, 26780, 200, 0, 0, 0, 0, 0, 'Thel zan the Duskbringer - Script - Set Data'), +(2738300, 9, 21, 0, 0, 0, 100, 0, 0, 0, 0, 0, 22, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'Thel zan the Duskbringer - Script - Set Phase 1'), +(2738300, 9, 22, 0, 0, 0, 100, 0, 0, 0, 0, 0, 49, 0, 0, 0, 0, 0, 0, 21, 100, 0, 0, 0, 0, 0, 0, 'Thel zan the Duskbringer - Script - Attack'), +(2785700, 9, 0, 0, 0, 0, 100, 0, 2000, 2000, 0, 0, 1, 0, 0, 0, 0, 0, 0, 12, 1, 0, 0, 0, 0, 0, 0, 'Legion Commander Yorik - Script - Say'), +(2785700, 9, 1, 0, 0, 0, 100, 0, 1000, 1000, 0, 0, 53, 0, 27857, 0, 0, 0, 0, 12, 1, 0, 0, 0, 0, 0, 0, 'Legion Commander Yorik - Script - Start WP'), +(2785700, 9, 2, 0, 0, 0, 100, 0, 5000, 5000, 0, 0, 45, 5, 5, 0, 0, 0, 0, 10, 133697, 27851, 0, 0, 0, 0, 0, 'Legion Commander Yorik - Script - Set Data'), +(2785700, 9, 3, 0, 0, 0, 100, 0, 0, 0, 0, 0, 45, 1, 1, 0, 0, 0, 0, 10, 133700, 27851, 0, 0, 0, 0, 0, 'Legion Commander Yorik - Script - Set Data'), +(2785700, 9, 4, 0, 0, 0, 100, 0, 0, 0, 0, 0, 45, 1, 1, 0, 0, 0, 0, 10, 133701, 27851, 0, 0, 0, 0, 0, 'Legion Commander Yorik - Script - Set Data'), +(2785700, 9, 5, 0, 0, 0, 100, 0, 0, 0, 0, 0, 45, 1, 1, 0, 0, 0, 0, 10, 133702, 27851, 0, 0, 0, 0, 0, 'Legion Commander Yorik - Script - Set Data'), +(2785700, 9, 6, 0, 0, 0, 100, 0, 0, 0, 0, 0, 45, 1, 1, 0, 0, 0, 0, 10, 133694, 27851, 0, 0, 0, 0, 0, 'Legion Commander Yorik - Script - Set Data'), +(2785700, 9, 7, 0, 0, 0, 100, 0, 0, 0, 0, 0, 45, 1, 1, 0, 0, 0, 0, 10, 133698, 27851, 0, 0, 0, 0, 0, 'Legion Commander Yorik - Script - Set Data'), +(2785700, 9, 8, 0, 0, 0, 100, 0, 0, 0, 0, 0, 45, 1, 1, 0, 0, 0, 0, 10, 133699, 27851, 0, 0, 0, 0, 0, 'Legion Commander Yorik - Script - Set Data'), +(2785700, 9, 9, 0, 0, 0, 100, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 12, 1, 0, 0, 0, 0, 0, 0, 'Legion Commander Yorik - Script - Say'), +(2785700, 9, 10, 0, 0, 0, 100, 0, 0, 0, 0, 0, 101, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'Legion Commander Yorik - Script - Set Home Position'), +(2785700, 9, 11, 0, 0, 0, 100, 0, 5000, 5000, 0, 0, 45, 3, 3, 0, 0, 0, 0, 10, 133695, 27851, 0, 0, 0, 0, 0, 'Legion Commander Yorik - Script - Set Data'), +(2785701, 9, 0, 0, 0, 0, 100, 0, 2000, 2000, 0, 0, 1, 4, 0, 0, 0, 0, 0, 19, 27858, 0, 0, 0, 0, 0, 0, 'Legion Commander Yorik - Script 2 - Say'), +(2785701, 9, 1, 0, 0, 0, 100, 0, 7000, 7000, 0, 0, 1, 5, 0, 0, 0, 0, 0, 19, 27858, 0, 0, 0, 0, 0, 0, 'Legion Commander Yorik - Script 2 - Say'), +(2785701, 9, 2, 0, 0, 0, 100, 0, 7000, 7000, 0, 0, 41, 0, 0, 0, 0, 0, 0, 19, 27858, 0, 0, 0, 0, 0, 0, 'Legion Commander Yorik - Script 2 - Despawn'), +(2785701, 9, 3, 0, 0, 0, 100, 0, 0, 0, 0, 0, 41, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'Legion Commander Yorik - Script 2 - Despawn'); + +INSERT INTO `creature_text` (`entry`, `groupid`, `id`, `text`, `type`, `language`, `probability`, `emote`, `duration`, `sound`, `comment`, `BroadcastTextID`) VALUES +(27383, 0, 0, 'I was... once like you. Mortal. Soft. Only flesh and bone. WEAK AND TIMID!', 14, 0, 100, 0, 0, 0, 'Thel zan the Duskbringer', 27157), +(27383, 1, 0, 'Our lord, Arthas saw in me the frailty of man.', 14, 0, 100, 0, 0, 0, 'Thel zan the Duskbringer', 27159), +(27383, 2, 0, '"Serve me in life and I will promise to rend the weakness from your soul. To erase it from existence!" To be chosen... blessed by the Lich King in such a way.', 14, 0, 100, 0, 0, 0, 'Thel zan the Duskbringer', 27160), +(27383, 3, 0, 'So serve him I did... Were it not for me the glorious dread citadel of Naxxramas may never have returned to Northrend.', 14, 0, 100, 0, 0, 0, 'Thel zan the Duskbringer', 27161), +(27383, 4, 0, 'But enough talk... You have fought hard and come from the distant reaches of this world to face the Duskbringer. I shall not disappoint...', 14, 0, 100, 0, 0, 0, 'Thel zan the Duskbringer', 27162), +(27383, 5, 0, 'Just as our lord saved me, so too shall I save you!', 14, 0, 100, 0, 0, 0, 'Thel zan the Duskbringer', 27163), +(27383, 6, 0, 'THIS WILL BE THE LAST TIME YOU UTTER THAT NAME, PALADIN! Breathe your dying breath!', 14, 0, 100, 0, 0, 0, 'Thel zan the Duskbringer', 27176), +(27383, 7, 0, 'Rise, my minions! Your master commands it!', 14, 0, 100, 0, 0, 0, 'Thel zan the Duskbringer', 27164), +(27713, 0, 0, 'What is it?', 12, 0, 100, 0, 0, 0, '7th Legion Elite', 27143), +(27713, 0, 1, 'Is this the end? If we stop this bastard now, is victory assured at the Wrathgate?', 12, 0, 100, 0, 0, 0, '7th Legion Elite', 27146), +(27713, 0, 2, 'Let it be known that it has been an honor and a privilege fighting alongside all of you.', 12, 0, 100, 0, 0, 0, '7th Legion Elite', 27148), +(27713, 0, 3, 'Death comes for us all eventually, but sometimes it comes a little faster than anticipated. Today we call that blind heroics... Tomorrow someone may call it stupidity.', 12, 0, 100, 0, 0, 0, '7th Legion Elite', 27150), +(27713, 0, 4, 'Come on... Let\'s get this over with!', 12, 0, 100, 0, 0, 0, '7th Legion Elite', 27149), +(27713, 0, 5, 'It looks like a gateway to hell!', 12, 0, 100, 0, 0, 0, '7th Legion Elite', 27144), +(27713, 0, 6, 'I\'m getting a little worried. Where is this hero that is supposed to lead us into battle?', 12, 0, 100, 0, 0, 0, '7th Legion Elite', 27147), +(27713, 0, 7, 'If I don\'t make it back to Wintergarde, let my family know that I did my best and that I love them...', 12, 0, 100, 0, 0, 0, '7th Legion Elite', 27145), +(27713, 1, 0, 'It\'s the Highlord!', 12, 0, 100, 0, 0, 0, '7th Legion Elite', 27178), +(27857, 0, 0, 'Steel yourselves, soldiers. $N has provided us us with the final piece of this puzzle. The dread lich, Thel\'zan, will soon come out of hiding, only to be rendered powerless against us!', 12, 0, 100, 0, 0, 0, 'Legion Commander Yorik', 27155), +(27857, 1, 0, 'It is this phylactery, Thel\'zan\'s phylactery - that is the key to this victory!', 12, 0, 100, 0, 0, 0, 'Legion Commander Yorik', 27156), +(27857, 2, 0, 'LEGION, STEADY YOURSELVES!', 12, 0, 100, 0, 0, 0, 'Legion Commander Yorik', 27158), +(27858, 0, 0, 'Honor, courage, compassion and justice! Those were once the virtues you fought for as a cleric of the Argent Dawn, Thel\'zan.', 14, 0, 100, 0, 0, 0, 'Highlord Bolvar Fordragon', 27173), +(27858, 1, 0, 'You dedicated your whole life to fighting the Scourge. You saw what they did to our beloved Lordaeron. The Lich King took everything from you!', 14, 0, 100, 0, 0, 0, 'Highlord Bolvar Fordragon', 27174), +(27858, 2, 0, 'So how, then, did Father Inigo Montoy, bastion of virtue for the Argent Dawn, become the embodiment of that which he hated most?', 12, 0, 100, 0, 0, 0, 'Highlord Bolvar Fordragon', 27175), +(27858, 3, 0, 'Now, be free and join the battle! Let us end this together!', 12, 0, 100, 0, 0, 0, 'Highlord Bolvar Fordragon', 27182), +(27858, 4, 0, 'Victory for the Alliance!', 14, 0, 100, 0, 0, 0, 'Highlord Bolvar Fordragon', 27180), +(27858, 5, 0, 'You have saved Wintergarde! With Thel\'zan\'s filth washed away, the 7th Legion will easily clean up the remaining Scourge. When you are done here, report to Angrathar!', 12, 0, 100, 0, 0, 0, 'Highlord Bolvar Fordragon', 27181); + +DELETE FROM `waypoints` WHERE `entry`IN(27383,27857,27858); +INSERT INTO `waypoints` (`entry`, `pointid`, `position_x`, `position_y`, `position_z`, `point_comment`) VALUES +(27857, 1, 3681.841309,-917.651672,76.984685, 'Legion Commander Yorik'), +(27858, 1, 3681.391113,-930.485779,78.656433, 'Highlord Bolvar Fordragon'), +(27858, 2, 3679.555664,-914.486389,77.093231, 'Highlord Bolvar Fordragon'), +(27383, 1, 3681.604, -912.2283, 77.64017, 'Thel zan the Duskbringer'); + +DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId`=13 AND `SourceEntry`IN(49734,49735); +INSERT INTO `conditions` (`SourceTypeOrReferenceId`, `SourceGroup`, `SourceEntry`, `SourceId`, `ElseGroup`, `ConditionTypeOrReference`, `ConditionTarget`, `ConditionValue1`, `ConditionValue2`, `ConditionValue3`, `NegativeCondition`, `ErrorType`, `ErrorTextId`, `ScriptName`, `Comment`) VALUES +(13, 1, 49734, 0, 0, 31, 0, 3, 27851, 0, 0, 0, 0, '', 'Thel zan Intro Beams targets Thel zan Spell Dummy'), +(13, 3, 49735, 0, 0, 31, 0, 3, 27713, 0, 0, 0, 0, '', 'Terrifying Countenance targets 7th Legion Elite'), +(13, 3, 49735, 0, 1, 31, 0, 3, 27857, 0, 0, 0, 0, '', 'Terrifying Countenance targets Legion Commander Yorik'), +(13, 3, 49735, 0, 2, 31, 0, 3, 26780, 0, 0, 0, 0, '', 'Terrifying Countenance targets 7th Legion Clerick'), +(13, 3, 49735, 0, 3, 31, 0, 4, 0, 0, 0, 0, 0, '', 'Terrifying Countenance targets Player'); + +DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId`=22 AND `SourceEntry` IN(27713,26780); +INSERT INTO `conditions` (`SourceTypeOrReferenceId`, `SourceGroup`, `SourceEntry`, `SourceId`, `ElseGroup`, `ConditionTypeOrReference`, `ConditionTarget`, `ConditionValue1`, `ConditionValue2`, `ConditionValue3`, `NegativeCondition`, `ErrorType`, `ErrorTextId`, `ScriptName`, `Comment`) VALUES +(22, 3, 27713, 0, 0, 29, 0, 27383, 200, 0, 1, 0, 0, '', 'Only run SAI if no Thel zan the Duskbringer near'), +(22, 2, 26780, 0, 0, 29, 0, 27383, 200, 0, 1, 0, 0, '', 'Only run SAI if no Thel zan the Duskbringer near'); diff --git a/sql/updates/world/2014_06_23_16_world_misc.sql b/sql/updates/world/2014_06_23_16_world_misc.sql new file mode 100644 index 00000000000..d2515317a99 --- /dev/null +++ b/sql/updates/world/2014_06_23_16_world_misc.sql @@ -0,0 +1,24 @@ +-- +UPDATE `creature_template` SET `AIName`= 'SmartAI' WHERE `entry`=32236; + +DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId`=13 AND `SourceEntry`=5513; + +DELETE FROM `smart_scripts` WHERE `entryorguid` =32236; +INSERT INTO `smart_scripts` (`entryorguid`, `source_type`, `id`, `link`, `event_type`, `event_phase_mask`, `event_chance`, `event_flags`, `event_param1`, `event_param2`, `event_param3`, `event_param4`, `action_type`, `action_param1`, `action_param2`, `action_param3`, `action_param4`, `action_param5`, `action_param6`, `target_type`, `target_param1`, `target_param2`, `target_param3`, `target_x`, `target_y`, `target_z`, `target_o`, `comment`) VALUES +(32236, 0, 0, 0, 0, 0, 100, 0, 0, 0, 3000, 5000, 11, 32000, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 'Dark Subjugator - IC - Cast Mind Seer'), +(32236, 0, 1, 0, 0, 0, 100, 0, 0, 3000, 5000, 6000, 11, 32026, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 'Dark Subjugator - IC - Cast Pain Spike'), +(32236, 0, 3, 4, 8, 0, 100, 0, 5513, 0, 60000, 60000, 11, 4329, 2, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'Dark Subjugator - On Spellhit Orb of Illusion - Cast Drag and Drop: Dark Subjugator Transform'), +(32236, 0, 4, 5,61, 0, 100, 0, 0, 0, 0, 0, 11, 4328, 2, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'Dark Subjugator - Linked with Previous Event - Cast Drag and Drop: Summon Aldur''thar Sentry'), +(32236, 0, 5, 6,61, 0, 100, 0, 0, 0, 0, 0, 1, 0, 3000, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'Dark Subjugator - Linked with Previous Event - Say'), +(32236, 0, 6, 0,61, 0, 100, 0, 0, 0, 0, 0, 33, 32229, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 'Dark Subjugator - Linked with Previous Event - Kill Credit'), +(32236, 0, 7, 8,52, 0, 100, 0, 0, 32236, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'Dark Subjugator - On Text Over - Say'), +(32236, 0, 8, 0,61, 0, 100, 0, 0, 0, 0, 0, 41, 30000, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'Dark Subjugator - Linked with Previous Event - Despawn After 10 seconds'); + +DELETE FROM `creature_text` WHERE `entry` =32236; +INSERT INTO `creature_text` (`entry`, `groupid`, `id`, `text`, `type`, `language`, `probability`, `emote`, `duration`, `sound`, `comment`, `BroadcastTextID`) VALUES +(32236, 1, 1, 'You\'ve got it all wrong. I\'m a subjugator!', 12, 0, 100, 0, 0, 0, 'Dark Subjugator', 32636), +(32236, 1, 0, 'It was an accident. I was framed. Don\'t drop me!', 12, 0, 100, 0, 0, 0, 'Dark Subjugator', 32637), +(32236, 0, 2, 'What?!', 12, 0, 100, 0, 0, 0, 'Dark Subjugator', 32630), +(32236, 0, 1, 'Okay, who\'s the joker that threw an orb at me?', 12, 0, 100, 0, 0, 0, 'Dark Subjugator', 32633), +(32236, 0, 0, 'I feel funny all of a sudden. Er?!', 12, 0, 100, 0, 0, 0, 'Dark Subjugator', 32632), +(32236, 1, 2, 'NOOOOOO!', 12, 0, 100, 0, 0, 0, 'Dark Subjugator', 32634); diff --git a/sql/updates/world/2014_06_23_17_world_misc.sql b/sql/updates/world/2014_06_23_17_world_misc.sql new file mode 100644 index 00000000000..5ed084063d8 --- /dev/null +++ b/sql/updates/world/2014_06_23_17_world_misc.sql @@ -0,0 +1,11 @@ +-- +DELETE FROM `smart_scripts` WHERE `entryorguid`=28752 AND `source_type`=0 AND `id`IN(14,15); +DELETE FROM `smart_scripts` WHERE `entryorguid`=28754 AND `source_type`=0 AND `id`IN(9,10); +DELETE FROM `smart_scripts` WHERE `entryorguid`=28756 AND `source_type`=0 AND `id`=6; + +INSERT INTO `smart_scripts` (`entryorguid`, `source_type`, `id`, `link`, `event_type`, `event_phase_mask`, `event_chance`, `event_flags`, `event_param1`, `event_param2`, `event_param3`, `event_param4`, `action_type`, `action_param1`, `action_param2`, `action_param3`, `action_param4`, `action_param5`, `action_param6`, `target_type`, `target_param1`, `target_param2`, `target_param3`, `target_x`, `target_y`, `target_z`, `target_o`, `comment`) VALUES +(28752, 0, 14, 0, 6, 0, 100, 0, 0, 0, 0, 0, 78, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'High Priest Mu funu - On Death - Reset All Scripts'), +(28752, 0, 15, 0, 11, 0, 100, 0, 0, 0, 0, 0, 19, 256, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'High Priest Mu funu - On Respawn - Set Unit Flags'), +(28754, 0, 9, 0, 6, 0, 100, 0, 0, 0, 0, 0, 78, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'High Priest Tua-Tua - On Death - Reset All Scripts'), +(28754, 0, 10, 0, 11, 0, 100, 0, 0, 0, 0, 0, 19, 256, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'High Priest Tua-Tua - On Respawn - Set Unit Flags'), +(28756, 0, 6, 0, 6, 0, 100, 0, 0, 0, 0, 0, 78, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'High Priest Hawinni - On Death - Reset All Scripts'); diff --git a/sql/updates/world/2014_06_23_18_world_smart_scripts.sql b/sql/updates/world/2014_06_23_18_world_smart_scripts.sql new file mode 100644 index 00000000000..06d6956dd87 --- /dev/null +++ b/sql/updates/world/2014_06_23_18_world_smart_scripts.sql @@ -0,0 +1,4 @@ +-- +DELETE FROM `smart_scripts` WHERE `entryorguid`=11032 AND `source_type`=0 AND `id`=5; +INSERT INTO `smart_scripts` (`entryorguid`, `source_type`, `id`, `link`, `event_type`, `event_phase_mask`, `event_chance`, `event_flags`, `event_param1`, `event_param2`, `event_param3`, `event_param4`, `action_type`, `action_param1`, `action_param2`, `action_param3`, `action_param4`, `action_param5`, `action_param6`, `target_type`, `target_param1`, `target_param2`, `target_param3`, `target_x`, `target_y`, `target_z`, `target_o`, `comment`) VALUES +(11032, 0, 5, 0, 6, 0, 100, 0, 0, 0, 0, 0, 104, 0, 0, 0, 0, 0, 0, 14, 47278, 176112, 0, 0, 0, 0, 0, 'Malor the Zealous - On Death - Set Malors Strongbox Selectable'); diff --git a/sql/updates/world/2014_06_23_19_world_misc.sql b/sql/updates/world/2014_06_23_19_world_misc.sql new file mode 100644 index 00000000000..d2a1311c5cc --- /dev/null +++ b/sql/updates/world/2014_06_23_19_world_misc.sql @@ -0,0 +1,51 @@ +-- +SET @CGUID := 76305; + +UPDATE `creature_template` SET `AIName`= 'SmartAI',`flags_extra`=`flags_extra`|128,`unit_flags`=33554432 WHERE `entry` IN(23040,23081); + +DELETE FROM `creature` WHERE `guid` BETWEEN @CGUID+0 AND @CGUID+5; +INSERT INTO `creature` (`guid`, `id`, `map`, `spawnMask`, `phaseMask`, `modelid`, `equipment_id`, `position_x`, `position_y`, `position_z`, `orientation`, `spawntimesecs`, `spawndist`, `currentwaypoint`, `curhealth`, `curmana`, `MovementType`, `npcflag`, `unit_flags`, `dynamicflags`, `VerifiedBuild`) VALUES +(@CGUID, 23040, 530, 1, 1, 0, 0, 3261.86, 4625.63, 216.751, 0.680678, 120, 0, 0, 1, 0, 0, 0, 0, 0, 0), +(@CGUID+1, 23040, 530, 1, 1, 0, 0, 3257.33, 4653.79, 216.73, 5.75959, 120, 0, 0, 1, 0, 0, 0, 0, 0, 0), +(@CGUID+2, 23040, 530, 1, 1, 0, 0, 3304.42, 4643.83, 217.281, 3.28122, 120, 0, 0, 1, 0, 0, 0, 0, 0, 0), +(@CGUID+3, 23040, 530, 1, 1, 0, 0, 3279.39, 4664.33, 216.778, 4.76475, 120, 0, 0, 1, 0, 0, 0, 0, 0, 0), +(@CGUID+4, 23040, 530, 1, 1, 0, 0, 3292.61, 4619.95, 217.272, 2.1293, 120, 0, 0, 1, 0, 0, 0, 0, 0, 0), +(@CGUID+5, 23081, 530, 1, 1, 0, 0, 3279.73, 4640.09, 216.526, 4.08274, 120, 0, 0, 1, 0, 0, 0, 0, 0, 0); + +UPDATE `creature_template` SET `AIName`='SmartAI', `flags_extra`=130 WHERE `entry`=23081; + +DELETE FROM `smart_scripts` WHERE `entryorguid` = 23040; +INSERT INTO `smart_scripts` (`entryorguid`, `source_type`, `id`, `link`, `event_type`, `event_phase_mask`, `event_chance`, `event_flags`, `event_param1`, `event_param2`, `event_param3`, `event_param4`, `action_type`, `action_param1`, `action_param2`, `action_param3`, `action_param4`, `action_param5`, `action_param6`, `target_type`, `target_param1`, `target_param2`, `target_param3`, `target_x`, `target_y`, `target_z`, `target_o`, `comment`) VALUES +(23040, 0, 0, 0, 1, 0, 100, 0, 0, 0, 4000, 4000, 11, 39853, 2, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'Vim gols Circle Bunny - On Update OOC - Cast Vim gol: Summon Circle Popluation Tester D'), +(23040, 0, 1, 0, 31, 0, 100, 0, 39853, 0, 0, 0, 45, 1 , 1, 0, 0, 0, 0, 19, 23081, 50, 0, 0, 0, 0, 0, 'Vim gols Circle Bunny: On SpellHitTester A - set data for summon bunny'); + +DELETE FROM `smart_scripts` WHERE `entryorguid` = 23081; +INSERT INTO `smart_scripts` (`entryorguid`, `source_type`, `id`, `link`, `event_type`, `event_phase_mask`, `event_chance`, `event_flags`, `event_param1`, `event_param2`, `event_param3`, `event_param4`, `action_type`, `action_param1`, `action_param2`, `action_param3`, `action_param4`, `action_param5`, `action_param6`, `target_type`, `target_param1`, `target_param2`, `target_param3`, `target_x`, `target_y`, `target_z`, `target_o`, `comment`) VALUES +(23081, 0, 0, 1, 38, 0, 100, 0, 1, 1, 60000, 60000, 11, 39921, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'Vim gols Summon Bunny - On data set - Cast pentagram beam'), +(23081, 0, 1, 2, 61, 0, 100, 0, 0, 0, 0, 0, 67, 23081, 30000, 30000, 0, 0, 100, 1, 0, 0, 0, 0, 0, 0, 0, 'Linked with previous event - Create timed event'), +(23081, 0, 2, 0, 61, 0, 100, 0, 0, 0, 0, 0, 45, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'Linked with previous event - Create timed event'), +(23081, 0, 3, 0, 59, 0, 100, 0, 23081, 0, 0, 0, 12, 22911, 2, 300000, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'Timed event - Summon Vimgol'); + +DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId`=13 AND `SourceEntry` = 39921; +INSERT INTO `conditions` (`SourceTypeOrReferenceId`, `SourceGroup`, `SourceEntry`, `SourceId`, `ElseGroup`, `ConditionTypeOrReference`, `ConditionTarget`, `ConditionValue1`, `ConditionValue2`, `ConditionValue3`, `NegativeCondition`, `ErrorType`, `ErrorTextId`, `ScriptName`, `Comment`) VALUES +(13, 1, 39921, 0, 0, 31, 0, 3, 23081, 0, 0, 0, 0, '', 'pentagram only hits summon bunny'), +(13, 1, 39921, 0, 1, 31, 0, 3, 23040, 0, 0, 0, 0, '', 'pentagram only hits circle bunny'); + +DELETE FROM `creature_text` WHERE `entry`=22911; +INSERT INTO `creature_text` (`entry`, `groupid`, `id`, `text`, `type`, `language`, `probability`, `emote`, `duration`, `sound`, `comment`, `BroadcastTextID`) VALUES +(22911, 0, 0, 'You dare summon me?', 14, 0, 100, 15, 0, 0, 'Vim\'gol the Vile', 20733), +(22911, 1, 0, 'Now me grow bigger and crush you!', 14, 0, 100, 0, 0, 0, 'Vim\'gol the Vile', 21264); + +UPDATE `creature_template` SET `AIName`='SmartAI' WHERE `entry`=22911; + +DELETE FROM `smart_scripts` WHERE `entryorguid` = 22911; +INSERT INTO `smart_scripts` (`entryorguid`, `source_type`, `id`, `link`, `event_type`, `event_phase_mask`, `event_chance`, `event_flags`, `event_param1`, `event_param2`, `event_param3`, `event_param4`, `action_type`, `action_param1`, `action_param2`, `action_param3`, `action_param4`, `action_param5`, `action_param6`, `target_type`, `target_param1`, `target_param2`, `target_param3`, `target_x`, `target_y`, `target_z`, `target_o`, `comment`) VALUES +(22911, 0, 0, 0, 4, 0, 100, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, "Vim'gol the Vile - On Agro Say"), +(22911, 0, 1, 0, 6, 0, 100, 0, 0, 0, 0, 0, 11, 39862, 2, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, "Vim'gol the Vile - On Death - Cast Vim'gol: Summon Vim'gol's Vile Grimoire Chest"), +(22911, 0, 2, 0, 2, 0, 100, 1, 0, 50, 60000, 60000, 11, 40545, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, "Vim'gol the Vile - On 50% HP - Cast Unholy Growth (No repeat)"), +(22911, 0, 3, 0, 23, 0, 100, 1, 40545, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, "Vim'gol the Vile - On 50% HP - Cast Unholy Growth (No repeat)"); + +DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId`=22 AND `SourceEntry`=23040; +INSERT INTO `conditions` (`SourceTypeOrReferenceId`, `SourceGroup`, `SourceEntry`, `SourceId`, `ElseGroup`, `ConditionTypeOrReference`, `ConditionTarget`, `ConditionValue1`, `ConditionValue2`, `ConditionValue3`, `NegativeCondition`, `ErrorType`, `ErrorTextId`, `ScriptName`, `Comment`) VALUES +(22, 2, 23040, 0, 0, 9, 0, 10998, 0, 0, 0, 0, 0, '', 'Execute SAI only if player is on Grim(oire) Business'), +(22, 2, 23040, 0, 0, 29, 1, 22911, 200, 0, 1, 0, 0, '', 'Execute SAI only if Vim Gol is not already spawned'); diff --git a/sql/updates/world/2014_06_23_20_world_misc.sql b/sql/updates/world/2014_06_23_20_world_misc.sql new file mode 100644 index 00000000000..4d0afaa52aa --- /dev/null +++ b/sql/updates/world/2014_06_23_20_world_misc.sql @@ -0,0 +1,134 @@ +-- +DELETE FROM `areatrigger_involvedrelation` WHERE `id` = 4987; +INSERT INTO `areatrigger_involvedrelation` (`id`,`quest`) VALUES +(4987,12274); + +DELETE FROM `areatrigger_scripts` WHERE `entry` = 4987; +INSERT INTO `areatrigger_scripts` (`entry`, `ScriptName`) VALUES +(4987,'SmartTrigger'); + +DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId`=22 AND `SourceEntry`=4987 AND `SourceId`=2; +INSERT INTO `conditions` (`SourceTypeOrReferenceId`,`SourceGroup`,`SourceEntry`,`SourceId`,`ElseGroup`,`ConditionTypeOrReference`,`ConditionTarget`,`ConditionValue1`,`ConditionValue2`,`ConditionValue3`,`NegativeCondition`,`ErrorTextId`,`ScriptName`,`Comment`) VALUES +(22,1,4987,2,0,9,0,12274,0,0,0,0,'','High Abbot Landgren trigger only activates if player is on A Fall from Grace'), +(22,1,4987,2,0,1,0,48753,0,0,0,0,'','High Abbot Landgren trigger only activates if player Has A Fall from Grace: Bell Rung Dummy Aura'), +(22,1,4987,2,0,1,0,48756,0,0,0,0,'','High Abbot Landgren trigger only activates if player Has A Fall from Grace: Ring Kissed Dummy Aura'); + +UPDATE `creature_template` SET `minlevel`=73, `maxlevel`=73, `exp`=2,`AIName`= 'SmartAI' WHERE `entry`=27439; + +DELETE FROM `smart_scripts` WHERE `entryorguid` =4987 AND `source_type`=2; +INSERT INTO `smart_scripts` (`entryorguid`,`source_type`,`id`,`link`,`event_type`,`event_phase_mask`,`event_chance`,`event_flags`,`event_param1`,`event_param2`,`event_param3`,`event_param4`,`action_type`,`action_param1`,`action_param2`,`action_param3`,`action_param4`,`action_param5`,`action_param6`,`target_type`,`target_param1`,`target_param2`,`target_param3`,`target_x`,`target_y`,`target_z`,`target_o`,`comment`) VALUES +(4987,2,0,1,46,0,100,0,4987,0,0,0,45,1,1,0,0,0,0,10,98593,23837,0,0,0,0,0,"On Trigger - Set Data"); + +DELETE FROM `smart_scripts` WHERE `entryorguid` IN(27350,-98593); +INSERT INTO `smart_scripts` (`entryorguid`, `source_type`, `id`, `link`, `event_type`, `event_phase_mask`, `event_chance`, `event_flags`, `event_param1`, `event_param2`, `event_param3`, `event_param4`, `action_type`, `action_param1`, `action_param2`, `action_param3`, `action_param4`, `action_param5`, `action_param6`, `target_type`, `target_param1`, `target_param2`, `target_param3`, `target_x`, `target_y`, `target_z`, `target_o`, `comment`) VALUES +(-98593, 0, 0, 1, 38, 0, 100, 0, 1, 1, 90000, 90000, 45, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'ELM General Purpose Bunny - On Data Set - Set Data'), +(-98593, 0, 1, 0, 61, 0, 100, 0, 0, 0, 0, 0, 11, 48757, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'ELM General Purpose Bunny - Linked with Previous Event - Cast A Fall from Grace: Summon High Abbot Landgren'), +(27350, 0, 0, 0, 19, 0, 100, 0, 12274, 0, 0, 0, 85, 48763, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 'Agent Skully - On Quest Accept - Spellcast A Fall from Grace: Scarlet Raven Priest Image (Male)'), +(27350, 0, 1, 0, 62, 0, 100, 0, 9501, 0, 0, 0, 85, 48763, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 'Agent Skully - On gossip option select - Spellcast A Fall from Grace: Scarlet Raven Priest Image (Male)'), +(27350, 0, 2, 0, 19, 0, 100, 0, 12274, 0, 0, 0, 85, 48761, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 'Agent Skully - On Quest Accept - Spellcast A Fall from Grace: Scarlet Raven Priest Image (Female)'), +(27350, 0, 3, 0, 62, 0, 100, 0, 9501, 0, 0, 0, 85, 48761, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 'Agent Skully - On gossip option select - Spellcast A Fall from Grace: Scarlet Raven Priest Image (Female)'), +(27350, 0, 4, 0, 20, 0, 100, 0, 12274, 0, 0, 0, 85, 48765, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 'Agent Skully - On Quest Complete - Cast A Fall from Grace: Quest Completion'); + +DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId`=15 AND `SourceGroup`=9532; +INSERT INTO `conditions` (`SourceTypeOrReferenceId`, `SourceGroup`, `SourceEntry`, `SourceId`, `ElseGroup`, `ConditionTypeOrReference`, `ConditionTarget`, `ConditionValue1`, `ConditionValue2`, `ConditionValue3`, `NegativeCondition`, `ErrorType`, `ErrorTextId`, `ScriptName`, `Comment`) VALUES +(15, 9532, 0, 0, 0, 9, 0, 12274, 0, 0, 0, 0, 0, '', 'High Abbot Landgren - Show gossip option only if player has taken A Fall from Grace'), +(15, 9532, 0, 0, 0,29, 0, 27247, 30, 0, 1, 0, 0, '', 'High Abbot Landgren - Show gossip option only if There is no devout Bodyguard'), +(15, 9532, 0, 0, 0, 1, 0, 48753, 0, 0, 0, 0, 0, '', 'High Abbot Landgren - Show gossip option only if player has A Fall from Grace: Bell Rung Dummy Aura'); + +DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId`=22 AND `SourceEntry`=27350; +INSERT INTO `conditions` (`SourceTypeOrReferenceId`, `SourceGroup`, `SourceEntry`, `SourceId`, `ElseGroup`, `ConditionTypeOrReference`, `ConditionTarget`, `ConditionValue1`, `ConditionValue2`, `ConditionValue3`, `NegativeCondition`, `ErrorType`, `ErrorTextId`, `ScriptName`, `Comment`) VALUES +(22, 1, 27350, 0, 0,20, 0, 0, 0, 0, 0, 0, 0, '', 'execute sai only if male character'), +(22, 2, 27350, 0, 0,20, 0, 0, 0, 0, 0, 0, 0, '', 'execute sai only if male character'), +(22, 3, 27350, 0, 0,20, 0, 1, 0, 0, 0, 0, 0, '', 'execute sai only if female character'), +(22, 4, 27350, 0, 0,20, 0, 1, 0, 0, 0, 0, 0, '', 'execute sai only if female character'); + +UPDATE `gameobject_template` SET `AIName`='SmartGameObjectAI', `ScriptName`='' WHERE `entry`=188713; + +DELETE FROM `smart_scripts` WHERE `source_type`=1 AND `entryorguid`=188713; +INSERT INTO `smart_scripts` (`entryorguid`, `source_type`, `id`, `link`, `event_type`, `event_phase_mask`, `event_chance`, `event_flags`, `event_param1`, `event_param2`, `event_param3`, `event_param4`, `action_type`, `action_param1`, `action_param2`, `action_param3`, `action_param4`, `action_param5`, `action_param6`, `target_type`, `target_param1`, `target_param2`, `target_param3`, `target_x`, `target_y`, `target_z`, `target_o`, `comment`) VALUES +(188713, 1, 0 ,1, 70, 0, 100, 0, 2, 0, 0,0,45,1,1,0,0,0,0,10,105877,27245,0,0,0,0,0, 'Abbey Bell Rope - On Activate - Set Data High Abbot Landgren'), +(188713, 1, 1 ,0, 61, 0, 100, 0, 0, 0, 0,0,85,48753,0,0,0,0,0,7,0,0,0,0,0,0,0, 'Abbey Bell Rope - Linked with Previous Event - Invoker Cast A Fall from Grace: Bell Rung Dummy Aura'); + +UPDATE `creature_template` SET `AIName`= 'SmartAI' WHERE `entry` IN(27439,27245); + +DELETE FROM `smart_scripts` WHERE `entryorguid` IN(27439,27245); +INSERT INTO `smart_scripts` (`entryorguid`, `source_type`, `id`, `link`, `event_type`, `event_phase_mask`, `event_chance`, `event_flags`, `event_param1`, `event_param2`, `event_param3`, `event_param4`, `action_type`, `action_param1`, `action_param2`, `action_param3`, `action_param4`, `action_param5`, `action_param6`, `target_type`, `target_param1`, `target_param2`, `target_param3`, `target_x`, `target_y`, `target_z`, `target_o`, `comment`) VALUES +(27245, 0, 0 ,1,38, 0, 100, 0, 1,1,0,0,45,1,0,0,0,0,0,1,0,0,0,0,0,0,0,'High Abbot Landgren - On Data Set - Set Data'), +(27245, 0, 1 ,0,61, 0, 100, 0, 0,0,0,0,45,1,1,0,0,0,0,9,27247,0,30,0,0,0,0,'High Abbot Landgren - Linked with Previous Event - Set Data'), +(27245, 0, 2, 3,62, 0, 100, 0, 9536, 0, 0, 0, 85,48756,0,0,0,0,0,7, 0, 0, 0, 0, 0, 0, 0, 'High Abbot Landgren - On gossip option select - Cast Invoker Cast A Fall from Grace: Ring Kissed Dummy Aura'), +(27439, 0, 0, 0,11, 0, 100, 0, 0, 0, 0, 0, 53,0,27439,0,0,0,0,1, 0, 0, 0, 0, 0, 0, 0, 'High Abbot Landgren - On Spawn - Start WP'), +(27439, 0, 1, 2,40, 0, 100, 0, 2, 0, 0, 0, 1,0,0,0,0,0,0,1, 0, 0, 0, 0, 0, 0, 0, 'High Abbot Landgren - On Reached WP2 - Say'), +(27439, 0, 2, 0,61, 0, 100, 0, 0, 0, 0, 0, 54,6000,0,0,0,0,0,1, 0, 0, 0, 0, 0, 0, 0, 'High Abbot Landgren - Linked with Previous Event - Pause WP'), +(27439, 0, 3, 4,40, 0, 100, 0,9, 0, 0, 0, 66,0,0,0,0,0,0,1, 0, 0, 0, 0, 0, 0, 4.5, 'High Abbot Landgren - On Reached WP10 - Set Orientation'), +(27439, 0, 4, 0,61, 0, 100, 0,0, 0, 0, 0, 1,1,10000,0,0,0,0,21, 50, 0, 0, 0, 0, 0, 0, 'High Abbot Landgren - Linked with Previous Event - Say'), +(27439 ,0, 5, 0,52,0,100,0,1,27439,0,0,1,2,10000,0,0,0,0,21,50,0,0,0,0,0,0, 'High Abbot Landgren - On Text Over Say - Say'), +(27439 ,0, 6, 0,52,0,100,0,2,27439,0,0,1,3,10000,0,0,0,0,21,50,0,0,0,0,0,0, 'High Abbot Landgren - On Text Over Say - Say'), +(27439 ,0, 7, 0,52,0,100,0,3,27439,0,0,1,4,10000,0,0,0,0,21,50,0,0,0,0,0,0, 'High Abbot Landgren - On Text Over Say - Say'), +(27439 ,0, 8, 9,52,0,100,0,4,27439,0,0,1,5,10000,0,0,0,0,21,50,0,0,0,0,0,0, 'High Abbot Landgren - On Text Over Say - Say'), +(27439 ,0, 9,10,61,0,100,0,0,0,0,0,11,48771,0,0,0,0,0,21,50,0,0,0,0,0,0, 'High Abbot Landgren - Linked with Previous Event - Cast A Fall from Grace: Kill Credit'), +(27439 ,0,10,11,61,0,100,0,0,0,0,0,15,12274,0,0,0,0,0,21,50,0,0,0,0,0,0, 'High Abbot Landgren - Linked with Previous Event - Call Areaexploredoreventhappens'), +(27439 ,0,11,12,61,0,100,0,0,0,0,0,11,48773,0,0,0,0,0,1,0,0,0,0,0,0,0, 'High Abbot Landgren - Linked with Previous Event - Cast A Fall from Grace: High Abbot Ride Vehicle'), +(27439 ,0,12,13,61,0,100,0,0,0,0,0,11,66733,2,0,0,0,0,1,0,0,0,0,0,0,0, 'High Abbot Landgren - Linked with Previous Event - Cast Jump Back'), +(27439 ,0,13,0,61,0,100,0,0,0,0,0,41,2000,0,0,0,0,0,1,0,0,0,0,0,0,0, 'High Abbot Landgren - Linked with Previous Event - Despawn After 2 Seconds'); + +UPDATE `creature_template` SET `AIName`= 'SmartAI' WHERE `entry`= 27247; +DELETE FROM `smart_scripts` WHERE `entryorguid`=27247; +INSERT INTO `smart_scripts` (`entryorguid`,`source_type`,`id`,`link`,`event_type`,`event_phase_mask`,`event_chance`,`event_flags`,`event_param1`,`event_param2`,`event_param3`,`event_param4`,`action_type`,`action_param1`,`action_param2`,`action_param3`,`action_param4`,`action_param5`,`action_param6`,`target_type`,`target_param1`,`target_param2`,`target_param3`,`target_x`,`target_y`,`target_z`,`target_o`,`comment`) VALUES +(27247,0,0,0,0,0,100,0,4000,7000,10000,15000,11,38256,0,0,0,0,0,7,0,0,0,0,0,0,0, 'Devout Bodyguard - IC - Cast Piercing Howl'), +(27247,0,1,2,38,0,100,0,1,1,0,0,45,1,0,0,0,0,0,1,0,0,0,0,0,0,0, 'Devout Bodyguard - On Data Set - Set Data'), +(27247,0,2,3,61,0,100,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0, 'Devout Bodyguard - Linked with Previous Event - Say'), +(27247,0,3,4,61,0,100,0,0,0,0,0,53,1,27247,0,0,0,1,1,0,0,0,0,0,0,0, 'Devout Bodyguard - Linked with Previous Event - Start WP'), +(27247,0,4,0,61,0,100,0,0,0,0,0,22,2,0,0,0,0,0,1,0,0,0,0,0,0,0, 'Devout Bodyguard - Linked with Previous Event - Set Phase 2'), +(27247,0,5,0,40,0,100,0,14,27247,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0, 'Devout Bodyguard - On Reached WP 14 - Say'), +(27247,0,6,7,40,0,100,0,27,27247,0,0,55,0,0,0,0,0,0,1,0,0,0,0,0,0,0, 'Devout Bodyguard - On Reached WP 27 - Stop WP'), +(27247,0,7,0,61,0,100,0,0,0,0,0,24,0,0,0,0,0,0,1,0,0,0,0,0,0,0, 'Devout Bodyguard - Linked with Previous Event - Evade'), +(27247,0,8,0,11,0,100,0,0,0,0,0,101,0,0,0,0,0,0,1,0,0,0,0,0,0,0, 'Devout Bodyguard - On Spawn - Set Home Position'); + +DELETE FROM `creature_text` WHERE `entry` IN (27245,27247,27439); +INSERT INTO `creature_text` (`entry`, `groupid`, `id`, `text`, `type`, `language`, `probability`, `emote`, `duration`, `sound`, `comment`, `BroadcastTextID`) VALUES +(27247, 0, 0, 'Hey, who rang the bell?', 12, 0, 100, 0, 0, 0, 'Devout Bodyguard', 26610), +(27439, 0, 0, 'I know a place nearby where we can speak in private, my child. Follow me.', 12, 0, 100, 0, 0, 0, 'High Abbot Landgren', 26629), +(27439, 1, 0, 'Did you think that I could not see through your flimsy disguise, $N?', 12, 0, 100, 0, 0, 0, 'High Abbot Landgren', 26631), +(27439, 2, 0, 'There is much that you do not understand, $R. The Master sees all.', 12, 0, 100, 0, 0, 0, 'High Abbot Landgren', 26632), +(27439, 3, 0, 'He told me that you would come for me. I won\'t die by your hand, though. I have seen what you have done to my compatriots.', 12, 0, 100, 0, 0, 0, 'High Abbot Landgren', 26633), +(27439, 4, 0, 'No. I will leave this world in a manner of my own choosing. And I will return, the grand admiral\'s will permitting!', 12, 0, 100, 0, 0, 0, 'High Abbot Landgren', 26634), +(27439, 5, 0, 'AAAEEEEIIIiiiiiiiiiiiiiiiiiiiiiiiiiiii........................................', 12, 0, 100, 0, 0, 0, 'High Abbot Landgren', 26636); + +DELETE FROM `waypoints` WHERE `entry`IN(27247,27439); +INSERT INTO `waypoints` (`entry`, `pointid`, `position_x`, `position_y`, `position_z`, `point_comment`) VALUES +(27247, 1, 2799.233154,-479.702179,119.616562, 'Devout Bodyguard'), +(27247, 2, 2814.937500,-465.844482,119.613434, 'Devout Bodyguard'), +(27247, 3, 2823.792236,-472.341522,125.244446, 'Devout Bodyguard'), +(27247, 4, 2830.335205,-472.019501,131.034653, 'Devout Bodyguard'), +(27247, 5, 2836.603760,-468.373047,135.362701, 'Devout Bodyguard'), +(27247, 6, 2839.449219,-459.743408,135.362701, 'Devout Bodyguard'), +(27247, 7, 2835.552002,-451.271088,135.362701, 'Devout Bodyguard'), +(27247, 8, 2824.675049,-447.810760,135.362701, 'Devout Bodyguard'), +(27247, 9, 2817.437744,-468.281036,135.361267, 'Devout Bodyguard'), +(27247,10, 2821.199707,-471.310425,138.636017, 'Devout Bodyguard'), +(27247,11, 2827.012695,-472.998871,143.907898, 'Devout Bodyguard'), +(27247,12, 2830.540771,-472.438110,147.174271, 'Devout Bodyguard'), +(27247,13, 2837.653076,-467.185547,150.836685, 'Devout Bodyguard'), +(27247,14, 2828.407227,-458.208435,153.165573, 'Devout Bodyguard'), +(27247,15, 2837.653076,-467.185547,150.836685, 'Devout Bodyguard'), +(27247,16, 2830.540771,-472.438110,147.174271, 'Devout Bodyguard'), +(27247,17, 2827.012695,-472.998871,143.907898, 'Devout Bodyguard'), +(27247,18, 2821.199707,-471.310425,138.636017, 'Devout Bodyguard'), +(27247,19, 2817.437744,-468.281036,135.361267, 'Devout Bodyguard'), +(27247,20, 2824.675049,-447.810760,135.362701, 'Devout Bodyguard'), +(27247,21, 2835.552002,-451.271088,135.362701, 'Devout Bodyguard'), +(27247,22, 2839.449219,-459.743408,135.362701, 'Devout Bodyguard'), +(27247,23, 2836.603760,-468.373047,135.362701, 'Devout Bodyguard'), +(27247,24, 2830.335205,-472.019501,131.034653, 'Devout Bodyguard'), +(27247,25, 2823.792236,-472.341522,125.244446, 'Devout Bodyguard'), +(27247,26, 2814.937500,-465.844482,119.613434, 'Devout Bodyguard'), +(27247,27, 2799.233154,-479.702179,119.616562, 'Devout Bodyguard'), +(27439, 1, 2827.939941,-424.861115,119.889359, 'High Abbot Landgren'), +(27439, 2, 2827.616455,-419.490265,118.196106, 'High Abbot Landgren'), +(27439, 3, 2826.310303,-411.833801,118.196106, 'High Abbot Landgren'), +(27439, 4, 2812.848633,-411.278259,118.196106, 'High Abbot Landgren'), +(27439, 5, 2785.380371,-438.162445,118.204048, 'High Abbot Landgren'), +(27439, 6, 2776.644775,-465.078369,116.134209, 'High Abbot Landgren'), +(27439, 7, 2765.220703,-488.269043,113.898613, 'High Abbot Landgren'), +(27439, 8, 2738.468262,-524.502625,103.381577, 'High Abbot Landgren'), +(27439, 9, 2738.541748,-523.856567,103.497971, 'High Abbot Landgren'); diff --git a/sql/updates/world/2014_06_23_21_world_misc.sql b/sql/updates/world/2014_06_23_21_world_misc.sql new file mode 100644 index 00000000000..56cd96e8439 --- /dev/null +++ b/sql/updates/world/2014_06_23_21_world_misc.sql @@ -0,0 +1,119 @@ +-- +SET @CGUID := 143068; + +UPDATE `creature_template` SET `flags_extra`=130 WHERE `entry`=23308; + +DELETE FROM `creature` WHERE `id`=23308; +INSERT INTO `creature` (`guid`, `id`, `map`, `spawnMask`, `phaseMask`, `position_x`, `position_y`, `position_z`, `orientation`, `spawntimesecs`, `spawndist`, `MovementType`) VALUES +(@CGUID, 23308, 530, 1, 1, -4908.303, 693.3235, 68.30413, 2.408554, 120, 0, 0), -- 23308 (Area: 3759) +(@CGUID+1, 23308, 530, 1, 1, -4896.176, 713.5862, 67.87032, 2.827433, 120, 0, 0), -- 23308 (Area: 3759) +(@CGUID+2, 23308, 530, 1, 1, -4983.288, 621.2392, 82.10828, 0.418879, 120, 0, 0), -- 23308 (Area: 3759) +(@CGUID+3, 23308, 530, 1, 1, -4996.269, 636.3649, 86.29096, 3.01942, 120, 0, 0), -- 23308 (Area: 3759) +(@CGUID+4, 23308, 530, 1, 1, -5016.054, 648.3438, 86.95547, 3.822271, 120, 0, 0), -- 23308 (Area: 3759) +(@CGUID+5, 23308, 530, 1, 1, -4978.723, 717.5042, 82.54941, 5.340707, 120, 0, 0), -- 23308 (Area: 3759) +(@CGUID+6, 23308, 530, 1, 1, -4989.105, 732.9637, 81.77202, 5.61996, 120, 0, 0), -- 23308 (Area: 3759) +(@CGUID+7, 23308, 530, 1, 1, -5044.638, 693.0281, 83.74966, 0.5235988, 120, 0, 0), -- 23308 (Area: 3759) +(@CGUID+8, 23308, 530, 1, 1, -4942.709, 706.844, 79.96068, 4.24115, 120, 0, 0), -- 23308 (Area: 3759) +(@CGUID+9, 23308, 530, 1, 1, -5006.096, 711.0118, 82.39001, 3.106686, 120, 0, 0), -- 23308 (Area: 3759) +(@CGUID+10, 23308, 530, 1, 1, -4953.565, 785.4227, 65.59765, 4.729842, 120, 0, 0), -- 23308 (Area: 3759) +(@CGUID+11, 23308, 530, 1, 1, -5025.283, 697.3306, 82.73563, 1.972222, 120, 0, 0), -- 23308 (Area: 3759) +(@CGUID+12, 23308, 530, 1, 1, -4924.706, 690.315, 67.63488, 5.078908, 120, 0, 0), -- 23308 (Area: 3759) +(@CGUID+13, 23308, 530, 1, 1, -4905.923, 742.5164, 68.57097, 1.22173, 120, 0, 0), -- 23308 (Area: 3759) +(@CGUID+14, 23308, 530, 1, 1, -5052.508, 628.3175, 87.42931, 3.717551, 120, 0, 0), -- 23308 (Area: 3759) +(@CGUID+15, 23308, 530, 1, 1, -5067.49, 688.6788, 86.85928, 5.899213, 120, 0, 0), -- 23308 (Area: 3759) +(@CGUID+16, 23308, 530, 1, 1, -4983.404, 512.5572, 83.9359, 3.979351, 120, 0, 0), -- 23308 (Area: 3759) +(@CGUID+17, 23308, 530, 1, 1, -4968.315, 520.0115, 80.42331, 3.612832, 120, 0, 0), -- 23308 (Area: 3759) +(@CGUID+18, 23308, 530, 1, 1, -4937.222, 518.8829, 75.19988, 2.617994, 120, 0, 0), -- 23308 (Area: 3759) +(@CGUID+19, 23308, 530, 1, 1, -4890.038, 527.1823, 54.81821, 2.617994, 120, 0, 0), -- 23308 (Area: 3759) +(@CGUID+20, 23308, 530, 1, 1, -4891.44, 499.8959, 65.88749, 0.3141593, 120, 0, 0), -- 23308 (Area: 3759) +(@CGUID+21, 23308, 530, 1, 1, -4979.627, 570.6924, 80.22912, 1.308997, 120, 0, 0), -- 23308 (Area: 3759) +(@CGUID+22, 23308, 530, 1, 1, -4892.874, 546.2031, 44.15915, 2.70526, 120, 0, 0), -- 23308 (Area: 3759) +(@CGUID+23, 23308, 530, 1, 1, -4867.34, 538.803, 44.58378, 1.989675, 120, 0, 0), -- 23308 (Area: 3759) +(@CGUID+24, 23308, 530, 1, 1, -4876.236, 457.1823, 67.08725, 0.8377581, 120, 0, 0), -- 23308 (Area: 3759) +(@CGUID+25, 23308, 530, 1, 1, -4840.593, 453.3032, 55.7324, 3.298672, 120, 0, 0), -- 23308 (Area: 3759) +(@CGUID+26, 23308, 530, 1, 1, -4891.821, 415.4812, 66.3935, 5.550147, 120, 0, 0), -- 23308 (Area: 3759) +(@CGUID+27, 23308, 530, 1, 1, -4916.999, 406.5264, 80.99642, 5.009095, 120, 0, 0), -- 23308 (Area: 3759) +(@CGUID+28, 23308, 530, 1, 1, -4915.446, 264.3689, 58.88093, 4.747295, 120, 0, 0), -- 23308 (Area: 3759) +(@CGUID+29, 23308, 530, 1, 1, -4975.813, 389.8158, 86.52158, 1.256637, 120, 0, 0), -- 23308 (Area: 3759) +(@CGUID+30, 23308, 530, 1, 1, -4967.235, 321.069, 83.20417, 0.5061455, 120, 0, 0), -- 23308 (Area: 3759) +(@CGUID+31, 23308, 530, 1, 1, -4933.402, 362.5087, 86.51894, 4.921828, 120, 0, 0), -- 23308 (Area: 3759) +(@CGUID+32, 23308, 530, 1, 1, -4918.094, 365.6369, 78.95168, 1.239184, 120, 0, 0), -- 23308 (Area: 3759) +(@CGUID+33, 23308, 530, 1, 1, -4879.875, 285.0746, 61.36743, 4.276057, 120, 0, 0), -- 23308 (Area: 3759) +(@CGUID+34, 23308, 530, 1, 1, -4873.12, 293.9718, 59.86099, 4.363323, 120, 0, 0), -- 23308 (Area: 3759) +(@CGUID+35, 23308, 530, 1, 1, -4942.391, 406.8, 83.6211, 4.607669, 120, 0, 0), -- 23308 (Area: 3759) +(@CGUID+36, 23308, 530, 1, 1, -4974.749, 265.1832, 83.14781, 3.717551, 120, 0, 0), -- 23308 (Area: 3759) +(@CGUID+37, 23308, 530, 1, 1, -4938.747, 255.7843, 74.29904, 2.75762, 120, 0, 0), -- 23308 (Area: 3759) +(@CGUID+38, 23308, 530, 1, 1, -4889.052, 176.1976, 38.7179, 4.729842, 120, 0, 0), -- 23308 (Area: 3759) +(@CGUID+39, 23308, 530, 1, 1, -4928.201, 255.8155, 70.39934, 6.178465, 120, 0, 0), -- 23308 (Area: 3759) +(@CGUID+40, 23308, 530, 1, 1, -4931.203, 204.9994, 67.36839, 0.2617994, 120, 0, 0), -- 23308 (Area: 3759) +(@CGUID+41, 23308, 530, 1, 1, -4884.356, 184.6242, 39.38375, 3.839724, 120, 0, 0), -- 23308 (Area: 3759) +(@CGUID+42, 23308, 530, 1, 1, -4932.659, 148.9238, 61.47393, 3.892084, 120, 0, 0), -- 23308 (Area: 3759) +(@CGUID+43, 23308, 530, 1, 1, -5014.475, 185.911, 82.53312, 2.897247, 120, 0, 0), -- 23308 (Area: 3759) +(@CGUID+44, 23308, 530, 1, 1, -5003.236, 221.8654, 82.21045, 0.7504916, 120, 0, 0), -- 23308 (Area: 3759) +(@CGUID+45, 23308, 530, 1, 1, -5008.961, 149.1531, 79.27936, 6.091199, 120, 0, 0), -- 23308 (Area: 3759) +(@CGUID+46, 23308, 530, 1, 1, -4995.528, 242.3916, 80.93876, 1.361357, 120, 0, 0), -- 23308 (Area: 3759) +(@CGUID+47, 23308, 530, 1, 1, -4984.791, 149.5906, 81.97713, 3.612832, 120, 0, 0), -- 23308 (Area: 3759) +(@CGUID+48, 23308, 530, 1, 1, -4971.141, 221.0043, 80.24613, 1.256637, 120, 0, 0), -- 23308 (Area: 3759) +(@CGUID+49, 23308, 530, 1, 1, -4990.53, 183.5518, 82.90385, 1.239184, 120, 0, 0), -- 23308 (Area: 3759) +(@CGUID+50, 23308, 530, 1, 1, -4997.024, 307.7875, 83.69817, 1.570796, 120, 0, 0), -- 23308 (Area: 3759) +(@CGUID+51, 23308, 530, 1, 1, -5017.297, 127.4287, 78.72571, 1.22173, 120, 0, 0), -- 23308 (Area: 3759) +(@CGUID+52, 23308, 530, 1, 1, -4964.592, 122.5244, 72.23752, 3.001966, 120, 0, 0), -- 23308 (Area: 3759) +(@CGUID+53, 23308, 530, 1, 1, -4975.979, 124.5532, 78.93584, 4.729842, 120, 0, 0), -- 23308 (Area: 3759) +(@CGUID+54, 23308, 530, 1, 1, -4940.289, 135.1879, 60.06425, 4.694936, 120, 0, 0), -- 23308 (Area: 3759) +(@CGUID+55, 23308, 530, 1, 1, -4981.198, 72.68598, 69.87347, 1.605703, 120, 0, 0), -- 23308 (Area: 3759) +(@CGUID+56, 23308, 530, 1, 1, -4969.753, 83.70248, 65.03466, 0.4014257, 120, 0, 0), -- 23308 (Area: 3759) +(@CGUID+57, 23308, 530, 1, 1, -4939.698, -12.05306, 59.29105, 5.253441, 120, 0, 0), -- 23308 (Area: 3759) +(@CGUID+58, 23308, 530, 1, 1, -5035.422, -5.432726, 79.19983, 0.8028514, 120, 0, 0), -- 23308 (Area: 3759) +(@CGUID+59, 23308, 530, 1, 1, -5051.713, 6.357422, 79.31741, 3.979351, 120, 0, 0), -- 23308 (Area: 3759) +(@CGUID+60, 23308, 530, 1, 1, -4978.996, -61.19228, 61.58137, 3.612832, 120, 0, 0), -- 23308 (Area: 3759) +(@CGUID+61, 23308, 530, 1, 1, -4973.253, -45.63737, 64.77574, 2.86234, 120, 0, 0), -- 23308 (Area: 3759) +(@CGUID+62, 23308, 530, 1, 1, -4960.074, -29.78125, 64.1563, 2.635447, 120, 0, 0), -- 23308 (Area: 3759) +(@CGUID+63, 23308, 530, 1, 1, -4967.127, -96.59397, 47.67604, 0.4886922, 120, 0, 0), -- 23308 (Area: 3759) +(@CGUID+64, 23308, 530, 1, 1, -5048.987, -73.93305, 69.95586, 0.9773844, 120, 0, 0), -- 23308 (Area: 3759) +(@CGUID+65, 23308, 530, 1, 1, -5041.511, -64.20345, 73.23809, 1.762783, 120, 0, 0), -- 23308 (Area: 3759) +(@CGUID+66, 23308, 530, 1, 1, -5063.868, -93.08073, 66.99087, 0.8377581, 120, 0, 0), -- 23308 (Area: 3759) +(@CGUID+67, 23308, 530, 1, 1, -5083.502, -102.5659, 68.22646, 0.05235988, 120, 0, 0), -- 23308 (Area: 3759) +(@CGUID+68, 23308, 530, 1, 1, -5108.661, -99.04417, 70.57713, 4.991642, 120, 0, 0), -- 23308 (Area: 3759) +(@CGUID+69, 23308, 530, 1, 1, -5119.431, -88.93848, 72.73511, 5.67232, 120, 0, 0), -- 23308 (Area: 3759) +(@CGUID+70, 23308, 530, 1, 1, -5143.607, -81.98828, 72.99616, 1.396263, 120, 0, 0), -- 23308 (Area: 3759) +(@CGUID+71, 23308, 530, 1, 1, -5179.469, -155.4261, 47.33661, 4.834562, 120, 0, 0), -- 23308 (Area: 3759) +(@CGUID+72, 23308, 530, 1, 1, -5165.681, -40.96343, 75.41945, 4.956735, 120, 0, 0), -- 23308 (Area: 3759) +(@CGUID+73, 23308, 530, 1, 1, -5206.374, -107.9088, 67.12513, 1.780236, 120, 0, 0), -- 23308 (Area: 3759) +(@CGUID+74, 23308, 530, 1, 1, -5218.771, -95.07346, 55.70053, 0.3839724, 120, 0, 0), -- 23308 (Area: 3759) +(@CGUID+75, 23308, 530, 1, 1, -5171.434, -31.30295, 77.34641, 5.166174, 120, 0, 0), -- 23308 (Area: 3759) +(@CGUID+76, 23308, 530, 1, 1, -5173.663, -7.456272, 77.66401, 0.715585, 120, 0, 0), -- 23308 (Area: 3759) +(@CGUID+77, 23308, 530, 1, 1, -5237.753, 34.42166, 51.42384, 1.727876, 120, 0, 0), -- 23308 (Area: 3759) +(@CGUID+78, 23308, 530, 1, 1, -5146.234, 22.66222, 77.81999, 1.780236, 120, 0, 0), -- 23308 (Area: 3759) +(@CGUID+79, 23308, 530, 1, 1, -5162.378, 8.383246, 77.74229, 5.445427, 120, 0, 0), -- 23308 (Area: 3759) +(@CGUID+80, 23308, 530, 1, 1, -5109.182, 30.77496, 79.53506, 4.520403, 120, 0, 0), -- 23308 (Area: 3759) +(@CGUID+81, 23308, 530, 1, 1, -5240.278, 46.92209, 52.11669, 3.351032, 120, 0, 0), -- 23308 (Area: 3759) +(@CGUID+82, 23308, 530, 1, 1, -5105.193, 65.56229, 81.26714, 5.393067, 120, 0, 0), -- 23308 (Area: 3759) +(@CGUID+83, 23308, 530, 1, 1, -5088.723, 26.12283, 79.81441, 0.6457718, 120, 0, 0), -- 23308 (Area: 3759) +(@CGUID+84, 23308, 530, 1, 1, -5151.453, 67.02604, 80.27014, 3.769911, 120, 0, 0); -- 23308 (Area: 3759) + +UPDATE `creature_template` SET `ainame`='SmartAI' WHERE `entry` =23311; +DELETE FROM `smart_scripts` WHERE `entryorguid` =23311 AND `source_type`=0; +INSERT INTO `smart_scripts` (`entryorguid`, `source_type`, `id`, `link`, `event_type`, `event_phase_mask`, `event_chance`, `event_flags`, `event_param1`, `event_param2`, `event_param3`, `event_param4`, `action_type`, `action_param1`, `action_param2`, `action_param3`, `action_param4`, `action_param5`, `action_param6`, `target_type`, `target_param1`, `target_param2`, `target_param3`, `target_x`, `target_y`, `target_z`, `target_o`, `comment`) VALUES +(23311,0,0,1,8,0,100,1,40742,0,0,0,33,23311,0,0,0,0,0,7,0,0,0,0,0,0,0,'Disobedient Dragonmaw Peon - On Spell Hit (Booterang) - Give Kill Credit'), +(23311,0,1,2,61,0,100,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,'Disobedient Dragonmaw Peon - Linked with Previous Event - Say'), +(23311,0,2,3,61,0,100,0,0,0,0,0,59,1,0,0,0,0,0,1,0,0,0,0,0,0,0,'Disobedient Dragonmaw Peon - Linked with Previous Event - Set Run'), +(23311,0,3,4,61,0,100,0,0,0,0,0,69,0,0,0,0,0,0,19,23308,200,0,0,0,0,0,'Disobedient Dragonmaw Peon - Linked with Previous Event - Move to closest Dragonmaw Peon Work Node'), +(23311,0,4,0,61,0,100,0,0,0,0,0,41,30000,0,0,0,0,0,1,0,0,0,0,0,0,0,'Disobedient Dragonmaw Peon - Linked with Previous Event - Despawn After 30 seconds'), +(23311,0,5,6,38,0,100,0,1,1,0,0,45,1,0,0,0,0,0,1,0,0,0,0,0,0,0,'Disobedient Dragonmaw Peon - On Data Set - Set Data'), +(23311,0,6,0,61,0,100,0,0,0,0,0,5,233,0,0,0,0,0,1,0,0,0,0,0,0,0,'Disobedient Dragonmaw Peon - Linked with Previous Event - Play emote'); + +UPDATE `creature_template` SET `ainame`='SmartAI' WHERE `entry` =23308; + +DELETE FROM `smart_scripts` WHERE `entryorguid` =23308 AND `source_type`=0; +INSERT INTO `smart_scripts` (`entryorguid`, `source_type`, `id`, `link`, `event_type`, `event_phase_mask`, `event_chance`, `event_flags`, `event_param1`, `event_param2`, `event_param3`, `event_param4`, `action_type`, `action_param1`, `action_param2`, `action_param3`, `action_param4`, `action_param5`, `action_param6`, `target_type`, `target_param1`, `target_param2`, `target_param3`, `target_x`, `target_y`, `target_z`, `target_o`, `comment`) VALUES +(23308,0,0,0,1,0,100,0,1000,1000,1000,1000,45,1,1,0,0,0,0,11,23311,10,0,0,0,0,0,'Dragonmaw Peon Work Node - OOC - Set Data Disobedient Dragonmaw Peon'); + +DELETE FROM `creature_text` WHERE `entry` =23311; +INSERT INTO `creature_text` (`entry`, `groupid`, `id`, `text`, `type`, `language`, `probability`, `emote`, `duration`, `sound`, `comment`, `BroadcastTextID`) VALUES +(23311, 0, 0, 'ARGH! BOOTERANG!', 12, 0, 100, 0, 0, 0, 'Disobedient Dragonmaw Peon', 21335), +(23311, 0, 1, 'AYAYA! One day me have dat booterang...', 12, 0, 100, 0, 0, 0, 'Disobedient Dragonmaw Peon', 21336), +(23311, 0, 2, 'HEY! No more booterang! Me sorry! Me work!', 12, 0, 100, 0, 0, 0, 'Disobedient Dragonmaw Peon', 21332), +(23311, 0, 3, 'OOF! Booterang hurted me! Me tink work better den booterang!', 12, 0, 100, 0, 0, 0, 'Disobedient Dragonmaw Peon', 21333), +(23311, 0, 4, 'OWWWW! Ok, ok, me go back to work!', 12, 0, 100, 0, 0, 0, 'Disobedient Dragonmaw Peon', 21331), +(23311, 0, 5, 'WHY IT PUT DA BOOTERANG ON DA SKIN?? WHY??', 12, 0, 100, 0, 0, 0, 'Disobedient Dragonmaw Peon', 21334), +(23311, 0, 6, 'You is bad orc... baaad... or... argh!', 12, 0, 100, 0, 0, 0, 'Disobedient Dragonmaw Peon', 21223); diff --git a/sql/updates/world/2014_06_24_00_world_quest_template.sql b/sql/updates/world/2014_06_24_00_world_quest_template.sql new file mode 100644 index 00000000000..4778a45750d --- /dev/null +++ b/sql/updates/world/2014_06_24_00_world_quest_template.sql @@ -0,0 +1 @@ +UPDATE `quest_template` SET `SpecialFlags`=2 WHERE `Id` IN (9611, 9625, 9678, 9713, 9926, 10299, 10344); diff --git a/sql/updates/world/2014_06_24_01_world_misc.sql b/sql/updates/world/2014_06_24_01_world_misc.sql new file mode 100644 index 00000000000..678f6e0e44a --- /dev/null +++ b/sql/updates/world/2014_06_24_01_world_misc.sql @@ -0,0 +1,119 @@ +-- Q: The Forgotten Tale (12291) & The Truth Shall Set Us Free (12301), & Frostmourne Cavern. +SET @Valonforth := 27476; -- Captain Luc Valonforth +SET @FPeasant := 27226; -- Forgotten Peasant -- Ya tiene SAI +SET @FFootman := 27229; -- Forgotten Footman -- Ya tiene SAI +SET @FCaptain := 27220; -- Forgotten Captain -- Ya tiene SAI +SET @FKnight := 27224; -- Forgotten Knight -- Ya tiene SAI +SET @FRifleman := 27225; -- Forgotten Rifleman -- Ya tiene SAI +SET @Emissary := 27492; -- Alliance Emissary +SET @PrinceArthas := 27455; -- Prince Arthas +SET @Muradin := 27480; -- Muradin +SET @OrbItem := 37577; -- Orik's Crystalline Orb (Item) +SET @AuraForgotten := 48864; -- Aura of the Forgotten +SET @OrikSpell := 48866; -- Orik's Song (Spell) -- Send Script Event (18014) +SET @ArthasSpell := 48882; -- Spirit Redeemed (Spell) +SET @ForgottenSoul := 27465; -- Forgotten Soul (npc) +SET @DespawnSoul := 48811; -- Despawn Forgotten Soul (Spell) -- Mata soul? + +DELETE FROM creature_summon_groups WHERE `summonerId`=@Valonforth; +INSERT INTO `creature_summon_groups` (`summonerId`, `summonerType`, `groupId`, `entry`, `position_x`, `position_y`, `position_z`, `orientation`, `summonType`, `summonTime`) VALUES +(@Valonforth,0,1,@Ffootman,3093.6093,-1248.6965,10.7540,0.6420,3,42300), +(@Valonforth,0,1,@Ffootman,3091.3823,-1245.5709,10.4475,0.0712,3,42300), +(@Valonforth,0,1,@Ffootman,3089.9931,-1248.9025,10.5483,0.0712,3,42300), +(@Valonforth,0,1,@Ffootman,3088.4882,-1245.6225,10.3214,0.5183,3,42300), +(@Valonforth,0,1,@Ffootman,3086.1555,-1242.1805,10.3200,0.3025,3,42300), +(@Valonforth,0,1,@Ffootman,3101.2993,-1231.2617,10.2738,4.8548,3,42300), +(@Valonforth,0,1,@Ffootman,3096.5869,-1232.9973,9.9625,4.8965,3,42300), +(@Valonforth,0,1,@Ffootman,3092.5539,-1251.9555,11.0228,0.7564,3,42300), +(@Valonforth,0,1,@Ffootman,3089.5644,-1239.8127,10.3610,6.0050,3,42300), +(@Valonforth,0,1,@Ffootman,3095.2739,-1250.8770,10.9930,0.9054,3,42300), +(@Valonforth,0,1,@FRifleman,3089.7722,-1242.4241,10.3311,0.3176,3,110000), +(@Valonforth,0,1,@FRifleman,3099.4746,-1234.2282,10.0952,4.8548,3,110000), +(@Valonforth,0,1,@FKnight,3088.7661,-1237.4055,10.4127,0.1172,3,110000), +(@Valonforth,0,1,@FKnight,3094.5632,-1233.2812,9.9865,5.0920,3,110000), +(@Valonforth,0,1,@FCaptain,3085.7636,-1224.5657,12.4462,5.2552,3,110000), +(@Valonforth,0,1,@FCaptain,3083.3088,-1238.1966,10.9768,6.0426,3,110000), +(@Valonforth,0,1,@Emissary,3087.9968,-1223.3319,11.3495,6.0426,3,40000); + +UPDATE `creature` SET `spawndist`=0,`MovementType`=0 WHERE `id`=@THELZAN; + +DELETE FROM event_scripts WHERE id IN (18014); -- Evento 'The Truth...' +INSERT INTO event_scripts VALUES +(18014,0,10,@Valonforth,90000,0,3100.3500,-1252.466,11.6589,2.165); -- Event The Truth... + +UPDATE `creature_template` SET `AIName`='SmartAI' WHERE `entry` IN (@Valonforth,@Emissary); +UPDATE `creature_template` SET `InhabitType`=1 WHERE `entry` IN (@MURADIN,@PrinceArthas); +DELETE FROM `smart_scripts` WHERE `source_type`=0 AND `entryorguid`= @MURADIN AND `id`=2; +DELETE FROM `smart_scripts` WHERE `source_type`=0 AND `entryorguid`= @PrinceArthas AND `id`=1; +DELETE FROM `smart_scripts` WHERE `source_type`=0 AND `entryorguid`= @FCaptain AND `id`>2; +DELETE FROM `smart_scripts` WHERE `source_type`=0 AND `entryorguid`= @FKnight AND `id`>14; +DELETE FROM `smart_scripts` WHERE `source_type`=0 AND `entryorguid`= @FRifleman AND `id`>21; +DELETE FROM `smart_scripts` WHERE `source_type`=0 AND `entryorguid` IN (@Valonforth,@Emissary,@FFootman); +DELETE FROM `smart_scripts` WHERE `source_type`=9 AND `entryorguid` IN (@PrinceArthas*100+1,@MURADIN*100+2,@Emissary*100,@Valonforth*100); +INSERT INTO `smart_scripts` (`entryorguid`,`source_type`,`id`,`link`,`event_type`,`event_phase_mask`,`event_chance`,`event_flags`,`event_param1`,`event_param2`,`event_param3`,`event_param4`,`action_type`,`action_param1`,`action_param2`,`action_param3`,`action_param4`,`action_param5`,`action_param6`,`target_type`,`target_param1`,`target_param2`,`target_param3`,`target_x`,`target_y`,`target_z`,`target_o`,`comment`) VALUES +(@PrinceArthas,0,1,0,38,0,100,0,1,1,0,0,80,@PrinceArthas*100+1,2,0,0,0,0,1,0,0,0,0,0,0,0,'Prince Arthas - On dataset - Run script The Truth Shall Set...'), +(@MURADIN,0,2,0,38,0,100,0,2,1,0,0,80,@MURADIN*100+2,2,0,0,0,0,1,0,0,0,0,0,0,0,'Muradin - On dataset - Run script The Truth Shall Set...'), +(@Valonforth,0,0,1,54,0,100,0,0,0,0,0,107,1,0,0,0,0,0,1,0,0,0,0,0,0,0,"Valonforth - Just Spawned - Summon Group"), +(@Valonforth,0,1,0,61,0,100,0,0,0,0,0,80,@Valonforth*100,2,0,0,0,0,1,0,0,0,0,0,0,0,"Valonforth - Link - Run Script"), +(@Emissary,0,0,0,54,0,100,0,0,0,0,0,53,0,@Emissary,0,0,0,0,1,0,0,0,0,0,0,0,"Alliance Emissary - Just Spawned - Start Waypoint"), +(@Emissary,0,1,2,40,0,100,0,2,@Emissary,0,0,54,30000,0,0,0,0,0,1,0,0,0,0,0,0,0,'Alliance Emissary - On reached WP2 - Pause Event'), +(@Emissary,0,2,0,61,0,100,0,0,0,0,0,80,@Emissary*100,2,0,0,0,0,1,0,0,0,0,0,0,0,'Alliance Emissary - Link - Run script'), +-- The Truth Shall Set Us Free - scripts +(@Valonforth*100,9,0,0,0,0,100,0,5000,5000,0,0,1,0,7000,0,0,0,0,1,0,0,0,0,0,0,0,"Valonforth - Script - Say 0"), +(@Valonforth*100,9,1,0,0,0,100,0,15500,15500,0,0,1,1,5000,0,0,0,0,1,0,0,0,0,0,0,0,"Valonforth - Script - Say 1"), +(@Valonforth*100,9,2,0,0,0,100,0,13000,13000,0,0,1,2,8000,0,0,0,0,1,0,0,0,0,0,0,0,"Valonforth - Script - Say 2"), +(@Valonforth*100,9,3,0,0,0,100,0,12000,12000,0,0,1,3,6000,0,0,0,0,1,0,0,0,0,0,0,0,"Valonforth - Script - Say 3"), +(@Emissary*100,9,0,0,0,0,100,0,3500,3500,0,0,1,0,8500,0,0,0,0,1,0,0,0,0,0,0,0,'Alliance Emissary - Script - Says 0'), +(@Emissary*100,9,1,0,0,0,100,0,13000,13000,0,0,1,1,9000,0,0,0,0,1,0,0,0,0,0,0,0,'Alliance Emissary - Script - Says 1'), +(@Emissary*100,9,2,0,0,0,100,0,7000,7000,0,0,69,0,0,0,0,0,0,8,0,0,0,3087.9968,-1223.3319,11.3495,0,'Alliance Emissary - Script - moveto'), +(@Emissary*100,9,3,0,0,0,100,0,6000,6000,0,0,45,3,1,0,0,0,0,11,@FFootman,30,0,0,0,0,0,"Alliance Emissary - Script - Set Data 3 1 Forgotten Footman"), +(@Emissary*100,9,4,0,0,0,100,0,0,0,0,0,12,@PrinceArthas,3,63000,0,0,0,8,0,0,0,3104.5910,-1226.6417,12.0252,4.4519,"Alliance Emissary - Script - Summon Prince Arthas"), +(@Emissary*100,9,5,0,0,0,100,0,0,0,0,0,12,@Muradin,3,63000,0,0,0,8,0,0,0,3105.9204,-1228.2515,11.6541,11.6541,"Alliance Emissary - Script - Summon Muradin"), +(@Emissary*100,9,6,0,0,0,100,0,0,0,0,0,45,1,1,0,0,0,0,11,@PrinceArthas,20,0,0,0,0,0,"Alliance Emissary - Script - Set Data 1 1 Prince Arthas"), +(@Emissary*100,9,7,0,0,0,100,0,0,0,0,0,45,2,1,0,0,0,0,11,@Muradin,20,0,0,0,0,0,"Alliance Emissary - Script - Set Data 2 1 Muradin"), +(@Emissary*100,9,8,0,0,0,100,0,0,0,0,0,41,1000,0,0,0,0,0,1,0,0,0,0,0,0,0,"Alliance Emissary - Script - Despawn"), +(@PrinceArthas*100+1,9,0,0,0,0,100,0,0,0,0,0,69,0,0,0,0,0,0,8,0,0,0,3101.1733,-1238.0469,10.3770,0,'Prince Arthas - Script - moveto'), +(@PrinceArthas*100+1,9,1,0,0,0,100,0,2000,2000,0,0,1,0,9000,0,0,0,0,1,0,0,0,0,0,0,0,'Prince Arthas - Script - Says 0'), +(@PrinceArthas*100+1,9,2,0,0,0,100,0,14000,14000,0,0,1,1,11000,0,0,0,0,1,0,0,0,0,0,0,0,'Prince Arthas - Script - Says 1'), +(@PrinceArthas*100+1,9,3,0,0,0,100,0,15000,15000,0,0,1,2,6000,0,0,0,0,1,0,0,0,0,0,0,0,'Prince Arthas - Script - Says 2'), +(@PrinceArthas*100+1,9,4,0,0,0,100,0,18000,18000,0,0,1,3,3000,0,0,0,0,1,0,0,0,0,0,0,0,'Prince Arthas - Script - Says 3'), +(@PrinceArthas*100+1,9,5,0,0,0,100,0,11000,11000,0,0,11,@ArthasSpell,0,0,0,0,0,11,0,35,0,0,0,0,0,'Prince Arthas - Script - Cast Spirit Redeemed'), +(@Muradin*100+2,9,0,0,0,0,100,0,0,0,0,0,69,0,0,0,0,0,0,8,0,0,0,3103.4113,-1238.8131,10.6220,0,"Muradin - Script - Moveto"), +(@Muradin*100+2,9,1,0,0,0,100,0,28000,28000,0,0,1,0,2500,0,0,0,0,1,0,0,0,0,0,0,0,'Muradin - Script - Says 0'), +(@Muradin*100+2,9,2,0,0,0,100,0,10000,10000,0,0,1,1,10000,0,0,0,0,1,0,0,0,0,0,0,0,'Muradin - Script - Says 1'), + +-- The Forgotten Tale & normal SAI +-- Forgottens: Captain +(@FCaptain,0,3,4,8,0,100,0,@ArthasSpell,0,0,0,3,27465,0,0,0,0,0,1,0,0,0,0,0,0,0,'Forgotten Captain - Spell Hit - Morph to Forgotten Soul'), +(@FCaptain,0,4,0,61,0,100,0,0,0,0,0,37,0,0,0,0,0,0,1,0,0,0,0,0,0,0,'Forgotten Captain - Link - Die'), +-- Knight +(@FKnight,0,15,16,8,0,100,0,@ArthasSpell,0,0,0,3,27465,0,0,0,0,0,1,0,0,0,0,0,0,0,'Forgotten Knight - Spell Hit - Morph to Forgotten Soul'), +(@FKnight,0,16,0,61,0,100,0,0,0,0,0,51,0,0,0,0,0,0,1,0,0,0,0,0,0,0,'Forgotten Knight - Link - Die'), +-- Rifleman +(@FRifleman,0,22,23,8,0,100,0,@ArthasSpell,0,0,0,3,27465,0,0,0,0,0,1,0,0,0,0,0,0,0,'Forgotten Rifleman - Morph to Forgotten Soul'), +(@FRifleman,0,23,0,61,0,100,0,0,0,0,0,51,0,0,0,0,0,0,1,0,0,0,0,0,0,0,'Forgotten Rifleman - Link - Die'), +-- Footman +(@FFootman,0,0,1,62,0,100,0,9545,0,0,0,33,27474,0,0,0,0,0,21,10,0,0,0,0,0,0,'Forgotten Footman - On gossip option select quest credit'), -- deberia Cast 48832 +(@FFootman,0,1,0,61,0,100,0,0,0,0,0,72,0,0,0,0,0,0,7,0,0,0,0,0,0,0,'Forgotten Footman - Close Gossip'), +(@FFootman,0,2,0,23,0,100,0,48143,0,0,0,11,48143,0,0,0,0,0,1,0,0,0,0,0,0,0,'Forgotten Footman - Add Forgotten Aura if missing'), +(@FFootman,0,3,0,0,0,100,0,3000,7000,9000,12000,11,32587,0,0,0,0,0,2,0,0,0,0,0,0,0,'Forgotten Footman - Cast Shield Block'), +(@FFootman,0,4,0,38,0,100,0,3,1,0,0,53,1,@FFootman,0,0,0,0,1,0,0,0,0,0,0,0,"Forgotten Footman - On Data set 3 1 - Start Waypoint"); + +DELETE FROM `creature_text` WHERE `entry` IN (@Valonforth,@Emissary); +INSERT INTO `creature_text` (`entry`, `groupid`, `id`, `text`, `type`, `language`, `probability`, `emote`, `duration`, `sound`, `comment`, `BroadcastTextID`) VALUES +(27492, 1, 0, 'That\'s correct. My men report that the roads from here to the shore are held by the undead. You\'ll need to find an alternate route back to your ships.', 12, 0, 100, 378, 4000, 12724, 'Alliance Emissary 1 - Q: The Truth Shall Set Us Free', 26712), +(27492, 0, 0, 'By royal edict, you men are to return to Lordaeron immediately. Lord Uther has convinced the king to recall this expedition.', 12, 0, 100, 25, 3500, 12723, 'Alliance Emissary 0 - Q: The Truth Shall Set Us Free', 26710), +(27476, 2, 0, 'To hell with the undead! We\'ll cut our way through the woods, men!', 12, 0, 100, 22, 3000, 12721, 'Valonforth 2 - Q: The Truth Shall Set Us Free', 26713), +(27476, 3, 0, 'Well, milord, your father had our troops recalled at Lord Uther\'s request.', 12, 0, 100, 1, 3000, 12722, 'Valonforth 3 - Q: The Truth Shall Set Us Free', 26715), +(27476, 0, 0, 'I apologize, emissary, but the prince is away on an errand. Wha brings you to this desolate place?', 12, 0, 100, 1, 3000, 12719, 'Valonforth 0 - Q: The Truth Shall Set Us Free', 26709), +(27476, 1, 0, 'We\'re to just pick up and leave?', 12, 0, 100, 6, 1500, 12720, 'Valonforth 1 - Q: The Truth Shall Set Us Free', 26711); + +DELETE FROM `waypoints` WHERE entry IN (@Emissary,@FFootman); +INSERT INTO `waypoints` (`entry`,`pointid`,`position_x`,`position_y`,`position_z`,`point_comment`) VALUES +(@Emissary,1,3087.9968,-1223.3319,11.3495,'Emissary Spawn - Q: The Truth Shall Set Us Free'), +(@Emissary,2,3094.6638,-1241.1671,10.3504,'Emissary Talk - Q: The Truth Shall Set Us Free'), +(@Emissary,3,3087.9968,-1223.3319,11.3495,'Emissary Despawn - Q: The Truth Shall Set Us Free'), +(@FFootman,1,3061.2832,-1241.4072,11.5542,'Forgotten Footman Runaway - Q: The Truth Shall Set Us Free'); + +UPDATE `smart_scripts` SET `link`=0 WHERE `entryorguid` IN (5082,5083,5084) AND `source_type`=2 AND `id`=0 AND `link`=1; +UPDATE `smart_scripts` SET `link`=0 WHERE `entryorguid`=-126866 AND `source_type`=0 AND `id`=15 AND `link`=29; diff --git a/sql/updates/world/2014_06_24_02_world_misc.sql b/sql/updates/world/2014_06_24_02_world_misc.sql new file mode 100644 index 00000000000..8d44c424dbe --- /dev/null +++ b/sql/updates/world/2014_06_24_02_world_misc.sql @@ -0,0 +1,19 @@ +-- +UPDATE `creature_template` SET `ainame`='SmartAI' WHERE `entry` IN (24786,24797); +DELETE FROM `smart_scripts` WHERE `entryorguid` IN (24786,24797) AND `source_type`=0; +INSERT INTO `smart_scripts` (`entryorguid`, `source_type`, `id`, `link`, `event_type`, `event_phase_mask`, `event_chance`, `event_flags`, `event_param1`, `event_param2`, `event_param3`, `event_param4`, `action_type`, `action_param1`, `action_param2`, `action_param3`, `action_param4`, `action_param5`, `action_param6`, `target_type`, `target_param1`, `target_param2`, `target_param3`, `target_x`, `target_y`, `target_z`, `target_o`, `comment`) VALUES +(24786, 0, 0, 1, 8, 0, 100, 0, 44454, 0, 0, 0, 29, 0, 0, 24797, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 'Reef Bull - On Spell Hit - Follow Invoker'), +(24786, 0, 1, 0, 61, 0, 100, 0, 0, 0, 0, 0, 64, 1, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 'Reef Bull - Link - Store Target List'), +(24786, 0, 2, 3, 65, 0, 100, 0, 0, 0, 0, 0, 11, 52148, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'Reef Bull - On Follow Complete - Cast 52148'), +(24786, 0, 3, 4, 61, 0, 100, 0, 0, 0, 0, 0, 29, 0, 0, 0, 0, 0, 0, 19, 24797, 10, 0, 0, 0, 0, 0, 'Reef Bull - Link With Event 1 - Follow Reef Cow'), +(24786, 0, 4, 5, 61, 0, 100, 0, 0, 0, 0, 0, 45, 0, 1, 0, 0, 0, 0, 19, 24797, 10, 0, 0, 0, 0, 0, 'Reef Bull - Link With Event 2 - Set Data 0 1'), +(24786, 0, 5, 0, 61, 0, 100, 0, 0, 0, 0, 0, 15, 11472, 0, 0, 0, 0, 0, 12, 1, 0, 0, 0, 0, 0, 0, 'Reef Bull -Link With Event 3 - Give Quest Credit'), + + +(24797, 0, 0, 1, 38, 0, 100, 0, 0, 1, 0, 0, 11, 52148, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'Reef Cow - On Data Set 0 1 - Cast 52148'), +(24797, 0, 1, 2, 61, 0, 100, 0, 0, 0, 0, 0, 66, 0, 0, 0, 0, 0, 0, 19, 24786, 0, 0, 0, 0, 0, 0, 'Reef Cow - Link With Event 0 - Set orientation'), +(24797, 0, 2, 0, 61, 0, 100, 0, 0, 0, 0, 0, 41, 4200, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'Reef Cow - Link With Event 2 - Despawn'); + +DELETE FROM `spell_scripts` WHERE `id`=21014; +INSERT INTO `spell_scripts` (`id`, `effIndex`, `delay`, `command`, `datalong`, `datalong2`, `dataint`, `x`, `y`, `z`, `o`) VALUES +(21014, 0, 0, 17, 34127, 1, 0, 0, 0, 0, 0); diff --git a/sql/updates/world/2014_06_24_03_world_misc.sql b/sql/updates/world/2014_06_24_03_world_misc.sql new file mode 100644 index 00000000000..1aac6f30cda --- /dev/null +++ b/sql/updates/world/2014_06_24_03_world_misc.sql @@ -0,0 +1,37 @@ +-- +UPDATE `creature_template` SET `AIName`= 'SmartAI' WHERE `entry` =26570; +UPDATE `creature` SET `spawndist`=20, `MovementType`=1 WHERE `id` =26570; + +DELETE FROM `smart_scripts` WHERE `entryorguid` =26570; +INSERT INTO `smart_scripts` (`entryorguid`, `source_type`, `id`, `link`, `event_type`, `event_phase_mask`, `event_chance`, `event_flags`, `event_param1`, `event_param2`, `event_param3`, `event_param4`, `action_type`, `action_param1`, `action_param2`, `action_param3`, `action_param4`, `action_param5`, `action_param6`, `target_type`, `target_param1`, `target_param2`, `target_param3`, `target_x`, `target_y`, `target_z`, `target_o`, `comment`) VALUES +(26570, 0, 0, 1, 8, 0, 100, 0, 47214, 0, 0, 0, 11, 47208, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 'Famished Scourge Troll - On Spell Hit Burninate - Give Quest Credit'), +(26570, 0, 1, 2,61, 0, 100, 0, 0, 0, 0, 0, 37, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'Famished Scourge Troll - Linked with Previous Event - Die'), +(26570, 0, 2, 0,61, 0, 100, 0, 0, 0, 0, 0, 41, 20000, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'Famished Scourge Troll - Linked with Previous Event - Despawn After 20 seconds'), +(26570, 0, 3, 0,11, 0, 100, 0, 0, 0, 0, 0, 59, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'Famished Scourge Troll - On Spawn - Set Run'); + +DELETE FROM `gossip_menu_option` WHERE `menu_id`=9416; +INSERT INTO `gossip_menu_option` (`menu_id`, `id`, `option_icon`, `option_text`, `OptionBroadcastTextID`, `option_id`, `npc_option_npcflag`, `action_menu_id`, `action_poi_id`, `box_coded`, `box_money`, `box_text`, `BoxBroadcastTextID`) VALUES +(9416, 0, 0, 'I need some more of your fine grog, Mack.', 25821, 1, 1, 0, 0, 0, 0, '', 0); + +DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId`=15 AND `SourceGroup` IN(9416); +INSERT INTO `conditions` (`SourceTypeOrReferenceId`, `SourceGroup`, `SourceEntry`, `SourceId`, `ElseGroup`, `ConditionTypeOrReference`, `ConditionTarget`, `ConditionValue1`, `ConditionValue2`, `ConditionValue3`, `NegativeCondition`, `ErrorType`, `ErrorTextId`, `ScriptName`, `Comment`) VALUES +(15, 9416, 0, 0, 0, 9, 0, 12038, 0, 0, 0, 0, 0, '', 'Gossip Option requires Seared Scourge Taken'), +(15, 9416, 0, 0, 0, 2, 0, 35908, 1, 0, 1, 0, 0, '', 'Gossip Option requires Player does not have Macks Dark Grog'), +(15, 9416, 0, 0, 1, 9, 0, 12029, 0, 0, 0, 0, 0, '', 'Gossip Option requires Seared Scourge Taken'), +(15, 9416, 0, 0, 1, 2, 0, 35908, 1, 0, 1, 0, 0, '', 'Gossip Option requires Player does not have Macks Dark Grog'); + +UPDATE `creature_template` SET `AIName`='SmartAI' WHERE `entry` IN(26604); + +DELETE FROM `smart_scripts` WHERE `entryorguid` IN(26604) AND `source_type`=0; +INSERT INTO `smart_scripts` (`entryorguid`,`source_type`,`id`,`link`,`event_type`,`event_phase_mask`,`event_chance`,`event_flags`,`event_param1`,`event_param2`,`event_param3`,`event_param4`,`action_type`,`action_param1`,`action_param2`,`action_param3`,`action_param4`,`action_param5`,`action_param6`,`target_type`,`target_param1`,`target_param2`,`target_param3`,`target_x`,`target_y`,`target_z`,`target_o`,`comment`) VALUES +(26604,0,0,1,62,0,100,0,9416,0,0,0,85,47244,2,0,0,0,0,7,0,0,0,0,0,0,0,'Mack Fearsen - On Gossip Option 0 Selected - Invoker cast Create Macks Dark Grog'), +(26604,0,1,0,61,0,100,0,0,0,0,0,72,0,0,0,0,0,0,7,0,0,0,0,0,0,0,'Mack Fearsen - Link - Close Gossip'), +(26604,0,2,0,1,0,100,0,10000,10000,90000,90000,1,0,10000,0,0,0,0,1,0,0,0,0,0,0,0,'Mack Fearsen - On OOC LOS - Say Line 0'), +(26604,0,3,0,52,0,100,0,0,26604,0,0,1,1,10000,0,0,0,0,1,0,0,0,0,0,0,0,'Mack Fearsen - On Text Over line 0 - Say Line 1'), +(26604,0,4,0,52,0,100,0,1,26604,0,0,1,2,10000,0,0,0,0,1,0,0,0,0,0,0,0,'Mack Fearsen - On Text Over line 1 - Say Line 2'); + +DELETE FROM `creature_text` WHERE `entry`=26604; +INSERT INTO `creature_text` (`entry`, `groupid`, `id`, `text`, `type`, `language`, `probability`, `emote`, `duration`, `sound`, `comment`, `BroadcastTextID`) VALUES +(26604, 0, 0, 'Shcourged trooolls roashting....', 12, 0, 100, 0, 0, 0, 'Mack Fearsen', 27290), +(26604, 1, 0, '...on an open fire.....', 12, 0, 100, 0, 0, 0, 'Mack Fearsen', 27291), +(26604, 2, 0, 'That''s it! Far as I got... Whatd''ya think?', 12, 0, 100, 0, 0, 0, 'Mack Fearsen', 27292); diff --git a/sql/updates/world/2014_06_24_04_world_misc.sql b/sql/updates/world/2014_06_24_04_world_misc.sql new file mode 100644 index 00000000000..6da8d4081e1 --- /dev/null +++ b/sql/updates/world/2014_06_24_04_world_misc.sql @@ -0,0 +1,46 @@ +-- +UPDATE `creature` SET `spawntimesecs`=300 WHERE `guid`=86749; +UPDATE `creature_template` SET `AIName`= 'SmartAI' WHERE `entry`= 21057; + +DELETE FROM `smart_scripts` WHERE `entryorguid`=21057; +INSERT INTO `smart_scripts` (`entryorguid`, `source_type`, `id`, `link`, `event_type`, `event_phase_mask`, `event_chance`, `event_flags`, `event_param1`, `event_param2`, `event_param3`, `event_param4`, `action_type`, `action_param1`, `action_param2`, `action_param3`, `action_param4`, `action_param5`, `action_param6`, `target_type`, `target_param1`, `target_param2`, `target_param3`, `target_x`, `target_y`, `target_z`, `target_o`, `comment`) VALUES +(21057, 0, 0, 1,38, 0, 100, 0, 1, 1, 45000, 45000, 45, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'Nexus-Prince Razaan - On Data Set 1 1 - Set Data 10'), +(21057, 0, 1, 2,61, 0, 100, 0, 0, 0, 0, 0, 19, 756, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'Nexus-Prince Razaan - Linked with Previous Event - Remove unit flags'), +(21057, 0, 2, 3,61, 0, 100, 0, 0, 0, 0, 0, 47, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'Nexus-Prince Razaan - Linked with Previous Event - Set Visible'), +(21057, 0, 3, 0,61, 0, 100, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'Nexus-Prince Razaan - Linked with Previous Event - Say'), +(21057, 0, 4, 5,25, 0, 100, 0, 0, 0, 0, 0, 18, 756, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'Nexus-Prince Razaan - On spawn - Add unit flags'), +(21057, 0, 5, 0,61, 0, 100, 0, 0, 0, 0, 0, 47, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'Nexus-Prince Razaan - Linked with Previous Event - Set Invisible'), +(21057, 0, 6, 7,21, 0, 100, 0, 0, 0, 0, 0, 18, 756, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'Nexus-Prince Razaan - On Creature reached home - Add unit flags'), +(21057, 0, 7, 0,61, 0, 100, 0, 0, 0, 0, 0, 47, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'Nexus-Prince Razaan - Linked with Previous Event - Set Invisible'), +(21057, 0, 8, 0,9, 0, 100, 0, 0, 8, 8000, 11000, 11, 35924, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'Nexus-Prince Razaan - On Range - Cast Energy Flux'), +(21057, 0, 9, 10,6, 0, 100, 0, 0, 0, 0, 0, 11, 37957, 2, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'Nexus-Prince Razaan - On Death - Spawn Collection of Souls'); + +UPDATE `creature_template` SET `AIName`= 'SmartAI' WHERE `entry`= 20609; + +DELETE FROM `smart_scripts` WHERE `entryorguid`=20609; +INSERT INTO `smart_scripts` (`entryorguid`, `source_type`, `id`, `link`, `event_type`, `event_phase_mask`, `event_chance`, `event_flags`, `event_param1`, `event_param2`, `event_param3`, `event_param4`, `action_type`, `action_param1`, `action_param2`, `action_param3`, `action_param4`, `action_param5`, `action_param6`, `target_type`, `target_param1`, `target_param2`, `target_param3`, `target_x`, `target_y`, `target_z`, `target_o`, `comment`) VALUES +(20609, 0, 0, 0, 0, 0, 100 , 0, 0, 0, 8000, 11000, 85, 36513, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 'Razaani Nexus Stalker - IC - Cast Intangible Presence'), +(20609, 0, 1, 0, 9, 0, 100 , 0, 0, 10, 6000, 10000, 11, 11975, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 'Razaani Nexus Stalker - On Range - Cast Arcane Explosion'), +(20609, 0, 2, 0, 6, 0, 25 , 0, 0, 0, 0, 0, 45, 1, 1, 0, 0, 0, 0, 10, 86749, 21057, 0, 0, 0, 0, 0, 'Razaani Nexus Stalker - On Death - Set Data on Nexus-Prince Razaan'); + +UPDATE `creature_template` SET `AIName`= 'SmartAI' WHERE `entry`= 20614; + +DELETE FROM `smart_scripts` WHERE `entryorguid`=20614; +INSERT INTO `smart_scripts` (`entryorguid`, `source_type`, `id`, `link`, `event_type`, `event_phase_mask`, `event_chance`, `event_flags`, `event_param1`, `event_param2`, `event_param3`, `event_param4`, `action_type`, `action_param1`, `action_param2`, `action_param3`, `action_param4`, `action_param5`, `action_param6`, `target_type`, `target_param1`, `target_param2`, `target_param3`, `target_x`, `target_y`, `target_z`, `target_o`, `comment`) VALUES +(20614, 0, 0, 0, 9, 0, 100 , 0, 0, 8, 5000, 8000, 11, 36508, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 'Razaani Spell-Thief - On Range - Cast Arcane Explosion'), +(20614, 0, 1, 0, 6, 0, 25 , 0, 0, 0, 0, 0, 45, 1, 1, 0, 0, 0, 0, 10, 86749, 21057, 0, 0, 0, 0, 0, 'Razaani Spell-Thief - On Death - Set Data on Nexus-Prince Razaan'); + +UPDATE `creature_template` SET `AIName`= 'SmartAI' WHERE `entry`= 20601; + +DELETE FROM `smart_scripts` WHERE `entryorguid`=20601; +INSERT INTO `smart_scripts` (`entryorguid`, `source_type`, `id`, `link`, `event_type`, `event_phase_mask`, `event_chance`, `event_flags`, `event_param1`, `event_param2`, `event_param3`, `event_param4`, `action_type`, `action_param1`, `action_param2`, `action_param3`, `action_param4`, `action_param5`, `action_param6`, `target_type`, `target_param1`, `target_param2`, `target_param3`, `target_x`, `target_y`, `target_z`, `target_o`, `comment`) VALUES +(20601, 0, 0, 0, 9, 0, 100 , 0, 0,10, 5000, 8000, 11, 35922, 1, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 'Razaani Raider - On Range - Cast Energy Flare'), +(20601, 0, 1, 0, 0, 0, 100 , 0, 0,5000, 8000, 15000, 11, 32920, 1, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 'Razaani Raider - IC - Cast Warp'), +(20601, 0, 2, 0, 6, 0, 25 , 0, 0, 0, 0, 0, 45, 1, 1, 0, 0, 0, 0, 10, 86749, 21057, 0, 0, 0, 0, 0, 'Razaani Raider - On Death - Set Data on Nexus-Prince Razaan'); + +DELETE FROM `creature_text` WHERE `entry` =21057; +INSERT INTO `creature_text` (`entry`, `groupid`, `id`, `text`, `type`, `language`, `probability`, `emote`, `duration`, `sound`, `comment`, `BroadcastTextID`) VALUES (21057, 0, 0, 'Who dares to interrupt my operation?', 14, 0, 100, 0, 0, 0, 'Nexus-Prince Razaan', 18714); + +DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId`=22 AND `SourceEntry`=21057; +INSERT INTO `conditions` (`SourceTypeOrReferenceId`, `SourceGroup`, `SourceEntry`, `SourceId`, `ElseGroup`, `ConditionTypeOrReference`, `ConditionTarget`, `ConditionValue1`, `ConditionValue2`, `ConditionValue3`, `NegativeCondition`, `ErrorTextId`, `ScriptName`, `Comment`) VALUES +(22, 1, 21057, 0, 0, 36, 1, 0, 0, 0, 0, 0, '','Only execute SAI if Nexus-Prince Razaan alive'); diff --git a/sql/updates/world/2014_06_24_05_world_misc.sql b/sql/updates/world/2014_06_24_05_world_misc.sql new file mode 100644 index 00000000000..71898ee1569 --- /dev/null +++ b/sql/updates/world/2014_06_24_05_world_misc.sql @@ -0,0 +1,68 @@ +-- Add support for quest Changing the Wind's Course - ID: 13058 /Horde/ +SET @Stormhoof := 30388; +SET @VehicleSpell := 56863; +SET @Ride := 46598; +SET @Wind := 30474; +SET @DropHorn := 56892; +SET @Stun := 62794; +SET @Guid := 40509; -- Set by TDB + +-- Add spawn in phase 256 for The Wind of North +DELETE FROM `creature` WHERE `guid`=@Guid; +INSERT INTO `creature` (`guid`,`id`,`map`,`spawnMask`,`phaseMask`,`modelid`,`equipment_id`,`position_x`,`position_y`,`position_z`,`orientation`,`spawntimesecs`,`spawndist`,`currentwaypoint`,`curhealth`,`curmana`,`MovementType`,`npcflag`,`unit_flags`,`dynamicflags`) VALUES +(@Guid,@Wind,571,1,256,0,0,7942.61,-2723.29,1138,6.09394,60,0,0,63000,19970,0,0,0,0); + +-- SAI and spell support for StormHoof +UPDATE `creature_template` SET `AIName`='SmartAI',`spell1`=56897,`spell2`=61668,`spell3`=56896 WHERE `entry`=30388; +DELETE FROM `smart_scripts` WHERE `entryorguid`=@Stormhoof; +INSERT INTO `smart_scripts` (`entryorguid`,`source_type`,`id`,`link`,`event_type`,`event_phase_mask`,`event_chance`,`event_flags`,`event_param1`,`event_param2`,`event_param3`,`event_param4`,`action_type`,`action_param1`,`action_param2`,`action_param3`,`action_param4`,`action_param5`,`action_param6`,`target_type`,`target_param1`,`target_param2`,`target_param3`,`target_x`,`target_y`,`target_z`,`target_o`,`comment`) VALUES +(@Stormhoof,0,0,1,54,0,100,0,0,0,0,0,85,56900,0,0,0,0,0,1,0,0,0,0,0,0,0,'Stormhoof - On summoned - Cast power of Lorehammer on invoker /used to store invoker/'), +(@Stormhoof,0,1,0,61,0,100,0,0,0,0,0,85,@Ride,0,0,0,0,0,1,0,0,0,0,0,0,0,'Stormhoof - Linked with previous event - Ivoker cast Ride hardcoded on Stormhoof '), +(@Stormhoof,0,2,0,4,0,100,1,0,0,0,0,20,0,0,0,0,0,0,1,0,0,0,0,0,0,0,'Stormhoof - On aggro - Disable auto attacks'), +(@Stormhoof,0,3,0,8,0,100,0,@Ride,0,0,0,2,2141,0,0,0,0,0,1,0,0,0,0,0,0,0,'Stormhoof - On hit by spell Ride - Change faction to hostile towards Wind'), +(@Stormhoof,0,4,5,38,0,100,0,0,1,0,0,18,8196,0,0,0,0,0,1,0,0,0,0,0,0,0,'Stormhoof - On data set 0 1 - Set unit flags for No move, Silence and Pacified'), +(@Stormhoof,0,5,0,61,0,100,0,0,0,0,0,1,0,1000,0,0,0,0,1,0,0,0,0,0,0,0,'Stormhoof - Linked with previous event - Say text 1'), +(@Stormhoof,0,6,7,38,0,100,0,0,2,0,0,75,@Stun,0,0,0,0,0,19,@Wind,30,0,0,0,0,0,'Stormhoof - On Data set 0 2 - Set stun on wind'), +(@Stormhoof,0,7,8,61,0,100,0,0,0,0,0,37,0,0,0,0,0,0,1,0,0,0,0,0,0,0,'Stormhoof - Linked with previous event - Die'), +(@Stormhoof,0,8,0,61,0,100,0,0,0,0,0,47,0,0,0,0,0,0,1,0,0,0,0,0,0,0,'Stormhoof - Linked with previous event - Set unseen'), +(@Stormhoof,0,9,10,6,0,100,0,0,0,0,0,19,8196,0,0,0,0,0,1,0,0,0,0,0,0,0,'Stormhoof - On death - Remove unit_flags'), +(@Stormhoof,0,10,0,61,0,100,0,0,0,0,0,2,35,0,0,0,0,0,1,0,0,0,0,0,0,0,'Stormhoof - Linkedw with previous event - Change faction to 35'); + +-- Add SAI support for North Wind +UPDATE `creature_template` SET `mindmg`=327,`maxdmg`=362,`faction`=16,`AIName`='SmartAI' WHERE `entry`=@Wind; +DELETE FROM `smart_scripts` WHERE `entryorguid`=@Wind; +INSERT INTO `smart_scripts` (`entryorguid`,`source_type`,`id`,`link`,`event_type`,`event_phase_mask`,`event_chance`,`event_flags`,`event_param1`,`event_param2`,`event_param3`,`event_param4`,`action_type`,`action_param1`,`action_param2`,`action_param3`,`action_param4`,`action_param5`,`action_param6`,`target_type`,`target_param1`,`target_param2`,`target_param3`,`target_x`,`target_y`,`target_z`,`target_o`,`comment`) VALUES +(@Wind,0,0,0,0,0,100,0,1000,3000,8000,11000,11,61662,0,0,0,0,0,2,0,0,0,0,0,0,0,'North Wind - IC - Cast Cyclone'), +(@Wind,0,1,0,0,0,100,0,1000,8000,12000,16000,11,61663,0,0,0,0,0,2,0,0,0,0,0,0,0,'North Wind - IC - Gust of Wind'), +(@Wind,0,2,3,2,0,100,1,10,20,20000,20000,11,@DropHorn,0,0,0,0,0,1,0,0,0,0,0,0,0,'North Wind - Between 10 and 20% HP - Drop Horn'), +(@Wind,0,3,4,61,0,100,0,0,0,0,0,18,139270,0,0,0,0,0,1,0,0,0,0,0,0,0,'North Wind - Linked with previous event - Set unit flags for No move, Silence and Pacified'), +(@Wind,0,4,0,61,0,100,0,0,0,0,0,1,0,1200,0,0,0,0,1,0,0,0,0,0,0,0,'North Wind - Linked with previous event - Say text 0'), +(@Wind,0,5,6,52,0,100,0,0,@Wind,0,0,45,0,1,0,0,0,0,19,@Stormhoof,30,0,0,0,0,0,'North Wind - On text 0 over - Set data 0 1 on Stormhoof'), +(@Wind,0,6,0,61,0,100,0,0,0,0,0,1,1,4000,0,0,0,0,1,0,0,0,0,0,0,0,'North Wind - Linked with previous event - Say text 1'), +(@Wind,0,7,0,52,0,100,0,1,@Wind,0,0,45,0,2,0,0,0,0,19,@Stormhoof,30,0,0,0,0,0,'North Wind - On text over 1 - Data set 0 2 on Stormhoof'), +(@Wind,0,8,9,38,0,100,1,0,2,0,0,1,2,1000,0,0,0,0,1,0,0,0,0,0,0,0,'North Wind - On data set 0 2 - Say text 2'), +(@Wind,0,9,0,61,0,100,0,0,0,0,0,37,0,0,0,0,0,0,1,0,0,0,0,0,0,0,'North Wind - Linked with previous event - Die'), +(@Wind,0,10,0,6,0,100,0,0,0,0,0,19,139270,0,0,0,0,0,1,0,0,0,0,0,0,0,'North Wind - On death - Remove unit_flags'), +(@Wind,0,11,0,4,0,100,0,0,0,0,0,20,0,0,0,0,0,0,1,0,0,0,0,0,0,0,'North Wind - On Agro - Disable Auto Attack'); + +-- Texts +DELETE FROM `creature_text` WHERE `entry` IN (@Wind,@Stormhoof); + +INSERT INTO `creature_text` (`entry`, `groupid`, `id`, `text`, `type`, `language`, `probability`, `emote`, `duration`, `sound`, `comment`, `BroadcastTextID`) VALUES +(@Stormhoof, 0, 0, 'The horn! Use the horn on it while it''s weak!', 14, 0, 100, 1, 1000, 0, 'Stormhoof', 31183), +(@Wind, 2, 0, 'That horn is... MINE!', 14, 0, 100, 1, 2000, 0, 'North Wind', 31195), +(@Wind, 1, 0, 'I will never allow you to use the Horn of Elemental Fury against us! Die, weakling!', 14, 0, 100, 1, 3000, 0, 'North Wind', 31181), +(@Wind, 0, 0, 'Fool! You will never defeat me!', 14, 0, 100, 1, 1200, 0, 'North Wind', 31180); + +-- Add SAI for Horn of Elemental Fury +SET @GO := 194123; +UPDATE `gameobject_template` SET `AIName`= 'SmartGameObjectAI' WHERE `entry`=@GO; +DELETE FROM `smart_scripts` WHERE `source_type`=1 AND `entryorguid`=@GO; +INSERT INTO `smart_scripts` (`entryorguid`,`source_type`,`id`,`link`,`event_type`,`event_phase_mask`,`event_chance`,`event_flags`,`event_param1`,`event_param2`,`event_param3`,`event_param4`,`action_type`,`action_param1`,`action_param2`,`action_param3`,`action_param4`,`action_param5`,`action_param6`,`target_type`,`target_param1`,`target_param2`,`target_param3`,`target_x`,`target_y`,`target_z`,`target_o`,`comment`) VALUES +(@GO,1,0,0,70,0,100,0,2,0,0,0,45,0,2,0,0,0,0,19,@Wind,30,0,0,0,0,0,'Horn of Elemental Fury - On state changed - Data set 0 2 on The Winf of North'); + +-- Add Npc_spell_click data +UPDATE `creature_template` SET `npcflag`=16777216 WHERE `entry`=@Stormhoof; +DELETE FROM `npc_spellclick_spells` WHERE `npc_entry`=@Stormhoof; +INSERT INTO `npc_spellclick_spells` (`npc_entry`,`spell_id`,`cast_flags`,`user_type`) VALUES +(@Stormhoof,@Ride,1,0); diff --git a/sql/updates/world/2014_06_24_06_world_misc.sql b/sql/updates/world/2014_06_24_06_world_misc.sql new file mode 100644 index 00000000000..0c01fade351 --- /dev/null +++ b/sql/updates/world/2014_06_24_06_world_misc.sql @@ -0,0 +1,12 @@ +-- +SET @GRICKSBONESAW :=43286; +SET @DERANGEDEXPLORER :=23967; + +DELETE FROM `conditions` WHERE `SourceEntry`=@GRICKSBONESAW AND `SourceTypeOrReferenceId`=17; +INSERT INTO `conditions` (`SourceTypeOrReferenceId`, `SourceGroup`, `SourceEntry`, `SourceId`, `ElseGroup`, `ConditionTypeOrReference`, `ConditionTarget`, `ConditionValue1`, `ConditionValue2`, `ConditionValue3`, `NegativeCondition`, `ErrorTextId`, `ScriptName`, `Comment`) VALUES +(17,0,@GRICKSBONESAW ,0,0,36,1,0,0,0,1,0,'', 'Gricks Bonesaw can target only a corpse'), +(17,0,@GRICKSBONESAW ,0,0,31,1,3,@DERANGEDEXPLORER,0,0,0,'', 'Gricks Bonesaw can target only Deranged Explorer'); +UPDATE `creature_template` SET `AIName`='SmartAI' WHERE `entry` = @DERANGEDEXPLORER; +DELETE FROM `smart_scripts` WHERE `entryorguid` = @DERANGEDEXPLORER AND `source_type`=0; +INSERT INTO `smart_scripts` (`entryorguid`, `source_type`, `id`, `link`, `event_type`, `event_phase_mask`, `event_chance`, `event_flags`, `event_param1`, `event_param2`, `event_param3`, `event_param4`, `action_type`, `action_param1`, `action_param2`, `action_param3`, `action_param4`, `action_param5`, `action_param6`, `target_type`, `target_param1`, `target_param2`, `target_param3`, `target_x`, `target_y`, `target_z`, `target_o`, `comment`) VALUES +(@DERANGEDEXPLORER,0,0,1,8,0,100,1,@GRICKSBONESAW,0,0,0,41,1000,0,0,0,0,0,1,0,0,0,0,0,0,0, 'Deranged Explorer - On Spellhit Despawn after 1 second'); diff --git a/sql/updates/world/2014_06_24_07_world_spell_proc_event.sql b/sql/updates/world/2014_06_24_07_world_spell_proc_event.sql new file mode 100644 index 00000000000..5eafb052acb --- /dev/null +++ b/sql/updates/world/2014_06_24_07_world_spell_proc_event.sql @@ -0,0 +1,5 @@ +-- Improved Mana Gems +DELETE FROM `spell_proc_event` WHERE `entry` IN (37447, 61062); +INSERT INTO `spell_proc_event` (`entry`,`SchoolMask`,`SpellFamilyName`,`SpellFamilyMask0`,`SpellFamilyMask1`,`SpellFamilyMask2`,`procFlags`,`procEx`,`ppmRate`,`CustomChance`,`Cooldown`) VALUES +(37447, 0, 3, 0, 0x00000100, 0, 0x04000, 0, 0, 0, 0), -- Serpent-Coil Braid +(61062, 0, 3, 0, 0x00000100, 0, 0x04000, 0, 0, 0, 0); -- 2/5 Frostfire Garb diff --git a/sql/updates/world/2014_06_24_08_world_misc.sql b/sql/updates/world/2014_06_24_08_world_misc.sql new file mode 100644 index 00000000000..9dd8f8f4691 --- /dev/null +++ b/sql/updates/world/2014_06_24_08_world_misc.sql @@ -0,0 +1,15 @@ +-- Disable Midsummer Fire Festival quests that were removed in patch 2.4.0 +DELETE FROM `disables` WHERE `sourceType`=1 AND `entry` IN (9367,9368,9319,9386,9322,9323,9388,9389); +INSERT INTO `disables` (`sourceType`,`entry`,`flags`,`params_0`,`params_1`,`comment`) VALUES +(1,9367,0,0,0,'Quest: The Festival of Fire {A}, removed in patch 2.4.0'), +(1,9368,0,0,0,'Quest: The Festival of Fire {H}, removed in patch 2.4.0'), +(1,9319,0,0,0,'Quest: A Light in Dark Places, removed in patch 2.4.0'), +(1,9386,0,0,0,'Quest: A Light in Dark Places {Daily}, removed in patch 2.4.0'), +(1,9322,0,0,0,'Quest: Wild Fires in Kalimdor, removed in patch 2.4.0'), +(1,9323,0,0,0,'Quest: Wild Fires in the Eastern Kingdoms, removed in patch 2.4.0'), +(1,9388,0,0,0,'Quest: Flickering Flames in Kalimdor, removed in patch 2.4.0'), +(1,9389,0,0,0,'Quest: Flickering Flames in the Eastern Kingdoms, removed in patch 2.4.0'); + +-- Remove above mentioned quests from QuestStarters and QuestEnders +DELETE FROM `creature_queststarter` WHERE `quest` IN (9367,9368,9319,9386,9322,9323,9388,9389); +DELETE FROM `creature_questender` WHERE `quest` IN (9367,9368,9319,9386,9322,9323,9388,9389); diff --git a/sql/updates/world/2014_06_24_09_world_misc.sql b/sql/updates/world/2014_06_24_09_world_misc.sql new file mode 100644 index 00000000000..fc092e08108 --- /dev/null +++ b/sql/updates/world/2014_06_24_09_world_misc.sql @@ -0,0 +1,99 @@ +-- +SET @CGuid := 71997; + +UPDATE `gameobject_template` SET `AIName`='SmartGameObjectAI', `ScriptName`='' WHERE `entry`=164911; +UPDATE `creature_template` SET `AIName`= 'SmartAI',`unit_flags`=0 WHERE `entry` IN(9537,9541); + +DELETE FROM `smart_scripts` WHERE `source_type`=1 AND `entryorguid`=164911; +DELETE FROM `smart_scripts` WHERE `source_type`=0 AND `entryorguid`IN(9537,-@CGuid,-@CGuid-1,-@CGuid-2); +INSERT INTO `smart_scripts` (`entryorguid`, `source_type`, `id`, `link`, `event_type`, `event_phase_mask`, `event_chance`, `event_flags`, `event_param1`, `event_param2`, `event_param3`, `event_param4`, `action_type`, `action_param1`, `action_param2`, `action_param3`, `action_param4`, `action_param5`, `action_param6`, `target_type`, `target_param1`, `target_param2`, `target_param3`, `target_x`, `target_y`, `target_z`, `target_o`, `comment`) VALUES +(164911, 1, 0 ,0, 70, 0, 100, 0, 2, 0, 0,0,45,1,1,0,0,0,0,13,164911,0,200,0,0,0,0, 'Thunderbrew Lager Keg - On State Changed - Set Data'), +(164911, 1, 1 ,0, 70, 2, 100, 0, 2, 0, 0,0,45,1,1,0,0,0,0,9,9537,0,200,0,0,0,0, 'Thunderbrew Lager Keg - On State Changed - Set Data'), +(164911, 1, 2 ,0, 38, 0, 100, 0, 1, 1, 0,0,23,1,0,0,0,0,0,9,9537,0,200,0,0,0,0, 'Thunderbrew Lager Keg - On Data Set - Increment Phase'), +-- +(9537, 0, 0 ,1, 11, 0, 100, 0, 0, 0, 0,0,18,320,0,0,0,0,0,1,0,0,0,0,0,0,0, 'Hurley Blackbreath - On Spawn - Set Unit Flags'), +(9537, 0, 1 ,0, 61, 0, 100, 0, 0, 0, 0,0,47,0,0,0,0,0,0,1,0,0,0,0,0,0,0, 'Hurley Blackbreath - Linked with Previous Event - Set Invisible'), +(9537, 0, 3 ,4, 38, 0, 100, 1, 1, 1, 0,0,47,1,0,0,0,0,0,1,0,0,0,0,0,0,0, 'Hurley Blackbreath - On Data Set - Set Visible'), +(9537, 0, 4 ,6, 61, 0, 100, 0, 0, 0, 0,0,45,1,1,0,0,0,0,9,9541,0,200,0,0,0,0, 'Hurley Blackbreath - Linked with Previous Event - Set Data'), +(9537, 0, 6 ,7, 61, 0, 100, 0, 0, 0, 0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0, 'Hurley Blackbreath - Linked with Previous Event - Say'), +(9537, 0, 7 ,0, 61, 0, 100, 0, 0, 0, 0,0,53,0,9537,0,0,0,0,1,0,0,0,0,0,0,0, 'Hurley Blackbreath - Linked with Previous Event - Start WP'), +(9537, 0, 8 ,9, 40, 0, 100, 0, 3, 0, 0,0,101,0,0,0,0,0,0,1,0,0,0,0,0,0,0, 'Hurley Blackbreath - On Reached WP 3 - Set Home Position'), +(9537, 0, 9 ,10, 61, 0, 100, 0, 0, 0, 0,0,19,320,0,0,0,0,0,1,0,0,0,0,0,0,0, 'Hurley Blackbreath - Linked with Previous Event - Set Unit Flags'), +(9537, 0, 10 ,15, 61, 0, 100, 0, 0, 0, 0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0, 'Hurley Blackbreath - Linked with Previous Event - Say'), +(9537, 0, 11 ,0, 2, 0, 100, 0, 0, 30, 30000,45000,11,14872,0,0,0,0,0,1,0,0,0,0,0,0,0, 'Hurley Blackbreath - On Less than 30% HP - Cast Drunken Rage'), +(9537, 0, 12 ,0, 9, 0, 100, 0, 0, 5, 10000,15000,11,9573,0,0,0,0,0,7,0,0,0,0,0,0,0, 'Hurley Blackbreath - On Range - Cast Flame Breath'), +(9537, 0, 13 ,0, 0, 0, 100, 0, 5000, 6000, 10000,14000,11,26211,0,0,0,0,0,2,0,0,0,0,0,0,0, 'Hurley Blackbreath - IC - Cast Hamstring'), +(9537, 0, 14 ,0, 0, 0, 100, 0, 5000, 8000, 8000,13000,11,16856,0,0,0,0,0,2,0,0,0,0,0,0,0, 'Hurley Blackbreath - IC - Cast Mortal Strike'), +(9537, 0, 15 ,0, 61, 0, 100, 0, 0, 0, 0,0,89,3,0,0,0,0,0,1,0,0,0,0,0,0,0, 'Hurley Blackbreath - Linked with Previous Event - Set Random Movement'), +(9537, 0, 16 ,17, 4, 0, 100, 0, 0, 0, 0,0,45,1,2,0,0,0,0,9,9541,0,200,0,0,0,0, 'Hurley Blackbreath - On Agro - Set Set Data'), +(9537, 0, 17 ,0, 61, 0, 100, 0, 0, 0, 0,0,49,0,0,0,0,0,0,7,0,0,0,0,0,0,0, 'Hurley Blackbreath - Linked with Previous Event - Attack'), +(9537, 0, 18 ,0, 38, 0, 100, 0, 1, 2, 0,0,49,0,0,0,0,0,0,21,200,0,0,0,0,0,0, 'Hurley Blackbreath - On Data Set - Attack'), +-- +(-@CGuid, 0, 0 ,1, 11, 0, 100, 0, 0, 0, 0,0,18,320,0,0,0,0,0,1,0,0,0,0,0,0,0, 'Blackbreath Crony - On Spawn - Set Unit Flags'), +(-@CGuid, 0, 1 ,0, 61, 0, 100, 0, 0, 0, 0,0,47,0,0,0,0,0,0,1,0,0,0,0,0,0,0, 'Blackbreath Crony - Linked with Previous Event - Set Invisible'), +(-@CGuid, 0, 2 ,4, 38, 0, 100, 0, 1, 1, 0,0,47,1,0,0,0,0,0,1,0,0,0,0,0,0,0, 'Blackbreath Crony - On Data Set - Set visible'), +(-@CGuid, 0, 4 ,0, 61, 0, 100, 0, 0, 0, 0,0,53,0,9541,0,0,0,0,1,0,0,0,0,0,0,0, 'Blackbreath Crony - Linked with Previous Event - Start WP'), +(-@CGuid, 0, 5 ,6, 40, 0, 100, 0, 3, 0, 0,0,101,0,0,0,0,0,0,1,0,0,0,0,0,0,0, 'Blackbreath Crony - On Reached WP 5 - Set Home Position'), +(-@CGuid, 0, 6 ,7, 61, 0, 100, 0, 0, 0, 0,0,19,320,0,0,0,0,0,1,0,0,0,0,0,0,0, 'Blackbreath Crony - Linked with Previous Event - Set Unit Flags'), +(-@CGuid, 0, 7 ,0, 61, 0, 100, 0, 0, 0, 0,0,89,3,0,0,0,0,0,1,0,0,0,0,0,0,0, 'Blackbreath Crony - Linked with Previous Event - Set Random Movement'), +(-@CGuid, 0, 8, 0, 0, 0, 100, 0, 1000, 3000, 4000, 7000, 11, 15581, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 'Blackbreath Crony - IC - Cast Sinister Strike'), +(-@CGuid, 0, 9, 0, 0, 0, 100, 0, 2000, 2000, 11000, 12000, 11, 15583, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 'Blackbreath Crony - IC - Cast Rupture'), +(-@CGuid, 0, 10 ,11, 4, 0, 100, 0, 0, 0, 0,0,45,1,2,0,0,0,0,9,9541,0,200,0,0,0,0, 'Hurley Blackbreath - On Agro - Set Set Data'), +(-@CGuid, 0, 11 ,12,61, 0, 100, 0, 0, 0, 0,0,45,1,2,0,0,0,0,9,9537,0,200,0,0,0,0, 'Hurley Blackbreath - On Agro - Set Set Data'), +(-@CGuid, 0, 12 ,0, 61, 0, 100, 0, 0, 0, 0,0,49,0,0,0,0,0,0,7,0,0,0,0,0,0,0, 'Hurley Blackbreath - Linked with Previous Event - Attack'), +(-@CGuid, 0, 13 ,0, 38, 0, 100, 0, 1, 2, 0,0,49,0,0,0,0,0,0,21,200,0,0,0,0,0,0, 'Hurley Blackbreath - On Data Set - Attack'), +-- +(-@CGuid-1, 0, 0 ,1, 11, 0, 100, 0, 0, 0, 0,0,18,320,0,0,0,0,0,1,0,0,0,0,0,0,0, 'Blackbreath Crony - On Spawn - Set Unit Flags'), +(-@CGuid-1, 0, 1 ,0, 61, 0, 100, 0, 0, 0, 0,0,47,0,0,0,0,0,0,1,0,0,0,0,0,0,0, 'Blackbreath Crony - Linked with Previous Event - Set Invisible'), +(-@CGuid-1, 0, 2 ,4, 38, 0, 100, 0, 1, 1, 0,0,47,1,0,0,0,0,0,1,0,0,0,0,0,0,0, 'Blackbreath Crony - On Data Set - Set visible'), +(-@CGuid-1, 0, 4 ,0, 61, 0, 100, 0, 0, 0, 0,0,53,0,9541000,0,0,0,0,1,0,0,0,0,0,0,0, 'Blackbreath Crony - Linked with Previous Event - Start WP'), +(-@CGuid-1, 0, 5 ,6, 40, 0, 100, 0, 3, 0, 0,0,101,0,0,0,0,0,0,1,0,0,0,0,0,0,0, 'Blackbreath Crony - On Reached WP 5 - Set Home Position'), +(-@CGuid-1, 0, 6 ,7, 61, 0, 100, 0, 0, 0, 0,0,19,320,0,0,0,0,0,1,0,0,0,0,0,0,0, 'Blackbreath Crony - Linked with Previous Event - Set Unit Flags'), +(-@CGuid-1, 0, 7 ,0, 61, 0, 100, 0, 0, 0, 0,0,89,3,0,0,0,0,0,1,0,0,0,0,0,0,0, 'Blackbreath Crony - Linked with Previous Event - Set Random Movement'), +(-@CGuid-1, 0, 8, 0, 0, 0, 100, 0, 1000, 3000, 4000, 7000, 11, 15581, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 'Blackbreath Crony - IC - Cast Sinister Strike'), +(-@CGuid-1, 0, 9, 0, 0, 0, 100, 0, 2000, 2000, 11000, 12000, 11, 15583, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 'Blackbreath Crony - IC - Cast Rupture'), +(-@CGuid-1, 0, 10 ,11, 4, 0, 100, 0, 0, 0, 0,0,45,1,2,0,0,0,0,9,9541,0,200,0,0,0,0, 'Blackbreath Crony - On Agro - Set Set Data'), +(-@CGuid-1, 0, 11 ,12,61, 0, 100, 0, 0, 0, 0,0,45,1,2,0,0,0,0,9,9537,0,200,0,0,0,0, 'Blackbreath Crony - On Agro - Set Set Data'), +(-@CGuid-1, 0, 12 ,0, 61, 0, 100, 0, 0, 0, 0,0,49,0,0,0,0,0,0,7,0,0,0,0,0,0,0, 'Blackbreath Crony - Linked with Previous Event - Attack'), +(-@CGuid-1, 0, 13 ,0, 38, 0, 100, 0, 1, 2, 0,0,49,0,0,0,0,0,0,21,200,0,0,0,0,0,0, 'Blackbreath Crony - On Data Set - Attack'), +-- +(-@CGuid-2, 0, 0 ,1, 11, 0, 100, 0, 0, 0, 0,0,18,320,0,0,0,0,0,1,0,0,0,0,0,0,0, 'Blackbreath Crony - On Spawn - Set Unit Flags'), +(-@CGuid-2, 0, 1 ,0, 61, 0, 100, 0, 0, 0, 0,0,47,0,0,0,0,0,0,1,0,0,0,0,0,0,0, 'Blackbreath Crony - Linked with Previous Event - Set Invisible'), +(-@CGuid-2, 0, 2 ,4, 38, 0, 100, 0, 1, 1, 0,0,47,1,0,0,0,0,0,1,0,0,0,0,0,0,0, 'Blackbreath Crony - On Data Set - Set visible'), +(-@CGuid-2, 0, 4 ,0, 61, 0, 100, 0, 0, 0, 0,0,53,0,9541001,0,0,0,0,1,0,0,0,0,0,0,0, 'Blackbreath Crony - Linked with Previous Event - Start WP'), +(-@CGuid-2, 0, 5 ,6, 40, 0, 100, 0, 3, 0, 0,0,101,0,0,0,0,0,0,1,0,0,0,0,0,0,0, 'Blackbreath Crony - On Reached WP 5 - Set Home Position'), +(-@CGuid-2, 0, 6 ,7, 61, 0, 100, 0, 0, 0, 0,0,19,320,0,0,0,0,0,1,0,0,0,0,0,0,0, 'Blackbreath Crony - Linked with Previous Event - Set Unit Flags'), +(-@CGuid-2, 0, 7 ,0, 61, 0, 100, 0, 0, 0, 0,0,89,3,0,0,0,0,0,1,0,0,0,0,0,0,0, 'Blackbreath Crony - Linked with Previous Event - Set Random Movement'), +(-@CGuid-2, 0, 8, 0, 0, 0, 100, 0, 2000, 2000, 11000, 12000, 11, 15581, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 'Blackbreath Crony - IC - Cast Sinister Strike'), +(-@CGuid-2, 0, 9, 0, 0, 0, 100, 0, 3000, 5000, 15000, 20000, 11, 15583, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 'Blackbreath Crony - IC - Cast Rupture'), +(-@CGuid-2, 0, 10 ,11, 4, 0, 100, 0, 0, 0, 0,0,45,1,2,0,0,0,0,9,9541,0,200,0,0,0,0, 'Blackbreath Crony - On Agro - Set Set Data'), +(-@CGuid-2, 0, 11 ,12,61, 0, 100, 0, 0, 0, 0,0,45,1,2,0,0,0,0,9,9537,0,200,0,0,0,0, 'Blackbreath Crony - On Agro - Set Set Data'), +(-@CGuid-2, 0, 12 ,0, 61, 0, 100, 0, 0, 0, 0,0,49,0,0,0,0,0,0,7,0,0,0,0,0,0,0, 'Blackbreath Crony - Linked with Previous Event - Attack'), +(-@CGuid-2, 0, 13 ,0, 38, 0, 100, 0, 1, 2, 0,0,49,0,0,0,0,0,0,21,200,0,0,0,0,0,0, 'Blackbreath Crony - On Data Set - Attack'); + +DELETE FROM `creature_text` WHERE `entry` =9537; +INSERT INTO `creature_text` (`entry`, `groupid`, `id`, `text`, `type`, `language`, `probability`, `emote`, `duration`, `sound`, `comment`, `BroadcastTextID`) VALUES +(9537, 1, 0, 'You''ll pay for that!', 12, 0, 100, 0, 0, 0, 'Hurley Blackbreath', 4936), +(9537, 0, 0, 'Get away from those kegs!', 14, 0, 100, 0, 0, 0, 'Hurley Blackbreath', 4934); + +DELETE FROM `waypoints` WHERE `entry`IN (9537,9541,9541000,9541001); +INSERT INTO `waypoints` (`entry`, `pointid`, `position_x`, `position_y`, `position_z`, `point_comment`) VALUES +(9537, 1, 886.916870,-149.176147,-49.760010, 'Hurley Blackbreath'), +(9537, 2, 897.698730,-137.324112,-49.752193, 'Hurley Blackbreath'), +(9537, 3, 898.569946,-141.830872,-49.755016, 'Hurley Blackbreath'), +(9541, 1, 885.926453,-145.907608,-49.760010, 'Blackbreath Crony'), +(9541, 2, 891.983093,-138.613907,-49.754261, 'Blackbreath Crony'), +(9541, 3, 896.412170,-144.160172,-49.757446, 'Blackbreath Crony'), +(9541000, 1, 888.984070,-152.598846,-49.760010, 'Blackbreath Crony'), +(9541000, 2, 895.560303,-134.140274,-49.748451, 'Blackbreath Crony'), +(9541000, 3, 897.199036,-139.512802,-49.755379, 'Blackbreath Crony'), +(9541001, 1, 886.916870,-149.176147,-49.760010, 'Blackbreath Crony'), +(9541001, 2, 899.913330,-133.534821,-49.747944, 'Blackbreath Crony'), +(9541001, 3, 901.009399,-139.603699,-49.755054, 'Blackbreath Crony'); + +DELETE FROM `creature` WHERE `id` IN(9537,9541); +INSERT INTO `creature` (`guid`, `id`, `map`, `spawnMask`, `phaseMask`, `modelid`, `equipment_id`, `position_x`, `position_y`, `position_z`, `orientation`, `spawntimesecs`, `spawndist`, `currentwaypoint`, `curhealth`, `curmana`, `MovementType`, `npcflag`, `unit_flags`, `dynamicflags`) VALUES +(@CGuid, 9541, 230, 1, 1, 0, 1, 879.018, -155.273, -49.7591, 0.57177, 300, 0, 0, 7359, 0, 0, 0, 0, 0), +(@CGuid+1, 9541, 230, 1, 1, 0, 1, 876.961, -151.796, -49.7591, 0.499513, 300, 0, 0, 7359, 0, 0, 0, 0, 0), +(@CGuid+2, 9541, 230, 1, 1, 0, 1, 876.535, -154.334, -49.7586, 0.339292, 300, 0, 0, 7359, 0, 0, 0, 0, 0), +(@CGuid+3, 9537, 230, 1, 1, 0, 1, 878.121, -153.074, -49.76, 0.527783, 300, 0, 0, 13070, 0, 0, 0, 0, 0); diff --git a/sql/updates/world/2014_06_25_00_world_quest.sql b/sql/updates/world/2014_06_25_00_world_quest.sql new file mode 100644 index 00000000000..77f5bf05471 --- /dev/null +++ b/sql/updates/world/2014_06_25_00_world_quest.sql @@ -0,0 +1,2 @@ +-- +UPDATE `quest_template` SET `SpecialFlags`=0 WHERE `Id`=8490; diff --git a/sql/updates/world/2014_06_25_01_world_misc.sql b/sql/updates/world/2014_06_25_01_world_misc.sql new file mode 100644 index 00000000000..88e47f6510d --- /dev/null +++ b/sql/updates/world/2014_06_25_01_world_misc.sql @@ -0,0 +1,33 @@ +-- +SET @CGUID := 127340; +INSERT INTO `creature` (`guid`, `id`, `map`, `spawnMask`, `phaseMask`, `position_x`, `position_y`, `position_z`, `orientation`, `spawntimesecs`, `spawndist`, `MovementType`) VALUES +(@CGUID+0, 32801, 571, 1, 1, 4131.279, 5394.604, 26.09047, 3.595378, 120, 0, 0), -- 32801 +(@CGUID+1, 32809, 571, 1, 1, 4454.667, 5623.537, 56.91562, 4.13643, 120, 0, 0), -- 32809 +(@CGUID+2, 32810, 571, 1, 1, 5499.812, 4878.976, -197.8652, 3.176499, 120, 0, 0), -- 32810 +(@CGUID+3, 32802, 571, 1, 1, 5360.002, 4834.393, -196.3981, 5.550147, 120, 0, 0), -- 32802 +(@CGUID+4, 32811, 571, 1, 1, 3762.387, 1481.287, 92.8882, 3.438299, 120, 0, 0), -- 32811 +(@CGUID+5, 32803, 571, 1, 1, 3936.924, -595.4437, 241.1534, 5.951573, 120, 0, 0), -- 32803 +(@CGUID+6, 32812, 571, 1, 1, 2586.682, -4337.068, 276.0698, 4.13643, 120, 0, 0), -- 32812 +(@CGUID+7, 32804, 571, 1, 1, 2466.965, -4892.675, 262.5474, 2.303835, 120, 0, 0), -- 32804 +(@CGUID+8, 32813, 571, 1, 1, 3376.009, -2124.778, 124.664, 0.1396263, 120, 0, 0), -- 32813 +(@CGUID+9, 32805, 571, 1, 1, 3400.944, -2890.375, 201.4968, 2.303835, 120, 0, 0), -- 32805 +(@CGUID+10, 32814, 571, 1, 1, 6150.945, -1023.05, 408.3642, 1.43117, 120, 0, 0), -- 32814 +(@CGUID+11, 32806, 571, 1, 1, 6087.442, -1105.523, 418.2672, 1.099557, 120, 0, 0), -- 32806 +(@CGUID+12, 32815, 571, 1, 1, 5536.516, -733.7185, 149.6217, 3.124139, 120, 0, 0), -- 32815 +(@CGUID+13, 32807, 571, 1, 1, 5141.776, -685.0027, 170.2738, 5.951573, 120, 0, 0), -- 32807 +(@CGUID+14, 32816, 571, 1, 1, 5280.307, -2766.146, 292.5019, 2.303835, 120, 0, 0), -- 32816 +(@CGUID+15, 32808, 571, 1, 1, 5627.932, -2616.493, 292.5019, 1.518436, 120, 0, 0), -- 32808 +(@CGUID+16, 25892, 0, 1, 1, -8258.798, -2618.704, 133.3752, 1.343904, 120, 0, 0), -- 25892 +(@CGUID+17, 25899, 1, 1, 1, -4391.495, 2187.865, 12.22644, 5.864306, 120, 0, 0), -- 25899 +(@CGUID+18, 25936, 1, 1, 1, -2321.744, -619.7491, -9.089149, 5.67232, 120, 0, 0), -- 25936 +(@CGUID+19, 25888, 530, 1, 1, -4219.219, -12310.55, 2.439188, 5.934119, 120, 0, 0), -- 25888 +(@CGUID+20, 25891, 530, 1, 1, -2234.83, -11895.94, 26.62421, 4.694936, 120, 0, 0), -- 25891 +(@CGUID+21, 25907, 530, 1, 1, -2998.854, 4164.042, 5.169014, 0.5934119, 120, 0, 0), -- 25907 +(@CGUID+22, 25938, 530, 1, 1, -3067.278, 2387.903, 62.19349, 3.368485, 120, 0, 0), -- 25938 +(@CGUID+23, 25905, 530, 1, 1, -3951.305, 2045.65, 95.14804, 4.520403, 120, 0, 0), -- 25905 +(@CGUID+24, 25912, 530, 1, 1, 193.7309, 6016.713, 22.73373, 6.161012, 120, 0, 0), -- 25912 +(@CGUID+25, 25903, 530, 1, 1, -2517.064, 7555.085, -1.793157, 5.375614, 120, 0, 0), -- 25903 +(@CGUID+26, 25889, 530, 1, 1, 2024.906, 6590.532, 135.3214, 5.934119, 120, 0, 0), -- 25889 +(@CGUID+27, 25926, 530, 1, 1, 2286.707, 6137.618, 136.3056, 1.570796, 120, 0, 0), -- 25926 +(@CGUID+28, 25913, 530, 1, 1, 3127.551, 3743.148, 141.7706, 6.161012, 120, 0, 0), -- 25913 +(@CGUID+29, 25918, 530, 1, 1, 2917.222, 3693.411, 143.7703, 2.932153, 120, 0, 0); -- 25918 diff --git a/sql/updates/world/2014_06_25_02_world_creature.sql b/sql/updates/world/2014_06_25_02_world_creature.sql new file mode 100644 index 00000000000..8c43786c8e8 --- /dev/null +++ b/sql/updates/world/2014_06_25_02_world_creature.sql @@ -0,0 +1,6 @@ +-- +SET @CGUID := 72776; +INSERT INTO `creature` (`guid`, `id`, `map`, `spawnMask`, `phaseMask`, `position_x`, `position_y`, `position_z`, `orientation`, `spawntimesecs`, `spawndist`, `MovementType`) VALUES +(@CGUID+0, 23108, 530, 1, 1, -493.0895, 7448.848, 178.6083, 4.83718, 120, 5, 1), -- 23108 (Area: 0) +(@CGUID+1, 23107, 530, 1, 1, -475.5646, 7463.805, 181.9694, 1.496497, 120, 5, 1), -- 23107 (Area: 0) +(@CGUID+2, 23106, 530, 1, 1, -511.7721, 7500.889, 183.1165, 5.096361, 120, 0, 0); -- 23106 (Area: 0) diff --git a/sql/updates/world/2014_06_25_03_world_misc.sql b/sql/updates/world/2014_06_25_03_world_misc.sql new file mode 100644 index 00000000000..3ddd98aa8df --- /dev/null +++ b/sql/updates/world/2014_06_25_03_world_misc.sql @@ -0,0 +1,40 @@ +-- Add support for {Q} A Tangled Skein ID: 12555 +-- rewritten from sniff: thx Pitcrawler +SET @Sprayer := 28274; +SET @Thrower := 51165; -- Throws a web +SET @Summon := 51314; -- Summons Broken Sprayer GO +SET @Explosion := 53236; -- Explosion on fall +SET @Credit := 28289; -- Kill Credit +SET @Trigger := 29457; -- Trigger to permit explosion only when Sprayer reach him +SET @SpellTrigger := 51173; -- A Tangled Skein: Encasing Webs - Effect that procs from @Thrower +SET @EncasingWebs := 51168; -- The visual that A Tangled Skein: Encasing Webs - Effect should apply +SET @SummonTrigger := 54496; +SET @Script := 2827400; +-- Add SAI support for Plague Sprayer +UPDATE `creature_template` SET `AIName`='SmartAI' WHERE `entry`=@Sprayer; -- they shouldn't be attackable, but unit_flag 2 cause evade +UPDATE `creature_template` SET `AIName`='SmartAI',`InhabitType`=1 WHERE `entry`=@Trigger; -- need this to make trigger (while guardian) stay at ground +DELETE FROM `smart_scripts` WHERE `entryorguid` IN (@Sprayer,@Trigger) AND `source_type`=0; +DELETE FROM `smart_scripts` WHERE `entryorguid`=@Script AND `source_type`=9; +INSERT INTO `smart_scripts` (`entryorguid`,`source_type`,`id`,`link`,`event_type`,`event_phase_mask`,`event_chance`,`event_flags`,`event_param1`,`event_param2`,`event_param3`,`event_param4`,`action_type`,`action_param1`,`action_param2`,`action_param3`,`action_param4`,`action_param5`,`action_param6`,`target_type`,`target_param1`,`target_param2`,`target_param3`,`target_x`,`target_y`,`target_z`,`target_o`,`comment`) VALUES +(@Trigger,0,0,0,54,0,100,0,0,0,0,0,75,@EncasingWebs,0,0,0,0,0,7,0,0,0,0,0,0,0, 'Plagued Sprayer - On just summoned - Cast Encasing Webs'), +(@Sprayer,0,0,0,25,0,100,0,0,0,0,0,8,0,0,0,0,0,0,1,0,0,0,0,0,0,0, 'Plagued Sprayer - On spawn/reset - Set react state passive'), +(@Sprayer,0,1,0,8,0,100,1,@Thrower,0,0,0,64,1,0,0,0,0,0,7,0,0,0,0,0,0,0, 'Plagued Sprayer - On spell hit by player with thrower - Store invoker as target'), +(@Sprayer,0,2,3,8,0,100,1,@SpellTrigger,0,0,0,11,@SummonTrigger,0,0,0,0,0,1,0,0,0,0,0,0,0, 'Plagued Sprayer - On spell hit by item spell - Cast summon trigger'), +(@Sprayer,0,3,0,61,0,100,1,0,0,0,0,59,1,0,0,0,0,0,1,0,0,0,0,0,0,0, 'Plagued Sprayer - Linked with previous event - Set run on'), +(@Sprayer,0,4,0,23,0,100,1,@EncasingWebs,1,0,0,69,1,0,0,0,0,0,19,@Trigger,20,0,0,0,0,0, 'Plagued Sprayer - On creature has aura Encasing Webs - Move to closest trigger in 20 yards'), +(@Sprayer,0,5,0,34,0,100,1,8,1,0,0,80,@Script,2,0,0,0,0,1,0,0,0,0,0,0,0, 'Plagued Sprayer - On point 1 reached - Start action list'), +-- Script +(@Script,9,0,0,0,0,100,0,0,0,0,0,11,@Explosion,0,0,0,0,0,1,0,0,0,0,0,0,0,'Plagued Sprayer - Action 0 - Cast huge explosion on self'), +(@Script,9,1,0,0,0,100,0,300,300,0,0,33,@Credit,0,0,0,0,0,12,1,0,0,0,0,0,0,'Plagued Sprayer - Action 1 - Give credit to stored invoker'), +(@Script,9,2,0,0,0,100,0,0,0,0,0,11,@Summon,0,0,0,0,0,1,0,0,0,0,0,0,0,'Plagued Sprayer - Action 2 - Cast summon broken GO sprayer on self'), -- need small delay for the explosion to be displayed +(@Script,9,3,0,0,0,100,0,0,0,0,0,37,0,0,0,0,0,0,1,0,0,0,0,0,0,0,'Plagued Sprayer - Action 3 - Die'), +(@Script,9,4,0,0,0,100,0,0,0,0,0,47,0,0,0,0,0,0,1,0,0,0,0,0,0,0,'Plagued Sprayer - Action 4 - Set unseen'); +-- Conditions +DELETE FROM `conditions` WHERE `SourceEntry`=@Thrower AND `SourceTypeOrReferenceId`=17; +INSERT INTO `conditions` (`SourceTypeOrReferenceId`, `SourceGroup`, `SourceEntry`, `SourceId`, `ElseGroup`, `ConditionTypeOrReference`, `ConditionTarget`, `ConditionValue1`, `ConditionValue2`, `ConditionValue3`, `NegativeCondition`, `ErrorTextId`, `ScriptName`, `Comment`) VALUES +(17,0,@Thrower,0,0,31,1,3,@Sprayer,0,0,0,'', 'Thrower can target only Plague Sprayer'); +-- Delete wrong, nonexistant Trigger spawn +DELETE FROM `creature` WHERE `id`=@Trigger; +-- Update creature data for plague sprayers they should have movement type 0 +UPDATE `creature` SET `spawndist`=0,`MovementType`=0 WHERE `id`=@Sprayer; +UPDATE `creature_template` SET `InhabitType`=4 WHERE `entry`=28274; diff --git a/sql/updates/world/2014_06_25_04_world_misc.sql b/sql/updates/world/2014_06_25_04_world_misc.sql new file mode 100644 index 00000000000..3bd4bbaafe2 --- /dev/null +++ b/sql/updates/world/2014_06_25_04_world_misc.sql @@ -0,0 +1,10 @@ +-- Fix for ... and a Batch of Ooze (4294) and ... and a Batch of Ooze (4293) +UPDATE `quest_template` SET `PrevQuestId`=0 WHERE `Id`=4661; -- Testing for Impurities - Un'Goro Crater +UPDATE `quest_template` SET `PrevQuestId`=0 WHERE `Id`=4561; -- Testing for Corruption - Felwood + +DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId` IN(19,20) AND `SourceEntry` IN (4661,4561); +INSERT INTO `conditions` (`SourceTypeOrReferenceId`, `SourceGroup`, `SourceEntry`, `SourceId`, `ElseGroup`, `ConditionTypeOrReference`, `ConditionTarget`, `ConditionValue1`, `ConditionValue2`, `ConditionValue3`, `NegativeCondition`, `ErrorType`, `ErrorTextId`, `ScriptName`, `Comment`) VALUES +(19, 0, 4561, 0, 0, 9, 0, 4294, 0, 0, 0, 0, 0, '', 'player needs to be on quest ... and a Batch of Ooze to see Testing for Impurities - UnGoro Crater'), +(19, 0, 4661, 0, 0, 9, 0, 4293, 0, 0, 0, 0, 0, '', 'player needs to be on quest and a batch of slime to see Testing for Corruption - Felwood'), +(20, 0, 4561, 0, 0, 9, 0, 4294, 0, 0, 0, 0, 0, '', 'player needs to be on quest ... and a Batch of Ooze to see Testing for Impurities - UnGoro Crater'), +(20, 0, 4661, 0, 0, 9, 0, 4293, 0, 0, 0, 0, 0, '', 'player needs to be on quest and a batch of slime to see Testing for Corruption - Felwood'); diff --git a/sql/updates/world/2014_06_25_05_world_misc.sql b/sql/updates/world/2014_06_25_05_world_misc.sql new file mode 100644 index 00000000000..e253e445e01 --- /dev/null +++ b/sql/updates/world/2014_06_25_05_world_misc.sql @@ -0,0 +1,17 @@ +UPDATE `creature_template` SET `AIName`= 'SmartAI',`ScriptName`='' WHERE `entry` =17542; +DELETE FROM `smart_scripts` WHERE `entryorguid` =17542; + +INSERT INTO `smart_scripts` (`entryorguid`, `source_type`, `id`, `link`, `event_type`, `event_phase_mask`, `event_chance`, `event_flags`, `event_param1`, `event_param2`, `event_param3`, `event_param4`, `action_type`, `action_param1`, `action_param2`, `action_param3`, `action_param4`, `action_param5`, `action_param6`, `target_type`, `target_param1`, `target_param2`, `target_param3`, `target_x`, `target_y`, `target_z`, `target_o`, `comment`) VALUES +(17542,0,0,1,8,0,100,0,8593,0,0,0,33,17542,0,0,0,0,0,7,0,0,0,0,0,0,0,'Young Furbolg Shaman - On Spell Hit - Give Kill Credit'), +(17542,0,1,2,61,0,100,0,0,0,0,0,28,29266,0,0,0,0,0,1,0,0,0,0,0,0,0,'Young Furbolg Shaman - Linked with Previous Event - Remove permament Feign Death'), +(17542,0,2,0,61,0,100,0,0,0,0,0,23,2,0,0,0,0,0,1,0,0,0,0,0,0,0,'Young Furbolg Shaman - Linked with Previous Event - Set Phase 2'), + +(17542,0,4,5, 1,2,100,0,60000,60000,60000,60000,11,29266,2,0,0,0,0,1,0,0,0,0,0,0,0,'Young Furbolg Shaman - OOC - Cast Permament Feign Death'), +(17542,0,5,0,61,2,100,0,0,0,0,0,23,1,0,0,0,0,0,1,0,0,0,0,0,0,0,'Young Furbolg Shaman - Linked with Previous Event - Set Phase 1'), +(17542,0,6,0,25,0,100,0,0,0,0,0,11,29266,2,0,0,0,0,1,0,0,0,0,0,0,0,'Young Furbolg Shaman - On Spawn - Cast Permament Feign Death'); + +DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId`=13 AND `SourceEntry`=8593; +INSERT INTO `conditions` (`SourceTypeOrReferenceId`, `SourceGroup`, `SourceEntry`, `SourceId`, `ElseGroup`, `ConditionTypeOrReference`, `ConditionTarget`, `ConditionValue1`, `ConditionValue2`, `ConditionValue3`, `NegativeCondition`, `ErrorType`, `ErrorTextId`, `ScriptName`, `Comment`) VALUES +(13, 1, 8593, 0, 0, 31, 0, 3, 17542, 0, 0, 0, 0, '', 'Symbol of Life can be casted on Young Furbolg Shaman'), +(13, 1, 8593, 0, 1, 31, 0, 3, 6172, 0, 0, 0, 0, '', 'Symbol of Life can be casted on Henze Faulk'), +(13, 1, 8593, 0, 2, 31, 0, 3, 6177, 0, 0, 0, 0, '', 'Symbol of Life can be casted on Narm Faulk'); diff --git a/sql/updates/world/2014_06_25_06_world_conditions.sql b/sql/updates/world/2014_06_25_06_world_conditions.sql new file mode 100644 index 00000000000..8bd179e360b --- /dev/null +++ b/sql/updates/world/2014_06_25_06_world_conditions.sql @@ -0,0 +1,4 @@ +-- +DELETE FROM `conditions` WHERE `SourceEntry`=28700 AND `SourceTypeOrReferenceId`=17; +INSERT INTO `conditions` (`SourceTypeOrReferenceId`, `SourceGroup`, `SourceEntry`, `SourceId`, `ElseGroup`, `ConditionTypeOrReference`, `ConditionTarget`, `ConditionValue1`, `ConditionValue2`, `ConditionValue3`, `NegativeCondition`, `ErrorType`, `ErrorTextId`, `Comment`) VALUES +(17,0,28700,0,0,30,0,181433,15,0,0,0,0,'Disperse Neutralizing Agent (28700) can be used only near the Irradiated Power Crystal (181433)'); diff --git a/sql/updates/world/2014_06_25_07_world_conditions.sql b/sql/updates/world/2014_06_25_07_world_conditions.sql new file mode 100644 index 00000000000..fd1c5a2b681 --- /dev/null +++ b/sql/updates/world/2014_06_25_07_world_conditions.sql @@ -0,0 +1,5 @@ +DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId`=13 AND `SourceEntry`=8593; +INSERT INTO `conditions` (`SourceTypeOrReferenceId`, `SourceGroup`, `SourceEntry`, `SourceId`, `ElseGroup`, `ConditionTypeOrReference`, `ConditionTarget`, `ConditionValue1`, `ConditionValue2`, `ConditionValue3`, `NegativeCondition`, `ErrorType`, `ErrorTextId`, `ScriptName`, `Comment`) VALUES +(13, 1, 8593, 0, 0, 31, 0, 3, 17542, 0, 0, 0, 0, '', 'Symbol of Life can be casted on Young Furbolg Shaman'), +(13, 1, 8593, 0, 1, 31, 0, 3, 6172, 0, 0, 0, 0, '', 'Symbol of Life can be casted on Henze Faulk'), +(13, 1, 8593, 0, 2, 31, 0, 3, 6177, 0, 0, 0, 0, '', 'Symbol of Life can be casted on Narm Faulk'); diff --git a/sql/updates/world/2014_06_25_08_world_conditions.sql b/sql/updates/world/2014_06_25_08_world_conditions.sql new file mode 100644 index 00000000000..e2e904ae063 --- /dev/null +++ b/sql/updates/world/2014_06_25_08_world_conditions.sql @@ -0,0 +1,8 @@ +DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId`=13 AND `SourceEntry`=8593 OR `SourceTypeOrReferenceId`=17 AND `SourceEntry`=8593; +INSERT INTO `conditions` (`SourceTypeOrReferenceId`, `SourceGroup`, `SourceEntry`, `SourceId`, `ElseGroup`, `ConditionTypeOrReference`, `ConditionTarget`, `ConditionValue1`, `ConditionValue2`, `ConditionValue3`, `NegativeCondition`, `ErrorType`, `ErrorTextId`, `ScriptName`, `Comment`) VALUES +(17, 0, 8593, 0, 0, 29, 0, 17542, 40, 0, 0, 0, 0, '', 'Symbol of Life can be casted within 40 yards of Young Furbolg Shaman'), +(17, 0, 8593, 0, 1, 29, 0, 6172, 40, 0, 0, 0, 0, '', 'Symbol of Life can be casted within 40 yards Henze Faulk'), +(17, 0, 8593, 0, 2, 29, 0, 6177, 40, 0, 0, 0, 0, '', 'Symbol of Life can be casted within 40 yards Henze Faulk'), +(13, 1, 8593, 0, 0, 31, 0, 3, 17542, 0, 0, 0, 0, '', 'Symbol of Life can be casted on Young Furbolg Shaman'), +(13, 1, 8593, 0, 1, 31, 0, 3, 6172, 0, 0, 0, 0, '', 'Symbol of Life can be casted on Henze Faulk'), +(13, 1, 8593, 0, 2, 31, 0, 3, 6177, 0, 0, 0, 0, '', 'Symbol of Life can be casted on Narm Faulk'); diff --git a/sql/updates/world/2014_06_26_00_world_misc.sql b/sql/updates/world/2014_06_26_00_world_misc.sql new file mode 100644 index 00000000000..b116a05979a --- /dev/null +++ b/sql/updates/world/2014_06_26_00_world_misc.sql @@ -0,0 +1,232 @@ +/* [Q] A Suitable Disguise + +SUMMARY: +Basically we are running a random script (4 in total) every 12 seconds after gossip select. Every script has a different subject. For example when we run script @ENTRY*100+1 it will require you to throw a bucket of water into the tub. If you don't do this on time, the event will fail and you'll have to start it over again. +The gossip flags are turned off on gossip select (@ENTRY*100+0) because we don't want the same event to be ran more than once at a time. +As you might have noticed we are using phases a LOT. This helps us to basically add conditions to some lines so they won't occur all the time, yet we can easily time them OOC. +We are also using Data Set event and action types a lot. As you can see when a bunny is hit by the spell which belongs to it, it will set data to Shandy which makes Shandy say something like 'Well done'. +The way the gameobjects are handled is maybe pretty much a work-around but it will need a LOT of core work to make this work like it works on Blizzlike. It should be different objects if you're either horde or alliance. Right now I've just spawned them on-top of each other, because in the end you can only use the object which belongs to your faction. + + +PROBLEMS: +Shandy Glossgleam should start a waypoint after completing script. (wtb sniffs) +Aquanos' evocation spell seems to have a bugged effect. + +RESOURCES: +http://www.youtube.com/watch?v=Fe4mRWO20Hw +http://www.youtube.com/watch?v=tqBbFr_BhC4 +http://www.youtube.com/watch?v=OFBRam2MgUw +http://www.wowwiki.com/Quest:A_Suitable_Disguise_(Alliance) + +PHASES: +Phase 0: when event did not start yet +Phase 1: when event is happening +Phase 2: when event failed +Phase 4: resetting everything */ + +-- Shandy Glossgleam SAI +SET @ENTRY := 36856; +SET @QUEST_A := 20438; +SET @QUEST_H := 24556; +SET @OGUID := 56249; +SET @GOSSIP := 10854; + +UPDATE `creature_template` SET `AIName`='SmartAI',`gossip_menu_id`=@GOSSIP WHERE `entry`=@ENTRY; + +DELETE FROM `smart_scripts` WHERE `entryorguid` IN (@ENTRY,@ENTRY*100+0,@ENTRY*100+1,@ENTRY*100+2,@ENTRY*100+3,@ENTRY*100+4,@ENTRY*100+5,@ENTRY*100+6,@ENTRY*100+7); +INSERT INTO `smart_scripts` (`entryorguid`,`source_type`,`id`,`link`,`event_type`,`event_phase_mask`,`event_chance`,`event_flags`,`event_param1`,`event_param2`,`event_param3`, `event_param4`,`action_type`,`action_param1`,`action_param2`,`action_param3`,`action_param4`,`action_param5`,`action_param6`, `target_type`,`target_param1`,`target_param2`,`target_param3`,`target_x`,`target_y`,`target_z`,`target_o`,`comment`) VALUES +(@ENTRY,0,0,0,62,0,100,0,@GOSSIP,0,0,0,80,@ENTRY*100+0,0,0,0,0,0,1,0,0,0,0,0,0,0,"Shandy Glossgleam - On Gossip Select - Run script"), +(@ENTRY,0,1,0,1,1,100,0,8000,8000,12000,12000,88,@ENTRY*100+1,@ENTRY*100+4,0,0,0,0,1,0,0,0,0,0,0,0,"Shandy Glossgleam - Timed - Run Random Script"), +(@ENTRY,0,2,0,38,1,100,0,1,1,0,0,80,@ENTRY*100+5,0,0,0,0,0,1,0,0,0,0,0,0,0,"Shandy Glossgleam - On Data Set 1 1 - Run Task Successful Script"), +(@ENTRY,0,3,0,1,1,100,0,120000,120000,120000,120000,80,@ENTRY*100+7,0,0,0,0,0,1,0,0,0,0,0,0,0,"Shandy Glossgleam - Timed - Run Complete Script"), +(@ENTRY,0,4,0,1,2,100,0,0,0,0,0,80,@ENTRY*100+6,0,0,0,0,0,1,0,0,0,0,0,0,0,"Shandy Glossgleam - Timed - Run Failure Script"), +(@ENTRY,0,5,6,1,4,100,0,30000,30000,30000,30000,81,3,0,0,0,0,0,1,0,0,0,0,0,0,0,"Shandy Glossgleam - Timed - Set Back Gossip & Quest Flags"), -- This can only occur in phase 4 so no need to time it (P4 is set in completion script) +(@ENTRY,0,6,7,61,4,100,0,0,0,0,0,22,0,0,0,0,0,0,1,0,0,0,0,0,0,0,"Shandy Glossgleam - Timed - Set Phase 0"), +(@ENTRY,0,7,0,61,4,100,0,0,0,0,0,78,0,0,0,0,0,0,1,0,0,0,0,0,0,0,"Shandy Glossgleam - Timed - Reset Scripts"), +(@ENTRY,0,8,0,40,0,100,0,16,@ENTRY,0,0,41,0,0,0,0,0,0,1,0,0,0,0,0,0,0,"Shandy Glossgleam - On Reached WP 16 - Despawn"), +(@ENTRY,0,9,0,62,0,100,0,@GOSSIP,1,0,0,80,@ENTRY*100+0,0,0,0,0,0,1,0,0,0,0,0,0,0,"Shandy Glossgleam - On Gossip Select - Run script"), + +-- Start script +(@ENTRY*100+0,9,0,0,0,0,100,0,0,0,0,0,72,0,0,0,0,0,0,7,0,0,0,0,0,0,0,"Shandy Glossgleam - Script 0 - Close Gossip"), +(@ENTRY*100+0,9,1,0,0,0,100,0,0,0,0,0,81,0,0,0,0,0,0,1,0,0,0,0,0,0,0,"Shandy Glossgleam - Script 0 - Turn of Gossip & Questgiver flags"), +(@ENTRY*100+0,9,2,0,0,0,100,0,1000,1000,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,"Shandy Glossgleam - Script 0 - Say Line 0"), +(@ENTRY*100+0,9,3,0,0,0,100,0,5000,5000,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,"Shandy Glossgleam - Script 0 - Say Line 1"), +(@ENTRY*100+0,9,4,0,0,0,100,0,0,0,0,0,22,1,0,0,0,0,0,1,0,0,0,0,0,0,0,"Shandy Glossgleam - Script 0 - Set Phase 1"), +-- Wants Water +(@ENTRY*100+1,9,0,0,0,0,100,0,0,0,0,0,1,4,0,0,0,0,0,1,0,0,0,0,0,0,0,"Shandy Glossgleam - Script 1 - Say Line 4"), +(@ENTRY*100+1,9,1,0,0,0,100,0,0,0,0,0,12,36947,1,10000,0,0,0,8,0,0,0,5796.970215,693.942993,658.351990,0,"Shandy Glossgleam - Script 1 - Summon Wants Water"), +(@ENTRY*100+1,9,2,0,0,0,100,0,10000,10000,0,0,22,2,0,0,0,0,0,1,0,0,0,0,0,0,0,"Shandy Glossgleam - Script 1 - Set Phase 2"), +-- Wants Pants +(@ENTRY*100+2,9,0,0,0,0,100,0,0,0,0,0,1,5,0,0,0,0,0,1,0,0,0,0,0,0,0,"Shandy Glossgleam - Script 2 - Say Line 5"), +(@ENTRY*100+2,9,1,0,0,0,100,0,0,0,0,0,12,36945,1,10000,0,0,0,8,0,0,0,5796.970215,693.942993,658.351990,0,"Shandy Glossgleam - Script 2 - Summon Wants Pants"), +(@ENTRY*100+2,9,2,0,0,0,100,0,10000,10000,0,0,22,2,0,0,0,0,0,1,0,0,0,0,0,0,0,"Shandy Glossgleam - Script 2 - Set Phase 2"), +-- Wants Unmentionables +(@ENTRY*100+3,9,0,0,0,0,100,0,0,0,0,0,1,3,0,0,0,0,0,1,0,0,0,0,0,0,0,"Shandy Glossgleam - Script 3 - Say Line 3"), +(@ENTRY*100+3,9,1,0,0,0,100,0,0,0,0,0,12,36946,1,10000,0,0,0,8,0,0,0,5796.970215,693.942993,658.351990,0,"Shandy Glossgleam - Script 3 - Summon Wants Unmentionables"), +(@ENTRY*100+3,9,2,0,0,0,100,0,10000,10000,0,0,22,2,0,0,0,0,0,1,0,0,0,0,0,0,0,"Shandy Glossgleam - Script 3 - Set Phase 2"), +-- Wants Shirts +(@ENTRY*100+4,9,0,0,0,0,100,0,0,0,0,0,1,2,0,0,0,0,0,1,0,0,0,0,0,0,0,"Shandy Glossgleam - Script 4 - Say Line 2"), +(@ENTRY*100+4,9,1,0,0,0,100,0,0,0,0,0,12,36944,1,10000,0,0,0,8,0,0,0,5796.970215,693.942993,658.351990,0,"Shandy Glossgleam - Script 4 - Summon Wants Shirts"), +(@ENTRY*100+4,9,2,0,0,0,100,0,10000,10000,0,0,22,2,0,0,0,0,0,1,0,0,0,0,0,0,0,"Shandy Glossgleam - Script 4 - Set Phase 2"), + +-- Task successful +(@ENTRY*100+5,9,0,0,0,0,100,0,0,0,0,0,1,6,0,0,0,0,0,1,0,0,0,0,0,0,0,"Shandy Glossgleam - Script 6 - Say Line 6 (random)"), +-- End failure +(@ENTRY*100+6,9,0,0,0,0,100,0,0,0,0,0,1,7,0,0,0,0,0,1,0,0,0,0,0,0,0,"Shandy Glossgleam - Script 7 - Say Line 7"), +(@ENTRY*100+6,9,1,0,0,0,100,0,0,0,0,0,22,0,0,0,0,0,0,1,0,0,0,0,0,0,0,"Shandy Glossgleam - Script 7 - Set Phase 0"), +(@ENTRY*100+6,9,2,0,0,0,100,0,0,0,0,0,81,3,0,0,0,0,0,1,0,0,0,0,0,0,0,"Shandy Glossgleam - Script 7 - Set Gossip Flag"), +-- Completion script +(@ENTRY*100+7,9,0,0,0,0,100,0,0,0,0,0,78,0,0,0,0,0,0,1,0,0,0,0,0,0,0,"Shandy Glossgleam - Script 8 - Stop Current Scripts"), +(@ENTRY*100+7,9,1,0,0,0,100,0,2000,2000,0,0,1,8,0,0,0,0,0,1,0,0,0,0,0,0,0,"Shandy Glossgleam - Script 8 - Say Line 8"), +(@ENTRY*100+7,9,2,0,0,0,100,0,0,0,0,0,66,0,0,0,0,0,0,19,36851,0,0,0,0,0,0,"Shandy Glossgleam - Script 8 - Face Aquanos"), +(@ENTRY*100+7,9,3,0,0,0,100,0,8000,8000,0,0,1,9,0,0,0,0,0,1,0,0,0,0,0,0,0,"Shandy Glossgleam - Script 8 - Say Line 9"), +(@ENTRY*100+7,9,4,0,0,0,100,0,0,0,0,0,50,201384,30000,0,0,0,0,8,0,0,0,5797.147461,696.602417,657.949463,6.090852,"Shandy Glossgleam - Script 8 - Summon Clean Laundry"), +(@ENTRY*100+7,9,5,0,0,0,100,0,3000,3000,0,0,53,0,@ENTRY,0,0,0,0,1,0,0,0,0,0,0,0,"Shandy Glossgleam - Script 8 - Set Phase 4"); + +-- Texts +-- They all emote ONESHOT_TALK apart from request texts (as seen in videos) +DELETE FROM `creature_text` WHERE `entry`=@ENTRY; +INSERT INTO `creature_text` (`entry`,`groupid`,`id`,`text`,`type`,`language`,`probability`,`emote`,`duration`,`sound`,`comment`,`BroadcastTextID`) VALUES +-- Start +(@ENTRY,0,0,"You're in luck. I've got just what you need in the load I'm about to wash.",12,0,100,0,0,0,"Shandy Glossgleam",36761), +(@ENTRY,1,0,"See the piles of laundry and the bucket of water? I'll run out what I need next, and you put it in the tub. Ready?",12,0,100,0,0,0,"Shandy Glossgleam",36762), +-- Requests +(@ENTRY,2,0,"Quick, add some shirts to the laundry!",12,0,100,0,0,0,"Shandy Glossgleam",36788), -- Emote ONESHOT_POINT +(@ENTRY,3,0,"Add the unmentionables... uh, I mean, the 'delicates'!",12,0,100,25,0,0,"Shandy Glossgleam",36789), -- Emote ONESHOT_POINT +(@ENTRY,4,0,"The tub needs more water!",12,0,100,25,0,0,"Shandy Glossgleam",36790), -- Emote ONESHOT_POINT +(@ENTRY,5,0,"Toss some pants in to the tub!",12,0,100,25,0,0,"Shandy Glossgleam",36787), -- Emote ONESHOT_POINT +-- Correct +(@ENTRY,6,0,"I should keep you around.",12,0,100,0,0,0,"Shandy Glossgleam",37989), +(@ENTRY,6,1,"Well done!",12,0,100,0,0,0,"Shandy Glossgleam",36764), +(@ENTRY,6,2,"That's how it's done!",12,0,100,0,0,0,"Shandy Glossgleam",37986), +(@ENTRY,6,3,"Clean and tidy!",12,0,100,0,0,0,"Shandy Glossgleam",37985), +(@ENTRY,6,4,"Nice. I don't want to know what that stain was.",12,0,100,0,0,0,"Shandy Glossgleam",37987), +(@ENTRY,6,5,"Aquanos can hardly keep up!",12,0,40,0,0,0,"Shandy Glossgleam",37988), +-- Incorrect +(@ENTRY,7,0,"Oh, no! That wasn't right. Now I'll have to go get more detergent so we can start over!",12,0,100,0,0,0,"Shandy Glossgleam",36763), +-- End +(@ENTRY,8,0,"Aquanos, stop sending the clothes so high! You didn't have to see the look on Aethas Sunreaver's face when he found his pants in the fountain!",12,0,100,0,0,0,"Shandy Glossgleam",36817), +(@ENTRY,9,0,"See how easy that was with everyone working together? Just take what you need from the clean laundry here, but don't forget to return it when you're finished.",12,0,100,0,0,0,"Shandy Glossgleam",36791); + +-- Give Clean Laundry quest item loot +DELETE FROM `gameobject_loot_template` WHERE `entry`=27725; +INSERT INTO `gameobject_loot_template` (`entry`,`item`,`ChanceOrQuestChance`,`lootmode`,`groupid`,`mincountOrRef`,`maxcount`) VALUES +(27725,49648,-100,1,0,1,1); + +-- Summon quest gameobjects +DELETE FROM `gameobject` WHERE `id` IN (201295,201931,201301,201296,201300,201932,201936,201933,201299,201855,201298,201297,201934,201935) AND `guid` BETWEEN @OGUID AND @OGUID+13; +INSERT INTO `gameobject` (`guid`,`id`,`map`,`spawnMask`,`phaseMask`,`position_x`,`position_y`,`position_z`,`orientation`,`rotation0`,`rotation1`,`rotation2`,`rotation3`,`spawntimesecs`,`animprogress`,`state`) VALUES +-- Game objects for Alliance quest 20438 +-- Water Bucket +(@OGUID, 201298, 571, 1, 1, 5807.094, 690.5868, 659.1125, 0, 0, 0, 0, 1, 120, 255, 1), -- 201298 (Area: 4613) +-- Pants +(@OGUID+1, 201295, 571, 1, 1, 5806.047, 694.5938, 657.949, 1.710422, 0, 0, 0, 1, 120, 255, 1), -- 201295 (Area: 4613) +(@OGUID+2, 201931, 571, 1, 1, 5806.068, 694.5799, 658.4567, 0, 0, 0, 0, 1, 120, 255, 1), -- 201931 (Area: 4613) +-- Shirts +(@OGUID+3, 201296, 571, 1, 1, 5805.592, 691.0816, 657.9492, 0, 0, 0, 0, 1, 120, 255, 1), -- 201296 (Area: 4613) +(@OGUID+4, 201932, 571, 1, 1, 5805.556, 691.1024, 658.3948, 0, 0, 0, 0, 1, 120, 255, 1), -- 201932 (Area: 4613) +-- Unmentionalables +(@OGUID+5, 201933, 571, 1, 1, 5805.316, 697.5625, 658.3061, 0, 0, 0, 0, 1, 120, 255, 1), -- 201933 (Area: 4613) +(@OGUID+6, 201297, 571, 1, 1, 5805.338, 697.5729, 657.9791, 1.640607, 0, 0, 0, 1, 120, 255, 1), -- 201297 (Area: 4613) +-- Game objects for Horde quest 24556 +-- Water Bucket +(@OGUID+7, 201855, 571, 1, 1, 5807.094, 690.5868, 659.1125, 0, 0, 0, 0, 1, 120, 255, 1), -- 201855 (Area: 4613) +-- Pants +(@OGUID+8, 201301, 571, 1, 1, 5806.068, 694.5799, 658.4575, 0, 0, 0, 0, 1, 120, 255, 1), -- 201301 (Area: 4613) +(@OGUID+9, 201934, 571, 1, 1, 5806.015, 694.6285, 657.949, 1.710422, 0, 0, 0, 1, 120, 255, 1), -- 201934 (Area: 4613) +-- Shirts +(@OGUID+10, 201300, 571, 1, 1, 5805.579, 691.0868, 658.3615, 0, 0, 0, 0, 1, 120, 255, 1), -- 201300 (Area: 4613) +(@OGUID+11, 201935, 571, 1, 1, 5805.587, 691.0608, 657.9492, 0, 0, 0, 0, 1, 120, 255, 1), -- 201935 (Area: 4613) +-- Unmentionalables +(@OGUID+12, 201936, 571, 1, 1, 5805.326, 697.5555, 657.949, 1.640607, 0, 0, 0, 1, 120, 255, 1), -- 201936 (Area: 4613) +(@OGUID+13, 201299, 571, 1, 1, 5805.316, 697.5625, 658.3046, 0, 0, 0, 0, 1, 120, 255, 1); -- 201299 (Area: 4613) + +-- Insert option menu +DELETE FROM `gossip_menu_option` WHERE `menu_id`=@GOSSIP; +INSERT INTO `gossip_menu_option` (`menu_id`,`id`,`option_icon`,`option_text`,`option_id`,`npc_option_npcflag`,`BoxBroadcastTextID`) VALUES +(@GOSSIP,0,0,'Arcanist Tybalin said you might be able to lend me a certain tabard.',1,1,36760), +(@GOSSIP,1,0,'Magister Hathorel said you might be able to lend me a certain tabard.',1,1,37552); + +-- Add conditions for gossip - as you see we are using ElseGroup (logical 'OR') +DELETE FROM `conditions` WHERE `SourceGroup` IN (@GOSSIP) AND `ConditionValue1` IN (@QUEST_A,@QUEST_H); +INSERT INTO `conditions` (`SourceTypeOrReferenceId`,`SourceGroup`,`SourceEntry`,`ElseGroup`,`ConditionTypeOrReference`,`ConditionValue1`,`ConditionValue2`,`ConditionValue3`,`ErrorTextId`,`ScriptName`,`Comment`) VALUES +(15,@GOSSIP,0,0,9,@QUEST_A,0,0,0,'',"Only show first gossip if player is on quest A Suitable Disguise (A)"), +(15,@GOSSIP,1,0,9,@QUEST_H,0,0,0,'',"Only show first gossip if player is on quest A Suitable Disguise (H)"); + +-- Aquanos SAI +SET @ENTRY := 36851; +SET @SPELL_EVOCATION := 69659; +UPDATE `creature_template` SET `AIName`='SmartAI' WHERE `entry`=@ENTRY; +DELETE FROM `smart_scripts` WHERE `entryorguid`=@ENTRY; +INSERT INTO `smart_scripts` (`entryorguid`,`source_type`,`id`,`link`,`event_type`,`event_phase_mask`,`event_chance`,`event_flags`,`event_param1`,`event_param2`,`event_param3`, `event_param4`,`action_type`,`action_param1`,`action_param2`,`action_param3`,`action_param4`,`action_param5`,`action_param6`, `target_type`,`target_param1`,`target_param2`,`target_param3`,`target_x`,`target_y`,`target_z`,`target_o`,`comment`) VALUES +(@ENTRY,0,0,0,38,0,100,0,2,2,0,0,11,@SPELL_EVOCATION,1,0,0,0,0,1,0,0,0,0,0,0,0,"Aquanos - On Data Set 2 2 - Cast Evocation (Visual Only)"); + +-- Wants Water SAI +SET @ENTRY := 36947; +SET @SPELL_WATER := 69614; +UPDATE `creature_template` SET `AIName`='SmartAI',`minlevel`=70,`maxlevel`=70,`exp`=2,`unit_class`=2,`unit_flags`=`unit_flags`|33554432,`flags_extra`=`flags_extra`|128 WHERE `entry`=@ENTRY; +DELETE FROM `smart_scripts` WHERE `entryorguid`=@ENTRY; +INSERT INTO `smart_scripts` (`entryorguid`,`source_type`,`id`,`link`,`event_type`,`event_phase_mask`,`event_chance`,`event_flags`,`event_param1`,`event_param2`,`event_param3`, `event_param4`,`action_type`,`action_param1`,`action_param2`,`action_param3`,`action_param4`,`action_param5`,`action_param6`, `target_type`,`target_param1`,`target_param2`,`target_param3`,`target_x`,`target_y`,`target_z`,`target_o`,`comment`) VALUES +(@ENTRY,0,0,1,8,0,100,1,@SPELL_WATER,0,0,0,45,1,1,0,0,0,0,19,36856,0,0,0,0,0,0,"Wants Water - On Spellhit - Set Data Shandy Glossgleam"), +(@ENTRY,0,1,0,61,0,100,0,0,0,0,0,45,2,2,0,0,0,0,19,36851,0,0,0,0,0,0,"Wants Water - On Spellhit - Set Data Aquanos"); + +-- Wants Pants SAI +SET @ENTRY := 36945; +SET @SPELL_PANTS := 69600; +UPDATE `creature_template` SET `AIName`='SmartAI',`minlevel`=70,`maxlevel`=70,`exp`=2,`unit_class`=2,`unit_flags`=`unit_flags`|33554432,`flags_extra`=`flags_extra`|128 WHERE `entry`=@ENTRY; +DELETE FROM `smart_scripts` WHERE `entryorguid`=@ENTRY; +INSERT INTO `smart_scripts` (`entryorguid`,`source_type`,`id`,`link`,`event_type`,`event_phase_mask`,`event_chance`,`event_flags`,`event_param1`,`event_param2`,`event_param3`, `event_param4`,`action_type`,`action_param1`,`action_param2`,`action_param3`,`action_param4`,`action_param5`,`action_param6`, `target_type`,`target_param1`,`target_param2`,`target_param3`,`target_x`,`target_y`,`target_z`,`target_o`,`comment`) VALUES +(@ENTRY,0,0,1,8,0,100,1,@SPELL_PANTS,0,0,0,45,1,1,0,0,0,0,19,36856,0,0,0,0,0,0,"Wants Pants - On Spellhit - Set Data Shandy Glossgleam"), +(@ENTRY,0,1,0,61,0,100,0,0,0,0,0,45,2,2,0,0,0,0,19,36851,0,0,0,0,0,0,"Wants Pants - On Spellhit - Set Data Aquanos"); + +-- Wants Unmentionables SAI +SET @ENTRY := 36946; +SET @SPELL_UNMENTIONABLES := 69601; +UPDATE `creature_template` SET `AIName`='SmartAI',`minlevel`=70,`maxlevel`=70,`exp`=2,`unit_class`=2,`unit_flags`=`unit_flags`|33554432,`flags_extra`=`flags_extra`|128 WHERE `entry`=@ENTRY; +DELETE FROM `smart_scripts` WHERE `entryorguid`=@ENTRY; +INSERT INTO `smart_scripts` (`entryorguid`,`source_type`,`id`,`link`,`event_type`,`event_phase_mask`,`event_chance`,`event_flags`,`event_param1`,`event_param2`,`event_param3`, `event_param4`,`action_type`,`action_param1`,`action_param2`,`action_param3`,`action_param4`,`action_param5`,`action_param6`, `target_type`,`target_param1`,`target_param2`,`target_param3`,`target_x`,`target_y`,`target_z`,`target_o`,`comment`) VALUES +(@ENTRY,0,0,1,8,0,100,1,@SPELL_UNMENTIONABLES,0,0,0,45,1,1,0,0,0,0,19,36856,0,0,0,0,0,0,"Wants Unmentionables - On Spellhit - Set Data Shandy Glossgleam"), +(@ENTRY,0,1,0,61,0,100,0,0,0,0,0,45,2,2,0,0,0,0,19,36851,0,0,0,0,0,0,"Wants Unmentionables - On Spellhit - Set Data Aquanos"); + +-- Wants Shirts SAI +SET @ENTRY := 36944; +SET @SPELL_SHIRT := 69593; +UPDATE `creature_template` SET `AIName`='SmartAI',`minlevel`=70,`maxlevel`=70,`exp`=2,`unit_class`=2,`unit_flags`=`unit_flags`|33554432,`flags_extra`=`flags_extra`|128 WHERE `entry`=@ENTRY; +DELETE FROM `smart_scripts` WHERE `entryorguid`=@ENTRY; +INSERT INTO `smart_scripts` (`entryorguid`,`source_type`,`id`,`link`,`event_type`,`event_phase_mask`,`event_chance`,`event_flags`,`event_param1`,`event_param2`,`event_param3`, `event_param4`,`action_type`,`action_param1`,`action_param2`,`action_param3`,`action_param4`,`action_param5`,`action_param6`, `target_type`,`target_param1`,`target_param2`,`target_param3`,`target_x`,`target_y`,`target_z`,`target_o`,`comment`) VALUES +(@ENTRY,0,0,1,8,0,100,1,@SPELL_SHIRT,0,0,0,45,1,1,0,0,0,0,19,36856,0,0,0,0,0,0,"Wants Shirts - On Spellhit - Set Data Shandy Glossgleam"), +(@ENTRY,0,1,0,61,0,100,0,0,0,0,0,45,2,2,0,0,0,0,19,36851,0,0,0,0,0,0,"Wants Shirts - On Spellhit - Set Data Aquanos"); + +-- The conditions are made this way because the PLAYER should throw the 'item'. (water, shirt, pant, etc.) Basically when you click the object it casts a trigger spell on you. This trigger spell can only target players and will make the player cast 'Toss XX', which has direct conditions to one of the Wants XX imps. +DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId`=13 AND `SourceEntry` IN (69593,69600,69601,69614,69548,69542,69544,69543); +INSERT INTO `conditions` (`SourceTypeOrReferenceId`,`SourceGroup`,`SourceEntry`,`ConditionTypeOrReference`,`ConditionValue1`,`ConditionValue2`,`comment`) VALUES +(13,1,69593,31,3,36944, 'Toss Shirts requires target Wants Shirts'), +(13,1,69600,31,3,36945, 'Toss Pants requires target Wants Pants'), +(13,1,69601,31,3,36946, 'Toss Unmentionables requires target Wants Unmentionables'), +(13,1,69614,31,3,36947, 'Toss Water requires target Wants Water'), +-- other conditions are unneeded, and having them causes problems. +-- These are erroring still, but the quest works with this change: +(13,1,69548,32,128,0,'Trigger Throw Water requires target player'), +(13,1,69542,32,128,0,'Trigger Throw Pants requires target player'), +(13,1,69544,32,128,0,'Trigger Throw Unmentionables requires target player'), +(13,1,69543,32,128,0,'Trigger Throw Shirt requires target player'); + +-- Waypoints +DELETE FROM `waypoints` WHERE `entry`=36856; +INSERT INTO `waypoints` (`entry`, `pointid`, `position_x`, `position_y`, `position_z`, `point_comment`) VALUES +(36856, 1, 5800.057, 691.5624, 658.0007, 'Shandy Glossgleam WP 1'), +(36856, 2, 5802.057, 691.5624, 658.0007, 'Shandy Glossgleam WP 2'), +(36856, 3, 5802.307, 690.0624, 658.0007, 'Shandy Glossgleam WP 3'), +(36856, 4, 5802.557, 688.8124, 658.0007, 'Shandy Glossgleam WP 4'), +(36856, 5, 5802.824, 688.4631, 657.9935, 'Shandy Glossgleam WP 5'), +(36856, 6, 5803.074, 686.4631, 658.2435, 'Shandy Glossgleam WP 6'), +(36856, 7, 5803.574, 681.9631, 658.2435, 'Shandy Glossgleam WP 7'), +(36856, 8, 5804.324, 677.7131, 658.2435, 'Shandy Glossgleam WP 8'), +(36856, 9, 5804.842, 673.8136, 658.0798, 'Shandy Glossgleam WP 9'), +(36856, 10, 5802.092, 671.8136, 658.3298, 'Shandy Glossgleam WP 10'), +(36856, 11, 5801.806, 671.6563, 658.1652, 'Shandy Glossgleam WP 11'), +(36856, 12, 5801.306, 671.1563, 658.1652, 'Shandy Glossgleam WP 12'), +(36856, 13, 5800.306, 671.9063, 658.4152, 'Shandy Glossgleam WP 13'), +(36856, 14, 5799.306, 672.9063, 657.4152, 'Shandy Glossgleam WP 14'), +(36856, 15, 5798.056, 673.4063, 656.4152, 'Shandy Glossgleam WP 15'), +(36856, 16, 5795.953, 674.7413, 654.7663, 'Shandy Glossgleam WP 16 - Despawn'); diff --git a/sql/updates/world/2014_06_26_01_world_misc.sql b/sql/updates/world/2014_06_26_01_world_misc.sql new file mode 100644 index 00000000000..aea1adbf3ce --- /dev/null +++ b/sql/updates/world/2014_06_26_01_world_misc.sql @@ -0,0 +1,102 @@ +-- A lot of missing spawns. Objects and creatures +SET @CGUID := 134649; -- 34 needed +SET @OGUID := 59171; -- 21 needed +SET @EVENT := 24; +-- Berfest Reveler +DELETE FROM `creature` WHERE `guid` BETWEEN @CGUID+0 AND @CGUID+33; +INSERT INTO `creature` (`guid`,`id`,`map`,`spawnMask`,`phaseMask`,`modelid`,`equipment_id`,`position_x`,`position_y`,`position_z`,`orientation`,`spawntimesecs`,`spawndist`,`currentwaypoint`,`curhealth`,`curmana`,`MovementType`,`npcflag`,`unit_flags`,`dynamicflags`) VALUES +-- Barleybrew Apprentice <Barleybrew Brew Vendor> +(@CGUID+0,23482,530,1,1,22395,0,-4016.6,-11833,0.106771,4.04165,300,0,0,2215,0,0,0,0,0), +-- Brewfest Reveler - Exodar +(@CGUID+1,24484,530,1,1,21843,86,-4004.32,-11859.4,0.177081,0.860784,300,0,0,2215,0,0,0,0,0), +(@CGUID+2,24484,530,1,1,21844,86,-4001.38,-11855.2,0.211436,4.18773,300,0,0,2215,0,0,0,0,0), +(@CGUID+3,24484,530,1,1,21843,86,-4010.47,-11852.8,0.118782,4.25763,300,0,0,2215,0,0,0,0,0), +(@CGUID+4,24484,530,1,1,21842,86,-4009.89,-11854.7,0.121793,3.64502,300,0,0,2215,0,0,0,0,0), +(@CGUID+5,24484,530,1,1,21844,86,-4012.09,-11839.5,0.131949,0.507355,300,0,0,2215,0,0,0,0,0), +(@CGUID+6,24484,530,1,1,21845,86,-4005.04,-11840.8,0.203372,2.26665,300,0,0,2215,0,0,0,0,0), +(@CGUID+7,24484,530,1,1,21842,86,-4017.34,-11851.2,0.047381,1.00608,300,0,0,2215,0,0,0,0,0), +(@CGUID+8,24484,530,1,1,21845,86,-4013.17,-11842.1,0.114192,4.16731,300,0,0,2215,0,0,0,0,0), +(@CGUID+9,24484,530,1,1,21844,86,-4012.1,-11847.4,0.111304,2.65935,300,0,0,2215,0,0,0,0,0), +(@CGUID+10,24484,530,1,1,21843,86,-4017.5,-11845,0.0595054,5.9266,300,0,0,2215,0,0,0,0,0), +-- Brewfest Reveler - Eversong Woods +(@CGUID+11,24484,530,1,1,21841,86,9318.1,-7278.19,13.3383,0.709729,300,0,0,2215,0,0,0,0,0), +(@CGUID+12,24484,530,1,1,21838,86,9318.04,-7274.55,13.3571,5.13466,300,0,0,2215,0,0,0,0,0), +(@CGUID+13,24484,530,1,1,21840,86,9322.69,-7278.57,13.2085,3.03844,300,0,0,2215,0,0,0,0,0), +(@CGUID+14,24484,530,1,1,21839,86,9323.46,-7274.86,13.2653,3.31333,300,0,0,2215,0,0,0,0,0), +(@CGUID+15,24484,530,1,1,21840,86,9333.88,-7275.82,13.514,5.39384,300,0,0,2215,0,0,0,0,0), +(@CGUID+16,24484,530,1,1,21841,86,9335.93,-7281.15,13.695,2.03234,300,0,0,2215,0,0,0,0,0), +(@CGUID+17,24484,530,1,1,21838,86,9340.67,-7275.46,14.0555,4.97837,300,0,0,2215,0,0,0,0,0), +(@CGUID+18,24484,530,1,1,21839,86,9343.15,-7280.24,14.3778,2.35828,300,0,0,2215,0,0,0,0,0), +(@CGUID+19,24484,530,1,1,21840,86,9334.47,-7296.27,13.7759,3.58271,300,0,0,2215,0,0,0,0,0), +(@CGUID+20,24484,530,1,1,21839,86,9329.98,-7295.05,13.7486,5.6758,300,0,0,2215,0,0,0,0,0), +(@CGUID+21,24484,530,1,1,21841,86,9340.93,-7269.42,14.5058,0.837748,300,0,0,2215,0,0,0,0,0), +-- Troll Commoner +(@CGUID+22,19177,1,1,1,21876,0,1748.94,-4497.53,28.793,5.47104,300,0,0,42,0,0,0,0,0), +(@CGUID+23,19177,1,1,1,21877,0,1752.58,-4499.43,28.2911,2.89886,300,0,0,42,0,0,0,0,0), +-- Orc Commoner +(@CGUID+24,19175,1,1,1,21868,0,1609.47,-4323.21,2.33176,3.34811,300,0,0,42,0,0,0,0,0), +(@CGUID+25,19175,1,1,1,21869,0,1605.95,-4324.2,2.19915,0.0101724,300,0,0,42,0,0,0,0,0), +-- Gnome Commoner +(@CGUID+26,19172,0,1,1,21850,0,-4831.74,-1172.58,502.278,6.19592,2,0,0,42,0,0,3,0,0), +(@CGUID+27,19172,0,1,1,21853,0,-4829.88,-1173.25,502.277,2.49582,2,0,0,42,0,0,3,0,0), +-- Bok Dropcertain +(@CGUID+28,24527,1,1,1,0,0,795.14,-4522.59,6.31052,5.20636,300,0,0,1004,0,0,0,0,0), +-- Drohn's Distillery Apprentice +(@CGUID+29,24501,530,1,1,22491,0,9333.7,-7269.67,13.7715,4.52047,300,0,0,2215,0,0,0,0,0), +-- Gordok Brew Apprentice <Gordok Brew Vendor> +(@CGUID+30,23511,530,1,1,0,0,-4020.13,-11855.6,0.0061873,1.0273,300,0,0,2215,0,0,0,0,0), +(@CGUID+31,23511,530,1,1,0,0,9313.83,-7281.3,13.8523,0.903714,300,0,0,2215,0,0,0,0,0), +-- T'chali's Voodoo Brewery Apprentice <Voodoo Brew Vendor> +(@CGUID+32,23533,530,1,1,22493,0,9330.11,-7285.87,13.7137,1.37103,300,0,0,2215,0,0,0,0,0), +-- Thunderbrew Apprentice +(@CGUID+33,23510,530,1,1,0,0,-4021.3,-11842.9,0.0212859,5.9439,300,0,0,2215,0,0,0,0,0); + +-- Make the above spawns only happen if Brewfest is active +DELETE FROM `game_event_creature` WHERE `guid` BETWEEN @CGUID+0 AND @CGUID+33; +INSERT INTO `game_event_creature` (`eventEntry`,`guid`) VALUES +(@EVENT,@CGUID+0),(@EVENT,@CGUID+1),(@EVENT,@CGUID+2),(@EVENT,@CGUID+3), +(@EVENT,@CGUID+4),(@EVENT,@CGUID+5),(@EVENT,@CGUID+6),(@EVENT,@CGUID+7), +(@EVENT,@CGUID+8),(@EVENT,@CGUID+9),(@EVENT,@CGUID+10),(@EVENT,@CGUID+11), +(@EVENT,@CGUID+12),(@EVENT,@CGUID+13),(@EVENT,@CGUID+14),(@EVENT,@CGUID+15), +(@EVENT,@CGUID+16),(@EVENT,@CGUID+17),(@EVENT,@CGUID+18),(@EVENT,@CGUID+19), +(@EVENT,@CGUID+20),(@EVENT,@CGUID+21),(@EVENT,@CGUID+22),(@EVENT,@CGUID+23), +(@EVENT,@CGUID+24),(@EVENT,@CGUID+25),(@EVENT,@CGUID+26),(@EVENT,@CGUID+27), +(@EVENT,@CGUID+28),(@EVENT,@CGUID+29),(@EVENT,@CGUID+30),(@EVENT,@CGUID+31), +(@EVENT,@CGUID+32),(@EVENT,@CGUID+33); + +DELETE FROM `gameobject` WHERE `guid` BETWEEN @OGUID+0 AND @OGUID+20; +INSERT INTO `gameobject` (`guid`,`id`,`map`,`spawnMask`,`phaseMask`,`position_x`,`position_y`,`position_z`,`orientation`,`rotation0`,`rotation1`,`rotation2`,`rotation3`,`spawntimesecs`,`animprogress`,`state`) VALUES +-- Exodar +(@OGUID+0,178666,530,1,1,-4015.97,-11829.2,0.146814,2.80549,0,0,0.985913,0.167262,300,0,1), +(@OGUID+1,178666,530,1,1,-4024.94,-11840.7,-0.0137537,4.17208,0,0,0.870173,-0.492747,300,0,1), +(@OGUID+2,186259,530,1,1,-4029.42,-11849.1,-0.0817791,3.05053,0,0,0.998964,0.0455147,300,0,1), +(@OGUID+3,186260,530,1,1,-4008.1,-11835.5,0.186614,1.27632,0,0,0.595718,0.803194,300,0,1), +(@OGUID+4,186257,530,1,1,-4016.1,-11859.2,0.0441619,4.26476,0,0,0.846413,-0.532527,300,0,1), +(@OGUID+5,186221,530,1,1,-4008.42,-11850.7,0.144533,2.04601,0,0,0.853677,0.520803,300,0,1), +(@OGUID+6,186717,530,1,1,-4008.29,-11857.1,0.135722,5.47893,0,0,0.391378,-0.92023,300,0,1), +(@OGUID+7,186717,530,1,1,-4002.56,-11851,0.205429,5.13728,0,0,0.542116,-0.840304,300,0,1), +-- Darnassus +(@OGUID+8,186717,1,1,1,9962.87,2218.32,1329.82,1.77101,0,0,0.774236,0.632897,300,0,1), +(@OGUID+9,186717,1,1,1,9963.64,2192.59,1328.52,4.74374,0,0,0.695937,-0.718103,300,0,1), +-- Eversong Woods +(@OGUID+10,178666,530,1,1,9333.24,-7265.71,13.7149,3.15074,0,0,0.99999,-0.00457361,300,0,1), +(@OGUID+11,178666,530,1,1,9330.88,-7289.79,13.7388,0.18586,0,0,0.0927961,0.995685,300,0,1), +(@OGUID+12,186717,530,1,1,9319.23,-7265.19,13.7578,2.02761,0,0,0.84885,0.528633,300,0,1), +(@OGUID+13,186717,530,1,1,9310.25,-7291.41,14.4908,2.53027,0,0,0.953648,0.300923,300,0,1), +(@OGUID+14,186221,530,1,1,9318.17,-7291.17,14.4236,0.649241,0,0,0.318949,0.947772,300,0,1), +(@OGUID+15,186257,530,1,1,9318.61,-7289.66,14.436,0.782759,0,0,0.381464,0.924384,300,0,1), +(@OGUID+16,186256,530,1,1,9341.19,-7288.21,14.3979,4.71368,0,0,0.70665,-0.707563,300,0,1), +(@OGUID+17,186255,530,1,1,9343.07,-7265.55,14.691,1.48569,0,0,0.676387,0.736546,300,0,1), +(@OGUID+18,180037,530,1,1,9316.77,-7283.36,13.7084,3.63768,0,0,0.969394,-0.24551,300,0,1), +(@OGUID+19,180037,530,1,1,9313.62,-7285.06,13.9541,3.38636,0,0,0.992521,-0.122077,300,0,1), +(@OGUID+20,180037,530,1,1,9308.97,-7280.39,14.447,5.40091,0,0,0.426971,-0.904265,300,0,1); + +-- Make the above game objects only spawn if Brewfest is active +DELETE FROM `game_event_gameobject` WHERE `guid` BETWEEN @OGUID+0 AND @OGUID+20; +INSERT INTO `game_event_gameobject` (`eventEntry`,`guid`) VALUES +(@EVENT,@OGUID+0),(@EVENT,@OGUID+1),(@EVENT,@OGUID+2),(@EVENT,@OGUID+3), +(@EVENT,@OGUID+4),(@EVENT,@OGUID+5),(@EVENT,@OGUID+6),(@EVENT,@OGUID+7), +(@EVENT,@OGUID+8),(@EVENT,@OGUID+9),(@EVENT,@OGUID+10),(@EVENT,@OGUID+11), +(@EVENT,@OGUID+12),(@EVENT,@OGUID+13),(@EVENT,@OGUID+14),(@EVENT,@OGUID+15), +(@EVENT,@OGUID+16),(@EVENT,@OGUID+17),(@EVENT,@OGUID+18),(@EVENT,@OGUID+19), +(@EVENT,@OGUID+20); diff --git a/sql/updates/world/2014_06_26_02_world_misc.sql b/sql/updates/world/2014_06_26_02_world_misc.sql new file mode 100644 index 00000000000..dade11c549d --- /dev/null +++ b/sql/updates/world/2014_06_26_02_world_misc.sql @@ -0,0 +1,7 @@ +-- Pure Energy +SET @ENTRY := 24745; +UPDATE `creature_template` SET `flags_extra`=0 WHERE `entry`=@ENTRY; + +DELETE FROM `creature_template_addon` WHERE `entry`=@ENTRY; +INSERT INTO `creature_template_addon` (`entry`, `mount`, `bytes1`, `bytes2`, `auras`) VALUES +(@ENTRY, 0, 0x0, 0x0, '44326 46156'); diff --git a/sql/updates/world/2014_06_27_00_world_misc.sql b/sql/updates/world/2014_06_27_00_world_misc.sql new file mode 100644 index 00000000000..275ecbbf4a0 --- /dev/null +++ b/sql/updates/world/2014_06_27_00_world_misc.sql @@ -0,0 +1,4 @@ +-- +UPDATE `creature` SET `equipment_id`=0 WHERE `equipment_id`=86 AND `id`=24484; +DELETE FROM `creature_addon` WHERE `guid`=97892; +UPDATE `smart_scripts` SET `link`=0 WHERE `entryorguid`=-126866 AND `source_type`=0 AND `id` IN (7,15); diff --git a/sql/updates/world/2014_06_27_00_world_smart_scripts.sql b/sql/updates/world/2014_06_27_00_world_smart_scripts.sql new file mode 100644 index 00000000000..e1340a68a62 --- /dev/null +++ b/sql/updates/world/2014_06_27_00_world_smart_scripts.sql @@ -0,0 +1,8 @@ +-- +UPDATE `smart_scripts` SET `target_type`=1 WHERE `entryorguid`=27899 AND `source_type`=0 AND `id`=25 AND `link`=0; +UPDATE `smart_scripts` SET `target_type`=1 WHERE `entryorguid`=25773 AND `source_type`=0 AND `id`=2 AND `link`=0; +UPDATE `smart_scripts` SET `target_type`=1 WHERE `entryorguid`=30135 AND `source_type`=0 AND `id`=2 AND `link`=0; +UPDATE `smart_scripts` SET `target_type`=1 WHERE `entryorguid`=29974 AND `source_type`=0 AND `id`=2 AND `link`=0; +UPDATE `smart_scripts` SET `target_type`=1 WHERE `entryorguid`=17299 AND `source_type`=0 AND `id`=0 AND `link`=0; +UPDATE `smart_scripts` SET `target_type`=1 WHERE `entryorguid`=2719901 AND `source_type`=9 AND `id`=7 AND `link`=0; +UPDATE `smart_scripts` SET `target_type`=1 WHERE `entryorguid`=30144 AND `source_type`=0 AND `id`=2 AND `link`=0; diff --git a/sql/updates/world/2014_06_28_00_world_misc.sql b/sql/updates/world/2014_06_28_00_world_misc.sql new file mode 100644 index 00000000000..a960642b8fb --- /dev/null +++ b/sql/updates/world/2014_06_28_00_world_misc.sql @@ -0,0 +1,7 @@ +-- +SET @CGUID:= 43496; +DELETE FROM `game_graveyard_zone` WHERE `id`=2; +INSERT INTO `game_graveyard_zone` (`id`, `ghost_zone`, `faction`) VALUES (2, 44, 469); + +INSERT INTO `creature` (`guid`,`id`,`map`,`spawnMask`,`phaseMask`,`position_x`,`position_y`,`position_z`,`orientation`,`spawntimesecs`,`spawndist`,`currentwaypoint`) VALUES +(@CGUID, 6491, 0, 1, 1, -9190.865, -2308.829, 89.63705, 4.13643, 120, 0, 0); -- 6491 (Area: 44) diff --git a/sql/updates/world/2014_06_28_00_world_smart_scripts.sql b/sql/updates/world/2014_06_28_00_world_smart_scripts.sql new file mode 100644 index 00000000000..96ac504bc09 --- /dev/null +++ b/sql/updates/world/2014_06_28_00_world_smart_scripts.sql @@ -0,0 +1,3 @@ +-- +UPDATE `smart_scripts` SET `link`=0 WHERE `entryorguid`=27245 AND `source_type`=0 AND `id`=2 AND `link`=3; +UPDATE `smart_scripts` SET `link`=0 WHERE `entryorguid`=4987 AND `source_type`=2 AND `id`=0 AND `link`=1; diff --git a/sql/updates/world/2014_06_28_02_world_misc.sql b/sql/updates/world/2014_06_28_02_world_misc.sql new file mode 100644 index 00000000000..017116f41e3 --- /dev/null +++ b/sql/updates/world/2014_06_28_02_world_misc.sql @@ -0,0 +1,83 @@ +-- +SET @CGUID:= 78207; -- needs 8 + +DELETE FROM `vehicle_template_accessory` WHERE `entry` IN (31406,32513); +INSERT INTO `vehicle_template_accessory` (`entry`,`accessory_entry`,`seat_id`,`minion`,`description`,`summontype`,`summontimer`) VALUES +-- Alliance Bomber +(31406,31408,0,1,'Alliance Bomber Seat on Alliance Infra-green Bomber',8,0), +(31406,31407,1,1,'Alliance Turret Seat on Alliance Infra-green Bomber',8,0), +(31406,31409,2,1,'Alliance Engineering Seat on rides Alliance Infra-green Bomber',8,0), +(31406,32217,3,1,'Banner Bunny, Hanging, Alliance on Alliance Infra-green Bomber',8,0), +(31406,32221,4,1,'Banner Bunny, Side, Alliance on Alliance Infra-green Bomber',8,0), +(31406,32221,5,1,'Banner Bunny, Side, Alliance on Alliance Infra-green Bomber',8,0), +(31406,32256,6,1,'Shield Visual Loc Bunny on Alliance Infra-green Bomber',8,0), +(31406,32274,7,0,'Alliance Bomber Pilot rides Alliance Infra-green Bomber',6,300), +-- Horde Bomber +(32513,31856,0,1,'Horde Bomber Seat on Horde Infra-green Bomber',8,0), +(32513,31840,1,1,'Horde Turret Seat on Horde Infra-green Bomber',8,0), +(32513,32152,2,1,'Horde Engineering Seat on rides Horde Infra-green Bomber',8,0), +(32513,32214,3,1,'Banner Bunny, Hanging, Horde on Horde Infra-green Bomber',8,0), +(32513,32215,4,1,'Banner Bunny, Side, Horde on Horde Infra-green Bomber',8,0), +(32513,32215,5,1,'Banner Bunny, Side, Horde on Horde Infra-green Bomber',8,0), +(32513,32256,6,1,'Shield Visual Loc Bunny on Horde Infra-green Bomber',8,0), +(32513,32317,7,0,'Horde Bomber Pilot rides Horde Infra-green Bomber',6,300); + +DELETE FROM `npc_spellclick_spells` WHERE `npc_entry` IN (31406, 31408, 31407, 31409, 31856, 31840, 32152, 32513); +INSERT INTO `npc_spellclick_spells` (`npc_entry`,`spell_id`,`cast_flags`,`user_type`) VALUES +(31406,46598,1,0), +(31408,46598,1,0), +(31407,46598,1,0), +(31409,46598,1,0), +(31856,46598,1,0), +(31840,46598,1,0), +(32152,46598,1,0), +(32513,46598,1,0); + +DELETE FROM `gossip_menu_option` WHERE menu_id = 10120 AND id = 0; +DELETE FROM `gossip_menu_option` WHERE menu_id = 10119 AND id = 0; +INSERT INTO `gossip_menu_option` (`menu_id`,`id`,`option_icon`,`option_text`,`option_id`,`npc_option_npcflag`) VALUES +(10120,0,0,'Give me a bomber!',1,1), +(10119,0,0,'Give me a bomber!',1,1); + +DELETE FROM `conditions` WHERE `SourceTypeOrReferenceID`=15 AND `SourceGroup`=10120; +DELETE FROM `conditions` WHERE `SourceTypeOrReferenceID`=15 AND `SourceGroup`=10119; +INSERT INTO `conditions` (`SourceTypeOrReferenceId`,`SourceGroup`,`SourceEntry`,`ElseGroup`,`ConditionTypeOrReference`,`ConditionValue1`,`ConditionValue2`,`ConditionValue3`,`ErrorTextId`,`Comment`) VALUES +(15,10120,0,0,9,13373,0,0,0,'show gossip on quest 13373 taken'), +(15,10120,0,1,9,13374,0,0,0,'show gossip on quest 13374 taken'), +(15,10120,0,2,9,13376,0,0,0,'show gossip on quest 13376 taken'), +(15,10120,0,3,9,13406,0,0,0,'show gossip on quest 13406 taken'), +(15,10119,0,0,9,13381,0,0,0,'show gossip on quest 13381 taken'), +(15,10119,0,1,9,13404,0,0,0,'show gossip on quest 13404 taken'), +(15,10119,0,2,9,13380,0,0,0,'show gossip on quest 13380 taken'), +(15,10119,0,3,9,13382,0,0,0,'show gossip on quest 13382 taken'); + +UPDATE `creature_template` SET `AIName`= 'SmartAI' WHERE `entry` IN (31648,31839); +DELETE FROM `smart_scripts` WHERE `entryorguid` IN (31648,31839); +INSERT INTO `smart_scripts` (`entryorguid`, `source_type`, `id`, `link`, `event_type`, `event_phase_mask`, `event_chance`, `event_flags`, `event_param1`, `event_param2`, `event_param3`, `event_param4`, `action_type`, `action_param1`, `action_param2`, `action_param3`, `action_param4`, `action_param5`, `action_param6`, `target_type`, `target_param1`, `target_param2`, `target_param3`, `target_x`, `target_y`, `target_z`, `target_o`, `comment`) VALUES +(31648, 0, 0, 0, 62, 0,100,0, 10119, 0, 0, 0, 11, 59563, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 'Karen No - Gossip select - Cast Waiting for Bomber'), +(31839, 0, 0, 0, 62, 0,100,0, 10120, 0, 0, 0, 11, 59779, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 'Rizzy Ratchwiggle - Gossip select - Cast Waiting for Bomber'); + +UPDATE creature_template SET `spell1`=59059, `spell4`=59194, `spell5`=59196, `spell6`=59193 WHERE `entry` IN (31408, 31856); +UPDATE creature_template SET `spell1`=64979, `spell2`=61313, `spell4`=59194, `spell5`=59196, `spell6`=59193 WHERE `entry` IN (31407, 31840); +UPDATE creature_template SET `spell1`=59061, `spell2`=61171, `spell4`=59194, `spell5`=59196, `spell6`=59193 WHERE `entry` IN (31409, 32152); + +UPDATE creature_template SET `VehicleId`=273 WHERE `entry`=31406; +UPDATE creature_template SET `VehicleId`=274 WHERE `entry` IN (31408,31856); +UPDATE creature_template SET `VehicleId`=277 WHERE `entry` IN (31407,31840); +UPDATE creature_template SET `VehicleId`=278 WHERE `entry` IN (31409,32152); +UPDATE creature_template SET `VehicleId`=287 WHERE `entry`=32513; +UPDATE creature_template SET `Unit_flags`= 33554432, `unit_class`=8 WHERE `entry` IN (31407,31408,31409,31840,31856,32152); +UPDATE creature_template SET `npcflag`=16777216, `minlevel`=80, `maxlevel`=80 WHERE `entry` IN (31406,31407,31408,31409,31840,31856,32152,32513); + +UPDATE creature_template SET `InhabitType`=4 WHERE `entry` IN (32513,31406); + +DELETE FROM `creature` WHERE `id` IN (31648,32523,32524,32526,32525,31839,32529,32528); +INSERT INTO `creature` (`guid`,`id`,`map`,`spawnMask`,`phaseMask`,`equipment_id`,`position_x`,`position_y`,`position_z`,`orientation`,`spawntimesecs`) VALUES +(@CGUID+0, 31648, 571, 1, 1, 0, 7624.19, 2059.96, 600.26, 3.18997,300), +(@CGUID+1, 32523, 571, 1, 1, 1, 7637.56, 2057.34, 600.26, 2.9082,300), +(@CGUID+2, 32524, 571, 1, 1, 1, 7632.78, 2052.75, 600.26, 2.07206,300), +(@CGUID+3, 32526, 571, 1, 1, 0, 7626.84, 2069.71, 600.26, 2.85573,300), +(@CGUID+4, 32525, 571, 1, 1, 0, 7622.21, 2071.61, 600.26, 2.01916,300), +(@CGUID+5, 31839, 571, 1, 1, 0, 7891.96, 2057.73, 600.26, 6.10727,300), +(@CGUID+6, 32529, 571, 1, 1, 0, 7888.79, 2066.53, 600.26, 0.333032,300), +(@CGUID+7, 32528, 571, 1, 1, 0, 7893.77, 2067.97, 600.26, 1.02339,300); diff --git a/sql/updates/world/2014_06_28_03_world_misc.sql b/sql/updates/world/2014_06_28_03_world_misc.sql new file mode 100644 index 00000000000..bc591852817 --- /dev/null +++ b/sql/updates/world/2014_06_28_03_world_misc.sql @@ -0,0 +1,5 @@ +-- +INSERT INTO `conditions` (`SourceTypeOrReferenceId`, `SourceGroup`, `SourceEntry`, `ConditionTypeOrReference`, `ConditionValue1`, `ConditionValue2`, `Comment`) VALUES +(23, 30431, 44150, 5, 1106, 192, 'Arcanum of the stalwart protector - when Argent Crusade revered/exalted'), +(23, 30431, 50369, 5, 1106, 63, 'Arcanum of the stalwart protector - when Argent Crusade not revered/exalted'); +UPDATE `gossip_menu_option` SET `OptionBroadcastTextID`='32344' WHERE `menu_id` IN (10119,10120); |