aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--sql/base/world_database.sql28014
-rw-r--r--sql/scripts/world_script_texts.sql3234
-rw-r--r--sql/scripts/world_script_waypoints.sql2375
-rw-r--r--sql/scripts/world_scripts_full.sql2392
4 files changed, 0 insertions, 36015 deletions
diff --git a/sql/base/world_database.sql b/sql/base/world_database.sql
deleted file mode 100644
index 484651c6867..00000000000
--- a/sql/base/world_database.sql
+++ /dev/null
@@ -1,28014 +0,0 @@
--- Remove the following line to import this
-+++DO NOT IMPORT THIS UNLESS YOU WANT A *BLANK* DATABASE.+++
--- MySQL dump 10.13 Distrib 5.1.36, for redhat-linux-gnu (x86_64)
---
--- Host: localhost Database: world
--- ------------------------------------------------------
--- Server version 5.1.36
-
-/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
-/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
-/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
-/*!40101 SET NAMES utf8 */;
-/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
-/*!40103 SET TIME_ZONE='+00:00' */;
-/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
-/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
-/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
-/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
-
---
--- Table structure for table `access_requirement`
---
-
-DROP TABLE IF EXISTS `access_requirement`;
-/*!40101 SET @saved_cs_client = @@character_set_client */;
-/*!40101 SET character_set_client = utf8 */;
-CREATE TABLE `access_requirement` (
- `mapId` mediumint(8) unsigned NOT NULL,
- `difficulty` tinyint(3) unsigned NOT NULL DEFAULT '0',
- `level_min` tinyint(3) unsigned NOT NULL DEFAULT '0',
- `level_max` tinyint(3) unsigned NOT NULL DEFAULT '0',
- `item` mediumint(8) unsigned NOT NULL DEFAULT '0',
- `item2` mediumint(8) unsigned NOT NULL DEFAULT '0',
- `quest_done_A` mediumint(8) unsigned NOT NULL DEFAULT '0',
- `quest_done_H` mediumint(8) unsigned NOT NULL DEFAULT '0',
- `completed_achievement` mediumint(8) unsigned NOT NULL DEFAULT '0',
- `quest_failed_text` text,
- `comment` text,
- PRIMARY KEY (`mapId`,`difficulty`)
-) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=DYNAMIC COMMENT='Access Requirements';
-/*!40101 SET character_set_client = @saved_cs_client */;
-
---
--- Dumping data for table `access_requirement`
---
-
-LOCK TABLES `access_requirement` WRITE;
-/*!40000 ALTER TABLE `access_requirement` DISABLE KEYS */;
-/*!40000 ALTER TABLE `access_requirement` ENABLE KEYS */;
-UNLOCK TABLES;
-
---
--- Table structure for table `achievement_criteria_data`
---
-
-DROP TABLE IF EXISTS `achievement_criteria_data`;
-/*!40101 SET @saved_cs_client = @@character_set_client */;
-/*!40101 SET character_set_client = utf8 */;
-CREATE TABLE `achievement_criteria_data` (
- `criteria_id` mediumint(8) NOT NULL,
- `type` tinyint(3) unsigned NOT NULL DEFAULT '0',
- `value1` mediumint(8) unsigned NOT NULL DEFAULT '0',
- `value2` mediumint(8) unsigned NOT NULL DEFAULT '0',
- `ScriptName` char(64) NOT NULL DEFAULT '',
- PRIMARY KEY (`criteria_id`,`type`)
-) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Achievment system';
-/*!40101 SET character_set_client = @saved_cs_client */;
-
---
--- Dumping data for table `achievement_criteria_data`
---
-
-LOCK TABLES `achievement_criteria_data` WRITE;
-/*!40000 ALTER TABLE `achievement_criteria_data` DISABLE KEYS */;
-/*!40000 ALTER TABLE `achievement_criteria_data` ENABLE KEYS */;
-UNLOCK TABLES;
-
---
--- Table structure for table `achievement_dbc`
---
-
-DROP TABLE IF EXISTS `achievement_dbc`;
-/*!40101 SET @saved_cs_client = @@character_set_client */;
-/*!40101 SET character_set_client = utf8 */;
-CREATE TABLE `achievement_dbc` (
- `ID` int(10) unsigned NOT NULL,
- `requiredFaction` int(11) NOT NULL DEFAULT '-1',
- `mapID` int(11) NOT NULL DEFAULT '-1',
- `points` int(10) unsigned NOT NULL DEFAULT '0',
- `flags` int(10) unsigned NOT NULL DEFAULT '0',
- `count` int(10) unsigned NOT NULL DEFAULT '0',
- `refAchievement` int(10) unsigned NOT NULL DEFAULT '0',
- PRIMARY KEY (`ID`)
-) ENGINE=InnoDB DEFAULT CHARSET=utf8;
-/*!40101 SET character_set_client = @saved_cs_client */;
-
---
--- Dumping data for table `achievement_dbc`
---
-
-LOCK TABLES `achievement_dbc` WRITE;
-/*!40000 ALTER TABLE `achievement_dbc` DISABLE KEYS */;
-INSERT INTO `achievement_dbc` VALUES
-(3696,-1,-1,0,2,1,0), -- Earned the right to represent a city in the Argent Tournament
-(4788,-1,-1,0,2,1,0), -- Is exalted with The Aldor or has any of exalted rewards
-(4789,-1,-1,0,2,1,0); -- Is exalted with The Scryers or has any of exalted rewards
-/*!40000 ALTER TABLE `achievement_dbc` ENABLE KEYS */;
-UNLOCK TABLES;
-
---
--- Table structure for table `achievement_reward`
---
-
-DROP TABLE IF EXISTS `achievement_reward`;
-/*!40101 SET @saved_cs_client = @@character_set_client */;
-/*!40101 SET character_set_client = utf8 */;
-CREATE TABLE `achievement_reward` (
- `entry` mediumint(8) unsigned NOT NULL DEFAULT '0',
- `title_A` mediumint(8) unsigned NOT NULL DEFAULT '0',
- `title_H` mediumint(8) unsigned NOT NULL DEFAULT '0',
- `item` mediumint(8) unsigned NOT NULL DEFAULT '0',
- `sender` mediumint(8) unsigned NOT NULL DEFAULT '0',
- `subject` varchar(255) DEFAULT NULL,
- `text` text,
- PRIMARY KEY (`entry`)
-) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Loot System';
-/*!40101 SET character_set_client = @saved_cs_client */;
-
---
--- Dumping data for table `achievement_reward`
---
-
-LOCK TABLES `achievement_reward` WRITE;
-/*!40000 ALTER TABLE `achievement_reward` DISABLE KEYS */;
-/*!40000 ALTER TABLE `achievement_reward` ENABLE KEYS */;
-UNLOCK TABLES;
-
---
--- Table structure for table `areatrigger_involvedrelation`
---
-
-DROP TABLE IF EXISTS `areatrigger_involvedrelation`;
-/*!40101 SET @saved_cs_client = @@character_set_client */;
-/*!40101 SET character_set_client = utf8 */;
-CREATE TABLE `areatrigger_involvedrelation` (
- `id` mediumint(8) unsigned NOT NULL DEFAULT '0' COMMENT 'Identifier',
- `quest` mediumint(8) unsigned NOT NULL DEFAULT '0' COMMENT 'Quest Identifier',
- PRIMARY KEY (`id`)
-) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Trigger System';
-/*!40101 SET character_set_client = @saved_cs_client */;
-
---
--- Dumping data for table `areatrigger_involvedrelation`
---
-
-LOCK TABLES `areatrigger_involvedrelation` WRITE;
-/*!40000 ALTER TABLE `areatrigger_involvedrelation` DISABLE KEYS */;
-/*!40000 ALTER TABLE `areatrigger_involvedrelation` ENABLE KEYS */;
-UNLOCK TABLES;
-
---
--- Table structure for table `areatrigger_scripts`
---
-
-DROP TABLE IF EXISTS `areatrigger_scripts`;
-/*!40101 SET @saved_cs_client = @@character_set_client */;
-/*!40101 SET character_set_client = utf8 */;
-CREATE TABLE `areatrigger_scripts` (
- `entry` mediumint(8) NOT NULL,
- `ScriptName` char(64) NOT NULL,
- PRIMARY KEY (`entry`)
-) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-/*!40101 SET character_set_client = @saved_cs_client */;
-
---
--- Dumping data for table `areatrigger_scripts`
---
-
-LOCK TABLES `areatrigger_scripts` WRITE;
-/*!40000 ALTER TABLE `areatrigger_scripts` DISABLE KEYS */;
-/*!40000 ALTER TABLE `areatrigger_scripts` ENABLE KEYS */;
-UNLOCK TABLES;
-
---
--- Table structure for table `areatrigger_tavern`
---
-
-DROP TABLE IF EXISTS `areatrigger_tavern`;
-/*!40101 SET @saved_cs_client = @@character_set_client */;
-/*!40101 SET character_set_client = utf8 */;
-CREATE TABLE `areatrigger_tavern` (
- `id` mediumint(8) unsigned NOT NULL DEFAULT '0' COMMENT 'Identifier',
- `name` text,
- PRIMARY KEY (`id`)
-) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Trigger System';
-/*!40101 SET character_set_client = @saved_cs_client */;
-
---
--- Dumping data for table `areatrigger_tavern`
---
-
-LOCK TABLES `areatrigger_tavern` WRITE;
-/*!40000 ALTER TABLE `areatrigger_tavern` DISABLE KEYS */;
-/*!40000 ALTER TABLE `areatrigger_tavern` ENABLE KEYS */;
-UNLOCK TABLES;
-
---
--- Table structure for table `areatrigger_teleport`
---
-
-DROP TABLE IF EXISTS `areatrigger_teleport`;
-/*!40101 SET @saved_cs_client = @@character_set_client */;
-/*!40101 SET character_set_client = utf8 */;
-CREATE TABLE `areatrigger_teleport` (
- `id` mediumint(8) unsigned NOT NULL DEFAULT '0' COMMENT 'Identifier',
- `name` text,
- `target_map` smallint(5) unsigned NOT NULL DEFAULT '0',
- `target_position_x` float NOT NULL DEFAULT '0',
- `target_position_y` float NOT NULL DEFAULT '0',
- `target_position_z` float NOT NULL DEFAULT '0',
- `target_orientation` float NOT NULL DEFAULT '0',
- PRIMARY KEY (`id`),
- FULLTEXT KEY `name` (`name`)
-) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Trigger System';
-/*!40101 SET character_set_client = @saved_cs_client */;
-
---
--- Dumping data for table `areatrigger_teleport`
---
-
-LOCK TABLES `areatrigger_teleport` WRITE;
-/*!40000 ALTER TABLE `areatrigger_teleport` DISABLE KEYS */;
-/*!40000 ALTER TABLE `areatrigger_teleport` ENABLE KEYS */;
-UNLOCK TABLES;
-
---
--- Table structure for table `autobroadcast`
---
-
-DROP TABLE IF EXISTS `autobroadcast`;
-/*!40101 SET @saved_cs_client = @@character_set_client */;
-/*!40101 SET character_set_client = utf8 */;
-CREATE TABLE `autobroadcast` (
- `id` int(11) NOT NULL AUTO_INCREMENT,
- `text` longtext NOT NULL,
- PRIMARY KEY (`id`)
-) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-/*!40101 SET character_set_client = @saved_cs_client */;
-
---
--- Dumping data for table `autobroadcast`
---
-
-LOCK TABLES `autobroadcast` WRITE;
-/*!40000 ALTER TABLE `autobroadcast` DISABLE KEYS */;
-/*!40000 ALTER TABLE `autobroadcast` ENABLE KEYS */;
-UNLOCK TABLES;
-
---
--- Table structure for table `battleground_template`
---
-
-DROP TABLE IF EXISTS `battleground_template`;
-/*!40101 SET @saved_cs_client = @@character_set_client */;
-/*!40101 SET character_set_client = utf8 */;
-CREATE TABLE `battleground_template` (
- `id` mediumint(8) unsigned NOT NULL,
- `MinPlayersPerTeam` smallint(5) unsigned NOT NULL DEFAULT '0',
- `MaxPlayersPerTeam` smallint(5) unsigned NOT NULL DEFAULT '0',
- `MinLvl` tinyint(3) unsigned NOT NULL DEFAULT '0',
- `MaxLvl` tinyint(3) unsigned NOT NULL DEFAULT '0',
- `AllianceStartLoc` mediumint(8) unsigned NOT NULL,
- `AllianceStartO` float NOT NULL,
- `HordeStartLoc` mediumint(8) unsigned NOT NULL,
- `HordeStartO` float NOT NULL,
- `Weight` tinyint(2) unsigned NOT NULL DEFAULT 1,
- `ScriptName` char(64) NOT NULL DEFAULT '',
- `Comment` char(32) NOT NULL,
- PRIMARY KEY (`id`)
-) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-/*!40101 SET character_set_client = @saved_cs_client */;
-
---
--- Dumping data for table `battleground_template`
---
-
-LOCK TABLES `battleground_template` WRITE;
-/*!40000 ALTER TABLE `battleground_template` DISABLE KEYS */;
-INSERT INTO `battleground_template` (`id`,`MinPlayersPerTeam`,`MaxPlayersPerTeam`,`MinLvl`,`MaxLvl`,`AllianceStartLoc`,`AllianceStartO`,`HordeStartLoc`,`HordeStartO`, `Weight`, `Comment`) VALUES
-(1,20,40,51,80,611,2.72532,610,2.27452,1,'Alterac Valley'),
-(2,5,10,10,80,769,3.14159,770,3.14159,1,'Warsong Gulch'),
-(3,8,15,20,80,890,3.40156,889,0.263892,1,'Arathi Basin'),
-(4,0,2,10,80,929,0,936,3.14159,1,'Nagrand Arena'),
-(5,0,2,10,80,939,0,940,3.14159,1,'Blades''s Edge Arena'),
-(6,0,2,10,80,0,0,0,0,1,'All Arena'),
-(7,8,15,61,80,1103,3.40156,1104,0.263892,1,'Eye of The Storm'),
-(8,0,2,10,80,1258,0,1259,3.14159,1,'Ruins of Lordaeron'),
-(9,7,15,71,80,1367,0,1368,0,1,'Strand of the Ancients'),
-(10,5,5,10,80,1362,0,1363,0,1,'Dalaran Sewers'),
-(11,5,5,10,80,1364,0,1365,0,1,'The Ring of Valor'),
-(30,20,40,71,80,1485,0,1486,0,1,'Isle of Conquest'),
-(32,10,10,0,80,0,0,0,0,1,'Random battleground');
-/*!40000 ALTER TABLE `battleground_template` ENABLE KEYS */;
-UNLOCK TABLES;
-
---
--- Table structure for table `battlemaster_entry`
---
-
-DROP TABLE IF EXISTS `battlemaster_entry`;
-/*!40101 SET @saved_cs_client = @@character_set_client */;
-/*!40101 SET character_set_client = utf8 */;
-CREATE TABLE `battlemaster_entry` (
- `entry` mediumint(8) unsigned NOT NULL DEFAULT '0' COMMENT 'Entry of a creature',
- `bg_template` mediumint(8) unsigned NOT NULL DEFAULT '0' COMMENT 'Battleground template id',
- PRIMARY KEY (`entry`)
-) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-/*!40101 SET character_set_client = @saved_cs_client */;
-
---
--- Dumping data for table `battlemaster_entry`
---
-
-LOCK TABLES `battlemaster_entry` WRITE;
-/*!40000 ALTER TABLE `battlemaster_entry` DISABLE KEYS */;
-/*!40000 ALTER TABLE `battlemaster_entry` ENABLE KEYS */;
-UNLOCK TABLES;
-
---
--- Table structure for table `command`
---
-
-DROP TABLE IF EXISTS `command`;
-/*!40101 SET @saved_cs_client = @@character_set_client */;
-/*!40101 SET character_set_client = utf8 */;
-CREATE TABLE `command` (
- `name` varchar(50) NOT NULL DEFAULT '',
- `security` tinyint(3) unsigned NOT NULL DEFAULT '0',
- `help` longtext,
- PRIMARY KEY (`name`)
-) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Chat System';
-/*!40101 SET character_set_client = @saved_cs_client */;
-
---
--- Dumping data for table `command`
---
-
-LOCK TABLES `command` WRITE;
-/*!40000 ALTER TABLE `command` DISABLE KEYS */;
-INSERT INTO `command` VALUES
-('account',0,'Syntax: .account\r\n\r\nDisplay the access level of your account.'),
-('account addon',1,'Syntax: .account addon #addon\nSet expansion addon level allowed. Addon values: 0 - normal, 1 - tbc, 2 - wotlk.'),
-('account create',4,'Syntax: .account create $account $password\r\n\r\nCreate account and set password to it.'),
-('account delete',4,'Syntax: .account delete $account\r\n\r\nDelete account with all characters.'),
-('account lock',0,'Syntax: .account lock [on|off]\r\n\r\nAllow login from account only from current used IP or remove this requirement.'),
-('account onlinelist',4,'Syntax: .account onlinelist\r\n\r\nShow list of online accounts.'),
-('account password',0,'Syntax: .account password $old_password $new_password $new_password\r\n\r\nChange your account password.'),
-('account set',3,'Syntax: .account set $subcommand\nType .account set to see the list of possible subcommands or .help account set $subcommand to see info on subcommands'),
-('account set addon',3,'Syntax: .account set addon [$account] #addon\r\n\r\nSet user (possible targeted) expansion addon level allowed. Addon values: 0 - normal, 1 - tbc, 2 - wotlk.'),
-('account set gmlevel',4,'Syntax: .account set gmlevel [$account] #level [#realmid]\r\n\r\nSet the security level for targeted player (can''t be used at self) or for account $name to a level of #level on the realm #realmID.\r\n\r\n#level may range from 0 to 3.\r\n\r\n#reamID may be -1 for all realms.'),
-('account set password',4,'Syntax: .account set password $account $password $password\r\n\r\nSet password for account.'),
-('achievement',4,'Syntax: .achievement $subcommand\nType .achievement to see the list of possible subcommands or .help achievement $subcommand to see info on subcommands'),
-('achievement add',4,'Syntax: .achievement add $achievement\nAdd an achievement to the targeted player.\n$achievement: can be either achievement id or achievement link'),
-('additem',3,'Syntax: .additem #itemid/[#itemname]/#shift-click-item-link #itemcount\r\n\r\nAdds the specified number of items of id #itemid (or exact (!) name $itemname in brackets, or link created by shift-click at item in inventory or recipe) to your or selected character inventory. If #itemcount is omitted, only one item will be added.\r\n.'),
-('additemset',3,'Syntax: .additemset #itemsetid\r\n\r\nAdd items from itemset of id #itemsetid to your or selected character inventory. Will add by one example each item from itemset.'),
-('announce',1,'Syntax: .announce $MessageToBroadcast\r\n\r\nSend a global message to all players online in chat log.'),
-('appear',1,'Syntax: .appear [$charactername]\r\n\r\nTeleport to the given character. Either specify the character name or click on the character''s portrait, e.g. when you are in a group. Character can be offline.'),
-('aura',3,'Syntax: .aura #spellid\r\n\r\nAdd the aura from spell #spellid to the selected Unit.'),
-('ban',3,'Syntax: .ban $subcommand\nType .ban to see the list of possible subcommands or .help ban $subcommand to see info on subcommands'),
-('ban account',3,'Syntax: .ban account $Name $bantime $reason\r\nBan account kick player.\r\n$bantime: negative value leads to permban, otherwise use a timestring like \"4d20h3s\".'),
-('ban character',3,'Syntax: .ban character $Name $bantime $reason\nBan character and kick player.\n$bantime: negative value leads to permban, otherwise use a timestring like "4d20h3s".'),
-('ban playeraccount',3,'Syntax: .ban playeraccount $Name $bantime $reason\nBan account and kick player.\n$bantime: negative value leads to permban, otherwise use a timestring like "4d20h3s".'),
-('ban ip',3,'Syntax: .ban ip $Ip $bantime $reason\r\nBan IP.\r\n$bantime: negative value leads to permban, otherwise use a timestring like \"4d20h3s\".'),
-('baninfo',3,'Syntax: .baninfo $subcommand\nType .baninfo to see the list of possible subcommands or .help baninfo $subcommand to see info on subcommands'),
-('baninfo account',3,'Syntax: .baninfo account $accountid\r\nWatch full information about a specific ban.'),
-('baninfo character',3,'Syntax: .baninfo character $charactername \r\nWatch full information about a specific ban.'),
-('baninfo ip',3,'Syntax: .baninfo ip $ip\r\nWatch full information about a specific ban.'),
-('bank',3,'Syntax: .bank\r\n\r\nShow your bank inventory.'),
-('banlist',3,'Syntax: .banlist $subcommand\nType .banlist to see the list of possible subcommands or .help banlist $subcommand to see info on subcommands'),
-('banlist account',3,'Syntax: .banlist account [$Name]\r\nSearches the banlist for a account name pattern or show full list account bans.'),
-('banlist character',3,'Syntax: .banlist character $Name\r\nSearches the banlist for a character name pattern. Pattern required.'),
-('banlist ip',3,'Syntax: .banlist ip [$Ip]\r\nSearches the banlist for a IP pattern or show full list of IP bans.'),
-('bindsight',3,'Syntax: .bindsight\r\n\r\nBinds vision to the selected unit indefinitely. Cannot be used while currently possessing a target.'),
-('cast',3,'Syntax: .cast #spellid [triggered]\r\n Cast #spellid to selected target. If no target selected cast to self. If ''trigered'' or part provided then spell casted with triggered flag.'),
-('cast back',3,'Syntax: .cast back #spellid [triggered]\r\n Selected target will cast #spellid to your character. If ''trigered'' or part provided then spell casted with triggered flag.'),
-('cast dist',3,'Syntax: .cast dist #spellid [#dist [triggered]]\r\n You will cast spell to pint at distance #dist. If ''trigered'' or part provided then spell casted with triggered flag. Not all spells can be casted as area spells.'),
-('cast self',3,'Syntax: .cast self #spellid [triggered]\r\nCast #spellid by target at target itself. If ''trigered'' or part provided then spell casted with triggered flag.'),
-('cast target',3,'Syntax: .cast target #spellid [triggered]\r\n Selected target will cast #spellid to his victim. If ''trigered'' or part provided then spell casted with triggered flag.'),
-('cast dest',3,'Syntax: .cast dest #spellid #x #y #z [triggered]\r\n Selected target will cast #spellid at provided destination. If ''trigered'' or part provided then spell casted with triggered flag.'),
-('character customize',2,'Syntax: .character customize [$name]\r\n\r\nMark selected in game or by $name in command character for customize at next login.'),
-('character erase',4,'Syntax: .character erase $name\r\n\r\nDelete character $name. Character finally deleted in case any deleting options.'),
-('character deleted delete', 4, 'Syntax: .character deleted delete #guid|$name\r\n\r\nCompletely deletes the selected characters.\r\nIf $name is supplied, only characters with that string in their name will be deleted, if #guid is supplied, only the character with that GUID will be deleted.'),
-('character deleted list', 3, 'Syntax: .character deleted list [#guid|$name]\r\n\r\nShows a list with all deleted characters.\r\nIf $name is supplied, only characters with that string in their name will be selected, if #guid is supplied, only the character with that GUID will be selected.'),
-('character deleted old', 4, 'Syntax: .character deleted old [#keepDays]\r\n\r\nCompletely deletes all characters with deleted time longer #keepDays. If #keepDays not provided the used value from mangosd.conf option ''CharDelete.KeepDays''. If referenced config option disabled (use 0 value) then command can''t be used without #keepDays.'),
-('character deleted restore', 3, 'Syntax: .character deleted restore #guid|$name [$newname] [#new account]\r\n\r\nRestores deleted characters.\r\nIf $name is supplied, only characters with that string in their name will be restored, if $guid is supplied, only the character with that GUID will be restored.\r\nIf $newname is set, the character will be restored with that name instead of the original one. If #newaccount is set, the character will be restored to specific account character list. This works only with one character!'),
-('character level',3,'Syntax: .character level [$playername] [#level]\r\n\r\nSet the level of character with $playername (or the selected if not name provided) by #numberoflevels Or +1 if no #numberoflevels provided). If #numberoflevels is omitted, the level will be increase by 1. If #numberoflevels is 0, the same level will be restarted. If no character is selected and name not provided, increase your level. Command can be used for offline character. All stats and dependent values recalculated. At level decrease talents can be reset if need. Also at level decrease equipped items with greater level requirement can be lost.'),
-('character rename',2,'Syntax: .character rename [$name]\r\n\r\nMark selected in game or by $name in command character for rename at next login.'),
-('character reputation',2,'Syntax: .character reputation [$player_name]\r\n\r\nShow reputation information for selected player or player find by $player_name.'),
-('character titles',2,'Syntax: .character titles [$player_name]\r\n\r\nShow known titles list for selected player or player find by $player_name.'),
-('character changefaction',2,'Syntax: .character changefaction $name\r\n\r\nChange character faction.'),
-('character changerace',2,'Syntax: .character changerace $name\r\n\r\nChange character race.'),
-('channel set ownership', 3, 'Syntax: .channel set ownership $channel [on/off]\n\n\Grant ownership to the first person that joins the channel.'),
-('channel set public', 3, 'Syntax: .channel set public $channel $public\r\n\r\nChange password-changing ability for a channel. 1 for possible, 0 for GM only.'),
-('combatstop',2,'Syntax: .combatstop [$playername]\r\nStop combat for selected character. If selected non-player then command applied to self. If $playername provided then attempt applied to online player $playername.'),
-('cometome',3,'SYntax: .cometome $parameter\nMake selected creature come to your current location (new position not saved to DB).'),
-('commands',0,'Syntax: .commands\r\n\r\nDisplay a list of available commands for your account level.'),
-('cooldown',3,'Syntax: .cooldown [#spell_id]\r\n\r\nRemove all (if spell_id not provided) or #spel_id spell cooldown from selected character or you (if no selection).'),
-('damage',3,'Syntax: .damage $damage_amount [$school [$spellid]]\r\n\r\nApply $damage to target. If not $school and $spellid provided then this flat clean melee damage without any modifiers. If $school provided then damage modified by armor reduction (if school physical), and target absorbing modifiers and result applied as melee damage to target. If spell provided then damage modified and applied as spell damage. $spellid can be shift-link.'),
-('debug',1,'Syntax: .debug $subcommand\nType .debug to see the list of possible subcommands or .help debug $subcommand to see info on subcommands'),
-('debug arena',3,'Syntax: .debug arena\r\n\r\nToggle debug mode for arenas. In debug mode GM can start arena with single player.'),
-('debug bg',3,'Syntax: .debug bg\r\n\r\nToggle debug mode for battlegrounds. In debug mode GM can start battleground with single player.'),
-('debug Mod32Value',3,'Syntax: .debug Mod32Value #field #value\r\n\r\nAdd #value to field #field of your character.'),
-('debug play cinematic',1,'Syntax: .debug play cinematic #cinematicid\r\n\r\nPlay cinematic #cinematicid for you. You stay at place while your mind fly.\r\n'),
-('debug play movie',1,'Syntax: .debug play movie #movieid\r\n\r\nPlay movie #movieid for you.'),
-('debug play sound',1,'Syntax: .debug play sound #soundid\r\n\r\nPlay sound with #soundid.\r\nSound will be play only for you. Other players do not hear this.\r\nWarning: client may have more 5000 sounds...'),
-('demorph',2,'Syntax: .demorph\r\n\r\nDemorph the selected player.'),
-('die',3,'Syntax: .die\r\n\r\nKill the selected player. If no player is selected, it will kill you.'),
-('dismount',0,'Syntax: .dismount\r\n\r\nDismount you, if you are mounted.'),
-('distance',3,'Syntax: .distance\r\n\r\nDisplay the distance from your character to the selected creature.'),
-('event',2,'Syntax: .event #event_id\r\nShow details about event with #event_id.'),
-('event activelist',2,'Syntax: .event activelist\r\nShow list of currently active events.'),
-('event start',2,'Syntax: .event start #event_id\r\nStart event #event_id. Set start time for event to current moment (change not saved in DB).'),
-('event stop',2,'Syntax: .event stop #event_id\r\nStop event #event_id. Set start time for event to time in past that make current moment is event stop time (change not saved in DB).'),
-('explorecheat',3,'Syntax: .explorecheat #flag\r\n\r\nReveal or hide all maps for the selected player. If no player is selected, hide or reveal maps to you.\r\n\r\nUse a #flag of value 1 to reveal, use a #flag value of 0 to hide all maps.'),
-('flusharenapoints',3,'Syntax: .flusharenapoints\r\n\r\nUse it to distribute arena points based on arena team ratings, and start a new week.'),
-('freeze',1,'Syntax: .freeze (#player)\r\n\"Freezes\" #player and disables his chat. When using this without #name it will freeze your target.'),
-('gm',1,'Syntax: .gm [on/off]\r\n\r\nEnable or Disable in game GM MODE or show current state of on/off not provided.'),
-('gm chat',1,'Syntax: .gm chat [on/off]\r\n\r\nEnable or disable chat GM MODE (show gm badge in messages) or show current state of on/off not provided.'),
-('gm fly',3,'Syntax: .gm fly [on/off]\r\nEnable/disable gm fly mode.'),
-('gm ingame',0,'Syntax: .gm ingame\r\n\r\nDisplay a list of available in game Game Masters.'),
-('gm list',3,'Syntax: .gm list\r\n\r\nDisplay a list of all Game Masters accounts and security levels.'),
-('gm visible',1,'Syntax: .gm visible on/off\r\n\r\nOutput current visibility state or make GM visible(on) and invisible(off) for other players.'),
-('gmannounce',1,'Syntax: .gmannounce $announcement\r\nSend an announcement to online Gamemasters.'),
-('gmnameannounce',1,'Syntax: .gmnameannounce $announcement.\r\nSend an announcement to all online GM''s, displaying the name of the sender.'),
-('gmnotify',1,'Syntax: .gmnotify $notification\r\nDisplays a notification on the screen of all online GM''s.'),
-('go',1,'Syntax: .go $subcommand\nType .go to see the list of possible subcommands or .help go $subcommand to see info on subcommands'),
-('go creature',1,'Syntax: .go creature #creature_guid\r\nTeleport your character to creature with guid #creature_guid.\r\n.gocreature #creature_name\r\nTeleport your character to creature with this name.\r\n.gocreature id #creature_id\r\nTeleport your character to a creature that was spawned from the template with this entry.\r\n*If* more than one creature is found, then you are teleported to the first that is found inside the database.'),
-('go graveyard',1,'Syntax: .go graveyard #graveyardId\r\n Teleport to graveyard with the graveyardId specified.'),
-('go grid',1,'Syntax: .go grid #gridX #gridY [#mapId]\r\n\r\nTeleport the gm to center of grid with provided indexes at map #mapId (or current map if it not provided).'),
-('go object',1,'Syntax: .go object #object_guid\r\nTeleport your character to gameobject with guid #object_guid'),
-('go taxinode',1,'Syntax: .go taxinode #taxinode\r\n\r\nTeleport player to taxinode coordinates. You can look up zone using .lookup taxinode $namepart'),
-('go ticket',1,'Syntax: .go ticket #ticketid\r\nTeleports the user to the location where $ticketid was created.'),
-('go trigger',1,'Syntax: .go trigger #trigger_id\r\n\r\nTeleport your character to areatrigger with id #trigger_id. Character will be teleported to trigger target if selected areatrigger is telporting trigger.'),
-('go xy',1,'Syntax: .go xy #x #y [#mapid]\r\n\r\nTeleport player to point with (#x,#y) coordinates at ground(water) level at map #mapid or same map if #mapid not provided.'),
-('go xyz',1,'Syntax: .go xyz #x #y #z [#mapid]\r\n\r\nTeleport player to point with (#x,#y,#z) coordinates at ground(water) level at map #mapid or same map if #mapid not provided.'),
-('go zonexy',1,'Syntax: .go zonexy #x #y [#zone]\r\n\r\nTeleport player to point with (#x,#y) client coordinates at ground(water) level in zone #zoneid or current zone if #zoneid not provided. You can look up zone using .lookup area $namepart'),
-('gobject',2,'Syntax: .gobject $subcommand\nType .gobject to see the list of possible subcommands or .help gobject $subcommand to see info on subcommands'),
-('gobject activate',2,'Syntax: .gobject activate #guid\r\n\r\nActivates an object like a door or a button.'),
-('gobject add',2,'Syntax: .gobject add #id <spawntimeSecs>\r\n\r\nAdd a game object from game object templates to the world at your current location using the #id.\r\nspawntimesecs sets the spawntime, it is optional.\r\n\r\nNote: this is a copy of .gameobject.'),
-('gobject add temp',2,'Adds a temporary gameobject that is not saved to DB.'),
-('gobject delete',2,'Syntax: .gobject delete #go_guid\r\nDelete gameobject with guid #go_guid.'),
-('gobject info', 2, 'Syntax: .gobject info [$object_entry]\r\n\r\nQuery Gameobject information for selected gameobject or given entry.'),
-('gobject move',2,'Syntax: .gobject move #goguid [#x #y #z]\r\n\r\nMove gameobject #goguid to character coordinates (or to (#x,#y,#z) coordinates if its provide).'),
-('gobject near',2,'Syntax: .gobject near [#distance]\r\n\r\nOutput gameobjects at distance #distance from player. Output gameobject guids and coordinates sorted by distance from character. If #distance not provided use 10 as default value.'),
-('gobject set phase',2,'Syntax: .gobject set phase #guid #phasemask\r\n\r\nGameobject with DB guid #guid phasemask changed to #phasemask with related world vision update for players. Gameobject state saved to DB and persistent.'),
-('gobject target',2,'Syntax: .gobject target [#go_id|#go_name_part]\r\n\r\nLocate and show position nearest gameobject. If #go_id or #go_name_part provide then locate and show position of nearest gameobject with gameobject template id #go_id or name included #go_name_part as part.'),
-('gobject turn',2,'Syntax: .gobject turn #goguid \r\n\r\nSet for gameobject #goguid orientation same as current character orientation.'),
-('gps',1,'Syntax: .gps [$name|$shift-link]\r\n\r\nDisplay the position information for a selected character or creature (also if player name $name provided then for named player, or if creature/gameobject shift-link provided then pointed creature/gameobject if it loaded). Position information includes X, Y, Z, and orientation, map Id and zone Id'),
-('wpgps',3,'Syntax: .wpgps\n\nOutput current position to sql developer log as partial SQL query to be used in pathing'),
-('groupsummon',1,'Syntax: .groupsummon [$charactername]\r\n\r\nTeleport the given character and his group to you. Teleported only online characters but original selected group member can be offline.'),
-('guid',2,'Syntax: .guid\r\n\r\nDisplay the GUID for the selected character.'),
-('guild',3,'Syntax: .guild $subcommand\nType .guild to see the list of possible subcommands or .help guild $subcommand to see info on subcommands'),
-('guild create',2,'Syntax: .guild create [$GuildLeaderName] \"$GuildName\"\r\n\r\nCreate a guild named $GuildName with the player $GuildLeaderName (or selected) as leader. Guild name must in quotes.'),
-('guild delete',2,'Syntax: .guild delete \"$GuildName\"\r\n\r\nDelete guild $GuildName. Guild name must in quotes.'),
-('guild invite',2,'Syntax: .guild invite [$CharacterName] \"$GuildName\"\r\n\r\nAdd player $CharacterName (or selected) into a guild $GuildName. Guild name must in quotes.'),
-('guild rank',2,'Syntax: .guild rank [$CharacterName] #Rank\r\n\r\nSet for player $CharacterName (or selected) rank #Rank in a guild.'),
-('guild uninvite',2,'Syntax: .guild uninvite [$CharacterName]\r\n\r\nRemove player $CharacterName (or selected) from a guild.'),
-('help',0,'Syntax: .help [$command]\r\n\r\nDisplay usage instructions for the given $command. If no $command provided show list available commands.'),
-('hidearea',3,'Syntax: .hidearea #areaid\r\n\r\nHide the area of #areaid to the selected character. If no character is selected, hide this area to you.'),
-('honor',2,'Syntax: .honor $subcommand\nType .honor to see the list of possible subcommands or .help honor $subcommand to see info on subcommands'),
-('honor add',2,'Syntax: .honor add $amount\r\n\r\nAdd a certain amount of honor (gained today) to the selected player.'),
-('honor add kill',2,'Syntax: .honor add kill\r\n\r\nAdd the targeted unit as one of your pvp kills today (you only get honor if it''s a racial leader or a player)'),
-('honor update',2,'Syntax: .honor update\r\n\r\nForce the yesterday''s honor fields to be updated with today''s data, which will get reset for the selected player.'),
-('hover',3,'Syntax: .hover #flag\r\n\r\nEnable or disable hover mode for your character.\r\n\r\nUse a #flag of value 1 to enable, use a #flag value of 0 to disable hover.'),
-('instance',3,'Syntax: .instance $subcommand\nType .instance to see the list of possible subcommands or .help instance $subcommand to see info on subcommands'),
-('instance listbinds',3,'Syntax: .instance listbinds\r\n Lists the binds of the selected player.'),
-('instance savedata',3,'Syntax: .instance savedata\r\n Save the InstanceData for the current player''s map to the DB.'),
-('instance stats',3,'Syntax: .instance stats\r\n Shows statistics about instances.'),
-('instance unbind',3,'Syntax: .instance unbind <mapid|all> [difficulty]\r\n Clear all/some of player''s binds'),
-('itemmove',2,'Syntax: .itemmove #sourceslotid #destinationslotid\r\n\r\nMove an item from slots #sourceslotid to #destinationslotid in your inventory\r\n\r\nNot yet implemented'),
-('kick',2,'Syntax: .kick [$charactername] [$reason]\r\n\r\nKick the given character name from the world with or without reason. If no character name is provided then the selected player (except for yourself) will be kicked. If no reason is provided, default is \"No Reason\".'),
-('learn',3,'Syntax: .learn #spell [all]\r\n\r\nSelected character learn a spell of id #spell. If ''all'' provided then all ranks learned.'),
-('learn all crafts',2,'Syntax: .learn crafts\r\n\r\nLearn all professions and recipes.'),
-('learn all default',1,'Syntax: .learn all default [$playername]\r\n\r\nLearn for selected/$playername player all default spells for his race/class and spells rewarded by completed quests.'),
-('learn all gm',2,'Syntax: .learn all gm\r\n\r\nLearn all default spells for Game Masters.'),
-('learn all lang',1,'Syntax: .learn all lang\r\n\r\nLearn all languages'),
-('learn all my class',3,'Syntax: .learn all my class\r\n\r\nLearn all spells and talents available for his class.'),
-('learn all my pettalents',3,'Syntax: .learn all my pettalents\r\n\r\nLearn all talents for your pet available for his creature type (only for hunter pets).'),
-('learn all my spells',3,'Syntax: .learn all my spells\r\n\r\nLearn all spells (except talents and spells with first rank learned as talent) available for his class.'),
-('learn all my talents',3,'Syntax: .learn all my talents\r\n\r\nLearn all talents (and spells with first rank learned as talent) available for his class.'),
-('learn all recipes',2,'Syntax: .learn all recipes [$profession]\r\rLearns all recipes of specified profession and sets skill level to max.\rExample: .learn all recipes enchanting'),
-('levelup',3,'Syntax: .levelup [$playername] [#numberoflevels]\r\n\r\nIncrease/decrease the level of character with $playername (or the selected if not name provided) by #numberoflevels Or +1 if no #numberoflevels provided). If #numberoflevels is omitted, the level will be increase by 1. If #numberoflevels is 0, the same level will be restarted. If no character is selected and name not provided, increase your level. Command can be used for offline character. All stats and dependent values recalculated. At level decrease talents can be reset if need. Also at level decrease equipped items with greater level requirement can be lost.'),
-('linkgrave',3,'Syntax: .linkgrave #graveyard_id [alliance|horde]\r\n\r\nLink current zone to graveyard for any (or alliance/horde faction ghosts). This let character ghost from zone teleport to graveyard after die if graveyard is nearest from linked to zone and accept ghost of this faction. Add only single graveyard at another map and only if no graveyards linked (or planned linked at same map).'),
-('list',3,'Syntax: .list $subcommand\nType .list to see the list of possible subcommands or .help list $subcommand to see info on subcommands'),
-('list auras',3,'Syntax: .list auras\nList auras (passive and active) of selected creature or player. If no creature or player is selected, list your own auras.'),
-('list creature',3,'Syntax: .list creature #creature_id [#max_count]\r\n\r\nOutput creatures with creature id #creature_id found in world. Output creature guids and coordinates sorted by distance from character. Will be output maximum #max_count creatures. If #max_count not provided use 10 as default value.'),
-('list item',3,'Syntax: .list item #item_id [#max_count]\r\n\r\nOutput items with item id #item_id found in all character inventories, mails, auctions, and guild banks. Output item guids, item owner guid, owner account and owner name (guild name and guid in case guild bank). Will be output maximum #max_count items. If #max_count not provided use 10 as default value.'),
-('list object',3,'Syntax: .list object #gameobject_id [#max_count]\r\n\r\nOutput gameobjects with gameobject id #gameobject_id found in world. Output gameobject guids and coordinates sorted by distance from character. Will be output maximum #max_count gameobject. If #max_count not provided use 10 as default value.'),
-('listfreeze',1,'Syntax: .listfreeze\r\n\r\nSearch and output all frozen players.'),
-('lookup',3,'Syntax: .lookup $subcommand\nType .lookup to see the list of possible subcommands or .help lookup $subcommand to see info on subcommands'),
-('lookup area',1,'Syntax: .lookup area $namepart\r\n\r\nLooks up an area by $namepart, and returns all matches with their area ID''s.'),
-('lookup creature',3,'Syntax: .lookup creature $namepart\r\n\r\nLooks up a creature by $namepart, and returns all matches with their creature ID''s.'),
-('lookup event',2,'Syntax: .lookup event $name\r\nAttempts to find the ID of the event with the provided $name.'),
-('lookup faction',3,'Syntax: .lookup faction $name\r\nAttempts to find the ID of the faction with the provided $name.'),
-('lookup item',3,'Syntax: .lookup item $itemname\r\n\r\nLooks up an item by $itemname, and returns all matches with their Item ID''s.'),
-('lookup itemset',3,'Syntax: .lookup itemset $itemname\r\n\r\nLooks up an item set by $itemname, and returns all matches with their Item set ID''s.'),
-('lookup map',3,'Syntax: .lookup map $namepart\r\n\r\nLooks up a map by $namepart, and returns all matches with their map ID''s.'),
-('lookup object',3,'Syntax: .lookup object $objname\r\n\r\nLooks up an gameobject by $objname, and returns all matches with their Gameobject ID''s.'),
-('lookup player account',2,'Syntax: .lookup player account $account ($limit) \r\n\r\n Searchs players, which account username is $account with optional parametr $limit of results.'),
-('lookup player email',2,'Syntax: .lookup player email $email ($limit) \r\n\r\n Searchs players, which account email is $email with optional parametr $limit of results.'),
-('lookup player ip',2,'Syntax: .lookup player ip $ip ($limit) \r\n\r\n Searchs players, which account ast_ip is $ip with optional parametr $limit of results.'),
-('lookup quest',3,'Syntax: .lookup quest $namepart\r\n\r\nLooks up a quest by $namepart, and returns all matches with their quest ID''s.'),
-('lookup skill',3,'Syntax: .lookup skill $$namepart\r\n\r\nLooks up a skill by $namepart, and returns all matches with their skill ID''s.'),
-('lookup spell',3,'Syntax: .lookup spell $namepart\r\n\r\nLooks up a spell by $namepart, and returns all matches with their spell ID''s.'),
-('lookup taxinode',3,'Syntax: .lookup taxinode $substring\r\n\r\nSearch and output all taxinodes with provide $substring in name.'),
-('lookup tele',1,'Syntax: .lookup tele $substring\r\n\r\nSearch and output all .tele command locations with provide $substring in name.'),
-('maxskill',3,'Syntax: .maxskill\r\nSets all skills of the targeted player to their maximum values for its current level.'),
-('modify',1,'Syntax: .modify $subcommand\nType .modify to see the list of possible subcommands or .help modify $subcommand to see info on subcommands'),
-('modify arena',1,'Syntax: .modify arena #value\r\nAdd $amount arena points to the selected player.'),
-('modify aspeed',1,'Syntax: .modify aspeed #rate\r\n\r\nModify all speeds -run,swim,run back,swim back- of the selected player to \"normalbase speed for this move type\"*rate. If no player is selected, modify your speed.\r\n\r\n #rate may range from 0.1 to 50.'),
-('modify bit',1,'Syntax: .modify bit #field #bit\r\n\r\nToggle the #bit bit of the #field field for the selected player. If no player is selected, modify your character.'),
-('modify bwalk',1,'Syntax: .modify bwalk #rate\r\n\r\nModify the speed of the selected player while running backwards to \"normal walk back speed\"*rate. If no player is selected, modify your speed.\r\n\r\n #rate may range from 0.1 to 50.'),
-('modify drunk',1,'Syntax: .modify drunk #value\r\n Set drunk level to #value (0..100). Value 0 remove drunk state, 100 is max drunked state.'),
-('modify energy',1,'Syntax: .modify energy #energy\r\n\r\nModify the energy of the selected player. If no player is selected, modify your energy.'),
-('modify faction',1,'Syntax: .modify faction #factionid #flagid #npcflagid #dynamicflagid\r\n\r\nModify the faction and flags of the selected creature. Without arguments, display the faction and flags of the selected creature.'),
-('modify fly',1,'.modify fly $parameter\nModify the flying speed of the selected player to \"normal flying speed\"*rate. If no player is selected, modify your speed.\n #rate may range from 0.1 to 50.'),
-('modify gender',2,'Syntax: .modify gender male/female\r\n\r\nChange gender of selected player.'),
-('modify honor',1,'Syntax: .modify honor $amount\r\n\r\nAdd $amount honor points to the selected player.'),
-('modify hp',1,'Syntax: .modify hp #newhp\r\n\r\nModify the hp of the selected player. If no player is selected, modify your hp.'),
-('modify mana',1,'Syntax: .modify mana #newmana\r\n\r\nModify the mana of the selected player. If no player is selected, modify your mana.'),
-('modify money',1,'Syntax: .modify money #money\r\n.money #money\r\n\r\nAdd or remove money to the selected player. If no player is selected, modify your money.\r\n\r\n #gold can be negative to remove money.'),
-('modify morph',2,'Syntax: .modify morph #displayid\r\n\r\nChange your current model id to #displayid.'),
-('modify mount',1,'Syntax: .modify mount #id #speed\r\nDisplay selected player as mounted at #id creature and set speed to #speed value.'),
-('modify phase',3,'Syntax: .modify phase #phasemask\r\n\r\nSelected character phasemask changed to #phasemask with related world vision update. Change active until in game phase changed, or GM-mode enable/disable, or re-login. Character pts pasemask update to same value.'),
-('modify rage',1,'Syntax: .modify rage #newrage\r\n\r\nModify the rage of the selected player. If no player is selected, modify your rage.'),
-('modify rep',2,'Syntax: .modify rep #repId (#repvalue | $rankname [#delta])\r\nSets the selected players reputation with faction #repId to #repvalue or to $reprank.\r\nIf the reputation rank name is provided, the resulting reputation will be the lowest reputation for that rank plus the delta amount, if specified.\r\nYou can use ''.pinfo rep'' to list all known reputation ids, or use ''.lookup faction $name'' to locate a specific faction id.'),
-('modify runicpower',1,'Syntax: .modify runicpower #newrunicpower\r\n\r\nModify the runic power of the selected player. If no player is selected, modify your runic power.'),
-('modify scale',1,'.modify scale #scale\nModify size of the selected player or creature to \"normal scale\"*rate. If no player or creature is selected, modify your size.\n#rate may range from 0.1 to 10.'),
-('modify speed',1,'Syntax: .modify speed #rate\r\n.speed #rate\r\n\r\nModify the running speed of the selected player to \"normal base run speed\"*rate. If no player is selected, modify your speed.\r\n\r\n #rate may range from 0.1 to 50.'),
-('modify spell',1,'TODO'),
-('modify standstate',2,'Syntax: .modify standstate #emoteid\r\n\r\nChange the emote of your character while standing to #emoteid.'),
-('modify swim',1,'Syntax: .modify swim #rate\r\n\r\nModify the swim speed of the selected player to \"normal swim speed\"*rate. If no player is selected, modify your speed.\r\n\r\n #rate may range from 0.1 to 50.'),
-('modify tp',1,'Syntax: .modify tp #amount\r\n\r\nSet free talent pointes for selected character or character''s pet. It will be reset to default expected at next levelup/login/quest reward.'),
-('movegens',3,'Syntax: .movegens\r\n Show movement generators stack for selected creature or player.'),
-('mute',1,'Syntax: .mute [$playerName] $timeInMinutes [$reason]\r\n\r\nDisible chat messaging for any character from account of character $playerName (or currently selected) at $timeInMinutes minutes. Player can be offline.'),
-('nameannounce',1,'Syntax: .nameannounce $announcement.\nSend an announcement to all online players, displaying the name of the sender.'),
-('neargrave',3,'Syntax: .neargrave [alliance|horde]\r\n\r\nFind nearest graveyard linked to zone (or only nearest from accepts alliance or horde faction ghosts).'),
-('notify',1,'Syntax: .notify $MessageToBroadcast\r\n\r\nSend a global message to all players online in screen.'),
-('npc',1,'Syntax: .npc $subcommand\nType .npc to see the list of possible subcommands or .help npc $subcommand to see info on subcommands'),
-('npc add',2,'Syntax: .npc add #creatureid\r\n\r\nSpawn a creature by the given template id of #creatureid.'),
-('npc add formation',1,'Syntax: .npc add formation $leader\nAdd selected creature to a leader''s formation.'),
-('npc add item',2,'Syntax: .npc add item #itemId <#maxcount><#incrtime><#extendedcost>r\r\n\r\nAdd item #itemid to item list of selected vendor. Also optionally set max count item in vendor item list and time to item count restoring and items ExtendedCost.'),
-('npc add move',2,'Syntax: .npc add move #creature_guid [#waittime]\r\n\r\nAdd your current location as a waypoint for creature with guid #creature_guid. And optional add wait time.'),
-('npc set allowmove',3,'Syntax: .npc set allowmove\r\n\r\nEnable or disable movement creatures in world. Not implemented.'),
-('npc set entry',3,'Syntax: .npc set entry $entry\nSwitch selected creature with another entry from creature_template. - New creature.id value not saved to DB.'),
-('npc set level',2,'Syntax: .npc set level #level\r\n\r\nChange the level of the selected creature to #level.\r\n\r\n#level may range from 1 to (CONFIG_MAX_PLAYER_LEVEL) + 3.'),
-('npc delete',2,'Syntax: .npc delete [#guid]\r\n\r\nDelete creature with guid #guid (or the selected if no guid is provided)'),
-('npc delete item',2,'Syntax: .npc delete item #itemId\r\n\r\nRemove item #itemid from item list of selected vendor.'),
-('npc set factionid',2,'Syntax: .npc set factionid #factionid\r\n\r\nSet the faction of the selected creature to #factionid.'),
-('npc set flag',2,'Syntax: .npc set flag #npcflag\r\n\r\nSet the NPC flags of creature template of the selected creature and selected creature to #npcflag. NPC flags will applied to all creatures of selected creature template after server restart or grid unload/load.'),
-('npc follow',2,'Syntax: .npc follow start\r\n\r\nSelected creature start follow you until death/fight/etc.'),
-('npc follow stop',2,'Syntax: .npc follow stop\r\n\r\nSelected creature (non pet) stop follow you.'),
-('npc info',3,'Syntax: .npc info\r\n\r\nDisplay a list of details for the selected creature.\r\n\r\nThe list includes:\r\n- GUID, Faction, NPC flags, Entry ID, Model ID,\r\n- Level,\r\n- Health (current/maximum),\r\n\r\n- Field flags, dynamic flags, faction template, \r\n- Position information,\r\n- and the creature type, e.g. if the creature is a vendor.'),
-('npc move',2,'Syntax: .npc move [#creature_guid]\r\n\r\nMove the targeted creature spawn point to your coordinates.'),
-('npc playemote',3,'Syntax: .npc playemote #emoteid\r\n\r\nMake the selected creature emote with an emote of id #emoteid.'),
-('npc say',1,'Syntax: .npc say $message\nMake selected creature say specified message.'),
-('npc set link',2,'Syntax: .npc set link $creatureGUID\r\n\r\nLinks respawn of selected creature to the condition that $creatureGUID defined is alive.'),
-('npc set model',2,'Syntax: .npc set model #displayid\r\n\r\nChange the model id of the selected creature to #displayid.'),
-('npc set movetype',2,'Syntax: .npc set movetype [#creature_guid] stay/random/way [NODEL]\r\n\r\nSet for creature pointed by #creature_guid (or selected if #creature_guid not provided) movement type and move it to respawn position (if creature alive). Any existing waypoints for creature will be removed from the database if you do not use NODEL. If the creature is dead then movement type will applied at creature respawn.\r\nMake sure you use NODEL, if you want to keep the waypoints.'),
-('npc set phase',2,'Syntax: .npc set phase #phasemask\r\n\r\nSelected unit or pet phasemask changed to #phasemask with related world vision update for players. In creature case state saved to DB and persistent. In pet case change active until in game phase changed for owner, owner re-login, or GM-mode enable/disable..'),
-('npc set spawndist',2,'Syntax: .npc set spawndist #dist\r\n\r\nAdjust spawndistance of selected creature to dist.'),
-('npc set spawntime',2,'Syntax: .npc set spawntime #time \r\n\r\nAdjust spawntime of selected creature to time.'),
-('npc add temp',2,'Syntax: .npc add temp\r\n\r\nAdds temporary NPC, not saved to database.'),
-('npc textemote',1,'Syntax: .npc textemote #emoteid\r\n\r\nMake the selected creature to do textemote with an emote of id #emoteid.'),
-('npc whisper',1,'Syntax: .npc whisper #playerguid #text\r\nMake the selected npc whisper #text to #playerguid.'),
-('npc yell',1,'Syntax: .npc yell $message\nMake selected creature yell specified message.'),
-('pdump',3,'Syntax: .pdump $subcommand\nType .pdump to see the list of possible subcommands or .help pdump $subcommand to see info on subcommands'),
-('pdump load',3,'Syntax: .pdump load $filename $account [$newname] [$newguid]\r\nLoad character dump from dump file into character list of $account with saved or $newname, with saved (or first free) or $newguid guid.'),
-('pdump write',3,'Syntax: .pdump write $filename $playerNameOrGUID\r\nWrite character dump with name/guid $playerNameOrGUID to file $filename.'),
-('pet',2,'Syntax: .pet $subcommand\nType .pet to see the list of possible subcommands or .help pet $subcommand to see info on subcommands'),
-('pet create',2,'Syntax: .pet create\r\n\r\nCreates a pet of the selected creature.'),
-('pet learn',2,'Syntax: .pet learn\r\n\r\nLearn #spellid to pet.'),
-('pet tp',2,'Syntax: .pet tp #\r\n\r\nChange pet''s amount of training points.'),
-('pet unlearn',2,'Syntax: .pet unlean\r\n\r\nunLearn #spellid to pet.'),
-('pinfo',2,'Syntax: .pinfo [$player_name]\r\n\r\nOutput account information for selected player or player find by $player_name.'),
-('playall',2,'Syntax: .playall #soundid\r\n\r\nPlayer a sound to whole server.'),
-('possess',3,'Syntax: .possess\r\n\r\nPossesses indefinitely the selected creature.'),
-('quest',3,'Syntax: .quest $subcommand\nType .quest to see the list of possible subcommands or .help quest $subcommand to see info on subcommands'),
-('quest add',3,'Syntax: .quest add #quest_id\r\n\r\nAdd to character quest log quest #quest_id. Quest started from item can''t be added by this command but correct .additem call provided in command output.'),
-('quest complete',3,'Syntax: .quest complete #questid\r\nMark all quest objectives as completed for target character active quest. After this target character can go and get quest reward.'),
-('quest remove',3,'Syntax: .quest remove #quest_id\r\n\r\nSet quest #quest_id state to not completed and not active (and remove from active quest list) for selected player.'),
-('recall',1,'Syntax: .recall [$playername]\r\n\r\nTeleport $playername or selected player to the place where he has been before last use of a teleportation command. If no $playername is entered and no player is selected, it will teleport you.'),
-('reload',3,'Syntax: .reload $subcommand\nType .reload to see the list of possible subcommands or .help reload $subcommand to see info on subcommands'),
-('reload access_requirement',3,'Syntax: .reload access_requirement\nReload access_requirement table.'),
-('reload achievement_criteria_data',3,'Syntax: .reload achievement_criteria_data\nReload achievement_criteria_data table.'),
-('reload achievement_reward',3,'Syntax: .reload achievement_reward\nReload achievement_reward table.'),
-('reload all',3,'Syntax: .reload all\r\n\r\nReload all tables with reload support added and that can be _safe_ reloaded.'),
-('reload all achievement',3,'Syntax: .reload all achievement\r\n\r\nReload achievement_reward, achievement_criteria_data tables.'),
-('reload all area',3,'Syntax: .reload all area\r\n\r\nReload areatrigger_teleport, areatrigger_tavern, game_graveyard_zone tables.'),
-('reload all eventai',3,'Syntax: .reload all eventai\r\n\r\nReload creature_ai_scripts, creature_ai_summons, creature_ai_texts tables.'),
-('reload all gossips',3,'Syntax: .reload all gossips\nReload gossip_menu, gossip_menu_option, points_of_interest tables.'),
-('reload all item',3,'Syntax: .reload all item\nReload page_text, item_enchantment_table tables.'),
-('reload all locales',3,'Syntax: .reload all locales\r\n\r\nReload all `locales_*` tables with reload support added and that can be _safe_ reloaded.'),
-('reload all loot',3,'Syntax: .reload all loot\r\n\r\nReload all `*_loot_template` tables. This can be slow operation with lags for server run.'),
-('reload all npc',3,'Syntax: .reload all npc\nReload npc_option, npc_trainer, npc vendor, points of interest tables.'),
-('reload all quest',3,'Syntax: .reload all quest\r\n\r\nReload all quest related tables if reload support added for this table and this table can be _safe_ reloaded.'),
-('reload all scripts',3,'Syntax: .reload all scripts\nReload gameobject_scripts, event_scripts, quest_end_scripts, quest_start_scripts, spell_scripts, db_script_string, waypoint_scripts tables.'),
-('reload all spell',3,'Syntax: .reload all spell\r\n\r\nReload all `spell_*` tables with reload support added and that can be _safe_ reloaded.'),
-('reload areatrigger_involvedrelation',3,'Syntax: .reload areatrigger_involvedrelation\nReload areatrigger_involvedrelation table.'),
-('reload areatrigger_tavern',3,'Syntax: .reload areatrigger_tavern\nReload areatrigger_tavern table.'),
-('reload areatrigger_teleport',3,'Syntax: .reload areatrigger_teleport\nReload areatrigger_teleport table.'),
-('reload auctions',3,'Syntax: .reload auctions\nReload dynamic data tables from the database.'),
-('reload autobroadcast',3,'Syntax: .reload autobroadcast\nReload autobroadcast table.'),
-('reload command',3,'Syntax: .reload command\nReload command table.'),
-('reload conditions', 3, 'Reload conditions table.'),
-('reload config',3,'Syntax: .reload config\r\n\r\nReload config settings (by default stored in trinityd.conf). Not all settings can be change at reload: some new setting values will be ignored until restart, some values will applied with delay or only to new objects/maps, some values will explicitly rejected to change at reload.'),
-('reload creature_involvedrelation',3,'Syntax: .reload creature_involvedrelation\nReload creature_involvedrelation table.'),
-('reload creature_linked_respawn',2,'Syntax: .reload creature_linked_respawn\r\nReload creature_linked_respawn table.'),
-('reload creature_loot_template',3,'Syntax: .reload creature_loot_template\nReload creature_loot_template table.'),
-('reload creature_onkill_reputation','3','Syntax: .reload creature_onkill_reputation\r\nReload creature_onkill_reputation table.'),
-('reload creature_questrelation',3,'Syntax: .reload creature_questrelation\nReload creature_questrelation table.'),
-('reload creature_template','3','Syntax: .reload creature_template $entry\r\nReload the specified creature''s template.'),
-('reload creature_text',3,'Syntax: .reload creature_text\r\nReload creature_text table.'),
-('reload disables',3,'Syntax: .reload disables\r\nReload disables table.'),
-('reload disenchant_loot_template',3,'Syntax: .reload disenchant_loot_template\nReload disenchant_loot_template table.'),
-('reload event_scripts',3,'Syntax: .reload event_scripts\nReload event_scripts table.'),
-('reload fishing_loot_template',3,'Syntax: .reload fishing_loot_template\nReload fishing_loot_template table.'),
-('reload gameobject_involvedrelation',3,'Syntax: .reload gameobject_involvedrelation\nReload gameobject_involvedrelation table.'),
-('reload gameobject_loot_template',3,'Syntax: .reload gameobject_loot_template\nReload gameobject_loot_template table.'),
-('reload gameobject_questrelation',3,'Syntax: .reload gameobject_questrelation\nReload gameobject_questrelation table.'),
-('reload gameobject_scripts',3,'Syntax: .reload gameobject_scripts\nReload gameobject_scripts table.'),
-('reload game_graveyard_zone',3,'Syntax: .reload game_graveyard_zone\nReload game_graveyard_zone table.'),
-('reload game_tele',3,'Syntax: .reload game_tele\nReload game_tele table.'),
-('reload gossip_menu',3,'Syntax: .reload gossip_menu\nReload gossip_menu table.'),
-('reload gossip_menu_option',3,'Syntax: .reload gossip_menu_option\nReload gossip_menu_option table.'),
-('reload gm_tickets',3,'Syntax: .reload gm_tickets\nReload gm_tickets table.'),
-('reload item_enchantment_template',3,'Syntax: .reload item_enchantment_template\nReload item_enchantment_template table.'),
-('reload item_loot_template',3,'Syntax: .reload item_loot_template\nReload item_loot_template table.'),
-('reload item_set_names',3,'Syntax: .reload item_set_names\nReload item_set_names table.'),
-('reload lfg_dungeon_rewards',3,'Syntax: .reload lfg_dungeon_rewards\nReload lfg_dungeon_rewards table.'),
-('reload locales_creature',3,'Syntax: .reload locales_creature\nReload locales_creature table.'),
-('reload locales_gameobject',3,'Syntax: .reload locales_gameobject\nReload locales_gameobject table.'),
-('reload locales_gossip_menu_option',3, 'Syntax: .reload locales_gossip_menu_option\nReload locales_gossip_menu_option table.'),
-('reload locales_item',3,'Syntax: .reload locales_item\nReload locales_item table.'),
-('reload locales_item_set_name',3,'Syntax: .reload locales_item_set_name\nReload locales_item_set_name table.'),
-('reload locales_npc_text',3,'Syntax: .reload locales_npc_text\nReload locales_npc_text table.'),
-('reload locales_page_text',3,'Syntax: .reload locales_page_text\nReload locales_page_text table.'),
-('reload locales_points_of_interest',3,'Syntax: .reload locales_points_of_interest\nReload locales_point_of_interest table.'),
-('reload locales_quest',3,'Syntax: .reload locales_quest\nReload locales_quest table.'),
-('reload mail_level_reward',3,'Syntax: .reload mail_level_reward\nReload mail_level_reward table.'),
-('reload mail_loot_template',3,'Syntax: .reload mail_loot_template\nReload mail_loot_template table.'),
-('reload milling_loot_template',3,'Syntax: .reload milling_loot_template\nReload milling_loot_template table.'),
-('reload npc_trainer',3,'Syntax: .reload npc_trainer\nReload npc_trainer table.'),
-('reload npc_vendor',3,'Syntax: .reload npc_vendor\nReload npc_vendor table.'),
-('reload page_text',3,'Syntax: .reload page_text\nReload page_text table.'),
-('reload pickpocketing_loot_template',3,'Syntax: .reload pickpocketing_loot_template\nReload pickpocketing_loot_template table.'),
-('reload points_of_interest',3,'Syntax: .reload points_of_interest\nReload points_of_interest table.'),
-('reload prospecting_loot_template',3,'Syntax: .reload prospecting_loot_template\nReload prospecting_loot_template table.'),
-('reload quest_end_scripts',3,'Syntax: .reload quest_end_scripts\nReload quest_end_scripts table.'),
-('reload quest_poi',3,'Syntax: .reload quest_poi\nReload quest_poi table.'),
-('reload quest_start_scripts',3,'Syntax: .reload quest_start_scripts\nReload quest_start_scripts table.'),
-('reload quest_template',3,'Syntax: .reload quest_template\nReload quest_template table.'),
-('reload reference_loot_template',3,'Syntax: .reload reference_loot_template\nReload reference_loot_template table.'),
-('reload reserved_name',3,'Syntax: .reload reserved_name\nReload reserved_name table.'),
-('reload skill_discovery_template',3,'Syntax: .reload skill_discovery_template\nReload skill_discovery_template table.'),
-('reload skill_extra_item_template',3,'Syntax: .reload skill_extra_item_template\nReload skill_extra_item_template table.'),
-('reload skill_fishing_base_level',3,'Syntax: .reload skill_fishing_base_level\nReload skill_fishing_base_level table.'),
-('reload skinning_loot_template',3,'Syntax: .reload skinning_loot_template\nReload skinning_loot_template table.'),
-('reload smart_scripts',3,'Syntax: .reload smart_scripts\nReload smart_scripts table.'),
-('reload spell_area',3,'Syntax: .reload spell_area\nReload spell_area table.'),
-('reload spell_bonus_data',3,'Syntax: .reload spell_bonus_data\nReload spell_bonus_data table.'),
-('reload spell_group',3,'Syntax: .reload spell_group\nReload spell_group table.'),
-('reload spell_group_stack_rules',3,'Syntax: .reload spell_group\nReload spell_group_stack_rules table.'),
-('reload spell_learn_spell',3,'Syntax: .reload spell_learn_spell\nReload spell_learn_spell table.'),
-('reload spell_linked_spell',3,'Usage: .reload spell_linked_spell\r\nReloads the spell_linked_spell DB table.'),
-('reload spell_loot_template',3,'Syntax: .reload spell_loot_template\nReload spell_loot_template table.'),
-('reload spell_pet_auras',3,'Syntax: .reload spell_pet_auras\nReload spell_pet_auras table.'),
-('reload spell_proc',3,'Syntax: .reload spell_proc\nReload spell_proc table.'),
-('reload spell_proc_event',3,'Syntax: .reload spell_proc_event\nReload spell_proc_event table.'),
-('reload spell_required',3,'Syntax: .reload spell_required\nReload spell_required table.'),
-('reload spell_scripts',3,'Syntax: .reload spell_scripts\nReload spell_scripts table.'),
-('reload spell_target_position',3,'Syntax: .reload spell_target_position\nReload spell_target_position table.'),
-('reload spell_threats',3,'Syntax: .reload spell_threats\nReload spell_threats table.'),
-('reload trinity_string',3,'Syntax: .reload trinity_string\nReload trinity_string table.'),
-('reload vehicle_accessory', 3, 'Syntax: .reload vehicle_accessory\n\nReloads GUID-based vehicle accessory definitions from the database.'),
-('reload vehicle_template_accessory', 3, 'Syntax: .reload vehicle_template_accessory\n\nReloads entry-based vehicle accessory definitions from the database.'),
-('reload waypoint_scripts',3,'Syntax: .reload waypoint_scripts\nReload waypoint_scripts table.'),
-('repairitems',2,'Syntax: .repairitems\r\n\r\nRepair all selected player''s items.'),
-('reset',3,'Syntax: .reset $subcommand\nType .reset to see the list of possible subcommands or .help reset $subcommand to see info on subcommands'),
-('reset achievements',3,'Syntax: .reset achievements [$playername]\r\n\r\nReset achievements data for selected or named (online or offline) character. Achievements for persistance progress data like completed quests/etc re-filled at reset. Achievements for events like kills/casts/etc will lost.'),
-('reset all',3,'Syntax: .reset all spells\r\n\r\nSyntax: .reset all talents\r\n\r\nRequest reset spells or talents (including talents for all character''s pets if any) at next login each existed character.'),
-('reset honor',3,'Syntax: .reset honor [Playername]\r\n Reset all honor data for targeted character.'),
-('reset level',3,'Syntax: .reset level [Playername]\r\n Reset level to 1 including reset stats and talents. Equipped items with greater level requirement can be lost.'),
-('reset spells',3,'Syntax: .reset spells [Playername]\r\n Removes all non-original spells from spellbook.\r\n. Playername can be name of offline character.'),
-('reset stats',3,'Syntax: .reset stats [Playername]\r\n Resets(recalculate) all stats of the targeted player to their original VALUESat current level.'),
-('reset talents',3,'Syntax: .reset talents [Playername]\r\n Removes all talents of the targeted player or pet or named player. Playername can be name of offline character. With player talents also will be reset talents for all character''s pets if any.'),
-('respawn',3,'Syntax: .respawn\r\n\r\nRespawn all nearest creatures and GO without waiting respawn time expiration.'),
-('revive',3,'Syntax: .revive\r\n\r\nRevive the selected player. If no player is selected, it will revive you.'),
-('save',0,'Syntax: .save\r\n\r\nSaves your character.'),
-('saveall',1,'Syntax: .saveall\r\n\r\nSave all characters in game.'),
-('send items',3,'Syntax: .send items #playername \"#subject\" \"#text\" itemid1[:count1] itemid2[:count2] ... itemidN[:countN]\r\n\r\nSend a mail to a player. Subject and mail text must be in \"\". If for itemid not provided related count values then expected 1, if count > max items in stack then items will be send in required amount stacks. All stacks amount in mail limited to 12.'),
-('send mail',1,'Syntax: .send mail #playername \"#subject\" \"#text\"\r\n\r\nSend a mail to a player. Subject and mail text must be in \"\".'),
-('send message',3,'Syntax: .send message $playername $message\r\n\r\nSend screen message to player from ADMINISTRATOR.'),
-('send money',3,'Syntax: .send money #playername \"#subject\" \"#text\" #money\r\n\r\nSend mail with money to a player. Subject and mail text must be in \"\".'),
-('server',3,'Syntax: .server $subcommand\nType .server to see the list of possible subcommands or .help server $subcommand to see info on subcommands'),
-('server corpses',2,'Syntax: .server corpses\r\n\r\nTriggering corpses expire check in world.'),
-('server exit',4,'Syntax: .server exit\r\n\r\nTerminate trinity-core NOW. Exit code 0.'),
-('server idlerestart',3,'Syntax: .server idlerestart #delay\r\n\r\nRestart the server after #delay seconds if no active connections are present (no players). Use #exist_code or 2 as program exist code.'),
-('server idlerestart cancel',3,'Syntax: .server idlerestart cancel\r\n\r\nCancel the restart/shutdown timer if any.'),
-('server idleshutdown',3,'Syntax: .server idleshutdown #delay [#exist_code]\r\n\r\nShut the server down after #delay seconds if no active connections are present (no players). Use #exist_code or 0 as program exist code.'),
-('server idleshutdown cancel',3,'Syntax: .server idleshutdown cancel\r\n\r\nCancel the restart/shutdown timer if any.'),
-('server info',0,'Syntax: .server info\r\n\r\nDisplay server version and the number of connected players.'),
-('server motd',0,'Syntax: .server motd\r\n\r\nShow server Message of the day.'),
-('server plimit',3,'Syntax: .server plimit [#num|-1|-2|-3|reset|player|moderator|gamemaster|administrator]\r\n\r\nWithout arg show current player amount and security level limitations for login to server, with arg set player linit ($num > 0) or securiti limitation ($num < 0 or security leme name. With `reset` sets player limit to the one in the config file'),
-('server restart',3,'Syntax: .server restart #delay\r\n\r\nRestart the server after #delay seconds. Use #exist_code or 2 as program exist code.'),
-('server restart cancel',3,'Syntax: .server restart cancel\r\n\r\nCancel the restart/shutdown timer if any.'),
-('server set closed',3,'Syntax: server set closed on/off\r\n\r\nSets whether the world accepts new client connectsions.'),
-('server set loglevel',4,'Syntax: .server set loglevel #level\r\n\r\nSet server log level (0 - errors only, 1 - basic, 2 - detail, 3 - debug).'),
-('server set motd',3,'Syntax: .server set motd $MOTD\r\n\r\nSet server Message of the day.'),
-('server shutdown',3,'Syntax: .server shutdown #delay [#exit_code]\r\n\r\nShut the server down after #delay seconds. Use #exit_code or 0 as program exit code.'),
-('server shutdown cancel',3,'Syntax: .server shutdown cancel\r\n\r\nCancel the restart/shutdown timer if any.'),
-('server togglequerylog',4,'Toggle SQL driver query logging.'),
-('setskill',3,'Syntax: .setskill #skill #level [#max]\r\n\r\nSet a skill of id #skill with a current skill value of #level and a maximum value of #max (or equal current maximum if not provide) for the selected character. If no character is selected, you learn the skill.'),
-('showarea',3,'Syntax: .showarea #areaid\r\n\r\nReveal the area of #areaid to the selected character. If no character is selected, reveal this area to you.'),
-('start',0,'Syntax: .start\r\n\r\nTeleport you to the starting area of your character.'),
-('summon',1,'Syntax: .summon [$charactername]\r\n\r\nTeleport the given character to you. Character can be offline.'),
-('taxicheat',1,'Syntax: .taxicheat on/off\r\n\r\nTemporary grant access or remove to all taxi routes for the selected character. If no character is selected, hide or reveal all routes to you.\r\n\r\nVisited taxi nodes sill accessible after removing access.'),
-('tele',1,'Syntax: .tele #location\r\n\r\nTeleport player to a given location.'),
-('tele add',3,'Syntax: .tele add $name\r\n\r\nAdd current your position to .tele command target locations list with name $name.'),
-('tele del',3,'Syntax: .tele del $name\r\n\r\nRemove location with name $name for .tele command locations list.'),
-('tele group',1,'Syntax: .tele group#location\r\n\r\nTeleport a selected player and his group members to a given location.'),
-('tele name',1,'Syntax: .tele name [#playername] #location\r\n\r\nTeleport the given character to a given location. Character can be offline.'),
-('ticket',1,'Syntax: .ticket $subcommand\nType .ticket to see the list of possible subcommands or .help ticket $subcommand to see info on subcommands'),
-('ticket assign',1,'Usage: .ticket assign $ticketid $gmname.\r\nAssigns the specified ticket to the specified Game Master.'),
-('ticket close',1,'Usage: .ticket close $ticketid.\r\nCloses the specified ticket. Does not delete permanently.'),
-('ticket closedlist',1,'Displays a list of closed GM tickets.'),
-('ticket comment',1,'Usage: .ticket comment $ticketid $comment.\r\nAllows the adding or modifying of a comment to the specified ticket.'),
-('ticket delete',3,'Usage: .ticket delete $ticketid.\r\nDeletes the specified ticket permanently. Ticket must be closed first.'),
-('ticket list',1,'Displays a list of open GM tickets.'),
-('ticket onlinelist',1,'Displays a list of open GM tickets whose owner is online.'),
-('ticket unassign',1,'Usage: .ticket unassign $ticketid.\r\nUnassigns the specified ticket from the current assigned Game Master.'),
-('ticket viewid',1,'Usage: .ticket viewid $ticketid.\r\nReturns details about specified ticket. Ticket must be open and not deleted.'),
-('ticket viewname',1,'Usage: .ticket viewname $creatorname. \r\nReturns details about specified ticket. Ticket must be open and not deleted.'),
-('titles add',2,'Syntax: .titles add #title\r\nAdd title #title (id or shift-link) to known titles list for selected player.'),
-('titles current',2,'Syntax: .titles current #title\r\nSet title #title (id or shift-link) as current selected titl for selected player. If title not in known title list for player then it will be added to list.'),
-('titles remove',2,'Syntax: .titles remove #title\r\nRemove title #title (id or shift-link) from known titles list for selected player.'),
-('titles set mask',2,'Syntax: .titles set mask #mask\r\n\r\nAllows user to use all titles from #mask.\r\n\r\n #mask=0 disables the title-choose-field'),
-('unaura',3,'Syntax: .unaura #spellid\r\n\r\nRemove aura due to spell #spellid from the selected Unit.'),
-('unban',3,'Syntax: .unban $subcommand\nType .unban to see the list of possible subcommands or .help unban $subcommand to see info on subcommands'),
-('unban account',3,'Syntax: .unban account $Name\r\nUnban accounts for account name pattern.'),
-('unban character',3,'Syntax: .unban character $Name\r\nUnban accounts for character name pattern.'),
-('unban ip',3,'Syntax : .unban ip $Ip\r\nUnban accounts for IP pattern.'),
-('unbindsight',3,'Syntax: .unbindsight\r\n\r\nRemoves bound vision. Cannot be used while currently possessing a target.'),
-('unfreeze',1,'Syntax: .unfreeze (#player)\r\n\"Unfreezes\" #player and enables his chat again. When using this without #name it will unfreeze your target.'),
-('unlearn',3,'Syntax: .unlearn #spell [all]\r\n\r\nUnlearn for selected player a spell #spell. If ''all'' provided then all ranks unlearned.'),
-('unmute',1,'Syntax: .unmute [$playerName]\r\n\r\nRestore chat messaging for any character from account of character $playerName (or selected). Character can be ofline.'),
-('unpossess',3,'Syntax: .unpossess\r\n\r\nIf you are possessed, unpossesses yourself; otherwise unpossesses current possessed target.'),
-('waterwalk',2,'Syntax: .waterwalk on/off\r\n\r\nSet on/off waterwalk state for selected player or self if no player selected.'),
-('wchange',3,'Syntax: .wchange #weathertype #status\r\n\r\nSet current weather to #weathertype with an intensity of #status.\r\n\r\n#weathertype can be 1 for rain, 2 for snow, and 3 for sand. #status can be 0 for disabled, and 1 for enabled.'),
-('whispers',1,'Syntax: .whispers on|off\r\nEnable/disable accepting whispers by GM from players. By default use trinityd.conf setting.'),
-('wp add',2,'Syntax: .wp add\r\n\r\nAdd a waypoint for the selected creature at your current position.'),
-('wp event',2,'Syntax: .wp event $subcommand\nType .path event to see the list of possible subcommands or .help path event $subcommand to see info on subcommands.'),
-('wp load',2,'Syntax: .wp load $pathid\nLoad pathid number for selected creature. Creature must have no waypoint data.'),
-('wp reload',3,'Syntax: .wp reload $pathid\nLoad path changes ingame - IMPORTANT: must be applied first for new paths before .wp load #pathid '),
-('wp show',2,'Syntax: .wp show $option\nOptions:\non $pathid (or selected creature with loaded path) - Show path\noff - Hide path\ninfo $slected_waypoint - Show info for selected waypoint.'),
-('wp unload',2,'Syntax: .wp unload\nUnload path for selected creature.');
-/*!40000 ALTER TABLE `command` ENABLE KEYS */;
-UNLOCK TABLES;
-
---
--- Table structure for `conditions`
---
-
-DROP TABLE IF EXISTS `conditions`;
-/*!40101 SET @saved_cs_client = @@character_set_client */;
-/*!40101 SET character_set_client = utf8 */;
-CREATE TABLE `conditions` (
- `SourceTypeOrReferenceId` mediumint(8) NOT NULL DEFAULT '0',
- `SourceGroup` mediumint(8) unsigned NOT NULL DEFAULT '0',
- `SourceEntry` mediumint(8) unsigned NOT NULL DEFAULT '0',
- `ElseGroup` mediumint(8) unsigned NOT NULL DEFAULT '0',
- `ConditionTypeOrReference` mediumint(8) NOT NULL DEFAULT '0',
- `ConditionValue1` mediumint(8) unsigned NOT NULL DEFAULT '0',
- `ConditionValue2` mediumint(8) unsigned NOT NULL DEFAULT '0',
- `ConditionValue3` mediumint(8) unsigned NOT NULL DEFAULT '0',
- `ErrorTextId` mediumint(8) unsigned NOT NULL DEFAULT '0',
- `ScriptName` char(64) NOT NULL DEFAULT '',
- `Comment` varchar(255) DEFAULT NULL,
- PRIMARY KEY (`SourceTypeOrReferenceId`,`SourceGroup`,`SourceEntry`,`ElseGroup`,`ConditionTypeOrReference`,`ConditionValue1`,`ConditionValue2`,`ConditionValue3`)
-) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Condition System';
-/*!40101 SET character_set_client = @saved_cs_client */;
-
---
--- Dumping data for table `conditions`
---
-
-LOCK TABLES `conditions` WRITE;
-/*!40000 ALTER TABLE `conditions` DISABLE KEYS */;
-/*!40000 ALTER TABLE `conditions` ENABLE KEYS */;
-UNLOCK TABLES;
-
---
--- Table structure for table `creature`
---
-
-DROP TABLE IF EXISTS `creature`;
-/*!40101 SET @saved_cs_client = @@character_set_client */;
-/*!40101 SET character_set_client = utf8 */;
-CREATE TABLE `creature` (
- `guid` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Global Unique Identifier',
- `id` mediumint(8) unsigned NOT NULL DEFAULT '0' COMMENT 'Creature Identifier',
- `map` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Map Identifier',
- `spawnMask` tinyint(3) unsigned NOT NULL DEFAULT '1',
- `phaseMask` smallint(5) unsigned NOT NULL DEFAULT '1',
- `modelid` mediumint(8) unsigned NOT NULL DEFAULT '0',
- `equipment_id` mediumint(9) NOT NULL DEFAULT '0',
- `position_x` float NOT NULL DEFAULT '0',
- `position_y` float NOT NULL DEFAULT '0',
- `position_z` float NOT NULL DEFAULT '0',
- `orientation` float NOT NULL DEFAULT '0',
- `spawntimesecs` int(10) unsigned NOT NULL DEFAULT '120',
- `spawndist` float NOT NULL DEFAULT '0',
- `currentwaypoint` mediumint(8) unsigned NOT NULL DEFAULT '0',
- `curhealth` int(10) unsigned NOT NULL DEFAULT '1',
- `curmana` int(10) unsigned NOT NULL DEFAULT '0',
- `MovementType` tinyint(3) unsigned NOT NULL DEFAULT '0',
- `npcflag` int(10) unsigned NOT NULL DEFAULT '0',
- `unit_flags` int(10) unsigned NOT NULL DEFAULT '0',
- `dynamicflags` int(10) unsigned NOT NULL DEFAULT '0',
- PRIMARY KEY (`guid`),
- KEY `idx_map` (`map`),
- KEY `idx_id` (`id`)
-) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=DYNAMIC COMMENT='Creature System';
-/*!40101 SET character_set_client = @saved_cs_client */;
-
-ALTER TABLE `creature` AUTO_INCREMENT=250001;
-
---
--- Dumping data for table `creature`
---
-
-LOCK TABLES `creature` WRITE;
-/*!40000 ALTER TABLE `creature` DISABLE KEYS */;
-/*!40000 ALTER TABLE `creature` ENABLE KEYS */;
-UNLOCK TABLES;
-
---
--- Table structure for table `creature_addon`
---
-
-DROP TABLE IF EXISTS `creature_addon`;
-/*!40101 SET @saved_cs_client = @@character_set_client */;
-/*!40101 SET character_set_client = utf8 */;
-CREATE TABLE `creature_addon` (
- `guid` int(10) unsigned NOT NULL DEFAULT '0',
- `path_id` int(11) unsigned NOT NULL DEFAULT '0',
- `mount` mediumint(8) unsigned NOT NULL DEFAULT '0',
- `bytes1` int(10) unsigned NOT NULL DEFAULT '0',
- `bytes2` int(10) unsigned NOT NULL DEFAULT '0',
- `emote` int(10) unsigned NOT NULL DEFAULT '0',
- `auras` text,
- PRIMARY KEY (`guid`)
-) ENGINE=MyISAM DEFAULT CHARSET=latin1;
-/*!40101 SET character_set_client = @saved_cs_client */;
-
---
--- Dumping data for table `creature_addon`
---
-
-LOCK TABLES `creature_addon` WRITE;
-/*!40000 ALTER TABLE `creature_addon` DISABLE KEYS */;
-/*!40000 ALTER TABLE `creature_addon` ENABLE KEYS */;
-UNLOCK TABLES;
-
---
--- Table structure for table `creature_ai_scripts`
---
-
-DROP TABLE IF EXISTS `creature_ai_scripts`;
-/*!40101 SET @saved_cs_client = @@character_set_client */;
-/*!40101 SET character_set_client = utf8 */;
-CREATE TABLE `creature_ai_scripts` (
- `id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Identifier',
- `creature_id` int(11) unsigned NOT NULL DEFAULT '0' COMMENT 'Creature Template Identifier',
- `event_type` tinyint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Event Type',
- `event_inverse_phase_mask` int(11) NOT NULL DEFAULT '0' COMMENT 'Mask which phases this event will not trigger in',
- `event_chance` int(3) unsigned NOT NULL DEFAULT '100',
- `event_flags` int(3) unsigned NOT NULL DEFAULT '0',
- `event_param1` int(11) NOT NULL DEFAULT '0',
- `event_param2` int(11) NOT NULL DEFAULT '0',
- `event_param3` int(11) NOT NULL DEFAULT '0',
- `event_param4` int(11) NOT NULL DEFAULT '0',
- `action1_type` tinyint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Action Type',
- `action1_param1` int(11) NOT NULL DEFAULT '0',
- `action1_param2` int(11) NOT NULL DEFAULT '0',
- `action1_param3` int(11) NOT NULL DEFAULT '0',
- `action2_type` tinyint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Action Type',
- `action2_param1` int(11) NOT NULL DEFAULT '0',
- `action2_param2` int(11) NOT NULL DEFAULT '0',
- `action2_param3` int(11) NOT NULL DEFAULT '0',
- `action3_type` tinyint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Action Type',
- `action3_param1` int(11) NOT NULL DEFAULT '0',
- `action3_param2` int(11) NOT NULL DEFAULT '0',
- `action3_param3` int(11) NOT NULL DEFAULT '0',
- `comment` varchar(255) NOT NULL DEFAULT '' COMMENT 'Event Comment',
- PRIMARY KEY (`id`)
-) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='EventAI Scripts';
-/*!40101 SET character_set_client = @saved_cs_client */;
-
---
--- Dumping data for table `creature_ai_scripts`
---
-
-LOCK TABLES `creature_ai_scripts` WRITE;
-/*!40000 ALTER TABLE `creature_ai_scripts` DISABLE KEYS */;
-/*!40000 ALTER TABLE `creature_ai_scripts` ENABLE KEYS */;
-UNLOCK TABLES;
-
---
--- Table structure for table `creature_ai_summons`
---
-
-DROP TABLE IF EXISTS `creature_ai_summons`;
-/*!40101 SET @saved_cs_client = @@character_set_client */;
-/*!40101 SET character_set_client = utf8 */;
-CREATE TABLE `creature_ai_summons` (
- `id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Location Identifier',
- `position_x` float NOT NULL DEFAULT '0',
- `position_y` float NOT NULL DEFAULT '0',
- `position_z` float NOT NULL DEFAULT '0',
- `orientation` float NOT NULL DEFAULT '0',
- `spawntimesecs` int(11) unsigned NOT NULL DEFAULT '120',
- `comment` varchar(255) NOT NULL DEFAULT '' COMMENT 'Summon Comment',
- PRIMARY KEY (`id`)
-) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='EventAI Summoning Locations';
-/*!40101 SET character_set_client = @saved_cs_client */;
-
---
--- Dumping data for table `creature_ai_summons`
---
-
-LOCK TABLES `creature_ai_summons` WRITE;
-/*!40000 ALTER TABLE `creature_ai_summons` DISABLE KEYS */;
-/*!40000 ALTER TABLE `creature_ai_summons` ENABLE KEYS */;
-UNLOCK TABLES;
-
---
--- Table structure for table `creature_ai_texts`
---
-
-DROP TABLE IF EXISTS `creature_ai_texts`;
-/*!40101 SET @saved_cs_client = @@character_set_client */;
-/*!40101 SET character_set_client = utf8 */;
-CREATE TABLE `creature_ai_texts` (
- `entry` mediumint(8) NOT NULL,
- `content_default` text NOT NULL,
- `content_loc1` text,
- `content_loc2` text,
- `content_loc3` text,
- `content_loc4` text,
- `content_loc5` text,
- `content_loc6` text,
- `content_loc7` text,
- `content_loc8` text,
- `sound` mediumint(8) unsigned NOT NULL DEFAULT '0',
- `type` tinyint(3) unsigned NOT NULL DEFAULT '0',
- `language` tinyint(3) unsigned NOT NULL DEFAULT '0',
- `emote` smallint(5) unsigned NOT NULL DEFAULT '0',
- `comment` text,
- PRIMARY KEY (`entry`)
-) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Script Texts';
-/*!40101 SET character_set_client = @saved_cs_client */;
-
---
--- Dumping data for table `creature_ai_texts`
---
-
-LOCK TABLES `creature_ai_texts` WRITE;
-/*!40000 ALTER TABLE `creature_ai_texts` DISABLE KEYS */;
-/*!40000 ALTER TABLE `creature_ai_texts` ENABLE KEYS */;
-UNLOCK TABLES;
-
---
--- Table structure for table `creature_classlevelstats`
---
-
-DROP TABLE IF EXISTS `creature_classlevelstats`;
-/*!40101 SET @saved_cs_client = @@character_set_client */;
-/*!40101 SET character_set_client = utf8 */;
-CREATE TABLE `creature_classlevelstats` (
- `level` tinyint(1) NOT NULL,
- `class` tinyint(1) NOT NULL,
- `basehp0` smallint(2) NOT NULL,
- `basehp1` smallint(2) NOT NULL,
- `basehp2` smallint(2) NOT NULL,
- `basemana` smallint(2) NOT NULL,
- `basearmor` smallint(2) NOT NULL
-) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-/*!40101 SET character_set_client = @saved_cs_client */;
-
---
--- Dumping data for table `creature_classlevelstats`;
---
-
-LOCK TABLES `creature_classlevelstats` WRITE;
-/*!40000 ALTER TABLE `creature_classlevelstats` DISABLE KEYS */;
-INSERT INTO `creature_classlevelstats` VALUES
-(2,1,55,1,1,0,20),
-(3,1,71,1,1,0,33),
-(4,1,86,1,1,0,68),
-(5,1,102,1,1,0,111),
-(6,1,120,1,1,0,165),
-(7,1,137,1,1,0,230),
-(8,1,156,1,1,0,306),
-(9,1,176,1,1,0,387),
-(10,1,198,1,1,0,463),
-(11,1,222,1,1,0,528),
-(12,1,247,1,1,0,562),
-(13,1,273,1,1,0,596),
-(14,1,300,1,1,0,630),
-(15,1,328,1,1,0,665),
-(16,1,356,1,1,0,700),
-(17,1,386,1,1,0,734),
-(18,1,417,1,1,0,768),
-(19,1,449,1,1,0,802),
-(20,1,484,1,1,0,836),
-(21,1,521,1,1,0,872),
-(22,1,562,1,1,0,906),
-(23,1,605,1,1,0,940),
-(24,1,651,1,1,0,975),
-(25,1,699,1,1,0,1008),
-(26,1,750,1,1,0,1043),
-(27,1,800,1,1,0,1078),
-(28,1,853,1,1,0,1111),
-(29,1,905,1,1,0,1145),
-(30,1,955,1,1,0,1179),
-(31,1,1006,1,1,0,1213),
-(32,1,1057,1,1,0,1249),
-(33,1,1110,1,1,0,1281),
-(34,1,1163,1,1,0,1317),
-(35,1,1220,1,1,0,1349),
-(36,1,1277,1,1,0,1456),
-(37,1,1336,1,1,0,1568),
-(38,1,1395,1,1,0,1684),
-(39,1,1459,1,1,0,1808),
-(40,1,1524,1,1,0,1938),
-(41,1,1585,1,1,0,2074),
-(42,1,1651,1,1,0,2218),
-(43,1,1716,1,1,0,2369),
-(44,1,1782,1,1,0,2528),
-(45,1,1848,1,1,0,2695),
-(46,1,1919,1,1,0,2750),
-(47,1,1990,1,1,0,2804),
-(48,1,2062,1,1,0,2857),
-(49,1,2138,1,1,0,2912),
-(50,1,2215,1,1,0,2966),
-(51,1,2292,1,1,0,3018),
-(52,1,2371,1,1,0,3060),
-(53,1,2453,1,1,0,3128),
-(54,1,2533,1,1,0,3180),
-(55,1,2614,1,1,0,3234),
-(56,1,2699,1,1,0,3289),
-(57,1,2784,1,1,0,3342),
-(58,1,2871,3989,1,0,3396),
-(59,1,2961,4142,1,0,3449),
-(60,1,3052,4979,1,0,3750),
-(61,1,3144,5158,1,0,4047),
-(62,1,3237,5341,1,0,4344),
-(63,1,3331,5527,1,0,4641),
-(64,1,3427,5715,1,0,4937),
-(65,1,3524,5914,1,0,5234),
-(66,1,3624,6116,1,0,5531),
-(67,1,3728,6326,1,0,5829),
-(68,1,3834,6542,6986,0,6126),
-(69,1,3942,6761,7984,0,6423),
-(70,1,4050,6986,8982,0,6719),
-(71,1,4163,7181,9291,0,7018),
-(72,1,4278,7380,9610,0,7318),
-(73,1,4399,7588,9940,0,7618),
-(74,1,4524,7804,10282,0,7918),
-(75,1,4652,8025,10635,0,8219),
-(76,1,4781,8247,11001,0,8520),
-(77,1,4916,8480,11379,0,8822),
-(78,1,5052,8715,11770,0,9124),
-(79,1,5194,8960,12175,0,9426),
-(80,1,5342,9215,12600,0,9729),
-(81,1,5492,9474,13033,0,10033),
-(82,1,5647,1,13481,0,10356),
-(83,1,5808,11570,13945,0,10673),
-(84,1,1,1,1,0,1),
-(85,1,1,1,1,0,1),
-(86,1,1,1,1,0,1),
-(87,1,1,1,1,0,1),
-(88,1,1,1,1,0,1),
-(89,1,1,1,1,0,1),
-(90,1,1,1,1,0,1),
-(91,1,1,1,1,0,1),
-(92,1,1,1,1,0,1),
-(93,1,1,1,1,0,1),
-(94,1,1,1,1,0,1),
-(95,1,1,1,1,0,1),
-(96,1,1,1,1,0,1),
-(97,1,1,1,1,0,1),
-(98,1,1,1,1,0,1),
-(99,1,1,1,1,0,1),
-(100,1,1,1,1,0,1),
-(1,2,41,1,1,60,7),
-(2,2,54,1,1,69,19),
-(3,2,69,1,1,79,33),
-(4,2,83,1,1,104,66),
-(5,2,98,1,1,115,109),
-(6,2,115,1,1,126,163),
-(7,2,131,1,1,138,208),
-(8,2,148,1,1,165,303),
-(9,2,166,1,1,178,369),
-(10,2,186,1,1,191,460),
-(11,2,208,1,1,205,526),
-(12,2,230,1,1,249,560),
-(13,2,253,1,1,264,596),
-(14,2,276,1,1,295,630),
-(15,2,301,1,1,326,665),
-(16,2,325,1,1,357,700),
-(17,2,350,1,1,390,734),
-(18,2,377,1,1,408,768),
-(19,2,404,1,1,456,802),
-(20,2,433,1,1,490,836),
-(21,2,464,1,1,510,872),
-(22,2,498,1,1,545,906),
-(23,2,533,1,1,581,940),
-(24,2,571,1,1,618,975),
-(25,2,610,1,1,655,1008),
-(26,2,651,1,1,693,1042),
-(27,2,690,1,1,732,1078),
-(28,2,732,1,1,756,1110),
-(29,2,773,1,1,811,1145),
-(30,2,811,1,1,852,1178),
-(31,2,850,1,1,878,1213),
-(32,2,888,1,1,935,1248),
-(33,2,928,1,1,963,1281),
-(34,2,967,1,1,1007,1316),
-(35,2,1009,1,1,1067,1349),
-(36,2,1050,1,1,1097,1455),
-(37,2,1093,1,1,1142,1567),
-(38,2,1135,1,1,1189,1683),
-(39,2,1180,1,1,1236,1807),
-(40,2,1226,1,1,1283,1937),
-(41,2,1268,1,1,1332,2072),
-(42,2,1321,1,1,1381,2216),
-(43,2,1373,1,1,1432,2367),
-(44,2,1426,1,1,1483,2527),
-(45,2,1478,1,1,1534,2692),
-(46,2,1535,1,1,1587,2749),
-(47,2,1592,1,1,1640,2802),
-(48,2,1650,1,1,1695,2855),
-(49,2,1710,1,1,1750,2910),
-(50,2,1772,1,1,1807,2964),
-(51,2,1834,1,1,1864,3017),
-(52,2,1897,1,1,1923,3072),
-(53,2,1962,1,1,1982,3126),
-(54,2,2026,1,1,2041,3178),
-(55,2,2091,1,1,2117,3232),
-(56,2,2159,1,1,2163,3287),
-(57,2,2227,1,1,2241,3340),
-(58,2,2297,3191,1,2289,3394),
-(59,2,2369,3314,1,2369,3447),
-(60,2,2442,3984,1,2434,3748),
-(61,2,2515,4126,1,2486,4044),
-(62,2,2590,4274,1,2568,4340),
-(63,2,2665,4422,1,2620,4637),
-(64,2,2740,4572,1,2705,4933),
-(65,2,2819,4731,1,2790,5228),
-(66,2,2899,6906,6116,2846,5523),
-(67,2,2982,5060,1,2933,5821),
-(68,2,3067,5233,6986,2991,6116),
-(69,2,3153,5409,7984,3080,6412),
-(70,2,3240,5589,8982,3155,6708),
-(71,2,3330,5744,9291,3231,7007),
-(72,2,3422,5903,9610,3309,7305),
-(73,2,3519,6070,9940,3387,7604),
-(74,2,3619,6243,10282,3466,7903),
-(75,2,3722,6420,10635,3561,8204),
-(76,2,3825,6602,11001,3643,8503),
-(77,2,3933,6784,11379,3725,8803),
-(78,2,4042,6972,11770,3809,9104),
-(79,2,4155,7167,12175,3893,9405),
-(80,2,4274,7373,12600,3994,9706),
-(81,2,4394,7581,13033,4081,10007),
-(82,2,4518,7794,13481,4169,10253),
-(83,2,4646,1,13945,4258,10573),
-(84,2,1,1,1,1,1),
-(85,2,1,1,1,1,1),
-(86,2,1,1,1,1,1),
-(87,2,1,1,1,1,1),
-(88,2,1,1,1,1,1),
-(89,2,1,1,1,1,1),
-(90,2,1,1,1,1,1),
-(91,2,1,1,1,1,1),
-(92,2,1,1,1,1,1),
-(93,2,1,1,1,1,1),
-(94,2,1,1,1,1,1),
-(95,2,1,1,1,1,1),
-(96,2,1,1,1,1,1),
-(97,2,1,1,1,1,1),
-(98,2,1,1,1,1,1),
-(99,2,1,1,1,1,1),
-(100,2,1,1,1,1,1),
-(1,4,42,1,1,0,6),
-(2,4,55,1,1,0,18),
-(3,4,71,1,1,0,31),
-(4,4,86,1,1,0,63),
-(5,4,102,1,1,0,102),
-(6,4,120,1,1,0,152),
-(7,4,137,1,1,0,212),
-(8,4,156,1,1,0,286),
-(9,4,176,1,1,0,363),
-(10,4,198,1,1,0,443),
-(11,4,222,1,1,0,488),
-(12,4,247,1,1,0,519),
-(13,4,273,1,1,0,553),
-(14,4,300,1,1,0,577),
-(15,4,328,1,1,0,612),
-(16,4,356,1,1,0,645),
-(17,4,386,1,1,0,676),
-(18,4,417,1,1,0,706),
-(19,4,449,1,1,0,738),
-(20,4,484,1,1,0,769),
-(21,4,521,1,1,0,801),
-(22,4,562,1,1,0,833),
-(23,4,605,1,1,0,863),
-(24,4,651,1,1,0,895),
-(25,4,699,1,1,0,926),
-(26,4,750,1,1,0,957),
-(27,4,800,1,1,0,989),
-(28,4,853,1,1,0,1020),
-(29,4,905,1,1,0,1051),
-(30,4,955,1,1,0,1082),
-(31,4,1006,1,1,0,1113),
-(32,4,1057,1,1,0,1146),
-(33,4,1110,1,1,0,1173),
-(34,4,1163,1,1,0,1208),
-(35,4,1220,1,1,0,1237),
-(36,4,1277,1,1,0,1349),
-(37,4,1336,1,1,0,1434),
-(38,4,1395,1,1,0,1538),
-(39,4,1459,1,1,0,1649),
-(40,4,1524,1,1,0,1764),
-(41,4,1585,1,1,0,1886),
-(42,4,1651,1,1,0,2015),
-(43,4,1716,1,1,0,2148),
-(44,4,1782,1,1,0,2303),
-(45,4,1848,1,1,0,2436),
-(46,4,1919,1,1,0,2485),
-(47,4,1990,1,1,0,2535),
-(48,4,2062,1,1,0,2582),
-(49,4,2138,1,1,0,2631),
-(50,4,2215,1,1,0,2680),
-(51,4,2292,1,1,0,2728),
-(52,4,2371,1,1,0,2778),
-(53,4,2453,1,1,0,2826),
-(54,4,2533,1,1,0,2874),
-(55,4,2614,1,1,0,2922),
-(56,4,2699,1,1,0,2972),
-(57,4,2784,1,1,0,3020),
-(58,4,2871,3989,1,0,3068),
-(59,4,2961,4142,1,0,3117),
-(60,4,3052,4979,1,0,3388),
-(61,4,3144,5158,1,0,3655),
-(62,4,3237,5341,1,0,3922),
-(63,4,3331,5527,1,0,4189),
-(64,4,3427,5715,1,0,4457),
-(65,4,3524,5914,1,0,4724),
-(66,4,3624,6116,1,0,5104),
-(67,4,3728,6326,1,0,5326),
-(68,4,3834,6542,6986,0,5527),
-(69,4,3942,6761,7984,0,5795),
-(70,4,4050,6986,8982,0,6062),
-(71,4,4163,7181,9291,0,6332),
-(72,4,4278,7380,9610,0,6602),
-(73,4,4399,7580,9940,0,6872),
-(74,4,4524,1,10282,0,7143),
-(75,4,4652,1,10635,0,7415),
-(76,4,4781,1,11001,0,7686),
-(77,4,4916,1,11379,0,7958),
-(78,4,5052,1,11770,0,8230),
-(79,4,5194,1,12175,0,8503),
-(80,4,5342,1,12600,0,8776),
-(81,4,5496,1,13033,0,9068),
-(82,4,5647,1,13481,0,9348),
-(83,4,5808,1,13945,0,9589),
-(84,4,1,1,1,0,1),
-(85,4,1,1,1,0,1),
-(86,4,1,1,1,0,1),
-(87,4,1,1,1,0,1),
-(88,4,1,1,1,0,1),
-(89,4,1,1,1,0,1),
-(90,4,1,1,1,0,1),
-(91,4,1,1,1,0,1),
-(92,4,1,1,1,0,1),
-(93,4,1,1,1,0,1),
-(94,4,1,1,1,0,1),
-(95,4,1,1,1,0,1),
-(96,4,1,1,1,0,1),
-(97,4,1,1,1,0,1),
-(98,4,1,1,1,0,1),
-(99,4,1,1,1,0,1),
-(100,4,1,1,1,0,1),
-(1,8,40,1,1,120,5),
-(2,8,52,1,1,147,16),
-(3,8,67,1,1,174,28),
-(4,8,81,1,1,202,57),
-(5,8,95,1,1,230,93),
-(6,8,111,1,1,259,139),
-(7,8,126,1,1,289,194),
-(8,8,143,1,1,319,265),
-(9,8,160,1,1,350,339),
-(10,8,178,1,1,382,423),
-(11,8,199,1,1,459,447),
-(12,8,219,1,1,537,475),
-(13,8,241,1,1,601,509),
-(14,8,263,1,1,710,523),
-(15,8,285,1,1,790,559),
-(16,8,307,1,1,856,589),
-(17,8,330,1,1,938,617),
-(18,8,354,1,1,1020,643),
-(19,8,379,1,1,1118,674),
-(20,8,405,1,1,1202,701),
-(21,8,432,1,1,1272,729),
-(22,8,463,1,1,1357,759),
-(23,8,494,1,1,1443,786),
-(24,8,528,1,1,1545,815),
-(25,8,562,1,1,1633,843),
-(26,8,598,1,1,1707,871),
-(27,8,633,1,1,1812,900),
-(28,8,669,1,1,1977,928),
-(29,8,704,1,1,2068,957),
-(30,8,737,1,1,2175,984),
-(31,8,770,1,1,2253,1012),
-(32,8,802,1,1,2362,1042),
-(33,8,835,1,1,2457,1065),
-(34,8,867,1,1,2553,1098),
-(35,8,902,1,1,2680,1124),
-(36,8,935,1,1,2763,1241),
-(37,8,970,1,1,2861,1300),
-(38,8,1004,1,1,2975,1391),
-(39,8,1040,1,1,3075,1489),
-(40,8,1077,1,1,3191,1590),
-(41,8,1110,1,1,3293,1697),
-(42,8,1156,1,1,3471,1811),
-(43,8,1201,1,1,3575,1926),
-(44,8,1247,1,1,3680,2078),
-(45,8,1294,1,1,3801,2177),
-(46,8,1343,1,1,3923,2220),
-(47,8,1393,1,1,4031,2265),
-(48,8,1443,1,1,4140,2307),
-(49,8,1497,1,1,4281,2349),
-(50,8,1551,1,1,4393,2393),
-(51,8,1604,1,1,4506,2437),
-(52,8,1660,1,1,4650,2481),
-(53,8,1717,1,1,4765,2524),
-(54,8,1773,1,1,4896,2567),
-(55,8,1830,1,1,5013,2609),
-(56,8,1889,1,1,5206,2654),
-(57,8,1949,1,1,5340,2698),
-(58,8,2010,2793,1,5461,2740),
-(59,8,2073,2899,1,5598,2784),
-(60,8,2136,3484,1,5751,3025),
-(61,8,2201,3611,1,5875,3263),
-(62,8,2266,3739,1,6015,3500),
-(63,8,2332,3870,1,6156,3736),
-(64,8,2399,4000,1,6229,3977),
-(65,8,2467,4731,4731,6443,4214),
-(66,8,2552,4892,4892,6588,4460),
-(67,8,2610,5060,1,6749,4710),
-(68,8,2684,4580,5588,6882,4928),
-(69,8,2759,4733,6387,7031,5167),
-(70,8,2835,4890,7185,7196,5404),
-(71,8,2914,5027,7432,7332,5645),
-(72,8,2995,5166,7688,7500,5886),
-(73,8,3098,5311,7952,7654,6126),
-(74,8,3186,1,8225,7809,6368),
-(75,8,3256,5617,8508,7981,6610),
-(76,8,3367,1,8800,8139,6851),
-(77,8,3462,1,9103,8313,7094),
-(78,8,3558,1,9416,8459,7335),
-(79,8,3658,1,9740,8636,7579),
-(80,8,3739,1,10080,8814,7822),
-(81,8,3870,1,10486,8979,8102),
-(82,8,3977,1,10784,9160,8340),
-(83,8,4090,1,11156,9325,8505),
-(84,8,1,1,1,1,1),
-(85,8,1,1,1,1,1),
-(86,8,1,1,1,1,1),
-(87,8,1,1,1,1,1),
-(88,8,1,1,1,1,1),
-(89,8,1,1,1,1,1),
-(90,8,1,1,1,1,1),
-(91,8,1,1,1,1,1),
-(92,8,1,1,1,1,1),
-(93,8,1,1,1,1,1),
-(94,8,1,1,1,1,1),
-(95,8,1,1,1,1,1),
-(96,8,1,1,1,1,1),
-(97,8,1,1,1,1,1),
-(98,8,1,1,1,1,1),
-(99,8,1,1,1,1,1),
-(100,8,1,1,1,1,1);
-/*!40000 ALTER TABLE `creature_classlevelstats` ENABLE KEYS */;
-UNLOCK TABLES;
-
---
--- Table structure for table `creature_equip_template`
---
-
-DROP TABLE IF EXISTS `creature_equip_template`;
-/*!40101 SET @saved_cs_client = @@character_set_client */;
-/*!40101 SET character_set_client = utf8 */;
-CREATE TABLE `creature_equip_template` (
- `entry` mediumint(8) unsigned NOT NULL DEFAULT '0' COMMENT 'Unique entry',
- `itemEntry1` mediumint(8) unsigned NOT NULL DEFAULT '0',
- `itemEntry2` mediumint(8) unsigned NOT NULL DEFAULT '0',
- `itemEntry3` mediumint(8) unsigned NOT NULL DEFAULT '0',
- PRIMARY KEY (`entry`)
-) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Creature System (Equipment)';
-/*!40101 SET character_set_client = @saved_cs_client */;
-
---
--- Dumping data for table `creature_equip_template`
---
-
-LOCK TABLES `creature_equip_template` WRITE;
-/*!40000 ALTER TABLE `creature_equip_template` DISABLE KEYS */;
-/*!40000 ALTER TABLE `creature_equip_template` ENABLE KEYS */;
-UNLOCK TABLES;
-
---
--- Table structure for table `creature_formations`
---
-
-DROP TABLE IF EXISTS `creature_formations`;
-/*!40101 SET @saved_cs_client = @@character_set_client */;
-/*!40101 SET character_set_client = utf8 */;
-CREATE TABLE `creature_formations` (
- `leaderGUID` int(11) unsigned NOT NULL,
- `memberGUID` int(11) unsigned NOT NULL,
- `dist` float unsigned NOT NULL,
- `angle` float unsigned NOT NULL,
- `groupAI` int(11) unsigned NOT NULL,
- PRIMARY KEY (`memberGUID`)
-) ENGINE=MyISAM DEFAULT CHARSET=latin1;
-/*!40101 SET character_set_client = @saved_cs_client */;
-
---
--- Dumping data for table `creature_formations`
---
-
-LOCK TABLES `creature_formations` WRITE;
-/*!40000 ALTER TABLE `creature_formations` DISABLE KEYS */;
-/*!40000 ALTER TABLE `creature_formations` ENABLE KEYS */;
-UNLOCK TABLES;
-
---
--- Table structure for table `creature_involvedrelation`
---
-
-DROP TABLE IF EXISTS `creature_involvedrelation`;
-/*!40101 SET @saved_cs_client = @@character_set_client */;
-/*!40101 SET character_set_client = utf8 */;
-CREATE TABLE `creature_involvedrelation` (
- `id` mediumint(8) unsigned NOT NULL DEFAULT '0' COMMENT 'Identifier',
- `quest` mediumint(8) unsigned NOT NULL DEFAULT '0' COMMENT 'Quest Identifier',
- PRIMARY KEY (`id`,`quest`)
-) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Creature System';
-/*!40101 SET character_set_client = @saved_cs_client */;
-
---
--- Dumping data for table `creature_involvedrelation`
---
-
-LOCK TABLES `creature_involvedrelation` WRITE;
-/*!40000 ALTER TABLE `creature_involvedrelation` DISABLE KEYS */;
-/*!40000 ALTER TABLE `creature_involvedrelation` ENABLE KEYS */;
-UNLOCK TABLES;
-
---
--- Table structure for table `creature_loot_template`
---
-
-DROP TABLE IF EXISTS `creature_loot_template`;
-/*!40101 SET @saved_cs_client = @@character_set_client */;
-/*!40101 SET character_set_client = utf8 */;
-CREATE TABLE `creature_loot_template` (
- `entry` mediumint(8) unsigned NOT NULL DEFAULT '0',
- `item` mediumint(8) unsigned NOT NULL DEFAULT '0',
- `ChanceOrQuestChance` float NOT NULL DEFAULT '100',
- `lootmode` smallint(5) unsigned NOT NULL DEFAULT '1',
- `groupid` tinyint(3) unsigned NOT NULL DEFAULT '0',
- `mincountOrRef` mediumint(9) NOT NULL DEFAULT '1',
- `maxcount` tinyint(3) unsigned NOT NULL DEFAULT '1',
- `lootcondition` tinyint(3) unsigned NOT NULL DEFAULT '0',
- `condition_value1` mediumint(8) unsigned NOT NULL DEFAULT '0',
- `condition_value2` mediumint(8) unsigned NOT NULL DEFAULT '0',
- PRIMARY KEY (`entry`,`item`)
-) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Loot System';
-/*!40101 SET character_set_client = @saved_cs_client */;
-
---
--- Dumping data for table `creature_loot_template`
---
-
-LOCK TABLES `creature_loot_template` WRITE;
-/*!40000 ALTER TABLE `creature_loot_template` DISABLE KEYS */;
-/*!40000 ALTER TABLE `creature_loot_template` ENABLE KEYS */;
-UNLOCK TABLES;
-
---
--- Table structure for table `creature_model_info`
---
-
-DROP TABLE IF EXISTS `creature_model_info`;
-/*!40101 SET @saved_cs_client = @@character_set_client */;
-/*!40101 SET character_set_client = utf8 */;
-CREATE TABLE `creature_model_info` (
- `modelid` mediumint(8) unsigned NOT NULL DEFAULT '0',
- `bounding_radius` float NOT NULL DEFAULT '0',
- `combat_reach` float NOT NULL DEFAULT '0',
- `gender` tinyint(3) unsigned NOT NULL DEFAULT '2',
- `modelid_other_gender` mediumint(8) unsigned NOT NULL DEFAULT '0',
- PRIMARY KEY (`modelid`)
-) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Creature System (Model related info)';
-/*!40101 SET character_set_client = @saved_cs_client */;
-
---
--- Dumping data for table `creature_model_info`
---
-
-LOCK TABLES `creature_model_info` WRITE;
-/*!40000 ALTER TABLE `creature_model_info` DISABLE KEYS */;
-/*!40000 ALTER TABLE `creature_model_info` ENABLE KEYS */;
-UNLOCK TABLES;
-
---
--- Table structure for table `creature_onkill_reputation`
---
-
-DROP TABLE IF EXISTS `creature_onkill_reputation`;
-/*!40101 SET @saved_cs_client = @@character_set_client */;
-/*!40101 SET character_set_client = utf8 */;
-CREATE TABLE `creature_onkill_reputation` (
- `creature_id` mediumint(8) unsigned NOT NULL DEFAULT '0' COMMENT 'Creature Identifier',
- `RewOnKillRepFaction1` smallint(6) NOT NULL DEFAULT '0',
- `RewOnKillRepFaction2` smallint(6) NOT NULL DEFAULT '0',
- `MaxStanding1` tinyint(4) NOT NULL DEFAULT '0',
- `IsTeamAward1` tinyint(4) NOT NULL DEFAULT '0',
- `RewOnKillRepValue1` mediumint(9) NOT NULL DEFAULT '0',
- `MaxStanding2` tinyint(4) NOT NULL DEFAULT '0',
- `IsTeamAward2` tinyint(4) NOT NULL DEFAULT '0',
- `RewOnKillRepValue2` mediumint(9) NOT NULL DEFAULT '0',
- `TeamDependent` tinyint(3) unsigned NOT NULL DEFAULT '0',
- PRIMARY KEY (`creature_id`)
-) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=DYNAMIC COMMENT='Creature OnKill Reputation gain';
-/*!40101 SET character_set_client = @saved_cs_client */;
-
---
--- Dumping data for table `creature_onkill_reputation`
---
-
-LOCK TABLES `creature_onkill_reputation` WRITE;
-/*!40000 ALTER TABLE `creature_onkill_reputation` DISABLE KEYS */;
-/*!40000 ALTER TABLE `creature_onkill_reputation` ENABLE KEYS */;
-UNLOCK TABLES;
-
---
--- Table structure for table `creature_questrelation`
---
-
-DROP TABLE IF EXISTS `creature_questrelation`;
-/*!40101 SET @saved_cs_client = @@character_set_client */;
-/*!40101 SET character_set_client = utf8 */;
-CREATE TABLE `creature_questrelation` (
- `id` mediumint(8) unsigned NOT NULL DEFAULT '0' COMMENT 'Identifier',
- `quest` mediumint(8) unsigned NOT NULL DEFAULT '0' COMMENT 'Quest Identifier',
- PRIMARY KEY (`id`,`quest`)
-) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Creature System';
-/*!40101 SET character_set_client = @saved_cs_client */;
-
---
--- Dumping data for table `creature_questrelation`
---
-
-LOCK TABLES `creature_questrelation` WRITE;
-/*!40000 ALTER TABLE `creature_questrelation` DISABLE KEYS */;
-/*!40000 ALTER TABLE `creature_questrelation` ENABLE KEYS */;
-UNLOCK TABLES;
-
---
--- Table structure for table `creature_template`
---
-
-DROP TABLE IF EXISTS `creature_template`;
-/*!40101 SET @saved_cs_client = @@character_set_client */;
-/*!40101 SET character_set_client = utf8 */;
-CREATE TABLE `creature_template` (
- `entry` mediumint(8) unsigned NOT NULL DEFAULT '0',
- `difficulty_entry_1` mediumint(8) unsigned NOT NULL DEFAULT '0',
- `difficulty_entry_2` mediumint(8) unsigned NOT NULL DEFAULT '0',
- `difficulty_entry_3` mediumint(8) unsigned NOT NULL DEFAULT '0',
- `KillCredit1` int(11) unsigned NOT NULL DEFAULT '0',
- `KillCredit2` int(11) unsigned NOT NULL DEFAULT '0',
- `modelid1` mediumint(8) unsigned NOT NULL DEFAULT '0',
- `modelid2` mediumint(8) unsigned NOT NULL DEFAULT '0',
- `modelid3` mediumint(8) unsigned NOT NULL DEFAULT '0',
- `modelid4` mediumint(8) unsigned NOT NULL DEFAULT '0',
- `name` char(100) NOT NULL DEFAULT '0',
- `subname` char(100) DEFAULT NULL,
- `IconName` char(100) DEFAULT NULL,
- `gossip_menu_id` mediumint(8) unsigned NOT NULL default '0',
- `minlevel` tinyint(3) unsigned NOT NULL DEFAULT '1',
- `maxlevel` tinyint(3) unsigned NOT NULL DEFAULT '1',
- `exp` smallint(2) NOT NULL DEFAULT '0',
- `faction_A` smallint(5) unsigned NOT NULL DEFAULT '0',
- `faction_H` smallint(5) unsigned NOT NULL DEFAULT '0',
- `npcflag` int(10) unsigned NOT NULL DEFAULT '0',
- `speed_walk` float NOT NULL default '1' COMMENT 'Result of 2.5/2.5, most common value',
- `speed_run` float NOT NULL default '1.14286' COMMENT 'Result of 8.0/7.0, most common value',
- `scale` float NOT NULL DEFAULT '1',
- `rank` tinyint(3) unsigned NOT NULL DEFAULT '0',
- `mindmg` float NOT NULL DEFAULT '0',
- `maxdmg` float NOT NULL DEFAULT '0',
- `dmgschool` tinyint(4) NOT NULL DEFAULT '0',
- `attackpower` int(10) unsigned NOT NULL DEFAULT '0',
- `dmg_multiplier` float NOT NULL DEFAULT '1',
- `baseattacktime` int(10) unsigned NOT NULL DEFAULT '0',
- `rangeattacktime` int(10) unsigned NOT NULL DEFAULT '0',
- `unit_class` tinyint(3) unsigned NOT NULL DEFAULT '0',
- `unit_flags` int(10) unsigned NOT NULL DEFAULT '0',
- `dynamicflags` int(10) unsigned NOT NULL DEFAULT '0',
- `family` tinyint(4) NOT NULL DEFAULT '0',
- `trainer_type` tinyint(4) NOT NULL DEFAULT '0',
- `trainer_spell` mediumint(8) unsigned NOT NULL DEFAULT '0',
- `trainer_class` tinyint(3) unsigned NOT NULL DEFAULT '0',
- `trainer_race` tinyint(3) unsigned NOT NULL DEFAULT '0',
- `minrangedmg` float NOT NULL DEFAULT '0',
- `maxrangedmg` float NOT NULL DEFAULT '0',
- `rangedattackpower` smallint(5) unsigned NOT NULL DEFAULT '0',
- `type` tinyint(3) unsigned NOT NULL DEFAULT '0',
- `type_flags` int(10) unsigned NOT NULL DEFAULT '0',
- `lootid` mediumint(8) unsigned NOT NULL DEFAULT '0',
- `pickpocketloot` mediumint(8) unsigned NOT NULL DEFAULT '0',
- `skinloot` mediumint(8) unsigned NOT NULL DEFAULT '0',
- `resistance1` smallint(5) NOT NULL DEFAULT '0',
- `resistance2` smallint(5) NOT NULL DEFAULT '0',
- `resistance3` smallint(5) NOT NULL DEFAULT '0',
- `resistance4` smallint(5) NOT NULL DEFAULT '0',
- `resistance5` smallint(5) NOT NULL DEFAULT '0',
- `resistance6` smallint(5) NOT NULL DEFAULT '0',
- `spell1` mediumint(8) unsigned NOT NULL DEFAULT '0',
- `spell2` mediumint(8) unsigned NOT NULL DEFAULT '0',
- `spell3` mediumint(8) unsigned NOT NULL DEFAULT '0',
- `spell4` mediumint(8) unsigned NOT NULL DEFAULT '0',
- `spell5` mediumint(8) unsigned NOT NULL DEFAULT '0',
- `spell6` mediumint(8) unsigned NOT NULL DEFAULT '0',
- `spell7` mediumint(8) unsigned NOT NULL DEFAULT '0',
- `spell8` mediumint(8) unsigned NOT NULL DEFAULT '0',
- `PetSpellDataId` mediumint(8) unsigned NOT NULL DEFAULT '0',
- `VehicleId` mediumint(8) unsigned NOT NULL DEFAULT '0',
- `mingold` mediumint(8) unsigned NOT NULL DEFAULT '0',
- `maxgold` mediumint(8) unsigned NOT NULL DEFAULT '0',
- `AIName` char(64) NOT NULL DEFAULT '',
- `MovementType` tinyint(3) unsigned NOT NULL DEFAULT '0',
- `InhabitType` tinyint(3) unsigned NOT NULL DEFAULT '3',
- `Health_mod` float NOT NULL DEFAULT '1',
- `Mana_mod` float NOT NULL DEFAULT '1',
- `Armor_mod` float NOT NULL DEFAULT '1',
- `RacialLeader` tinyint(3) unsigned NOT NULL DEFAULT '0',
- `questItem1` int(11) unsigned NOT NULL DEFAULT '0',
- `questItem2` int(11) unsigned NOT NULL DEFAULT '0',
- `questItem3` int(11) unsigned NOT NULL DEFAULT '0',
- `questItem4` int(11) unsigned NOT NULL DEFAULT '0',
- `questItem5` int(11) unsigned NOT NULL DEFAULT '0',
- `questItem6` int(11) unsigned NOT NULL DEFAULT '0',
- `movementId` int(11) unsigned NOT NULL DEFAULT '0',
- `RegenHealth` tinyint(3) unsigned NOT NULL DEFAULT '1',
- `equipment_id` mediumint(8) unsigned NOT NULL DEFAULT '0',
- `mechanic_immune_mask` int(10) unsigned NOT NULL DEFAULT '0',
- `flags_extra` int(10) unsigned NOT NULL DEFAULT '0',
- `ScriptName` char(64) NOT NULL DEFAULT '',
- `WDBVerified` smallint(5) signed DEFAULT '1',
- PRIMARY KEY (`entry`),
- KEY `idx_name` (`name`)
-) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Creature System';
-/*!40101 SET character_set_client = @saved_cs_client */;
-
---
--- Dumping data for table `creature_template`
---
-
-LOCK TABLES `creature_template` WRITE;
-/*!40000 ALTER TABLE `creature_template` DISABLE KEYS */;
-INSERT INTO `creature_template` (`entry`,`difficulty_entry_1`,`difficulty_entry_2`,`difficulty_entry_3`,`KillCredit1`,`KillCredit2`,`modelid1`,`modelid2`,`modelid3`,`modelid4`,`name`,`subname`,`IconName`,`gossip_menu_id`,`minlevel`,`maxlevel`,`exp`,`faction_A`,`faction_H`,`npcflag`,`speed_walk`,`scale`,`rank`,`mindmg`,`maxdmg`,`dmgschool`,`attackpower`,`dmg_multiplier`,`baseattacktime`,`rangeattacktime`,`unit_class`,`unit_flags`,`dynamicflags`,`family`,`trainer_type`,`trainer_spell`,`trainer_class`,`trainer_race`,`minrangedmg`,`maxrangedmg`,`rangedattackpower`,`type`,`type_flags`,`lootid`,`pickpocketloot`,`skinloot`,`resistance1`,`resistance2`,`resistance3`,`resistance4`,`resistance5`,`resistance6`,`spell1`,`spell2`,`spell3`,`spell4`,`spell5`,`spell6`,`spell7`,`spell8`,`PetSpellDataId`,`VehicleId`,`mingold`,`maxgold`,`AIName`,`MovementType`,`InhabitType`,`Health_mod`,`Mana_mod`,`Armor_mod`,`RacialLeader`,`questItem1`,`questItem2`,`questItem3`,`questItem4`,`questItem5`,`questItem6`,`movementId`,`RegenHealth`,`equipment_id`,`mechanic_immune_mask`,`flags_extra`,`ScriptName`) VALUES
-(1,0,0,0,0,0,10045,0,0,0,'Waypoint (Only GM can see it)','Visual',NULL,0,1,80,0,35,35,0,0.91,1,0,7,7,0,3,1,2000,2200,1,4096,0,0,0,0,0,0,1.76,2.42,100,8,5242886,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'',0,7,0.0125,1,1,0,0,0,0,0,0,0,0,1,0,0,130,'');
-/*!40000 ALTER TABLE `creature_template` ENABLE KEYS */;
-UNLOCK TABLES;
-
---
--- Table structure for table `creature_template_addon`
---
-
-DROP TABLE IF EXISTS `creature_template_addon`;
-/*!40101 SET @saved_cs_client = @@character_set_client */;
-/*!40101 SET character_set_client = utf8 */;
-CREATE TABLE `creature_template_addon` (
- `entry` mediumint(8) unsigned NOT NULL DEFAULT '0',
- `path_id` int(11) unsigned NOT NULL DEFAULT '0',
- `mount` mediumint(8) unsigned NOT NULL DEFAULT '0',
- `bytes1` int(10) unsigned NOT NULL DEFAULT '0',
- `bytes2` int(10) unsigned NOT NULL DEFAULT '0',
- `emote` mediumint(8) unsigned NOT NULL DEFAULT '0',
- `auras` text,
- PRIMARY KEY (`entry`)
-) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-/*!40101 SET character_set_client = @saved_cs_client */;
-
---
--- Dumping data for table `creature_template_addon`
---
-
-LOCK TABLES `creature_template_addon` WRITE;
-/*!40000 ALTER TABLE `creature_template_addon` DISABLE KEYS */;
-/*!40000 ALTER TABLE `creature_template_addon` ENABLE KEYS */;
-UNLOCK TABLES;
-
---
--- Table structure for table `creature_text`
---
-
-DROP TABLE IF EXISTS `creature_text`;
-/*!40101 SET @saved_cs_client = @@character_set_client */;
-/*!40101 SET character_set_client = utf8 */;
-CREATE TABLE `creature_text` (
- `entry` mediumint(8) unsigned NOT NULL DEFAULT '0',
- `groupid` tinyint(3) unsigned NOT NULL DEFAULT '0',
- `id` tinyint(3) unsigned NOT NULL DEFAULT '0',
- `text` longtext,
- `type` tinyint(3) unsigned NOT NULL DEFAULT '0',
- `language` tinyint(3) unsigned NOT NULL DEFAULT '0',
- `probability` float NOT NULL DEFAULT '0',
- `emote` mediumint(8) unsigned NOT NULL DEFAULT '0',
- `duration` mediumint(8) unsigned NOT NULL DEFAULT '0',
- `sound` mediumint(8) unsigned NOT NULL DEFAULT '0',
- `comment` varchar(255) DEFAULT '',
- PRIMARY KEY (`entry`,`groupid`,`id`)
-) ENGINE=InnoDB DEFAULT CHARSET=utf8;
-/*!40101 SET character_set_client = @saved_cs_client */;
-
---
--- Dumping data for table `creature_text`
---
-
-LOCK TABLES `creature_text` WRITE;
-/*!40000 ALTER TABLE `creature_text` DISABLE KEYS */;
-/*!40000 ALTER TABLE `creature_text` ENABLE KEYS */;
-UNLOCK TABLES;
-
---
--- Table structure for table `creature_transport`
---
-
-DROP TABLE IF EXISTS `creature_transport`;
-/*!40101 SET @saved_cs_client = @@character_set_client */;
-/*!40101 SET character_set_client = utf8 */;
-CREATE TABLE IF NOT EXISTS `creature_transport` (
- `guid` int(16) NOT NULL AUTO_INCREMENT COMMENT 'GUID of NPC on transport - not the same as creature.guid',
- `transport_entry` int(8) NOT NULL COMMENT 'Transport entry',
- `npc_entry` int(8) NOT NULL COMMENT 'NPC entry',
- `TransOffsetX` float NOT NULL DEFAULT '0',
- `TransOffsetY` float NOT NULL DEFAULT '0',
- `TransOffsetZ` float NOT NULL DEFAULT '0',
- `TransOffsetO` float NOT NULL DEFAULT '0',
- `emote` int(16) NOT NULL,
- PRIMARY KEY (`transport_entry`,`guid`),
- UNIQUE KEY `entry` (`transport_entry`,`guid`)
-) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1;
-/*!40101 SET character_set_client = @saved_cs_client */;
-
---
--- Dumping data for table `creature_transport`
---
-
-LOCK TABLES `creature_transport` WRITE;
-/*!40000 ALTER TABLE `creature_transport` DISABLE KEYS */;
-/*!40000 ALTER TABLE `creature_transport` ENABLE KEYS */;
-UNLOCK TABLES;
-
---
--- Table structure for table `custom_texts`
---
-
-DROP TABLE IF EXISTS `custom_texts`;
-/*!40101 SET @saved_cs_client = @@character_set_client */;
-/*!40101 SET character_set_client = utf8 */;
-CREATE TABLE `custom_texts` (
- `entry` mediumint(8) NOT NULL,
- `content_default` text NOT NULL,
- `content_loc1` text,
- `content_loc2` text,
- `content_loc3` text,
- `content_loc4` text,
- `content_loc5` text,
- `content_loc6` text,
- `content_loc7` text,
- `content_loc8` text,
- `sound` mediumint(8) unsigned NOT NULL DEFAULT '0',
- `type` tinyint(3) unsigned NOT NULL DEFAULT '0',
- `language` tinyint(3) unsigned NOT NULL DEFAULT '0',
- `emote` smallint(5) unsigned NOT NULL DEFAULT '0',
- `comment` text,
- PRIMARY KEY (`entry`)
-) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Custom Texts';
-/*!40101 SET character_set_client = @saved_cs_client */;
-
---
--- Dumping data for table `custom_texts`
---
-
-LOCK TABLES `custom_texts` WRITE;
-/*!40000 ALTER TABLE `custom_texts` DISABLE KEYS */;
-/*!40000 ALTER TABLE `custom_texts` ENABLE KEYS */;
-UNLOCK TABLES;
-
---
--- Table structure for table `db_script_string`
---
-
-DROP TABLE IF EXISTS `db_script_string`;
-/*!40101 SET @saved_cs_client = @@character_set_client */;
-/*!40101 SET character_set_client = utf8 */;
-CREATE TABLE `db_script_string` (
- `entry` int(11) unsigned NOT NULL DEFAULT '0',
- `content_default` text NOT NULL,
- `content_loc1` text,
- `content_loc2` text,
- `content_loc3` text,
- `content_loc4` text,
- `content_loc5` text,
- `content_loc6` text,
- `content_loc7` text,
- `content_loc8` text,
- PRIMARY KEY (`entry`)
-) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-/*!40101 SET character_set_client = @saved_cs_client */;
-
---
--- Dumping data for table `db_script_string`
---
-
-LOCK TABLES `db_script_string` WRITE;
-/*!40000 ALTER TABLE `db_script_string` DISABLE KEYS */;
-/*!40000 ALTER TABLE `db_script_string` ENABLE KEYS */;
-UNLOCK TABLES;
-
---
--- Table structure for table `disables`
---
-
-DROP TABLE IF EXISTS `disables`;
-/*!40101 SET @saved_cs_client = @@character_set_client */;
-/*!40101 SET character_set_client = utf8 */;
-CREATE TABLE `disables` (
- `sourceType` int(10) unsigned NOT NULL,
- `entry` int(10) unsigned NOT NULL,
- `flags` tinyint(3) unsigned NOT NULL default '0',
- `params_0` varchar(255) NOT NULL default '',
- `params_1` varchar(255) NOT NULL default '',
- `comment` varchar(255) character set utf8 NOT NULL default '',
- PRIMARY KEY (`sourceType`,`entry`)
-) ENGINE=MyISAM DEFAULT CHARSET=latin1;
-/*!40101 SET character_set_client = @saved_cs_client */;
-
---
--- Dumping data for table `disables`
---
-
-LOCK TABLES `disables` WRITE;
-/*!40000 ALTER TABLE `disables` DISABLE KEYS */;
-/*!40000 ALTER TABLE `disables` ENABLE KEYS */;
-UNLOCK TABLES;
-
---
--- Table structure for table `disenchant_loot_template`
---
-
-DROP TABLE IF EXISTS `disenchant_loot_template`;
-/*!40101 SET @saved_cs_client = @@character_set_client */;
-/*!40101 SET character_set_client = utf8 */;
-CREATE TABLE `disenchant_loot_template` (
- `entry` mediumint(8) unsigned NOT NULL DEFAULT '0' COMMENT 'Recommended id selection: item_level*100 + item_quality',
- `item` mediumint(8) unsigned NOT NULL DEFAULT '0',
- `ChanceOrQuestChance` float NOT NULL DEFAULT '100',
- `lootmode` smallint(5) unsigned NOT NULL DEFAULT '1',
- `groupid` tinyint(3) unsigned NOT NULL DEFAULT '0',
- `mincountOrRef` mediumint(9) NOT NULL DEFAULT '1',
- `maxcount` tinyint(3) unsigned NOT NULL DEFAULT '1',
- `lootcondition` tinyint(3) unsigned NOT NULL DEFAULT '0',
- `condition_value1` mediumint(8) unsigned NOT NULL DEFAULT '0',
- `condition_value2` mediumint(8) unsigned NOT NULL DEFAULT '0',
- PRIMARY KEY (`entry`,`item`)
-) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Loot System';
-/*!40101 SET character_set_client = @saved_cs_client */;
-
---
--- Dumping data for table `disenchant_loot_template`
---
-
-LOCK TABLES `disenchant_loot_template` WRITE;
-/*!40000 ALTER TABLE `disenchant_loot_template` DISABLE KEYS */;
-/*!40000 ALTER TABLE `disenchant_loot_template` ENABLE KEYS */;
-UNLOCK TABLES;
-
---
--- Table structure for table `event_scripts`
---
-
-DROP TABLE IF EXISTS `event_scripts`;
-/*!40101 SET @saved_cs_client = @@character_set_client */;
-/*!40101 SET character_set_client = utf8 */;
-CREATE TABLE `event_scripts` (
- `id` mediumint(8) unsigned NOT NULL DEFAULT '0',
- `delay` int(10) unsigned NOT NULL DEFAULT '0',
- `command` mediumint(8) unsigned NOT NULL DEFAULT '0',
- `datalong` mediumint(8) unsigned NOT NULL DEFAULT '0',
- `datalong2` int(10) unsigned NOT NULL DEFAULT '0',
- `dataint` int(11) NOT NULL DEFAULT '0',
- `x` float NOT NULL DEFAULT '0',
- `y` float NOT NULL DEFAULT '0',
- `z` float NOT NULL DEFAULT '0',
- `o` float NOT NULL DEFAULT '0'
-) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-/*!40101 SET character_set_client = @saved_cs_client */;
-
---
--- Dumping data for table `event_scripts`
---
-
-LOCK TABLES `event_scripts` WRITE;
-/*!40000 ALTER TABLE `event_scripts` DISABLE KEYS */;
-/*!40000 ALTER TABLE `event_scripts` ENABLE KEYS */;
-UNLOCK TABLES;
-
---
--- Table structure for table `exploration_basexp`
---
-
-DROP TABLE IF EXISTS `exploration_basexp`;
-/*!40101 SET @saved_cs_client = @@character_set_client */;
-/*!40101 SET character_set_client = utf8 */;
-CREATE TABLE `exploration_basexp` (
- `level` tinyint(4) unsigned NOT NULL DEFAULT '0',
- `basexp` mediumint(9) NOT NULL DEFAULT '0',
- PRIMARY KEY (`level`)
-) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Exploration System';
-/*!40101 SET character_set_client = @saved_cs_client */;
-
---
--- Dumping data for table `exploration_basexp`
---
-
-LOCK TABLES `exploration_basexp` WRITE;
-/*!40000 ALTER TABLE `exploration_basexp` DISABLE KEYS */;
-INSERT INTO `exploration_basexp` VALUES
-(0,0),
-(1,5),
-(2,15),
-(3,25),
-(4,35),
-(5,45),
-(6,55),
-(7,65),
-(8,70),
-(9,80),
-(10,85),
-(11,90),
-(12,90),
-(13,90),
-(14,100),
-(15,105),
-(16,115),
-(17,125),
-(18,135),
-(19,145),
-(20,155),
-(21,165),
-(22,175),
-(23,185),
-(24,195),
-(25,200),
-(26,210),
-(27,220),
-(28,230),
-(29,240),
-(30,245),
-(31,250),
-(32,255),
-(33,265),
-(34,270),
-(35,275),
-(36,280),
-(37,285),
-(38,285),
-(39,300),
-(40,315),
-(41,330),
-(42,345),
-(43,360),
-(44,375),
-(45,390),
-(46,405),
-(47,420),
-(48,440),
-(49,455),
-(50,470),
-(51,490),
-(52,510),
-(53,530),
-(54,540),
-(55,560),
-(56,580),
-(57,600),
-(58,620),
-(59,640),
-(60,660),
-(61,970),
-(62,1000),
-(63,1050),
-(64,1080),
-(65,1100),
-(66,1130),
-(67,1160),
-(68,1200),
-(69,1230),
-(70,1300),
-(71,1330),
-(72,1370),
-(73,1410),
-(74,1440),
-(75,1470),
-(76,1510),
-(77,1530),
-(78,1600),
-(79,1630);
-/*!40000 ALTER TABLE `exploration_basexp` ENABLE KEYS */;
-UNLOCK TABLES;
-
---
--- Table structure for table `fishing_loot_template`
---
-
-DROP TABLE IF EXISTS `fishing_loot_template`;
-/*!40101 SET @saved_cs_client = @@character_set_client */;
-/*!40101 SET character_set_client = utf8 */;
-CREATE TABLE `fishing_loot_template` (
- `entry` mediumint(8) unsigned NOT NULL DEFAULT '0',
- `item` mediumint(8) unsigned NOT NULL DEFAULT '0',
- `ChanceOrQuestChance` float NOT NULL DEFAULT '100',
- `lootmode` smallint(5) unsigned NOT NULL DEFAULT '1',
- `groupid` tinyint(3) unsigned NOT NULL DEFAULT '0',
- `mincountOrRef` mediumint(9) NOT NULL DEFAULT '1',
- `maxcount` tinyint(3) unsigned NOT NULL DEFAULT '1',
- `lootcondition` tinyint(3) unsigned NOT NULL DEFAULT '0',
- `condition_value1` mediumint(8) unsigned NOT NULL DEFAULT '0',
- `condition_value2` mediumint(8) unsigned NOT NULL DEFAULT '0',
- PRIMARY KEY (`entry`,`item`)
-) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Loot System';
-/*!40101 SET character_set_client = @saved_cs_client */;
-
---
--- Dumping data for table `fishing_loot_template`
---
-
-LOCK TABLES `fishing_loot_template` WRITE;
-/*!40000 ALTER TABLE `fishing_loot_template` DISABLE KEYS */;
-/*!40000 ALTER TABLE `fishing_loot_template` ENABLE KEYS */;
-UNLOCK TABLES;
-
---
--- Table structure for table `game_event`
---
-
-DROP TABLE IF EXISTS `game_event`;
-/*!40101 SET @saved_cs_client = @@character_set_client */;
-/*!40101 SET character_set_client = utf8 */;
-CREATE TABLE `game_event` (
- `entry` mediumint(8) unsigned NOT NULL COMMENT 'Entry of the game event',
- `start_time` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00' COMMENT 'Absolute start date, the event will never start before',
- `end_time` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00' COMMENT 'Absolute end date, the event will never start afler',
- `occurence` bigint(20) unsigned NOT NULL DEFAULT '5184000' COMMENT 'Delay in minutes between occurences of the event',
- `length` bigint(20) unsigned NOT NULL DEFAULT '2592000' COMMENT 'Length in minutes of the event',
- `holiday` mediumint(8) unsigned NOT NULL DEFAULT '0' COMMENT 'Client side holiday id',
- `description` varchar(255) DEFAULT NULL COMMENT 'Description of the event displayed in console',
- `world_event` tinyint(3) unsigned NOT NULL DEFAULT '0' COMMENT '0 if normal event, 1 if world event',
- PRIMARY KEY (`entry`)
-) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-/*!40101 SET character_set_client = @saved_cs_client */;
-
---
--- Dumping data for table `game_event`
---
-
-LOCK TABLES `game_event` WRITE;
-/*!40000 ALTER TABLE `game_event` DISABLE KEYS */;
-/*!40000 ALTER TABLE `game_event` ENABLE KEYS */;
-UNLOCK TABLES;
-
---
--- Table structure for table `game_event_battleground_holiday`
---
-
-DROP TABLE IF EXISTS `game_event_battleground_holiday`;
-/*!40101 SET @saved_cs_client = @@character_set_client */;
-/*!40101 SET character_set_client = utf8 */;
-CREATE TABLE `game_event_battleground_holiday` (
- `event` int(10) unsigned NOT NULL,
- `bgflag` int(10) unsigned NOT NULL DEFAULT '0',
- PRIMARY KEY (`event`)
-) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-/*!40101 SET character_set_client = @saved_cs_client */;
-
---
--- Dumping data for table `game_event_battleground_holiday`
---
-
-LOCK TABLES `game_event_battleground_holiday` WRITE;
-/*!40000 ALTER TABLE `game_event_battleground_holiday` DISABLE KEYS */;
-/*!40000 ALTER TABLE `game_event_battleground_holiday` ENABLE KEYS */;
-UNLOCK TABLES;
-
---
--- Table structure for table `game_event_condition`
---
-
-DROP TABLE IF EXISTS `game_event_condition`;
-/*!40101 SET @saved_cs_client = @@character_set_client */;
-/*!40101 SET character_set_client = utf8 */;
-CREATE TABLE `game_event_condition` (
- `event_id` mediumint(8) unsigned NOT NULL DEFAULT '0',
- `condition_id` mediumint(8) unsigned NOT NULL DEFAULT '0',
- `req_num` float DEFAULT '0',
- `max_world_state_field` smallint(5) unsigned NOT NULL DEFAULT '0',
- `done_world_state_field` smallint(5) unsigned NOT NULL DEFAULT '0',
- `description` varchar(25) NOT NULL DEFAULT '',
- PRIMARY KEY (`event_id`,`condition_id`)
-) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-/*!40101 SET character_set_client = @saved_cs_client */;
-
---
--- Dumping data for table `game_event_condition`
---
-
-LOCK TABLES `game_event_condition` WRITE;
-/*!40000 ALTER TABLE `game_event_condition` DISABLE KEYS */;
-/*!40000 ALTER TABLE `game_event_condition` ENABLE KEYS */;
-UNLOCK TABLES;
-
---
--- Table structure for table `game_event_creature`
---
-
-DROP TABLE IF EXISTS `game_event_creature`;
-/*!40101 SET @saved_cs_client = @@character_set_client */;
-/*!40101 SET character_set_client = utf8 */;
-CREATE TABLE `game_event_creature` (
- `guid` int(10) unsigned NOT NULL,
- `event` smallint(6) NOT NULL DEFAULT '0' COMMENT 'Put negatives values to remove during event',
- PRIMARY KEY (`guid`)
-) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-/*!40101 SET character_set_client = @saved_cs_client */;
-
---
--- Dumping data for table `game_event_creature`
---
-
-LOCK TABLES `game_event_creature` WRITE;
-/*!40000 ALTER TABLE `game_event_creature` DISABLE KEYS */;
-/*!40000 ALTER TABLE `game_event_creature` ENABLE KEYS */;
-UNLOCK TABLES;
-
---
--- Table structure for table `game_event_creature_quest`
---
-
-DROP TABLE IF EXISTS `game_event_creature_quest`;
-/*!40101 SET @saved_cs_client = @@character_set_client */;
-/*!40101 SET character_set_client = utf8 */;
-CREATE TABLE `game_event_creature_quest` (
- `id` mediumint(8) unsigned NOT NULL DEFAULT '0',
- `quest` mediumint(8) unsigned NOT NULL DEFAULT '0',
- `event` smallint(5) unsigned NOT NULL DEFAULT '0',
- PRIMARY KEY (`id`,`quest`)
-) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-/*!40101 SET character_set_client = @saved_cs_client */;
-
---
--- Dumping data for table `game_event_creature_quest`
---
-
-LOCK TABLES `game_event_creature_quest` WRITE;
-/*!40000 ALTER TABLE `game_event_creature_quest` DISABLE KEYS */;
-/*!40000 ALTER TABLE `game_event_creature_quest` ENABLE KEYS */;
-UNLOCK TABLES;
-
---
--- Table structure for table `game_event_gameobject`
---
-
-DROP TABLE IF EXISTS `game_event_gameobject`;
-/*!40101 SET @saved_cs_client = @@character_set_client */;
-/*!40101 SET character_set_client = utf8 */;
-CREATE TABLE `game_event_gameobject` (
- `guid` int(10) unsigned NOT NULL,
- `event` smallint(6) NOT NULL DEFAULT '0' COMMENT 'Put negatives values to remove during event',
- PRIMARY KEY (`guid`)
-) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-/*!40101 SET character_set_client = @saved_cs_client */;
-
---
--- Dumping data for table `game_event_gameobject`
---
-
-LOCK TABLES `game_event_gameobject` WRITE;
-/*!40000 ALTER TABLE `game_event_gameobject` DISABLE KEYS */;
-/*!40000 ALTER TABLE `game_event_gameobject` ENABLE KEYS */;
-UNLOCK TABLES;
-
---
--- Table structure for table `game_event_gameobject_quest`
---
-
-DROP TABLE IF EXISTS `game_event_gameobject_quest`;
-/*!40101 SET @saved_cs_client = @@character_set_client */;
-/*!40101 SET character_set_client = utf8 */;
-CREATE TABLE `game_event_gameobject_quest` (
- `id` mediumint(8) unsigned NOT NULL DEFAULT '0',
- `quest` mediumint(8) unsigned NOT NULL DEFAULT '0',
- `event` smallint(5) unsigned NOT NULL DEFAULT '0',
- PRIMARY KEY (`quest`,`event`,`id`)
-) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-/*!40101 SET character_set_client = @saved_cs_client */;
-
---
--- Dumping data for table `game_event_gameobject_quest`
---
-
-LOCK TABLES `game_event_gameobject_quest` WRITE;
-/*!40000 ALTER TABLE `game_event_gameobject_quest` DISABLE KEYS */;
-/*!40000 ALTER TABLE `game_event_gameobject_quest` ENABLE KEYS */;
-UNLOCK TABLES;
-
---
--- Table structure for table `game_event_model_equip`
---
-
-DROP TABLE IF EXISTS `game_event_model_equip`;
-/*!40101 SET @saved_cs_client = @@character_set_client */;
-/*!40101 SET character_set_client = utf8 */;
-CREATE TABLE `game_event_model_equip` (
- `guid` int(10) unsigned NOT NULL DEFAULT '0',
- `modelid` mediumint(8) unsigned NOT NULL DEFAULT '0',
- `equipment_id` mediumint(8) unsigned NOT NULL DEFAULT '0',
- `event` smallint(5) unsigned NOT NULL DEFAULT '0',
- PRIMARY KEY (`guid`)
-) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-/*!40101 SET character_set_client = @saved_cs_client */;
-
---
--- Dumping data for table `game_event_model_equip`
---
-
-LOCK TABLES `game_event_model_equip` WRITE;
-/*!40000 ALTER TABLE `game_event_model_equip` DISABLE KEYS */;
-/*!40000 ALTER TABLE `game_event_model_equip` ENABLE KEYS */;
-UNLOCK TABLES;
-
---
--- Table structure for table `game_event_npc_gossip`
---
-
-DROP TABLE IF EXISTS `game_event_npc_gossip`;
-/*!40101 SET @saved_cs_client = @@character_set_client */;
-/*!40101 SET character_set_client = utf8 */;
-CREATE TABLE `game_event_npc_gossip` (
- `guid` int(10) unsigned NOT NULL,
- `event_id` mediumint(8) unsigned NOT NULL DEFAULT '0',
- `textid` mediumint(8) unsigned NOT NULL DEFAULT '0',
- PRIMARY KEY (`guid`)
-) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-/*!40101 SET character_set_client = @saved_cs_client */;
-
---
--- Dumping data for table `game_event_npc_gossip`
---
-
-LOCK TABLES `game_event_npc_gossip` WRITE;
-/*!40000 ALTER TABLE `game_event_npc_gossip` DISABLE KEYS */;
-/*!40000 ALTER TABLE `game_event_npc_gossip` ENABLE KEYS */;
-UNLOCK TABLES;
-
---
--- Table structure for table `game_event_npc_vendor`
---
-
-DROP TABLE IF EXISTS `game_event_npc_vendor`;
-/*!40101 SET @saved_cs_client = @@character_set_client */;
-/*!40101 SET character_set_client = utf8 */;
-CREATE TABLE `game_event_npc_vendor` (
- `event` mediumint(8) unsigned NOT NULL DEFAULT '0',
- `guid` mediumint(8) unsigned NOT NULL DEFAULT '0',
- `slot` smallint(6) unsigned NOT NULL DEFAULT '0',
- `item` mediumint(8) NOT NULL DEFAULT '0',
- `maxcount` mediumint(8) unsigned NOT NULL DEFAULT '0',
- `incrtime` mediumint(8) unsigned NOT NULL DEFAULT '0',
- `ExtendedCost` mediumint(8) unsigned NOT NULL DEFAULT '0' COMMENT '',
- PRIMARY KEY (`guid`,`item`),
- INDEX (`slot`)
-) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-/*!40101 SET character_set_client = @saved_cs_client */;
-
---
--- Dumping data for table `game_event_npc_vendor`
---
-
-LOCK TABLES `game_event_npc_vendor` WRITE;
-/*!40000 ALTER TABLE `game_event_npc_vendor` DISABLE KEYS */;
-/*!40000 ALTER TABLE `game_event_npc_vendor` ENABLE KEYS */;
-UNLOCK TABLES;
-
---
--- Table structure for table `game_event_npcflag`
---
-
-DROP TABLE IF EXISTS `game_event_npcflag`;
-/*!40101 SET @saved_cs_client = @@character_set_client */;
-/*!40101 SET character_set_client = utf8 */;
-CREATE TABLE `game_event_npcflag` (
- `guid` mediumint(8) unsigned NOT NULL DEFAULT '0',
- `event_id` mediumint(8) unsigned NOT NULL DEFAULT '0',
- `npcflag` int(10) unsigned NOT NULL DEFAULT '0',
- PRIMARY KEY (`guid`,`event_id`)
-) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-/*!40101 SET character_set_client = @saved_cs_client */;
-
---
--- Dumping data for table `game_event_npcflag`
---
-
-LOCK TABLES `game_event_npcflag` WRITE;
-/*!40000 ALTER TABLE `game_event_npcflag` DISABLE KEYS */;
-/*!40000 ALTER TABLE `game_event_npcflag` ENABLE KEYS */;
-UNLOCK TABLES;
-
---
--- Table structure for table `game_event_pool`
---
-
-DROP TABLE IF EXISTS `game_event_pool`;
-/*!40101 SET @saved_cs_client = @@character_set_client */;
-/*!40101 SET character_set_client = utf8 */;
-CREATE TABLE `game_event_pool` (
- `pool_entry` mediumint(8) unsigned NOT NULL DEFAULT '0' COMMENT 'Id of the pool',
- `event` smallint(6) NOT NULL DEFAULT '0' COMMENT 'Put negatives values to remove during event',
- PRIMARY KEY (`pool_entry`)
-) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-/*!40101 SET character_set_client = @saved_cs_client */;
-
---
--- Dumping data for table `game_event_pool`
---
-
-LOCK TABLES `game_event_pool` WRITE;
-/*!40000 ALTER TABLE `game_event_pool` DISABLE KEYS */;
-/*!40000 ALTER TABLE `game_event_pool` ENABLE KEYS */;
-UNLOCK TABLES;
-
---
--- Table structure for table `game_event_prerequisite`
---
-
-DROP TABLE IF EXISTS `game_event_prerequisite`;
-/*!40101 SET @saved_cs_client = @@character_set_client */;
-/*!40101 SET character_set_client = utf8 */;
-CREATE TABLE `game_event_prerequisite` (
- `event_id` mediumint(8) unsigned NOT NULL,
- `prerequisite_event` mediumint(8) unsigned NOT NULL,
- PRIMARY KEY (`event_id`,`prerequisite_event`)
-) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-/*!40101 SET character_set_client = @saved_cs_client */;
-
---
--- Dumping data for table `game_event_prerequisite`
---
-
-LOCK TABLES `game_event_prerequisite` WRITE;
-/*!40000 ALTER TABLE `game_event_prerequisite` DISABLE KEYS */;
-/*!40000 ALTER TABLE `game_event_prerequisite` ENABLE KEYS */;
-UNLOCK TABLES;
-
---
--- Table structure for table `game_event_quest_condition`
---
-
-DROP TABLE IF EXISTS `game_event_quest_condition`;
-/*!40101 SET @saved_cs_client = @@character_set_client */;
-/*!40101 SET character_set_client = utf8 */;
-CREATE TABLE `game_event_quest_condition` (
- `quest` mediumint(8) unsigned NOT NULL DEFAULT '0',
- `event_id` mediumint(8) unsigned NOT NULL DEFAULT '0',
- `condition_id` mediumint(8) unsigned NOT NULL DEFAULT '0',
- `num` float DEFAULT '0',
- PRIMARY KEY (`quest`)
-) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-/*!40101 SET character_set_client = @saved_cs_client */;
-
---
--- Dumping data for table `game_event_quest_condition`
---
-
-LOCK TABLES `game_event_quest_condition` WRITE;
-/*!40000 ALTER TABLE `game_event_quest_condition` DISABLE KEYS */;
-/*!40000 ALTER TABLE `game_event_quest_condition` ENABLE KEYS */;
-UNLOCK TABLES;
-
---
--- Table structure for table `game_graveyard_zone`
---
-
-DROP TABLE IF EXISTS `game_graveyard_zone`;
-/*!40101 SET @saved_cs_client = @@character_set_client */;
-/*!40101 SET character_set_client = utf8 */;
-CREATE TABLE `game_graveyard_zone` (
- `id` mediumint(8) unsigned NOT NULL DEFAULT '0',
- `ghost_zone` mediumint(8) unsigned NOT NULL DEFAULT '0',
- `faction` smallint(5) unsigned NOT NULL DEFAULT '0',
- PRIMARY KEY (`id`,`ghost_zone`)
-) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Trigger System';
-/*!40101 SET character_set_client = @saved_cs_client */;
-
---
--- Dumping data for table `game_graveyard_zone`
---
-
-LOCK TABLES `game_graveyard_zone` WRITE;
-/*!40000 ALTER TABLE `game_graveyard_zone` DISABLE KEYS */;
-/*!40000 ALTER TABLE `game_graveyard_zone` ENABLE KEYS */;
-UNLOCK TABLES;
-
---
--- Table structure for table `game_tele`
---
-
-DROP TABLE IF EXISTS `game_tele`;
-/*!40101 SET @saved_cs_client = @@character_set_client */;
-/*!40101 SET character_set_client = utf8 */;
-CREATE TABLE `game_tele` (
- `id` mediumint(8) unsigned NOT NULL AUTO_INCREMENT,
- `position_x` float NOT NULL DEFAULT '0',
- `position_y` float NOT NULL DEFAULT '0',
- `position_z` float NOT NULL DEFAULT '0',
- `orientation` float NOT NULL DEFAULT '0',
- `map` smallint(5) unsigned NOT NULL DEFAULT '0',
- `name` varchar(100) NOT NULL DEFAULT '',
- PRIMARY KEY (`id`)
-) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Tele Command';
-/*!40101 SET character_set_client = @saved_cs_client */;
-
---
--- Dumping data for table `game_tele`
---
-
-LOCK TABLES `game_tele` WRITE;
-/*!40000 ALTER TABLE `game_tele` DISABLE KEYS */;
-/*!40000 ALTER TABLE `game_tele` ENABLE KEYS */;
-UNLOCK TABLES;
-
---
--- Table structure for table `game_weather`
---
-
-DROP TABLE IF EXISTS `game_weather`;
-/*!40101 SET @saved_cs_client = @@character_set_client */;
-/*!40101 SET character_set_client = utf8 */;
-CREATE TABLE `game_weather` (
- `zone` mediumint(8) unsigned NOT NULL DEFAULT '0',
- `spring_rain_chance` tinyint(3) unsigned NOT NULL DEFAULT '25',
- `spring_snow_chance` tinyint(3) unsigned NOT NULL DEFAULT '25',
- `spring_storm_chance` tinyint(3) unsigned NOT NULL DEFAULT '25',
- `summer_rain_chance` tinyint(3) unsigned NOT NULL DEFAULT '25',
- `summer_snow_chance` tinyint(3) unsigned NOT NULL DEFAULT '25',
- `summer_storm_chance` tinyint(3) unsigned NOT NULL DEFAULT '25',
- `fall_rain_chance` tinyint(3) unsigned NOT NULL DEFAULT '25',
- `fall_snow_chance` tinyint(3) unsigned NOT NULL DEFAULT '25',
- `fall_storm_chance` tinyint(3) unsigned NOT NULL DEFAULT '25',
- `winter_rain_chance` tinyint(3) unsigned NOT NULL DEFAULT '25',
- `winter_snow_chance` tinyint(3) unsigned NOT NULL DEFAULT '25',
- `winter_storm_chance` tinyint(3) unsigned NOT NULL DEFAULT '25',
- `ScriptName` char(64) NOT NULL DEFAULT '',
- PRIMARY KEY (`zone`)
-) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Weather System';
-/*!40101 SET character_set_client = @saved_cs_client */;
-
---
--- Dumping data for table `game_weather`
---
-
-LOCK TABLES `game_weather` WRITE;
-/*!40000 ALTER TABLE `game_weather` DISABLE KEYS */;
-/*!40000 ALTER TABLE `game_weather` ENABLE KEYS */;
-UNLOCK TABLES;
-
---
--- Table structure for table `gameobject`
---
-
-DROP TABLE IF EXISTS `gameobject`;
-/*!40101 SET @saved_cs_client = @@character_set_client */;
-/*!40101 SET character_set_client = utf8 */;
-CREATE TABLE `gameobject` (
- `guid` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Global Unique Identifier',
- `id` mediumint(8) unsigned NOT NULL DEFAULT '0' COMMENT 'Gameobject Identifier',
- `map` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Map Identifier',
- `spawnMask` tinyint(3) unsigned NOT NULL DEFAULT '1',
- `phaseMask` smallint(5) unsigned NOT NULL DEFAULT '1',
- `position_x` float NOT NULL DEFAULT '0',
- `position_y` float NOT NULL DEFAULT '0',
- `position_z` float NOT NULL DEFAULT '0',
- `orientation` float NOT NULL DEFAULT '0',
- `rotation0` float NOT NULL DEFAULT '0',
- `rotation1` float NOT NULL DEFAULT '0',
- `rotation2` float NOT NULL DEFAULT '0',
- `rotation3` float NOT NULL DEFAULT '0',
- `spawntimesecs` int(11) NOT NULL DEFAULT '0',
- `animprogress` tinyint(3) unsigned NOT NULL DEFAULT '0',
- `state` tinyint(3) unsigned NOT NULL DEFAULT '0',
- PRIMARY KEY (`guid`)
-) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Gameobject System';
-/*!40101 SET character_set_client = @saved_cs_client */;
-
-ALTER TABLE `gameobject` AUTO_INCREMENT=200001;
-
---
--- Dumping data for table `gameobject`
---
-
-LOCK TABLES `gameobject` WRITE;
-/*!40000 ALTER TABLE `gameobject` DISABLE KEYS */;
-/*!40000 ALTER TABLE `gameobject` ENABLE KEYS */;
-UNLOCK TABLES;
-
---
--- Table structure for table `gameobject_involvedrelation`
---
-
-DROP TABLE IF EXISTS `gameobject_involvedrelation`;
-/*!40101 SET @saved_cs_client = @@character_set_client */;
-/*!40101 SET character_set_client = utf8 */;
-CREATE TABLE `gameobject_involvedrelation` (
- `id` mediumint(8) unsigned NOT NULL DEFAULT '0',
- `quest` mediumint(8) unsigned NOT NULL DEFAULT '0' COMMENT 'Quest Identifier',
- PRIMARY KEY (`id`,`quest`)
-) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-/*!40101 SET character_set_client = @saved_cs_client */;
-
---
--- Dumping data for table `gameobject_involvedrelation`
---
-
-LOCK TABLES `gameobject_involvedrelation` WRITE;
-/*!40000 ALTER TABLE `gameobject_involvedrelation` DISABLE KEYS */;
-/*!40000 ALTER TABLE `gameobject_involvedrelation` ENABLE KEYS */;
-UNLOCK TABLES;
-
---
--- Table structure for table `gameobject_loot_template`
---
-
-DROP TABLE IF EXISTS `gameobject_loot_template`;
-/*!40101 SET @saved_cs_client = @@character_set_client */;
-/*!40101 SET character_set_client = utf8 */;
-CREATE TABLE `gameobject_loot_template` (
- `entry` mediumint(8) unsigned NOT NULL DEFAULT '0',
- `item` mediumint(8) unsigned NOT NULL DEFAULT '0',
- `ChanceOrQuestChance` float NOT NULL DEFAULT '100',
- `lootmode` smallint(5) unsigned NOT NULL DEFAULT '1',
- `groupid` tinyint(3) unsigned NOT NULL DEFAULT '0',
- `mincountOrRef` mediumint(9) NOT NULL DEFAULT '1',
- `maxcount` tinyint(3) unsigned NOT NULL DEFAULT '1',
- `lootcondition` tinyint(3) unsigned NOT NULL DEFAULT '0',
- `condition_value1` mediumint(8) unsigned NOT NULL DEFAULT '0',
- `condition_value2` mediumint(8) unsigned NOT NULL DEFAULT '0',
- PRIMARY KEY (`entry`,`item`)
-) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Loot System';
-/*!40101 SET character_set_client = @saved_cs_client */;
-
---
--- Dumping data for table `gameobject_loot_template`
---
-
-LOCK TABLES `gameobject_loot_template` WRITE;
-/*!40000 ALTER TABLE `gameobject_loot_template` DISABLE KEYS */;
-/*!40000 ALTER TABLE `gameobject_loot_template` ENABLE KEYS */;
-UNLOCK TABLES;
-
---
--- Table structure for table `gameobject_questrelation`
---
-
-DROP TABLE IF EXISTS `gameobject_questrelation`;
-/*!40101 SET @saved_cs_client = @@character_set_client */;
-/*!40101 SET character_set_client = utf8 */;
-CREATE TABLE `gameobject_questrelation` (
- `id` mediumint(8) unsigned NOT NULL DEFAULT '0',
- `quest` mediumint(8) unsigned NOT NULL DEFAULT '0' COMMENT 'Quest Identifier',
- PRIMARY KEY (`id`,`quest`)
-) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-/*!40101 SET character_set_client = @saved_cs_client */;
-
---
--- Dumping data for table `gameobject_questrelation`
---
-
-LOCK TABLES `gameobject_questrelation` WRITE;
-/*!40000 ALTER TABLE `gameobject_questrelation` DISABLE KEYS */;
-/*!40000 ALTER TABLE `gameobject_questrelation` ENABLE KEYS */;
-UNLOCK TABLES;
-
---
--- Table structure for table `gameobject_scripts`
---
-
-DROP TABLE IF EXISTS `gameobject_scripts`;
-/*!40101 SET @saved_cs_client = @@character_set_client */;
-/*!40101 SET character_set_client = utf8 */;
-CREATE TABLE `gameobject_scripts` (
- `id` mediumint(8) unsigned NOT NULL DEFAULT '0',
- `delay` int(10) unsigned NOT NULL DEFAULT '0',
- `command` mediumint(8) unsigned NOT NULL DEFAULT '0',
- `datalong` mediumint(8) unsigned NOT NULL DEFAULT '0',
- `datalong2` int(10) unsigned NOT NULL DEFAULT '0',
- `dataint` int(11) NOT NULL DEFAULT '0',
- `x` float NOT NULL DEFAULT '0',
- `y` float NOT NULL DEFAULT '0',
- `z` float NOT NULL DEFAULT '0',
- `o` float NOT NULL DEFAULT '0'
-) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-/*!40101 SET character_set_client = @saved_cs_client */;
-
---
--- Dumping data for table `gameobject_scripts`
---
-
-LOCK TABLES `gameobject_scripts` WRITE;
-/*!40000 ALTER TABLE `gameobject_scripts` DISABLE KEYS */;
-/*!40000 ALTER TABLE `gameobject_scripts` ENABLE KEYS */;
-UNLOCK TABLES;
-
---
--- Table structure for table `gameobject_template`
---
-
-DROP TABLE IF EXISTS `gameobject_template`;
-/*!40101 SET @saved_cs_client = @@character_set_client */;
-/*!40101 SET character_set_client = utf8 */;
-CREATE TABLE `gameobject_template` (
- `entry` mediumint(8) unsigned NOT NULL DEFAULT '0',
- `type` tinyint(3) unsigned NOT NULL DEFAULT '0',
- `displayId` mediumint(8) unsigned NOT NULL DEFAULT '0',
- `name` varchar(100) NOT NULL DEFAULT '',
- `IconName` varchar(100) NOT NULL DEFAULT '',
- `castBarCaption` varchar(100) NOT NULL DEFAULT '',
- `unk1` varchar(100) NOT NULL DEFAULT '',
- `faction` smallint(5) unsigned NOT NULL DEFAULT '0',
- `flags` int(10) unsigned NOT NULL DEFAULT '0',
- `size` float NOT NULL DEFAULT '1',
- `questItem1` int(11) unsigned NOT NULL DEFAULT '0',
- `questItem2` int(11) unsigned NOT NULL DEFAULT '0',
- `questItem3` int(11) unsigned NOT NULL DEFAULT '0',
- `questItem4` int(11) unsigned NOT NULL DEFAULT '0',
- `questItem5` int(11) unsigned NOT NULL DEFAULT '0',
- `questItem6` int(11) unsigned NOT NULL DEFAULT '0',
- `data0` int(10) unsigned NOT NULL DEFAULT '0',
- `data1` int(11) signed NOT NULL DEFAULT '-1',
- `data2` int(10) unsigned NOT NULL DEFAULT '0',
- `data3` int(10) unsigned NOT NULL DEFAULT '0',
- `data4` int(10) unsigned NOT NULL DEFAULT '0',
- `data5` int(10) unsigned NOT NULL DEFAULT '0',
- `data6` int(11) signed NOT NULL DEFAULT '-1',
- `data7` int(10) unsigned NOT NULL DEFAULT '0',
- `data8` int(10) unsigned NOT NULL DEFAULT '0',
- `data9` int(10) unsigned NOT NULL DEFAULT '0',
- `data10` int(10) unsigned NOT NULL DEFAULT '0',
- `data11` int(10) unsigned NOT NULL DEFAULT '0',
- `data12` int(10) unsigned NOT NULL DEFAULT '0',
- `data13` int(10) unsigned NOT NULL DEFAULT '0',
- `data14` int(10) unsigned NOT NULL DEFAULT '0',
- `data15` int(10) unsigned NOT NULL DEFAULT '0',
- `data16` int(10) unsigned NOT NULL DEFAULT '0',
- `data17` int(10) unsigned NOT NULL DEFAULT '0',
- `data18` int(10) unsigned NOT NULL DEFAULT '0',
- `data19` int(10) unsigned NOT NULL DEFAULT '0',
- `data20` int(10) unsigned NOT NULL DEFAULT '0',
- `data21` int(10) unsigned NOT NULL DEFAULT '0',
- `data22` int(10) unsigned NOT NULL DEFAULT '0',
- `data23` int(10) unsigned NOT NULL DEFAULT '0',
- `AIName` char(64) NOT NULL DEFAULT '',
- `ScriptName` varchar(64) NOT NULL DEFAULT '',
- `WDBVerified` smallint(5) signed DEFAULT '1',
- PRIMARY KEY (`entry`),
- KEY `idx_name` (`name`)
-) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Gameobject System';
-/*!40101 SET character_set_client = @saved_cs_client */;
-
---
--- Dumping data for table `gameobject_template`
---
-
-LOCK TABLES `gameobject_template` WRITE;
-/*!40000 ALTER TABLE `gameobject_template` DISABLE KEYS */;
-/*!40000 ALTER TABLE `gameobject_template` ENABLE KEYS */;
-UNLOCK TABLES;
-
---
--- Table structure for table `gossip_menu`
---
-
-DROP TABLE IF EXISTS `gossip_menu`;
-/*!40101 SET @saved_cs_client = @@character_set_client */;
-/*!40101 SET character_set_client = utf8 */;
-CREATE TABLE `gossip_menu` (
- entry smallint(6) unsigned NOT NULL default '0',
- text_id mediumint(8) unsigned NOT NULL default '0',
- PRIMARY KEY (entry, text_id)
-) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-/*!40101 SET character_set_client = @saved_cs_client */;
-
---
--- Dumping data for table `gossip_menu`
---
-
-LOCK TABLES `gossip_menu` WRITE;
-/*!40000 ALTER TABLE `gossip_menu` DISABLE KEYS */;
-/*!40000 ALTER TABLE `gossip_menu` ENABLE KEYS */;
-UNLOCK TABLES;
-
---
--- Table structure for table `gossip_menu_option`
---
-
-DROP TABLE IF EXISTS `gossip_menu_option`;
-/*!40101 SET @saved_cs_client = @@character_set_client */;
-/*!40101 SET character_set_client = utf8 */;
-CREATE TABLE gossip_menu_option (
- menu_id smallint(6) unsigned NOT NULL default '0',
- id smallint(6) unsigned NOT NULL default '0',
- option_icon mediumint(8) unsigned NOT NULL default '0',
- option_text text,
- option_id tinyint(3) unsigned NOT NULL default '0',
- npc_option_npcflag int(10) unsigned NOT NULL default '0',
- action_menu_id mediumint(8) unsigned NOT NULL default '0',
- action_poi_id mediumint(8) unsigned NOT NULL default '0',
- box_coded tinyint(3) unsigned NOT NULL default '0',
- box_money int(11) unsigned NOT NULL default '0',
- box_text text,
- PRIMARY KEY (menu_id, id)
-) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-/*!40101 SET character_set_client = @saved_cs_client */;
-
---
--- Dumping data for table `gossip_menu_option`
---
-
-LOCK TABLES `gossip_menu_option` WRITE;
-/*!40000 ALTER TABLE `gossip_menu_option` DISABLE KEYS */;
-/*!40000 ALTER TABLE `gossip_menu_option` ENABLE KEYS */;
-UNLOCK TABLES;
-
---
--- Table structure for table `instance_encounters`
---
-
-DROP TABLE IF EXISTS `instance_encounters`;
-/*!40101 SET @saved_cs_client = @@character_set_client */;
-/*!40101 SET character_set_client = utf8 */;
-CREATE TABLE `instance_encounters` (
- `entry` int(10) unsigned NOT NULL COMMENT 'Unique entry from DungeonEncounter.dbc',
- `creditType` tinyint(3) unsigned NOT NULL DEFAULT '0',
- `creditEntry` int(10) unsigned NOT NULL DEFAULT '0',
- `lastEncounterDungeon` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'If not 0, LfgDungeon.dbc entry for the instance it is last encounter in',
- `comment` varchar(255) NOT NULL DEFAULT '',
- PRIMARY KEY (`entry`)
-) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-/*!40101 SET character_set_client = @saved_cs_client */;
-
---
--- Dumping data for table `instance_encounters`
---
-
-LOCK TABLES `instance_encounters` WRITE;
-/*!40000 ALTER TABLE `instance_encounters` DISABLE KEYS */;
-/*!40000 ALTER TABLE `instance_encounters` ENABLE KEYS */;
-UNLOCK TABLES;
-
---
--- Table structure for table `instance_template`
---
-
-DROP TABLE IF EXISTS `instance_template`;
-/*!40101 SET @saved_cs_client = @@character_set_client */;
-/*!40101 SET character_set_client = utf8 */;
-CREATE TABLE `instance_template` (
- `map` smallint(5) unsigned NOT NULL,
- `parent` smallint(5) unsigned NOT NULL,
- `script` varchar(128) NOT NULL DEFAULT '',
- `allowMount` tinyint(1) NOT NULL DEFAULT '0',
- PRIMARY KEY (`map`)
-) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-/*!40101 SET character_set_client = @saved_cs_client */;
-
---
--- Dumping data for table `instance_template`
---
-
-LOCK TABLES `instance_template` WRITE;
-/*!40000 ALTER TABLE `instance_template` DISABLE KEYS */;
-/*!40000 ALTER TABLE `instance_template` ENABLE KEYS */;
-UNLOCK TABLES;
-
---
--- Table structure for table `item_enchantment_template`
---
-
-DROP TABLE IF EXISTS `item_enchantment_template`;
-/*!40101 SET @saved_cs_client = @@character_set_client */;
-/*!40101 SET character_set_client = utf8 */;
-CREATE TABLE `item_enchantment_template` (
- `entry` mediumint(8) unsigned NOT NULL DEFAULT '0',
- `ench` mediumint(8) unsigned NOT NULL DEFAULT '0',
- `chance` float unsigned NOT NULL DEFAULT '0',
- PRIMARY KEY (`entry`,`ench`)
-) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Item Random Enchantment System';
-/*!40101 SET character_set_client = @saved_cs_client */;
-
---
--- Dumping data for table `item_enchantment_template`
---
-
-LOCK TABLES `item_enchantment_template` WRITE;
-/*!40000 ALTER TABLE `item_enchantment_template` DISABLE KEYS */;
-/*!40000 ALTER TABLE `item_enchantment_template` ENABLE KEYS */;
-UNLOCK TABLES;
-
---
--- Table structure for table `item_loot_template`
---
-
-DROP TABLE IF EXISTS `item_loot_template`;
-/*!40101 SET @saved_cs_client = @@character_set_client */;
-/*!40101 SET character_set_client = utf8 */;
-CREATE TABLE `item_loot_template` (
- `entry` mediumint(8) unsigned NOT NULL DEFAULT '0',
- `item` mediumint(8) unsigned NOT NULL DEFAULT '0',
- `ChanceOrQuestChance` float NOT NULL DEFAULT '100',
- `lootmode` smallint(5) unsigned NOT NULL DEFAULT '1',
- `groupid` tinyint(3) unsigned NOT NULL DEFAULT '0',
- `mincountOrRef` mediumint(9) NOT NULL DEFAULT '1',
- `maxcount` smallint(5) unsigned NOT NULL DEFAULT '1',
- `lootcondition` tinyint(3) unsigned NOT NULL DEFAULT '0',
- `condition_value1` mediumint(8) unsigned NOT NULL DEFAULT '0',
- `condition_value2` mediumint(8) unsigned NOT NULL DEFAULT '0',
- PRIMARY KEY (`entry`,`item`)
-) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Loot System';
-/*!40101 SET character_set_client = @saved_cs_client */;
-
---
--- Dumping data for table `item_loot_template`
---
-
-LOCK TABLES `item_loot_template` WRITE;
-/*!40000 ALTER TABLE `item_loot_template` DISABLE KEYS */;
-/*!40000 ALTER TABLE `item_loot_template` ENABLE KEYS */;
-UNLOCK TABLES;
-
---
--- Table structure for table `item_set_names`
---
-
-DROP TABLE IF EXISTS `item_set_names`;
-/*!40101 SET @saved_cs_client = @@character_set_client */;
-/*!40101 SET character_set_client = utf8 */;
-CREATE TABLE `item_set_names` (
- `entry` mediumint(8) unsigned NOT NULL,
- `name` varchar(255) character set utf8 NOT NULL default '',
- `InventoryType` tinyint(3) unsigned NOT NULL default '0',
- `WDBVerified` smallint(5) signed NOT NULL DEFAULT '1',
- PRIMARY KEY (`entry`)
-) ENGINE=MyISAM DEFAULT CHARSET=latin1;
-/*!40101 SET character_set_client = @saved_cs_client */;
-
---
--- Dumping data for table `item_set_names`
---
-
-LOCK TABLES `item_set_names` WRITE;
-/*!40000 ALTER TABLE `item_set_names` DISABLE KEYS */;
-/*!40000 ALTER TABLE `item_set_names` ENABLE KEYS */;
-UNLOCK TABLES;
-
---
--- Table structure for table `item_required_target`
---
-
-DROP TABLE IF EXISTS `item_required_target`;
-/*!40101 SET @saved_cs_client = @@character_set_client */;
-/*!40101 SET character_set_client = utf8 */;
-CREATE TABLE `item_required_target` (
- `entry` mediumint(8) unsigned NOT NULL,
- `type` tinyint(3) unsigned NOT NULL DEFAULT '0',
- `targetEntry` mediumint(8) unsigned NOT NULL DEFAULT '0',
- UNIQUE KEY `entry_type_target` (`entry`,`type`,`targetEntry`)
-) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED;
-/*!40101 SET character_set_client = @saved_cs_client */;
-
---
--- Dumping data for table `item_required_target`
---
-
-LOCK TABLES `item_required_target` WRITE;
-/*!40000 ALTER TABLE `item_required_target` DISABLE KEYS */;
-/*!40000 ALTER TABLE `item_required_target` ENABLE KEYS */;
-UNLOCK TABLES;
-
---
--- Table structure for table `item_template`
---
-
-DROP TABLE IF EXISTS `item_template`;
-/*!40101 SET @saved_cs_client = @@character_set_client */;
-/*!40101 SET character_set_client = utf8 */;
-CREATE TABLE `item_template` (
- `entry` mediumint(8) unsigned NOT NULL DEFAULT '0',
- `class` tinyint(3) unsigned NOT NULL DEFAULT '0',
- `subclass` tinyint(3) unsigned NOT NULL DEFAULT '0',
- `unk0` int(11) NOT NULL DEFAULT '-1',
- `name` varchar(255) NOT NULL DEFAULT '',
- `displayid` mediumint(8) unsigned NOT NULL DEFAULT '0',
- `Quality` tinyint(3) unsigned NOT NULL DEFAULT '0',
- `Flags` bigint(20) signed NOT NULL DEFAULT '0',
- `FlagsExtra` int(10) unsigned NOT NULL DEFAULT '0',
- `BuyCount` tinyint(3) unsigned NOT NULL DEFAULT '1',
- `BuyPrice` bigint(20) signed NOT NULL DEFAULT '0',
- `SellPrice` int(10) unsigned NOT NULL DEFAULT '0',
- `InventoryType` tinyint(3) unsigned NOT NULL DEFAULT '0',
- `AllowableClass` int(11) NOT NULL DEFAULT '-1',
- `AllowableRace` int(11) NOT NULL DEFAULT '-1',
- `ItemLevel` smallint(5) unsigned NOT NULL DEFAULT '0',
- `RequiredLevel` tinyint(3) unsigned NOT NULL DEFAULT '0',
- `RequiredSkill` smallint(5) unsigned NOT NULL DEFAULT '0',
- `RequiredSkillRank` smallint(5) unsigned NOT NULL DEFAULT '0',
- `requiredspell` mediumint(8) unsigned NOT NULL DEFAULT '0',
- `requiredhonorrank` mediumint(8) unsigned NOT NULL DEFAULT '0',
- `RequiredCityRank` mediumint(8) unsigned NOT NULL DEFAULT '0',
- `RequiredReputationFaction` smallint(5) unsigned NOT NULL DEFAULT '0',
- `RequiredReputationRank` smallint(5) unsigned NOT NULL DEFAULT '0',
- `maxcount` int(11) signed NOT NULL DEFAULT '0',
- `stackable` int(11) signed NOT NULL DEFAULT '1',
- `ContainerSlots` tinyint(3) unsigned NOT NULL DEFAULT '0',
- `StatsCount` tinyint(3) unsigned NOT NULL DEFAULT '0',
- `stat_type1` tinyint(3) unsigned NOT NULL DEFAULT '0',
- `stat_value1` smallint(6) NOT NULL DEFAULT '0',
- `stat_type2` tinyint(3) unsigned NOT NULL DEFAULT '0',
- `stat_value2` smallint(6) NOT NULL DEFAULT '0',
- `stat_type3` tinyint(3) unsigned NOT NULL DEFAULT '0',
- `stat_value3` smallint(6) NOT NULL DEFAULT '0',
- `stat_type4` tinyint(3) unsigned NOT NULL DEFAULT '0',
- `stat_value4` smallint(6) NOT NULL DEFAULT '0',
- `stat_type5` tinyint(3) unsigned NOT NULL DEFAULT '0',
- `stat_value5` smallint(6) NOT NULL DEFAULT '0',
- `stat_type6` tinyint(3) unsigned NOT NULL DEFAULT '0',
- `stat_value6` smallint(6) NOT NULL DEFAULT '0',
- `stat_type7` tinyint(3) unsigned NOT NULL DEFAULT '0',
- `stat_value7` smallint(6) NOT NULL DEFAULT '0',
- `stat_type8` tinyint(3) unsigned NOT NULL DEFAULT '0',
- `stat_value8` smallint(6) NOT NULL DEFAULT '0',
- `stat_type9` tinyint(3) unsigned NOT NULL DEFAULT '0',
- `stat_value9` smallint(6) NOT NULL DEFAULT '0',
- `stat_type10` tinyint(3) unsigned NOT NULL DEFAULT '0',
- `stat_value10` smallint(6) NOT NULL DEFAULT '0',
- `ScalingStatDistribution` smallint(6) NOT NULL DEFAULT '0',
- `ScalingStatValue` int(6) unsigned NOT NULL DEFAULT '0',
- `dmg_min1` float NOT NULL DEFAULT '0',
- `dmg_max1` float NOT NULL DEFAULT '0',
- `dmg_type1` tinyint(3) unsigned NOT NULL DEFAULT '0',
- `dmg_min2` float NOT NULL DEFAULT '0',
- `dmg_max2` float NOT NULL DEFAULT '0',
- `dmg_type2` tinyint(3) unsigned NOT NULL DEFAULT '0',
- `armor` smallint(5) unsigned NOT NULL DEFAULT '0',
- `holy_res` tinyint(3) unsigned NOT NULL DEFAULT '0',
- `fire_res` tinyint(3) unsigned NOT NULL DEFAULT '0',
- `nature_res` tinyint(3) unsigned NOT NULL DEFAULT '0',
- `frost_res` tinyint(3) unsigned NOT NULL DEFAULT '0',
- `shadow_res` tinyint(3) unsigned NOT NULL DEFAULT '0',
- `arcane_res` tinyint(3) unsigned NOT NULL DEFAULT '0',
- `delay` smallint(5) unsigned NOT NULL DEFAULT '1000',
- `ammo_type` tinyint(3) unsigned NOT NULL DEFAULT '0',
- `RangedModRange` float NOT NULL DEFAULT '0',
- `spellid_1` mediumint(8) signed NOT NULL DEFAULT '0',
- `spelltrigger_1` tinyint(3) unsigned NOT NULL DEFAULT '0',
- `spellcharges_1` smallint(4) NOT NULL DEFAULT '0',
- `spellppmRate_1` float NOT NULL DEFAULT '0',
- `spellcooldown_1` int(11) NOT NULL DEFAULT '-1',
- `spellcategory_1` smallint(5) unsigned NOT NULL DEFAULT '0',
- `spellcategorycooldown_1` int(11) NOT NULL DEFAULT '-1',
- `spellid_2` mediumint(8) signed NOT NULL DEFAULT '0',
- `spelltrigger_2` tinyint(3) unsigned NOT NULL DEFAULT '0',
- `spellcharges_2` smallint(4) NOT NULL DEFAULT '0',
- `spellppmRate_2` float NOT NULL DEFAULT '0',
- `spellcooldown_2` int(11) NOT NULL DEFAULT '-1',
- `spellcategory_2` smallint(5) unsigned NOT NULL DEFAULT '0',
- `spellcategorycooldown_2` int(11) NOT NULL DEFAULT '-1',
- `spellid_3` mediumint(8) signed NOT NULL DEFAULT '0',
- `spelltrigger_3` tinyint(3) unsigned NOT NULL DEFAULT '0',
- `spellcharges_3` smallint(4) NOT NULL DEFAULT '0',
- `spellppmRate_3` float NOT NULL DEFAULT '0',
- `spellcooldown_3` int(11) NOT NULL DEFAULT '-1',
- `spellcategory_3` smallint(5) unsigned NOT NULL DEFAULT '0',
- `spellcategorycooldown_3` int(11) NOT NULL DEFAULT '-1',
- `spellid_4` mediumint(8) signed NOT NULL DEFAULT '0',
- `spelltrigger_4` tinyint(3) unsigned NOT NULL DEFAULT '0',
- `spellcharges_4` smallint(4) NOT NULL DEFAULT '0',
- `spellppmRate_4` float NOT NULL DEFAULT '0',
- `spellcooldown_4` int(11) NOT NULL DEFAULT '-1',
- `spellcategory_4` smallint(5) unsigned NOT NULL DEFAULT '0',
- `spellcategorycooldown_4` int(11) NOT NULL DEFAULT '-1',
- `spellid_5` mediumint(8) signed NOT NULL DEFAULT '0',
- `spelltrigger_5` tinyint(3) unsigned NOT NULL DEFAULT '0',
- `spellcharges_5` smallint(4) NOT NULL DEFAULT '0',
- `spellppmRate_5` float NOT NULL DEFAULT '0',
- `spellcooldown_5` int(11) NOT NULL DEFAULT '-1',
- `spellcategory_5` smallint(5) unsigned NOT NULL DEFAULT '0',
- `spellcategorycooldown_5` int(11) NOT NULL DEFAULT '-1',
- `bonding` tinyint(3) unsigned NOT NULL DEFAULT '0',
- `description` varchar(255) NOT NULL DEFAULT '',
- `PageText` mediumint(8) unsigned NOT NULL DEFAULT '0',
- `LanguageID` tinyint(3) unsigned NOT NULL DEFAULT '0',
- `PageMaterial` tinyint(3) unsigned NOT NULL DEFAULT '0',
- `startquest` mediumint(8) unsigned NOT NULL DEFAULT '0',
- `lockid` mediumint(8) unsigned NOT NULL DEFAULT '0',
- `Material` tinyint(4) NOT NULL DEFAULT '0',
- `sheath` tinyint(3) unsigned NOT NULL DEFAULT '0',
- `RandomProperty` mediumint(8) signed NOT NULL DEFAULT '0',
- `RandomSuffix` mediumint(8) unsigned NOT NULL DEFAULT '0',
- `block` mediumint(8) unsigned NOT NULL DEFAULT '0',
- `itemset` mediumint(8) unsigned NOT NULL DEFAULT '0',
- `MaxDurability` smallint(5) unsigned NOT NULL DEFAULT '0',
- `area` mediumint(8) unsigned NOT NULL DEFAULT '0',
- `Map` smallint(6) NOT NULL DEFAULT '0',
- `BagFamily` mediumint(9) NOT NULL DEFAULT '0',
- `TotemCategory` mediumint(9) NOT NULL DEFAULT '0',
- `socketColor_1` tinyint(4) NOT NULL DEFAULT '0',
- `socketContent_1` mediumint(9) NOT NULL DEFAULT '0',
- `socketColor_2` tinyint(4) NOT NULL DEFAULT '0',
- `socketContent_2` mediumint(9) NOT NULL DEFAULT '0',
- `socketColor_3` tinyint(4) NOT NULL DEFAULT '0',
- `socketContent_3` mediumint(9) NOT NULL DEFAULT '0',
- `socketBonus` mediumint(9) NOT NULL DEFAULT '0',
- `GemProperties` mediumint(9) NOT NULL DEFAULT '0',
- `RequiredDisenchantSkill` smallint(6) NOT NULL DEFAULT '-1',
- `ArmorDamageModifier` float NOT NULL DEFAULT '0',
- `Duration` int(11) NOT NULL DEFAULT '0' COMMENT 'Duration in seconds. Negative value means realtime, postive value ingame time',
- `ItemLimitCategory` smallint(6) NOT NULL DEFAULT '0',
- `HolidayId` int(11) unsigned NOT NULL DEFAULT '0',
- `ScriptName` varchar(64) NOT NULL DEFAULT '',
- `DisenchantID` mediumint(8) unsigned NOT NULL DEFAULT '0',
- `FoodType` tinyint(3) unsigned NOT NULL DEFAULT '0',
- `minMoneyLoot` int(10) unsigned NOT NULL DEFAULT '0',
- `maxMoneyLoot` int(10) unsigned NOT NULL DEFAULT '0',
- `WDBVerified` smallint(5) signed DEFAULT '1',
- PRIMARY KEY (`entry`),
- KEY `idx_name` (`name`),
- KEY `items_index` (`class`)
-) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Item System';
-/*!40101 SET character_set_client = @saved_cs_client */;
-
---
--- Dumping data for table `item_template`
---
-
-LOCK TABLES `item_template` WRITE;
-/*!40000 ALTER TABLE `item_template` DISABLE KEYS */;
-/*!40000 ALTER TABLE `item_template` ENABLE KEYS */;
-UNLOCK TABLES;
-
---
--- Table structure for table `lfg_dungeon_rewards`
---
-
-DROP TABLE IF EXISTS `lfg_dungeon_rewards`;
-CREATE TABLE `lfg_dungeon_rewards` (
- `dungeonId` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Dungeon entry from dbc',
- `maxLevel` tinyint(3) unsigned NOT NULL DEFAULT '0' COMMENT 'Max level at which this reward is rewarded',
- `firstQuestId` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Quest id with rewards for first dungeon this day',
- `firstMoneyVar` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Money multiplier for completing the dungeon first time in a day with less players than max',
- `firstXPVar` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Experience multiplier for completing the dungeon first time in a day with less players than max',
- `otherQuestId` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Quest id with rewards for Nth dungeon this day',
- `otherMoneyVar` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Money multiplier for completing the dungeon Nth time in a day with less players than max',
- `otherXPVar` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Experience multiplier for completing the dungeon Nth time in a day with less players than max',
- PRIMARY KEY (`dungeonId`,`maxLevel`)
-) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-
---
--- Dumping data for table `lfg_dungeon_rewards`
---
-
-LOCK TABLES `lfg_dungeon_rewards` WRITE;
-/*!40000 ALTER TABLE `lfg_dungeon_rewards` DISABLE KEYS */;
-/*!40000 ALTER TABLE `lfg_dungeon_rewards` ENABLE KEYS */;
-UNLOCK TABLES;
-
---
--- Table structure for table `linked_respawn`
---
-
-DROP TABLE IF EXISTS `linked_respawn`;
-/*!40101 SET @saved_cs_client = @@character_set_client */;
-/*!40101 SET character_set_client = utf8 */;
-CREATE TABLE `linked_respawn` (
- `guid` int(10) unsigned NOT NULL COMMENT 'slave entity',
- `linkedGuid` int(10) unsigned NOT NULL COMMENT 'master entity',
- `linkType` tinyint(3) unsigned NOT NULL DEFAULT '0' COMMENT '0: creature->creature, 1: creature->GO, 2: GO->GO, 3: GO->creature',
- PRIMARY KEY (`guid`, `linkType`)
-) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=DYNAMIC COMMENT='Respawn Link System';
-/*!40101 SET character_set_client = @saved_cs_client */;
-
---
--- Dumping data for table `linked_respawn`
---
-
-LOCK TABLES `linked_respawn` WRITE;
-/*!40000 ALTER TABLE `linked_respawn` DISABLE KEYS */;
-/*!40000 ALTER TABLE `linked_respawn` ENABLE KEYS */;
-UNLOCK TABLES;
-
---
--- Table structure for table `locales_achievement_reward`
---
-
-DROP TABLE IF EXISTS `locales_achievement_reward`;
-/*!40101 SET @saved_cs_client = @@character_set_client */;
-/*!40101 SET character_set_client = utf8 */;
-CREATE TABLE `locales_achievement_reward` (
- `entry` mediumint(8) unsigned NOT NULL DEFAULT '0',
- `subject_loc1` varchar(100) NOT NULL DEFAULT '',
- `subject_loc2` varchar(100) NOT NULL DEFAULT '',
- `subject_loc3` varchar(100) NOT NULL DEFAULT '',
- `subject_loc4` varchar(100) NOT NULL DEFAULT '',
- `subject_loc5` varchar(100) NOT NULL DEFAULT '',
- `subject_loc6` varchar(100) NOT NULL DEFAULT '',
- `subject_loc7` varchar(100) NOT NULL DEFAULT '',
- `subject_loc8` varchar(100) NOT NULL DEFAULT '',
- `text_loc1` text,
- `text_loc2` text,
- `text_loc3` text,
- `text_loc4` text,
- `text_loc5` text,
- `text_loc6` text,
- `text_loc7` text,
- `text_loc8` text,
- PRIMARY KEY (`entry`)
-) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-/*!40101 SET character_set_client = @saved_cs_client */;
-
---
--- Dumping data for table `locales_achievement_reward`
---
-
-LOCK TABLES `locales_achievement_reward` WRITE;
-/*!40000 ALTER TABLE `locales_achievement_reward` DISABLE KEYS */;
-/*!40000 ALTER TABLE `locales_achievement_reward` ENABLE KEYS */;
-UNLOCK TABLES;
-
---
--- Table structure for table `locales_creature`
---
-
-DROP TABLE IF EXISTS `locales_creature`;
-/*!40101 SET @saved_cs_client = @@character_set_client */;
-/*!40101 SET character_set_client = utf8 */;
-CREATE TABLE `locales_creature` (
- `entry` mediumint(8) unsigned NOT NULL DEFAULT '0',
- `name_loc1` varchar(100) NOT NULL DEFAULT '',
- `name_loc2` varchar(100) NOT NULL DEFAULT '',
- `name_loc3` varchar(100) NOT NULL DEFAULT '',
- `name_loc4` varchar(100) NOT NULL DEFAULT '',
- `name_loc5` varchar(100) NOT NULL DEFAULT '',
- `name_loc6` varchar(100) NOT NULL DEFAULT '',
- `name_loc7` varchar(100) NOT NULL DEFAULT '',
- `name_loc8` varchar(100) NOT NULL DEFAULT '',
- `subname_loc1` varchar(100) DEFAULT NULL,
- `subname_loc2` varchar(100) DEFAULT NULL,
- `subname_loc3` varchar(100) DEFAULT NULL,
- `subname_loc4` varchar(100) DEFAULT NULL,
- `subname_loc5` varchar(100) DEFAULT NULL,
- `subname_loc6` varchar(100) DEFAULT NULL,
- `subname_loc7` varchar(100) DEFAULT NULL,
- `subname_loc8` varchar(100) DEFAULT NULL,
- PRIMARY KEY (`entry`)
-) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-/*!40101 SET character_set_client = @saved_cs_client */;
-
---
--- Dumping data for table `locales_creature`
---
-
-LOCK TABLES `locales_creature` WRITE;
-/*!40000 ALTER TABLE `locales_creature` DISABLE KEYS */;
-/*!40000 ALTER TABLE `locales_creature` ENABLE KEYS */;
-UNLOCK TABLES;
-
---
--- Table structure for table `locales_gameobject`
---
-
-DROP TABLE IF EXISTS `locales_gameobject`;
-/*!40101 SET @saved_cs_client = @@character_set_client */;
-/*!40101 SET character_set_client = utf8 */;
-CREATE TABLE `locales_gameobject` (
- `entry` mediumint(8) unsigned NOT NULL DEFAULT '0',
- `name_loc1` varchar(100) NOT NULL DEFAULT '',
- `name_loc2` varchar(100) NOT NULL DEFAULT '',
- `name_loc3` varchar(100) NOT NULL DEFAULT '',
- `name_loc4` varchar(100) NOT NULL DEFAULT '',
- `name_loc5` varchar(100) NOT NULL DEFAULT '',
- `name_loc6` varchar(100) NOT NULL DEFAULT '',
- `name_loc7` varchar(100) NOT NULL DEFAULT '',
- `name_loc8` varchar(100) NOT NULL DEFAULT '',
- `castbarcaption_loc1` varchar(100) NOT NULL DEFAULT '',
- `castbarcaption_loc2` varchar(100) NOT NULL DEFAULT '',
- `castbarcaption_loc3` varchar(100) NOT NULL DEFAULT '',
- `castbarcaption_loc4` varchar(100) NOT NULL DEFAULT '',
- `castbarcaption_loc5` varchar(100) NOT NULL DEFAULT '',
- `castbarcaption_loc6` varchar(100) NOT NULL DEFAULT '',
- `castbarcaption_loc7` varchar(100) NOT NULL DEFAULT '',
- `castbarcaption_loc8` varchar(100) NOT NULL DEFAULT '',
- PRIMARY KEY (`entry`)
-) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-/*!40101 SET character_set_client = @saved_cs_client */;
-
---
--- Dumping data for table `locales_gameobject`
---
-
-LOCK TABLES `locales_gameobject` WRITE;
-/*!40000 ALTER TABLE `locales_gameobject` DISABLE KEYS */;
-/*!40000 ALTER TABLE `locales_gameobject` ENABLE KEYS */;
-UNLOCK TABLES;
-
---
--- Table structure for table `locales_item`
---
-
-DROP TABLE IF EXISTS `locales_item`;
-/*!40101 SET @saved_cs_client = @@character_set_client */;
-/*!40101 SET character_set_client = utf8 */;
-CREATE TABLE `locales_item` (
- `entry` mediumint(8) unsigned NOT NULL DEFAULT '0',
- `name_loc1` varchar(100) NOT NULL DEFAULT '',
- `name_loc2` varchar(100) NOT NULL DEFAULT '',
- `name_loc3` varchar(100) NOT NULL DEFAULT '',
- `name_loc4` varchar(100) NOT NULL DEFAULT '',
- `name_loc5` varchar(100) NOT NULL DEFAULT '',
- `name_loc6` varchar(100) NOT NULL DEFAULT '',
- `name_loc7` varchar(100) NOT NULL DEFAULT '',
- `name_loc8` varchar(100) NOT NULL DEFAULT '',
- `description_loc1` varchar(255) DEFAULT NULL,
- `description_loc2` varchar(255) DEFAULT NULL,
- `description_loc3` varchar(255) DEFAULT NULL,
- `description_loc4` varchar(255) DEFAULT NULL,
- `description_loc5` varchar(255) DEFAULT NULL,
- `description_loc6` varchar(255) DEFAULT NULL,
- `description_loc7` varchar(255) DEFAULT NULL,
- `description_loc8` varchar(255) DEFAULT NULL,
- PRIMARY KEY (`entry`)
-) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-/*!40101 SET character_set_client = @saved_cs_client */;
-
---
--- Dumping data for table `locales_item`
---
-
-LOCK TABLES `locales_item` WRITE;
-/*!40000 ALTER TABLE `locales_item` DISABLE KEYS */;
-/*!40000 ALTER TABLE `locales_item` ENABLE KEYS */;
-UNLOCK TABLES;
-
---
--- Table structure for table `locales_item_set_names`
---
-
-DROP TABLE IF EXISTS `locales_item_set_names`;
-/*!40101 SET @saved_cs_client = @@character_set_client */;
-/*!40101 SET character_set_client = utf8 */;
-CREATE TABLE `locales_item_set_names` (
- `entry` mediumint(8) unsigned NOT NULL DEFAULT '0',
- `name_loc1` varchar(100) NOT NULL DEFAULT '',
- `name_loc2` varchar(100) NOT NULL DEFAULT '',
- `name_loc3` varchar(100) NOT NULL DEFAULT '',
- `name_loc4` varchar(100) NOT NULL DEFAULT '',
- `name_loc5` varchar(100) NOT NULL DEFAULT '',
- `name_loc6` varchar(100) NOT NULL DEFAULT '',
- `name_loc7` varchar(100) NOT NULL DEFAULT '',
- `name_loc8` varchar(100) NOT NULL DEFAULT '',
- PRIMARY KEY (`entry`)
-) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-/*!40101 SET character_set_client = @saved_cs_client */;
-
---
--- Dumping data for table `locales_item_set_names`
---
-
-LOCK TABLES `locales_item_set_names` WRITE;
-/*!40000 ALTER TABLE `locales_item_set_names` DISABLE KEYS */;
-/*!40000 ALTER TABLE `locales_item_set_names` ENABLE KEYS */;
-UNLOCK TABLES;
-
---
--- Table structure for table `locales_gossip_menu_option`
---
-
-DROP TABLE IF EXISTS `locales_gossip_menu_option`;
-/*!40101 SET @saved_cs_client = @@character_set_client */;
-/*!40101 SET character_set_client = utf8 */;
-CREATE TABLE `locales_gossip_menu_option` (
- `menu_id` smallint(6) unsigned NOT NULL DEFAULT '0',
- `id` smallint(6) unsigned NOT NULL DEFAULT '0',
- `option_text_loc1` text,
- `option_text_loc2` text,
- `option_text_loc3` text,
- `option_text_loc4` text,
- `option_text_loc5` text,
- `option_text_loc6` text,
- `option_text_loc7` text,
- `option_text_loc8` text,
- `box_text_loc1` text,
- `box_text_loc2` text,
- `box_text_loc3` text,
- `box_text_loc4` text,
- `box_text_loc5` text,
- `box_text_loc6` text,
- `box_text_loc7` text,
- `box_text_loc8` text,
- PRIMARY KEY (`menu_id`,`id`)
-) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-/*!40101 SET character_set_client = @saved_cs_client */;
-
---
--- Dumping data for table `locales_gossip_menu_option`
---
-
-LOCK TABLES `locales_gossip_menu_option` WRITE;
-/*!40000 ALTER TABLE `locales_gossip_menu_option` DISABLE KEYS */;
-/*!40000 ALTER TABLE `locales_gossip_menu_option` ENABLE KEYS */;
-UNLOCK TABLES;
-
---
--- Table structure for table `locales_npc_text`
---
-
-DROP TABLE IF EXISTS `locales_npc_text`;
-/*!40101 SET @saved_cs_client = @@character_set_client */;
-/*!40101 SET character_set_client = utf8 */;
-CREATE TABLE `locales_npc_text` (
- `entry` mediumint(8) unsigned NOT NULL DEFAULT '0',
- `Text0_0_loc1` longtext,
- `Text0_0_loc2` longtext,
- `Text0_0_loc3` longtext,
- `Text0_0_loc4` longtext,
- `Text0_0_loc5` longtext,
- `Text0_0_loc6` longtext,
- `Text0_0_loc7` longtext,
- `Text0_0_loc8` longtext,
- `Text0_1_loc1` longtext,
- `Text0_1_loc2` longtext,
- `Text0_1_loc3` longtext,
- `Text0_1_loc4` longtext,
- `Text0_1_loc5` longtext,
- `Text0_1_loc6` longtext,
- `Text0_1_loc7` longtext,
- `Text0_1_loc8` longtext,
- `Text1_0_loc1` longtext,
- `Text1_0_loc2` longtext,
- `Text1_0_loc3` longtext,
- `Text1_0_loc4` longtext,
- `Text1_0_loc5` longtext,
- `Text1_0_loc6` longtext,
- `Text1_0_loc7` longtext,
- `Text1_0_loc8` longtext,
- `Text1_1_loc1` longtext,
- `Text1_1_loc2` longtext,
- `Text1_1_loc3` longtext,
- `Text1_1_loc4` longtext,
- `Text1_1_loc5` longtext,
- `Text1_1_loc6` longtext,
- `Text1_1_loc7` longtext,
- `Text1_1_loc8` longtext,
- `Text2_0_loc1` longtext,
- `Text2_0_loc2` longtext,
- `Text2_0_loc3` longtext,
- `Text2_0_loc4` longtext,
- `Text2_0_loc5` longtext,
- `Text2_0_loc6` longtext,
- `Text2_0_loc7` longtext,
- `Text2_0_loc8` longtext,
- `Text2_1_loc1` longtext,
- `Text2_1_loc2` longtext,
- `Text2_1_loc3` longtext,
- `Text2_1_loc4` longtext,
- `Text2_1_loc5` longtext,
- `Text2_1_loc6` longtext,
- `Text2_1_loc7` longtext,
- `Text2_1_loc8` longtext,
- `Text3_0_loc1` longtext,
- `Text3_0_loc2` longtext,
- `Text3_0_loc3` longtext,
- `Text3_0_loc4` longtext,
- `Text3_0_loc5` longtext,
- `Text3_0_loc6` longtext,
- `Text3_0_loc7` longtext,
- `Text3_0_loc8` longtext,
- `Text3_1_loc1` longtext,
- `Text3_1_loc2` longtext,
- `Text3_1_loc3` longtext,
- `Text3_1_loc4` longtext,
- `Text3_1_loc5` longtext,
- `Text3_1_loc6` longtext,
- `Text3_1_loc7` longtext,
- `Text3_1_loc8` longtext,
- `Text4_0_loc1` longtext,
- `Text4_0_loc2` longtext,
- `Text4_0_loc3` longtext,
- `Text4_0_loc4` longtext,
- `Text4_0_loc5` longtext,
- `Text4_0_loc6` longtext,
- `Text4_0_loc7` longtext,
- `Text4_0_loc8` longtext,
- `Text4_1_loc1` longtext,
- `Text4_1_loc2` longtext,
- `Text4_1_loc3` longtext,
- `Text4_1_loc4` longtext,
- `Text4_1_loc5` longtext,
- `Text4_1_loc6` longtext,
- `Text4_1_loc7` longtext,
- `Text4_1_loc8` longtext,
- `Text5_0_loc1` longtext,
- `Text5_0_loc2` longtext,
- `Text5_0_loc3` longtext,
- `Text5_0_loc4` longtext,
- `Text5_0_loc5` longtext,
- `Text5_0_loc6` longtext,
- `Text5_0_loc7` longtext,
- `Text5_0_loc8` longtext,
- `Text5_1_loc1` longtext,
- `Text5_1_loc2` longtext,
- `Text5_1_loc3` longtext,
- `Text5_1_loc4` longtext,
- `Text5_1_loc5` longtext,
- `Text5_1_loc6` longtext,
- `Text5_1_loc7` longtext,
- `Text5_1_loc8` longtext,
- `Text6_0_loc1` longtext,
- `Text6_0_loc2` longtext,
- `Text6_0_loc3` longtext,
- `Text6_0_loc4` longtext,
- `Text6_0_loc5` longtext,
- `Text6_0_loc6` longtext,
- `Text6_0_loc7` longtext,
- `Text6_0_loc8` longtext,
- `Text6_1_loc1` longtext,
- `Text6_1_loc2` longtext,
- `Text6_1_loc3` longtext,
- `Text6_1_loc4` longtext,
- `Text6_1_loc5` longtext,
- `Text6_1_loc6` longtext,
- `Text6_1_loc7` longtext,
- `Text6_1_loc8` longtext,
- `Text7_0_loc1` longtext,
- `Text7_0_loc2` longtext,
- `Text7_0_loc3` longtext,
- `Text7_0_loc4` longtext,
- `Text7_0_loc5` longtext,
- `Text7_0_loc6` longtext,
- `Text7_0_loc7` longtext,
- `Text7_0_loc8` longtext,
- `Text7_1_loc1` longtext,
- `Text7_1_loc2` longtext,
- `Text7_1_loc3` longtext,
- `Text7_1_loc4` longtext,
- `Text7_1_loc5` longtext,
- `Text7_1_loc6` longtext,
- `Text7_1_loc7` longtext,
- `Text7_1_loc8` longtext,
- PRIMARY KEY (`entry`)
-) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-/*!40101 SET character_set_client = @saved_cs_client */;
-
---
--- Dumping data for table `locales_npc_text`
---
-
-LOCK TABLES `locales_npc_text` WRITE;
-/*!40000 ALTER TABLE `locales_npc_text` DISABLE KEYS */;
-/*!40000 ALTER TABLE `locales_npc_text` ENABLE KEYS */;
-UNLOCK TABLES;
-
---
--- Table structure for table `locales_page_text`
---
-
-DROP TABLE IF EXISTS `locales_page_text`;
-/*!40101 SET @saved_cs_client = @@character_set_client */;
-/*!40101 SET character_set_client = utf8 */;
-CREATE TABLE `locales_page_text` (
- `entry` mediumint(8) unsigned NOT NULL DEFAULT '0',
- `Text_loc1` longtext,
- `Text_loc2` longtext,
- `Text_loc3` longtext,
- `Text_loc4` longtext,
- `Text_loc5` longtext,
- `Text_loc6` longtext,
- `Text_loc7` longtext,
- `Text_loc8` longtext,
- PRIMARY KEY (`entry`)
-) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-/*!40101 SET character_set_client = @saved_cs_client */;
-
---
--- Dumping data for table `locales_page_text`
---
-
-LOCK TABLES `locales_page_text` WRITE;
-/*!40000 ALTER TABLE `locales_page_text` DISABLE KEYS */;
-/*!40000 ALTER TABLE `locales_page_text` ENABLE KEYS */;
-UNLOCK TABLES;
-
---
--- Table structure for table `locales_points_of_interest`
---
-
-DROP TABLE IF EXISTS `locales_points_of_interest`;
-/*!40101 SET @saved_cs_client = @@character_set_client */;
-/*!40101 SET character_set_client = utf8 */;
-CREATE TABLE `locales_points_of_interest` (
- `entry` mediumint(8) unsigned NOT NULL DEFAULT '0',
- `icon_name_loc1` text,
- `icon_name_loc2` text,
- `icon_name_loc3` text,
- `icon_name_loc4` text,
- `icon_name_loc5` text,
- `icon_name_loc6` text,
- `icon_name_loc7` text,
- `icon_name_loc8` text,
- PRIMARY KEY (`entry`)
-) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-/*!40101 SET character_set_client = @saved_cs_client */;
-
---
--- Dumping data for table `locales_points_of_interest`
---
-
-LOCK TABLES `locales_points_of_interest` WRITE;
-/*!40000 ALTER TABLE `locales_points_of_interest` DISABLE KEYS */;
-/*!40000 ALTER TABLE `locales_points_of_interest` ENABLE KEYS */;
-UNLOCK TABLES;
-
---
--- Table structure for table `locales_quest`
---
-
-DROP TABLE IF EXISTS `locales_quest`;
-/*!40101 SET @saved_cs_client = @@character_set_client */;
-/*!40101 SET character_set_client = utf8 */;
-CREATE TABLE `locales_quest` (
- `entry` mediumint(8) unsigned NOT NULL DEFAULT '0',
- `Title_loc1` text,
- `Title_loc2` text,
- `Title_loc3` text,
- `Title_loc4` text,
- `Title_loc5` text,
- `Title_loc6` text,
- `Title_loc7` text,
- `Title_loc8` text,
- `Details_loc1` text,
- `Details_loc2` text,
- `Details_loc3` text,
- `Details_loc4` text,
- `Details_loc5` text,
- `Details_loc6` text,
- `Details_loc7` text,
- `Details_loc8` text,
- `Objectives_loc1` text,
- `Objectives_loc2` text,
- `Objectives_loc3` text,
- `Objectives_loc4` text,
- `Objectives_loc5` text,
- `Objectives_loc6` text,
- `Objectives_loc7` text,
- `Objectives_loc8` text,
- `OfferRewardText_loc1` text,
- `OfferRewardText_loc2` text,
- `OfferRewardText_loc3` text,
- `OfferRewardText_loc4` text,
- `OfferRewardText_loc5` text,
- `OfferRewardText_loc6` text,
- `OfferRewardText_loc7` text,
- `OfferRewardText_loc8` text,
- `RequestItemsText_loc1` text,
- `RequestItemsText_loc2` text,
- `RequestItemsText_loc3` text,
- `RequestItemsText_loc4` text,
- `RequestItemsText_loc5` text,
- `RequestItemsText_loc6` text,
- `RequestItemsText_loc7` text,
- `RequestItemsText_loc8` text,
- `EndText_loc1` text,
- `EndText_loc2` text,
- `EndText_loc3` text,
- `EndText_loc4` text,
- `EndText_loc5` text,
- `EndText_loc6` text,
- `EndText_loc7` text,
- `EndText_loc8` text,
- `CompletedText_loc1` text,
- `CompletedText_loc2` text,
- `CompletedText_loc3` text,
- `CompletedText_loc4` text,
- `CompletedText_loc5` text,
- `CompletedText_loc6` text,
- `CompletedText_loc7` text,
- `CompletedText_loc8` text,
- `ObjectiveText1_loc1` text,
- `ObjectiveText1_loc2` text,
- `ObjectiveText1_loc3` text,
- `ObjectiveText1_loc4` text,
- `ObjectiveText1_loc5` text,
- `ObjectiveText1_loc6` text,
- `ObjectiveText1_loc7` text,
- `ObjectiveText1_loc8` text,
- `ObjectiveText2_loc1` text,
- `ObjectiveText2_loc2` text,
- `ObjectiveText2_loc3` text,
- `ObjectiveText2_loc4` text,
- `ObjectiveText2_loc5` text,
- `ObjectiveText2_loc6` text,
- `ObjectiveText2_loc7` text,
- `ObjectiveText2_loc8` text,
- `ObjectiveText3_loc1` text,
- `ObjectiveText3_loc2` text,
- `ObjectiveText3_loc3` text,
- `ObjectiveText3_loc4` text,
- `ObjectiveText3_loc5` text,
- `ObjectiveText3_loc6` text,
- `ObjectiveText3_loc7` text,
- `ObjectiveText3_loc8` text,
- `ObjectiveText4_loc1` text,
- `ObjectiveText4_loc2` text,
- `ObjectiveText4_loc3` text,
- `ObjectiveText4_loc4` text,
- `ObjectiveText4_loc5` text,
- `ObjectiveText4_loc6` text,
- `ObjectiveText4_loc7` text,
- `ObjectiveText4_loc8` text,
- PRIMARY KEY (`entry`)
-) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-/*!40101 SET character_set_client = @saved_cs_client */;
-
---
--- Dumping data for table `locales_quest`
---
-
-LOCK TABLES `locales_quest` WRITE;
-/*!40000 ALTER TABLE `locales_quest` DISABLE KEYS */;
-/*!40000 ALTER TABLE `locales_quest` ENABLE KEYS */;
-UNLOCK TABLES;
-
---
--- Table structure for table `mail_level_reward`
---
-
-DROP TABLE IF EXISTS `mail_level_reward`;
-/*!40101 SET @saved_cs_client = @@character_set_client */;
-/*!40101 SET character_set_client = utf8 */;
-CREATE TABLE `mail_level_reward` (
- `level` tinyint(3) unsigned NOT NULL DEFAULT '0',
- `raceMask` mediumint(8) unsigned NOT NULL DEFAULT '0',
- `mailTemplateId` mediumint(8) unsigned NOT NULL DEFAULT '0',
- `senderEntry` mediumint(8) unsigned NOT NULL DEFAULT '0',
- PRIMARY KEY (`level`,`raceMask`)
-) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Mail System';
-/*!40101 SET character_set_client = @saved_cs_client */;
-
---
--- Dumping data for table `mail_level_reward`
---
-
-LOCK TABLES `mail_level_reward` WRITE;
-/*!40000 ALTER TABLE `mail_level_reward` DISABLE KEYS */;
-/*!40000 ALTER TABLE `mail_level_reward` ENABLE KEYS */;
-UNLOCK TABLES;
-
---
--- Table structure for table `mail_loot_template`
---
-
-DROP TABLE IF EXISTS `mail_loot_template`;
-/*!40101 SET @saved_cs_client = @@character_set_client */;
-/*!40101 SET character_set_client = utf8 */;
-CREATE TABLE `mail_loot_template` (
- `entry` mediumint(8) unsigned NOT NULL DEFAULT '0',
- `item` mediumint(8) unsigned NOT NULL DEFAULT '0',
- `ChanceOrQuestChance` float NOT NULL DEFAULT '100',
- `lootmode` smallint(5) unsigned NOT NULL DEFAULT '1',
- `groupid` tinyint(3) unsigned NOT NULL DEFAULT '0',
- `mincountOrRef` mediumint(9) NOT NULL DEFAULT '1',
- `maxcount` tinyint(3) unsigned NOT NULL DEFAULT '1',
- `lootcondition` tinyint(3) unsigned NOT NULL DEFAULT '0',
- `condition_value1` mediumint(8) unsigned NOT NULL DEFAULT '0',
- `condition_value2` mediumint(8) unsigned NOT NULL DEFAULT '0',
- PRIMARY KEY (`entry`,`item`)
-) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Loot System';
-/*!40101 SET character_set_client = @saved_cs_client */;
-
---
--- Dumping data for table `mail_loot_template`
---
-
-LOCK TABLES `mail_loot_template` WRITE;
-/*!40000 ALTER TABLE `mail_loot_template` DISABLE KEYS */;
-/*!40000 ALTER TABLE `mail_loot_template` ENABLE KEYS */;
-UNLOCK TABLES;
-
---
--- Table structure for table `milling_loot_template`
---
-
-DROP TABLE IF EXISTS `milling_loot_template`;
-/*!40101 SET @saved_cs_client = @@character_set_client */;
-/*!40101 SET character_set_client = utf8 */;
-CREATE TABLE `milling_loot_template` (
- `entry` mediumint(8) unsigned NOT NULL DEFAULT '0',
- `item` mediumint(8) unsigned NOT NULL DEFAULT '0',
- `ChanceOrQuestChance` float NOT NULL DEFAULT '100',
- `lootmode` smallint(5) unsigned NOT NULL DEFAULT '1',
- `groupid` tinyint(3) unsigned NOT NULL DEFAULT '0',
- `mincountOrRef` mediumint(9) NOT NULL DEFAULT '1',
- `maxcount` tinyint(3) unsigned NOT NULL DEFAULT '1',
- `lootcondition` tinyint(3) unsigned NOT NULL DEFAULT '0',
- `condition_value1` mediumint(8) unsigned NOT NULL DEFAULT '0',
- `condition_value2` mediumint(8) unsigned NOT NULL DEFAULT '0',
- PRIMARY KEY (`entry`,`item`)
-) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Loot System';
-/*!40101 SET character_set_client = @saved_cs_client */;
-
---
--- Dumping data for table `milling_loot_template`
---
-
-LOCK TABLES `milling_loot_template` WRITE;
-/*!40000 ALTER TABLE `milling_loot_template` DISABLE KEYS */;
-/*!40000 ALTER TABLE `milling_loot_template` ENABLE KEYS */;
-UNLOCK TABLES;
-
---
--- Table structure for table `npc_spellclick_spells`
---
-
-DROP TABLE IF EXISTS `npc_spellclick_spells`;
-/*!40101 SET @saved_cs_client = @@character_set_client */;
-/*!40101 SET character_set_client = utf8 */;
-CREATE TABLE `npc_spellclick_spells` (
- `npc_entry` int(10) unsigned NOT NULL COMMENT 'reference to creature_template',
- `spell_id` int(10) unsigned NOT NULL COMMENT 'spell which should be casted ',
- `quest_start` mediumint(8) unsigned NOT NULL COMMENT 'reference to quest_template',
- `quest_start_active` tinyint(1) unsigned NOT NULL DEFAULT '0',
- `quest_end` mediumint(8) unsigned NOT NULL DEFAULT '0',
- `cast_flags` tinyint(3) unsigned NOT NULL COMMENT 'first bit defines caster: 1=player, 0=creature; second bit defines target, same mapping as caster bit',
- `aura_required` int(11) unsigned NOT NULL DEFAULT '0' COMMENT 'player without aura cant click',
- `aura_forbidden` int(11) unsigned NOT NULL DEFAULT '0' COMMENT 'player with aura cant click',
- `user_type` smallint(3) unsigned NOT NULL DEFAULT '0' COMMENT 'relation with summoner: 0-no 1-friendly 2-raid 3-party player can click'
-) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-/*!40101 SET character_set_client = @saved_cs_client */;
-
---
--- Dumping data for table `npc_spellclick_spells`
---
-
-LOCK TABLES `npc_spellclick_spells` WRITE;
-/*!40000 ALTER TABLE `npc_spellclick_spells` DISABLE KEYS */;
-/*!40000 ALTER TABLE `npc_spellclick_spells` ENABLE KEYS */;
-UNLOCK TABLES;
-
---
--- Table structure for table `npc_text`
---
-
-DROP TABLE IF EXISTS `npc_text`;
-/*!40101 SET @saved_cs_client = @@character_set_client */;
-/*!40101 SET character_set_client = utf8 */;
-CREATE TABLE `npc_text` (
- `ID` mediumint(8) unsigned NOT NULL DEFAULT '0',
- `text0_0` longtext,
- `text0_1` longtext,
- `lang0` tinyint(3) unsigned NOT NULL DEFAULT '0',
- `prob0` float NOT NULL DEFAULT '0',
- `em0_0` smallint(5) unsigned NOT NULL DEFAULT '0',
- `em0_1` smallint(5) unsigned NOT NULL DEFAULT '0',
- `em0_2` smallint(5) unsigned NOT NULL DEFAULT '0',
- `em0_3` smallint(5) unsigned NOT NULL DEFAULT '0',
- `em0_4` smallint(5) unsigned NOT NULL DEFAULT '0',
- `em0_5` smallint(5) unsigned NOT NULL DEFAULT '0',
- `text1_0` longtext,
- `text1_1` longtext,
- `lang1` tinyint(3) unsigned NOT NULL DEFAULT '0',
- `prob1` float NOT NULL DEFAULT '0',
- `em1_0` smallint(5) unsigned NOT NULL DEFAULT '0',
- `em1_1` smallint(5) unsigned NOT NULL DEFAULT '0',
- `em1_2` smallint(5) unsigned NOT NULL DEFAULT '0',
- `em1_3` smallint(5) unsigned NOT NULL DEFAULT '0',
- `em1_4` smallint(5) unsigned NOT NULL DEFAULT '0',
- `em1_5` smallint(5) unsigned NOT NULL DEFAULT '0',
- `text2_0` longtext,
- `text2_1` longtext,
- `lang2` tinyint(3) unsigned NOT NULL DEFAULT '0',
- `prob2` float NOT NULL DEFAULT '0',
- `em2_0` smallint(5) unsigned NOT NULL DEFAULT '0',
- `em2_1` smallint(5) unsigned NOT NULL DEFAULT '0',
- `em2_2` smallint(5) unsigned NOT NULL DEFAULT '0',
- `em2_3` smallint(5) unsigned NOT NULL DEFAULT '0',
- `em2_4` smallint(5) unsigned NOT NULL DEFAULT '0',
- `em2_5` smallint(5) unsigned NOT NULL DEFAULT '0',
- `text3_0` longtext,
- `text3_1` longtext,
- `lang3` tinyint(3) unsigned NOT NULL DEFAULT '0',
- `prob3` float NOT NULL DEFAULT '0',
- `em3_0` smallint(5) unsigned NOT NULL DEFAULT '0',
- `em3_1` smallint(5) unsigned NOT NULL DEFAULT '0',
- `em3_2` smallint(5) unsigned NOT NULL DEFAULT '0',
- `em3_3` smallint(5) unsigned NOT NULL DEFAULT '0',
- `em3_4` smallint(5) unsigned NOT NULL DEFAULT '0',
- `em3_5` smallint(5) unsigned NOT NULL DEFAULT '0',
- `text4_0` longtext,
- `text4_1` longtext,
- `lang4` tinyint(3) unsigned NOT NULL DEFAULT '0',
- `prob4` float NOT NULL DEFAULT '0',
- `em4_0` smallint(5) unsigned NOT NULL DEFAULT '0',
- `em4_1` smallint(5) unsigned NOT NULL DEFAULT '0',
- `em4_2` smallint(5) unsigned NOT NULL DEFAULT '0',
- `em4_3` smallint(5) unsigned NOT NULL DEFAULT '0',
- `em4_4` smallint(5) unsigned NOT NULL DEFAULT '0',
- `em4_5` smallint(5) unsigned NOT NULL DEFAULT '0',
- `text5_0` longtext,
- `text5_1` longtext,
- `lang5` tinyint(3) unsigned NOT NULL DEFAULT '0',
- `prob5` float NOT NULL DEFAULT '0',
- `em5_0` smallint(5) unsigned NOT NULL DEFAULT '0',
- `em5_1` smallint(5) unsigned NOT NULL DEFAULT '0',
- `em5_2` smallint(5) unsigned NOT NULL DEFAULT '0',
- `em5_3` smallint(5) unsigned NOT NULL DEFAULT '0',
- `em5_4` smallint(5) unsigned NOT NULL DEFAULT '0',
- `em5_5` smallint(5) unsigned NOT NULL DEFAULT '0',
- `text6_0` longtext,
- `text6_1` longtext,
- `lang6` tinyint(3) unsigned NOT NULL DEFAULT '0',
- `prob6` float NOT NULL DEFAULT '0',
- `em6_0` smallint(5) unsigned NOT NULL DEFAULT '0',
- `em6_1` smallint(5) unsigned NOT NULL DEFAULT '0',
- `em6_2` smallint(5) unsigned NOT NULL DEFAULT '0',
- `em6_3` smallint(5) unsigned NOT NULL DEFAULT '0',
- `em6_4` smallint(5) unsigned NOT NULL DEFAULT '0',
- `em6_5` smallint(5) unsigned NOT NULL DEFAULT '0',
- `text7_0` longtext,
- `text7_1` longtext,
- `lang7` tinyint(3) unsigned NOT NULL DEFAULT '0',
- `prob7` float NOT NULL DEFAULT '0',
- `em7_0` smallint(5) unsigned NOT NULL DEFAULT '0',
- `em7_1` smallint(5) unsigned NOT NULL DEFAULT '0',
- `em7_2` smallint(5) unsigned NOT NULL DEFAULT '0',
- `em7_3` smallint(5) unsigned NOT NULL DEFAULT '0',
- `em7_4` smallint(5) unsigned NOT NULL DEFAULT '0',
- `em7_5` smallint(5) unsigned NOT NULL DEFAULT '0',
- `WDBVerified` smallint(5) signed DEFAULT '1',
- PRIMARY KEY (`ID`)
-) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-/*!40101 SET character_set_client = @saved_cs_client */;
-
---
--- Dumping data for table `npc_text`
---
-
-LOCK TABLES `npc_text` WRITE;
-/*!40000 ALTER TABLE `npc_text` DISABLE KEYS */;
-/*!40000 ALTER TABLE `npc_text` ENABLE KEYS */;
-UNLOCK TABLES;
-
---
--- Table structure for table `npc_trainer`
---
-
-DROP TABLE IF EXISTS `npc_trainer`;
-/*!40101 SET @saved_cs_client = @@character_set_client */;
-/*!40101 SET character_set_client = utf8 */;
-CREATE TABLE `npc_trainer` (
- `entry` mediumint(8) unsigned NOT NULL DEFAULT '0',
- `spell` mediumint(8) NOT NULL DEFAULT '0',
- `spellcost` int(10) unsigned NOT NULL DEFAULT '0',
- `reqskill` smallint(5) unsigned NOT NULL DEFAULT '0',
- `reqskillvalue` smallint(5) unsigned NOT NULL DEFAULT '0',
- `reqlevel` tinyint(3) unsigned NOT NULL DEFAULT '0',
- PRIMARY KEY (`entry`,`spell`)
-) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-/*!40101 SET character_set_client = @saved_cs_client */;
-
---
--- Dumping data for table `npc_trainer`
---
-
-LOCK TABLES `npc_trainer` WRITE;
-/*!40000 ALTER TABLE `npc_trainer` DISABLE KEYS */;
-/*!40000 ALTER TABLE `npc_trainer` ENABLE KEYS */;
-UNLOCK TABLES;
-
---
--- Table structure for table `npc_vendor`
---
-
-DROP TABLE IF EXISTS `npc_vendor`;
-/*!40101 SET @saved_cs_client = @@character_set_client */;
-/*!40101 SET character_set_client = utf8 */;
-CREATE TABLE `npc_vendor` (
- `entry` mediumint(8) unsigned NOT NULL DEFAULT '0',
- `slot` smallint(6) unsigned NOT NULL DEFAULT '0',
- `item` mediumint(8) unsigned NOT NULL DEFAULT '0',
- `maxcount` tinyint(3) unsigned NOT NULL DEFAULT '0',
- `incrtime` int(10) unsigned NOT NULL DEFAULT '0',
- `ExtendedCost` mediumint(8) unsigned NOT NULL DEFAULT '0',
- PRIMARY KEY (`entry`,`item`,`extendedCost`),
- INDEX (`slot`)
-) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Npc System';
-/*!40101 SET character_set_client = @saved_cs_client */;
-
---
--- Dumping data for table `npc_vendor`
---
-
-LOCK TABLES `npc_vendor` WRITE;
-/*!40000 ALTER TABLE `npc_vendor` DISABLE KEYS */;
-/*!40000 ALTER TABLE `npc_vendor` ENABLE KEYS */;
-UNLOCK TABLES;
-
---
--- Table structure for table `outdoorpvp_template`
---
-
-DROP TABLE IF EXISTS `outdoorpvp_template`;
-/*!40101 SET @saved_cs_client = @@character_set_client */;
-/*!40101 SET character_set_client = utf8 */;
-CREATE TABLE `outdoorpvp_template` (
- `TypeId` tinyint(2) unsigned NOT NULL,
- `ScriptName` char(64) NOT NULL DEFAULT '',
- `comment` text,
- PRIMARY KEY (`TypeId`)
-) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=DYNAMIC COMMENT='OutdoorPvP Templates';
-/*!40101 SET character_set_client = @saved_cs_client */;
-
---
--- Dumping data for table `outdoorpvp_template`
---
-
-LOCK TABLES `outdoorpvp_template` WRITE;
-/*!40000 ALTER TABLE `outdoorpvp_template` DISABLE KEYS */;
-INSERT INTO `outdoorpvp_template` (`TypeId`, `Comment`) VALUES
-(1, 'Hellfire Peninsula'),
-(2, 'Nagrand'),
-(3, 'Terokkar Forest'),
-(4, 'Zangarmarsh'),
-(5, 'Silithus'),
-(6, 'Eastern Plaguelands');
-/*!40000 ALTER TABLE `outdoorpvp_template` ENABLE KEYS */;
-UNLOCK TABLES;
-
---
--- Table structure for table `page_text`
---
-
-DROP TABLE IF EXISTS `page_text`;
-/*!40101 SET @saved_cs_client = @@character_set_client */;
-/*!40101 SET character_set_client = utf8 */;
-CREATE TABLE `page_text` (
- `entry` mediumint(8) unsigned NOT NULL DEFAULT '0',
- `text` longtext NOT NULL,
- `next_page` mediumint(8) unsigned NOT NULL DEFAULT '0',
- `WDBVerified` smallint(5) signed DEFAULT '1',
- PRIMARY KEY (`entry`)
-) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Item System';
-/*!40101 SET character_set_client = @saved_cs_client */;
-
---
--- Dumping data for table `page_text`
---
-
-LOCK TABLES `page_text` WRITE;
-/*!40000 ALTER TABLE `page_text` DISABLE KEYS */;
-/*!40000 ALTER TABLE `page_text` ENABLE KEYS */;
-UNLOCK TABLES;
-
---
--- Table structure for table `pet_levelstats`
---
-
-DROP TABLE IF EXISTS `pet_levelstats`;
-/*!40101 SET @saved_cs_client = @@character_set_client */;
-/*!40101 SET character_set_client = utf8 */;
-CREATE TABLE `pet_levelstats` (
- `creature_entry` mediumint(8) unsigned NOT NULL,
- `level` tinyint(3) unsigned NOT NULL,
- `hp` smallint(5) unsigned NOT NULL,
- `mana` smallint(5) unsigned NOT NULL,
- `armor` int(10) unsigned NOT NULL DEFAULT '0',
- `str` smallint(5) unsigned NOT NULL,
- `agi` smallint(5) unsigned NOT NULL,
- `sta` smallint(5) unsigned NOT NULL,
- `inte` smallint(5) unsigned NOT NULL,
- `spi` smallint(5) unsigned NOT NULL,
- PRIMARY KEY (`creature_entry`,`level`)
-) ENGINE=MyISAM DEFAULT CHARSET=utf8 PACK_KEYS=0 COMMENT='Stores pet levels stats.';
-/*!40101 SET character_set_client = @saved_cs_client */;
-
---
--- Dumping data for table `pet_levelstats`
---
-
-LOCK TABLES `pet_levelstats` WRITE;
-/*!40000 ALTER TABLE `pet_levelstats` DISABLE KEYS */;
-INSERT INTO `pet_levelstats` VALUES
-(1,1,42,1,20,22,20,22,20,20),
-(1,2,55,1,21,23,21,23,20,20),
-(1,3,71,1,46,24,21,24,20,21),
-(1,4,86,1,82,25,22,25,21,21),
-(1,5,102,1,126,26,23,25,21,21),
-(1,6,120,1,180,27,24,26,21,22),
-(1,7,137,1,245,28,24,27,21,22),
-(1,8,156,1,322,29,25,28,22,22),
-(1,9,176,1,412,30,26,29,22,23),
-(1,10,198,1,518,31,26,30,22,23),
-(1,11,222,1,545,32,27,34,22,24),
-(1,12,247,1,580,33,28,38,23,25),
-(1,13,273,1,615,34,30,42,23,25),
-(1,14,300,1,650,35,31,46,23,27),
-(1,15,328,1,685,37,32,51,24,28),
-(1,16,356,1,721,38,33,55,25,29),
-(1,17,386,1,756,40,34,59,25,30),
-(1,18,417,1,791,42,36,63,25,30),
-(1,19,449,1,826,44,37,67,26,32),
-(1,20,484,1,861,45,39,72,27,33),
-(1,21,521,1,897,47,39,76,27,34),
-(1,22,562,1,932,49,40,80,27,35),
-(1,23,605,1,967,50,42,84,28,36),
-(1,24,651,1,1002,52,43,88,28,37),
-(1,25,699,1,1037,53,45,94,29,39),
-(1,26,750,1,1072,55,46,98,30,39),
-(1,27,800,1,1108,56,47,102,30,40),
-(1,28,853,1,1142,58,49,106,30,41),
-(1,29,905,1,1177,60,50,110,31,42),
-(1,30,955,1,1212,61,52,115,32,44),
-(1,31,1006,1,1247,63,53,120,32,44),
-(1,32,1057,1,1283,64,54,124,33,46),
-(1,33,1110,1,1317,66,56,128,33,46),
-(1,34,1163,1,1353,67,57,132,33,48),
-(1,35,1220,1,1387,69,59,138,35,49),
-(1,36,1277,1,1494,70,60,142,35,50),
-(1,37,1336,1,1607,72,61,146,35,52),
-(1,38,1395,1,1724,74,63,151,36,52),
-(1,39,1459,1,1849,76,64,155,36,54),
-(1,40,1524,1,1980,78,66,160,37,55),
-(1,41,1585,1,2117,81,68,165,38,56),
-(1,42,1651,1,2262,86,69,169,38,57),
-(1,43,1716,1,2414,91,71,174,39,58),
-(1,44,1782,1,2574,97,72,178,39,59),
-(1,45,1848,1,2742,102,74,184,40,61),
-(1,46,1919,1,2798,104,75,188,41,62),
-(1,47,1990,1,2853,106,77,193,41,63),
-(1,48,2062,1,2907,108,79,197,42,64),
-(1,49,2138,1,2963,110,80,202,42,66),
-(1,50,2215,1,3018,113,82,207,43,67),
-(1,51,2292,1,3072,115,84,212,44,68),
-(1,52,2371,1,3128,117,85,216,44,69),
-(1,53,2453,1,3183,119,87,221,45,70),
-(1,54,2533,1,3237,122,89,226,45,72),
-(1,55,2614,1,3292,124,91,231,47,73),
-(1,56,2699,1,3348,127,92,236,47,74),
-(1,57,2784,1,3402,129,94,241,48,76),
-(1,58,2871,1,3457,131,96,245,48,77),
-(1,59,2961,1,3512,134,98,250,49,78),
-(1,60,3052,1,3814,136,100,256,50,80),
-(1,61,3144,1,4113,139,102,161,51,81),
-(1,62,3237,1,4410,141,105,266,52,83),
-(1,63,3331,1,4708,144,107,271,53,85),
-(1,64,3425,1,5006,146,110,276,54,87),
-(1,65,3524,1,5303,149,113,281,55,89),
-(1,66,3624,1,5601,151,116,287,56,91),
-(1,67,3728,1,5900,154,119,292,57,93),
-(1,68,3834,1,6197,156,122,297,58,95),
-(1,69,3941,1,6495,159,125,302,59,97),
-(1,70,4051,1,6794,162,128,307,60,99),
-(416,70,1528,2568,2207,145,39,101,334,264),
-(416,69,1464,2351,2008,144,36,100,327,262),
-(416,68,1429,2298,1987,143,34,98,320,260),
-(416,67,1401,2244,1900,142,33,98,313,258),
-(416,66,1357,2191,1872,141,33,97,306,255),
-(416,65,1335,2137,1844,140,33,97,299,250),
-(416,64,1292,2084,1809,139,33,95,292,247),
-(416,63,1188,2030,1732,137,32,92,285,244),
-(416,62,1050,1977,1663,135,31,90,278,241),
-(416,61,973,1925,1608,132,29,88,271,239),
-(416,60,920,1898,1163,122,27,86,264,197),
-(416,59,878,1824,1150,127,27,85,258,192),
-(416,58,862,1763,1125,125,27,84,250,189),
-(416,57,850,1714,1101,123,27,83,243,185),
-(416,56,846,1666,1091,121,27,83,236,181),
-(416,55,836,1620,1078,119,26,81,229,177),
-(416,54,820,1573,1055,115,26,80,222,172),
-(416,53,787,1527,1039,114,25,78,215,168),
-(416,52,764,1481,1013,112,24,76,208,165),
-(416,51,750,1435,996,109,22,74,202,161),
-(416,50,747,1391,983,107,22,72,194,158),
-(416,49,734,1347,964,105,22,69,188,155),
-(416,48,726,1320,946,102,22,68,184,152),
-(416,47,718,1294,928,100,22,68,181,151),
-(416,46,709,1267,910,98,22,67,177,149),
-(416,45,701,1240,884,96,21,67,174,148),
-(416,44,693,1214,853,91,21,66,170,146),
-(416,43,685,1187,808,87,20,66,167,145),
-(416,42,676,1103,756,81,20,65,163,144),
-(416,41,668,1063,694,77,20,65,160,143),
-(416,40,650,1026,639,74,20,64,156,142),
-(416,39,642,988,561,72,19,64,69,118),
-(416,38,634,952,549,70,19,63,68,115),
-(416,37,626,916,537,69,19,63,68,112),
-(416,36,617,879,525,67,19,62,66,110),
-(416,35,609,845,513,64,19,62,66,107),
-(416,34,601,793,501,63,19,60,65,104),
-(416,33,598,742,488,62,18,60,65,101),
-(416,32,590,720,476,60,17,58,64,98),
-(416,31,581,676,462,59,16,58,64,95),
-(416,30,579,648,449,57,16,57,63,92),
-(416,29,576,620,436,57,16,55,62,89),
-(416,28,574,592,424,55,15,54,62,86),
-(416,27,571,564,411,53,14,52,61,81),
-(416,26,569,534,399,52,13,49,60,78),
-(416,25,540,504,386,50,13,46,98,100),
-(416,24,520,476,373,49,13,43,97,95),
-(416,23,473,447,360,47,13,40,96,90),
-(416,22,449,420,346,46,13,38,95,86),
-(416,21,425,393,320,44,13,37,91,83),
-(416,20,403,377,303,42,13,35,87,78),
-(416,19,393,351,291,40,13,33,74,75),
-(416,18,362,314,278,39,13,32,70,70),
-(416,17,350,300,265,38,13,31,65,65),
-(416,16,329,275,253,36,13,30,62,56),
-(416,15,309,251,240,34,13,29,57,52),
-(416,14,299,227,228,33,13,28,54,47),
-(416,13,289,203,215,32,13,26,50,43),
-(416,12,250,180,203,31,12,26,41,39),
-(416,11,232,158,190,30,11,24,37,35),
-(416,10,223,147,180,29,10,24,33,31),
-(416,9,213,136,147,25,9,27,32,30),
-(416,8,204,125,117,23,8,23,31,29),
-(416,7,195,114,92,22,7,23,30,28),
-(416,6,186,103,68,20,7,22,29,27),
-(416,5,177,92,49,18,5,22,28,27),
-(416,4,168,81,33,17,5,21,27,26),
-(416,3,158,70,20,15,5,21,26,25),
-(416,2,149,59,20,21,5,20,25,24),
-(416,1,140,48,20,20,5,20,24,23),
-(417,70,3112,2420,4400,153,108,280,133,122),
-(417,69,3056,2360,4229,150,105,276,130,120),
-(417,68,3000,2300,4061,148,103,271,127,117),
-(417,67,2944,2252,3900,146,101,267,124,115),
-(417,66,2888,2195,3745,143,99,262,121,113),
-(417,65,2823,2139,3597,141,97,258,119,111),
-(417,64,2758,2084,3454,139,95,253,116,109),
-(417,63,2693,2030,3317,137,93,249,113,107),
-(417,62,2638,1977,3186,134,91,244,111,105),
-(417,61,2583,1925,3059,132,89,240,108,103),
-(417,60,2529,1874,2938,130,87,235,106,101),
-(417,59,2476,1824,2821,127,85,231,103,99),
-(417,58,2424,1763,2709,125,83,226,101,97),
-(417,57,2371,1714,2602,123,82,222,99,94),
-(417,56,2318,1666,2499,120,80,217,96,92),
-(417,55,2266,1620,2400,118,78,213,94,90),
-(417,54,2213,1573,2305,116,77,208,92,88),
-(417,53,2161,1527,2213,113,75,204,90,86),
-(417,52,2108,1481,2125,111,74,199,88,84),
-(417,51,2055,1435,2041,109,72,195,86,82),
-(417,50,2003,1391,1959,107,71,190,84,80),
-(417,49,1950,1347,1925,104,69,186,82,78),
-(417,48,1889,1320,1888,102,68,181,80,76),
-(417,47,1828,1294,1853,100,66,177,78,75),
-(417,46,1768,1267,1817,98,65,173,77,73),
-(417,45,1708,1240,1750,95,64,168,75,71),
-(417,44,1648,1214,1650,91,61,164,73,70),
-(417,43,1588,1187,1550,87,60,160,71,68),
-(417,42,1528,1103,1484,81,59,156,70,67),
-(417,41,1468,1063,1390,76,58,151,68,65),
-(417,40,1408,1026,1250,73,57,146,67,64),
-(417,39,1348,988,1048,71,56,142,68,62),
-(417,38,1288,952,1024,70,55,139,69,61),
-(417,37,1227,916,1001,68,54,138,70,60),
-(417,36,1167,879,977,67,53,138,72,58),
-(417,35,1107,845,953,65,52,137,73,57),
-(417,34,1047,793,929,63,50,135,76,56),
-(417,33,987,742,905,62,49,131,74,54),
-(417,32,921,720,882,60,47,127,73,53),
-(417,31,856,676,858,59,47,123,71,52),
-(417,30,800,648,834,57,46,118,69,51),
-(417,29,775,620,810,55,45,114,67,50),
-(417,28,740,592,786,54,44,110,65,49),
-(417,27,705,564,763,52,43,105,63,48),
-(417,26,678,543,739,51,42,101,61,47),
-(417,25,630,504,715,49,41,97,59,46),
-(417,24,595,476,691,47,40,93,57,45),
-(417,23,558,447,667,46,39,88,55,44),
-(417,22,528,423,644,44,38,84,53,43),
-(417,21,500,400,620,43,37,80,51,42),
-(417,20,471,377,596,41,36,75,49,41),
-(417,19,438,351,572,39,35,71,47,40),
-(417,18,392,314,548,38,34,67,45,39),
-(417,17,375,300,525,36,33,62,43,38),
-(417,16,343,275,501,35,32,58,41,37),
-(417,15,313,251,477,33,31,54,39,36),
-(417,14,284,227,453,31,30,50,37,35),
-(417,13,254,203,429,30,29,45,35,34),
-(417,12,225,180,406,28,28,41,33,33),
-(417,11,198,158,382,27,27,37,31,32),
-(417,10,184,147,358,25,26,34,29,31),
-(417,9,170,136,334,23,25,32,27,30),
-(417,8,156,125,310,22,24,29,25,29),
-(417,7,152,114,287,20,23,27,23,28),
-(417,6,129,103,263,19,22,24,21,27),
-(417,5,115,92,239,17,21,22,19,26),
-(417,4,101,81,215,15,20,19,17,25),
-(417,3,87,70,191,14,19,17,15,24),
-(417,2,73,59,168,12,18,14,13,23),
-(417,1,60,48,144,11,17,12,11,22),
-(1860,70,4860,2885,9109,153,109,280,133,190),
-(1860,69,4764,2751,8876,151,106,278,130,185),
-(1860,68,4529,2598,8409,148,104,276,127,175),
-(1860,67,4321,2444,7944,146,101,272,124,170),
-(1860,66,4145,2391,7481,144,99,268,122,168),
-(1860,65,3934,2237,7020,142,97,264,119,167),
-(1860,64,3830,2184,6561,139,95,259,102,164),
-(1860,63,3726,2030,6104,137,93,255,93,160),
-(1860,62,3627,1977,5649,135,91,253,86,158),
-(1860,61,3522,1925,5196,132,89,251,78,153),
-(1860,60,3419,1874,4745,129,85,249,70,150),
-(1860,59,3318,1824,4673,127,83,230,69,147),
-(1860,58,3222,1763,4579,125,82,224,68,144),
-(1860,57,3110,1714,4500,123,81,220,67,142),
-(1860,56,3006,1666,4428,121,80,215,66,139),
-(1860,55,2876,1620,4362,119,79,211,65,135),
-(1860,54,2840,1573,4302,115,76,207,64,133),
-(1860,53,2757,1527,4207,114,75,203,63,131),
-(1860,52,2661,1481,4136,112,74,198,62,128),
-(1860,51,2560,1435,4068,109,72,194,60,127),
-(1860,50,2527,1391,4013,107,71,190,59,123),
-(1860,49,2474,1347,3943,105,69,186,58,78),
-(1860,48,2436,1320,3868,102,68,181,57,76),
-(1860,47,2358,1294,3796,100,66,177,57,75),
-(1860,46,2349,1267,3722,98,65,173,57,73),
-(1860,45,2303,1240,3620,96,64,169,55,72),
-(1860,44,2290,1214,3463,91,61,164,54,71),
-(1860,43,2260,1187,3228,87,60,160,52,69),
-(1860,42,2215,1103,3034,81,59,156,51,67),
-(1860,41,2135,1063,2826,77,58,152,51,66),
-(1860,40,2052,1026,2675,74,57,147,50,64),
-(1860,39,1974,988,2496,72,56,142,49,62),
-(1860,38,1924,952,2331,70,55,139,49,61),
-(1860,37,1830,916,2246,69,53,138,48,59),
-(1860,36,1760,879,2150,67,52,137,47,58),
-(1860,35,1690,845,1911,64,51,136,46,57),
-(1860,34,1574,793,1861,63,50,135,46,56),
-(1860,33,1457,742,1812,62,49,131,45,54),
-(1860,32,1386,720,1766,60,47,127,43,53),
-(1860,31,1292,676,1715,59,47,123,42,52),
-(1860,30,1215,648,1667,57,46,118,41,51),
-(1860,29,1127,620,1619,57,44,114,40,49),
-(1860,28,1035,592,1572,55,43,110,39,48),
-(1860,27,968,564,1524,53,42,105,38,47),
-(1860,26,911,534,1474,52,41,101,37,46),
-(1860,25,854,504,1427,50,40,97,36,44),
-(1860,24,823,476,1378,49,39,93,35,43),
-(1860,23,746,447,1330,47,38,89,34,42),
-(1860,22,699,420,1282,46,36,84,33,41),
-(1860,21,653,393,1232,44,36,80,32,39),
-(1860,20,606,377,1165,42,35,67,31,49),
-(1860,19,566,351,1120,40,33,63,30,46),
-(1860,18,528,314,1068,39,33,59,28,38),
-(1860,17,490,300,1022,38,31,55,28,42),
-(1860,16,455,275,975,36,30,52,27,39),
-(1860,15,421,251,925,34,30,48,26,37),
-(1860,14,368,227,878,33,28,44,25,35),
-(1860,13,354,203,827,32,28,43,26,32),
-(1860,12,322,180,782,31,26,36,24,31),
-(1860,11,291,158,734,30,25,32,22,28),
-(1860,10,260,147,694,29,25,29,22,26),
-(1860,9,113,136,180,25,22,27,4,0),
-(1860,8,104,125,160,23,21,25,4,0),
-(1860,7,95,114,140,22,20,21,3,0),
-(1860,6,86,103,120,20,19,16,3,0),
-(1860,5,77,92,100,18,18,12,2,0),
-(1860,4,68,81,80,17,17,8,2,0),
-(1860,3,58,70,60,15,16,4,1,0),
-(1860,2,49,59,40,14,15,2,1,0),
-(1860,1,40,48,20,12,14,1,1,0),
-(1863,70,2164,2405,4293,153,108,280,133,122),
-(1863,69,2118,2351,3800,151,106,271,130,119),
-(1863,68,2073,2298,3450,148,104,266,127,117),
-(1863,67,2027,2244,3150,146,101,262,124,114),
-(1863,66,1982,2191,2910,144,99,258,122,112),
-(1863,65,1936,2137,2700,142,97,254,119,109),
-(1863,64,1891,2084,2550,139,95,249,116,107),
-(1863,63,1845,2030,2440,137,93,245,113,105),
-(1863,62,1800,1977,2380,135,91,241,111,103),
-(1863,61,1754,1925,2300,132,89,237,108,101),
-(1863,60,1709,1874,2261,130,87,232,106,98),
-(1863,59,1666,1824,2230,128,86,228,103,96),
-(1863,58,1623,1763,2189,125,84,224,101,94),
-(1863,57,1580,1714,2156,123,82,220,99,92),
-(1863,56,1536,1666,2113,121,80,215,96,90),
-(1863,55,1493,1620,2089,119,79,211,94,88),
-(1863,54,1450,1573,2056,116,77,207,92,87),
-(1863,53,1407,1527,2020,114,75,203,90,85),
-(1863,52,1364,1481,1984,112,74,198,88,83),
-(1863,51,1320,1435,1945,109,72,194,86,81),
-(1863,50,1277,1391,1912,107,71,190,84,80),
-(1863,49,1234,1347,1878,105,69,186,82,78),
-(1863,48,1196,1320,1843,102,68,181,80,76),
-(1863,47,1158,1294,1808,100,66,177,78,75),
-(1863,46,1119,1267,1773,98,65,173,77,73),
-(1863,45,1081,1240,1738,96,64,169,75,72),
-(1863,44,1043,1214,1670,91,61,164,74,71),
-(1863,43,1005,1187,1560,87,60,160,72,69),
-(1863,42,976,1103,1448,81,59,156,70,67),
-(1863,41,928,1063,1338,77,58,152,68,66),
-(1863,40,890,1026,1244,74,57,147,67,64),
-(1863,39,852,988,1163,72,56,142,68,62),
-(1863,38,814,952,1095,70,55,139,69,61),
-(1863,37,776,916,1038,69,53,138,70,59),
-(1863,36,737,879,990,67,52,137,72,58),
-(1863,35,699,845,950,63,51,136,73,57),
-(1863,34,661,793,908,64,50,135,76,56),
-(1863,33,728,742,884,62,49,131,74,54),
-(1863,32,680,720,862,60,47,127,73,53),
-(1863,31,631,676,838,59,47,123,71,52),
-(1863,30,599,648,815,57,46,118,69,51),
-(1863,29,566,620,791,57,44,114,67,49),
-(1863,28,534,592,768,55,43,110,65,48),
-(1863,27,501,564,745,53,42,105,63,47),
-(1863,26,469,534,721,52,41,101,62,46),
-(1863,25,440,504,699,50,40,97,60,44),
-(1863,24,400,476,675,49,39,93,57,43),
-(1863,23,373,447,652,47,38,89,56,42),
-(1863,22,349,420,628,46,36,84,54,41),
-(1863,21,325,393,604,44,36,80,53,39),
-(1863,20,303,377,563,42,35,67,31,49),
-(1863,19,293,351,550,40,33,72,29,39),
-(1863,18,262,314,510,39,32,67,24,38),
-(1863,17,250,300,460,37,31,63,20,37),
-(1863,16,229,275,400,36,30,59,16,36),
-(1863,15,209,251,360,34,29,55,14,35),
-(1863,14,189,227,320,33,28,50,11,35),
-(1863,13,169,203,280,31,27,46,9,34),
-(1863,12,150,180,240,29,26,42,8,33),
-(1863,11,132,158,220,28,25,38,6,32),
-(1863,10,123,147,200,26,23,33,5,31),
-(1863,9,113,136,180,25,22,29,4,31),
-(1863,8,104,125,160,23,21,25,4,30),
-(1863,7,95,114,140,22,20,21,3,29),
-(1863,6,86,103,120,20,19,16,3,29),
-(1863,5,77,92,100,18,18,12,2,28),
-(1863,4,68,81,80,17,17,8,2,27),
-(1863,3,58,70,60,15,16,4,1,27),
-(1863,2,49,59,40,14,15,2,1,26),
-(1863,1,40,48,20,12,14,1,1,25),
-(510,1,60,60,0,20,16,20,13,8),
-(510,2,73,73,0,21,17,21,14,10),
-(510,3,87,87,0,22,18,22,15,12),
-(510,4,101,101,0,23,19,23,16,14),
-(510,5,115,115,0,24,20,24,17,16),
-(510,6,129,129,0,25,21,25,18,18),
-(510,7,152,152,0,26,22,26,19,20),
-(510,8,156,156,0,27,23,27,20,22),
-(510,9,170,170,0,28,24,28,21,24),
-(510,10,184,184,0,29,25,29,22,26),
-(510,11,198,198,0,30,25,32,22,28),
-(510,12,225,225,0,31,26,36,24,31),
-(510,13,254,254,0,32,28,43,26,32),
-(510,14,284,254,0,33,28,44,25,35),
-(510,15,313,313,0,34,30,48,26,37),
-(510,16,343,343,0,36,30,52,27,39),
-(510,17,375,375,0,38,31,55,28,42),
-(510,18,392,392,0,39,33,59,28,44),
-(510,19,438,438,0,40,33,63,30,46),
-(510,20,471,471,0,42,35,67,31,49),
-(510,21,500,500,0,44,36,80,31,51),
-(510,22,528,528,0,46,36,84,32,53),
-(510,23,558,558,0,47,38,89,33,55),
-(510,24,595,595,0,49,39,83,34,58),
-(510,25,630,630,0,50,40,87,35,61),
-(510,26,678,678,0,52,41,91,36,62),
-(510,27,705,705,0,53,42,95,37,65),
-(510,28,740,740,0,55,43,99,38,67),
-(510,29,775,775,0,56,44,103,39,70),
-(510,30,800,800,0,58,46,107,40,72),
-(510,31,856,856,0,59,47,111,40,74),
-(510,32,921,921,0,61,48,115,41,77),
-(510,33,987,987,0,62,49,119,42,79),
-(510,34,1047,1047,0,63,51,123,43,82),
-(510,35,1107,1107,0,65,52,127,44,84),
-(510,36,1167,1167,0,66,53,131,45,87),
-(510,37,1227,1227,0,68,53,135,46,89),
-(510,38,1288,1288,0,70,55,139,47,91),
-(510,39,1348,1348,0,72,56,143,48,94),
-(510,40,1408,1408,0,74,58,148,49,97),
-(510,41,1468,1468,0,76,59,152,50,99),
-(510,42,1528,1528,0,81,59,156,51,102),
-(510,43,1588,1588,0,86,61,160,52,104),
-(510,44,1648,1648,0,89,62,164,53,107),
-(510,45,1708,1708,0,91,64,169,54,109),
-(510,46,1768,1768,0,94,65,173,55,112),
-(510,47,1828,1828,0,96,66,178,56,115),
-(510,48,1889,1889,0,99,68,182,57,117),
-(510,49,1950,1950,0,101,69,186,58,120),
-(510,50,2003,2003,0,104,71,191,59,123),
-(510,51,2055,2055,0,107,72,195,61,126),
-(510,52,2108,2108,0,109,73,199,62,128),
-(510,53,2161,2161,0,112,75,204,63,131),
-(510,54,2213,2213,0,114,76,208,64,134),
-(510,55,2266,2266,0,117,77,213,65,136),
-(510,56,2318,2318,0,119,79,217,66,139),
-(510,57,2371,2371,0,122,80,221,67,142),
-(510,58,2424,2425,0,124,82,226,68,144),
-(510,59,2476,2476,0,127,83,230,69,147),
-(510,60,2529,1874,0,129,85,234,70,150),
-(510,61,2582,2682,0,130,86,238,71,153),
-(510,62,2635,2735,0,131,87,242,72,156),
-(510,63,2688,2788,0,132,88,246,73,159),
-(510,64,2741,2841,0,133,89,250,74,162),
-(510,65,2794,2894,0,134,90,254,75,165),
-(510,66,2847,2947,0,135,91,258,76,168),
-(510,67,2900,3000,0,136,92,262,77,171),
-(510,68,2953,3053,0,137,93,266,78,174),
-(510,69,3006,3100,0,138,94,280,79,177),
-(510,70,3059,3212,0,139,95,284,80,180),
-(19668,1,100,0,100,10,10,0,0,0),
-(19668,2,100,0,100,10,10,0,0,0),
-(19668,3,100,0,100,10,10,0,0,0),
-(19668,4,100,0,100,10,10,0,0,0),
-(19668,5,100,0,100,10,10,0,0,0),
-(19668,6,100,0,100,10,10,0,0,0),
-(19668,7,100,0,100,10,10,0,0,0),
-(19668,8,100,0,100,10,10,0,0,0),
-(19668,9,100,0,100,10,10,0,0,0),
-(19668,10,100,0,100,10,10,0,0,0),
-(19668,11,100,0,100,10,10,0,0,0),
-(19668,12,100,0,100,10,10,0,0,0),
-(19668,13,100,0,100,10,10,0,0,0),
-(19668,14,100,0,100,10,10,0,0,0),
-(19668,15,100,0,100,10,10,0,0,0),
-(19668,16,100,0,100,10,10,0,0,0),
-(19668,17,100,0,100,10,10,0,0,0),
-(19668,18,100,0,100,10,10,0,0,0),
-(19668,19,100,0,100,10,10,0,0,0),
-(19668,20,100,0,100,10,10,0,0,0),
-(19668,21,100,0,100,10,10,0,0,0),
-(19668,22,100,0,100,10,10,0,0,0),
-(19668,23,100,0,100,10,10,0,0,0),
-(19668,24,100,0,100,10,10,0,0,0),
-(19668,25,100,0,100,10,10,0,0,0),
-(19668,26,100,0,100,10,10,0,0,0),
-(19668,27,100,0,100,10,10,0,0,0),
-(19668,28,100,0,100,10,10,0,0,0),
-(19668,29,100,0,100,10,10,0,0,0),
-(19668,30,100,0,100,10,10,0,0,0),
-(19668,31,100,0,100,10,10,0,0,0),
-(19668,32,100,0,100,10,10,0,0,0),
-(19668,33,100,0,100,10,10,0,0,0),
-(19668,34,100,0,100,10,10,0,0,0),
-(19668,35,100,0,100,10,10,0,0,0),
-(19668,36,100,0,100,10,10,0,0,0),
-(19668,37,100,0,100,10,10,0,0,0),
-(19668,38,100,0,100,10,10,0,0,0),
-(19668,39,100,0,100,10,10,0,0,0),
-(19668,40,100,0,100,10,10,0,0,0),
-(19668,41,100,0,100,10,10,0,0,0),
-(19668,42,100,0,100,10,10,0,0,0),
-(19668,43,100,0,100,10,10,0,0,0),
-(19668,44,100,0,100,10,10,0,0,0),
-(19668,45,100,0,100,10,10,0,0,0),
-(19668,46,100,0,100,10,10,0,0,0),
-(19668,47,100,0,100,10,10,0,0,0),
-(19668,48,100,0,100,10,10,0,0,0),
-(19668,49,100,0,100,10,10,0,0,0),
-(19668,50,100,0,100,10,10,0,0,0),
-(19668,51,100,0,100,10,10,0,0,0),
-(19668,52,100,0,100,10,10,0,0,0),
-(19668,53,100,0,100,10,10,0,0,0),
-(19668,54,100,0,100,10,10,0,0,0),
-(19668,55,100,0,100,10,10,0,0,0),
-(19668,56,100,0,100,10,10,0,0,0),
-(19668,57,100,0,100,10,10,0,0,0),
-(19668,58,100,0,100,10,10,0,0,0),
-(19668,59,100,0,100,10,10,0,0,0),
-(19668,60,100,0,100,10,10,0,0,0),
-(19668,61,100,0,100,10,10,0,0,0),
-(19668,62,100,0,100,10,10,0,0,0),
-(19668,63,100,0,100,10,10,0,0,0),
-(19668,64,100,0,100,10,10,0,0,0),
-(19668,65,100,0,100,10,10,0,0,0),
-(19668,66,7500,0,100,140,10,0,0,0),
-(19668,67,8000,0,100,140,10,0,0,0),
-(19668,68,8500,0,100,140,10,0,0,0),
-(19668,69,9000,0,100,140,10,0,0,0),
-(19668,70,9630,0,100,140,10,0,0,0),
-(575,1,100,0,100,10,10,0,0,0),
-(575,2,100,0,100,10,10,0,0,0),
-(575,3,100,0,100,10,10,0,0,0),
-(575,4,100,0,100,10,10,0,0,0),
-(575,5,100,0,100,10,10,0,0,0),
-(575,6,100,0,100,10,10,0,0,0),
-(575,7,100,0,100,10,10,0,0,0),
-(575,8,100,0,100,10,10,0,0,0),
-(575,9,100,0,100,10,10,0,0,0),
-(575,10,100,0,100,10,10,0,0,0),
-(575,11,100,0,100,10,10,0,0,0),
-(575,12,100,0,100,10,10,0,0,0),
-(575,13,100,0,100,10,10,0,0,0),
-(575,14,100,0,100,10,10,0,0,0),
-(575,15,100,0,100,10,10,0,0,0),
-(575,16,100,0,100,10,10,0,0,0),
-(575,17,100,0,100,10,10,0,0,0),
-(575,18,100,0,100,10,10,0,0,0),
-(575,19,100,0,100,10,10,0,0,0),
-(575,20,100,0,100,10,10,0,0,0),
-(575,21,100,0,100,10,10,0,0,0),
-(575,22,100,0,100,10,10,0,0,0),
-(575,23,100,0,100,10,10,0,0,0),
-(575,24,100,0,100,10,10,0,0,0),
-(575,25,100,0,100,10,10,0,0,0),
-(575,26,100,0,100,10,10,0,0,0),
-(575,27,100,0,100,10,10,0,0,0),
-(575,28,100,0,100,10,10,0,0,0),
-(575,29,100,0,100,10,10,0,0,0),
-(575,30,100,0,100,10,10,0,0,0),
-(575,31,100,0,100,10,10,0,0,0),
-(575,32,100,0,100,10,10,0,0,0),
-(575,33,100,0,100,10,10,0,0,0),
-(575,34,100,0,100,10,10,0,0,0),
-(575,35,1400,0,50,10,10,0,0,0),
-(575,36,1700,0,50,10,10,0,0,0),
-(575,37,100,0,100,10,10,0,0,0),
-(575,38,100,0,100,10,10,0,0,0),
-(575,39,100,0,100,10,10,0,0,0),
-(575,40,100,0,100,10,10,0,0,0),
-(575,41,100,0,100,10,10,0,0,0),
-(575,42,100,0,100,10,10,0,0,0),
-(575,43,100,0,100,10,10,0,0,0),
-(575,44,100,0,100,10,10,0,0,0),
-(575,45,100,0,100,10,10,0,0,0),
-(575,46,100,0,100,10,10,0,0,0),
-(575,47,100,0,100,10,10,0,0,0),
-(575,48,100,0,100,10,10,0,0,0),
-(575,49,100,0,100,10,10,0,0,0),
-(575,50,100,0,100,10,10,0,0,0),
-(575,51,100,0,100,10,10,0,0,0),
-(575,52,100,0,100,10,10,0,0,0),
-(575,53,100,0,100,10,10,0,0,0),
-(575,54,100,0,100,10,10,0,0,0),
-(575,55,100,0,100,10,10,0,0,0),
-(575,56,100,0,100,10,10,0,0,0),
-(575,57,100,0,100,10,10,0,0,0),
-(575,58,100,0,100,10,10,0,0,0),
-(575,59,100,0,100,10,10,0,0,0),
-(575,60,100,0,100,10,10,0,0,0),
-(575,61,100,0,100,10,10,0,0,0),
-(575,62,100,0,100,10,10,0,0,0),
-(575,63,100,0,100,10,10,0,0,0),
-(575,64,100,0,100,10,10,0,0,0),
-(575,65,100,0,100,10,10,0,0,0),
-(575,66,7500,0,100,140,10,0,0,0),
-(575,67,8000,0,100,140,10,0,0,0),
-(575,68,8500,0,100,140,10,0,0,0),
-(575,69,9000,0,100,140,10,0,0,0),
-(575,70,9630,0,100,140,10,0,0,0),
-(17252,1,40,48,20,12,14,1,1,25),
-(17252,2,49,59,40,14,15,2,1,26),
-(17252,3,58,70,60,15,16,4,1,27),
-(17252,4,68,81,80,17,17,8,2,27),
-(17252,5,77,92,100,18,18,12,2,28),
-(17252,6,86,103,120,20,19,16,3,29),
-(17252,7,95,114,140,22,20,21,3,29),
-(17252,8,104,125,160,23,21,25,4,30),
-(17252,9,113,136,180,25,22,29,4,31),
-(17252,10,123,147,200,26,23,33,5,31),
-(17252,11,132,158,220,28,25,38,6,32),
-(17252,12,150,180,240,29,26,42,8,33),
-(17252,13,169,203,280,31,27,46,9,34),
-(17252,14,189,227,320,33,28,50,11,35),
-(17252,15,209,251,360,34,29,55,14,35),
-(17252,16,229,275,400,36,30,59,16,36),
-(17252,17,250,300,460,37,31,63,20,37),
-(17252,18,262,314,510,39,32,67,24,38),
-(17252,19,293,351,550,40,33,72,29,39),
-(17252,20,303,377,563,42,35,67,31,49),
-(17252,21,325,393,604,44,36,80,53,39),
-(17252,22,349,420,628,46,36,84,54,41),
-(17252,23,373,447,652,47,38,89,56,42),
-(17252,24,400,476,675,49,39,93,57,43),
-(17252,25,440,504,699,50,40,97,60,44),
-(17252,26,469,534,721,52,41,101,62,46),
-(17252,27,501,564,745,53,42,105,63,47),
-(17252,28,534,592,768,55,43,110,65,48),
-(17252,29,566,620,791,57,44,114,67,49),
-(17252,30,599,648,815,57,46,118,69,51),
-(17252,31,631,676,838,59,47,123,71,52),
-(17252,32,680,720,862,60,47,127,73,53),
-(17252,33,728,742,884,62,49,131,74,54),
-(17252,34,661,793,908,64,50,135,76,56),
-(17252,35,699,845,950,63,51,136,73,57),
-(17252,36,737,879,990,67,52,137,72,58),
-(17252,37,776,916,1038,69,53,138,70,59),
-(17252,38,814,952,1095,70,55,139,69,61),
-(17252,39,852,988,1163,72,56,142,68,62),
-(17252,40,890,1026,1244,74,57,147,67,64),
-(17252,41,928,1063,1338,77,58,152,68,66),
-(17252,42,976,1103,1448,81,59,156,70,67),
-(17252,43,1005,1187,1560,87,60,160,72,69),
-(17252,44,1043,1214,1670,91,61,164,74,71),
-(17252,45,1081,1240,1738,96,64,169,75,72),
-(17252,46,1119,1267,1773,98,65,173,77,73),
-(17252,47,1158,1294,1808,100,66,177,78,75),
-(17252,48,1196,1320,1843,102,68,181,80,76),
-(17252,49,1234,1347,1878,105,69,186,82,78),
-(17252,50,2877,2391,3494,107,71,190,84,80),
-(17252,51,2920,2435,3559,109,72,223,97,81),
-(17252,52,3164,2481,3624,112,74,228,100,82),
-(17252,53,3207,2527,3686,113,75,233,102,84),
-(17252,54,3350,2573,3752,116,77,238,104,87),
-(17252,55,3493,2620,3814,119,78,243,106,88),
-(17252,56,3536,2766,3878,120,79,248,108,89),
-(17252,57,3680,2814,3941,123,82,251,111,92),
-(17252,58,3723,2913,4006,125,84,255,113,94),
-(17252,59,3866,2924,4067,128,86,258,115,96),
-(17252,60,3909,3174,4635,130,87,270,118,98),
-(17252,61,4054,3225,6300,132,90,274,121,101),
-(17252,62,4300,3377,6380,135,92,280,122,103),
-(17252,63,4545,3430,6440,137,93,286,123,105),
-(17252,64,4691,3584,6550,139,95,295,128,107),
-(17252,65,4749,3646,6612,142,98,300,129,110),
-(17252,66,4876,3778,6910,144,99,306,130,112),
-(17252,67,4984,3863,7150,146,101,310,131,114),
-(17252,68,5197,3949,7450,148,105,325,132,117),
-(17252,69,5208,4035,7800,151,107,335,133,119),
-(17252,70,5320,4170,7927,153,108,351,196,122),
-(14385,1,48,80,10,20,16,13,20,8),
-(14385,2,105,106,67,22,17,14,21,9),
-(14385,3,162,132,124,24,18,15,22,10),
-(14385,4,219,158,181,26,19,16,23,11),
-(14385,5,276,184,238,28,20,17,24,12),
-(14385,6,333,210,295,30,21,18,25,13),
-(14385,7,390,236,352,32,22,19,26,14),
-(14385,8,447,262,409,34,23,20,27,15),
-(14385,9,504,288,466,36,24,21,28,16),
-(14385,10,561,314,523,38,25,22,29,17),
-(14385,11,618,340,580,40,26,23,30,18),
-(14385,12,675,366,637,42,27,24,31,19),
-(14385,13,732,392,694,44,28,25,32,20),
-(14385,14,789,418,751,46,29,26,33,21),
-(14385,15,846,444,808,48,30,27,34,22),
-(14385,16,903,470,865,50,31,28,35,23),
-(14385,17,960,496,922,52,32,29,36,24),
-(14385,18,1017,522,979,54,33,30,37,25),
-(14385,19,1074,548,1036,56,34,31,38,26),
-(14385,20,1131,574,1093,58,35,32,39,27),
-(14385,21,1188,600,1150,60,36,33,40,28),
-(14385,22,1245,626,1207,62,37,34,41,29),
-(14385,23,1302,652,1264,64,38,35,42,30),
-(14385,24,1359,678,1321,66,39,36,43,31),
-(14385,25,1416,704,1378,68,40,37,44,32),
-(14385,26,1473,730,1435,70,41,38,45,33),
-(14385,27,1530,756,1492,72,42,39,46,34),
-(14385,28,1587,782,1549,74,43,40,47,35),
-(14385,29,1644,808,1606,76,44,41,48,36),
-(14385,30,1701,834,1663,78,45,42,49,37),
-(14385,31,1758,860,1720,80,46,43,50,38),
-(14385,32,1815,886,1777,82,47,44,51,39),
-(14385,33,1872,912,1834,84,48,45,52,40),
-(14385,34,1929,938,1891,86,49,46,53,41),
-(14385,35,1986,964,1948,88,50,47,54,42),
-(14385,36,2043,990,2005,90,51,48,55,43),
-(14385,37,2100,1016,2062,92,52,49,56,44),
-(14385,38,2157,1042,2119,94,53,50,57,45),
-(14385,39,2214,1068,2176,96,54,51,58,46),
-(14385,40,2271,1094,2233,98,55,52,59,47),
-(14385,41,2328,1120,2290,100,56,53,60,48),
-(14385,42,2385,1146,2347,102,57,54,61,49),
-(14385,43,2442,1172,2404,104,58,55,62,50),
-(14385,44,2499,1198,2461,106,59,56,63,51),
-(14385,45,2556,1224,2518,108,60,57,64,52),
-(14385,46,2613,1250,2575,110,61,58,65,53),
-(14385,47,2670,1276,2632,112,62,59,66,54),
-(14385,48,2727,1302,2689,114,63,60,67,55),
-(14385,49,2784,1328,2746,116,64,61,68,56),
-(14385,50,2841,1354,2803,118,65,62,69,57),
-(14385,51,2898,1380,2860,120,66,63,70,58),
-(14385,52,2955,1406,2917,122,67,64,71,59),
-(14385,53,3012,1432,2974,124,68,65,72,60),
-(14385,54,3069,1458,3031,126,69,66,73,61),
-(14385,55,3126,1484,3088,128,70,67,74,62),
-(14385,56,3183,1510,3145,130,71,68,75,63),
-(14385,57,3240,1536,3202,132,72,69,76,64),
-(14385,58,3297,1562,3259,134,73,70,77,65),
-(14385,59,3354,1588,3316,136,74,71,78,66),
-(14385,60,3411,1614,3373,138,75,72,79,67),
-(14385,61,3468,1640,3430,140,76,73,80,68),
-(14385,62,3525,1666,3487,142,77,74,81,69),
-(14385,63,3582,1692,3544,144,78,75,82,70),
-(14385,64,3639,1718,3601,146,79,76,83,71),
-(14385,65,3696,1744,3658,148,80,77,84,72),
-(14385,66,3753,1770,3715,150,81,78,85,73),
-(14385,67,3810,1796,3772,152,82,79,86,74),
-(14385,68,3867,1822,3829,154,83,80,87,75),
-(14385,69,3924,1848,3886,156,84,81,88,76),
-(14385,70,3981,1874,3943,158,85,82,89,77),
-(3450,1,14,40,0,20,20,20,24,23),
-(3450,2,19,49,0,21,20,20,25,24),
-(3450,3,24,58,0,22,20,21,26,25),
-(3450,4,29,67,0,23,21,21,27,26),
-(3450,5,34,76,0,23,21,22,28,27),
-(3450,6,40,85,0,24,21,22,29,27),
-(3450,7,46,95,0,25,21,23,30,28),
-(3450,8,52,105,0,26,21,23,31,29),
-(3450,9,58,116,0,27,21,23,32,30),
-(3450,10,64,126,0,27,22,24,33,31),
-(3450,11,75,151,0,28,22,24,37,35),
-(3450,12,83,177,0,29,22,26,41,39),
-(3450,13,91,198,0,30,22,26,44,43),
-(3450,14,120,234,0,31,22,28,50,47),
-(3450,15,129,262,0,32,23,29,54,52),
-(3450,16,138,290,0,34,23,30,57,56),
-(3450,17,147,318,0,36,23,31,61,60),
-(3450,18,156,346,0,37,23,32,65,65),
-(3450,19,165,374,0,38,23,33,70,69),
-(3450,20,175,402,0,40,24,35,74,74),
-(3450,21,184,430,0,42,24,37,87,78),
-(3450,22,193,458,0,44,24,39,91,82),
-(3450,23,202,486,0,45,24,40,95,86),
-(3450,24,212,514,0,46,25,42,94,90),
-(3450,25,224,539,0,47,25,43,94,95),
-(3450,26,237,568,0,48,25,43,98,100),
-(3450,27,249,598,0,50,25,42,102,104),
-(3450,28,262,632,0,51,25,44,109,110),
-(3450,29,274,667,0,52,26,44,114,114),
-(3450,30,287,702,0,54,26,45,120,118),
-(3450,31,299,734,0,55,26,46,124,123),
-(3450,32,312,772,0,57,26,47,128,128),
-(3450,33,324,807,0,58,27,48,132,131),
-(3450,34,338,842,0,60,27,50,136,135),
-(3450,35,360,898,0,62,27,51,139,136),
-(3450,36,382,954,0,65,27,52,142,137),
-(3450,37,404,1010,0,67,27,54,146,138),
-(3450,38,427,1066,0,70,28,55,149,139),
-(3450,39,449,1122,0,73,28,56,153,141),
-(3450,40,471,1178,0,75,28,58,156,142),
-(3450,41,493,1234,0,78,28,59,160,143),
-(3450,42,516,1290,0,80,29,60,163,144),
-(3450,43,538,1346,0,83,29,62,167,145),
-(3450,44,560,1402,0,86,29,63,170,147),
-(3450,45,582,1458,0,88,29,64,174,148),
-(3450,46,605,1514,0,91,30,66,177,149),
-(3450,47,627,1570,0,93,30,67,181,151),
-(3450,48,649,1627,0,96,30,68,184,152),
-(3450,49,672,1685,0,99,31,70,188,155),
-(3450,50,694,1704,0,101,31,71,194,160),
-(3450,51,716,1723,0,103,31,72,201,170),
-(3450,52,738,1743,0,105,32,74,208,180),
-(3450,53,761,1762,0,107,32,75,215,190),
-(3450,54,783,1781,0,109,32,77,222,200),
-(3450,55,805,1801,0,111,33,78,229,210),
-(3450,56,827,1820,0,113,33,80,236,220),
-(3450,57,850,1839,0,115,33,81,243,230),
-(3450,58,872,1859,0,117,34,83,250,240),
-(3450,59,894,1878,0,120,34,84,257,250),
-(3450,60,917,1898,0,122,35,86,264,260),
-(3450,61,939,1918,0,125,35,88,271,270),
-(3450,62,961,1937,0,128,36,89,278,280),
-(3450,63,983,1956,0,131,36,91,285,290),
-(3450,64,1005,1975,0,134,36,93,292,300),
-(3450,65,1027,1994,0,137,37,94,299,310),
-(3450,66,1049,2013,0,140,37,96,306,320),
-(3450,67,1072,2032,0,143,37,97,313,330),
-(3450,68,1094,2052,0,146,38,99,320,340),
-(3450,69,1126,2071,0,149,38,100,327,350),
-(3450,70,1149,2090,0,152,39,102,334,360),
-(8996,1,80,48,0,0,0,0,0,0),
-(8996,2,100,59,0,0,0,0,0,0),
-(8996,3,120,70,0,0,0,0,0,0),
-(8996,4,140,81,0,0,0,0,0,0),
-(8996,5,160,92,0,0,0,0,0,0),
-(8996,6,180,103,0,0,0,0,0,0),
-(8996,7,200,114,0,0,0,0,0,0),
-(8996,8,220,125,0,0,0,0,0,0),
-(8996,9,240,136,0,0,0,0,0,0),
-(8996,10,260,147,694,29,25,29,22,26),
-(8996,11,291,158,734,30,25,32,23,28),
-(8996,12,322,180,782,31,26,36,24,31),
-(8996,13,354,203,827,32,28,43,26,32),
-(8996,14,368,227,878,33,28,44,25,35),
-(8996,15,421,251,925,34,30,48,26,37),
-(8996,16,455,275,975,36,30,52,27,39),
-(8996,17,490,300,1022,38,31,55,28,42),
-(8996,18,528,314,1068,39,33,59,28,44),
-(8996,19,566,351,1120,40,33,63,29,46),
-(8996,20,606,377,1165,42,35,67,30,49),
-(8996,21,653,400,1232,44,36,80,31,51),
-(8996,22,699,423,1282,46,36,84,32,53),
-(8996,23,746,447,1330,47,38,89,33,55),
-(8996,24,823,476,1378,49,39,93,34,58),
-(8996,25,854,504,1427,50,40,97,35,61),
-(8996,26,911,543,1474,52,41,101,36,62),
-(8996,27,966,564,1524,53,42,105,37,65),
-(8996,28,1047,592,1572,55,43,110,38,67),
-(8996,29,1129,620,1619,56,44,114,39,70),
-(8996,30,1210,648,1667,58,46,118,40,72),
-(8996,31,1292,676,1715,59,47,123,40,74),
-(8996,32,1373,720,1766,61,48,127,41,77),
-(8996,33,1455,742,1812,62,49,131,42,79),
-(8996,34,1573,793,1861,63,51,135,43,82),
-(8996,35,1690,845,2000,65,52,136,44,84),
-(8996,36,1760,879,2154,66,53,137,45,87),
-(8996,37,1827,916,2248,68,53,138,46,89),
-(8996,38,1900,952,2331,70,55,139,47,91),
-(8996,39,1974,988,2483,72,56,144,48,94),
-(8996,40,2041,1026,2770,74,58,150,49,97),
-(8996,41,2127,1063,2856,76,59,153,50,99),
-(8996,42,2171,1103,3034,81,59,156,51,102),
-(8996,43,2215,1187,3228,86,61,169,52,104),
-(8996,44,2259,1214,2463,89,62,172,53,107),
-(8996,45,2303,1240,2638,91,64,175,54,109),
-(8996,46,2347,1267,2862,94,65,178,55,112),
-(8996,47,2391,1294,3021,96,66,181,56,115),
-(8996,48,2435,1320,3218,99,68,184,57,117),
-(8996,49,2479,1347,3370,101,69,187,58,120),
-(8996,50,2523,1391,3528,104,71,190,59,123),
-(8996,51,2568,1435,3963,107,72,193,61,126),
-(8996,52,2661,1481,4132,109,73,199,62,128),
-(8996,53,2755,1527,4286,112,75,203,63,131),
-(8996,54,2848,1573,4307,114,76,207,64,133),
-(8996,55,2942,1620,4389,117,77,213,65,136),
-(8996,56,3036,1666,4476,119,79,218,66,139),
-(8996,57,3129,1714,4532,122,80,222,67,142),
-(8996,58,3223,1763,4599,124,82,227,68,144),
-(8996,59,3317,1824,4673,127,83,230,69,147),
-(8996,60,3419,1874,4745,129,85,249,70,150),
-(8996,61,3522,1925,5238,131,87,252,78,153),
-(8996,62,3624,1977,5670,135,90,255,86,157),
-(8996,63,3727,2030,6133,138,94,258,93,160),
-(8996,64,3830,2084,6492,142,97,261,102,164),
-(8996,65,3934,2139,6981,145,101,264,110,167),
-(8996,66,4039,2195,7429,149,104,267,119,171),
-(8996,67,4143,2252,7912,152,108,270,125,175),
-(8996,68,4248,2310,8320,156,111,273,127,180),
-(8996,69,4352,2369,8693,159,115,276,130,185),
-(8996,70,4460,2429,9070,153,109,280,133,189),
-(10928,1,40,48,0,0,0,0,0,0),
-(10928,2,49,59,0,0,0,0,0,0),
-(10928,3,58,70,0,0,0,0,0,0),
-(10928,4,68,81,0,0,0,0,0,0),
-(10928,5,77,92,0,0,0,0,0,0),
-(10928,6,86,103,0,0,0,0,0,0),
-(10928,7,95,114,0,0,0,0,0,0),
-(10928,8,104,125,0,0,0,0,0,0),
-(10928,9,113,136,0,0,0,0,0,0),
-(10928,10,123,147,0,0,0,0,0,0),
-(10928,11,132,158,0,0,0,0,0,0),
-(10928,12,150,180,0,0,0,0,0,0),
-(10928,13,169,203,0,0,0,0,0,0),
-(10928,14,189,227,0,0,0,0,0,0),
-(10928,15,209,251,0,0,0,0,0,0),
-(10928,16,229,275,0,0,0,0,0,0),
-(10928,17,250,300,0,0,0,0,0,0),
-(10928,18,262,314,0,0,0,0,0,0),
-(10928,19,293,351,0,0,0,0,0,0),
-(10928,20,303,377,0,42,35,67,31,49),
-(10928,21,325,393,0,44,36,80,31,51),
-(10928,22,349,420,0,46,36,84,32,53),
-(10928,23,373,447,0,47,38,79,33,55),
-(10928,24,400,476,0,49,39,83,34,58),
-(10928,25,440,504,0,50,40,87,35,61),
-(10928,26,469,534,0,52,41,91,36,62),
-(10928,27,501,564,0,53,42,95,37,65),
-(10928,28,534,592,0,55,43,99,38,67),
-(10928,29,566,620,0,56,44,103,39,70),
-(10928,30,599,648,800,58,46,107,40,72),
-(10928,31,631,676,856,59,47,111,40,74),
-(10928,32,680,720,921,61,48,115,41,77),
-(10928,33,728,742,987,62,49,119,42,79),
-(10928,34,661,793,1047,63,51,123,43,82),
-(10928,35,699,845,1107,65,52,127,44,84),
-(10928,36,737,879,1167,66,53,131,45,87),
-(10928,37,776,916,1227,68,53,135,46,89),
-(10928,38,814,952,1288,70,55,139,47,91),
-(10928,39,852,988,1345,72,56,143,48,94),
-(10928,40,890,1026,1409,74,58,148,49,97),
-(10928,41,928,1063,1462,76,59,152,50,99),
-(10928,42,976,1103,1528,81,59,156,51,102),
-(10928,43,1005,1187,1586,86,61,160,52,104),
-(10928,44,1043,1214,1642,89,62,164,53,107),
-(10928,45,1081,1240,1708,91,64,169,54,109),
-(10928,46,1119,1267,1769,94,65,173,55,112),
-(10928,47,1158,1294,1826,96,66,178,56,115),
-(10928,48,1196,1320,1889,99,68,182,57,117),
-(10928,49,1234,1347,1950,101,69,186,58,120),
-(10928,50,1277,1391,2003,104,71,191,59,123),
-(10928,51,1320,1435,2055,107,72,195,61,126),
-(10928,52,1364,1481,2108,109,73,199,62,128),
-(10928,53,1407,1527,2161,112,75,204,63,131),
-(10928,54,1450,1573,2213,114,76,208,64,134),
-(10928,55,1493,1620,2266,117,77,213,65,136),
-(10928,56,1536,1666,2318,119,79,217,66,139),
-(10928,57,1580,1714,2371,122,80,221,67,142),
-(10928,58,1623,1763,2424,124,82,226,68,144),
-(10928,59,1666,1824,2476,127,83,230,69,147),
-(10928,60,1709,1874,2529,129,85,234,70,150),
-(10928,61,1754,1925,2583,132,86,239,72,154),
-(10928,62,1800,1977,2638,136,87,245,73,159),
-(10928,63,1845,2030,2693,140,88,250,74,163),
-(10928,64,1891,2084,2758,143,89,256,75,168),
-(10928,65,1936,2137,2823,147,90,261,76,172),
-(10928,66,1982,2191,2888,150,91,266,77,177),
-(10928,67,2027,2244,2944,154,92,272,78,181),
-(10928,68,2073,2298,3000,157,93,277,79,186),
-(10928,69,2118,2351,3056,161,94,283,80,190),
-(10928,70,2164,2405,3112,165,95,289,81,195),
-(12922,1,14,40,0,20,20,20,24,23),
-(12922,2,19,49,0,21,20,20,25,24),
-(12922,3,24,58,0,22,20,21,26,25),
-(12922,4,29,67,0,23,21,21,27,26),
-(12922,5,34,76,0,23,21,22,28,27),
-(12922,6,40,85,0,24,21,22,29,27),
-(12922,7,46,95,0,25,21,23,30,28),
-(12922,8,52,105,0,26,21,23,31,29),
-(12922,9,58,116,0,27,21,23,32,30),
-(12922,10,64,126,0,27,22,24,33,31),
-(12922,11,75,151,0,28,22,24,37,35),
-(12922,12,83,177,0,29,22,26,41,39),
-(12922,13,91,198,0,30,22,26,44,43),
-(12922,14,120,234,0,31,22,28,50,47),
-(12922,15,129,262,0,32,23,29,54,52),
-(12922,16,138,290,0,34,23,30,57,56),
-(12922,17,147,318,0,36,23,31,61,60),
-(12922,18,156,346,0,37,23,32,65,65),
-(12922,19,165,374,0,38,23,33,70,69),
-(12922,20,175,402,0,40,24,35,74,74),
-(12922,21,184,430,0,42,24,37,87,78),
-(12922,22,193,458,0,44,24,39,91,82),
-(12922,23,202,486,0,45,24,40,95,86),
-(12922,24,212,514,0,46,25,42,94,90),
-(12922,25,224,539,0,47,25,43,94,95),
-(12922,26,237,568,0,48,25,43,98,100),
-(12922,27,249,598,0,50,25,42,102,104),
-(12922,28,262,632,0,51,25,44,109,110),
-(12922,29,274,667,0,52,26,44,114,114),
-(12922,30,287,702,0,54,26,45,120,118),
-(12922,31,299,734,0,55,26,46,124,123),
-(12922,32,312,772,0,57,26,47,128,128),
-(12922,33,324,807,0,58,27,48,132,131),
-(12922,34,338,842,0,60,27,50,136,135),
-(12922,35,360,898,0,62,27,51,139,136),
-(12922,36,382,954,0,65,27,52,142,137),
-(12922,37,404,1010,0,67,27,54,146,138),
-(12922,38,427,1066,0,70,28,55,149,139),
-(12922,39,449,1122,0,73,28,56,153,141),
-(12922,40,471,1178,0,75,28,58,156,142),
-(12922,41,493,1234,0,78,28,59,160,143),
-(12922,42,516,1290,0,80,29,60,163,144),
-(12922,43,538,1346,0,83,29,62,167,145),
-(12922,44,560,1402,0,86,29,63,170,147),
-(12922,45,582,1458,0,88,29,64,174,148),
-(12922,46,605,1514,0,91,30,66,177,149),
-(12922,47,627,1570,0,93,30,67,181,151),
-(12922,48,649,1627,0,96,30,68,184,152),
-(12922,49,672,1685,0,99,31,70,188,155),
-(12922,50,694,1704,0,101,31,71,194,160),
-(12922,51,716,1723,0,103,31,72,201,170),
-(12922,52,738,1743,0,105,32,74,208,180),
-(12922,53,761,1762,0,107,32,75,215,190),
-(12922,54,783,1781,0,109,32,77,222,200),
-(12922,55,805,1801,0,111,33,78,229,210),
-(12922,56,827,1820,0,113,33,80,236,220),
-(12922,57,850,1839,0,115,33,81,243,230),
-(12922,58,872,1859,0,117,34,83,250,240),
-(12922,59,894,1878,0,120,34,84,257,250),
-(12922,60,917,1898,0,122,35,86,264,260),
-(12922,61,939,1918,0,125,35,88,271,270),
-(12922,62,961,1937,0,128,36,89,278,280),
-(12922,63,983,1956,0,131,36,91,285,290),
-(12922,64,1005,1975,0,134,36,93,292,300),
-(12922,65,1027,1994,0,137,37,94,299,310),
-(12922,66,1049,2013,0,140,37,96,306,320),
-(12922,67,1072,2032,0,143,37,97,313,330),
-(12922,68,1094,2052,0,146,38,99,320,340),
-(12922,69,1126,2071,0,149,38,100,327,350),
-(12922,70,1149,2090,0,152,39,102,334,360),
-(8477,1,80,48,0,0,0,0,0,0),
-(8477,2,100,59,0,0,0,0,0,0),
-(8477,3,120,70,0,0,0,0,0,0),
-(8477,4,140,81,0,0,0,0,0,0),
-(8477,5,160,92,0,0,0,0,0,0),
-(8477,6,180,103,0,0,0,0,0,0),
-(8477,7,200,114,0,0,0,0,0,0),
-(8477,8,220,125,0,0,0,0,0,0),
-(8477,9,240,136,0,0,0,0,0,0),
-(8477,10,260,147,694,29,25,29,22,26),
-(8477,11,291,158,734,30,25,32,23,28),
-(8477,12,322,180,782,31,26,36,24,31),
-(8477,13,354,203,827,32,28,43,26,32),
-(8477,14,368,227,878,33,28,44,25,35),
-(8477,15,421,251,925,34,30,48,26,37),
-(8477,16,455,275,975,36,30,52,27,39),
-(8477,17,490,300,1022,38,31,55,28,42),
-(8477,18,528,314,1068,39,33,59,28,44),
-(8477,19,566,351,1120,40,33,63,29,46),
-(8477,20,606,377,1165,42,35,67,30,49),
-(8477,21,653,400,1232,44,36,80,31,51),
-(8477,22,699,423,1282,46,36,84,32,53),
-(8477,23,746,447,1330,47,38,89,33,55),
-(8477,24,823,476,1378,49,39,93,34,58),
-(8477,25,854,504,1427,50,40,97,35,61),
-(8477,26,911,543,1474,52,41,101,36,62),
-(8477,27,966,564,1524,53,42,105,37,65),
-(8477,28,1047,592,1572,55,43,110,38,67),
-(8477,29,1129,620,1619,56,44,114,39,70),
-(8477,30,1210,648,1667,58,46,118,40,72),
-(8477,31,1292,676,1715,59,47,123,40,74),
-(8477,32,1373,720,1766,61,48,127,41,77),
-(8477,33,1455,742,1812,62,49,131,42,79),
-(8477,34,1573,793,1861,63,51,135,43,82),
-(8477,35,1690,845,2000,65,52,136,44,84),
-(8477,36,1760,879,2154,66,53,137,45,87),
-(8477,37,1827,916,2248,68,53,138,46,89),
-(8477,38,1900,952,2331,70,55,139,47,91),
-(8477,39,1974,988,2483,72,56,144,48,94),
-(8477,40,2041,1026,2770,74,58,150,49,97),
-(8477,41,2127,1063,2856,76,59,153,50,99),
-(8477,42,2171,1103,3034,81,59,156,51,102),
-(8477,43,2215,1187,3228,86,61,169,52,104),
-(8477,44,2259,1214,2463,89,62,172,53,107),
-(8477,45,2303,1240,2638,91,64,175,54,109),
-(8477,46,2347,1267,2862,94,65,178,55,112),
-(8477,47,2391,1294,3021,96,66,181,56,115),
-(8477,48,2435,1320,3218,99,68,184,57,117),
-(8477,49,2479,1347,3370,101,69,187,58,120),
-(8477,50,2523,1391,3528,104,71,190,59,123),
-(8477,51,2568,1435,3963,107,72,193,61,126),
-(8477,52,2661,1481,4132,109,73,199,62,128),
-(8477,53,2755,1527,4286,112,75,203,63,131),
-(8477,54,2848,1573,4307,114,76,207,64,133),
-(8477,55,2942,1620,4389,117,77,213,65,136),
-(8477,56,3036,1666,4476,119,79,218,66,139),
-(8477,57,3129,1714,4532,122,80,222,67,142),
-(8477,58,3223,1763,4599,124,82,227,68,144),
-(8477,59,3317,1824,4673,127,83,230,69,147),
-(8477,60,3419,1874,4745,129,85,249,70,150),
-(8477,61,3522,1925,5238,131,87,252,78,153),
-(8477,62,3624,1977,5670,135,90,255,86,157),
-(8477,63,3727,2030,6133,138,94,258,93,160),
-(8477,64,3830,2084,6492,142,97,261,102,164),
-(8477,65,3934,2139,6981,145,101,264,110,167),
-(8477,66,4039,2195,7429,149,104,267,119,171),
-(8477,67,4143,2252,7912,152,108,270,125,175),
-(8477,68,4248,2310,8320,156,111,273,127,180),
-(8477,69,4352,2369,8693,159,115,276,130,185),
-(8477,70,4460,2429,9070,153,109,280,133,189),
-(24815,1,14,40,0,20,20,20,24,23),
-(24815,2,19,49,0,21,20,20,25,24),
-(24815,3,24,58,0,22,20,21,26,25),
-(24815,4,29,67,0,23,21,21,27,26),
-(24815,5,34,76,0,23,21,22,28,27),
-(24815,6,40,85,0,24,21,22,29,27),
-(24815,7,46,95,0,25,21,23,30,28),
-(24815,8,52,105,0,26,21,23,31,29),
-(24815,9,58,116,0,27,21,23,32,30),
-(24815,10,64,126,0,27,22,24,33,31),
-(24815,11,75,151,0,28,22,24,37,35),
-(24815,12,83,177,0,29,22,26,41,39),
-(24815,13,91,198,0,30,22,26,44,43),
-(24815,14,120,234,0,31,22,28,50,47),
-(24815,15,129,262,0,32,23,29,54,52),
-(24815,16,138,290,0,34,23,30,57,56),
-(24815,17,147,318,0,36,23,31,61,60),
-(24815,18,156,346,0,37,23,32,65,65),
-(24815,19,165,374,0,38,23,33,70,69),
-(24815,20,175,402,0,40,24,35,74,74),
-(24815,21,184,430,0,42,24,37,87,78),
-(24815,22,193,458,0,44,24,39,91,82),
-(24815,23,202,486,0,45,24,40,95,86),
-(24815,24,212,514,0,46,25,42,94,90),
-(24815,25,224,539,0,47,25,43,94,95),
-(24815,26,237,568,0,48,25,43,98,100),
-(24815,27,249,598,0,50,25,42,102,104),
-(24815,28,262,632,0,51,25,44,109,110),
-(24815,29,274,667,0,52,26,44,114,114),
-(24815,30,287,702,0,54,26,45,120,118),
-(24815,31,299,734,0,55,26,46,124,123),
-(24815,32,312,772,0,57,26,47,128,128),
-(24815,33,324,807,0,58,27,48,132,131),
-(24815,34,338,842,0,60,27,50,136,135),
-(24815,35,360,898,0,62,27,51,139,136),
-(24815,36,382,954,0,65,27,52,142,137),
-(24815,37,404,1010,0,67,27,54,146,138),
-(24815,38,427,1066,0,70,28,55,149,139),
-(24815,39,449,1122,0,73,28,56,153,141),
-(24815,40,471,1178,0,75,28,58,156,142),
-(24815,41,493,1234,0,78,28,59,160,143),
-(24815,42,516,1290,0,80,29,60,163,144),
-(24815,43,538,1346,0,83,29,62,167,145),
-(24815,44,560,1402,0,86,29,63,170,147),
-(24815,45,582,1458,0,88,29,64,174,148),
-(24815,46,605,1514,0,91,30,66,177,149),
-(24815,47,627,1570,0,93,30,67,181,151),
-(24815,48,649,1627,0,96,30,68,184,152),
-(24815,49,672,1685,0,99,31,70,188,155),
-(24815,50,694,1704,0,101,31,71,194,160),
-(24815,51,716,1723,0,103,31,72,201,170),
-(24815,52,738,1743,0,105,32,74,208,180),
-(24815,53,761,1762,0,107,32,75,215,190),
-(24815,54,783,1781,0,109,32,77,222,200),
-(24815,55,805,1801,0,111,33,78,229,210),
-(24815,56,827,1820,0,113,33,80,236,220),
-(24815,57,850,1839,0,115,33,81,243,230),
-(24815,58,872,1859,0,117,34,83,250,240),
-(24815,59,894,1878,0,120,34,84,257,250),
-(24815,60,917,1898,0,122,35,86,264,260),
-(24815,61,939,1918,0,125,35,88,271,270),
-(24815,62,961,1937,0,128,36,89,278,280),
-(24815,63,983,1956,0,131,36,91,285,290),
-(24815,64,1005,1975,0,134,36,93,292,300),
-(24815,65,1027,1994,0,137,37,94,299,310),
-(24815,66,1049,2013,0,140,37,96,306,320),
-(24815,67,1072,2032,0,143,37,97,313,330),
-(24815,68,1094,2052,0,146,38,99,320,340),
-(24815,69,1126,2071,0,149,38,100,327,350),
-(24815,70,1149,2090,0,152,39,102,334,360),
-(22362,1,14,40,20,20,20,20,24,23),
-(22362,2,19,49,24,21,20,20,25,24),
-(22362,3,24,58,28,22,20,21,26,25),
-(22362,4,29,67,33,23,21,21,27,26),
-(22362,5,34,76,49,23,21,22,28,27),
-(22362,6,40,85,68,24,21,22,29,27),
-(22362,7,46,95,92,25,21,23,30,28),
-(22362,8,52,105,117,26,21,23,31,29),
-(22362,9,58,116,147,27,21,23,32,30),
-(22362,10,64,126,180,27,22,24,33,31),
-(22362,11,75,151,190,28,22,24,37,35),
-(22362,12,83,177,203,29,22,26,41,39),
-(22362,13,91,198,215,30,22,26,44,43),
-(22362,14,120,234,228,31,22,28,50,47),
-(22362,15,129,262,240,32,23,29,54,52),
-(22362,16,138,290,253,34,23,30,57,56),
-(22362,17,147,318,265,36,23,31,61,60),
-(22362,18,156,346,278,37,23,32,65,65),
-(22362,19,165,374,291,38,23,33,70,69),
-(22362,20,175,402,303,40,24,35,74,74),
-(22362,21,184,430,320,42,24,37,87,78),
-(22362,22,193,458,346,44,24,39,91,82),
-(22362,23,202,486,360,45,24,40,95,86),
-(22362,24,212,514,373,46,25,42,94,90),
-(22362,25,224,539,386,47,25,43,94,95),
-(22362,26,237,568,399,48,25,43,98,100),
-(22362,27,249,598,411,50,25,42,102,104),
-(22362,28,262,632,424,51,25,44,109,110),
-(22362,29,274,667,436,52,26,44,114,114),
-(22362,30,287,702,449,54,26,45,120,118),
-(22362,31,299,734,462,55,26,46,124,123),
-(22362,32,312,772,478,57,26,47,128,128),
-(22362,33,324,807,488,58,27,48,132,131),
-(22362,34,338,842,501,60,27,50,136,135),
-(22362,35,360,898,536,62,27,51,139,136),
-(22362,36,382,954,572,65,27,52,142,137),
-(22362,37,404,1010,604,67,27,54,146,138),
-(22362,38,427,1066,643,70,28,55,149,139),
-(22362,39,449,1122,682,73,28,56,153,141),
-(22362,40,471,1178,701,75,28,58,156,142),
-(22362,41,493,1234,726,78,28,59,160,143),
-(22362,42,516,1290,756,80,29,60,163,144),
-(22362,43,538,1346,782,83,29,62,167,145),
-(22362,44,560,1402,815,86,29,63,170,147),
-(22362,45,582,1458,843,88,29,64,174,148),
-(22362,46,605,1514,878,91,30,66,177,149),
-(22362,47,627,1570,900,93,30,67,181,151),
-(22362,48,649,1627,924,96,30,68,184,152),
-(22362,49,672,1685,946,99,31,70,188,155),
-(22362,50,694,1704,979,101,31,71,194,160),
-(22362,51,716,1723,999,103,31,72,201,170),
-(22362,52,738,1743,1020,105,32,74,208,180),
-(22362,53,761,1762,1039,107,32,75,215,190),
-(22362,54,783,1781,1055,109,32,77,222,200),
-(22362,55,805,1801,1073,111,33,78,229,210),
-(22362,56,827,1820,1091,113,33,80,236,220),
-(22362,57,850,1839,1107,115,33,81,243,230),
-(22362,58,872,1859,1123,117,34,83,250,240),
-(22362,59,894,1878,1148,120,34,84,257,250),
-(22362,60,917,1898,1163,122,35,86,264,260),
-(22362,61,939,1918,1260,125,35,88,271,270),
-(22362,62,961,1937,1398,128,36,89,278,280),
-(22362,63,983,1956,1420,131,36,91,285,290),
-(22362,64,1005,1975,1572,134,36,93,292,300),
-(22362,65,1027,1994,1699,137,37,94,299,310),
-(22362,66,1049,2013,1840,140,37,96,306,320),
-(22362,67,1072,2032,1939,143,37,97,313,330),
-(22362,68,1094,2052,2070,146,38,99,320,340),
-(22362,69,1126,2071,2130,149,38,100,327,350),
-(22362,70,1149,2090,2207,152,39,102,334,360),
-(10979,1,14,40,0,20,20,20,24,23),
-(10979,2,19,49,0,21,20,20,25,24),
-(10979,3,24,58,0,22,20,21,26,25),
-(10979,4,29,67,0,23,21,21,27,26),
-(10979,5,34,76,0,23,21,22,28,27),
-(10979,6,40,85,0,24,21,22,29,27),
-(10979,7,46,95,0,25,21,23,30,28),
-(10979,8,52,105,0,26,21,23,31,29),
-(10979,9,58,116,0,27,21,23,32,30),
-(10979,10,64,126,0,27,22,24,33,31),
-(10979,11,75,151,0,28,22,24,37,35),
-(10979,12,83,177,0,29,22,26,41,39),
-(10979,13,91,198,0,30,22,26,44,43),
-(10979,14,120,234,0,31,22,28,50,47),
-(10979,15,129,262,0,32,23,29,54,52),
-(10979,16,138,290,0,34,23,30,57,56),
-(10979,17,147,318,0,36,23,31,61,60),
-(10979,18,156,346,0,37,23,32,65,65),
-(10979,19,165,374,0,38,23,33,70,69),
-(10979,20,175,402,0,40,24,35,74,74),
-(10979,21,184,430,0,42,24,37,87,78),
-(10979,22,193,458,0,44,24,39,91,82),
-(10979,23,202,486,0,45,24,40,95,86),
-(10979,24,212,514,0,46,25,42,94,90),
-(10979,25,224,539,0,47,25,43,94,95),
-(10979,26,237,568,0,48,25,43,98,100),
-(10979,27,249,598,0,50,25,42,102,104),
-(10979,28,262,632,0,51,25,44,109,110),
-(10979,29,274,667,0,52,26,44,114,114),
-(10979,30,287,702,0,54,26,45,120,118),
-(10979,31,299,734,0,55,26,46,124,123),
-(10979,32,312,772,0,57,26,47,128,128),
-(10979,33,324,807,0,58,27,48,132,131),
-(10979,34,338,842,0,60,27,50,136,135),
-(10979,35,360,898,0,62,27,51,139,136),
-(10979,36,382,954,0,65,27,52,142,137),
-(10979,37,404,1010,0,67,27,54,146,138),
-(10979,38,427,1066,0,70,28,55,149,139),
-(10979,39,449,1122,0,73,28,56,153,141),
-(10979,40,471,1178,0,75,28,58,156,142),
-(10979,41,493,1234,0,78,28,59,160,143),
-(10979,42,516,1290,0,80,29,60,163,144),
-(10979,43,538,1346,0,83,29,62,167,145),
-(10979,44,560,1402,0,86,29,63,170,147),
-(10979,45,582,1458,0,88,29,64,174,148),
-(10979,46,605,1514,0,91,30,66,177,149),
-(10979,47,627,1570,0,93,30,67,181,151),
-(10979,48,649,1627,0,96,30,68,184,152),
-(10979,49,672,1685,0,99,31,70,188,155),
-(10979,50,694,1704,0,101,31,71,194,160),
-(10979,51,716,1723,0,103,31,72,201,170),
-(10979,52,738,1743,0,105,32,74,208,180),
-(10979,53,761,1762,0,107,32,75,215,190),
-(10979,54,783,1781,0,109,32,77,222,200),
-(10979,55,805,1801,0,111,33,78,229,210),
-(10979,56,827,1820,0,113,33,80,236,220),
-(10979,57,850,1839,0,115,33,81,243,230),
-(10979,58,872,1859,0,117,34,83,250,240),
-(10979,59,894,1878,0,120,34,84,257,250),
-(10979,60,917,1898,0,122,35,86,264,260),
-(10979,61,939,1918,0,125,35,88,271,270),
-(10979,62,961,1937,0,128,36,89,278,280),
-(10979,63,983,1956,0,131,36,91,285,290),
-(10979,64,1005,1975,0,134,36,93,292,300),
-(10979,65,1027,1994,0,137,37,94,299,310),
-(10979,66,1049,2013,0,140,37,96,306,320),
-(10979,67,1072,2032,0,143,37,97,313,330),
-(10979,68,1094,2052,0,146,38,99,320,340),
-(10979,69,1126,2071,0,149,38,100,327,350),
-(10979,70,1149,2090,0,152,39,102,334,360),
-(15352,1,1,0,1,1,1,1,1,1),
-(15352,2,1,0,1,1,1,1,1,1),
-(15352,3,1,0,1,1,1,1,1,1),
-(15352,4,1,0,1,1,1,1,1,1),
-(15352,5,1,0,1,1,1,1,1,1),
-(15352,6,1,0,1,1,1,1,1,1),
-(15352,7,1,0,1,1,1,1,1,1),
-(15352,8,1,0,1,1,1,1,1,1),
-(15352,9,1,0,1,1,1,1,1,1),
-(15352,10,1,0,1,1,1,1,1,1),
-(15352,11,1,0,1,1,1,1,1,1),
-(15352,12,1,0,1,1,1,1,1,1),
-(15352,13,1,0,1,1,1,1,1,1),
-(15352,14,1,0,1,1,1,1,1,1),
-(15352,15,1,0,1,1,1,1,1,1),
-(15352,16,1,0,1,1,1,1,1,1),
-(15352,17,1,0,1,1,1,1,1,1),
-(15352,18,1,0,1,1,1,1,1,1),
-(15352,19,1,0,1,1,1,1,1,1),
-(15352,20,1,0,1,1,1,1,1,1),
-(15352,21,1,0,1,1,1,1,1,1),
-(15352,22,1,0,1,1,1,1,1,1),
-(15352,23,1,0,1,1,1,1,1,1),
-(15352,24,1,0,1,1,1,1,1,1),
-(15352,25,1,0,1,1,1,1,1,1),
-(15352,26,1,0,1,1,1,1,1,1),
-(15352,27,1,0,1,1,1,1,1,1),
-(15352,28,1,0,1,1,1,1,1,1),
-(15352,29,1,0,1,1,1,1,1,1),
-(15352,30,1,0,1,1,1,1,1,1),
-(15352,31,1,0,1,1,1,1,1,1),
-(15352,32,1,0,1,1,1,1,1,1),
-(15352,33,1,0,1,1,1,1,1,1),
-(15352,34,1,0,1,1,1,1,1,1),
-(15352,35,1,0,1,1,1,1,1,1),
-(15352,36,1,0,1,1,1,1,1,1),
-(15352,37,1,0,1,1,1,1,1,1),
-(15352,38,1,0,1,1,1,1,1,1),
-(15352,39,1,0,1,1,1,1,1,1),
-(15352,40,1,0,1,1,1,1,1,1),
-(15352,41,1,0,1,1,1,1,1,1),
-(15352,42,1,0,1,1,1,1,1,1),
-(15352,43,1,0,1,1,1,1,1,1),
-(15352,44,1,0,1,1,1,1,1,1),
-(15352,45,1,0,1,1,1,1,1,1),
-(15352,46,1,0,1,1,1,1,1,1),
-(15352,47,1,0,1,1,1,1,1,1),
-(15352,48,1,0,1,1,1,1,1,1),
-(15352,49,1,0,1,1,1,1,1,1),
-(15352,50,1,0,1,1,1,1,1,1),
-(15352,51,1,0,1,1,1,1,1,1),
-(15352,52,1,0,1,1,1,1,1,1),
-(15352,53,1,0,1,1,1,1,1,1),
-(15352,54,1,0,1,1,1,1,1,1),
-(15352,55,1,0,1,1,1,1,1,1),
-(15352,56,1,0,1,1,1,1,1,1),
-(15352,57,1,0,1,1,1,1,1,1),
-(15352,58,1,0,1,1,1,1,1,1),
-(15352,59,1,0,1,1,1,1,1,1),
-(15352,60,1,0,1,1,1,1,1,1),
-(15352,61,1,0,1,1,1,1,1,1),
-(15352,62,1,0,1,1,1,1,1,1),
-(15352,63,1,0,1,1,1,1,1,1),
-(15352,64,1,0,1,1,1,1,1,1),
-(15352,65,1,0,1,1,1,1,1,1),
-(15352,66,6600,0,6200,132,62,96,132,320),
-(15352,67,6700,0,6400,134,64,97,134,330),
-(15352,68,6800,0,6600,136,66,99,136,340),
-(15352,69,6900,0,6800,138,68,100,138,350),
-(15352,70,7000,0,7000,140,70,102,140,360),
-(15438,1,1,1,1,1,1,1,1,1),
-(15438,2,1,1,1,1,1,1,1,1),
-(15438,3,1,1,1,1,1,1,1,1),
-(15438,4,1,1,1,1,1,1,1,1),
-(15438,5,1,1,1,1,1,1,1,1),
-(15438,6,1,1,1,1,1,1,1,1),
-(15438,7,1,1,1,1,1,1,1,1),
-(15438,8,1,1,1,1,1,1,1,1),
-(15438,9,1,1,1,1,1,1,1,1),
-(15438,10,1,1,1,1,1,1,1,1),
-(15438,11,1,1,1,1,1,1,1,1),
-(15438,12,1,1,1,1,1,1,1,1),
-(15438,13,1,1,1,1,1,1,1,1),
-(15438,14,1,1,1,1,1,1,1,1),
-(15438,15,1,1,1,1,1,1,1,1),
-(15438,16,1,1,1,1,1,1,1,1),
-(15438,17,1,1,1,1,1,1,1,1),
-(15438,18,1,1,1,1,1,1,1,1),
-(15438,19,1,1,1,1,1,1,1,1),
-(15438,20,1,1,1,1,1,1,1,1),
-(15438,21,1,1,1,1,1,1,1,1),
-(15438,22,1,1,1,1,1,1,1,1),
-(15438,23,1,1,1,1,1,1,1,1),
-(15438,24,1,1,1,1,1,1,1,1),
-(15438,25,1,1,1,1,1,1,1,1),
-(15438,26,1,1,1,1,1,1,1,1),
-(15438,27,1,1,1,1,1,1,1,1),
-(15438,28,1,1,1,1,1,1,1,1),
-(15438,29,1,1,1,1,1,1,1,1),
-(15438,30,1,1,1,1,1,1,1,1),
-(15438,31,1,1,1,1,1,1,1,1),
-(15438,32,1,1,1,1,1,1,1,1),
-(15438,33,1,1,1,1,1,1,1,1),
-(15438,34,1,1,1,1,1,1,1,1),
-(15438,35,1,1,1,1,1,1,1,1),
-(15438,36,1,1,1,1,1,1,1,1),
-(15438,37,1,1,1,1,1,1,1,1),
-(15438,38,1,1,1,1,1,1,1,1),
-(15438,39,1,1,1,1,1,1,1,1),
-(15438,40,1,1,1,1,1,1,1,1),
-(15438,41,1,1,1,1,1,1,1,1),
-(15438,42,1,1,1,1,1,1,1,1),
-(15438,43,1,1,1,1,1,1,1,1),
-(15438,44,1,1,1,1,1,1,1,1),
-(15438,45,1,1,1,1,1,1,1,1),
-(15438,46,1,1,1,1,1,1,1,1),
-(15438,47,1,1,1,1,1,1,1,1),
-(15438,48,1,1,1,1,1,1,1,1),
-(15438,49,1,1,1,1,1,1,1,1),
-(15438,50,1,1,1,1,1,1,1,1),
-(15438,51,1,1,1,1,1,1,1,1),
-(15438,52,1,1,1,1,1,1,1,1),
-(15438,53,1,1,1,1,1,1,1,1),
-(15438,54,1,1,1,1,1,1,1,1),
-(15438,55,1,1,1,1,1,1,1,1),
-(15438,56,1,1,1,1,1,1,1,1),
-(15438,57,1,1,1,1,1,1,1,1),
-(15438,58,1,1,1,1,1,1,1,1),
-(15438,59,1,1,1,1,1,1,1,1),
-(15438,60,1,1,1,1,1,1,1,1),
-(15438,61,1,1,1,1,1,1,1,1),
-(15438,62,1,1,1,1,1,1,1,1),
-(15438,63,1,1,1,1,1,1,1,1),
-(15438,64,1,1,1,1,1,1,1,1),
-(15438,65,1,1,1,1,1,1,1,1),
-(15438,66,1,1,1,1,1,1,1,1),
-(15438,67,1,1,1,1,1,1,1,1),
-(15438,68,6800,2052,980,198,136,99,320,340),
-(15438,69,6900,2071,990,204,138,100,327,350),
-(15438,70,7000,2090,1000,210,140,102,334,360),
-(26101,1,1,1,0,1,1,1,1,1),
-(26101,2,1,1,0,1,1,1,1,1),
-(26101,3,1,1,0,1,1,1,1,1),
-(26101,4,1,1,0,1,1,1,1,1),
-(26101,5,1,1,0,1,1,1,1,1),
-(26101,6,1,1,0,1,1,1,1,1),
-(26101,7,1,1,0,1,1,1,1,1),
-(26101,8,1,1,0,1,1,1,1,1),
-(26101,9,1,1,0,1,1,1,1,1),
-(26101,10,1,1,0,1,1,1,1,1),
-(26101,11,1,1,0,1,1,1,1,1),
-(26101,12,1,1,0,1,1,1,1,1),
-(26101,13,1,1,0,1,1,1,1,1),
-(26101,14,1,1,0,1,1,1,1,1),
-(26101,15,1,1,0,1,1,1,1,1),
-(26101,16,1,1,0,1,1,1,1,1),
-(26101,17,1,1,0,1,1,1,1,1),
-(26101,18,1,1,0,1,1,1,1,1),
-(26101,19,1,1,0,1,1,1,1,1),
-(26101,20,1,1,0,1,1,1,1,1),
-(26101,21,1,1,0,1,1,1,1,1),
-(26101,22,1,1,0,1,1,1,1,1),
-(26101,23,1,1,0,1,1,1,1,1),
-(26101,24,1,1,0,1,1,1,1,1),
-(26101,25,1,1,0,1,1,1,1,1),
-(26101,26,1,1,0,1,1,1,1,1),
-(26101,27,1,1,0,1,1,1,1,1),
-(26101,28,1,1,0,1,1,1,1,1),
-(26101,29,1,1,0,1,1,1,1,1),
-(26101,30,1,1,0,1,1,1,1,1),
-(26101,31,1,1,0,1,1,1,1,1),
-(26101,32,1,1,0,1,1,1,1,1),
-(26101,33,1,1,0,1,1,1,1,1),
-(26101,34,1,1,0,1,1,1,1,1),
-(26101,35,1,1,0,1,1,1,1,1),
-(26101,36,1,1,0,1,1,1,1,1),
-(26101,37,1,1,0,1,1,1,1,1),
-(26101,38,1,1,0,1,1,1,1,1),
-(26101,39,1,1,0,1,1,1,1,1),
-(26101,40,1,1,0,1,1,1,1,1),
-(26101,41,1,1,0,1,1,1,1,1),
-(26101,42,1,1,0,1,1,1,1,1),
-(26101,43,1,1,0,1,1,1,1,1),
-(26101,44,1,1,0,1,1,1,1,1),
-(26101,45,1,1,0,1,1,1,1,1),
-(26101,46,1,1,0,1,1,1,1,1),
-(26101,47,1,1,0,1,1,1,1,1),
-(26101,48,1,1,0,1,1,1,1,1),
-(26101,49,1,1,0,1,1,1,1,1),
-(26101,50,1,1,0,1,1,1,1,1),
-(26101,51,1,1,0,1,1,1,1,1),
-(26101,52,1,1,0,1,1,1,1,1),
-(26101,53,1,1,0,1,1,1,1,1),
-(26101,54,1,1,0,1,1,1,1,1),
-(26101,55,1,1,0,1,1,1,1,1),
-(26101,56,1,1,0,1,1,1,1,1),
-(26101,57,1,1,0,1,1,1,1,1),
-(26101,58,1,1,0,1,1,1,1,1),
-(26101,59,1,1,0,1,1,1,1,1),
-(26101,60,1,1,0,1,1,1,1,1),
-(26101,61,1,1,0,1,1,1,1,1),
-(26101,62,1,1,0,1,1,1,1,1),
-(26101,63,1,1,0,1,1,1,1,1),
-(26101,64,1,1,0,1,1,1,1,1),
-(26101,65,1,1,0,1,1,1,1,1),
-(26101,66,1,1,0,1,1,1,1,1),
-(26101,67,1,1,0,1,1,1,1,1),
-(26101,68,1,1,0,1,1,1,1,1),
-(26101,69,1,1,0,1,1,1,1,1),
-(26101,70,11352,3155,6792,152,39,102,334,360),
-(26101,71,1172,2109,0,155,39,104,341,370),
-(26101,72,1195,2128,0,158,40,106,348,380),
-(26101,73,1218,2147,0,161,40,108,355,390),
-(26101,74,1241,2166,0,164,40,110,362,400),
-(26101,75,1264,2185,0,167,41,112,369,410),
-(26101,76,1287,2204,0,170,41,114,376,420),
-(26101,77,1310,2223,0,173,41,116,383,430),
-(26101,78,1333,2242,0,176,42,118,390,440),
-(26101,79,1356,2261,0,179,42,120,397,450),
-(26101,80,1379,2280,0,182,42,122,404,460),
-(24815,71,1174,2110,0,158,40,105,347,370),
-(24815,72,1190,2132,0,164,40,106,354,380),
-(24815,73,1204,2145,0,179,42,108,363,390),
-(24815,74,1219,2159,0,188,43,110,377,400),
-(24815,75,1231,2172,0,200,44,113,390,410),
-(24815,76,1250,2190,0,211,45,115,402,420),
-(24815,77,1269,2203,0,225,46,118,420,430),
-(24815,78,1281,2220,0,236,47,131,439,440),
-(24815,79,1299,2239,0,249,48,140,450,450),
-(24815,80,1314,2252,0,261,50,162,470,460),
-(22362,71,1174,2110,0,158,40,105,347,370),
-(22362,72,1190,2132,0,164,40,106,354,380),
-(22362,73,1204,2145,0,179,42,108,363,390),
-(22362,74,1219,2159,0,188,43,110,377,400),
-(22362,75,1231,2172,0,200,44,113,390,410),
-(22362,76,1250,2190,0,211,45,115,402,420),
-(22362,77,1269,2203,0,225,46,118,420,430),
-(22362,78,1281,2220,0,236,47,131,439,440),
-(22362,79,1299,2239,0,249,48,140,450,450),
-(22362,80,1314,2252,0,261,50,162,470,460),
-(14385,71,4046,1902,4233,160,88,84,91,78),
-(14385,72,4112,1931,4528,162,88,84,92,80),
-(14385,73,4179,1960,4828,163,90,86,94,81),
-(14385,74,4247,1990,5133,164,90,87,95,82),
-(14385,75,4315,2021,5438,166,94,88,97,84),
-(14385,76,4384,2051,5748,168,95,90,98,86),
-(14385,77,4454,2084,6058,170,95,91,99,87),
-(14385,78,4525,2116,6368,174,96,92,100,88),
-(14385,79,4597,2149,6683,178,97,92,101,88),
-(14385,80,4665,2186,6993,181,98,95,103,90),
-(12922,71,1174,2110,0,158,40,105,347,370),
-(12922,72,1190,2132,0,164,40,106,354,380),
-(12922,73,1204,2145,0,179,42,108,363,390),
-(12922,74,1219,2159,0,188,43,110,377,400),
-(12922,75,1231,2172,0,200,44,113,390,410),
-(12922,76,1250,2190,0,211,45,115,402,420),
-(12922,77,1269,2203,0,225,46,118,420,430),
-(12922,78,1281,2220,0,236,47,131,439,440),
-(12922,79,1299,2239,0,249,48,140,450,450),
-(12922,80,1314,2252,0,261,50,162,470,460),
-(10979,71,1174,2110,0,158,40,105,347,370),
-(10979,72,1190,2132,0,164,40,106,354,380),
-(10979,73,1204,2145,0,179,42,108,363,390),
-(10979,74,1219,2159,0,188,43,110,377,400),
-(10979,75,1231,2172,0,200,44,113,390,410),
-(10979,76,1250,2190,0,211,45,115,402,420),
-(10979,77,1269,2203,0,225,46,118,420,430),
-(10979,78,1281,2220,0,236,47,131,439,440),
-(10979,79,1299,2239,0,249,48,140,450,450),
-(10979,80,1314,2252,0,261,50,162,470,460),
-(10928,71,1174,2110,0,158,40,105,347,370),
-(10928,72,1190,2132,0,164,40,106,354,380),
-(10928,73,1204,2145,0,179,42,108,363,390),
-(10928,74,1219,2159,0,188,43,110,377,400),
-(10928,75,1231,2172,0,200,44,113,390,410),
-(10928,76,1250,2190,0,211,45,115,402,420),
-(10928,77,1269,2203,0,225,46,118,420,430),
-(10928,78,1281,2220,0,236,47,131,439,440),
-(10928,79,1299,2239,0,249,48,140,450,450),
-(10928,80,1314,2252,0,261,50,162,470,460),
-(8996,71,1174,2110,0,158,40,105,347,370),
-(8996,72,1190,2132,0,164,40,106,354,380),
-(8996,73,1204,2145,0,179,42,108,363,390),
-(8996,74,1219,2159,0,188,43,110,377,400),
-(8996,75,1231,2172,0,200,44,113,390,410),
-(8996,76,1250,2190,0,211,45,115,402,420),
-(8996,77,1269,2203,0,225,46,118,420,430),
-(8996,78,1281,2220,0,236,47,131,439,440),
-(8996,79,1299,2239,0,249,48,140,450,450),
-(8996,80,1314,2252,0,261,50,162,470,460),
-(8477,71,1174,2110,0,158,40,105,347,370),
-(8477,72,1190,2132,0,164,40,106,354,380),
-(8477,73,1204,2145,0,179,42,108,363,390),
-(8477,74,1219,2159,0,188,43,110,377,400),
-(8477,75,1231,2172,0,200,44,113,390,410),
-(8477,76,1250,2190,0,211,45,115,402,420),
-(8477,77,1269,2203,0,225,46,118,420,430),
-(8477,78,1281,2220,0,236,47,131,439,440),
-(8477,79,1299,2239,0,249,48,140,450,450),
-(8477,80,1314,2252,0,261,50,162,470,460),
-(3450,71,1174,2110,0,158,40,105,347,370),
-(3450,72,1190,2132,0,164,40,106,354,380),
-(3450,73,1204,2145,0,179,42,108,363,390),
-(3450,74,1219,2159,0,188,43,110,377,400),
-(3450,75,1231,2172,0,200,44,113,390,410),
-(3450,76,1250,2190,0,211,45,115,402,420),
-(3450,77,1269,2203,0,225,46,118,420,430),
-(3450,78,1281,2220,0,236,47,131,439,440),
-(3450,79,1299,2239,0,249,48,140,450,450),
-(3450,80,1314,2252,0,261,50,162,470,460),
-(1,71,4162,1,7093,165,131,311,61,97),
-(1,72,4273,1,7392,168,134,316,62,99),
-(1,73,4384,1,7691,171,137,321,63,101),
-(1,74,4495,1,7990,174,140,326,64,103),
-(1,75,4606,1,8289,177,143,331,65,105),
-(1,76,4717,1,8588,180,146,336,66,107),
-(1,77,4828,1,8887,183,149,341,67,109),
-(1,78,4939,1,9186,186,152,346,68,111),
-(1,79,5050,1,9485,189,155,351,69,113),
-(1,80,5161,1,9784,192,158,356,70,115),
-(15438,71,7100,2109,1010,218,142,105,342,370),
-(15438,72,7200,2133,1020,224,144,106,349,380),
-(15438,73,7300,2149,1030,229,146,108,356,390),
-(15438,74,7400,2169,1040,238,148,110,363,400),
-(15438,75,7500,2188,1050,247,150,113,370,410),
-(15438,76,7600,2209,1060,253,152,115,377,420),
-(15438,77,7700,2228,1070,260,154,118,384,430),
-(15438,78,7800,2246,1080,268,156,120,391,440),
-(15438,79,7900,2264,1090,276,158,124,398,450),
-(15438,80,8000,2280,1100,283,160,125,405,460),
-(15352,71,7100,0,7200,158,72,105,142,370),
-(15352,72,7200,0,7400,164,74,106,144,380),
-(15352,73,7300,0,7600,179,77,108,147,390),
-(15352,74,7400,0,7800,188,80,110,150,400),
-(15352,75,7500,0,8000,200,83,113,152,410),
-(15352,76,7600,0,8200,211,84,115,155,420),
-(15352,77,7700,0,8400,225,86,118,158,430),
-(15352,78,7800,0,8600,236,89,131,160,440),
-(15352,79,7900,0,8800,249,89,140,163,450),
-(15352,80,8000,0,9000,261,90,162,165,460),
-(575,71,4501,4560,0,164,122,81,297,192),
-(575,72,4797,4664,0,167,125,82,303,196),
-(575,73,5093,4768,0,170,129,83,309,200),
-(575,74,5389,4872,0,174,132,84,315,204),
-(575,75,5685,4976,0,177,136,85,321,208),
-(575,76,5980,5080,0,180,139,86,326,212),
-(575,77,6276,5184,0,183,142,87,332,216),
-(575,78,6572,5288,0,186,146,88,338,220),
-(575,79,6868,5392,0,189,149,89,344,224),
-(575,80,7164,5496,0,193,153,90,350,228),
-(19668,71,2458,4560,0,177,122,81,297,192),
-(19668,72,2511,4664,0,181,125,82,303,196),
-(19668,73,2564,4768,0,186,129,83,309,200),
-(19668,74,2618,4872,0,191,132,84,315,204),
-(19668,75,2671,4976,0,196,136,85,321,208),
-(19668,76,2724,5080,0,200,139,86,326,212),
-(19668,77,2777,5184,0,205,142,87,332,216),
-(19668,78,2831,5288,0,210,146,88,338,220),
-(19668,79,2884,5392,0,215,149,89,344,224),
-(19668,80,2937,5496,0,219,153,90,350,228),
-(416,71,1580,2632,2319,148,40,102,342,269),
-(416,72,1639,2695,2431,150,41,104,351,274),
-(416,73,1699,2763,2544,153,44,104,358,280),
-(416,74,1761,2830,2660,156,45,108,365,283),
-(416,75,1821,2896,2760,159,46,109,373,288),
-(416,76,1882,2964,2890,164,48,110,381,295),
-(416,77,1949,3033,2999,166,49,113,390,300),
-(416,78,2011,3100,3110,168,50,114,397,308),
-(416,79,2073,3167,3150,171,51,115,392,313),
-(416,80,2129,3228,3191,175,54,119,402,319),
-(417,71,3169,2478,4561,156,111,285,136,124),
-(417,72,3227,2535,4721,159,113,290,139,126),
-(417,73,3283,2594,4882,162,116,294,143,128),
-(417,74,3342,2653,5041,165,118,298,146,129),
-(417,75,3403,2711,5199,167,121,304,150,131),
-(417,76,3459,2772,5363,170,124,309,153,132),
-(417,77,3518,2833,5526,172,127,313,156,135),
-(417,78,3576,2894,5688,175,129,319,157,137),
-(417,79,3645,2954,5868,177,130,324,158,140),
-(417,80,3733,3025,6008,179,133,329,162,142),
-(510,71,2489,4568,0,167,123,81,299,195),
-(510,72,2549,4676,0,171,127,82,305,200),
-(510,73,2609,4784,0,175,131,83,311,205),
-(510,74,2669,4892,0,179,135,84,317,210),
-(510,75,2729,5000,0,183,139,85,323,215),
-(510,76,2789,5108,0,187,143,86,329,220),
-(510,77,2849,5216,0,191,147,87,335,225),
-(510,78,2909,5324,0,195,151,88,341,230),
-(510,79,2969,5432,0,199,155,89,347,235),
-(510,80,3029,5540,0,203,159,90,353,240),
-(1860,71,5010,2992,9484,155,112,283,137,194),
-(1860,72,5161,3100,9861,157,114,286,141,197),
-(1860,73,5313,3208,10231,159,116,289,145,201),
-(1860,74,5466,3317,10603,163,120,293,151,205),
-(1860,75,5620,3426,10983,165,123,296,156,214),
-(1860,76,5775,3535,11362,167,125,300,160,218),
-(1860,77,5930,3645,11743,170,127,303,165,222),
-(1860,78,6086,3758,12125,172,129,306,172,226),
-(1860,79,6243,3874,12508,174,131,310,178,231),
-(1860,80,6401,3997,13011,177,134,313,185,235),
-(1863,71,2211,2460,4479,155,110,284,136,124),
-(1863,72,2259,2516,4666,157,111,288,139,125),
-(1863,73,2308,2573,4854,159,113,293,143,127),
-(1863,74,2358,2631,5042,161,115,298,147,131),
-(1863,75,2409,2660,5231,164,118,303,150,134),
-(1863,76,2461,2735,5421,167,120,309,154,137),
-(1863,77,2512,2793,5612,170,122,314,156,141),
-(1863,78,2562,2852,5804,172,124,319,158,143),
-(1863,79,2612,2911,5997,175,127,324,160,147),
-(1863,80,2665,2989,6204,178,130,330,163,150),
-(17252,71,5471,4277,8267,155,109,359,204,124),
-(17252,72,5623,4384,8607,158,111,367,211,125),
-(17252,73,5776,4492,8952,161,113,375,219,128),
-(17252,74,5930,4600,9297,164,115,382,227,130),
-(17252,75,6085,4709,9647,166,118,390,235,132),
-(17252,76,6241,4818,9997,170,121,399,242,135),
-(17252,77,6398,4927,10352,172,124,407,250,138),
-(17252,78,6556,5036,10712,174,125,414,257,141),
-(17252,79,6711,5144,11067,176,127,423,266,145),
-(17252,80,6872,5266,11454,177,130,432,275,150),
-(329,1,140,48,20,20,5,20,24,23),
-(329,2,149,59,20,21,5,2,25,24),
-(329,3,158,70,20,15,5,4,26,25),
-(329,4,168,81,33,17,5,8,27,26),
-(329,5,177,92,49,18,5,12,28,27),
-(329,6,186,103,68,20,7,16,29,27),
-(329,7,195,114,92,22,7,21,30,28),
-(329,8,204,125,117,23,8,25,31,29),
-(329,9,213,136,147,25,9,27,32,30),
-(329,10,223,147,180,29,10,29,33,31),
-(329,11,232,158,190,30,11,32,37,35),
-(329,12,250,180,203,31,12,36,41,39),
-(329,13,289,203,215,32,13,43,50,43),
-(329,14,299,227,228,33,13,44,54,47),
-(329,15,309,251,240,34,13,48,57,52),
-(329,16,329,275,253,36,13,52,62,56),
-(329,17,350,300,265,38,13,55,65,65),
-(329,18,362,314,278,39,13,59,70,70),
-(329,19,393,351,291,40,13,63,74,75),
-(329,20,403,377,303,42,13,67,87,78),
-(329,21,425,393,320,44,13,80,91,83),
-(329,22,449,420,346,46,13,84,95,86),
-(329,23,473,447,360,47,13,89,96,90),
-(329,24,520,476,373,49,13,93,97,95),
-(329,25,540,504,386,50,13,97,98,100),
-(329,26,569,534,399,52,13,101,60,78),
-(329,27,571,564,411,53,14,105,61,81),
-(329,28,574,592,424,55,15,110,62,86),
-(329,29,576,620,436,57,16,114,62,89),
-(329,30,579,648,449,57,16,118,63,92),
-(329,31,581,676,462,59,16,123,64,95),
-(329,32,590,720,476,60,17,127,64,98),
-(329,33,598,742,488,62,18,131,65,101),
-(329,34,601,793,501,63,19,135,65,104),
-(329,35,609,845,513,64,19,136,66,107),
-(329,36,617,879,525,67,19,137,66,110),
-(329,37,626,916,537,69,19,138,68,112),
-(329,38,634,952,549,70,19,139,68,115),
-(329,39,642,988,561,72,19,142,69,118),
-(329,40,650,1026,639,74,20,147,156,142),
-(329,41,668,1063,694,77,20,152,160,143),
-(329,42,676,1103,756,81,20,156,163,144),
-(329,43,685,1187,808,87,20,160,167,145),
-(329,44,693,1214,853,91,21,164,170,146),
-(329,45,701,1240,884,96,21,169,174,148),
-(329,46,709,1267,910,98,22,173,177,149),
-(329,47,718,1294,928,100,22,177,181,151),
-(329,48,726,1320,946,102,22,181,184,152),
-(329,49,734,1347,964,105,22,186,188,155),
-(329,50,747,1391,983,107,22,190,194,158),
-(329,51,750,1435,996,109,22,194,202,161),
-(329,52,764,1481,1013,112,24,198,208,165),
-(329,53,787,1527,1039,114,25,203,215,168),
-(329,54,820,1573,1055,115,26,207,222,172),
-(329,55,836,1620,1078,119,26,211,229,177),
-(329,56,846,1666,1091,121,27,215,236,181),
-(329,57,850,1714,1101,123,27,220,243,185),
-(329,58,862,1763,1125,125,27,224,250,189),
-(329,59,878,1824,1150,127,27,230,258,192),
-(329,60,920,1898,1163,122,27,128,264,197),
-(329,61,973,1925,1608,132,29,251,271,239),
-(329,62,1050,1977,1663,135,31,253,278,241),
-(329,63,1188,2030,1732,137,32,255,285,244),
-(329,64,1292,2084,1809,139,33,259,292,247),
-(329,65,1335,2137,1844,142,33,264,299,250),
-(329,66,1357,2191,1872,144,33,268,306,255),
-(329,67,1401,2244,1900,146,33,272,313,258),
-(329,68,1429,2298,1987,148,34,276,320,260),
-(329,69,1464,2351,2008,151,36,278,327,262),
-(329,70,1528,2568,2227,152,39,103,334,264),
-(329,71,7100,2109,1010,71,39,104,341,370),
-(329,72,7200,2128,1020,72,39,105,348,380),
-(329,73,7300,2147,1030,73,40,107,355,390),
-(329,74,7400,2167,1040,74,40,108,362,400),
-(329,75,7500,2186,1050,75,40,110,369,410),
-(329,76,7600,2205,1060,76,41,111,376,420),
-(329,77,7700,2224,1070,77,41,113,383,430),
-(329,78,7800,2243,1080,78,42,115,390,440),
-(329,79,7900,2262,1090,79,42,116,397,450),
-(329,80,8000,2282,1100,80,42,118,404,460),
-(3939,1,140,48,20,20,5,20,24,23),
-(3939,2,149,59,20,21,5,2,25,24),
-(3939,3,158,70,20,15,5,4,26,25),
-(3939,4,168,81,33,17,5,8,27,26),
-(3939,5,177,92,49,18,5,12,28,27),
-(3939,6,186,103,68,20,7,16,29,27),
-(3939,7,195,114,92,22,7,21,30,28),
-(3939,8,204,125,117,23,8,25,31,29),
-(3939,9,213,136,147,25,9,27,32,30),
-(3939,10,223,147,180,29,10,29,33,31),
-(3939,11,232,158,190,30,11,32,37,35),
-(3939,12,250,180,203,31,12,36,41,39),
-(3939,13,289,203,215,32,13,43,50,43),
-(3939,14,299,227,228,33,13,44,54,47),
-(3939,15,309,251,240,34,13,48,57,52),
-(3939,16,329,275,253,36,13,52,62,56),
-(3939,17,350,300,265,38,13,55,65,65),
-(3939,18,362,314,278,39,13,59,70,70),
-(3939,19,393,351,291,40,13,63,74,75),
-(3939,20,403,377,303,42,13,67,87,78),
-(3939,21,425,393,320,44,13,80,91,83),
-(3939,22,449,420,346,46,13,84,95,86),
-(3939,23,473,447,360,47,13,89,96,90),
-(3939,24,520,476,373,49,13,93,97,95),
-(3939,25,540,504,386,50,13,97,98,100),
-(3939,26,569,534,399,52,13,101,60,78),
-(3939,27,571,564,411,53,14,105,61,81),
-(3939,28,574,592,424,55,15,110,62,86),
-(3939,29,576,620,436,57,16,114,62,89),
-(3939,30,579,648,449,57,16,118,63,92),
-(3939,31,581,676,462,59,16,123,64,95),
-(3939,32,590,720,476,60,17,127,64,98),
-(3939,33,598,742,488,62,18,131,65,101),
-(3939,34,601,793,501,63,19,135,65,104),
-(3939,35,609,845,513,64,19,136,66,107),
-(3939,36,617,879,525,67,19,137,66,110),
-(3939,37,626,916,537,69,19,138,68,112),
-(3939,38,634,952,549,70,19,139,68,115),
-(3939,39,642,988,561,72,19,142,69,118),
-(3939,40,650,1026,639,74,20,147,156,142),
-(3939,41,668,1063,694,77,20,152,160,143),
-(3939,42,676,1103,756,81,20,156,163,144),
-(3939,43,685,1187,808,87,20,160,167,145),
-(3939,44,693,1214,853,91,21,164,170,146),
-(3939,45,701,1240,884,96,21,169,174,148),
-(3939,46,709,1267,910,98,22,173,177,149),
-(3939,47,718,1294,928,100,22,177,181,151),
-(3939,48,726,1320,946,102,22,181,184,152),
-(3939,49,734,1347,964,105,22,186,188,155),
-(3939,50,747,1391,983,107,22,190,194,158),
-(3939,51,750,1435,996,109,22,194,202,161),
-(3939,52,764,1481,1013,112,24,198,208,165),
-(3939,53,787,1527,1039,114,25,203,215,168),
-(3939,54,820,1573,1055,115,26,207,222,172),
-(3939,55,836,1620,1078,119,26,211,229,177),
-(3939,56,846,1666,1091,121,27,215,236,181),
-(3939,57,850,1714,1101,123,27,220,243,185),
-(3939,58,862,1763,1125,125,27,224,250,189),
-(3939,59,878,1824,1150,127,27,230,258,192),
-(3939,60,920,1898,1163,122,27,128,264,197),
-(3939,61,973,1925,1608,132,29,251,271,239),
-(3939,62,1050,1977,1663,135,31,253,278,241),
-(3939,63,1188,2030,1732,137,32,255,285,244),
-(3939,64,1292,2084,1809,139,33,259,292,247),
-(3939,65,1335,2137,1844,142,33,264,299,250),
-(3939,66,1357,2191,1872,144,33,268,306,255),
-(3939,67,1401,2244,1900,146,33,272,313,258),
-(3939,68,1429,2298,1987,148,34,276,320,260),
-(3939,69,1464,2351,2008,151,36,278,327,262),
-(3939,70,1528,2568,2227,152,39,103,334,264),
-(3939,71,5654,4225,8300,155,112,325,135,124),
-(3939,72,5750,4377,8380,157,115,329,136,126),
-(3939,73,5945,4430,8440,159,118,332,137,129),
-(3939,74,6191,4584,8550,162,121,335,138,131),
-(3939,75,6349,4646,8612,164,123,338,139,134),
-(3939,76,6676,4778,8910,166,126,343,140,136),
-(3939,77,6884,4863,9150,169,129,347,141,138),
-(3939,78,7097,4949,9450,172,132,351,142,141),
-(3939,79,7208,5035,9800,174,135,355,143,143),
-(3939,80,7320,5170,10087,177,137,361,144,146),
-(5058,1,40,48,20,12,14,1,1,25),
-(5058,2,49,59,40,14,15,2,1,26),
-(5058,3,58,70,60,15,16,4,1,27),
-(5058,4,68,81,80,17,17,8,2,27),
-(5058,5,77,92,100,18,18,12,2,28),
-(5058,6,86,103,120,20,19,16,3,29),
-(5058,7,95,114,140,22,20,21,3,29),
-(5058,8,104,125,160,23,21,25,4,30),
-(5058,9,113,136,180,25,22,29,4,31),
-(5058,10,123,147,200,26,23,33,5,31),
-(5058,11,132,158,220,28,25,38,6,32),
-(5058,12,150,180,240,29,26,42,8,33),
-(5058,13,169,203,280,31,27,46,9,34),
-(5058,14,189,227,320,33,28,50,11,35),
-(5058,15,209,251,360,34,29,55,14,35),
-(5058,16,229,275,400,36,30,59,16,36),
-(5058,17,250,300,460,37,31,63,20,37),
-(5058,18,262,314,510,39,32,67,24,38),
-(5058,19,293,351,550,40,33,72,29,39),
-(5058,20,303,377,563,42,35,67,31,49),
-(5058,21,325,393,604,44,36,80,53,39),
-(5058,22,349,420,628,46,36,84,54,41),
-(5058,23,373,447,652,47,38,89,56,42),
-(5058,24,400,476,675,49,39,93,57,43),
-(5058,25,440,504,699,50,40,97,60,44),
-(5058,26,469,534,721,52,41,101,62,46),
-(5058,27,501,564,745,53,42,105,63,47),
-(5058,28,534,592,768,55,43,110,65,48),
-(5058,29,566,620,791,57,44,114,67,49),
-(5058,30,599,648,815,57,46,118,69,51),
-(5058,31,631,676,838,59,47,123,71,52),
-(5058,32,680,720,862,60,47,127,73,53),
-(5058,33,728,742,884,62,49,131,74,54),
-(5058,34,661,793,908,64,50,135,76,56),
-(5058,35,699,845,950,63,51,136,73,57),
-(5058,36,737,879,990,67,52,137,72,58),
-(5058,37,776,916,1038,69,53,138,70,59),
-(5058,38,814,952,1095,70,55,139,69,61),
-(5058,39,852,988,1163,72,56,142,68,62),
-(5058,40,890,1026,1244,74,57,147,67,64),
-(5058,41,928,1063,1338,77,58,152,68,66),
-(5058,42,976,1103,1448,81,59,156,70,67),
-(5058,43,1005,1187,1560,87,60,160,72,69),
-(5058,44,1043,1214,1670,91,61,164,74,71),
-(5058,45,1081,1240,1738,96,64,169,75,72),
-(5058,46,1119,1267,1773,98,65,173,77,73),
-(5058,47,1158,1294,1808,100,66,177,78,75),
-(5058,48,1196,1320,1843,102,68,181,80,76),
-(5058,49,1234,1347,1878,105,69,186,82,78),
-(5058,50,2877,2391,3494,107,71,219,95,80),
-(5058,51,2920,2435,3559,109,72,223,97,81),
-(5058,52,3164,2481,3624,112,74,228,100,82),
-(5058,53,3207,2527,3686,113,75,233,102,84),
-(5058,54,3350,2573,3752,116,77,238,104,87),
-(5058,55,3493,2620,3814,119,78,243,106,88),
-(5058,56,3536,2766,3878,120,79,248,108,89),
-(5058,57,3680,2814,3941,123,82,251,111,92),
-(5058,58,3723,2913,4006,125,84,255,113,94),
-(5058,59,3866,2924,4067,128,86,258,115,96),
-(5058,60,3909,3174,4635,130,87,270,118,98),
-(5058,61,4054,3225,6300,132,90,274,121,101),
-(5058,62,4300,3377,6380,135,92,280,122,103),
-(5058,63,4545,3430,6440,137,93,286,123,105),
-(5058,64,4691,3584,6550,139,95,295,128,107),
-(5058,65,4749,3646,6612,142,98,300,129,110),
-(5058,66,4876,3778,6910,144,99,306,130,112),
-(5058,67,4984,3863,7150,146,101,310,131,114),
-(5058,68,5197,3949,7450,148,105,315,132,117),
-(5058,69,5208,4035,7800,151,107,318,133,119),
-(5058,70,5320,4170,8087,153,109,322,134,122),
-(5058,71,4162,1,7093,165,131,311,61,97),
-(5058,72,4273,1,7392,168,134,316,62,99),
-(5058,73,4384,1,7691,171,137,321,63,101),
-(5058,74,4495,1,7990,174,140,326,64,103),
-(5058,75,4606,1,8289,177,143,331,65,105),
-(5058,76,4717,1,8588,180,146,336,66,107),
-(5058,77,4828,1,8887,183,149,341,67,109),
-(5058,78,4939,1,9186,186,152,346,68,111),
-(5058,79,5050,1,9485,189,155,351,69,113),
-(5058,80,5161,1,9784,192,158,356,70,115),
-(5766,1,140,48,20,20,5,20,24,23),
-(5766,2,149,59,20,21,5,2,25,24),
-(5766,3,158,70,20,15,5,4,26,25),
-(5766,4,168,81,33,17,5,8,27,26),
-(5766,5,177,92,49,18,5,12,28,27),
-(5766,6,186,103,68,20,7,16,29,27),
-(5766,7,195,114,92,22,7,21,30,28),
-(5766,8,204,125,117,23,8,25,31,29),
-(5766,9,213,136,147,25,9,27,32,30),
-(5766,10,223,147,180,29,10,29,33,31),
-(5766,11,232,158,190,30,11,32,37,35),
-(5766,12,250,180,203,31,12,36,41,39),
-(5766,13,289,203,215,32,13,43,50,43),
-(5766,14,299,227,228,33,13,44,54,47),
-(5766,15,309,251,240,34,13,48,57,52),
-(5766,16,329,275,253,36,13,52,62,56),
-(5766,17,350,300,265,38,13,55,65,65),
-(5766,18,362,314,278,39,13,59,70,70),
-(5766,19,393,351,291,40,13,63,74,75),
-(5766,20,403,377,303,42,13,67,87,78),
-(5766,21,425,393,320,44,13,80,91,83),
-(5766,22,449,420,346,46,13,84,95,86),
-(5766,23,473,447,360,47,13,89,96,90),
-(5766,24,520,476,373,49,13,93,97,95),
-(5766,25,540,504,386,50,13,97,98,100),
-(5766,26,569,534,399,52,13,101,60,78),
-(5766,27,571,564,411,53,14,105,61,81),
-(5766,28,574,592,424,55,15,110,62,86),
-(5766,29,576,620,436,57,16,114,62,89),
-(5766,30,579,648,449,57,16,118,63,92),
-(5766,31,581,676,462,59,16,123,64,95),
-(5766,32,590,720,476,60,17,127,64,98),
-(5766,33,598,742,488,62,18,131,65,101),
-(5766,34,601,793,501,63,19,135,65,104),
-(5766,35,609,845,513,64,19,136,66,107),
-(5766,36,617,879,525,67,19,137,66,110),
-(5766,37,626,916,537,69,19,138,68,112),
-(5766,38,634,952,549,70,19,139,68,115),
-(5766,39,642,988,561,72,19,142,69,118),
-(5766,40,650,1026,639,74,20,147,156,142),
-(5766,41,668,1063,694,77,20,152,160,143),
-(5766,42,676,1103,756,81,20,156,163,144),
-(5766,43,685,1187,808,87,20,160,167,145),
-(5766,44,693,1214,853,91,21,164,170,146),
-(5766,45,701,1240,884,96,21,169,174,148),
-(5766,46,709,1267,910,98,22,173,177,149),
-(5766,47,718,1294,928,100,22,177,181,151),
-(5766,48,726,1320,946,102,22,181,184,152),
-(5766,49,734,1347,964,105,22,186,188,155),
-(5766,50,747,1391,983,107,22,190,194,158),
-(5766,51,750,1435,996,109,22,194,202,161),
-(5766,52,764,1481,1013,112,24,198,208,165),
-(5766,53,787,1527,1039,114,25,203,215,168),
-(5766,54,820,1573,1055,115,26,207,222,172),
-(5766,55,836,1620,1078,119,26,211,229,177),
-(5766,56,846,1666,1091,121,27,215,236,181),
-(5766,57,850,1714,1101,123,27,220,243,185),
-(5766,58,862,1763,1125,125,27,224,250,189),
-(5766,59,878,1824,1150,127,27,230,258,192),
-(5766,60,920,1898,1163,122,27,128,264,197),
-(5766,61,973,1925,1608,132,29,251,271,239),
-(5766,62,1050,1977,1663,135,31,253,278,241),
-(5766,63,1188,2030,1732,137,32,255,285,244),
-(5766,64,1292,2084,1809,139,33,259,292,247),
-(5766,65,1335,2137,1844,142,33,264,299,250),
-(5766,66,1357,2191,1872,144,33,268,306,255),
-(5766,67,1401,2244,1900,146,33,272,313,258),
-(5766,68,1429,2298,1987,148,34,276,320,260),
-(5766,69,1464,2351,2008,151,36,278,327,262),
-(5766,70,1528,2568,2227,152,39,103,334,264),
-(5766,71,4162,1,7093,165,131,311,61,97),
-(5766,72,4273,1,7392,168,134,316,62,99),
-(5766,73,4384,1,7691,171,137,321,63,101),
-(5766,74,4495,1,7990,174,140,326,64,103),
-(5766,75,4606,1,8289,177,143,331,65,105),
-(5766,76,4717,1,8588,180,146,336,66,107),
-(5766,77,4828,1,8887,183,149,341,67,109),
-(5766,78,4939,1,9186,186,152,346,68,111),
-(5766,79,5050,1,9485,189,155,351,69,113),
-(5766,80,5161,1,9784,192,158,356,70,115),
-(6250,1,140,48,20,20,5,20,24,23),
-(6250,2,149,59,20,21,5,2,25,24),
-(6250,3,158,70,20,15,5,4,26,25),
-(6250,4,168,81,33,17,5,8,27,26),
-(6250,5,177,92,49,18,5,12,28,27),
-(6250,6,186,103,68,20,7,16,29,27),
-(6250,7,195,114,92,22,7,21,30,28),
-(6250,8,204,125,117,23,8,25,31,29),
-(6250,9,213,136,147,25,9,27,32,30),
-(6250,10,223,147,180,29,10,29,33,31),
-(6250,11,232,158,190,30,11,32,37,35),
-(6250,12,250,180,203,31,12,36,41,39),
-(6250,13,289,203,215,32,13,43,50,43),
-(6250,14,299,227,228,33,13,44,54,47),
-(6250,15,309,251,240,34,13,48,57,52),
-(6250,16,329,275,253,36,13,52,62,56),
-(6250,17,350,300,265,38,13,55,65,65),
-(6250,18,362,314,278,39,13,59,70,70),
-(6250,19,393,351,291,40,13,63,74,75),
-(6250,20,403,377,303,42,13,67,87,78),
-(6250,21,425,393,320,44,13,80,91,83),
-(6250,22,449,420,346,46,13,84,95,86),
-(6250,23,473,447,360,47,13,89,96,90),
-(6250,24,520,476,373,49,13,93,97,95),
-(6250,25,540,504,386,50,13,97,98,100),
-(6250,26,569,534,399,52,13,101,60,78),
-(6250,27,571,564,411,53,14,105,61,81),
-(6250,28,574,592,424,55,15,110,62,86),
-(6250,29,576,620,436,57,16,114,62,89),
-(6250,30,579,648,449,57,16,118,63,92),
-(6250,31,581,676,462,59,16,123,64,95),
-(6250,32,590,720,476,60,17,127,64,98),
-(6250,33,598,742,488,62,18,131,65,101),
-(6250,34,601,793,501,63,19,135,65,104),
-(6250,35,609,845,513,64,19,136,66,107),
-(6250,36,617,879,525,67,19,137,66,110),
-(6250,37,626,916,537,69,19,138,68,112),
-(6250,38,634,952,549,70,19,139,68,115),
-(6250,39,642,988,561,72,19,142,69,118),
-(6250,40,650,1026,639,74,20,147,156,142),
-(6250,41,668,1063,694,77,20,152,160,143),
-(6250,42,676,1103,756,81,20,156,163,144),
-(6250,43,685,1187,808,87,20,160,167,145),
-(6250,44,693,1214,853,91,21,164,170,146),
-(6250,45,701,1240,884,96,21,169,174,148),
-(6250,46,709,1267,910,98,22,173,177,149),
-(6250,47,718,1294,928,100,22,177,181,151),
-(6250,48,726,1320,946,102,22,181,184,152),
-(6250,49,734,1347,964,105,22,186,188,155),
-(6250,50,747,1391,983,107,22,190,194,158),
-(6250,51,750,1435,996,109,22,194,202,161),
-(6250,52,764,1481,1013,112,24,198,208,165),
-(6250,53,787,1527,1039,114,25,203,215,168),
-(6250,54,820,1573,1055,115,26,207,222,172),
-(6250,55,836,1620,1078,119,26,211,229,177),
-(6250,56,846,1666,1091,121,27,215,236,181),
-(6250,57,850,1714,1101,123,27,220,243,185),
-(6250,58,862,1763,1125,125,27,224,250,189),
-(6250,59,878,1824,1150,127,27,230,258,192),
-(6250,60,920,1898,1163,122,27,128,264,197),
-(6250,61,973,1925,1608,132,29,251,271,239),
-(6250,62,1050,1977,1663,135,31,253,278,241),
-(6250,63,1188,2030,1732,137,32,255,285,244),
-(6250,64,1292,2084,1809,139,33,259,292,247),
-(6250,65,1335,2137,1844,142,33,264,299,250),
-(6250,66,1357,2191,1872,144,33,268,306,255),
-(6250,67,1401,2244,1900,146,33,272,313,258),
-(6250,68,1429,2298,1987,148,34,276,320,260),
-(6250,69,1464,2351,2008,151,36,278,327,262),
-(6250,70,1528,2568,2227,152,39,103,334,264),
-(6250,71,4162,1,7093,165,131,311,61,97),
-(6250,72,4273,1,7392,168,134,316,62,99),
-(6250,73,4384,1,7691,171,137,321,63,101),
-(6250,74,4495,1,7990,174,140,326,64,103),
-(6250,75,4606,1,8289,177,143,331,65,105),
-(6250,76,4717,1,8588,180,146,336,66,107),
-(6250,77,4828,1,8887,183,149,341,67,109),
-(6250,78,4939,1,9186,186,152,346,68,111),
-(6250,79,5050,1,9485,189,155,351,69,113),
-(6250,80,5161,1,9784,192,158,356,70,115),
-(15214,1,140,48,20,20,5,20,24,23),
-(15214,2,149,59,20,21,5,2,25,24),
-(15214,3,158,70,20,15,5,4,26,25),
-(15214,4,168,81,33,17,5,8,27,26),
-(15214,5,177,92,49,18,5,12,28,27),
-(15214,6,186,103,68,20,7,16,29,27),
-(15214,7,195,114,92,22,7,21,30,28),
-(15214,8,204,125,117,23,8,25,31,29),
-(15214,9,213,136,147,25,9,27,32,30),
-(15214,10,223,147,180,29,10,29,33,31),
-(15214,11,232,158,190,30,11,32,37,35),
-(15214,12,250,180,203,31,12,36,41,39),
-(15214,13,289,203,215,32,13,43,50,43),
-(15214,14,299,227,228,33,13,44,54,47),
-(15214,15,309,251,240,34,13,48,57,52),
-(15214,16,329,275,253,36,13,52,62,56),
-(15214,17,350,300,265,38,13,55,65,65),
-(15214,18,362,314,278,39,13,59,70,70),
-(15214,19,393,351,291,40,13,63,74,75),
-(15214,20,403,377,303,42,13,67,87,78),
-(15214,21,425,393,320,44,13,80,91,83),
-(15214,22,449,420,346,46,13,84,95,86),
-(15214,23,473,447,360,47,13,89,96,90),
-(15214,24,520,476,373,49,13,93,97,95),
-(15214,25,540,504,386,50,13,97,98,100),
-(15214,26,569,534,399,52,13,101,60,78),
-(15214,27,571,564,411,53,14,105,61,81),
-(15214,28,574,592,424,55,15,110,62,86),
-(15214,29,576,620,436,57,16,114,62,89),
-(15214,30,579,648,449,57,16,118,63,92),
-(15214,31,581,676,462,59,16,123,64,95),
-(15214,32,590,720,476,60,17,127,64,98),
-(15214,33,598,742,488,62,18,131,65,101),
-(15214,34,601,793,501,63,19,135,65,104),
-(15214,35,609,845,513,64,19,136,66,107),
-(15214,36,617,879,525,67,19,137,66,110),
-(15214,37,626,916,537,69,19,138,68,112),
-(15214,38,634,952,549,70,19,139,68,115),
-(15214,39,642,988,561,72,19,142,69,118),
-(15214,40,650,1026,639,74,20,147,156,142),
-(15214,41,668,1063,694,77,20,152,160,143),
-(15214,42,676,1103,756,81,20,156,163,144),
-(15214,43,685,1187,808,87,20,160,167,145),
-(15214,44,693,1214,853,91,21,164,170,146),
-(15214,45,701,1240,884,96,21,169,174,148),
-(15214,46,709,1267,910,98,22,173,177,149),
-(15214,47,718,1294,928,100,22,177,181,151),
-(15214,48,726,1320,946,102,22,181,184,152),
-(15214,49,734,1347,964,105,22,186,188,155),
-(15214,50,747,1391,983,107,22,190,194,158),
-(15214,51,750,1435,996,109,22,194,202,161),
-(15214,52,764,1481,1013,112,24,198,208,165),
-(15214,53,787,1527,1039,114,25,203,215,168),
-(15214,54,820,1573,1055,115,26,207,222,172),
-(15214,55,836,1620,1078,119,26,211,229,177),
-(15214,56,846,1666,1091,121,27,215,236,181),
-(15214,57,850,1714,1101,123,27,220,243,185),
-(15214,58,862,1763,1125,125,27,224,250,189),
-(15214,59,878,1824,1150,127,27,230,258,192),
-(15214,60,920,1898,1163,122,27,128,264,197),
-(15214,61,973,1925,1608,132,29,251,271,239),
-(15214,62,1050,1977,1663,135,31,253,278,241),
-(15214,63,1188,2030,1732,137,32,255,285,244),
-(15214,64,1292,2084,1809,139,33,259,292,247),
-(15214,65,1335,2137,1844,142,33,264,299,250),
-(15214,66,1357,2191,1872,144,33,268,306,255),
-(15214,67,1401,2244,1900,146,33,272,313,258),
-(15214,68,1429,2298,1987,148,34,276,320,260),
-(15214,69,1464,2351,2008,151,36,278,327,262),
-(15214,70,1528,2568,2227,152,39,103,334,264),
-(15214,71,5654,4225,8300,155,112,325,135,124),
-(15214,72,5750,4377,8380,157,115,329,136,126),
-(15214,73,5945,4430,8440,159,118,332,137,129),
-(15214,74,6191,4584,8550,162,121,335,138,131),
-(15214,75,6349,4646,8612,164,123,338,139,134),
-(15214,76,6676,4778,8910,166,126,343,140,136),
-(15214,77,6884,4863,9150,169,129,347,141,138),
-(15214,78,7097,4949,9450,172,132,351,142,141),
-(15214,79,7208,5035,9800,174,135,355,143,143),
-(15214,80,7320,5170,10087,177,137,361,144,146),
-(24476,1,140,48,20,20,5,20,24,23),
-(24476,2,149,59,20,21,5,2,25,24),
-(24476,3,158,70,20,15,5,4,26,25),
-(24476,4,168,81,33,17,5,8,27,26),
-(24476,5,177,92,49,18,5,12,28,27),
-(24476,6,186,103,68,20,7,16,29,27),
-(24476,7,195,114,92,22,7,21,30,28),
-(24476,8,204,125,117,23,8,25,31,29),
-(24476,9,213,136,147,25,9,27,32,30),
-(24476,10,223,147,180,29,10,29,33,31),
-(24476,11,232,158,190,30,11,32,37,35),
-(24476,12,250,180,203,31,12,36,41,39),
-(24476,13,289,203,215,32,13,43,50,43),
-(24476,14,299,227,228,33,13,44,54,47),
-(24476,15,309,251,240,34,13,48,57,52),
-(24476,16,329,275,253,36,13,52,62,56),
-(24476,17,350,300,265,38,13,55,65,65),
-(24476,18,362,314,278,39,13,59,70,70),
-(24476,19,393,351,291,40,13,63,74,75),
-(24476,20,403,377,303,42,13,67,87,78),
-(24476,21,425,393,320,44,13,80,91,83),
-(24476,22,449,420,346,46,13,84,95,86),
-(24476,23,473,447,360,47,13,89,96,90),
-(24476,24,520,476,373,49,13,93,97,95),
-(24476,25,540,504,386,50,13,97,98,100),
-(24476,26,569,534,399,52,13,101,60,78),
-(24476,27,571,564,411,53,14,105,61,81),
-(24476,28,574,592,424,55,15,110,62,86),
-(24476,29,576,620,436,57,16,114,62,89),
-(24476,30,579,648,449,57,16,118,63,92),
-(24476,31,581,676,462,59,16,123,64,95),
-(24476,32,590,720,476,60,17,127,64,98),
-(24476,33,598,742,488,62,18,131,65,101),
-(24476,34,601,793,501,63,19,135,65,104),
-(24476,35,609,845,513,64,19,136,66,107),
-(24476,36,617,879,525,67,19,137,66,110),
-(24476,37,626,916,537,69,19,138,68,112),
-(24476,38,634,952,549,70,19,139,68,115),
-(24476,39,642,988,561,72,19,142,69,118),
-(24476,40,650,1026,639,74,20,147,156,142),
-(24476,41,668,1063,694,77,20,152,160,143),
-(24476,42,676,1103,756,81,20,156,163,144),
-(24476,43,685,1187,808,87,20,160,167,145),
-(24476,44,693,1214,853,91,21,164,170,146),
-(24476,45,701,1240,884,96,21,169,174,148),
-(24476,46,709,1267,910,98,22,173,177,149),
-(24476,47,718,1294,928,100,22,177,181,151),
-(24476,48,726,1320,946,102,22,181,184,152),
-(24476,49,734,1347,964,105,22,186,188,155),
-(24476,50,747,1391,983,107,22,190,194,158),
-(24476,51,750,1435,996,109,22,194,202,161),
-(24476,52,764,1481,1013,112,24,198,208,165),
-(24476,53,787,1527,1039,114,25,203,215,168),
-(24476,54,820,1573,1055,115,26,207,222,172),
-(24476,55,836,1620,1078,119,26,211,229,177),
-(24476,56,846,1666,1091,121,27,215,236,181),
-(24476,57,850,1714,1101,123,27,220,243,185),
-(24476,58,862,1763,1125,125,27,224,250,189),
-(24476,59,878,1824,1150,127,27,230,258,192),
-(24476,60,920,1898,1163,122,27,128,264,197),
-(24476,61,973,1925,1608,132,29,251,271,239),
-(24476,62,1050,1977,1663,135,31,253,278,241),
-(24476,63,1188,2030,1732,137,32,255,285,244),
-(24476,64,1292,2084,1809,139,33,259,292,247),
-(24476,65,1335,2137,1844,142,33,264,299,250),
-(24476,66,1357,2191,1872,144,33,268,306,255),
-(24476,67,1401,2244,1900,146,33,272,313,258),
-(24476,68,1429,2298,1987,148,34,276,320,260),
-(24476,69,1464,2351,2008,151,36,278,327,262),
-(24476,70,1528,2568,2227,152,39,103,334,264),
-(24476,71,4162,1,7093,165,131,311,61,97),
-(24476,72,4273,1,7392,168,134,316,62,99),
-(24476,73,4384,1,7691,171,137,321,63,101),
-(24476,74,4495,1,7990,174,140,326,64,103),
-(24476,75,4606,1,8289,177,143,331,65,105),
-(24476,76,4717,1,8588,180,146,336,66,107),
-(24476,77,4828,1,8887,183,149,341,67,109),
-(24476,78,4939,1,9186,186,152,346,68,111),
-(24476,79,5050,1,9485,189,155,351,69,113),
-(24476,80,5161,1,9784,192,158,356,70,115),
-(24656,1,1,1,0,1,1,1,1,1),
-(24656,2,1,1,0,1,1,1,1,1),
-(24656,3,1,1,0,1,1,1,1,1),
-(24656,4,1,1,0,1,1,1,1,1),
-(24656,5,1,1,0,1,1,1,1,1),
-(24656,6,1,1,0,1,1,1,1,1),
-(24656,7,1,1,0,1,1,1,1,1),
-(24656,8,1,1,0,1,1,1,1,1),
-(24656,9,1,1,0,1,1,1,1,1),
-(24656,10,1,1,0,1,1,1,1,1),
-(24656,11,1,1,0,1,1,1,1,1),
-(24656,12,1,1,0,1,1,1,1,1),
-(24656,13,1,1,0,1,1,1,1,1),
-(24656,14,1,1,0,1,1,1,1,1),
-(24656,15,1,1,0,1,1,1,1,1),
-(24656,16,1,1,0,1,1,1,1,1),
-(24656,17,1,1,0,1,1,1,1,1),
-(24656,18,1,1,0,1,1,1,1,1),
-(24656,19,1,1,0,1,1,1,1,1),
-(24656,20,1,1,0,1,1,1,1,1),
-(24656,21,1,1,0,1,1,1,1,1),
-(24656,22,1,1,0,1,1,1,1,1),
-(24656,23,1,1,0,1,1,1,1,1),
-(24656,24,1,1,0,1,1,1,1,1),
-(24656,25,1,1,0,1,1,1,1,1),
-(24656,26,1,1,0,1,1,1,1,1),
-(24656,27,1,1,0,1,1,1,1,1),
-(24656,28,1,1,0,1,1,1,1,1),
-(24656,29,1,1,0,1,1,1,1,1),
-(24656,30,1,1,0,1,1,1,1,1),
-(24656,31,1,1,0,1,1,1,1,1),
-(24656,32,1,1,0,1,1,1,1,1),
-(24656,33,1,1,0,1,1,1,1,1),
-(24656,34,1,1,0,1,1,1,1,1),
-(24656,35,1,1,0,1,1,1,1,1),
-(24656,36,1,1,0,1,1,1,1,1),
-(24656,37,1,1,0,1,1,1,1,1),
-(24656,38,1,1,0,1,1,1,1,1),
-(24656,39,1,1,0,1,1,1,1,1),
-(24656,40,1,1,0,1,1,1,1,1),
-(24656,41,1,1,0,1,1,1,1,1),
-(24656,42,1,1,0,1,1,1,1,1),
-(24656,43,1,1,0,1,1,1,1,1),
-(24656,44,1,1,0,1,1,1,1,1),
-(24656,45,1,1,0,1,1,1,1,1),
-(24656,46,1,1,0,1,1,1,1,1),
-(24656,47,1,1,0,1,1,1,1,1),
-(24656,48,1,1,0,1,1,1,1,1),
-(24656,49,1,1,0,1,1,1,1,1),
-(24656,50,1,1,0,1,1,1,1,1),
-(24656,51,1,1,0,1,1,1,1,1),
-(24656,52,1,1,0,1,1,1,1,1),
-(24656,53,1,1,0,1,1,1,1,1),
-(24656,54,1,1,0,1,1,1,1,1),
-(24656,55,1,1,0,1,1,1,1,1),
-(24656,56,1,1,0,1,1,1,1,1),
-(24656,57,1,1,0,1,1,1,1,1),
-(24656,58,1,1,0,1,1,1,1,1),
-(24656,59,1,1,0,1,1,1,1,1),
-(24656,60,1,1,0,1,1,1,1,1),
-(24656,61,1,1,0,1,1,1,1,1),
-(24656,62,1,1,0,1,1,1,1,1),
-(24656,63,1,1,0,1,1,1,1,1),
-(24656,64,1,1,0,1,1,1,1,1),
-(24656,65,1,1,0,1,1,1,1,1),
-(24656,66,1,1,0,1,1,1,1,1),
-(24656,67,1,1,0,1,1,1,1,1),
-(24656,68,1,1,0,1,1,1,1,1),
-(24656,69,1,1,0,1,1,1,1,1),
-(24656,70,8782,2878,3696,152,39,102,334,360),
-(24656,71,5654,4225,8300,155,112,325,135,124),
-(24656,72,5750,4377,8380,157,115,329,136,126),
-(24656,73,5945,4430,8440,159,118,332,137,129),
-(24656,74,6191,4584,8550,162,121,335,138,131),
-(24656,75,6349,4646,8612,164,123,338,139,134),
-(24656,76,6676,4778,8910,166,126,343,140,136),
-(24656,77,6884,4863,9150,169,129,347,141,138),
-(24656,78,7097,4949,9450,172,132,351,142,141),
-(24656,79,7208,5035,9800,174,135,355,143,143),
-(24656,80,7320,5170,10087,177,137,361,144,146),
-(25553,1,140,48,20,20,5,20,24,23),
-(25553,2,149,59,20,21,5,2,25,24),
-(25553,3,158,70,20,15,5,4,26,25),
-(25553,4,168,81,33,17,5,8,27,26),
-(25553,5,177,92,49,18,5,12,28,27),
-(25553,6,186,103,68,20,7,16,29,27),
-(25553,7,195,114,92,22,7,21,30,28),
-(25553,8,204,125,117,23,8,25,31,29),
-(25553,9,213,136,147,25,9,27,32,30),
-(25553,10,223,147,180,29,10,29,33,31),
-(25553,11,232,158,190,30,11,32,37,35),
-(25553,12,250,180,203,31,12,36,41,39),
-(25553,13,289,203,215,32,13,43,50,43),
-(25553,14,299,227,228,33,13,44,54,47),
-(25553,15,309,251,240,34,13,48,57,52),
-(25553,16,329,275,253,36,13,52,62,56),
-(25553,17,350,300,265,38,13,55,65,65),
-(25553,18,362,314,278,39,13,59,70,70),
-(25553,19,393,351,291,40,13,63,74,75),
-(25553,20,403,377,303,42,13,67,87,78),
-(25553,21,425,393,320,44,13,80,91,83),
-(25553,22,449,420,346,46,13,84,95,86),
-(25553,23,473,447,360,47,13,89,96,90),
-(25553,24,520,476,373,49,13,93,97,95),
-(25553,25,540,504,386,50,13,97,98,100),
-(25553,26,569,534,399,52,13,101,60,78),
-(25553,27,571,564,411,53,14,105,61,81),
-(25553,28,574,592,424,55,15,110,62,86),
-(25553,29,576,620,436,57,16,114,62,89),
-(25553,30,579,648,449,57,16,118,63,92),
-(25553,31,581,676,462,59,16,123,64,95),
-(25553,32,590,720,476,60,17,127,64,98),
-(25553,33,598,742,488,62,18,131,65,101),
-(25553,34,601,793,501,63,19,135,65,104),
-(25553,35,609,845,513,64,19,136,66,107),
-(25553,36,617,879,525,67,19,137,66,110),
-(25553,37,626,916,537,69,19,138,68,112),
-(25553,38,634,952,549,70,19,139,68,115),
-(25553,39,642,988,561,72,19,142,69,118),
-(25553,40,650,1026,639,74,20,147,156,142),
-(25553,41,668,1063,694,77,20,152,160,143),
-(25553,42,676,1103,756,81,20,156,163,144),
-(25553,43,685,1187,808,87,20,160,167,145),
-(25553,44,693,1214,853,91,21,164,170,146),
-(25553,45,701,1240,884,96,21,169,174,148),
-(25553,46,709,1267,910,98,22,173,177,149),
-(25553,47,718,1294,928,100,22,177,181,151),
-(25553,48,726,1320,946,102,22,181,184,152),
-(25553,49,734,1347,964,105,22,186,188,155),
-(25553,50,747,1391,983,107,22,190,194,158),
-(25553,51,750,1435,996,109,22,194,202,161),
-(25553,52,764,1481,1013,112,24,198,208,165),
-(25553,53,787,1527,1039,114,25,203,215,168),
-(25553,54,820,1573,1055,115,26,207,222,172),
-(25553,55,836,1620,1078,119,26,211,229,177),
-(25553,56,846,1666,1091,121,27,215,236,181),
-(25553,57,850,1714,1101,123,27,220,243,185),
-(25553,58,862,1763,1125,125,27,224,250,189),
-(25553,59,878,1824,1150,127,27,230,258,192),
-(25553,60,920,1898,1163,122,27,128,264,197),
-(25553,61,973,1925,1608,132,29,251,271,239),
-(25553,62,1050,1977,1663,135,31,253,278,241),
-(25553,63,1188,2030,1732,137,32,255,285,244),
-(25553,64,1292,2084,1809,139,33,259,292,247),
-(25553,65,1335,2137,1844,142,33,264,299,250),
-(25553,66,1357,2191,1872,144,33,268,306,255),
-(25553,67,1401,2244,1900,146,33,272,313,258),
-(25553,68,1429,2298,1987,148,34,276,320,260),
-(25553,69,1464,2351,2008,151,36,278,327,262),
-(25553,70,1528,2568,2227,152,39,103,334,264),
-(25553,71,5654,4225,8300,155,112,325,135,124),
-(25553,72,5750,4377,8380,157,115,329,136,126),
-(25553,73,5945,4430,8440,159,118,332,137,129),
-(25553,74,6191,4584,8550,162,121,335,138,131),
-(25553,75,6349,4646,8612,164,123,338,139,134),
-(25553,76,6676,4778,8910,166,126,343,140,136),
-(25553,77,6884,4863,9150,169,129,347,141,138),
-(25553,78,7097,4949,9450,172,132,351,142,141),
-(25553,79,7208,5035,9800,174,135,355,143,143),
-(25553,80,7320,5170,10087,177,137,361,144,146),
-(25566,1,14,40,0,20,20,20,24,23),
-(25566,2,19,49,0,21,20,20,25,24),
-(25566,3,24,58,0,22,20,21,26,25),
-(25566,4,29,67,0,23,21,21,27,26),
-(25566,5,34,76,0,23,21,22,28,27),
-(25566,6,40,85,0,24,21,22,29,27),
-(25566,7,46,95,0,25,21,23,30,28),
-(25566,8,52,105,0,26,21,23,31,29),
-(25566,9,58,116,0,27,21,23,32,30),
-(25566,10,64,126,0,27,22,24,33,31),
-(25566,11,75,151,0,28,22,24,37,35),
-(25566,12,83,177,0,29,22,26,41,39),
-(25566,13,91,198,0,30,22,26,44,43),
-(25566,14,120,234,0,31,22,28,50,47),
-(25566,15,129,262,0,32,23,29,54,52),
-(25566,16,138,290,0,34,23,30,57,56),
-(25566,17,147,318,0,36,23,31,61,60),
-(25566,18,156,346,0,37,23,32,65,65),
-(25566,19,165,374,0,38,23,33,70,69),
-(25566,20,175,402,0,40,24,35,74,74),
-(25566,21,184,430,0,42,24,37,87,78),
-(25566,22,193,458,0,44,24,39,91,82),
-(25566,23,202,486,0,45,24,40,95,86),
-(25566,24,212,514,0,46,25,42,94,90),
-(25566,25,224,539,0,47,25,43,94,95),
-(25566,26,237,568,0,48,25,43,98,100),
-(25566,27,249,598,0,50,25,42,102,104),
-(25566,28,262,632,0,51,25,44,109,110),
-(25566,29,274,667,0,52,26,44,114,114),
-(25566,30,287,702,0,54,26,45,120,118),
-(25566,31,299,734,0,55,26,46,124,123),
-(25566,32,312,772,0,57,26,47,128,128),
-(25566,33,324,807,0,58,27,48,132,131),
-(25566,34,338,842,0,60,27,50,136,135),
-(25566,35,360,898,0,62,27,51,139,136),
-(25566,36,382,954,0,65,27,52,142,137),
-(25566,37,404,1010,0,67,27,54,146,138),
-(25566,38,427,1066,0,70,28,55,149,139),
-(25566,39,449,1122,0,73,28,56,153,141),
-(25566,40,471,1178,0,75,28,58,156,142),
-(25566,41,493,1234,0,78,28,59,160,143),
-(25566,42,516,1290,0,80,29,60,163,144),
-(25566,43,538,1346,0,83,29,62,167,145),
-(25566,44,560,1402,0,86,29,63,170,147),
-(25566,45,582,1458,0,88,29,64,174,148),
-(25566,46,605,1514,0,91,30,66,177,149),
-(25566,47,627,1570,0,93,30,67,181,151),
-(25566,48,649,1627,0,96,30,68,184,152),
-(25566,49,672,1685,0,99,31,70,188,155),
-(25566,50,694,1704,0,101,31,71,194,160),
-(25566,51,716,1723,0,103,31,72,201,170),
-(25566,52,738,1743,0,105,32,74,208,180),
-(25566,53,761,1762,0,107,32,75,215,190),
-(25566,54,783,1781,0,109,32,77,222,200),
-(25566,55,805,1801,0,111,33,78,229,210),
-(25566,56,827,1820,0,113,33,80,236,220),
-(25566,57,850,1839,0,115,33,81,243,230),
-(25566,58,872,1859,0,117,34,83,250,240),
-(25566,59,894,1878,0,120,34,84,257,250),
-(25566,60,917,1898,0,122,35,86,264,260),
-(25566,61,939,1918,0,125,35,88,271,270),
-(25566,62,961,1937,0,128,36,89,278,280),
-(25566,63,983,1956,0,131,36,91,285,290),
-(25566,64,1005,1975,0,134,36,93,292,300),
-(25566,65,1027,1994,0,137,37,94,299,310),
-(25566,66,1049,2013,0,140,37,96,306,320),
-(25566,67,1072,2032,0,143,37,97,313,330),
-(25566,68,1094,2052,0,146,38,99,320,340),
-(25566,69,1126,2071,0,149,38,100,327,350),
-(25566,70,1149,2090,0,152,39,102,334,360),
-(25566,71,5654,4225,8300,155,112,325,135,124),
-(25566,72,5750,4377,8380,157,115,329,136,126),
-(25566,73,5945,4430,8440,159,118,332,137,129),
-(25566,74,6191,4584,8550,162,121,335,138,131),
-(25566,75,6349,4646,8612,164,123,338,139,134),
-(25566,76,6676,4778,8910,166,126,343,140,136),
-(25566,77,6884,4863,9150,169,129,347,141,138),
-(25566,78,7097,4949,9450,172,132,351,142,141),
-(25566,79,7208,5035,9800,174,135,355,143,143),
-(25566,80,7320,5170,10087,177,137,361,144,146);
-/*!40000 ALTER TABLE `pet_levelstats` ENABLE KEYS */;
-UNLOCK TABLES;
-
---
--- Table structure for table `pet_name_generation`
---
-
-DROP TABLE IF EXISTS `pet_name_generation`;
-/*!40101 SET @saved_cs_client = @@character_set_client */;
-/*!40101 SET character_set_client = utf8 */;
-CREATE TABLE `pet_name_generation` (
- `id` mediumint(8) unsigned NOT NULL AUTO_INCREMENT,
- `word` tinytext NOT NULL,
- `entry` mediumint(8) unsigned NOT NULL DEFAULT '0',
- `half` tinyint(4) NOT NULL DEFAULT '0',
- PRIMARY KEY (`id`)
-) ENGINE=MyISAM AUTO_INCREMENT=314 DEFAULT CHARSET=utf8;
-/*!40101 SET character_set_client = @saved_cs_client */;
-
---
--- Dumping data for table `pet_name_generation`
---
-
-LOCK TABLES `pet_name_generation` WRITE;
-/*!40000 ALTER TABLE `pet_name_generation` DISABLE KEYS */;
-INSERT INTO `pet_name_generation` VALUES
-(1,'Aba',416,0),
-(2,'Az',416,0),
-(3,'Bel',416,0),
-(4,'Biz',416,0),
-(5,'Cho',416,0),
-(6,'Dag',416,0),
-(7,'Gak',416,0),
-(8,'Gar',416,0),
-(9,'Gel',416,0),
-(10,'Gho',416,0),
-(11,'Gob',416,0),
-(12,'Gra',416,0),
-(13,'Jak',416,0),
-(14,'Jub',416,0),
-(15,'Kar',416,0),
-(16,'Kup',416,0),
-(17,'Laz',416,0),
-(18,'Nal',416,0),
-(19,'Nok',416,0),
-(20,'Pag',416,0),
-(21,'Pig',416,0),
-(22,'Pip',416,0),
-(23,'Piz',416,0),
-(24,'Quz',416,0),
-(25,'Rui',416,0),
-(26,'Rul',416,0),
-(27,'Rup',416,0),
-(28,'Tar',416,0),
-(29,'Vol',416,0),
-(30,'Yaz',416,0),
-(31,'Zep',416,0),
-(32,'Zig',416,0),
-(33,'Zil',416,0),
-(34,'Zor',416,0),
-(35,'bis',416,1),
-(36,'fip',416,1),
-(37,'gup',416,1),
-(38,'ham',416,1),
-(39,'jub',416,1),
-(40,'kin',416,1),
-(41,'kol',416,1),
-(42,'lop',416,1),
-(43,'loz',416,1),
-(44,'mat',416,1),
-(45,'mir',416,1),
-(46,'nam',416,1),
-(47,'nar',416,1),
-(48,'nik',416,1),
-(49,'nip',416,1),
-(50,'pad',416,1),
-(51,'pep',416,1),
-(52,'pit',416,1),
-(53,'qua',416,1),
-(54,'rai',416,1),
-(55,'rin',416,1),
-(56,'rot',416,1),
-(57,'tai',416,1),
-(58,'tal',416,1),
-(59,'tik',416,1),
-(60,'tip',416,1),
-(61,'tog',416,1),
-(62,'tuk',416,1),
-(63,'uri',416,1),
-(64,'yal',416,1),
-(65,'yap',416,1),
-(66,'Bhee',417,0),
-(67,'Bruu',417,0),
-(68,'Czaa',417,0),
-(69,'Droo',417,0),
-(70,'Flaa',417,0),
-(71,'Fzuu',417,0),
-(72,'Ghaa',417,0),
-(73,'Gree',417,0),
-(74,'Gzaa',417,0),
-(75,'Haa',417,0),
-(76,'Haad',417,0),
-(77,'Haag',417,0),
-(78,'Haap',417,0),
-(79,'Jhaa',417,0),
-(80,'Jhuu',417,0),
-(81,'Khaa',417,0),
-(82,'Khii',417,0),
-(83,'Khuu',417,0),
-(84,'Kree',417,0),
-(85,'Luu',417,0),
-(86,'Maa',417,0),
-(87,'Nhee',417,0),
-(88,'Phuu',417,0),
-(89,'Pryy',417,0),
-(90,'Rhuu',417,0),
-(91,'Shaa',417,0),
-(92,'Sloo',417,0),
-(93,'Sruu',417,0),
-(94,'Thoo',417,0),
-(95,'Traa',417,0),
-(96,'Wraa',417,0),
-(97,'Zhaa',417,0),
-(98,'dhon',417,1),
-(99,'dhum',417,1),
-(100,'dhun',417,1),
-(101,'dom',417,1),
-(102,'don',417,1),
-(103,'drom',417,1),
-(104,'dym',417,1),
-(105,'fenn',417,1),
-(106,'fum',417,1),
-(107,'fun',417,1),
-(108,'ghon',417,1),
-(109,'ghun',417,1),
-(110,'grom',417,1),
-(111,'grym',417,1),
-(112,'hom',417,1),
-(113,'hon',417,1),
-(114,'hun',417,1),
-(115,'jhom',417,1),
-(116,'kun',417,1),
-(117,'lum',417,1),
-(118,'mmon',417,1),
-(119,'mon',417,1),
-(120,'myn',417,1),
-(121,'nam',417,1),
-(122,'nem',417,1),
-(123,'nhym',417,1),
-(124,'nom',417,1),
-(125,'num',417,1),
-(126,'phom',417,1),
-(127,'roon',417,1),
-(128,'rym',417,1),
-(129,'shon',417,1),
-(130,'thun',417,1),
-(131,'tom',417,1),
-(132,'zhem',417,1),
-(133,'zhum',417,1),
-(134,'zun',417,1),
-(135,'Bar',1860,0),
-(136,'Bel',1860,0),
-(137,'Char',1860,0),
-(138,'Grak''',1860,0),
-(139,'Graz''',1860,0),
-(140,'Grim',1860,0),
-(141,'Hath',1860,0),
-(142,'Hel',1860,0),
-(143,'Hok',1860,0),
-(144,'Huk',1860,0),
-(145,'Jhaz',1860,0),
-(146,'Jhom',1860,0),
-(147,'Juk''',1860,0),
-(148,'Kal''',1860,0),
-(149,'Klath',1860,0),
-(150,'Kon',1860,0),
-(151,'Krag',1860,0),
-(152,'Krak',1860,0),
-(153,'Mak',1860,0),
-(154,'Mezz',1860,0),
-(155,'Orm',1860,0),
-(156,'Phan',1860,0),
-(157,'Sar',1860,0),
-(158,'Tang',1860,0),
-(159,'Than',1860,0),
-(160,'Thog',1860,0),
-(161,'Thok',1860,0),
-(162,'Thul',1860,0),
-(163,'Zag''',1860,0),
-(164,'Zang',1860,0),
-(165,'Zhar''',1860,0),
-(166,'kath',1860,1),
-(167,'doc',1860,1),
-(168,'dok',1860,1),
-(169,'gak',1860,1),
-(170,'garth',1860,1),
-(171,'gore',1860,1),
-(172,'gorg',1860,1),
-(173,'grave',1860,1),
-(174,'gron',1860,1),
-(175,'juk',1860,1),
-(176,'krast',1860,1),
-(177,'kresh',1860,1),
-(178,'krit',1860,1),
-(179,'los',1860,1),
-(180,'mon',1860,1),
-(181,'mos',1860,1),
-(182,'moth',1860,1),
-(183,'nagma',1860,1),
-(184,'nak',1860,1),
-(185,'nar',1860,1),
-(186,'nos',1860,1),
-(187,'nuz',1860,1),
-(188,'phog',1860,1),
-(189,'rath',1860,1),
-(190,'tast',1860,1),
-(191,'taz',1860,1),
-(192,'thak',1860,1),
-(193,'thang',1860,1),
-(194,'thyk',1860,1),
-(195,'vhug',1860,1),
-(196,'zazt',1860,1),
-(197,'Ael',1863,0),
-(198,'Aez',1863,0),
-(199,'Ang',1863,0),
-(200,'Ban',1863,0),
-(201,'Bet',1863,0),
-(202,'Bro',1863,0),
-(203,'Bry',1863,0),
-(204,'Cat',1863,0),
-(205,'Dir',1863,0),
-(206,'Dis',1863,0),
-(207,'Dom',1863,0),
-(208,'Drus',1863,0),
-(209,'Fie',1863,0),
-(210,'Fier',1863,0),
-(211,'Gly',1863,0),
-(212,'Hel',1863,0),
-(213,'Hes',1863,0),
-(214,'Kal',1863,0),
-(215,'Lyn',1863,0),
-(216,'Mir',1863,0),
-(217,'Nim',1863,0),
-(218,'Sar',1863,0),
-(219,'Sel',1863,0),
-(220,'Vil',1863,0),
-(221,'Zah',1863,0),
-(222,'aith',1863,1),
-(223,'anda',1863,1),
-(224,'antia',1863,1),
-(225,'evere',1863,1),
-(226,'lia',1863,1),
-(227,'lissa',1863,1),
-(228,'neri',1863,1),
-(229,'neth',1863,1),
-(230,'nia',1863,1),
-(231,'nlissa',1863,1),
-(232,'nora',1863,1),
-(233,'nva',1863,1),
-(234,'nys',1863,1),
-(235,'ola',1863,1),
-(236,'ona',1863,1),
-(237,'ora',1863,1),
-(238,'rah',1863,1),
-(239,'riana',1863,1),
-(240,'riel',1863,1),
-(241,'rona',1863,1),
-(242,'tai',1863,1),
-(243,'tevere',1863,1),
-(244,'thea',1863,1),
-(245,'vina',1863,1),
-(246,'wena',1863,1),
-(247,'wyn',1863,1),
-(248,'xia',1863,1),
-(249,'yla',1863,1),
-(250,'yssa',1863,1),
-(251,'Flaa',17252,0),
-(252,'Haa',17252,0),
-(253,'Jhuu',17252,0),
-(254,'Shaa',17252,0),
-(255,'Thoo',17252,0),
-(256,'dhun',17252,1),
-(257,'ghun',17252,1),
-(258,'roon',17252,1),
-(259,'thun',17252,1),
-(260,'tom',17252,1),
-(261,'Stone',26125,0),
-(262,'Stone',26125,0),
-(263,'Eye',26125,0),
-(264,'Dirt',26125,0),
-(265,'Blight',26125,0),
-(266,'Bat',26125,0),
-(267,'Rat',26125,0),
-(268,'Corpse',26125,0),
-(269,'Grave',26125,0),
-(270,'Carrion',26125,0),
-(271,'Skull',26125,0),
-(272,'Bone',26125,0),
-(273,'Crypt',26125,0),
-(274,'Rib',26125,0),
-(275,'Brain',26125,0),
-(276,'Tomb',26125,0),
-(277,'Rot',26125,0),
-(278,'Gravel',26125,0),
-(279,'Plague',26125,0),
-(280,'Casket',26125,0),
-(281,'Limb',26125,0),
-(282,'Worm',26125,0),
-(283,'Earth',26125,0),
-(284,'Spine',26125,0),
-(285,'Pebble',26125,0),
-(286,'Root',26125,0),
-(287,'Marrow',26125,0),
-(288,'Hammer',26125,0),
-(289,'ravager',26125,1),
-(290,'muncher',26125,1),
-(291,'cruncher',26125,1),
-(292,'masher',26125,1),
-(293,'leaper',26125,1),
-(294,'grinder',26125,1),
-(295,'stalker',26125,1),
-(296,'gobbler',26125,1),
-(297,'feeder',26125,1),
-(298,'basher',26125,1),
-(299,'chewer',26125,1),
-(300,'ripper',26125,1),
-(301,'slicer',26125,1),
-(302,'gnaw',26125,1),
-(303,'flayer',26125,1),
-(304,'rumbler',26125,1),
-(305,'chomp',26125,1),
-(306,'breaker',26125,1),
-(307,'keeper',26125,1),
-(308,'rawler',26125,1),
-(309,'stealer',26125,1),
-(310,'thief',26125,1),
-(311,'catcher',26125,1),
-(312,'drinker',26125,1),
-(313,'slicer',26125,1);
-/*!40000 ALTER TABLE `pet_name_generation` ENABLE KEYS */;
-UNLOCK TABLES;
-
---
--- Table structure for table `pickpocketing_loot_template`
---
-
-DROP TABLE IF EXISTS `pickpocketing_loot_template`;
-/*!40101 SET @saved_cs_client = @@character_set_client */;
-/*!40101 SET character_set_client = utf8 */;
-CREATE TABLE `pickpocketing_loot_template` (
- `entry` mediumint(8) unsigned NOT NULL DEFAULT '0',
- `item` mediumint(8) unsigned NOT NULL DEFAULT '0',
- `ChanceOrQuestChance` float NOT NULL DEFAULT '100',
- `lootmode` smallint(5) unsigned NOT NULL DEFAULT '1',
- `groupid` tinyint(3) unsigned NOT NULL DEFAULT '0',
- `mincountOrRef` mediumint(9) NOT NULL DEFAULT '1',
- `maxcount` tinyint(3) unsigned NOT NULL DEFAULT '1',
- `lootcondition` tinyint(3) unsigned NOT NULL DEFAULT '0',
- `condition_value1` mediumint(8) unsigned NOT NULL DEFAULT '0',
- `condition_value2` mediumint(8) unsigned NOT NULL DEFAULT '0',
- PRIMARY KEY (`entry`,`item`)
-) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Loot System';
-/*!40101 SET character_set_client = @saved_cs_client */;
-
---
--- Dumping data for table `pickpocketing_loot_template`
---
-
-LOCK TABLES `pickpocketing_loot_template` WRITE;
-/*!40000 ALTER TABLE `pickpocketing_loot_template` DISABLE KEYS */;
-/*!40000 ALTER TABLE `pickpocketing_loot_template` ENABLE KEYS */;
-UNLOCK TABLES;
-
---
--- Table structure for table `player_classlevelstats`
---
-
-DROP TABLE IF EXISTS `player_classlevelstats`;
-/*!40101 SET @saved_cs_client = @@character_set_client */;
-/*!40101 SET character_set_client = utf8 */;
-CREATE TABLE `player_classlevelstats` (
- `class` tinyint(3) unsigned NOT NULL,
- `level` tinyint(3) unsigned NOT NULL,
- `basehp` smallint(5) unsigned NOT NULL,
- `basemana` smallint(5) unsigned NOT NULL,
- PRIMARY KEY (`class`,`level`)
-) ENGINE=MyISAM DEFAULT CHARSET=utf8 PACK_KEYS=0 COMMENT='Stores levels stats.';
-/*!40101 SET character_set_client = @saved_cs_client */;
-
---
--- Dumping data for table `player_classlevelstats`
---
-
-LOCK TABLES `player_classlevelstats` WRITE;
-/*!40000 ALTER TABLE `player_classlevelstats` DISABLE KEYS */;
-INSERT INTO `player_classlevelstats` VALUES
-(1,1,20,0),
-(1,2,29,0),
-(1,3,38,0),
-(1,4,47,0),
-(1,5,56,0),
-(1,6,65,0),
-(1,7,74,0),
-(1,8,83,0),
-(1,9,92,0),
-(1,10,101,0),
-(1,11,100,0),
-(1,12,109,0),
-(1,13,118,0),
-(1,14,128,0),
-(1,15,139,0),
-(1,16,151,0),
-(1,17,154,0),
-(1,18,168,0),
-(1,19,183,0),
-(1,20,199,0),
-(1,21,206,0),
-(1,22,224,0),
-(1,23,243,0),
-(1,24,253,0),
-(1,25,274,0),
-(1,26,296,0),
-(1,27,309,0),
-(1,28,333,0),
-(1,29,348,0),
-(1,30,374,0),
-(1,31,401,0),
-(1,32,419,0),
-(1,33,448,0),
-(1,34,468,0),
-(1,35,499,0),
-(1,36,521,0),
-(1,37,545,0),
-(1,38,581,0),
-(1,39,609,0),
-(1,40,649,0),
-(1,41,681,0),
-(1,42,715,0),
-(1,43,761,0),
-(1,44,799,0),
-(1,45,839,0),
-(1,46,881,0),
-(1,47,935,0),
-(1,48,981,0),
-(1,49,1029,0),
-(1,50,1079,0),
-(1,51,1131,0),
-(1,52,1185,0),
-(1,53,1241,0),
-(1,54,1299,0),
-(1,55,1359,0),
-(1,56,1421,0),
-(1,57,1485,0),
-(1,58,1551,0),
-(1,59,1619,0),
-(1,60,1689,0),
-(1,61,1902,0),
-(1,62,2129,0),
-(1,63,2357,0),
-(1,64,2612,0),
-(1,65,2883,0),
-(1,66,3169,0),
-(1,67,3455,0),
-(1,68,3774,0),
-(1,69,4109,0),
-(1,70,4444,0),
-(2,1,28,60),
-(2,2,36,78),
-(2,3,44,98),
-(2,4,52,104),
-(2,5,60,111),
-(2,6,68,134),
-(2,7,76,143),
-(2,8,84,153),
-(2,9,92,179),
-(2,10,100,192),
-(2,11,108,205),
-(2,12,116,219),
-(2,13,124,249),
-(2,14,132,265),
-(2,15,131,282),
-(2,16,141,315),
-(2,17,152,334),
-(2,18,164,354),
-(2,19,177,390),
-(2,20,191,412),
-(2,21,206,435),
-(2,22,222,459),
-(2,23,239,499),
-(2,24,247,525),
-(2,25,266,552),
-(2,26,286,579),
-(2,27,307,621),
-(2,28,329,648),
-(2,29,342,675),
-(2,30,366,702),
-(2,31,391,729),
-(2,32,407,756),
-(2,33,434,798),
-(2,34,462,825),
-(2,35,481,852),
-(2,36,511,879),
-(2,37,542,906),
-(2,38,564,933),
-(2,39,597,960),
-(2,40,621,987),
-(2,41,656,1014),
-(2,42,682,1041),
-(2,43,719,1068),
-(2,44,747,1110),
-(2,45,786,1137),
-(2,46,816,1164),
-(2,47,857,1176),
-(2,48,889,1203),
-(2,49,922,1230),
-(2,50,966,1257),
-(2,51,1001,1284),
-(2,52,1037,1311),
-(2,53,1084,1338),
-(2,54,1122,1365),
-(2,55,1161,1392),
-(2,56,1201,1419),
-(2,57,1252,1446),
-(2,58,1294,1458),
-(2,59,1337,1485),
-(2,60,1381,1512),
-(2,61,1540,1656),
-(2,62,1708,1800),
-(2,63,1884,1944),
-(2,64,2068,2088),
-(2,65,2262,2232),
-(2,66,2466,2377),
-(2,67,2679,2521),
-(2,68,2901,2665),
-(2,69,3134,2809),
-(2,70,3377,2953),
-(3,1,46,65),
-(3,2,53,70),
-(3,3,60,76),
-(3,4,67,98),
-(3,5,74,106),
-(3,6,81,130),
-(3,7,88,140),
-(3,8,95,166),
-(3,9,102,193),
-(3,10,109,206),
-(3,11,116,235),
-(3,12,123,250),
-(3,13,130,266),
-(3,14,138,298),
-(3,15,147,316),
-(3,16,157,350),
-(3,17,168,370),
-(3,18,180,391),
-(3,19,193,428),
-(3,20,207,451),
-(3,21,222,475),
-(3,22,238,515),
-(3,23,255,541),
-(3,24,273,568),
-(3,25,292,611),
-(3,26,312,640),
-(3,27,333,670),
-(3,28,355,715),
-(3,29,378,745),
-(3,30,402,775),
-(3,31,417,805),
-(3,32,443,850),
-(3,33,470,880),
-(3,34,498,910),
-(3,35,527,940),
-(3,36,547,970),
-(3,37,578,1015),
-(3,38,610,1045),
-(3,39,643,1075),
-(3,40,667,1105),
-(3,41,702,1135),
-(3,42,738,1180),
-(3,43,775,1210),
-(3,44,803,1240),
-(3,45,842,1270),
-(3,46,872,1300),
-(3,47,913,1330),
-(3,48,955,1360),
-(3,49,994,1390),
-(3,50,1047,1420),
-(3,51,1067,1450),
-(3,52,1113,1480),
-(3,53,1150,1510),
-(3,54,1198,1540),
-(3,55,1237,1570),
-(3,56,1287,1600),
-(3,57,1328,1630),
-(3,58,1370,1660),
-(3,59,1423,1690),
-(3,60,1467,1720),
-(3,61,1633,1886),
-(3,62,1819,2053),
-(3,63,2003,2219),
-(3,64,2195,2385),
-(3,65,2397,2552),
-(3,66,2623,2718),
-(3,67,2844,2884),
-(3,68,3075,3050),
-(3,69,3316,3217),
-(3,70,3568,3383),
-(4,1,25,0),
-(4,2,32,0),
-(4,3,49,0),
-(4,4,56,0),
-(4,5,63,0),
-(4,6,70,0),
-(4,7,87,0),
-(4,8,94,0),
-(4,9,101,0),
-(4,10,118,0),
-(4,11,125,0),
-(4,12,142,0),
-(4,13,149,0),
-(4,14,156,0),
-(4,15,173,0),
-(4,16,181,0),
-(4,17,190,0),
-(4,18,200,0),
-(4,19,221,0),
-(4,20,233,0),
-(4,21,246,0),
-(4,22,260,0),
-(4,23,275,0),
-(4,24,301,0),
-(4,25,318,0),
-(4,26,336,0),
-(4,27,355,0),
-(4,28,375,0),
-(4,29,396,0),
-(4,30,428,0),
-(4,31,451,0),
-(4,32,475,0),
-(4,33,500,0),
-(4,34,526,0),
-(4,35,553,0),
-(4,36,581,0),
-(4,37,610,0),
-(4,38,640,0),
-(4,39,671,0),
-(4,40,703,0),
-(4,41,736,0),
-(4,42,770,0),
-(4,43,805,0),
-(4,44,841,0),
-(4,45,878,0),
-(4,46,916,0),
-(4,47,955,0),
-(4,48,995,0),
-(4,49,1026,0),
-(4,50,1068,0),
-(4,51,1111,0),
-(4,52,1155,0),
-(4,53,1200,0),
-(4,54,1246,0),
-(4,55,1283,0),
-(4,56,1331,0),
-(4,57,1380,0),
-(4,58,1430,0),
-(4,59,1471,0),
-(4,60,1523,0),
-(4,61,1702,0),
-(4,62,1879,0),
-(4,63,2077,0),
-(4,64,2285,0),
-(4,65,2489,0),
-(4,66,2717,0),
-(4,67,2941,0),
-(4,68,3190,0),
-(4,69,3450,0),
-(4,70,3704,0),
-(5,1,52,73),
-(5,2,57,76),
-(5,3,72,95),
-(5,4,77,114),
-(5,5,92,133),
-(5,6,97,152),
-(5,7,112,171),
-(5,8,117,190),
-(5,9,132,209),
-(5,10,137,212),
-(5,11,142,215),
-(5,12,157,234),
-(5,13,172,254),
-(5,14,177,260),
-(5,15,192,282),
-(5,16,197,305),
-(5,17,212,329),
-(5,18,227,339),
-(5,19,232,365),
-(5,20,247,377),
-(5,21,252,405),
-(5,22,268,434),
-(5,23,275,449),
-(5,24,293,480),
-(5,25,302,497),
-(5,26,322,530),
-(5,27,343,549),
-(5,28,355,584),
-(5,29,378,605),
-(5,30,392,627),
-(5,31,417,665),
-(5,32,433,689),
-(5,33,460,728),
-(5,34,478,752),
-(5,35,507,776),
-(5,36,527,800),
-(5,37,548,839),
-(5,38,580,863),
-(5,39,603,887),
-(5,40,637,911),
-(5,41,662,950),
-(5,42,698,974),
-(5,43,725,998),
-(5,44,763,1022),
-(5,45,792,1046),
-(5,46,822,1070),
-(5,47,863,1094),
-(5,48,895,1118),
-(5,49,928,1142),
-(5,50,972,1166),
-(5,51,1007,1190),
-(5,52,1053,1214),
-(5,53,1090,1238),
-(5,54,1128,1262),
-(5,55,1177,1271),
-(5,56,1217,1295),
-(5,57,1258,1319),
-(5,58,1300,1343),
-(5,59,1353,1352),
-(5,60,1397,1376),
-(5,61,1557,1500),
-(5,62,1738,1625),
-(5,63,1916,1749),
-(5,64,2101,1873),
-(5,65,2295,1998),
-(5,66,2495,2122),
-(5,67,2719,2247),
-(5,68,2936,2371),
-(5,69,3160,2495),
-(5,70,3391,2620),
-(7,80,6939,4396),
-(7,79,6457,4252),
-(7,78,6009,4108),
-(7,77,5592,3965),
-(7,76,5203,3821),
-(7,75,4843,3677),
-(7,74,4507,3533),
-(7,73,4194,3389),
-(7,72,3903,3246),
-(7,71,3633,3102),
-(7,70,3380,2958),
-(7,69,3136,2814),
-(7,68,2903,2670),
-(7,67,2679,2527),
-(7,66,2465,2383),
-(7,65,2262,2239),
-(7,64,2067,2095),
-(7,63,1883,1951),
-(7,62,1694,1808),
-(7,61,1528,1664),
-(7,60,1423,1520),
-(7,59,1326,1501),
-(7,58,1283,1467),
-(7,57,1231,1448),
-(7,56,1190,1414),
-(7,55,1150,1395),
-(7,54,1101,1376),
-(7,53,1064,1342),
-(7,52,1027,1323),
-(7,51,981,1289),
-(7,50,947,1255),
-(7,49,903,1236),
-(7,48,871,1202),
-(7,47,829,1183),
-(7,46,799,1149),
-(7,45,760,1115),
-(7,44,732,1096),
-(7,43,694,1062),
-(7,42,669,1028),
-(7,41,633,1009),
-(7,40,610,975),
-(7,39,577,941),
-(7,38,545,922),
-(7,37,524,888),
-(7,36,494,854),
-(7,35,465,820),
-(7,34,448,786),
-(7,33,422,767),
-(7,32,396,733),
-(7,31,371,699),
-(7,30,358,665),
-(7,29,336,631),
-(7,28,315,598),
-(7,27,294,566),
-(7,26,275,535),
-(7,25,257,505),
-(7,24,250,476),
-(7,23,234,448),
-(7,22,219,421),
-(7,21,205,395),
-(7,20,193,370),
-(7,19,181,346),
-(7,18,170,323),
-(7,17,161,301),
-(7,16,152,280),
-(7,15,144,260),
-(7,14,137,241),
-(7,13,129,223),
-(7,12,122,206),
-(7,11,114,190),
-(8,1,32,100),
-(8,2,47,110),
-(8,3,52,106),
-(8,4,67,118),
-(8,5,82,131),
-(8,6,97,130),
-(8,7,102,145),
-(8,8,117,146),
-(8,9,132,163),
-(8,10,137,196),
-(8,11,152,215),
-(8,12,167,220),
-(8,13,172,241),
-(8,14,187,263),
-(8,15,202,271),
-(8,16,207,295),
-(8,17,222,305),
-(8,18,237,331),
-(8,19,242,343),
-(8,20,257,371),
-(8,21,272,385),
-(8,22,277,415),
-(8,23,292,431),
-(8,24,298,463),
-(8,25,315,481),
-(8,26,333,515),
-(8,27,342,535),
-(8,28,362,556),
-(8,29,373,592),
-(8,30,395,613),
-(8,31,418,634),
-(8,32,432,670),
-(8,33,457,691),
-(8,34,473,712),
-(8,35,500,733),
-(8,36,518,754),
-(8,37,547,790),
-(8,38,577,811),
-(8,39,598,832),
-(8,40,630,853),
-(8,41,653,874),
-(8,42,687,895),
-(8,43,712,916),
-(8,44,748,937),
-(8,45,775,958),
-(8,46,813,979),
-(8,47,842,1000),
-(8,48,882,1021),
-(8,49,913,1042),
-(8,50,955,1048),
-(8,51,988,1069),
-(8,52,1032,1090),
-(8,53,1067,1111),
-(8,54,1103,1117),
-(8,55,1150,1138),
-(8,56,1188,1159),
-(8,57,1237,1165),
-(8,58,1277,1186),
-(8,59,1328,1192),
-(8,60,1370,1213),
-(8,61,1526,1316),
-(8,62,1702,1419),
-(8,63,1875,1521),
-(8,64,2070,1624),
-(8,65,2261,1727),
-(8,66,2461,1830),
-(8,67,2686,1932),
-(8,68,2906,2035),
-(8,69,3136,2138),
-(8,70,3393,2241),
-(9,1,23,90),
-(9,2,28,98),
-(9,3,43,107),
-(9,4,48,102),
-(9,5,63,113),
-(9,6,68,126),
-(9,7,83,144),
-(9,8,88,162),
-(9,9,93,180),
-(9,10,108,198),
-(9,11,123,200),
-(9,12,128,218),
-(9,13,143,237),
-(9,14,148,257),
-(9,15,153,278),
-(9,16,168,300),
-(9,17,173,308),
-(9,18,189,332),
-(9,19,196,357),
-(9,20,204,383),
-(9,21,223,395),
-(9,22,233,423),
-(9,23,244,452),
-(9,24,266,467),
-(9,25,279,498),
-(9,26,293,530),
-(9,27,318,548),
-(9,28,334,582),
-(9,29,351,602),
-(9,30,379,638),
-(9,31,398,674),
-(9,32,418,695),
-(9,33,439,731),
-(9,34,471,752),
-(9,35,494,788),
-(9,36,518,809),
-(9,37,543,830),
-(9,38,569,866),
-(9,39,606,887),
-(9,40,634,923),
-(9,41,663,944),
-(9,42,693,965),
-(9,43,724,1001),
-(9,44,756,1022),
-(9,45,799,1043),
-(9,46,832,1064),
-(9,47,868,1100),
-(9,48,904,1121),
-(9,49,941,1142),
-(9,50,979,1163),
-(9,51,1018,1184),
-(9,52,1058,1205),
-(9,53,1099,1226),
-(9,54,1141,1247),
-(9,55,1184,1268),
-(9,56,1228,1289),
-(9,57,1273,1310),
-(9,58,1319,1331),
-(9,59,1366,1352),
-(9,60,1414,1373),
-(9,61,1580,1497),
-(9,62,1755,1621),
-(9,63,1939,1745),
-(9,64,2133,1870),
-(9,65,2323,1994),
-(9,66,2535,2118),
-(9,67,2758,2242),
-(9,68,2991,2366),
-(9,69,3235,2490),
-(9,70,3490,2615),
-(11,1,44,60),
-(11,2,51,66),
-(11,3,58,73),
-(11,4,75,81),
-(11,5,82,90),
-(11,6,89,100),
-(11,7,106,111),
-(11,8,113,123),
-(11,9,120,136),
-(11,10,137,150),
-(11,11,144,165),
-(11,12,151,182),
-(11,13,168,200),
-(11,14,175,219),
-(11,15,182,239),
-(11,16,199,260),
-(11,17,206,282),
-(11,18,214,305),
-(11,19,233,329),
-(11,20,243,354),
-(11,21,254,380),
-(11,22,266,392),
-(11,23,289,420),
-(11,24,303,449),
-(11,25,318,479),
-(11,26,334,509),
-(11,27,361,524),
-(11,28,379,554),
-(11,29,398,584),
-(11,30,418,614),
-(11,31,439,629),
-(11,32,461,659),
-(11,33,494,689),
-(11,34,518,704),
-(11,35,543,734),
-(11,36,569,749),
-(11,37,596,779),
-(11,38,624,809),
-(11,39,653,824),
-(11,40,683,854),
-(11,41,714,869),
-(11,42,746,899),
-(11,43,779,914),
-(11,44,823,944),
-(11,45,858,959),
-(11,46,894,989),
-(11,47,921,1004),
-(11,48,959,1019),
-(11,49,998,1049),
-(11,50,1038,1064),
-(11,51,1079,1079),
-(11,52,1121,1109),
-(11,53,1164,1124),
-(11,54,1208,1139),
-(11,55,1253,1154),
-(11,56,1299,1169),
-(11,57,1346,1199),
-(11,58,1384,1214),
-(11,59,1433,1229),
-(11,60,1483,1244),
-(11,61,1657,1357),
-(11,62,1840,1469),
-(11,63,2020,1582),
-(11,64,2222,1694),
-(11,65,2433,1807),
-(11,66,2640,1919),
-(11,67,2872,2032),
-(11,68,3114,2145),
-(11,69,3351,2257),
-(11,70,3614,2370),
-(1,71,4720,0),
-(1,72,5013,0),
-(1,73,5325,0),
-(1,74,5656,0),
-(1,75,6008,0),
-(1,76,6381,0),
-(1,77,6778,0),
-(1,78,7198,0),
-(1,79,7646,0),
-(1,80,8121,0),
-(2,71,3629,3097),
-(2,72,3900,3241),
-(2,73,4191,3385),
-(2,74,4503,3529),
-(2,75,4839,3673),
-(2,76,5200,3817),
-(2,77,5588,3962),
-(2,78,6005,4106),
-(2,79,6453,4250),
-(2,80,6934,4394),
-(3,71,3834,3549),
-(3,72,4120,3716),
-(3,73,4427,3882),
-(3,74,4757,4048),
-(3,75,5112,4215),
-(3,76,5493,4381),
-(3,77,5903,4547),
-(3,78,6343,4713),
-(3,79,6816,4880),
-(3,80,7324,5046),
-(4,71,3980,0),
-(4,72,4277,0),
-(4,73,4596,0),
-(4,74,4939,0),
-(4,75,5307,0),
-(4,76,5703,0),
-(4,77,6128,0),
-(4,78,6585,0),
-(4,79,7076,0),
-(4,80,7604,0),
-(5,71,3644,2744),
-(5,72,3916,2868),
-(5,73,4208,2993),
-(5,74,4522,3117),
-(5,75,4859,3242),
-(5,76,5221,3366),
-(5,77,5610,3490),
-(5,78,6028,3615),
-(5,79,6477,3739),
-(5,80,6960,3863),
-(6,1,22,0),
-(6,2,27,0),
-(6,3,32,0),
-(6,4,37,0),
-(6,5,42,0),
-(6,6,47,0),
-(6,7,52,0),
-(6,8,58,0),
-(6,9,64,0),
-(6,10,70,0),
-(6,11,77,0),
-(6,12,84,0),
-(6,13,92,0),
-(6,14,100,0),
-(6,15,117,0),
-(6,16,127,0),
-(6,17,138,0),
-(6,18,150,0),
-(6,19,163,0),
-(6,20,177,0),
-(6,21,192,0),
-(6,22,208,0),
-(6,23,225,0),
-(6,24,239,0),
-(6,25,258,0),
-(6,26,278,0),
-(6,27,299,0),
-(6,28,321,0),
-(6,29,344,0),
-(6,30,368,0),
-(6,31,393,0),
-(6,32,419,0),
-(6,33,446,0),
-(6,34,474,0),
-(6,35,503,0),
-(6,36,533,0),
-(6,37,564,0),
-(6,38,596,0),
-(6,39,629,0),
-(6,40,698,0),
-(6,41,698,0),
-(6,42,734,0),
-(6,43,771,0),
-(6,44,809,0),
-(6,45,849,0),
-(6,46,891,0),
-(6,47,935,0),
-(6,48,981,0),
-(6,49,1029,0),
-(6,50,1079,0),
-(6,51,1131,0),
-(6,52,1185,0),
-(6,53,1241,0),
-(6,54,1299,0),
-(6,55,1359,0),
-(6,56,1421,0),
-(6,57,1485,0),
-(6,58,1551,0),
-(6,59,1619,0),
-(6,60,1689,0),
-(6,61,1902,0),
-(6,62,2129,0),
-(6,63,2357,0),
-(6,64,2612,0),
-(6,65,2883,0),
-(6,66,3169,0),
-(6,67,3455,0),
-(6,68,3774,0),
-(6,69,4109,0),
-(6,70,4444,0),
-(6,71,4720,0),
-(6,72,5013,0),
-(6,73,5325,0),
-(6,74,5656,0),
-(6,75,6008,0),
-(6,76,6381,0),
-(6,77,6778,0),
-(6,78,7199,0),
-(6,79,7646,0),
-(6,80,8121,0),
-(7,10,107,175),
-(7,9,100,161),
-(7,8,92,148),
-(7,7,85,136),
-(7,6,77,125),
-(7,5,70,115),
-(7,4,62,106),
-(7,3,55,98),
-(7,2,47,91),
-(7,1,40,85),
-(8,71,3646,2343),
-(8,72,3918,2446),
-(8,73,4210,2549),
-(8,74,4524,2652),
-(8,75,4861,2754),
-(8,76,5223,2857),
-(8,77,5612,2960),
-(8,78,6030,3063),
-(8,79,6480,3165),
-(8,80,6963,3268),
-(9,71,3750,2739),
-(9,72,4025,2863),
-(9,73,4330,2987),
-(9,74,4646,3111),
-(9,75,4997,3235),
-(9,76,5373,3360),
-(9,77,5774,3483),
-(9,78,6207,3608),
-(9,79,6667,3732),
-(9,80,7136,3856),
-(11,71,3883,2482),
-(11,72,4172,2595),
-(11,73,4483,2708),
-(11,74,4817,2820),
-(11,75,5176,2933),
-(11,76,5562,3045),
-(11,77,5977,3158),
-(11,78,6423,3270),
-(11,79,6902,3383),
-(11,80,7417,3496);
-/*!40000 ALTER TABLE `player_classlevelstats` ENABLE KEYS */;
-UNLOCK TABLES;
-
---
--- Table structure for table `player_factionchange_achievement`
---
-
-DROP TABLE IF EXISTS `player_factionchange_achievement`;
-/*!40101 SET @saved_cs_client = @@character_set_client */;
-/*!40101 SET character_set_client = utf8 */;
-CREATE TABLE `player_factionchange_achievement` (
- `alliance_id` int(8) NOT NULL,
- `horde_id` int(8) NOT NULL,
- PRIMARY KEY (`alliance_id`,`horde_id`)
-) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-/*!40101 SET character_set_client = @saved_cs_client */;
-
---
--- Dumping data for table `player_factionchange_achievement`
---
-
-LOCK TABLES `player_factionchange_achievement` WRITE;
-/*!40000 ALTER TABLE `player_factionchange_achievement` DISABLE KEYS */;
-/*!40000 ALTER TABLE `player_factionchange_achievement` ENABLE KEYS */;
-UNLOCK TABLES;
-
---
--- Table structure for table `player_factionchange_items`
---
-
-DROP TABLE IF EXISTS `player_factionchange_items`;
-/*!40101 SET @saved_cs_client = @@character_set_client */;
-/*!40101 SET character_set_client = utf8 */;
-CREATE TABLE `player_factionchange_items` (
- `race_A` int(8) NOT NULL,
- `alliance_id` int(8) NOT NULL,
- `commentA` text,
- `race_H` int(8) NOT NULL,
- `horde_id` int(8) NOT NULL,
- `commentH` text,
-PRIMARY KEY (`alliance_id`,`horde_id`)
-) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-/*!40101 SET character_set_client = @saved_cs_client */;
-
---
--- Dumping data for table `player_factionchange_items`
---
-
-LOCK TABLES `player_factionchange_items` WRITE;
-/*!40000 ALTER TABLE `player_factionchange_items` DISABLE KEYS */;
-/*!40000 ALTER TABLE `player_factionchange_items` ENABLE KEYS */;
-UNLOCK TABLES;
-
---
--- Table structure for table `player_factionchange_reputations`
---
-
-DROP TABLE IF EXISTS `player_factionchange_reputations`;
-/*!40101 SET @saved_cs_client = @@character_set_client */;
-/*!40101 SET character_set_client = utf8 */;
-CREATE TABLE `player_factionchange_reputations` (
- `alliance_id` int(8) NOT NULL,
- `horde_id` int(8) NOT NULL,
- PRIMARY KEY (`alliance_id`,`horde_id`)
-) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-/*!40101 SET character_set_client = @saved_cs_client */;
-
---
--- Dumping data for table `player_factionchange_reputations`
---
-
-LOCK TABLES `player_factionchange_reputations` WRITE;
-/*!40000 ALTER TABLE `player_factionchange_reputations` DISABLE KEYS */;
-/*!40000 ALTER TABLE `player_factionchange_reputations` ENABLE KEYS */;
-UNLOCK TABLES;
-
---
--- Table structure for table `player_factionchange_spells`
---
-
-DROP TABLE IF EXISTS `player_factionchange_spells`;
-/*!40101 SET @saved_cs_client = @@character_set_client */;
-/*!40101 SET character_set_client = utf8 */;
-CREATE TABLE `player_factionchange_spells` (
- `alliance_id` int(8) NOT NULL,
- `horde_id` int(8) NOT NULL,
- PRIMARY KEY (`alliance_id`,`horde_id`)
-) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-/*!40101 SET character_set_client = @saved_cs_client */;
-
---
--- Dumping data for table `player_factionchange_spells`
---
-
-LOCK TABLES `player_factionchange_spells` WRITE;
-/*!40000 ALTER TABLE `player_factionchange_spells` DISABLE KEYS */;
-/*!40000 ALTER TABLE `player_factionchange_spells` ENABLE KEYS */;
-UNLOCK TABLES;
-
---
--- Table structure for table `player_levelstats`
---
-
-DROP TABLE IF EXISTS `player_levelstats`;
-/*!40101 SET @saved_cs_client = @@character_set_client */;
-/*!40101 SET character_set_client = utf8 */;
-CREATE TABLE `player_levelstats` (
- `race` tinyint(3) unsigned NOT NULL,
- `class` tinyint(3) unsigned NOT NULL,
- `level` tinyint(3) unsigned NOT NULL,
- `str` tinyint(3) unsigned NOT NULL,
- `agi` tinyint(3) unsigned NOT NULL,
- `sta` tinyint(3) unsigned NOT NULL,
- `inte` tinyint(3) unsigned NOT NULL,
- `spi` tinyint(3) unsigned NOT NULL,
- PRIMARY KEY (`race`,`class`,`level`)
-) ENGINE=MyISAM DEFAULT CHARSET=utf8 PACK_KEYS=0 COMMENT='Stores levels stats.';
-/*!40101 SET character_set_client = @saved_cs_client */;
-
---
--- Dumping data for table `player_levelstats`
---
-
-LOCK TABLES `player_levelstats` WRITE;
-/*!40000 ALTER TABLE `player_levelstats` DISABLE KEYS */;
-INSERT INTO `player_levelstats` VALUES
-(1,1,1,23,20,22,20,20),
-(1,1,2,24,21,23,20,20),
-(1,1,3,26,22,24,20,21),
-(1,1,4,27,22,26,20,21),
-(1,1,5,28,23,27,20,21),
-(1,1,6,30,24,28,20,21),
-(1,1,7,31,25,29,21,22),
-(1,1,8,32,26,30,21,22),
-(1,1,9,34,26,32,21,22),
-(1,1,10,35,27,33,21,23),
-(1,1,11,36,28,34,21,23),
-(1,1,12,38,29,35,21,23),
-(1,1,13,39,30,37,21,24),
-(1,1,14,41,31,38,21,24),
-(1,1,15,42,32,39,21,24),
-(1,1,16,44,33,41,21,25),
-(1,1,17,45,34,42,22,25),
-(1,1,18,47,34,43,22,25),
-(1,1,19,48,35,45,22,26),
-(1,1,20,50,36,46,22,26),
-(1,1,21,51,37,48,22,26),
-(1,1,22,53,38,49,22,27),
-(1,1,23,54,39,51,22,27),
-(1,1,24,56,40,52,23,28),
-(1,1,25,58,41,53,23,28),
-(1,1,26,59,42,55,23,28),
-(1,1,27,61,43,56,23,29),
-(1,1,28,63,44,58,23,29),
-(1,1,29,64,45,59,23,30),
-(1,1,30,66,46,61,24,30),
-(1,1,31,68,47,62,24,30),
-(1,1,32,69,48,64,24,31),
-(1,1,33,71,50,66,24,31),
-(1,1,34,73,51,67,24,32),
-(1,1,35,74,52,69,24,32),
-(1,1,36,76,53,70,25,33),
-(1,1,37,78,54,72,25,33),
-(1,1,38,80,55,74,25,34),
-(1,1,39,82,56,75,25,34),
-(1,1,40,83,57,77,25,35),
-(1,1,41,85,58,79,26,35),
-(1,1,42,87,60,80,26,35),
-(1,1,43,89,61,82,26,36),
-(1,1,44,91,62,84,26,36),
-(1,1,45,93,63,85,26,37),
-(1,1,46,95,64,87,27,37),
-(1,1,47,97,66,89,27,38),
-(1,1,48,99,67,91,27,38),
-(1,1,49,101,68,93,27,39),
-(1,1,50,103,69,94,28,40),
-(1,1,51,105,71,96,28,40),
-(1,1,52,107,72,98,28,41),
-(1,1,53,109,73,100,28,41),
-(1,1,54,111,74,102,29,42),
-(1,1,55,113,76,103,29,42),
-(1,1,56,115,77,105,29,43),
-(1,1,57,117,78,107,29,43),
-(1,1,58,119,79,109,30,44),
-(1,1,59,121,81,111,30,44),
-(1,1,60,123,82,113,30,45),
-(1,1,61,125,83,115,30,46),
-(1,1,62,127,85,117,31,46),
-(1,1,63,129,86,119,31,47),
-(1,1,64,132,88,121,31,47),
-(1,1,65,134,89,123,32,48),
-(1,1,66,136,90,125,32,49),
-(1,1,67,138,92,127,32,49),
-(1,1,68,140,93,129,32,50),
-(1,1,69,143,95,131,33,50),
-(1,1,70,145,96,133,33,51),
-(1,1,71,148,97,140,33,53),
-(1,1,72,156,99,143,33,54),
-(1,1,73,162,101,148,33,55),
-(1,1,74,162,102,148,34,55),
-(1,1,75,165,104,150,34,56),
-(1,1,76,171,106,156,34,57),
-(1,1,77,171,108,157,35,58),
-(1,1,78,174,109,159,35,58),
-(1,1,79,181,111,165,35,59),
-(1,1,80,184,113,168,36,60),
-(1,2,1,22,20,22,20,21),
-(1,2,2,23,21,23,21,22),
-(1,2,3,24,21,24,21,22),
-(1,2,4,25,22,25,22,23),
-(1,2,5,26,22,26,23,24),
-(1,2,6,28,23,27,23,25),
-(1,2,7,29,24,28,24,25),
-(1,2,8,30,24,29,25,26),
-(1,2,9,31,25,30,25,27),
-(1,2,10,32,25,32,26,27),
-(1,2,11,33,26,33,27,28),
-(1,2,12,35,27,34,27,29),
-(1,2,13,36,27,35,28,30),
-(1,2,14,37,28,36,29,31),
-(1,2,15,38,29,37,30,31),
-(1,2,16,40,29,38,30,32),
-(1,2,17,41,30,40,31,33),
-(1,2,18,42,31,41,32,34),
-(1,2,19,43,31,42,33,35),
-(1,2,20,45,32,43,33,35),
-(1,2,21,46,33,45,34,36),
-(1,2,22,47,33,46,35,37),
-(1,2,23,49,34,47,36,38),
-(1,2,24,50,35,48,37,39),
-(1,2,25,51,36,50,37,40),
-(1,2,26,53,36,51,38,41),
-(1,2,27,54,37,52,39,42),
-(1,2,28,56,38,54,40,43),
-(1,2,29,57,39,55,41,43),
-(1,2,30,58,39,56,42,44),
-(1,2,31,60,40,58,43,45),
-(1,2,32,61,41,59,43,46),
-(1,2,33,63,42,60,44,47),
-(1,2,34,64,43,62,45,48),
-(1,2,35,66,44,63,46,49),
-(1,2,36,67,44,65,47,50),
-(1,2,37,69,45,66,48,51),
-(1,2,38,70,46,67,49,52),
-(1,2,39,72,47,69,50,53),
-(1,2,40,73,48,70,51,54),
-(1,2,41,75,49,72,52,55),
-(1,2,42,77,49,73,53,56),
-(1,2,43,78,50,75,54,57),
-(1,2,44,80,51,76,55,58),
-(1,2,45,81,52,78,56,59),
-(1,2,46,83,53,79,57,61),
-(1,2,47,85,54,81,58,62),
-(1,2,48,86,55,83,59,63),
-(1,2,49,88,56,84,60,64),
-(1,2,50,90,57,86,61,65),
-(1,2,51,91,58,87,62,66),
-(1,2,52,93,59,89,63,67),
-(1,2,53,95,60,91,64,68),
-(1,2,54,97,61,92,65,69),
-(1,2,55,98,61,94,66,71),
-(1,2,56,100,62,95,67,72),
-(1,2,57,102,63,97,68,73),
-(1,2,58,104,64,99,69,74),
-(1,2,59,105,65,101,70,75),
-(1,2,60,107,66,102,71,77),
-(1,2,61,109,67,104,73,78),
-(1,2,62,111,69,106,74,79),
-(1,2,63,113,70,107,75,80),
-(1,2,64,115,71,109,76,81),
-(1,2,65,116,72,111,77,83),
-(1,2,66,118,73,113,78,84),
-(1,2,67,120,74,115,79,85),
-(1,2,68,122,75,116,81,86),
-(1,2,69,124,76,118,82,88),
-(1,2,70,126,77,120,83,89),
-(1,2,71,148,78,122,84,92),
-(1,2,72,150,79,125,86,94),
-(1,2,73,152,80,127,87,96),
-(1,2,74,156,82,129,89,97),
-(1,2,75,158,83,131,90,99),
-(1,2,76,162,84,134,92,100),
-(1,2,77,164,86,136,93,103),
-(1,2,78,167,87,138,95,105),
-(1,2,79,170,88,153,96,106),
-(1,2,80,173,90,160,98,108),
-(1,4,1,21,23,21,20,20),
-(1,4,2,22,24,22,20,20),
-(1,4,3,23,26,22,20,21),
-(1,4,4,23,27,23,20,21),
-(1,4,5,24,29,24,21,21),
-(1,4,6,25,30,25,21,22),
-(1,4,7,26,32,25,21,22),
-(1,4,8,26,33,26,21,23),
-(1,4,9,27,35,27,21,23),
-(1,4,10,28,36,27,21,23),
-(1,4,11,29,38,28,22,24),
-(1,4,12,30,39,29,22,24),
-(1,4,13,31,41,30,22,25),
-(1,4,14,31,43,31,22,25),
-(1,4,15,32,44,31,22,25),
-(1,4,16,33,46,32,23,26),
-(1,4,17,34,48,33,23,26),
-(1,4,18,35,49,34,23,27),
-(1,4,19,36,51,35,23,27),
-(1,4,20,37,53,35,23,28),
-(1,4,21,38,54,36,24,28),
-(1,4,22,39,56,37,24,29),
-(1,4,23,40,58,38,24,29),
-(1,4,24,41,60,39,24,30),
-(1,4,25,42,61,40,25,30),
-(1,4,26,43,63,41,25,31),
-(1,4,27,44,65,42,25,31),
-(1,4,28,45,67,43,25,32),
-(1,4,29,46,69,43,25,32),
-(1,4,30,47,71,44,26,33),
-(1,4,31,48,72,45,26,33),
-(1,4,32,49,74,46,26,34),
-(1,4,33,50,76,47,27,34),
-(1,4,34,51,78,48,27,35),
-(1,4,35,52,80,49,27,35),
-(1,4,36,53,82,50,27,36),
-(1,4,37,54,84,51,28,36),
-(1,4,38,55,86,52,28,37),
-(1,4,39,56,88,53,28,38),
-(1,4,40,57,90,54,28,38),
-(1,4,41,58,92,55,29,39),
-(1,4,42,60,94,56,29,39),
-(1,4,43,61,96,57,29,40),
-(1,4,44,62,98,58,30,40),
-(1,4,45,63,100,59,30,41),
-(1,4,46,64,103,61,30,42),
-(1,4,47,65,105,62,31,42),
-(1,4,48,66,107,63,31,43),
-(1,4,49,68,109,64,31,44),
-(1,4,50,69,111,65,32,44),
-(1,4,51,70,113,66,32,45),
-(1,4,52,71,116,67,32,45),
-(1,4,53,73,118,68,33,46),
-(1,4,54,74,120,69,33,47),
-(1,4,55,75,122,71,33,47),
-(1,4,56,76,125,72,34,48),
-(1,4,57,78,127,73,34,49),
-(1,4,58,79,129,74,34,49),
-(1,4,59,80,131,75,35,50),
-(1,4,60,81,134,77,35,51),
-(1,4,61,83,136,78,35,51),
-(1,4,62,84,138,79,36,52),
-(1,4,63,85,141,80,36,53),
-(1,4,64,87,143,81,37,54),
-(1,4,65,88,146,83,37,54),
-(1,4,66,89,148,84,37,55),
-(1,4,67,91,151,85,38,56),
-(1,4,68,92,153,86,38,57),
-(1,4,69,94,156,88,39,57),
-(1,4,70,95,158,89,39,58),
-(1,4,71,97,161,90,39,60),
-(1,4,72,99,164,92,40,60),
-(1,4,73,100,167,94,40,61),
-(1,4,74,102,170,95,41,62),
-(1,4,75,104,173,97,41,63),
-(1,4,76,105,176,98,41,64),
-(1,4,77,107,179,100,42,65),
-(1,4,78,109,183,106,42,66),
-(1,4,79,111,186,107,43,67),
-(1,4,80,113,189,109,43,69),
-(1,5,1,20,20,20,22,23),
-(1,5,2,20,20,20,23,24),
-(1,5,3,20,20,21,25,26),
-(1,5,4,20,21,21,26,27),
-(1,5,5,21,21,21,27,28),
-(1,5,6,21,21,22,29,30),
-(1,5,7,21,21,22,30,31),
-(1,5,8,21,22,23,31,33),
-(1,5,9,21,22,23,33,34),
-(1,5,10,21,22,23,34,36),
-(1,5,11,22,22,24,36,37),
-(1,5,12,22,23,24,37,39),
-(1,5,13,22,23,25,38,40),
-(1,5,14,22,23,25,40,42),
-(1,5,15,22,23,25,41,43),
-(1,5,16,23,24,26,43,45),
-(1,5,17,23,24,26,44,46),
-(1,5,18,23,24,27,46,48),
-(1,5,19,23,24,27,47,49),
-(1,5,20,23,25,28,49,51),
-(1,5,21,24,25,28,51,53),
-(1,5,22,24,25,29,52,54),
-(1,5,23,24,26,29,54,56),
-(1,5,24,24,26,30,55,58),
-(1,5,25,25,26,30,57,59),
-(1,5,26,25,27,31,59,61),
-(1,5,27,25,27,31,60,63),
-(1,5,28,25,27,32,62,65),
-(1,5,29,25,28,32,64,66),
-(1,5,30,26,28,33,65,68),
-(1,5,31,26,28,33,67,70),
-(1,5,32,26,29,34,69,72),
-(1,5,33,27,29,34,70,73),
-(1,5,34,27,29,35,72,75),
-(1,5,35,27,30,35,74,77),
-(1,5,36,27,30,36,76,79),
-(1,5,37,28,30,36,78,81),
-(1,5,38,28,31,37,79,83),
-(1,5,39,28,31,38,81,85),
-(1,5,40,28,31,38,83,87),
-(1,5,41,29,32,39,85,88),
-(1,5,42,29,32,39,87,90),
-(1,5,43,29,33,40,89,92),
-(1,5,44,30,33,40,91,94),
-(1,5,45,30,33,41,92,96),
-(1,5,46,30,34,42,94,98),
-(1,5,47,31,34,42,96,100),
-(1,5,48,31,35,43,98,102),
-(1,5,49,31,35,44,100,104),
-(1,5,50,32,36,44,102,106),
-(1,5,51,32,36,45,104,109),
-(1,5,52,32,36,45,106,111),
-(1,5,53,33,37,46,108,113),
-(1,5,54,33,37,47,110,115),
-(1,5,55,33,38,47,112,117),
-(1,5,56,34,38,48,114,119),
-(1,5,57,34,39,49,117,121),
-(1,5,58,34,39,49,119,124),
-(1,5,59,35,40,50,121,126),
-(1,5,60,35,40,51,123,128),
-(1,5,61,35,41,51,125,130),
-(1,5,62,36,41,52,127,132),
-(1,5,63,36,41,53,129,135),
-(1,5,64,37,42,54,132,137),
-(1,5,65,37,42,54,134,139),
-(1,5,66,37,43,55,136,142),
-(1,5,67,38,43,56,138,144),
-(1,5,68,38,44,57,140,146),
-(1,5,69,39,44,57,143,149),
-(1,5,70,39,45,58,145,151),
-(1,5,71,39,46,59,148,158),
-(1,5,72,40,46,59,151,161),
-(1,5,73,40,47,60,154,164),
-(1,5,74,41,47,61,156,167),
-(1,5,75,41,48,62,159,170),
-(1,5,76,41,49,63,162,174),
-(1,5,77,42,49,64,165,177),
-(1,5,78,42,50,65,168,180),
-(1,5,79,43,50,66,171,183),
-(1,5,80,43,51,67,174,186),
-(1,6,1,23,20,22,20,20),
-(1,6,2,24,21,23,20,20),
-(1,6,3,26,22,24,20,21),
-(1,6,4,27,22,26,20,21),
-(1,6,5,28,23,27,20,21),
-(1,6,6,30,24,28,20,21),
-(1,6,7,31,25,29,21,22),
-(1,6,8,32,26,30,21,22),
-(1,6,9,34,26,32,21,22),
-(1,6,10,35,27,33,21,23),
-(1,6,11,36,28,34,21,23),
-(1,6,12,38,29,35,21,23),
-(1,6,13,39,30,37,21,24),
-(1,6,14,41,31,38,21,24),
-(1,6,15,42,32,39,21,24),
-(1,6,16,44,33,41,21,25),
-(1,6,17,45,34,42,22,25),
-(1,6,18,47,34,43,22,25),
-(1,6,19,48,35,45,22,26),
-(1,6,20,50,36,46,22,26),
-(1,6,21,51,37,48,22,26),
-(1,6,22,53,38,49,22,27),
-(1,6,23,54,39,51,22,27),
-(1,6,24,56,40,52,23,28),
-(1,6,25,58,41,53,23,28),
-(1,6,26,59,42,55,23,28),
-(1,6,27,61,43,56,23,29),
-(1,6,28,63,44,58,23,29),
-(1,6,29,64,45,59,23,30),
-(1,6,30,66,46,61,24,30),
-(1,6,31,68,47,62,24,30),
-(1,6,32,69,48,64,24,31),
-(1,6,33,71,50,66,24,31),
-(1,6,34,73,51,67,24,32),
-(1,6,35,74,52,69,24,32),
-(1,6,36,76,53,70,25,33),
-(1,6,37,78,54,72,25,33),
-(1,6,38,80,55,74,25,34),
-(1,6,39,82,56,75,25,34),
-(1,6,40,83,57,77,25,35),
-(1,6,41,85,58,79,26,35),
-(1,6,42,87,60,80,26,35),
-(1,6,43,89,61,82,26,36),
-(1,6,44,91,62,84,26,36),
-(1,6,45,93,63,85,26,37),
-(1,6,46,95,64,87,27,37),
-(1,6,47,97,66,89,27,38),
-(1,6,48,99,67,91,27,38),
-(1,6,49,101,68,93,27,39),
-(1,6,50,103,69,94,28,40),
-(1,6,51,105,71,96,28,40),
-(1,6,52,106,72,97,28,41),
-(1,6,53,107,72,98,28,41),
-(1,6,54,107,73,98,29,42),
-(1,6,55,108,73,99,29,43),
-(1,6,56,111,75,102,29,44),
-(1,6,57,113,76,104,29,44),
-(1,6,58,118,77,106,30,45),
-(1,6,59,118,79,108,30,45),
-(1,6,60,123,80,110,30,46),
-(1,6,61,125,81,112,30,47),
-(1,6,62,128,83,114,30,47),
-(1,6,63,130,84,117,31,48),
-(1,6,64,130,86,119,31,48),
-(1,6,65,140,87,128,31,49),
-(1,6,66,143,89,131,31,50),
-(1,6,67,146,90,133,32,50),
-(1,6,68,148,92,135,32,51),
-(1,6,69,151,93,138,32,52),
-(1,6,70,154,95,140,32,52),
-(1,6,71,162,97,144,33,53),
-(1,6,72,164,98,146,33,54),
-(1,6,73,165,100,148,33,55),
-(1,6,74,166,102,151,33,55),
-(1,6,75,169,103,154,34,56),
-(1,6,76,172,105,157,34,57),
-(1,6,77,175,107,157,34,58),
-(1,6,78,176,108,157,34,58),
-(1,6,79,177,110,157,35,59),
-(1,6,80,180,112,160,35,60),
-(1,8,1,20,20,20,23,22),
-(1,8,2,20,20,20,24,23),
-(1,8,3,20,20,21,26,25),
-(1,8,4,20,20,21,27,26),
-(1,8,5,20,21,21,28,27),
-(1,8,6,20,21,21,30,29),
-(1,8,7,21,21,22,31,30),
-(1,8,8,21,21,22,33,31),
-(1,8,9,21,21,22,34,33),
-(1,8,10,21,21,23,36,34),
-(1,8,11,21,22,23,37,36),
-(1,8,12,21,22,23,39,37),
-(1,8,13,21,22,24,40,38),
-(1,8,14,21,22,24,42,40),
-(1,8,15,21,22,24,43,41),
-(1,8,16,21,23,25,45,43),
-(1,8,17,22,23,25,46,44),
-(1,8,18,22,23,25,48,46),
-(1,8,19,22,23,26,49,47),
-(1,8,20,22,23,26,51,49),
-(1,8,21,22,24,26,53,51),
-(1,8,22,22,24,27,54,52),
-(1,8,23,22,24,27,56,54),
-(1,8,24,23,24,28,58,55),
-(1,8,25,23,25,28,59,57),
-(1,8,26,23,25,28,61,59),
-(1,8,27,23,25,29,63,60),
-(1,8,28,23,25,29,65,62),
-(1,8,29,23,25,30,66,64),
-(1,8,30,24,26,30,68,65),
-(1,8,31,24,26,30,70,67),
-(1,8,32,24,26,31,72,69),
-(1,8,33,24,27,31,73,70),
-(1,8,34,24,27,32,75,72),
-(1,8,35,24,27,32,77,74),
-(1,8,36,25,27,33,79,76),
-(1,8,37,25,28,33,81,78),
-(1,8,38,25,28,34,83,79),
-(1,8,39,25,28,34,85,81),
-(1,8,40,25,28,35,87,83),
-(1,8,41,26,29,35,88,85),
-(1,8,42,26,29,35,90,87),
-(1,8,43,26,29,36,92,89),
-(1,8,44,26,30,36,94,91),
-(1,8,45,26,30,37,96,92),
-(1,8,46,27,30,37,98,94),
-(1,8,47,27,31,38,100,96),
-(1,8,48,27,31,38,102,98),
-(1,8,49,27,31,39,104,100),
-(1,8,50,28,32,40,106,102),
-(1,8,51,28,32,40,109,104),
-(1,8,52,28,32,41,111,106),
-(1,8,53,28,33,41,113,108),
-(1,8,54,29,33,42,115,110),
-(1,8,55,29,33,42,117,112),
-(1,8,56,29,34,43,119,114),
-(1,8,57,29,34,43,121,117),
-(1,8,58,30,34,44,124,119),
-(1,8,59,30,35,44,126,121),
-(1,8,60,30,35,45,128,123),
-(1,8,61,30,35,46,130,125),
-(1,8,62,31,36,46,132,127),
-(1,8,63,31,36,47,135,129),
-(1,8,64,31,37,47,137,132),
-(1,8,65,32,37,48,139,134),
-(1,8,66,32,37,49,142,136),
-(1,8,67,32,38,49,144,138),
-(1,8,68,32,38,50,146,140),
-(1,8,69,33,39,50,149,143),
-(1,8,70,33,39,51,151,145),
-(1,8,71,33,39,52,154,152),
-(1,8,72,33,40,53,160,155),
-(1,8,73,33,40,54,160,158),
-(1,8,74,34,41,54,163,160),
-(1,8,75,34,41,55,166,163),
-(1,8,76,34,41,56,169,166),
-(1,8,77,35,42,57,172,169),
-(1,8,78,35,42,57,175,173),
-(1,8,79,35,43,58,178,176),
-(1,8,80,36,43,59,181,179),
-(1,9,1,20,20,21,22,22),
-(1,9,2,20,20,22,23,23),
-(1,9,3,21,21,22,24,24),
-(1,9,4,21,21,23,26,25),
-(1,9,5,21,21,23,27,27),
-(1,9,6,21,22,24,28,28),
-(1,9,7,22,22,24,29,29),
-(1,9,8,22,23,25,30,30),
-(1,9,9,22,23,26,32,31),
-(1,9,10,23,23,26,33,33),
-(1,9,11,23,24,27,34,34),
-(1,9,12,23,24,27,35,35),
-(1,9,13,24,25,28,37,36),
-(1,9,14,24,25,29,38,38),
-(1,9,15,24,25,29,39,39),
-(1,9,16,25,26,30,41,40),
-(1,9,17,25,26,31,42,42),
-(1,9,18,25,27,31,43,43),
-(1,9,19,26,27,32,45,44),
-(1,9,20,26,28,33,46,46),
-(1,9,21,26,28,33,48,47),
-(1,9,22,27,29,34,49,49),
-(1,9,23,27,29,35,51,50),
-(1,9,24,28,30,35,52,51),
-(1,9,25,28,30,36,53,53),
-(1,9,26,28,31,37,55,54),
-(1,9,27,29,31,37,56,56),
-(1,9,28,29,32,38,58,57),
-(1,9,29,30,32,39,59,59),
-(1,9,30,30,33,40,61,60),
-(1,9,31,30,33,40,62,62),
-(1,9,32,31,34,41,64,63),
-(1,9,33,31,34,42,66,65),
-(1,9,34,32,35,43,67,66),
-(1,9,35,32,35,44,69,68),
-(1,9,36,33,36,44,70,69),
-(1,9,37,33,36,45,72,71),
-(1,9,38,34,37,46,74,73),
-(1,9,39,34,38,47,75,74),
-(1,9,40,35,38,48,77,76),
-(1,9,41,35,39,48,79,78),
-(1,9,42,35,39,49,80,79),
-(1,9,43,36,40,50,82,81),
-(1,9,44,36,40,51,84,83),
-(1,9,45,37,41,52,85,84),
-(1,9,46,37,42,53,87,86),
-(1,9,47,38,42,54,89,88),
-(1,9,48,38,43,55,91,89),
-(1,9,49,39,44,55,93,91),
-(1,9,50,40,44,56,94,93),
-(1,9,51,40,45,57,96,95),
-(1,9,52,41,45,58,98,97),
-(1,9,53,41,46,59,100,98),
-(1,9,54,42,47,60,102,100),
-(1,9,55,42,47,61,103,102),
-(1,9,56,43,48,62,105,104),
-(1,9,57,43,49,63,107,106),
-(1,9,58,44,49,64,109,108),
-(1,9,59,44,50,65,111,109),
-(1,9,60,45,51,66,113,111),
-(1,9,61,46,51,67,115,113),
-(1,9,62,46,52,68,117,115),
-(1,9,63,47,53,69,119,117),
-(1,9,64,47,54,70,121,119),
-(1,9,65,48,54,71,123,121),
-(1,9,66,49,55,72,125,123),
-(1,9,67,49,56,73,127,125),
-(1,9,68,50,57,74,129,127),
-(1,9,69,50,57,75,131,129),
-(1,9,70,51,58,76,133,131),
-(1,9,71,52,59,78,135,146),
-(1,9,72,53,59,79,138,148),
-(1,9,73,54,60,80,140,151),
-(1,9,74,54,61,89,143,154),
-(1,9,75,55,62,91,145,156),
-(1,9,76,56,63,92,148,159),
-(1,9,77,57,64,93,151,162),
-(1,9,78,57,65,95,153,165),
-(1,9,79,58,66,96,156,168),
-(1,9,80,59,67,97,159,170),
-(2,1,1,26,17,24,17,23),
-(2,1,2,27,18,25,17,23),
-(2,1,3,29,19,26,17,24),
-(2,1,4,30,19,27,17,24),
-(2,1,5,31,20,29,17,24),
-(2,1,6,32,21,30,17,24),
-(2,1,7,34,22,31,18,25),
-(2,1,8,35,23,32,18,25),
-(2,1,9,37,24,34,18,25),
-(2,1,10,38,24,35,18,26),
-(2,1,11,39,25,36,18,26),
-(2,1,12,41,26,37,18,26),
-(2,1,13,42,27,39,18,27),
-(2,1,14,44,28,40,18,27),
-(2,1,15,45,29,41,18,27),
-(2,1,16,47,30,43,19,28),
-(2,1,17,48,31,44,19,28),
-(2,1,18,50,32,45,19,28),
-(2,1,19,51,33,47,19,29),
-(2,1,20,53,34,48,19,29),
-(2,1,21,54,34,50,19,29),
-(2,1,22,56,35,51,19,30),
-(2,1,23,57,36,52,20,30),
-(2,1,24,59,37,54,20,30),
-(2,1,25,60,38,55,20,31),
-(2,1,26,62,39,57,20,31),
-(2,1,27,64,40,58,20,32),
-(2,1,28,65,41,60,20,32),
-(2,1,29,67,43,61,21,32),
-(2,1,30,69,44,63,21,33),
-(2,1,31,70,45,64,21,33),
-(2,1,32,72,46,66,21,34),
-(2,1,33,74,47,67,21,34),
-(2,1,34,76,48,69,21,35),
-(2,1,35,77,49,71,22,35),
-(2,1,36,79,50,72,22,36),
-(2,1,37,81,51,74,22,36),
-(2,1,38,83,52,76,22,36),
-(2,1,39,84,53,77,22,37),
-(2,1,40,86,55,79,23,37),
-(2,1,41,88,56,81,23,38),
-(2,1,42,90,57,82,23,38),
-(2,1,43,92,58,84,23,39),
-(2,1,44,94,59,86,23,39),
-(2,1,45,96,60,87,24,40),
-(2,1,46,98,62,89,24,40),
-(2,1,47,100,63,91,24,41),
-(2,1,48,101,64,93,24,41),
-(2,1,49,103,65,94,25,42),
-(2,1,50,105,66,96,25,42),
-(2,1,51,107,68,98,25,43),
-(2,1,52,109,69,100,25,43),
-(2,1,53,111,70,102,25,44),
-(2,1,54,113,71,104,26,45),
-(2,1,55,115,73,105,26,45),
-(2,1,56,118,74,107,26,46),
-(2,1,57,120,75,109,26,46),
-(2,1,58,122,77,111,27,47),
-(2,1,59,124,78,113,27,47),
-(2,1,60,126,79,115,27,48),
-(2,1,61,128,81,117,27,48),
-(2,1,62,130,82,119,28,49),
-(2,1,63,132,83,121,28,50),
-(2,1,64,135,85,123,28,50),
-(2,1,65,137,86,125,29,51),
-(2,1,66,139,87,127,29,52),
-(2,1,67,141,89,129,29,52),
-(2,1,68,143,90,131,29,53),
-(2,1,69,146,92,133,30,53),
-(2,1,70,148,93,135,30,54),
-(2,1,71,157,94,142,30,55),
-(2,1,72,162,96,148,30,56),
-(2,1,73,165,98,150,30,57),
-(2,1,74,168,99,153,31,57),
-(2,1,75,170,101,154,31,58),
-(2,1,76,172,103,156,31,59),
-(2,1,77,174,105,159,32,60),
-(2,1,78,179,106,162,32,60),
-(2,1,79,184,108,167,32,61),
-(2,1,80,187,110,170,33,62),
-(2,3,1,23,20,23,17,24),
-(2,3,2,23,21,24,18,25),
-(2,3,3,24,23,25,18,25),
-(2,3,4,24,24,26,19,26),
-(2,3,5,25,25,27,19,26),
-(2,3,6,25,27,28,20,27),
-(2,3,7,26,28,28,21,28),
-(2,3,8,26,30,29,21,28),
-(2,3,9,26,31,30,22,29),
-(2,3,10,27,33,31,22,30),
-(2,3,11,27,34,32,23,30),
-(2,3,12,28,36,33,24,31),
-(2,3,13,28,37,34,24,32),
-(2,3,14,29,39,35,25,33),
-(2,3,15,29,40,36,26,33),
-(2,3,16,30,42,37,26,34),
-(2,3,17,30,43,39,27,35),
-(2,3,18,31,45,40,28,35),
-(2,3,19,31,47,41,28,36),
-(2,3,20,32,48,42,29,37),
-(2,3,21,32,50,43,30,38),
-(2,3,22,33,51,44,31,39),
-(2,3,23,34,53,45,31,39),
-(2,3,24,34,55,46,32,40),
-(2,3,25,35,57,47,33,41),
-(2,3,26,35,58,48,34,42),
-(2,3,27,36,60,50,34,43),
-(2,3,28,36,62,51,35,43),
-(2,3,29,37,63,52,36,44),
-(2,3,30,38,65,53,37,45),
-(2,3,31,38,67,54,37,46),
-(2,3,32,39,69,56,38,47),
-(2,3,33,39,71,57,39,48),
-(2,3,34,40,72,58,40,49),
-(2,3,35,41,74,59,41,49),
-(2,3,36,41,76,61,42,50),
-(2,3,37,42,78,62,42,51),
-(2,3,38,43,80,63,43,52),
-(2,3,39,43,82,64,44,53),
-(2,3,40,44,84,66,45,54),
-(2,3,41,45,86,67,46,55),
-(2,3,42,45,88,68,47,56),
-(2,3,43,46,90,70,47,57),
-(2,3,44,47,91,71,48,58),
-(2,3,45,47,93,72,49,59),
-(2,3,46,48,95,74,50,60),
-(2,3,47,49,98,75,51,61),
-(2,3,48,50,100,77,52,62),
-(2,3,49,50,102,78,53,63),
-(2,3,50,51,104,79,54,64),
-(2,3,51,52,106,81,55,65),
-(2,3,52,52,108,82,56,66),
-(2,3,53,53,110,84,57,67),
-(2,3,54,54,112,85,58,68),
-(2,3,55,55,114,87,59,69),
-(2,3,56,55,116,88,60,70),
-(2,3,57,56,118,90,61,71),
-(2,3,58,57,121,91,62,72),
-(2,3,59,58,123,93,63,73),
-(2,3,60,59,125,94,64,74),
-(2,3,61,59,127,96,65,76),
-(2,3,62,60,130,97,66,77),
-(2,3,63,61,132,99,67,78),
-(2,3,64,62,134,100,68,79),
-(2,3,65,63,136,102,69,80),
-(2,3,66,64,139,104,70,81),
-(2,3,67,64,141,105,71,82),
-(2,3,68,65,143,107,72,84),
-(2,3,69,66,146,108,73,85),
-(2,3,70,67,148,110,74,86),
-(2,3,71,68,151,112,75,87),
-(2,3,72,69,154,114,76,88),
-(2,3,73,70,157,116,77,90),
-(2,3,74,71,160,118,79,91),
-(2,3,75,72,163,120,80,93),
-(2,3,76,73,166,122,81,94),
-(2,3,77,74,169,124,83,96),
-(2,3,78,75,172,126,84,97),
-(2,3,79,76,175,128,85,99),
-(2,3,80,77,178,130,87,100),
-(2,4,1,24,20,23,17,23),
-(2,4,2,25,21,24,17,23),
-(2,4,3,25,23,24,17,24),
-(2,4,4,26,24,25,17,24),
-(2,4,5,27,26,26,18,24),
-(2,4,6,28,27,26,18,25),
-(2,4,7,29,29,27,18,25),
-(2,4,8,29,30,28,18,26),
-(2,4,9,30,32,29,18,26),
-(2,4,10,31,33,29,19,26),
-(2,4,11,32,35,30,19,27),
-(2,4,12,33,37,31,19,27),
-(2,4,13,34,38,32,19,28),
-(2,4,14,34,40,32,19,28),
-(2,4,15,35,41,33,19,28),
-(2,4,16,36,43,34,20,29),
-(2,4,17,37,45,35,20,29),
-(2,4,18,38,46,36,20,30),
-(2,4,19,39,48,37,20,30),
-(2,4,20,40,50,37,21,31),
-(2,4,21,41,52,38,21,31),
-(2,4,22,42,53,39,21,31),
-(2,4,23,43,55,40,21,32),
-(2,4,24,43,57,41,21,32),
-(2,4,25,44,59,42,22,33),
-(2,4,26,45,60,43,22,33),
-(2,4,27,46,62,44,22,34),
-(2,4,28,47,64,44,22,34),
-(2,4,29,48,66,45,23,35),
-(2,4,30,49,68,46,23,35),
-(2,4,31,50,70,47,23,36),
-(2,4,32,51,72,48,23,36),
-(2,4,33,53,73,49,24,37),
-(2,4,34,54,75,50,24,38),
-(2,4,35,55,77,51,24,38),
-(2,4,36,56,79,52,24,39),
-(2,4,37,57,81,53,25,39),
-(2,4,38,58,83,54,25,40),
-(2,4,39,59,85,55,25,40),
-(2,4,40,60,87,56,26,41),
-(2,4,41,61,89,57,26,41),
-(2,4,42,62,91,58,26,42),
-(2,4,43,63,93,59,27,43),
-(2,4,44,65,95,60,27,43),
-(2,4,45,66,98,61,27,44),
-(2,4,46,67,100,62,27,44),
-(2,4,47,68,102,64,28,45),
-(2,4,48,69,104,65,28,46),
-(2,4,49,71,106,66,28,46),
-(2,4,50,72,108,67,29,47),
-(2,4,51,73,110,68,29,48),
-(2,4,52,74,113,69,29,48),
-(2,4,53,75,115,70,30,49),
-(2,4,54,77,117,71,30,50),
-(2,4,55,78,119,73,30,50),
-(2,4,56,79,122,74,31,51),
-(2,4,57,80,124,75,31,52),
-(2,4,58,82,126,76,31,52),
-(2,4,59,83,129,77,32,53),
-(2,4,60,84,131,78,32,54),
-(2,4,61,86,133,80,33,54),
-(2,4,62,87,136,81,33,55),
-(2,4,63,88,138,82,33,56),
-(2,4,64,90,140,83,34,57),
-(2,4,65,91,143,85,34,57),
-(2,4,66,92,145,86,34,58),
-(2,4,67,94,148,87,35,59),
-(2,4,68,95,150,88,35,59),
-(2,4,69,97,153,90,36,60),
-(2,4,70,98,155,91,36,61),
-(2,4,71,100,158,92,36,62),
-(2,4,72,102,161,94,37,62),
-(2,4,73,103,164,99,37,63),
-(2,4,74,105,167,100,38,64),
-(2,4,75,107,170,102,38,65),
-(2,4,76,108,173,102,38,66),
-(2,4,77,110,176,102,39,67),
-(2,4,78,112,180,103,39,68),
-(2,4,79,114,183,105,40,69),
-(2,4,80,116,186,107,40,70),
-(2,6,1,26,17,24,17,23),
-(2,6,2,27,18,25,17,23),
-(2,6,3,29,19,26,17,24),
-(2,6,4,30,19,27,17,24),
-(2,6,5,31,20,29,17,24),
-(2,6,6,32,21,30,17,24),
-(2,6,7,34,22,31,18,25),
-(2,6,8,35,23,32,18,25),
-(2,6,9,37,24,34,18,25),
-(2,6,10,38,24,35,18,26),
-(2,6,11,39,25,36,18,26),
-(2,6,12,41,26,37,18,26),
-(2,6,13,42,27,39,18,27),
-(2,6,14,44,28,40,18,27),
-(2,6,15,45,29,41,18,27),
-(2,6,16,47,30,43,19,28),
-(2,6,17,48,31,44,19,28),
-(2,6,18,50,32,45,19,28),
-(2,6,19,51,33,47,19,29),
-(2,6,20,53,34,48,19,29),
-(2,6,21,54,34,50,19,29),
-(2,6,22,56,35,51,19,30),
-(2,6,23,57,36,52,20,30),
-(2,6,24,59,37,54,20,30),
-(2,6,25,60,38,55,20,31),
-(2,6,26,62,39,57,20,31),
-(2,6,27,64,40,58,20,32),
-(2,6,28,65,41,60,20,32),
-(2,6,29,67,43,61,21,32),
-(2,6,30,69,44,63,21,33),
-(2,6,31,70,45,64,21,33),
-(2,6,32,72,46,66,21,34),
-(2,6,33,74,47,67,21,34),
-(2,6,34,76,48,69,21,35),
-(2,6,35,77,49,71,22,35),
-(2,6,36,79,50,72,22,36),
-(2,6,37,81,51,74,22,36),
-(2,6,38,83,52,76,22,36),
-(2,6,39,84,53,77,22,37),
-(2,6,40,86,55,79,23,37),
-(2,6,41,88,56,81,23,38),
-(2,6,42,90,57,82,23,38),
-(2,6,43,92,58,84,23,39),
-(2,6,44,94,59,86,23,39),
-(2,6,45,96,60,87,24,40),
-(2,6,46,98,62,89,24,40),
-(2,6,47,100,63,91,24,41),
-(2,6,48,101,64,93,24,41),
-(2,6,49,103,65,94,25,42),
-(2,6,50,105,66,96,25,42),
-(2,6,51,107,68,98,25,43),
-(2,6,52,109,69,100,25,43),
-(2,6,53,110,69,100,25,44),
-(2,6,54,111,70,101,26,45),
-(2,6,55,111,70,101,26,45),
-(2,6,56,114,72,104,26,46),
-(2,6,57,116,73,106,26,46),
-(2,6,58,118,74,108,27,47),
-(2,6,59,124,76,110,27,47),
-(2,6,60,126,77,112,27,48),
-(2,6,61,128,78,114,27,49),
-(2,6,62,131,80,116,27,49),
-(2,6,63,133,81,119,28,50),
-(2,6,64,136,83,121,28,50),
-(2,6,65,136,84,123,28,51),
-(2,6,66,142,86,126,28,52),
-(2,6,67,145,87,128,29,52),
-(2,6,68,147,89,130,29,53),
-(2,6,69,150,90,133,29,54),
-(2,6,70,157,92,135,29,54),
-(2,6,71,160,94,138,30,55),
-(2,6,72,163,95,140,30,56),
-(2,6,73,166,97,151,30,57),
-(2,6,74,169,99,154,30,57),
-(2,6,75,172,100,156,31,58),
-(2,6,76,175,102,160,31,59),
-(2,6,77,179,104,162,31,60),
-(2,6,78,182,105,165,31,60),
-(2,6,79,191,107,168,32,61),
-(2,6,80,194,109,171,32,62),
-(2,7,1,24,17,23,18,25),
-(2,7,2,25,17,24,19,26),
-(2,7,3,26,18,25,20,27),
-(2,7,4,26,18,26,21,28),
-(2,7,5,27,19,27,22,29),
-(2,7,6,28,19,28,23,30),
-(2,7,7,29,20,29,24,31),
-(2,7,8,30,20,30,25,32),
-(2,7,9,31,21,31,26,33),
-(2,7,10,32,21,32,27,34),
-(2,7,11,33,22,33,28,36),
-(2,7,12,34,22,34,29,37),
-(2,7,13,34,23,35,30,38),
-(2,7,14,35,23,36,31,39),
-(2,7,15,36,24,37,32,40),
-(2,7,16,37,24,39,33,41),
-(2,7,17,38,25,40,34,43),
-(2,7,18,39,25,41,35,44),
-(2,7,19,40,26,42,36,45),
-(2,7,20,41,26,43,37,46),
-(2,7,21,42,27,44,38,47),
-(2,7,22,43,27,45,39,49),
-(2,7,23,44,28,47,40,50),
-(2,7,24,45,28,48,41,51),
-(2,7,25,47,29,49,43,52),
-(2,7,26,48,30,50,44,54),
-(2,7,27,49,30,52,45,55),
-(2,7,28,50,31,53,46,56),
-(2,7,29,51,31,54,47,58),
-(2,7,30,52,32,55,48,59),
-(2,7,31,53,33,57,50,60),
-(2,7,32,54,33,58,51,62),
-(2,7,33,55,34,59,52,63),
-(2,7,34,57,34,61,53,65),
-(2,7,35,58,35,62,55,66),
-(2,7,36,59,36,63,56,67),
-(2,7,37,60,36,65,57,69),
-(2,7,38,61,37,66,58,70),
-(2,7,39,62,38,67,60,72),
-(2,7,40,64,38,69,61,73),
-(2,7,41,65,39,70,62,75),
-(2,7,42,66,40,72,64,76),
-(2,7,43,67,40,73,65,78),
-(2,7,44,69,41,74,66,79),
-(2,7,45,70,42,76,68,81),
-(2,7,46,71,42,77,69,82),
-(2,7,47,72,43,79,70,84),
-(2,7,48,74,44,80,72,85),
-(2,7,49,75,45,82,73,87),
-(2,7,50,76,45,83,75,89),
-(2,7,51,78,46,85,76,90),
-(2,7,52,79,47,86,77,92),
-(2,7,53,80,47,88,79,93),
-(2,7,54,82,48,90,80,95),
-(2,7,55,83,49,91,82,97),
-(2,7,56,85,50,93,83,98),
-(2,7,57,86,50,94,85,100),
-(2,7,58,87,51,96,86,102),
-(2,7,59,89,52,97,88,103),
-(2,7,60,90,53,99,89,105),
-(2,7,61,92,54,101,91,107),
-(2,7,62,93,54,102,92,109),
-(2,7,63,95,55,104,94,110),
-(2,7,64,96,56,106,95,112),
-(2,7,65,97,57,107,97,114),
-(2,7,66,99,58,109,99,116),
-(2,7,67,100,58,111,100,118),
-(2,7,68,102,59,113,102,119),
-(2,7,69,103,60,114,103,121),
-(2,7,70,105,61,116,105,123),
-(2,7,71,106,62,118,117,125),
-(2,7,72,108,63,120,119,128),
-(2,7,73,110,64,122,122,130),
-(2,7,74,112,65,125,124,132),
-(2,7,75,114,66,127,126,134),
-(2,7,76,116,67,129,128,137),
-(2,7,77,117,68,131,128,139),
-(2,7,78,119,69,133,133,141),
-(2,7,79,121,70,136,135,144),
-(2,7,80,123,71,138,137,146),
-(2,9,1,23,17,23,19,25),
-(2,9,2,23,17,24,20,26),
-(2,9,3,24,18,24,21,27),
-(2,9,4,24,18,25,23,28),
-(2,9,5,24,18,25,24,30),
-(2,9,6,24,19,26,25,31),
-(2,9,7,25,19,26,26,32),
-(2,9,8,25,20,27,27,33),
-(2,9,9,25,20,27,29,34),
-(2,9,10,26,20,28,30,36),
-(2,9,11,26,21,29,31,37),
-(2,9,12,26,21,29,33,38),
-(2,9,13,27,22,30,34,39),
-(2,9,14,27,22,31,35,41),
-(2,9,15,27,23,31,37,42),
-(2,9,16,28,23,32,38,43),
-(2,9,17,28,23,32,39,45),
-(2,9,18,28,24,33,41,46),
-(2,9,19,29,24,34,42,47),
-(2,9,20,29,25,34,43,49),
-(2,9,21,29,25,35,45,50),
-(2,9,22,30,26,36,46,51),
-(2,9,23,30,26,37,48,53),
-(2,9,24,30,27,37,49,54),
-(2,9,25,31,27,38,51,56),
-(2,9,26,31,28,39,52,57),
-(2,9,27,32,28,39,54,59),
-(2,9,28,32,29,40,55,60),
-(2,9,29,32,29,41,57,62),
-(2,9,30,33,30,42,58,63),
-(2,9,31,33,30,42,60,65),
-(2,9,32,34,31,43,61,66),
-(2,9,33,34,31,44,63,68),
-(2,9,34,35,32,45,64,69),
-(2,9,35,35,32,45,66,71),
-(2,9,36,36,33,46,68,72),
-(2,9,37,36,34,47,69,74),
-(2,9,38,36,34,48,71,76),
-(2,9,39,37,35,49,72,77),
-(2,9,40,37,35,50,74,79),
-(2,9,41,38,36,50,76,80),
-(2,9,42,38,36,51,77,82),
-(2,9,43,39,37,52,79,84),
-(2,9,44,39,38,53,81,85),
-(2,9,45,40,38,54,83,87),
-(2,9,46,40,39,55,84,89),
-(2,9,47,41,39,56,86,91),
-(2,9,48,41,40,56,88,92),
-(2,9,49,42,41,57,90,94),
-(2,9,50,42,41,58,91,96),
-(2,9,51,43,42,59,93,98),
-(2,9,52,43,43,60,95,99),
-(2,9,53,44,43,61,97,101),
-(2,9,54,45,44,62,99,103),
-(2,9,55,45,45,63,101,105),
-(2,9,56,46,45,64,102,107),
-(2,9,57,46,46,65,104,109),
-(2,9,58,47,47,66,106,110),
-(2,9,59,47,47,67,108,112),
-(2,9,60,48,48,68,110,114),
-(2,9,61,48,49,69,112,116),
-(2,9,62,49,49,70,114,118),
-(2,9,63,50,50,71,116,120),
-(2,9,64,50,51,72,118,122),
-(2,9,65,51,51,73,120,124),
-(2,9,66,52,52,74,122,126),
-(2,9,67,52,53,75,124,128),
-(2,9,68,53,54,76,126,130),
-(2,9,69,53,54,77,128,132),
-(2,9,70,54,55,78,130,134),
-(2,9,71,55,56,88,134,145),
-(2,9,72,56,56,89,135,147),
-(2,9,73,57,57,90,137,150),
-(2,9,74,57,58,91,142,153),
-(2,9,75,58,59,93,142,155),
-(2,9,76,59,60,94,145,158),
-(2,9,77,60,61,95,148,161),
-(2,9,78,60,62,97,150,164),
-(2,9,79,61,63,98,153,167),
-(2,9,80,62,64,99,156,169),
-(3,1,1,25,16,25,19,19),
-(3,1,2,26,17,26,19,19),
-(3,1,3,28,18,27,19,20),
-(3,1,4,29,18,28,19,20),
-(3,1,5,30,19,30,19,20),
-(3,1,6,31,20,31,19,20),
-(3,1,7,33,21,32,20,21),
-(3,1,8,34,22,33,20,21),
-(3,1,9,36,23,35,20,21),
-(3,1,10,37,23,36,20,22),
-(3,1,11,38,24,37,20,22),
-(3,1,12,40,25,38,20,22),
-(3,1,13,41,26,40,20,23),
-(3,1,14,43,27,41,20,23),
-(3,1,15,44,28,42,20,23),
-(3,1,16,46,29,44,21,24),
-(3,1,17,47,30,45,21,24),
-(3,1,18,49,31,46,21,24),
-(3,1,19,50,32,48,21,25),
-(3,1,20,52,33,49,21,25),
-(3,1,21,53,34,51,21,26),
-(3,1,22,55,34,52,21,26),
-(3,1,23,56,35,53,21,26),
-(3,1,24,58,36,55,22,27),
-(3,1,25,59,37,56,22,27),
-(3,1,26,61,38,58,22,27),
-(3,1,27,63,39,59,22,28),
-(3,1,28,64,41,61,22,28),
-(3,1,29,66,42,62,22,29),
-(3,1,30,68,43,64,23,29),
-(3,1,31,69,44,65,23,30),
-(3,1,32,71,45,67,23,30),
-(3,1,33,73,46,68,23,30),
-(3,1,34,75,47,70,23,31),
-(3,1,35,76,48,72,24,31),
-(3,1,36,78,49,73,24,32),
-(3,1,37,80,50,75,24,32),
-(3,1,38,82,51,76,24,33),
-(3,1,39,84,52,78,24,33),
-(3,1,40,85,54,80,24,34),
-(3,1,41,87,55,81,25,34),
-(3,1,42,89,56,83,25,35),
-(3,1,43,91,57,85,25,35),
-(3,1,44,93,58,87,25,36),
-(3,1,45,95,59,88,26,36),
-(3,1,46,97,61,90,26,37),
-(3,1,47,99,62,92,26,37),
-(3,1,48,101,63,94,26,38),
-(3,1,49,102,64,95,26,38),
-(3,1,50,104,65,97,27,39),
-(3,1,51,106,67,99,27,39),
-(3,1,52,108,68,101,27,40),
-(3,1,53,110,69,103,27,40),
-(3,1,54,112,70,104,28,41),
-(3,1,55,115,72,106,28,41),
-(3,1,56,117,73,108,28,42),
-(3,1,57,119,74,110,28,42),
-(3,1,58,121,76,112,29,43),
-(3,1,59,123,77,114,29,43),
-(3,1,60,125,78,116,29,44),
-(3,1,61,127,80,118,29,45),
-(3,1,62,129,81,120,30,45),
-(3,1,63,131,82,122,30,46),
-(3,1,64,134,84,124,30,46),
-(3,1,65,136,85,126,31,47),
-(3,1,66,138,86,128,31,48),
-(3,1,67,140,88,130,31,48),
-(3,1,68,142,89,132,31,49),
-(3,1,69,145,91,134,32,49),
-(3,1,70,147,92,136,32,50),
-(3,1,71,150,93,138,32,51),
-(3,1,72,152,95,141,32,52),
-(3,1,73,164,97,151,32,53),
-(3,1,74,164,98,151,33,53),
-(3,1,75,170,100,156,33,54),
-(3,1,76,173,102,160,33,55),
-(3,1,77,173,104,160,34,56),
-(3,1,78,176,105,162,34,56),
-(3,1,79,183,107,168,34,57),
-(3,1,80,186,109,171,35,58),
-(3,2,1,24,16,25,19,20),
-(3,2,2,25,17,26,20,21),
-(3,2,3,26,17,27,20,21),
-(3,2,4,27,18,28,21,22),
-(3,2,5,28,18,29,22,23),
-(3,2,6,29,19,30,22,24),
-(3,2,7,31,20,31,23,24),
-(3,2,8,32,20,32,24,25),
-(3,2,9,33,21,33,24,26),
-(3,2,10,34,21,34,25,26),
-(3,2,11,35,22,36,26,27),
-(3,2,12,36,23,37,26,28),
-(3,2,13,38,23,38,27,29),
-(3,2,14,39,24,39,28,30),
-(3,2,15,40,25,40,29,30),
-(3,2,16,41,25,41,29,31),
-(3,2,17,43,26,43,30,32),
-(3,2,18,44,27,44,31,33),
-(3,2,19,45,28,45,32,34),
-(3,2,20,47,28,46,32,35),
-(3,2,21,48,29,47,33,35),
-(3,2,22,49,30,49,34,36),
-(3,2,23,51,30,50,35,37),
-(3,2,24,52,31,51,36,38),
-(3,2,25,53,32,52,36,39),
-(3,2,26,55,33,54,37,40),
-(3,2,27,56,33,55,38,41),
-(3,2,28,57,34,56,39,42),
-(3,2,29,59,35,58,40,43),
-(3,2,30,60,36,59,41,43),
-(3,2,31,62,37,60,42,44),
-(3,2,32,63,37,62,42,45),
-(3,2,33,65,38,63,43,46),
-(3,2,34,66,39,65,44,47),
-(3,2,35,68,40,66,45,48),
-(3,2,36,69,41,67,46,49),
-(3,2,37,71,41,69,47,50),
-(3,2,38,72,42,70,48,51),
-(3,2,39,74,43,72,49,52),
-(3,2,40,75,44,73,50,53),
-(3,2,41,77,45,75,51,54),
-(3,2,42,78,46,76,52,55),
-(3,2,43,80,47,78,53,56),
-(3,2,44,82,47,79,54,57),
-(3,2,45,83,48,81,55,59),
-(3,2,46,85,49,82,56,60),
-(3,2,47,87,50,84,57,61),
-(3,2,48,88,51,85,58,62),
-(3,2,49,90,52,87,59,63),
-(3,2,50,92,53,89,60,64),
-(3,2,51,93,54,90,61,65),
-(3,2,52,95,55,92,62,66),
-(3,2,53,97,56,93,63,67),
-(3,2,54,98,57,95,64,69),
-(3,2,55,100,58,97,65,70),
-(3,2,56,102,59,98,66,71),
-(3,2,57,104,60,100,67,72),
-(3,2,58,106,61,102,68,73),
-(3,2,59,107,62,103,69,74),
-(3,2,60,109,63,105,70,76),
-(3,2,61,111,64,107,72,77),
-(3,2,62,113,65,109,73,78),
-(3,2,63,115,66,110,74,79),
-(3,2,64,117,67,112,75,80),
-(3,2,65,118,68,114,76,82),
-(3,2,66,120,69,116,77,83),
-(3,2,67,122,70,118,78,84),
-(3,2,68,124,71,119,80,85),
-(3,2,69,126,72,121,81,87),
-(3,2,70,128,73,123,82,88),
-(3,2,71,150,74,125,83,89),
-(3,2,72,152,75,128,85,91),
-(3,2,73,156,76,130,86,93),
-(3,2,74,158,78,132,88,94),
-(3,2,75,161,79,134,89,96),
-(3,2,76,164,80,137,91,97),
-(3,2,77,166,82,139,92,99),
-(3,2,78,170,83,141,94,101),
-(3,2,79,172,84,144,95,102),
-(3,2,80,175,86,146,97,104),
-(3,3,1,22,19,24,19,20),
-(3,3,2,22,20,25,20,21),
-(3,3,3,23,22,26,20,21),
-(3,3,4,23,23,27,21,22),
-(3,3,5,24,25,28,21,23),
-(3,3,6,24,26,29,22,23),
-(3,3,7,25,27,29,23,24),
-(3,3,8,25,29,30,23,25),
-(3,3,9,25,30,31,24,25),
-(3,3,10,26,32,32,24,26),
-(3,3,11,26,33,33,25,27),
-(3,3,12,27,35,34,26,27),
-(3,3,13,27,36,35,26,28),
-(3,3,14,28,38,36,27,29),
-(3,3,15,28,39,37,28,29),
-(3,3,16,29,41,38,28,30),
-(3,3,17,29,42,39,29,31),
-(3,3,18,30,44,41,30,32),
-(3,3,19,30,46,42,30,32),
-(3,3,20,31,47,43,31,33),
-(3,3,21,32,49,44,32,34),
-(3,3,22,32,51,45,33,35),
-(3,3,23,33,52,46,33,36),
-(3,3,24,33,54,47,34,36),
-(3,3,25,34,56,48,35,37),
-(3,3,26,34,57,49,35,38),
-(3,3,27,35,59,51,36,39),
-(3,3,28,35,61,52,37,40),
-(3,3,29,36,63,53,38,40),
-(3,3,30,37,64,54,39,41),
-(3,3,31,37,66,55,39,42),
-(3,3,32,38,68,57,40,43),
-(3,3,33,38,70,58,41,44),
-(3,3,34,39,71,59,42,45),
-(3,3,35,40,73,60,43,46),
-(3,3,36,40,75,62,43,47),
-(3,3,37,41,77,63,44,47),
-(3,3,38,42,79,64,45,48),
-(3,3,39,42,81,65,46,49),
-(3,3,40,43,83,67,47,50),
-(3,3,41,44,85,68,48,51),
-(3,3,42,44,87,69,49,52),
-(3,3,43,45,89,71,49,53),
-(3,3,44,46,91,72,50,54),
-(3,3,45,46,93,73,51,55),
-(3,3,46,47,95,75,52,56),
-(3,3,47,48,97,76,53,57),
-(3,3,48,49,99,78,54,58),
-(3,3,49,49,101,79,55,59),
-(3,3,50,50,103,80,56,60),
-(3,3,51,51,105,82,57,61),
-(3,3,52,51,107,83,58,62),
-(3,3,53,52,109,85,59,63),
-(3,3,54,53,111,86,60,64),
-(3,3,55,54,113,88,61,65),
-(3,3,56,55,115,89,62,66),
-(3,3,57,55,118,91,62,67),
-(3,3,58,56,120,92,63,68),
-(3,3,59,57,122,94,64,70),
-(3,3,60,58,124,95,65,71),
-(3,3,61,58,126,97,67,72),
-(3,3,62,59,129,98,68,73),
-(3,3,63,60,131,100,69,74),
-(3,3,64,61,133,101,70,75),
-(3,3,65,62,135,103,71,76),
-(3,3,66,63,138,105,72,77),
-(3,3,67,63,140,106,73,78),
-(3,3,68,64,142,108,74,80),
-(3,3,69,65,145,109,75,81),
-(3,3,70,66,147,111,76,82),
-(3,3,71,67,150,113,77,83),
-(3,3,72,68,153,115,78,84),
-(3,3,73,69,156,117,79,86),
-(3,3,74,70,159,119,81,87),
-(3,3,75,71,162,121,82,89),
-(3,3,76,72,165,123,83,90),
-(3,3,77,73,168,125,85,92),
-(3,3,78,74,171,127,86,93),
-(3,3,79,75,174,129,87,95),
-(3,3,80,76,177,131,89,96),
-(3,4,1,23,19,24,19,19),
-(3,4,2,24,20,25,19,19),
-(3,4,3,24,22,25,19,20),
-(3,4,4,25,23,26,19,20),
-(3,4,5,26,25,27,20,20),
-(3,4,6,27,26,27,20,21),
-(3,4,7,28,28,28,20,21),
-(3,4,8,28,29,29,20,22),
-(3,4,9,29,31,30,20,22),
-(3,4,10,30,32,30,20,22),
-(3,4,11,31,34,31,21,23),
-(3,4,12,32,36,32,21,23),
-(3,4,13,33,37,33,21,24),
-(3,4,14,33,39,33,21,24),
-(3,4,15,34,40,34,21,25),
-(3,4,16,35,42,35,22,25),
-(3,4,17,36,44,36,22,25),
-(3,4,18,37,45,37,22,26),
-(3,4,19,38,47,38,22,26),
-(3,4,20,39,49,38,22,27),
-(3,4,21,40,51,39,23,27),
-(3,4,22,41,52,40,23,28),
-(3,4,23,42,54,41,23,28),
-(3,4,24,43,56,42,23,29),
-(3,4,25,44,58,43,24,29),
-(3,4,26,44,59,44,24,30),
-(3,4,27,45,61,44,24,30),
-(3,4,28,46,63,45,24,31),
-(3,4,29,47,65,46,25,31),
-(3,4,30,48,67,47,25,32),
-(3,4,31,49,69,48,25,32),
-(3,4,32,51,71,49,25,33),
-(3,4,33,52,72,50,26,33),
-(3,4,34,53,74,51,26,34),
-(3,4,35,54,76,52,26,34),
-(3,4,36,55,78,53,26,35),
-(3,4,37,56,80,54,27,35),
-(3,4,38,57,82,55,27,36),
-(3,4,39,58,84,56,27,37),
-(3,4,40,59,86,57,28,37),
-(3,4,41,60,88,58,28,38),
-(3,4,42,61,90,59,28,38),
-(3,4,43,63,92,60,28,39),
-(3,4,44,64,95,61,29,39),
-(3,4,45,65,97,62,29,40),
-(3,4,46,66,99,63,29,41),
-(3,4,47,67,101,64,30,41),
-(3,4,48,68,103,66,30,42),
-(3,4,49,70,105,67,30,43),
-(3,4,50,71,107,68,31,43),
-(3,4,51,72,110,69,31,44),
-(3,4,52,73,112,70,31,44),
-(3,4,53,74,114,71,32,45),
-(3,4,54,76,116,72,32,46),
-(3,4,55,77,118,73,32,46),
-(3,4,56,78,121,75,33,47),
-(3,4,57,80,123,76,33,48),
-(3,4,58,81,125,77,33,48),
-(3,4,59,82,128,78,34,49),
-(3,4,60,83,130,79,34,50),
-(3,4,61,85,132,81,34,51),
-(3,4,62,86,135,82,35,51),
-(3,4,63,87,137,83,35,52),
-(3,4,64,89,139,84,36,53),
-(3,4,65,90,142,86,36,53),
-(3,4,66,91,144,87,36,54),
-(3,4,67,93,147,88,37,55),
-(3,4,68,94,149,89,37,56),
-(3,4,69,96,152,91,38,56),
-(3,4,70,97,154,92,38,57),
-(3,4,71,99,157,93,38,58),
-(3,4,72,101,160,96,39,58),
-(3,4,73,102,163,97,39,59),
-(3,4,74,104,166,98,40,60),
-(3,4,75,106,169,100,40,61),
-(3,4,76,107,172,101,40,62),
-(3,4,77,109,175,103,41,63),
-(3,4,78,111,179,105,41,64),
-(3,4,79,113,182,106,42,65),
-(3,4,80,115,185,108,42,66),
-(3,5,1,22,16,23,21,22),
-(3,5,2,22,16,23,22,23),
-(3,5,3,22,16,24,24,25),
-(3,5,4,22,17,24,25,26),
-(3,5,5,23,17,24,26,27),
-(3,5,6,23,17,25,28,29),
-(3,5,7,23,17,25,29,30),
-(3,5,8,23,18,26,30,32),
-(3,5,9,23,18,26,32,33),
-(3,5,10,23,18,26,33,35),
-(3,5,11,24,18,27,35,36),
-(3,5,12,24,19,27,36,38),
-(3,5,13,24,19,28,37,39),
-(3,5,14,24,19,28,39,41),
-(3,5,15,24,19,28,40,42),
-(3,5,16,24,20,29,42,44),
-(3,5,17,25,20,29,43,45),
-(3,5,18,25,20,30,45,47),
-(3,5,19,25,21,30,46,49),
-(3,5,20,25,21,31,48,50),
-(3,5,21,25,21,31,50,52),
-(3,5,22,26,22,31,51,53),
-(3,5,23,26,22,32,53,55),
-(3,5,24,26,22,32,54,57),
-(3,5,25,26,22,33,56,58),
-(3,5,26,27,23,33,58,60),
-(3,5,27,27,23,34,59,62),
-(3,5,28,27,23,34,61,64),
-(3,5,29,27,24,35,63,65),
-(3,5,30,28,24,35,64,67),
-(3,5,31,28,24,36,66,69),
-(3,5,32,28,25,36,68,71),
-(3,5,33,28,25,37,70,72),
-(3,5,34,29,26,38,71,74),
-(3,5,35,29,26,38,73,76),
-(3,5,36,29,26,39,75,78),
-(3,5,37,29,27,39,77,80),
-(3,5,38,30,27,40,78,82),
-(3,5,39,30,27,40,80,84),
-(3,5,40,30,28,41,82,86),
-(3,5,41,31,28,41,84,88),
-(3,5,42,31,29,42,86,89),
-(3,5,43,31,29,43,88,91),
-(3,5,44,32,29,43,90,93),
-(3,5,45,32,30,44,92,95),
-(3,5,46,32,30,44,93,97),
-(3,5,47,32,30,45,95,99),
-(3,5,48,33,31,46,97,101),
-(3,5,49,33,31,46,99,103),
-(3,5,50,33,32,47,101,106),
-(3,5,51,34,32,48,103,108),
-(3,5,52,34,33,48,105,110),
-(3,5,53,35,33,49,107,112),
-(3,5,54,35,33,50,109,114),
-(3,5,55,35,34,50,111,116),
-(3,5,56,36,34,51,113,118),
-(3,5,57,36,35,52,116,120),
-(3,5,58,36,35,52,118,123),
-(3,5,59,37,36,53,120,125),
-(3,5,60,37,36,54,122,127),
-(3,5,61,37,37,54,124,129),
-(3,5,62,38,37,55,126,131),
-(3,5,63,38,38,56,128,134),
-(3,5,64,39,38,57,131,136),
-(3,5,65,39,39,57,133,138),
-(3,5,66,39,39,58,135,141),
-(3,5,67,40,40,59,137,143),
-(3,5,68,40,40,59,139,145),
-(3,5,69,41,40,60,142,148),
-(3,5,70,41,41,61,144,150),
-(3,5,71,41,42,62,147,153),
-(3,5,72,42,42,62,150,163),
-(3,5,73,42,43,63,153,166),
-(3,5,74,43,43,64,155,170),
-(3,5,75,43,44,65,158,173),
-(3,5,76,43,45,66,161,176),
-(3,5,77,44,45,67,164,179),
-(3,5,78,44,46,68,167,182),
-(3,5,79,45,46,69,170,184),
-(3,5,80,45,47,70,173,189),
-(3,6,1,25,16,25,19,19),
-(3,6,2,26,17,26,19,19),
-(3,6,3,28,18,27,19,20),
-(3,6,4,29,18,28,19,20),
-(3,6,5,30,19,30,19,20),
-(3,6,6,31,20,31,19,20),
-(3,6,7,33,21,32,20,21),
-(3,6,8,34,22,33,20,21),
-(3,6,9,36,23,35,20,21),
-(3,6,10,37,23,36,20,22),
-(3,6,11,38,24,37,20,22),
-(3,6,12,40,25,38,20,22),
-(3,6,13,41,26,40,20,23),
-(3,6,14,43,27,41,20,23),
-(3,6,15,44,28,42,20,23),
-(3,6,16,46,29,44,21,24),
-(3,6,17,47,30,45,21,24),
-(3,6,18,49,31,46,21,24),
-(3,6,19,50,32,48,21,25),
-(3,6,20,52,33,49,21,25),
-(3,6,21,53,34,51,21,26),
-(3,6,22,55,34,52,21,26),
-(3,6,23,56,35,53,21,26),
-(3,6,24,58,36,55,22,27),
-(3,6,25,59,37,56,22,27),
-(3,6,26,61,38,58,22,27),
-(3,6,27,63,39,59,22,28),
-(3,6,28,64,41,61,22,28),
-(3,6,29,66,42,62,22,29),
-(3,6,30,68,43,64,23,29),
-(3,6,31,69,44,65,23,30),
-(3,6,32,71,45,67,23,30),
-(3,6,33,73,46,68,23,30),
-(3,6,34,75,47,70,23,31),
-(3,6,35,76,48,72,24,31),
-(3,6,36,78,49,73,24,32),
-(3,6,37,80,50,75,24,32),
-(3,6,38,82,51,76,24,33),
-(3,6,39,84,52,78,24,33),
-(3,6,40,85,54,80,24,34),
-(3,6,41,87,55,81,25,34),
-(3,6,42,89,56,83,25,35),
-(3,6,43,91,57,85,25,35),
-(3,6,44,93,58,87,25,36),
-(3,6,45,95,59,88,26,36),
-(3,6,46,97,61,90,26,37),
-(3,6,47,99,62,92,26,37),
-(3,6,48,101,63,94,26,38),
-(3,6,49,102,64,95,26,38),
-(3,6,50,104,65,97,27,39),
-(3,6,51,106,67,99,27,39),
-(3,6,52,108,68,99,27,40),
-(3,6,53,109,68,101,27,40),
-(3,6,54,110,69,101,28,41),
-(3,6,55,110,69,102,28,41),
-(3,6,56,113,71,105,28,42),
-(3,6,57,118,72,107,28,42),
-(3,6,58,120,73,109,29,43),
-(3,6,59,123,75,111,29,43),
-(3,6,60,125,76,113,29,44),
-(3,6,61,126,77,115,29,45),
-(3,6,62,127,79,117,29,45),
-(3,6,63,129,80,120,30,46),
-(3,6,64,132,82,122,30,46),
-(3,6,65,135,83,124,30,47),
-(3,6,66,137,85,127,30,48),
-(3,6,67,144,86,129,31,48),
-(3,6,68,146,88,131,31,49),
-(3,6,69,149,89,133,31,50),
-(3,6,70,152,91,136,31,50),
-(3,6,71,154,93,139,32,51),
-(3,6,72,157,94,141,32,52),
-(3,6,73,160,96,144,32,53),
-(3,6,74,163,98,146,32,53),
-(3,6,75,166,99,150,33,54),
-(3,6,76,169,101,152,33,55),
-(3,6,77,172,103,155,33,56),
-(3,6,78,176,104,157,33,56),
-(3,6,79,179,106,160,34,57),
-(3,6,80,182,108,163,34,58),
-(4,1,1,20,25,21,20,20),
-(4,1,2,21,26,22,20,20),
-(4,1,3,23,27,23,20,21),
-(4,1,4,24,27,25,20,21),
-(4,1,5,25,28,26,20,21),
-(4,1,6,27,29,27,20,21),
-(4,1,7,28,30,28,21,22),
-(4,1,8,29,31,29,21,22),
-(4,1,9,31,31,31,21,22),
-(4,1,10,32,32,32,21,23),
-(4,1,11,33,33,33,21,23),
-(4,1,12,35,34,34,21,23),
-(4,1,13,36,35,36,21,24),
-(4,1,14,38,36,37,21,24),
-(4,1,15,39,37,38,21,24),
-(4,1,16,41,37,40,21,25),
-(4,1,17,42,38,41,22,25),
-(4,1,18,44,39,43,22,25),
-(4,1,19,45,40,44,22,26),
-(4,1,20,47,41,45,22,26),
-(4,1,21,48,42,47,22,26),
-(4,1,22,50,43,48,22,27),
-(4,1,23,52,44,50,22,27),
-(4,1,24,53,45,51,23,28),
-(4,1,25,55,46,52,23,28),
-(4,1,26,56,47,54,23,28),
-(4,1,27,58,48,55,23,29),
-(4,1,28,60,49,57,23,29),
-(4,1,29,61,50,58,23,30),
-(4,1,30,63,51,60,24,30),
-(4,1,31,65,52,62,24,30),
-(4,1,32,66,53,63,24,31),
-(4,1,33,68,54,65,24,31),
-(4,1,34,70,55,66,24,32),
-(4,1,35,72,56,68,24,32),
-(4,1,36,73,58,69,25,33),
-(4,1,37,75,59,71,25,33),
-(4,1,38,77,60,73,25,34),
-(4,1,39,79,61,74,25,34),
-(4,1,40,81,62,76,25,35),
-(4,1,41,82,63,78,26,35),
-(4,1,42,84,64,79,26,35),
-(4,1,43,86,66,81,26,36),
-(4,1,44,88,67,83,26,36),
-(4,1,45,90,68,85,26,37),
-(4,1,46,92,69,86,27,37),
-(4,1,47,94,70,88,27,38),
-(4,1,48,96,72,90,27,38),
-(4,1,49,98,73,92,27,39),
-(4,1,50,100,74,93,28,40),
-(4,1,51,102,75,95,28,40),
-(4,1,52,104,77,97,28,41),
-(4,1,53,106,78,99,28,41),
-(4,1,54,108,79,101,29,42),
-(4,1,55,110,80,103,29,42),
-(4,1,56,112,82,104,29,43),
-(4,1,57,114,83,106,29,43),
-(4,1,58,116,84,108,30,44),
-(4,1,59,118,86,110,30,44),
-(4,1,60,120,87,112,30,45),
-(4,1,61,122,88,114,30,46),
-(4,1,62,124,90,116,31,46),
-(4,1,63,127,91,118,31,47),
-(4,1,64,129,92,120,31,47),
-(4,1,65,131,94,122,32,48),
-(4,1,66,133,95,124,32,49),
-(4,1,67,135,97,126,32,49),
-(4,1,68,138,98,128,32,50),
-(4,1,69,140,100,130,33,50),
-(4,1,70,142,101,132,33,51),
-(4,1,71,145,102,134,33,52),
-(4,1,72,147,104,137,33,53),
-(4,1,73,150,106,139,33,54),
-(4,1,74,153,107,142,34,54),
-(4,1,75,156,109,144,34,55),
-(4,1,76,159,111,148,34,56),
-(4,1,77,162,113,150,35,57),
-(4,1,78,165,114,152,35,57),
-(4,1,79,178,116,164,35,58),
-(4,1,80,181,118,167,36,59),
-(4,3,1,17,28,20,20,21),
-(4,3,2,17,29,21,21,22),
-(4,3,3,18,31,22,21,22),
-(4,3,4,18,32,23,22,23),
-(4,3,5,19,33,24,22,24),
-(4,3,6,19,35,25,23,24),
-(4,3,7,20,36,26,24,25),
-(4,3,8,20,38,27,24,25),
-(4,3,9,21,39,27,25,26),
-(4,3,10,21,40,28,25,27),
-(4,3,11,22,42,29,26,28),
-(4,3,12,22,43,30,27,28),
-(4,3,13,23,45,31,27,29),
-(4,3,14,23,46,32,28,30),
-(4,3,15,24,48,34,29,30),
-(4,3,16,24,50,35,29,31),
-(4,3,17,25,51,36,30,32),
-(4,3,18,25,53,37,31,33),
-(4,3,19,26,54,38,31,33),
-(4,3,20,26,56,39,32,34),
-(4,3,21,27,57,40,33,35),
-(4,3,22,27,59,41,33,36),
-(4,3,23,28,61,42,34,36),
-(4,3,24,28,62,43,35,37),
-(4,3,25,29,64,44,36,38),
-(4,3,26,30,66,46,36,39),
-(4,3,27,30,68,47,37,40),
-(4,3,28,31,69,48,38,41),
-(4,3,29,31,71,49,39,41),
-(4,3,30,32,73,50,39,42),
-(4,3,31,33,75,52,40,43),
-(4,3,32,33,76,53,41,44),
-(4,3,33,34,78,54,42,45),
-(4,3,34,34,80,55,43,46),
-(4,3,35,35,82,57,44,47),
-(4,3,36,36,84,58,44,48),
-(4,3,37,36,86,59,45,48),
-(4,3,38,37,87,60,46,49),
-(4,3,39,38,89,62,47,50),
-(4,3,40,38,91,63,48,51),
-(4,3,41,39,93,64,49,52),
-(4,3,42,40,95,66,49,53),
-(4,3,43,40,97,67,50,54),
-(4,3,44,41,99,68,51,55),
-(4,3,45,42,101,70,52,56),
-(4,3,46,42,103,71,53,57),
-(4,3,47,43,105,72,54,58),
-(4,3,48,44,107,74,55,59),
-(4,3,49,45,109,75,56,60),
-(4,3,50,45,111,77,57,61),
-(4,3,51,46,113,78,58,62),
-(4,3,52,47,115,79,59,63),
-(4,3,53,47,118,81,60,64),
-(4,3,54,48,120,82,61,65),
-(4,3,55,49,122,84,61,66),
-(4,3,56,50,124,85,62,67),
-(4,3,57,50,126,87,63,68),
-(4,3,58,51,128,88,64,69),
-(4,3,59,52,131,90,65,70),
-(4,3,60,53,133,91,66,72),
-(4,3,61,54,135,93,67,73),
-(4,3,62,54,137,94,69,74),
-(4,3,63,55,140,96,70,75),
-(4,3,64,56,142,97,71,76),
-(4,3,65,57,144,99,72,77),
-(4,3,66,58,147,101,73,78),
-(4,3,67,58,149,102,74,79),
-(4,3,68,59,151,104,75,81),
-(4,3,69,60,154,105,76,82),
-(4,3,70,61,156,107,77,83),
-(4,3,71,62,159,109,78,84),
-(4,3,72,63,162,111,79,85),
-(4,3,73,64,165,113,80,87),
-(4,3,74,65,168,115,82,88),
-(4,3,75,66,171,117,83,90),
-(4,3,76,67,174,119,84,91),
-(4,3,77,68,177,121,86,93),
-(4,3,78,69,180,123,87,94),
-(4,3,79,70,190,125,91,96),
-(4,3,80,71,193,127,93,97),
-(4,4,1,18,28,20,20,20),
-(4,4,2,19,29,21,20,20),
-(4,4,3,20,31,21,20,21),
-(4,4,4,20,32,22,20,21),
-(4,4,5,21,34,23,21,21),
-(4,4,6,22,35,24,21,22),
-(4,4,7,23,37,24,21,22),
-(4,4,8,24,38,25,21,23),
-(4,4,9,24,40,26,21,23),
-(4,4,10,25,41,26,21,23),
-(4,4,11,26,43,27,22,24),
-(4,4,12,27,44,28,22,24),
-(4,4,13,28,46,29,22,25),
-(4,4,14,29,48,30,22,25),
-(4,4,15,29,49,30,22,25),
-(4,4,16,30,51,31,23,26),
-(4,4,17,31,52,32,23,26),
-(4,4,18,32,54,33,23,27),
-(4,4,19,33,56,34,23,27),
-(4,4,20,34,57,35,23,28),
-(4,4,21,35,59,35,24,28),
-(4,4,22,36,61,36,24,29),
-(4,4,23,37,63,37,24,29),
-(4,4,24,38,64,38,24,30),
-(4,4,25,39,66,39,25,30),
-(4,4,26,40,68,40,25,31),
-(4,4,27,41,70,41,25,31),
-(4,4,28,42,72,42,25,32),
-(4,4,29,43,73,43,25,32),
-(4,4,30,44,75,43,26,33),
-(4,4,31,45,77,44,26,33),
-(4,4,32,46,79,45,26,34),
-(4,4,33,47,81,46,27,34),
-(4,4,34,48,83,47,27,35),
-(4,4,35,49,85,48,27,35),
-(4,4,36,50,87,49,27,36),
-(4,4,37,51,89,50,28,36),
-(4,4,38,52,91,51,28,37),
-(4,4,39,53,93,52,28,38),
-(4,4,40,54,95,53,28,38),
-(4,4,41,56,97,54,29,39),
-(4,4,42,57,99,55,29,39),
-(4,4,43,58,101,56,29,40),
-(4,4,44,59,103,57,30,40),
-(4,4,45,60,105,59,30,41),
-(4,4,46,61,107,60,30,42),
-(4,4,47,62,109,61,31,42),
-(4,4,48,64,112,62,31,43),
-(4,4,49,65,114,63,31,44),
-(4,4,50,66,116,64,32,44),
-(4,4,51,67,118,65,32,45),
-(4,4,52,68,120,66,32,45),
-(4,4,53,70,123,67,33,46),
-(4,4,54,71,125,69,33,47),
-(4,4,55,72,127,70,33,47),
-(4,4,56,73,129,71,34,48),
-(4,4,57,75,132,72,34,49),
-(4,4,58,76,134,73,34,49),
-(4,4,59,77,136,74,35,50),
-(4,4,60,79,139,76,35,51),
-(4,4,61,80,141,77,35,51),
-(4,4,62,81,143,78,36,52),
-(4,4,63,82,146,79,36,53),
-(4,4,64,84,148,80,37,54),
-(4,4,65,85,151,82,37,54),
-(4,4,66,87,153,83,37,55),
-(4,4,67,88,156,84,38,56),
-(4,4,68,89,158,85,38,57),
-(4,4,69,91,160,87,39,57),
-(4,4,70,92,163,88,39,58),
-(4,4,71,94,166,90,39,59),
-(4,4,72,96,169,91,40,59),
-(4,4,73,97,172,93,40,60),
-(4,4,74,99,175,94,41,61),
-(4,4,75,101,178,96,41,62),
-(4,4,76,102,181,97,41,63),
-(4,4,77,104,184,99,42,64),
-(4,4,78,106,188,101,42,65),
-(4,4,79,108,191,102,43,66),
-(4,4,80,110,194,104,43,67),
-(4,5,1,17,25,19,22,23),
-(4,5,2,17,25,19,23,24),
-(4,5,3,17,25,20,25,26),
-(4,5,4,17,26,20,26,27),
-(4,5,5,18,26,20,27,28),
-(4,5,6,18,26,21,29,30),
-(4,5,7,18,26,21,30,31),
-(4,5,8,18,26,22,31,33),
-(4,5,9,18,27,22,33,34),
-(4,5,10,19,27,22,34,36),
-(4,5,11,19,27,23,36,37),
-(4,5,12,19,27,23,37,39),
-(4,5,13,19,28,24,38,40),
-(4,5,14,19,28,24,40,42),
-(4,5,15,19,28,25,41,43),
-(4,5,16,20,28,25,43,45),
-(4,5,17,20,29,25,44,46),
-(4,5,18,20,29,26,46,48),
-(4,5,19,20,29,26,47,49),
-(4,5,20,21,30,27,49,51),
-(4,5,21,21,30,27,51,53),
-(4,5,22,21,30,28,52,54),
-(4,5,23,21,30,28,54,56),
-(4,5,24,21,31,29,55,58),
-(4,5,25,22,31,29,57,59),
-(4,5,26,22,31,30,59,61),
-(4,5,27,22,32,30,60,63),
-(4,5,28,22,32,31,62,65),
-(4,5,29,23,32,31,64,66),
-(4,5,30,23,33,32,65,68),
-(4,5,31,23,33,32,67,70),
-(4,5,32,23,33,33,69,72),
-(4,5,33,24,34,33,70,73),
-(4,5,34,24,34,34,72,75),
-(4,5,35,24,34,34,74,77),
-(4,5,36,24,35,35,76,79),
-(4,5,37,25,35,35,78,81),
-(4,5,38,25,35,36,79,83),
-(4,5,39,25,36,37,81,85),
-(4,5,40,26,36,37,83,87),
-(4,5,41,26,37,38,85,88),
-(4,5,42,26,37,38,87,90),
-(4,5,43,27,37,39,89,92),
-(4,5,44,27,38,39,91,94),
-(4,5,45,27,38,40,92,96),
-(4,5,46,27,39,41,94,98),
-(4,5,47,28,39,41,96,100),
-(4,5,48,28,39,42,98,102),
-(4,5,49,28,40,43,100,104),
-(4,5,50,29,40,43,102,106),
-(4,5,51,29,41,44,104,109),
-(4,5,52,29,41,44,106,111),
-(4,5,53,30,42,45,108,113),
-(4,5,54,30,42,46,110,115),
-(4,5,55,30,43,46,112,117),
-(4,5,56,31,43,47,114,119),
-(4,5,57,31,43,48,117,121),
-(4,5,58,31,44,48,119,124),
-(4,5,59,32,44,49,121,126),
-(4,5,60,32,45,50,123,128),
-(4,5,61,33,45,51,125,130),
-(4,5,62,33,46,51,127,132),
-(4,5,63,33,46,52,129,135),
-(4,5,64,34,47,53,132,137),
-(4,5,65,34,47,53,134,139),
-(4,5,66,34,48,54,136,142),
-(4,5,67,35,48,55,138,144),
-(4,5,68,35,49,56,140,146),
-(4,5,69,36,49,56,143,149),
-(4,5,70,36,50,57,145,151),
-(4,5,71,36,51,58,148,161),
-(4,5,72,37,51,58,151,164),
-(4,5,73,37,52,59,154,168),
-(4,5,74,38,52,60,156,171),
-(4,5,75,38,53,61,159,174),
-(4,5,76,38,54,62,162,177),
-(4,5,77,39,54,63,165,180),
-(4,5,78,39,55,64,168,183),
-(4,5,79,40,55,65,171,186),
-(4,5,80,40,56,66,200,191),
-(4,6,1,20,25,21,20,20),
-(4,6,2,21,26,22,20,20),
-(4,6,3,23,27,23,20,21),
-(4,6,4,24,27,25,20,21),
-(4,6,5,25,28,26,20,21),
-(4,6,6,27,29,27,20,21),
-(4,6,7,28,30,28,21,22),
-(4,6,8,29,31,29,21,22),
-(4,6,9,31,31,31,21,22),
-(4,6,10,32,32,32,21,23),
-(4,6,11,33,33,33,21,23),
-(4,6,12,35,34,34,21,23),
-(4,6,13,36,35,36,21,24),
-(4,6,14,38,36,37,21,24),
-(4,6,15,39,37,38,21,24),
-(4,6,16,41,37,40,21,25),
-(4,6,17,42,38,41,22,25),
-(4,6,18,44,39,43,22,25),
-(4,6,19,45,40,44,22,26),
-(4,6,20,47,41,45,22,26),
-(4,6,21,48,42,47,22,26),
-(4,6,22,50,43,48,22,27),
-(4,6,23,52,44,50,22,27),
-(4,6,24,53,45,51,23,28),
-(4,6,25,55,46,52,23,28),
-(4,6,26,56,47,54,23,28),
-(4,6,27,58,48,55,23,29),
-(4,6,28,60,49,57,23,29),
-(4,6,29,61,50,58,23,30),
-(4,6,30,63,51,60,24,30),
-(4,6,31,65,52,62,24,30),
-(4,6,32,66,53,63,24,31),
-(4,6,33,68,54,65,24,31),
-(4,6,34,70,55,66,24,32),
-(4,6,35,72,56,68,24,32),
-(4,6,36,73,58,69,25,33),
-(4,6,37,75,59,71,25,33),
-(4,6,38,77,60,73,25,34),
-(4,6,39,79,61,74,25,34),
-(4,6,40,81,62,76,25,35),
-(4,6,41,82,63,78,26,35),
-(4,6,42,84,64,79,26,35),
-(4,6,43,86,66,81,26,36),
-(4,6,44,88,67,83,26,36),
-(4,6,45,90,68,85,26,37),
-(4,6,46,92,69,86,27,37),
-(4,6,47,94,70,88,27,38),
-(4,6,48,96,72,90,27,38),
-(4,6,49,98,73,92,27,39),
-(4,6,50,100,74,93,28,40),
-(4,6,51,101,75,94,28,40),
-(4,6,52,102,76,95,28,41),
-(4,6,53,103,77,96,28,41),
-(4,6,54,104,77,97,29,42),
-(4,6,55,105,78,98,29,42),
-(4,6,56,108,80,101,29,43),
-(4,6,57,113,81,103,29,43),
-(4,6,58,115,82,105,30,44),
-(4,6,59,115,84,107,30,44),
-(4,6,60,120,85,109,30,45),
-(4,6,61,122,86,111,30,46),
-(4,6,62,122,88,113,30,46),
-(4,6,63,127,89,116,31,47),
-(4,6,64,127,91,118,31,47),
-(4,6,65,133,92,120,31,48),
-(4,6,66,135,94,123,31,49),
-(4,6,67,136,95,125,32,49),
-(4,6,68,137,97,127,32,50),
-(4,6,69,140,98,130,32,51),
-(4,6,70,147,100,132,32,51),
-(4,6,71,154,102,135,33,52),
-(4,6,72,156,103,137,33,53),
-(4,6,73,157,105,140,33,54),
-(4,6,74,158,107,142,33,54),
-(4,6,75,161,108,145,34,55),
-(4,6,76,164,110,148,34,56),
-(4,6,77,167,112,150,34,57),
-(4,6,78,170,113,153,34,57),
-(4,6,79,172,115,156,35,58),
-(4,6,80,177,117,159,35,59),
-(4,11,1,18,25,19,22,22),
-(4,11,2,19,25,20,23,23),
-(4,11,3,19,26,20,24,24),
-(4,11,4,20,26,21,25,26),
-(4,11,5,20,27,22,26,27),
-(4,11,6,21,27,22,27,28),
-(4,11,7,21,28,23,28,29),
-(4,11,8,22,28,24,29,30),
-(4,11,9,23,29,24,30,32),
-(4,11,10,23,29,25,32,33),
-(4,11,11,24,30,26,33,34),
-(4,11,12,24,31,26,34,35),
-(4,11,13,25,31,27,35,37),
-(4,11,14,26,32,28,36,38),
-(4,11,15,26,32,29,37,39),
-(4,11,16,27,33,29,38,41),
-(4,11,17,28,33,30,40,42),
-(4,11,18,28,34,31,41,43),
-(4,11,19,29,35,32,42,45),
-(4,11,20,30,35,32,43,46),
-(4,11,21,30,36,33,45,48),
-(4,11,22,31,36,34,46,49),
-(4,11,23,32,37,35,47,51),
-(4,11,24,32,38,36,48,52),
-(4,11,25,33,38,36,50,53),
-(4,11,26,34,39,37,51,55),
-(4,11,27,35,40,38,52,56),
-(4,11,28,35,40,39,54,58),
-(4,11,29,36,41,40,55,59),
-(4,11,30,37,42,41,56,61),
-(4,11,31,38,42,42,58,62),
-(4,11,32,38,43,42,59,64),
-(4,11,33,39,44,43,60,66),
-(4,11,34,40,44,44,62,67),
-(4,11,35,41,45,45,63,69),
-(4,11,36,42,46,46,65,70),
-(4,11,37,42,47,47,66,72),
-(4,11,38,43,47,48,67,74),
-(4,11,39,44,48,49,69,75),
-(4,11,40,45,49,50,70,77),
-(4,11,41,46,50,51,72,79),
-(4,11,42,46,50,52,73,80),
-(4,11,43,47,51,53,75,82),
-(4,11,44,48,52,54,76,84),
-(4,11,45,49,53,55,78,85),
-(4,11,46,50,54,56,79,87),
-(4,11,47,51,54,57,81,89),
-(4,11,48,52,55,58,83,91),
-(4,11,49,53,56,59,84,93),
-(4,11,50,53,57,60,86,94),
-(4,11,51,54,58,61,87,96),
-(4,11,52,55,59,62,89,98),
-(4,11,53,56,59,63,91,100),
-(4,11,54,57,60,64,92,102),
-(4,11,55,58,61,65,94,103),
-(4,11,56,59,62,66,95,105),
-(4,11,57,60,63,67,97,107),
-(4,11,58,61,64,68,99,109),
-(4,11,59,62,65,69,101,111),
-(4,11,60,63,66,70,102,113),
-(4,11,61,64,66,72,104,115),
-(4,11,62,65,67,73,106,117),
-(4,11,63,66,68,74,107,119),
-(4,11,64,67,69,75,109,121),
-(4,11,65,68,70,76,111,123),
-(4,11,66,69,71,77,113,125),
-(4,11,67,70,72,78,115,127),
-(4,11,68,71,73,80,116,129),
-(4,11,69,72,74,81,118,131),
-(4,11,70,73,75,82,120,133),
-(4,11,71,75,76,83,122,135),
-(4,11,72,76,78,85,125,138),
-(4,11,73,77,79,86,127,140),
-(4,11,74,78,80,88,131,143),
-(4,11,75,80,81,89,133,145),
-(4,11,76,81,82,91,134,148),
-(4,11,77,82,83,92,136,151),
-(4,11,78,84,85,94,138,153),
-(4,11,79,85,86,95,141,156),
-(4,11,80,86,87,97,143,159),
-(5,1,1,22,18,23,18,25),
-(5,1,2,23,19,24,18,25),
-(5,1,3,25,20,25,18,26),
-(5,1,4,26,20,26,18,26),
-(5,1,5,27,21,28,18,26),
-(5,1,6,29,22,29,18,26),
-(5,1,7,30,23,30,19,27),
-(5,1,8,31,24,31,19,27),
-(5,1,9,33,25,33,19,27),
-(5,1,10,34,25,34,19,28),
-(5,1,11,35,26,35,19,28),
-(5,1,12,37,27,36,19,28),
-(5,1,13,38,28,38,19,28),
-(5,1,14,40,29,39,19,29),
-(5,1,15,41,30,40,19,29),
-(5,1,16,43,31,42,20,29),
-(5,1,17,44,32,43,20,30),
-(5,1,18,46,33,44,20,30),
-(5,1,19,47,34,46,20,31),
-(5,1,20,49,34,47,20,31),
-(5,1,21,50,35,49,20,31),
-(5,1,22,52,36,50,20,32),
-(5,1,23,53,37,51,21,32),
-(5,1,24,55,38,53,21,32),
-(5,1,25,57,39,54,21,33),
-(5,1,26,58,40,56,21,33),
-(5,1,27,60,41,57,21,34),
-(5,1,28,62,42,59,21,34),
-(5,1,29,63,43,60,21,34),
-(5,1,30,65,44,62,22,35),
-(5,1,31,67,46,63,22,35),
-(5,1,32,68,47,65,22,36),
-(5,1,33,70,48,67,22,36),
-(5,1,34,72,49,68,22,36),
-(5,1,35,74,50,70,23,37),
-(5,1,36,75,51,71,23,37),
-(5,1,37,77,52,73,23,38),
-(5,1,38,79,53,75,23,38),
-(5,1,39,81,54,76,23,39),
-(5,1,40,83,55,78,24,39),
-(5,1,41,84,57,80,24,40),
-(5,1,42,86,58,81,24,40),
-(5,1,43,88,59,83,24,41),
-(5,1,44,90,60,85,24,41),
-(5,1,45,92,61,86,25,42),
-(5,1,46,94,62,88,25,42),
-(5,1,47,96,64,90,25,43),
-(5,1,48,98,65,92,25,43),
-(5,1,49,100,66,93,25,44),
-(5,1,50,102,67,95,26,44),
-(5,1,51,104,69,97,26,45),
-(5,1,52,106,70,99,26,45),
-(5,1,53,108,71,101,26,46),
-(5,1,54,110,72,103,27,46),
-(5,1,55,112,74,104,27,47),
-(5,1,56,114,75,106,27,48),
-(5,1,57,116,76,108,27,48),
-(5,1,58,118,78,110,28,49),
-(5,1,59,120,79,112,28,49),
-(5,1,60,122,80,114,28,50),
-(5,1,61,124,82,116,28,50),
-(5,1,62,126,83,118,29,51),
-(5,1,63,128,84,120,29,52),
-(5,1,64,131,86,122,29,52),
-(5,1,65,133,87,124,30,53),
-(5,1,66,135,88,126,30,53),
-(5,1,67,137,90,128,30,54),
-(5,1,68,139,91,130,30,55),
-(5,1,69,142,93,132,31,55),
-(5,1,70,144,94,134,31,56),
-(5,1,71,147,95,136,31,57),
-(5,1,72,150,97,139,31,58),
-(5,1,73,152,99,141,31,59),
-(5,1,74,155,100,144,32,59),
-(5,1,75,158,102,146,32,60),
-(5,1,76,163,104,149,32,61),
-(5,1,77,167,106,152,33,62),
-(5,1,78,167,107,154,33,62),
-(5,1,79,170,109,157,33,63),
-(5,1,80,173,111,160,34,64),
-(5,4,1,20,21,22,18,25),
-(5,4,2,21,22,23,18,25),
-(5,4,3,22,24,23,18,26),
-(5,4,4,22,25,24,18,26),
-(5,4,5,23,27,25,19,26),
-(5,4,6,24,28,25,19,27),
-(5,4,7,25,30,26,19,27),
-(5,4,8,25,31,27,19,27),
-(5,4,9,26,33,28,19,28),
-(5,4,10,27,34,28,19,28),
-(5,4,11,28,36,29,20,29),
-(5,4,12,29,38,30,20,29),
-(5,4,13,30,39,31,20,29),
-(5,4,14,31,41,32,20,30),
-(5,4,15,31,42,32,20,30),
-(5,4,16,32,44,33,21,31),
-(5,4,17,33,46,34,21,31),
-(5,4,18,34,47,35,21,32),
-(5,4,19,35,49,36,21,32),
-(5,4,20,36,51,36,21,32),
-(5,4,21,37,52,37,22,33),
-(5,4,22,38,54,38,22,33),
-(5,4,23,39,56,39,22,34),
-(5,4,24,40,58,40,22,34),
-(5,4,25,41,60,41,23,35),
-(5,4,26,42,61,42,23,35),
-(5,4,27,43,63,43,23,36),
-(5,4,28,44,65,44,23,36),
-(5,4,29,45,67,44,24,37),
-(5,4,30,46,69,45,24,37),
-(5,4,31,47,71,46,24,38),
-(5,4,32,48,72,47,24,38),
-(5,4,33,49,74,48,25,39),
-(5,4,34,50,76,49,25,39),
-(5,4,35,51,78,50,25,40),
-(5,4,36,52,80,51,25,41),
-(5,4,37,53,82,52,26,41),
-(5,4,38,54,84,53,26,42),
-(5,4,39,55,86,54,26,42),
-(5,4,40,56,88,55,27,43),
-(5,4,41,57,90,56,27,43),
-(5,4,42,59,92,57,27,44),
-(5,4,43,60,94,58,27,45),
-(5,4,44,61,96,59,28,45),
-(5,4,45,62,99,60,28,46),
-(5,4,46,63,101,61,28,46),
-(5,4,47,64,103,63,29,47),
-(5,4,48,66,105,64,29,48),
-(5,4,49,67,107,65,29,48),
-(5,4,50,68,109,66,30,49),
-(5,4,51,69,111,67,30,50),
-(5,4,52,70,114,68,30,50),
-(5,4,53,72,116,69,31,51),
-(5,4,54,73,118,70,31,52),
-(5,4,55,74,120,72,31,52),
-(5,4,56,75,123,73,32,53),
-(5,4,57,77,125,74,32,54),
-(5,4,58,78,127,75,32,54),
-(5,4,59,79,130,76,33,55),
-(5,4,60,81,132,77,33,56),
-(5,4,61,82,134,79,34,56),
-(5,4,62,83,137,80,34,57),
-(5,4,63,84,139,81,34,58),
-(5,4,64,86,141,82,35,59),
-(5,4,65,87,144,84,35,59),
-(5,4,66,88,146,85,35,60),
-(5,4,67,90,149,86,36,61),
-(5,4,68,91,151,87,36,61),
-(5,4,69,93,154,89,37,62),
-(5,4,70,94,156,90,37,63),
-(5,4,71,96,159,91,37,64),
-(5,4,72,98,162,93,38,64),
-(5,4,73,99,165,95,38,65),
-(5,4,74,101,168,96,39,66),
-(5,4,75,103,171,98,39,67),
-(5,4,76,104,174,99,39,68),
-(5,4,77,106,177,101,40,69),
-(5,4,78,108,181,103,40,70),
-(5,4,79,110,184,104,41,71),
-(5,4,80,112,187,106,41,72),
-(5,5,1,19,18,21,20,28),
-(5,5,2,19,18,21,21,29),
-(5,5,3,19,18,22,23,31),
-(5,5,4,19,19,22,24,32),
-(5,5,5,20,19,22,25,33),
-(5,5,6,20,19,23,27,35),
-(5,5,7,20,19,23,28,36),
-(5,5,8,20,20,24,29,38),
-(5,5,9,20,20,24,31,39),
-(5,5,10,20,20,24,32,40),
-(5,5,11,21,20,25,34,42),
-(5,5,12,21,21,25,35,43),
-(5,5,13,21,21,26,37,45),
-(5,5,14,21,21,26,38,46),
-(5,5,15,21,21,26,39,48),
-(5,5,16,22,22,27,41,50),
-(5,5,17,22,22,27,42,51),
-(5,5,18,22,22,28,44,53),
-(5,5,19,22,23,28,46,54),
-(5,5,20,22,23,29,47,56),
-(5,5,21,23,23,29,49,57),
-(5,5,22,23,23,30,50,59),
-(5,5,23,23,24,30,52,61),
-(5,5,24,23,24,31,53,62),
-(5,5,25,24,24,31,55,64),
-(5,5,26,24,25,32,57,66),
-(5,5,27,24,25,32,58,68),
-(5,5,28,24,25,33,60,69),
-(5,5,29,25,26,33,62,71),
-(5,5,30,25,26,34,63,73),
-(5,5,31,25,26,34,65,75),
-(5,5,32,25,27,35,67,76),
-(5,5,33,26,27,35,69,78),
-(5,5,34,26,27,36,70,80),
-(5,5,35,26,28,36,72,82),
-(5,5,36,26,28,37,74,84),
-(5,5,37,27,28,37,76,86),
-(5,5,38,27,29,38,77,87),
-(5,5,39,27,29,38,79,89),
-(5,5,40,28,30,39,81,91),
-(5,5,41,28,30,40,83,93),
-(5,5,42,28,30,40,85,95),
-(5,5,43,28,31,41,87,97),
-(5,5,44,29,31,41,89,99),
-(5,5,45,29,32,42,91,101),
-(5,5,46,29,32,43,92,103),
-(5,5,47,30,32,43,94,105),
-(5,5,48,30,33,44,96,107),
-(5,5,49,30,33,44,98,109),
-(5,5,50,31,34,45,100,111),
-(5,5,51,31,34,46,102,113),
-(5,5,52,31,35,46,104,115),
-(5,5,53,32,35,47,106,118),
-(5,5,54,32,35,48,108,120),
-(5,5,55,32,36,48,110,122),
-(5,5,56,33,36,49,113,124),
-(5,5,57,33,37,50,115,126),
-(5,5,58,33,37,50,117,128),
-(5,5,59,34,38,51,119,131),
-(5,5,60,34,38,52,121,133),
-(5,5,61,34,39,52,123,135),
-(5,5,62,35,39,53,125,137),
-(5,5,63,35,40,54,127,140),
-(5,5,64,36,40,55,130,142),
-(5,5,65,36,41,55,132,144),
-(5,5,66,36,41,56,134,147),
-(5,5,67,37,41,57,136,149),
-(5,5,68,37,42,58,138,151),
-(5,5,69,38,42,58,141,154),
-(5,5,70,38,43,59,143,156),
-(5,5,71,38,44,60,146,159),
-(5,5,72,39,44,60,149,162),
-(5,5,73,39,45,61,152,165),
-(5,5,74,40,45,62,157,168),
-(5,5,75,40,46,63,157,171),
-(5,5,76,40,47,64,160,174),
-(5,5,77,41,47,65,163,177),
-(5,5,78,41,48,66,166,180),
-(5,5,79,42,48,67,169,183),
-(5,5,80,42,49,68,172,186),
-(5,6,1,22,18,23,18,25),
-(5,6,2,23,19,24,18,25),
-(5,6,3,25,20,25,18,26),
-(5,6,4,26,20,26,18,26),
-(5,6,5,27,21,28,18,26),
-(5,6,6,29,22,29,18,26),
-(5,6,7,30,23,30,19,27),
-(5,6,8,31,24,31,19,27),
-(5,6,9,33,25,33,19,27),
-(5,6,10,34,25,34,19,28),
-(5,6,11,35,26,35,19,28),
-(5,6,12,37,27,36,19,28),
-(5,6,13,38,28,38,19,28),
-(5,6,14,40,29,39,19,29),
-(5,6,15,41,30,40,19,29),
-(5,6,16,43,31,42,20,29),
-(5,6,17,44,32,43,20,30),
-(5,6,18,46,33,44,20,30),
-(5,6,19,47,34,46,20,31),
-(5,6,20,49,34,47,20,31),
-(5,6,21,50,35,49,20,31),
-(5,6,22,52,36,50,20,32),
-(5,6,23,53,37,51,21,32),
-(5,6,24,55,38,53,21,32),
-(5,6,25,57,39,54,21,33),
-(5,6,26,58,40,56,21,33),
-(5,6,27,60,41,57,21,34),
-(5,6,28,62,42,59,21,34),
-(5,6,29,63,43,60,21,34),
-(5,6,30,65,44,62,22,35),
-(5,6,31,67,46,63,22,35),
-(5,6,32,68,47,65,22,36),
-(5,6,33,70,48,67,22,36),
-(5,6,34,72,49,68,22,36),
-(5,6,35,74,50,70,23,37),
-(5,6,36,75,51,71,23,37),
-(5,6,37,77,52,73,23,38),
-(5,6,38,79,53,75,23,38),
-(5,6,39,81,54,76,23,39),
-(5,6,40,83,55,78,24,39),
-(5,6,41,84,57,80,24,40),
-(5,6,42,86,58,81,24,40),
-(5,6,43,88,59,83,24,41),
-(5,6,44,90,60,85,24,41),
-(5,6,45,92,61,86,25,42),
-(5,6,46,94,62,88,25,42),
-(5,6,47,96,64,90,25,43),
-(5,6,48,98,65,92,25,43),
-(5,6,49,100,66,93,25,44),
-(5,6,50,102,67,95,26,44),
-(5,6,51,103,67,96,26,45),
-(5,6,52,104,68,97,26,45),
-(5,6,53,105,69,98,26,46),
-(5,6,54,106,70,99,27,46),
-(5,6,55,107,71,100,27,47),
-(5,6,56,110,73,103,27,48),
-(5,6,57,112,74,105,27,48),
-(5,6,58,114,75,107,28,49),
-(5,6,59,119,77,109,28,49),
-(5,6,60,122,78,111,28,50),
-(5,6,61,124,79,113,28,51),
-(5,6,62,127,81,115,28,51),
-(5,6,63,129,82,118,29,52),
-(5,6,64,136,84,120,29,52),
-(5,6,65,137,85,123,29,53),
-(5,6,66,138,87,125,29,54),
-(5,6,67,141,88,127,30,54),
-(5,6,68,143,90,129,30,55),
-(5,6,69,146,91,132,30,56),
-(5,6,70,149,93,134,30,56),
-(5,6,71,152,95,137,31,57),
-(5,6,72,154,96,139,31,58),
-(5,6,73,157,98,142,31,59),
-(5,6,74,158,100,145,31,59),
-(5,6,75,159,101,147,32,60),
-(5,6,76,162,103,150,32,61),
-(5,6,77,167,105,152,32,62),
-(5,6,78,173,106,155,32,62),
-(5,6,79,174,108,158,33,63),
-(5,6,80,174,110,161,33,64),
-(5,8,1,19,18,21,21,27),
-(5,8,2,19,18,21,22,28),
-(5,8,3,19,18,22,24,30),
-(5,8,4,19,18,22,25,31),
-(5,8,5,19,19,22,26,32),
-(5,8,6,19,19,22,28,34),
-(5,8,7,20,19,23,29,35),
-(5,8,8,20,19,23,31,36),
-(5,8,9,20,19,23,32,38),
-(5,8,10,20,19,24,34,39),
-(5,8,11,20,20,24,35,40),
-(5,8,12,20,20,24,37,42),
-(5,8,13,20,20,25,38,43),
-(5,8,14,20,20,25,40,45),
-(5,8,15,20,20,25,41,46),
-(5,8,16,21,21,26,43,48),
-(5,8,17,21,21,26,44,49),
-(5,8,18,21,21,26,46,51),
-(5,8,19,21,21,27,48,52),
-(5,8,20,21,21,27,49,54),
-(5,8,21,21,22,27,51,55),
-(5,8,22,21,22,28,52,57),
-(5,8,23,21,22,28,54,58),
-(5,8,24,22,22,29,56,60),
-(5,8,25,22,23,29,57,62),
-(5,8,26,22,23,29,59,63),
-(5,8,27,22,23,30,61,65),
-(5,8,28,22,23,30,63,67),
-(5,8,29,22,24,31,64,68),
-(5,8,30,23,24,31,66,70),
-(5,8,31,23,24,31,68,72),
-(5,8,32,23,24,32,70,73),
-(5,8,33,23,25,32,72,75),
-(5,8,34,23,25,33,73,77),
-(5,8,35,24,25,33,75,79),
-(5,8,36,24,25,34,77,80),
-(5,8,37,24,26,34,79,82),
-(5,8,38,24,26,35,81,84),
-(5,8,39,24,26,35,83,86),
-(5,8,40,24,27,35,85,88),
-(5,8,41,25,27,36,87,90),
-(5,8,42,25,27,36,89,91),
-(5,8,43,25,27,37,90,93),
-(5,8,44,25,28,37,92,95),
-(5,8,45,26,28,38,94,97),
-(5,8,46,26,28,38,96,99),
-(5,8,47,26,29,39,98,101),
-(5,8,48,26,29,39,100,103),
-(5,8,49,26,29,40,103,105),
-(5,8,50,27,30,40,105,107),
-(5,8,51,27,30,41,107,109),
-(5,8,52,27,30,42,109,111),
-(5,8,53,27,31,42,111,113),
-(5,8,54,28,31,43,113,115),
-(5,8,55,28,31,43,115,117),
-(5,8,56,28,32,44,117,119),
-(5,8,57,28,32,44,119,121),
-(5,8,58,29,32,45,122,123),
-(5,8,59,29,33,45,124,126),
-(5,8,60,29,33,46,126,128),
-(5,8,61,29,34,47,128,130),
-(5,8,62,30,34,47,131,132),
-(5,8,63,30,34,48,133,134),
-(5,8,64,30,35,48,135,136),
-(5,8,65,31,35,49,137,139),
-(5,8,66,31,35,50,140,141),
-(5,8,67,31,36,50,142,143),
-(5,8,68,31,36,51,144,145),
-(5,8,69,32,37,51,147,148),
-(5,8,70,32,37,52,149,150),
-(5,8,71,32,37,53,152,153),
-(5,8,72,32,38,54,155,156),
-(5,8,73,32,38,55,158,159),
-(5,8,74,33,39,55,161,161),
-(5,8,75,33,39,56,164,164),
-(5,8,76,33,39,57,167,167),
-(5,8,77,34,40,58,170,170),
-(5,8,78,34,40,58,173,173),
-(5,8,79,34,41,59,176,176),
-(5,8,80,35,41,60,179,179),
-(5,9,1,19,18,22,20,27),
-(5,9,2,19,18,23,21,28),
-(5,9,3,20,19,23,22,29),
-(5,9,4,20,19,24,24,30),
-(5,9,5,20,19,24,25,32),
-(5,9,6,20,20,25,26,33),
-(5,9,7,21,20,25,27,34),
-(5,9,8,21,21,26,28,35),
-(5,9,9,21,21,26,30,36),
-(5,9,10,22,21,27,31,38),
-(5,9,11,22,22,28,32,39),
-(5,9,12,22,22,28,34,40),
-(5,9,13,23,23,29,35,41),
-(5,9,14,23,23,30,36,43),
-(5,9,15,23,24,30,37,44),
-(5,9,16,24,24,31,39,45),
-(5,9,17,24,24,31,40,47),
-(5,9,18,24,25,32,42,48),
-(5,9,19,25,25,33,43,49),
-(5,9,20,25,26,33,44,51),
-(5,9,21,26,26,34,46,52),
-(5,9,22,26,27,35,47,53),
-(5,9,23,26,27,36,49,55),
-(5,9,24,27,28,36,50,56),
-(5,9,25,27,28,37,52,58),
-(5,9,26,27,29,38,53,59),
-(5,9,27,28,29,38,55,60),
-(5,9,28,28,30,39,56,62),
-(5,9,29,29,30,40,58,63),
-(5,9,30,29,31,41,59,65),
-(5,9,31,30,31,41,61,66),
-(5,9,32,30,32,42,62,68),
-(5,9,33,30,32,43,64,69),
-(5,9,34,31,33,44,65,71),
-(5,9,35,31,33,45,67,73),
-(5,9,36,32,34,45,69,74),
-(5,9,37,32,34,46,70,76),
-(5,9,38,33,35,47,72,77),
-(5,9,39,33,36,48,73,79),
-(5,9,40,34,36,49,75,81),
-(5,9,41,34,37,49,77,82),
-(5,9,42,35,37,50,78,84),
-(5,9,43,35,38,51,80,86),
-(5,9,44,36,39,52,82,87),
-(5,9,45,36,39,53,84,89),
-(5,9,46,37,40,54,85,91),
-(5,9,47,37,40,55,87,92),
-(5,9,48,38,41,55,89,94),
-(5,9,49,38,42,56,91,96),
-(5,9,50,39,42,57,92,98),
-(5,9,51,39,43,58,94,100),
-(5,9,52,40,44,59,96,101),
-(5,9,53,40,44,60,98,103),
-(5,9,54,41,45,61,100,105),
-(5,9,55,41,45,62,102,107),
-(5,9,56,42,46,63,103,109),
-(5,9,57,42,47,64,105,111),
-(5,9,58,43,47,65,107,112),
-(5,9,59,43,48,66,109,114),
-(5,9,60,44,49,67,111,116),
-(5,9,61,45,50,68,113,118),
-(5,9,62,45,50,69,115,120),
-(5,9,63,46,51,70,117,122),
-(5,9,64,46,52,71,119,124),
-(5,9,65,47,52,72,121,126),
-(5,9,66,48,53,73,123,128),
-(5,9,67,48,54,74,125,130),
-(5,9,68,49,55,75,127,132),
-(5,9,69,49,55,76,129,134),
-(5,9,70,50,56,77,131,136),
-(5,9,71,51,57,86,135,147),
-(5,9,72,52,57,88,136,149),
-(5,9,73,53,58,89,138,152),
-(5,9,74,53,59,90,141,155),
-(5,9,75,54,60,92,143,157),
-(5,9,76,55,61,93,146,160),
-(5,9,77,56,62,94,149,163),
-(5,9,78,56,63,96,151,166),
-(5,9,79,57,64,97,154,169),
-(5,9,80,58,65,99,157,171),
-(6,1,1,28,15,24,15,22),
-(6,1,2,29,16,25,15,22),
-(6,1,3,31,17,26,15,23),
-(6,1,4,32,17,27,15,23),
-(6,1,5,33,18,29,15,23),
-(6,1,6,34,19,30,15,23),
-(6,1,7,36,20,31,16,24),
-(6,1,8,37,21,32,16,24),
-(6,1,9,38,22,34,16,24),
-(6,1,10,40,22,35,16,25),
-(6,1,11,41,23,36,16,25),
-(6,1,12,43,24,37,16,25),
-(6,1,13,44,25,39,16,26),
-(6,1,14,46,26,40,16,26),
-(6,1,15,47,27,41,17,26),
-(6,1,16,48,28,43,17,27),
-(6,1,17,50,29,44,17,27),
-(6,1,18,51,30,45,17,27),
-(6,1,19,53,31,47,17,28),
-(6,1,20,54,32,48,17,28),
-(6,1,21,56,33,50,17,28),
-(6,1,22,58,34,51,18,29),
-(6,1,23,59,35,52,18,29),
-(6,1,24,61,36,54,18,30),
-(6,1,25,62,37,55,18,30),
-(6,1,26,64,38,57,18,30),
-(6,1,27,66,39,58,18,31),
-(6,1,28,67,40,60,18,31),
-(6,1,29,69,41,61,19,32),
-(6,1,30,71,42,63,19,32),
-(6,1,31,72,43,64,19,32),
-(6,1,32,74,44,66,19,33),
-(6,1,33,76,45,67,19,33),
-(6,1,34,77,46,69,20,34),
-(6,1,35,79,47,71,20,34),
-(6,1,36,81,48,72,20,35),
-(6,1,37,83,49,74,20,35),
-(6,1,38,85,50,76,20,35),
-(6,1,39,86,51,77,21,36),
-(6,1,40,88,53,79,21,36),
-(6,1,41,90,54,81,21,37),
-(6,1,42,92,55,82,21,37),
-(6,1,43,94,56,84,21,38),
-(6,1,44,96,57,86,22,38),
-(6,1,45,98,58,87,22,39),
-(6,1,46,99,60,89,22,39),
-(6,1,47,101,61,91,22,40),
-(6,1,48,103,62,93,22,40),
-(6,1,49,105,63,94,23,41),
-(6,1,50,107,65,96,23,41),
-(6,1,51,109,66,98,23,42),
-(6,1,52,111,67,100,23,42),
-(6,1,53,113,68,102,24,43),
-(6,1,54,115,70,104,24,44),
-(6,1,55,117,71,105,24,44),
-(6,1,56,119,72,107,24,45),
-(6,1,57,122,73,109,25,45),
-(6,1,58,124,75,111,25,46),
-(6,1,59,126,76,113,25,46),
-(6,1,60,128,77,115,25,47),
-(6,1,61,130,79,117,26,48),
-(6,1,62,132,80,119,26,48),
-(6,1,63,134,81,121,26,49),
-(6,1,64,137,83,123,26,49),
-(6,1,65,139,84,125,27,50),
-(6,1,66,141,85,127,27,51),
-(6,1,67,143,87,129,27,51),
-(6,1,68,145,88,131,27,52),
-(6,1,69,148,90,133,28,52),
-(6,1,70,150,91,135,28,53),
-(6,1,71,153,92,137,28,54),
-(6,1,72,155,94,140,28,55),
-(6,1,73,158,96,142,28,56),
-(6,1,74,161,97,145,29,56),
-(6,1,75,164,99,147,29,57),
-(6,1,76,167,101,150,29,58),
-(6,1,77,170,103,153,30,59),
-(6,1,78,173,104,155,30,59),
-(6,1,79,176,106,164,30,60),
-(6,1,80,179,108,170,31,61),
-(6,3,1,25,18,23,15,23),
-(6,3,2,25,19,24,16,24),
-(6,3,3,26,21,25,16,24),
-(6,3,4,26,22,26,17,25),
-(6,3,5,27,24,27,17,25),
-(6,3,6,27,25,28,18,26),
-(6,3,7,28,26,28,19,27),
-(6,3,8,28,28,29,19,27),
-(6,3,9,28,29,30,20,28),
-(6,3,10,29,31,31,20,29),
-(6,3,11,29,32,32,21,29),
-(6,3,12,30,34,33,22,30),
-(6,3,13,30,35,34,22,31),
-(6,3,14,31,37,35,23,32),
-(6,3,15,31,38,36,24,32),
-(6,3,16,32,40,37,24,33),
-(6,3,17,32,41,39,25,34),
-(6,3,18,33,43,40,26,35),
-(6,3,19,33,45,41,27,35),
-(6,3,20,34,46,42,27,36),
-(6,3,21,34,48,43,28,37),
-(6,3,22,35,50,44,29,38),
-(6,3,23,35,51,45,29,38),
-(6,3,24,36,53,46,30,39),
-(6,3,25,37,55,47,31,40),
-(6,3,26,37,56,48,32,41),
-(6,3,27,38,58,50,32,42),
-(6,3,28,38,60,51,33,42),
-(6,3,29,39,62,52,34,43),
-(6,3,30,39,63,53,35,44),
-(6,3,31,40,65,54,36,45),
-(6,3,32,41,67,56,36,46),
-(6,3,33,41,69,57,37,47),
-(6,3,34,42,71,58,38,48),
-(6,3,35,43,72,59,39,48),
-(6,3,36,43,74,61,40,49),
-(6,3,37,44,76,62,40,50),
-(6,3,38,45,78,63,41,51),
-(6,3,39,45,80,64,42,52),
-(6,3,40,46,82,66,43,53),
-(6,3,41,47,84,67,44,54),
-(6,3,42,47,86,68,45,55),
-(6,3,43,48,88,70,46,56),
-(6,3,44,49,90,71,46,57),
-(6,3,45,49,92,72,47,58),
-(6,3,46,50,94,74,48,59),
-(6,3,47,51,96,75,49,60),
-(6,3,48,51,98,77,50,61),
-(6,3,49,52,100,78,51,62),
-(6,3,50,53,102,79,52,63),
-(6,3,51,54,104,81,53,64),
-(6,3,52,54,106,82,54,65),
-(6,3,53,55,108,84,55,66),
-(6,3,54,56,110,85,56,67),
-(6,3,55,57,112,87,57,68),
-(6,3,56,57,114,88,58,69),
-(6,3,57,58,117,90,59,70),
-(6,3,58,59,119,91,60,71),
-(6,3,59,60,121,93,61,72),
-(6,3,60,61,123,94,62,74),
-(6,3,61,61,125,96,63,75),
-(6,3,62,62,128,97,64,76),
-(6,3,63,63,130,99,65,77),
-(6,3,64,64,132,100,66,78),
-(6,3,65,65,134,102,67,79),
-(6,3,66,66,137,104,68,80),
-(6,3,67,66,139,105,69,81),
-(6,3,68,67,141,107,70,83),
-(6,3,69,68,144,108,71,84),
-(6,3,70,69,146,110,72,85),
-(6,3,71,70,149,112,73,86),
-(6,3,72,71,152,114,74,87),
-(6,3,73,72,155,116,75,89),
-(6,3,74,73,158,118,77,90),
-(6,3,75,74,161,120,78,92),
-(6,3,76,75,164,122,79,93),
-(6,3,77,76,167,124,81,95),
-(6,3,78,77,176,126,85,96),
-(6,3,79,78,179,128,86,98),
-(6,3,80,79,183,130,88,99),
-(6,6,1,28,15,24,15,22),
-(6,6,2,29,16,25,15,22),
-(6,6,3,31,17,26,15,23),
-(6,6,4,32,17,27,15,23),
-(6,6,5,33,18,29,15,23),
-(6,6,6,34,19,30,15,23),
-(6,6,7,36,20,31,16,24),
-(6,6,8,37,21,32,16,24),
-(6,6,9,38,22,34,16,24),
-(6,6,10,40,22,35,16,25),
-(6,6,11,41,23,36,16,25),
-(6,6,12,43,24,37,16,25),
-(6,6,13,44,25,39,16,26),
-(6,6,14,46,26,40,16,26),
-(6,6,15,47,27,41,17,26),
-(6,6,16,48,28,43,17,27),
-(6,6,17,50,29,44,17,27),
-(6,6,18,51,30,45,17,27),
-(6,6,19,53,31,47,17,28),
-(6,6,20,54,32,48,17,28),
-(6,6,21,56,33,50,17,28),
-(6,6,22,58,34,51,18,29),
-(6,6,23,59,35,52,18,29),
-(6,6,24,61,36,54,18,30),
-(6,6,25,62,37,55,18,30),
-(6,6,26,64,38,57,18,30),
-(6,6,27,66,39,58,18,31),
-(6,6,28,67,40,60,18,31),
-(6,6,29,69,41,61,19,32),
-(6,6,30,71,42,63,19,32),
-(6,6,31,72,43,64,19,32),
-(6,6,32,74,44,66,19,33),
-(6,6,33,76,45,67,19,33),
-(6,6,34,77,46,69,20,34),
-(6,6,35,79,47,71,20,34),
-(6,6,36,81,48,72,20,35),
-(6,6,37,83,49,74,20,35),
-(6,6,38,85,50,76,20,35),
-(6,6,39,86,51,77,21,36),
-(6,6,40,88,53,79,21,36),
-(6,6,41,90,54,81,21,37),
-(6,6,42,92,55,82,21,37),
-(6,6,43,94,56,84,21,38),
-(6,6,44,96,57,86,22,38),
-(6,6,45,98,58,87,22,39),
-(6,6,46,99,60,89,22,39),
-(6,6,47,101,60,91,22,40),
-(6,6,48,103,61,93,22,40),
-(6,6,49,105,62,94,23,41),
-(6,6,50,107,63,96,23,41),
-(6,6,51,109,64,97,23,42),
-(6,6,52,110,65,98,23,42),
-(6,6,53,111,66,99,24,43),
-(6,6,54,112,67,100,24,44),
-(6,6,55,113,68,101,24,44),
-(6,6,56,116,70,104,24,45),
-(6,6,57,121,71,106,24,45),
-(6,6,58,123,72,108,25,46),
-(6,6,59,123,74,110,25,46),
-(6,6,60,125,75,112,25,47),
-(6,6,61,127,76,114,25,48),
-(6,6,62,133,78,116,25,48),
-(6,6,63,135,79,119,26,49),
-(6,6,64,139,81,121,26,49),
-(6,6,65,142,82,123,26,50),
-(6,6,66,146,84,126,26,51),
-(6,6,67,150,85,132,27,51),
-(6,6,68,153,87,137,27,52),
-(6,6,69,157,88,140,27,53),
-(6,6,70,160,90,143,27,53),
-(6,6,71,163,92,146,28,54),
-(6,6,72,165,93,148,28,55),
-(6,6,73,167,95,150,28,56),
-(6,6,74,171,97,153,28,56),
-(6,6,75,174,98,156,29,57),
-(6,6,76,178,100,156,29,58),
-(6,6,77,179,102,156,29,59),
-(6,6,78,179,103,156,29,59),
-(6,6,79,182,105,159,30,60),
-(6,6,80,185,107,162,30,61),
-(6,7,1,26,15,23,16,24),
-(6,7,2,27,15,24,17,25),
-(6,7,3,28,16,25,18,26),
-(6,7,4,28,16,26,19,27),
-(6,7,5,29,17,27,20,28),
-(6,7,6,30,17,28,21,29),
-(6,7,7,31,18,29,22,30),
-(6,7,8,32,18,30,23,31),
-(6,7,9,33,19,31,24,32),
-(6,7,10,34,19,32,25,33),
-(6,7,11,35,20,33,26,35),
-(6,7,12,35,20,34,27,36),
-(6,7,13,36,21,35,28,37),
-(6,7,14,37,21,36,29,38),
-(6,7,15,38,22,37,30,39),
-(6,7,16,39,22,39,31,40),
-(6,7,17,40,23,40,32,42),
-(6,7,18,41,23,41,33,43),
-(6,7,19,42,24,42,34,44),
-(6,7,20,43,24,43,35,45),
-(6,7,21,44,25,44,36,46),
-(6,7,22,45,25,45,37,48),
-(6,7,23,46,26,47,38,49),
-(6,7,24,47,27,48,40,50),
-(6,7,25,48,27,49,41,51),
-(6,7,26,49,28,50,42,53),
-(6,7,27,51,28,52,43,54),
-(6,7,28,52,29,53,44,55),
-(6,7,29,53,29,54,45,57),
-(6,7,30,54,30,55,47,58),
-(6,7,31,55,31,57,48,59),
-(6,7,32,56,31,58,49,61),
-(6,7,33,57,32,59,50,62),
-(6,7,34,58,33,61,51,64),
-(6,7,35,60,33,62,53,65),
-(6,7,36,61,34,63,54,66),
-(6,7,37,62,34,65,55,68),
-(6,7,38,63,35,66,57,69),
-(6,7,39,64,36,67,58,71),
-(6,7,40,66,36,69,59,72),
-(6,7,41,67,37,70,60,74),
-(6,7,42,68,38,72,62,75),
-(6,7,43,69,38,73,63,77),
-(6,7,44,70,39,74,64,78),
-(6,7,45,72,40,76,66,80),
-(6,7,46,73,41,77,67,81),
-(6,7,47,74,41,79,69,83),
-(6,7,48,76,42,80,70,84),
-(6,7,49,77,43,82,71,86),
-(6,7,50,78,43,83,73,88),
-(6,7,51,80,44,85,74,89),
-(6,7,52,81,45,86,76,91),
-(6,7,53,82,46,88,77,92),
-(6,7,54,84,46,90,78,94),
-(6,7,55,85,47,91,80,96),
-(6,7,56,86,48,93,81,97),
-(6,7,57,88,49,94,83,99),
-(6,7,58,89,49,96,84,101),
-(6,7,59,91,50,97,86,102),
-(6,7,60,92,51,99,87,104),
-(6,7,61,94,52,101,89,106),
-(6,7,62,95,52,102,90,108),
-(6,7,63,96,53,104,92,109),
-(6,7,64,98,54,106,93,111),
-(6,7,65,99,55,107,95,113),
-(6,7,66,101,56,109,97,115),
-(6,7,67,102,57,111,98,117),
-(6,7,68,104,57,113,100,118),
-(6,7,69,105,58,114,101,120),
-(6,7,70,107,59,116,103,122),
-(6,7,71,108,60,118,113,124),
-(6,7,72,110,61,120,117,127),
-(6,7,73,112,62,122,119,129),
-(6,7,74,114,63,125,122,131),
-(6,7,75,116,64,127,124,133),
-(6,7,76,118,65,129,126,136),
-(6,7,77,119,66,131,128,138),
-(6,7,78,121,67,133,130,140),
-(6,7,79,123,68,136,133,143),
-(6,7,80,125,69,138,135,145),
-(6,11,1,26,15,22,17,24),
-(6,11,2,27,16,23,18,25),
-(6,11,3,27,16,23,19,26),
-(6,11,4,28,17,24,20,27),
-(6,11,5,28,17,25,21,29),
-(6,11,6,29,18,25,22,30),
-(6,11,7,29,18,26,23,31),
-(6,11,8,30,19,27,24,32),
-(6,11,9,30,19,27,26,34),
-(6,11,10,31,20,28,27,35),
-(6,11,11,32,20,29,28,36),
-(6,11,12,32,21,29,29,37),
-(6,11,13,33,21,30,30,39),
-(6,11,14,33,22,31,31,40),
-(6,11,15,34,23,32,32,41),
-(6,11,16,35,23,32,34,43),
-(6,11,17,35,24,33,35,44),
-(6,11,18,36,24,34,36,45),
-(6,11,19,37,25,35,37,47),
-(6,11,20,37,26,35,39,48),
-(6,11,21,38,26,36,40,50),
-(6,11,22,39,27,37,41,51),
-(6,11,23,39,28,38,42,52),
-(6,11,24,40,28,39,44,54),
-(6,11,25,41,29,39,45,55),
-(6,11,26,41,30,40,46,57),
-(6,11,27,42,30,41,47,58),
-(6,11,28,43,31,42,49,60),
-(6,11,29,44,32,43,50,61),
-(6,11,30,44,32,44,52,63),
-(6,11,31,45,33,44,53,64),
-(6,11,32,46,34,45,54,66),
-(6,11,33,47,34,46,56,67),
-(6,11,34,47,35,47,57,69),
-(6,11,35,48,36,48,58,71),
-(6,11,36,49,36,49,60,72),
-(6,11,37,50,37,50,61,74),
-(6,11,38,51,38,51,63,76),
-(6,11,39,52,39,52,64,77),
-(6,11,40,52,39,53,66,79),
-(6,11,41,53,40,54,67,81),
-(6,11,42,54,41,55,69,82),
-(6,11,43,55,42,56,70,84),
-(6,11,44,56,43,57,72,86),
-(6,11,45,57,43,57,73,87),
-(6,11,46,57,44,58,75,89),
-(6,11,47,58,45,60,76,91),
-(6,11,48,59,46,61,78,93),
-(6,11,49,60,47,62,79,94),
-(6,11,50,61,47,63,81,96),
-(6,11,51,62,48,64,83,98),
-(6,11,52,63,49,65,84,100),
-(6,11,53,64,50,66,86,102),
-(6,11,54,65,51,67,87,104),
-(6,11,55,66,51,68,89,105),
-(6,11,56,67,52,69,91,107),
-(6,11,57,68,53,70,92,109),
-(6,11,58,69,54,71,94,111),
-(6,11,59,70,55,72,96,113),
-(6,11,60,71,56,73,97,115),
-(6,11,61,72,57,74,99,117),
-(6,11,62,73,58,76,101,119),
-(6,11,63,74,59,77,103,121),
-(6,11,64,75,59,78,104,123),
-(6,11,65,76,60,79,106,125),
-(6,11,66,77,61,80,108,127),
-(6,11,67,78,62,81,110,129),
-(6,11,68,79,63,83,111,131),
-(6,11,69,80,64,84,113,133),
-(6,11,70,81,65,85,115,135),
-(6,11,71,83,66,86,117,137),
-(6,11,72,84,68,88,120,140),
-(6,11,73,85,69,89,122,142),
-(6,11,74,86,70,91,124,145),
-(6,11,75,88,71,92,126,147),
-(6,11,76,89,72,94,128,150),
-(6,11,77,90,73,95,131,153),
-(6,11,78,92,75,97,133,155),
-(6,11,79,93,76,98,136,158),
-(6,11,80,94,77,100,138,185),
-(7,1,1,18,23,21,24,20),
-(7,1,2,19,24,22,24,20),
-(7,1,3,21,25,23,24,21),
-(7,1,4,22,25,25,24,21),
-(7,1,5,23,26,26,24,21),
-(7,1,6,25,27,27,24,21),
-(7,1,7,26,28,28,24,22),
-(7,1,8,27,29,29,25,22),
-(7,1,9,29,29,31,25,22),
-(7,1,10,30,30,32,25,23),
-(7,1,11,32,31,33,25,23),
-(7,1,12,33,32,34,25,23),
-(7,1,13,34,33,36,25,24),
-(7,1,14,36,34,37,25,24),
-(7,1,15,37,35,38,25,24),
-(7,1,16,39,36,40,25,25),
-(7,1,17,40,36,41,25,25),
-(7,1,18,42,37,43,26,25),
-(7,1,19,43,38,44,26,26),
-(7,1,20,45,39,45,26,26),
-(7,1,21,47,40,47,26,26),
-(7,1,22,48,41,48,26,27),
-(7,1,23,50,42,50,26,27),
-(7,1,24,51,43,51,26,28),
-(7,1,25,53,44,52,27,28),
-(7,1,26,55,45,54,27,28),
-(7,1,27,56,46,55,27,29),
-(7,1,28,58,47,57,27,29),
-(7,1,29,59,48,58,27,30),
-(7,1,30,61,49,60,27,30),
-(7,1,31,63,50,62,27,30),
-(7,1,32,65,51,63,28,31),
-(7,1,33,66,52,65,28,31),
-(7,1,34,68,53,66,28,32),
-(7,1,35,70,55,68,28,32),
-(7,1,36,72,56,69,28,33),
-(7,1,37,73,57,71,29,33),
-(7,1,38,75,58,73,29,34),
-(7,1,39,77,59,74,29,34),
-(7,1,40,79,60,76,29,35),
-(7,1,41,81,61,78,29,35),
-(7,1,42,82,62,79,30,35),
-(7,1,43,84,64,81,30,36),
-(7,1,44,86,65,83,30,36),
-(7,1,45,88,66,85,30,37),
-(7,1,46,90,67,86,30,37),
-(7,1,47,92,68,88,31,38),
-(7,1,48,94,70,90,31,38),
-(7,1,49,96,71,92,31,39),
-(7,1,50,98,72,93,31,40),
-(7,1,51,100,73,95,32,40),
-(7,1,52,102,75,97,32,41),
-(7,1,53,104,76,99,32,41),
-(7,1,54,106,77,101,32,42),
-(7,1,55,108,78,103,33,42),
-(7,1,56,110,80,104,33,43),
-(7,1,57,112,81,106,33,43),
-(7,1,58,114,82,108,33,44),
-(7,1,59,116,84,110,34,44),
-(7,1,60,118,85,112,34,45),
-(7,1,61,120,86,114,34,46),
-(7,1,62,122,88,116,35,46),
-(7,1,63,125,89,118,35,47),
-(7,1,64,127,91,120,35,47),
-(7,1,65,129,92,122,35,48),
-(7,1,66,131,93,124,36,49),
-(7,1,67,133,95,126,36,49),
-(7,1,68,136,96,128,36,50),
-(7,1,69,138,98,130,37,50),
-(7,1,70,140,99,132,37,51),
-(7,1,71,143,100,134,37,52),
-(7,1,72,145,102,137,37,53),
-(7,1,73,148,104,139,37,54),
-(7,1,74,151,105,142,38,54),
-(7,1,75,154,107,144,38,55),
-(7,1,76,157,109,147,38,56),
-(7,1,77,163,111,153,39,57),
-(7,1,78,169,112,158,39,57),
-(7,1,79,172,114,161,39,58),
-(7,1,80,175,116,164,40,59),
-(7,4,1,16,26,20,24,20),
-(7,4,2,17,27,21,24,20),
-(7,4,3,18,29,21,24,21),
-(7,4,4,18,30,22,24,21),
-(7,4,5,19,32,23,25,21),
-(7,4,6,20,33,24,25,22),
-(7,4,7,21,35,24,25,22),
-(7,4,8,22,36,25,25,23),
-(7,4,9,22,38,26,25,23),
-(7,4,10,23,39,26,25,23),
-(7,4,11,24,41,27,25,24),
-(7,4,12,25,42,28,26,24),
-(7,4,13,26,44,29,26,25),
-(7,4,14,27,46,30,26,25),
-(7,4,15,28,47,30,26,25),
-(7,4,16,28,49,31,26,26),
-(7,4,17,29,50,32,27,26),
-(7,4,18,30,52,33,27,27),
-(7,4,19,31,54,34,27,27),
-(7,4,20,32,56,35,27,28),
-(7,4,21,33,57,35,27,28),
-(7,4,22,34,59,36,28,29),
-(7,4,23,35,61,37,28,29),
-(7,4,24,36,62,38,28,30),
-(7,4,25,37,64,39,28,30),
-(7,4,26,38,66,40,29,31),
-(7,4,27,39,68,41,29,31),
-(7,4,28,40,70,42,29,32),
-(7,4,29,41,72,43,29,32),
-(7,4,30,42,73,43,29,33),
-(7,4,31,43,75,44,30,33),
-(7,4,32,44,77,45,30,34),
-(7,4,33,45,79,46,30,34),
-(7,4,34,46,81,47,31,35),
-(7,4,35,47,83,48,31,35),
-(7,4,36,48,85,49,31,36),
-(7,4,37,49,87,50,31,36),
-(7,4,38,50,89,51,32,37),
-(7,4,39,51,91,52,32,38),
-(7,4,40,53,93,53,32,38),
-(7,4,41,54,95,54,33,39),
-(7,4,42,55,97,55,33,39),
-(7,4,43,56,99,56,33,40),
-(7,4,44,57,101,57,33,40),
-(7,4,45,58,103,59,34,41),
-(7,4,46,59,105,60,34,42),
-(7,4,47,61,107,61,34,42),
-(7,4,48,62,110,62,35,43),
-(7,4,49,63,112,63,35,44),
-(7,4,50,64,114,64,35,44),
-(7,4,51,65,116,65,36,45),
-(7,4,52,67,118,66,36,45),
-(7,4,53,68,121,67,36,46),
-(7,4,54,69,123,69,37,47),
-(7,4,55,70,125,70,37,47),
-(7,4,56,72,127,71,37,48),
-(7,4,57,73,130,72,38,49),
-(7,4,58,74,132,73,38,49),
-(7,4,59,75,134,74,39,50),
-(7,4,60,77,137,76,39,51),
-(7,4,61,78,139,77,39,51),
-(7,4,62,79,141,78,40,52),
-(7,4,63,81,144,79,40,53),
-(7,4,64,82,146,80,41,54),
-(7,4,65,83,149,82,41,54),
-(7,4,66,85,151,83,41,55),
-(7,4,67,86,154,84,42,56),
-(7,4,68,87,156,85,42,57),
-(7,4,69,89,158,87,43,57),
-(7,4,70,90,161,88,43,58),
-(7,4,71,92,164,89,44,59),
-(7,4,72,94,167,91,45,59),
-(7,4,73,95,170,93,45,60),
-(7,4,74,97,173,94,46,61),
-(7,4,75,99,176,96,46,62),
-(7,4,76,100,179,97,46,63),
-(7,4,77,102,182,102,47,64),
-(7,4,78,104,186,105,47,65),
-(7,4,79,106,189,106,48,66),
-(7,4,80,108,192,108,48,67),
-(7,6,1,18,23,21,24,20),
-(7,6,2,19,24,22,24,20),
-(7,6,3,21,25,23,24,21),
-(7,6,4,22,25,25,24,21),
-(7,6,5,23,26,26,24,21),
-(7,6,6,25,27,27,24,21),
-(7,6,7,26,28,28,24,22),
-(7,6,8,27,29,29,25,22),
-(7,6,9,29,29,31,25,22),
-(7,6,10,30,30,32,25,23),
-(7,6,11,32,31,33,25,23),
-(7,6,12,33,32,34,25,23),
-(7,6,13,34,33,36,25,24),
-(7,6,14,36,34,37,25,24),
-(7,6,15,37,35,38,25,24),
-(7,6,16,39,36,40,25,25),
-(7,6,17,40,36,41,25,25),
-(7,6,18,42,37,43,26,25),
-(7,6,19,43,38,44,26,26),
-(7,6,20,45,39,45,26,26),
-(7,6,21,47,40,47,26,26),
-(7,6,22,48,41,48,26,27),
-(7,6,23,50,42,50,26,27),
-(7,6,24,51,43,51,26,28),
-(7,6,25,53,44,52,27,28),
-(7,6,26,55,45,54,27,28),
-(7,6,27,56,46,55,27,29),
-(7,6,28,58,47,57,27,29),
-(7,6,29,59,48,58,27,30),
-(7,6,30,61,49,60,27,30),
-(7,6,31,63,50,62,27,30),
-(7,6,32,65,51,63,28,31),
-(7,6,33,66,52,65,28,31),
-(7,6,34,68,53,66,28,32),
-(7,6,35,70,55,68,28,32),
-(7,6,36,72,56,69,28,33),
-(7,6,37,73,57,71,29,33),
-(7,6,38,75,58,73,29,34),
-(7,6,39,77,59,74,29,34),
-(7,6,40,79,60,76,29,35),
-(7,6,41,81,61,78,29,35),
-(7,6,42,82,62,79,30,35),
-(7,6,43,84,64,81,30,36),
-(7,6,44,86,65,83,30,36),
-(7,6,45,88,66,85,30,37),
-(7,6,46,90,67,86,30,37),
-(7,6,47,92,68,88,31,38),
-(7,6,48,94,70,90,31,38),
-(7,6,49,96,71,92,31,39),
-(7,6,50,98,72,93,31,40),
-(7,6,51,99,72,93,32,40),
-(7,6,52,100,73,95,32,41),
-(7,6,53,101,74,96,32,41),
-(7,6,54,102,75,97,32,42),
-(7,6,55,103,76,98,33,42),
-(7,6,56,106,78,101,33,43),
-(7,6,57,111,79,103,33,43),
-(7,6,58,113,80,105,34,44),
-(7,6,59,116,82,107,34,44),
-(7,6,60,118,83,109,34,45),
-(7,6,61,120,84,111,34,46),
-(7,6,62,127,86,119,34,46),
-(7,6,63,129,87,122,35,47),
-(7,6,64,132,89,125,35,47),
-(7,6,65,135,90,127,35,48),
-(7,6,66,137,92,130,35,49),
-(7,6,67,138,93,130,36,49),
-(7,6,68,140,95,131,36,50),
-(7,6,69,142,96,131,36,51),
-(7,6,70,145,98,132,36,51),
-(7,6,71,148,100,135,37,52),
-(7,6,72,150,101,137,37,53),
-(7,6,73,153,103,140,37,54),
-(7,6,74,154,105,142,37,54),
-(7,6,75,155,106,145,38,55),
-(7,6,76,158,108,151,38,56),
-(7,6,77,161,110,157,38,57),
-(7,6,78,164,111,162,38,57),
-(7,6,79,167,113,165,39,58),
-(7,6,80,170,115,168,39,59),
-(7,8,1,15,23,19,27,22),
-(7,8,2,15,23,19,28,23),
-(7,8,3,15,23,20,30,25),
-(7,8,4,15,23,20,31,26),
-(7,8,5,15,24,20,32,27),
-(7,8,6,15,24,20,34,29),
-(7,8,7,16,24,21,35,30),
-(7,8,8,16,24,21,37,31),
-(7,8,9,16,24,21,38,33),
-(7,8,10,16,24,22,40,34),
-(7,8,11,16,25,22,41,36),
-(7,8,12,16,25,22,42,37),
-(7,8,13,16,25,23,44,38),
-(7,8,14,16,25,23,45,40),
-(7,8,15,17,25,23,47,41),
-(7,8,16,17,25,24,49,43),
-(7,8,17,17,26,24,50,44),
-(7,8,18,17,26,24,52,46),
-(7,8,19,17,26,25,53,47),
-(7,8,20,17,26,25,55,49),
-(7,8,21,17,26,26,57,51),
-(7,8,22,18,27,26,58,52),
-(7,8,23,18,27,26,60,54),
-(7,8,24,18,27,27,61,55),
-(7,8,25,18,27,27,63,57),
-(7,8,26,18,28,27,65,59),
-(7,8,27,18,28,28,67,60),
-(7,8,28,18,28,28,68,62),
-(7,8,29,19,28,29,70,64),
-(7,8,30,19,29,29,72,65),
-(7,8,31,19,29,30,74,67),
-(7,8,32,19,29,30,75,69),
-(7,8,33,19,29,30,77,70),
-(7,8,34,20,30,31,79,72),
-(7,8,35,20,30,31,81,74),
-(7,8,36,20,30,32,83,76),
-(7,8,37,20,30,32,85,78),
-(7,8,38,20,31,33,86,79),
-(7,8,39,21,31,33,88,81),
-(7,8,40,21,31,34,90,83),
-(7,8,41,21,32,34,92,85),
-(7,8,42,21,32,35,94,87),
-(7,8,43,21,32,35,96,89),
-(7,8,44,22,32,36,98,91),
-(7,8,45,22,33,36,100,92),
-(7,8,46,22,33,37,102,94),
-(7,8,47,22,33,37,104,96),
-(7,8,48,22,34,38,106,98),
-(7,8,49,23,34,38,108,100),
-(7,8,50,23,34,39,110,102),
-(7,8,51,23,35,39,112,104),
-(7,8,52,23,35,40,114,106),
-(7,8,53,24,35,40,117,108),
-(7,8,54,24,36,41,119,110),
-(7,8,55,24,36,41,121,112),
-(7,8,56,24,37,42,123,114),
-(7,8,57,25,37,42,125,117),
-(7,8,58,25,37,43,127,119),
-(7,8,59,25,38,43,130,121),
-(7,8,60,25,38,44,132,123),
-(7,8,61,26,38,45,134,125),
-(7,8,62,26,39,45,136,127),
-(7,8,63,26,39,46,139,129),
-(7,8,64,26,40,46,141,132),
-(7,8,65,27,40,47,143,134),
-(7,8,66,27,40,48,146,136),
-(7,8,67,27,41,48,148,138),
-(7,8,68,27,41,49,150,140),
-(7,8,69,28,42,49,153,143),
-(7,8,70,28,42,50,155,145),
-(7,8,71,28,42,51,168,148),
-(7,8,72,28,43,52,168,151),
-(7,8,73,28,43,53,171,154),
-(7,8,74,29,44,53,174,156),
-(7,8,75,29,44,54,177,159),
-(7,8,76,29,44,55,180,162),
-(7,8,77,30,45,56,183,165),
-(7,8,78,30,45,56,186,168),
-(7,8,79,30,46,57,190,171),
-(7,8,80,31,46,58,193,174),
-(7,9,1,15,23,20,26,22),
-(7,9,2,15,23,21,27,23),
-(7,9,3,16,24,21,28,24),
-(7,9,4,16,24,22,29,25),
-(7,9,5,16,24,22,31,27),
-(7,9,6,17,25,23,32,28),
-(7,9,7,17,25,23,33,29),
-(7,9,8,17,26,24,34,30),
-(7,9,9,17,26,25,36,31),
-(7,9,10,18,26,25,37,33),
-(7,9,11,18,27,26,38,34),
-(7,9,12,18,27,26,39,35),
-(7,9,13,19,28,27,41,36),
-(7,9,14,19,28,28,42,38),
-(7,9,15,20,28,28,43,39),
-(7,9,16,20,29,29,45,40),
-(7,9,17,20,29,30,46,42),
-(7,9,18,21,30,30,47,43),
-(7,9,19,21,30,31,49,44),
-(7,9,20,21,31,32,50,46),
-(7,9,21,22,31,32,51,47),
-(7,9,22,22,31,33,53,49),
-(7,9,23,23,32,34,54,50),
-(7,9,24,23,32,34,56,51),
-(7,9,25,23,33,35,57,53),
-(7,9,26,24,33,36,59,54),
-(7,9,27,24,34,37,60,56),
-(7,9,28,25,34,37,62,57),
-(7,9,29,25,35,38,63,59),
-(7,9,30,25,35,39,65,60),
-(7,9,31,26,36,40,66,62),
-(7,9,32,26,36,40,68,63),
-(7,9,33,27,37,41,69,65),
-(7,9,34,27,38,42,71,66),
-(7,9,35,28,38,43,73,68),
-(7,9,36,28,39,43,74,69),
-(7,9,37,28,39,44,76,71),
-(7,9,38,29,40,45,77,73),
-(7,9,39,29,40,46,79,74),
-(7,9,40,30,41,47,81,76),
-(7,9,41,30,41,48,82,78),
-(7,9,42,31,42,48,84,79),
-(7,9,43,31,43,49,86,81),
-(7,9,44,32,43,50,88,83),
-(7,9,45,32,44,51,89,84),
-(7,9,46,33,44,52,91,86),
-(7,9,47,33,45,53,93,88),
-(7,9,48,34,46,54,95,89),
-(7,9,49,34,46,54,96,91),
-(7,9,50,35,47,55,98,93),
-(7,9,51,35,48,56,100,95),
-(7,9,52,36,48,57,102,97),
-(7,9,53,36,49,58,104,98),
-(7,9,54,37,50,59,105,100),
-(7,9,55,37,50,60,107,102),
-(7,9,56,38,51,61,109,104),
-(7,9,57,38,52,62,111,106),
-(7,9,58,39,52,63,113,108),
-(7,9,59,40,53,64,115,109),
-(7,9,60,40,54,65,117,111),
-(7,9,61,41,54,66,119,113),
-(7,9,62,41,55,67,121,115),
-(7,9,63,42,56,68,123,117),
-(7,9,64,42,57,69,125,119),
-(7,9,65,43,57,70,127,121),
-(7,9,66,44,58,71,129,123),
-(7,9,67,44,59,72,131,125),
-(7,9,68,45,59,73,133,127),
-(7,9,69,45,60,74,135,129),
-(7,9,70,46,61,75,137,131),
-(7,9,71,47,62,84,147,142),
-(7,9,72,48,62,85,148,144),
-(7,9,73,49,63,85,153,147),
-(7,9,74,49,64,88,153,150),
-(7,9,75,50,65,90,155,152),
-(7,9,76,51,66,91,158,155),
-(7,9,77,52,67,92,161,158),
-(7,9,78,52,68,93,163,161),
-(7,9,79,53,69,95,166,164),
-(7,9,80,54,70,96,170,166),
-(8,1,1,24,22,23,16,21),
-(8,1,2,25,23,24,16,21),
-(8,1,3,27,24,25,16,22),
-(8,1,4,28,24,26,16,22),
-(8,1,5,29,25,28,16,22),
-(8,1,6,31,26,29,16,22),
-(8,1,7,32,27,30,17,23),
-(8,1,8,33,28,31,17,23),
-(8,1,9,35,28,33,17,23),
-(8,1,10,36,29,34,17,24),
-(8,1,11,37,30,35,17,24),
-(8,1,12,39,31,36,17,24),
-(8,1,13,40,32,38,17,25),
-(8,1,14,42,33,39,17,25),
-(8,1,15,43,34,40,18,25),
-(8,1,16,45,35,42,18,26),
-(8,1,17,46,35,43,18,26),
-(8,1,18,48,36,44,18,26),
-(8,1,19,49,37,46,18,27),
-(8,1,20,51,38,47,18,27),
-(8,1,21,52,39,49,18,27),
-(8,1,22,54,40,50,18,28),
-(8,1,23,55,41,51,19,28),
-(8,1,24,57,42,53,19,29),
-(8,1,25,59,43,54,19,29),
-(8,1,26,60,44,56,19,29),
-(8,1,27,62,45,57,19,30),
-(8,1,28,63,46,59,19,30),
-(8,1,29,65,47,60,20,31),
-(8,1,30,67,48,62,20,31),
-(8,1,31,69,49,63,20,31),
-(8,1,32,70,50,65,20,32),
-(8,1,33,72,51,67,20,32),
-(8,1,34,74,53,68,20,33),
-(8,1,35,75,54,70,21,33),
-(8,1,36,77,55,71,21,34),
-(8,1,37,79,56,73,21,34),
-(8,1,38,81,57,75,21,35),
-(8,1,39,83,58,76,21,35),
-(8,1,40,84,59,78,22,35),
-(8,1,41,86,60,80,22,36),
-(8,1,42,88,62,81,22,36),
-(8,1,43,90,63,83,22,37),
-(8,1,44,92,64,85,22,37),
-(8,1,45,94,65,86,23,38),
-(8,1,46,96,66,88,23,38),
-(8,1,47,98,67,90,23,39),
-(8,1,48,100,69,92,23,39),
-(8,1,49,102,70,93,24,40),
-(8,1,50,103,71,95,24,40),
-(8,1,51,105,72,97,24,41),
-(8,1,52,107,74,99,24,42),
-(8,1,53,109,75,101,25,42),
-(8,1,54,112,76,103,25,43),
-(8,1,55,114,78,104,25,43),
-(8,1,56,116,79,106,25,44),
-(8,1,57,118,80,108,25,44),
-(8,1,58,120,81,110,26,45),
-(8,1,59,122,83,112,26,45),
-(8,1,60,124,84,114,26,46),
-(8,1,61,126,85,116,27,47),
-(8,1,62,128,87,118,27,47),
-(8,1,63,130,88,120,27,48),
-(8,1,64,133,90,122,27,48),
-(8,1,65,135,91,124,28,49),
-(8,1,66,137,92,126,28,50),
-(8,1,67,139,94,128,28,50),
-(8,1,68,141,95,130,28,51),
-(8,1,69,144,97,132,29,51),
-(8,1,70,146,98,134,29,52),
-(8,1,71,149,99,136,29,53),
-(8,1,72,151,101,139,29,54),
-(8,1,73,154,103,141,29,55),
-(8,1,74,157,104,144,30,55),
-(8,1,75,166,106,151,30,56),
-(8,1,76,172,108,157,30,57),
-(8,1,77,175,110,161,31,58),
-(8,1,78,179,111,163,31,58),
-(8,1,79,182,113,164,31,59),
-(8,1,80,185,115,169,32,60),
-(8,3,1,21,25,22,16,22),
-(8,3,2,21,26,23,17,23),
-(8,3,3,22,28,24,17,23),
-(8,3,4,22,29,25,18,24),
-(8,3,5,23,30,26,18,25),
-(8,3,6,23,32,27,19,25),
-(8,3,7,24,33,28,20,26),
-(8,3,8,24,35,28,20,26),
-(8,3,9,25,36,29,21,27),
-(8,3,10,25,38,30,21,28),
-(8,3,11,25,39,31,22,29),
-(8,3,12,26,41,32,23,29),
-(8,3,13,26,42,33,23,30),
-(8,3,14,27,44,34,24,31),
-(8,3,15,27,45,35,25,31),
-(8,3,16,28,47,36,25,32),
-(8,3,17,28,48,38,26,33),
-(8,3,18,29,50,39,27,34),
-(8,3,19,29,51,40,28,34),
-(8,3,20,30,53,41,28,35),
-(8,3,21,31,55,42,29,36),
-(8,3,22,31,56,43,30,37),
-(8,3,23,32,58,44,30,37),
-(8,3,24,32,60,45,31,38),
-(8,3,25,33,61,46,32,39),
-(8,3,26,33,63,48,33,40),
-(8,3,27,34,65,49,33,41),
-(8,3,28,35,66,50,34,41),
-(8,3,29,35,68,51,35,42),
-(8,3,30,36,70,52,36,43),
-(8,3,31,36,72,53,37,44),
-(8,3,32,37,73,55,37,45),
-(8,3,33,38,75,56,38,46),
-(8,3,34,38,77,57,39,47),
-(8,3,35,39,79,58,40,48),
-(8,3,36,39,81,60,41,48),
-(8,3,37,40,83,61,41,49),
-(8,3,38,41,85,62,42,50),
-(8,3,39,41,86,63,43,51),
-(8,3,40,42,88,65,44,52),
-(8,3,41,43,90,66,45,53),
-(8,3,42,43,92,67,46,54),
-(8,3,43,44,94,69,47,55),
-(8,3,44,45,96,70,47,56),
-(8,3,45,45,98,71,48,57),
-(8,3,46,46,100,73,49,58),
-(8,3,47,47,102,74,50,59),
-(8,3,48,48,104,76,51,60),
-(8,3,49,48,106,77,52,61),
-(8,3,50,49,108,78,53,62),
-(8,3,51,50,110,80,54,63),
-(8,3,52,51,113,81,55,64),
-(8,3,53,51,115,83,56,65),
-(8,3,54,52,117,84,57,66),
-(8,3,55,53,119,86,58,67),
-(8,3,56,54,121,87,59,68),
-(8,3,57,54,123,89,60,69),
-(8,3,58,55,126,90,61,70),
-(8,3,59,56,128,92,62,71),
-(8,3,60,57,130,93,63,73),
-(8,3,61,58,132,95,64,74),
-(8,3,62,58,134,96,65,75),
-(8,3,63,59,137,98,66,76),
-(8,3,64,60,139,99,67,77),
-(8,3,65,61,141,101,68,78),
-(8,3,66,62,144,103,69,79),
-(8,3,67,62,146,104,70,80),
-(8,3,68,63,148,106,71,82),
-(8,3,69,64,151,107,72,83),
-(8,3,70,65,153,109,73,84),
-(8,3,71,66,156,111,74,85),
-(8,3,72,67,159,113,75,86),
-(8,3,73,68,162,115,76,88),
-(8,3,74,69,165,117,78,89),
-(8,3,75,70,174,119,82,91),
-(8,3,76,71,177,121,83,92),
-(8,3,77,72,180,123,85,94),
-(8,3,78,73,184,125,86,95),
-(8,3,79,74,187,127,87,97),
-(8,3,80,75,190,129,89,98),
-(8,4,1,22,25,22,16,21),
-(8,4,2,23,26,23,16,21),
-(8,4,3,24,28,23,16,22),
-(8,4,4,24,29,24,16,22),
-(8,4,5,25,31,25,17,22),
-(8,4,6,26,32,25,17,23),
-(8,4,7,27,34,26,17,23),
-(8,4,8,27,35,27,17,24),
-(8,4,9,28,37,28,17,24),
-(8,4,10,29,38,28,18,24),
-(8,4,11,30,40,29,18,25),
-(8,4,12,31,41,30,18,25),
-(8,4,13,32,43,31,18,26),
-(8,4,14,32,45,32,18,26),
-(8,4,15,33,46,32,19,26),
-(8,4,16,34,48,33,19,27),
-(8,4,17,35,50,34,19,27),
-(8,4,18,36,51,35,19,28),
-(8,4,19,37,53,36,19,28),
-(8,4,20,38,55,36,20,29),
-(8,4,21,39,56,37,20,29),
-(8,4,22,40,58,38,20,30),
-(8,4,23,41,60,39,20,30),
-(8,4,24,42,62,40,20,31),
-(8,4,25,43,63,41,21,31),
-(8,4,26,44,65,42,21,32),
-(8,4,27,45,67,43,21,32),
-(8,4,28,46,69,44,21,33),
-(8,4,29,47,71,44,22,33),
-(8,4,30,48,72,45,22,34),
-(8,4,31,49,74,46,22,34),
-(8,4,32,50,76,47,22,35),
-(8,4,33,51,78,48,23,35),
-(8,4,34,52,80,49,23,36),
-(8,4,35,53,82,50,23,36),
-(8,4,36,54,84,51,24,37),
-(8,4,37,55,86,52,24,37),
-(8,4,38,56,88,53,24,38),
-(8,4,39,57,90,54,24,38),
-(8,4,40,58,92,55,25,39),
-(8,4,41,59,94,56,25,40),
-(8,4,42,60,96,57,25,40),
-(8,4,43,62,98,58,26,41),
-(8,4,44,63,100,59,26,41),
-(8,4,45,64,102,60,26,42),
-(8,4,46,65,104,61,27,43),
-(8,4,47,66,107,63,27,43),
-(8,4,48,67,109,64,27,44),
-(8,4,49,69,111,65,27,44),
-(8,4,50,70,113,66,28,45),
-(8,4,51,71,115,67,28,46),
-(8,4,52,72,117,68,28,46),
-(8,4,53,74,120,69,29,47),
-(8,4,54,75,122,70,29,48),
-(8,4,55,76,124,72,29,48),
-(8,4,56,77,126,73,30,49),
-(8,4,57,79,129,74,30,50),
-(8,4,58,80,131,75,30,50),
-(8,4,59,81,133,76,31,51),
-(8,4,60,82,136,77,31,52),
-(8,4,61,84,138,79,32,52),
-(8,4,62,85,140,80,32,53),
-(8,4,63,86,143,81,32,54),
-(8,4,64,88,145,82,33,55),
-(8,4,65,89,148,84,33,55),
-(8,4,66,90,150,85,33,56),
-(8,4,67,92,153,86,34,57),
-(8,4,68,93,155,87,34,58),
-(8,4,69,95,157,89,35,58),
-(8,4,70,96,160,90,35,59),
-(8,4,71,98,163,94,35,60),
-(8,4,72,100,166,96,36,60),
-(8,4,73,101,169,96,36,61),
-(8,4,74,103,172,97,37,62),
-(8,4,75,105,175,98,37,63),
-(8,4,76,106,178,99,37,64),
-(8,4,77,108,181,105,38,65),
-(8,4,78,110,185,107,38,66),
-(8,4,79,112,188,109,39,67),
-(8,4,80,114,191,110,39,68),
-(8,5,1,21,22,21,18,24),
-(8,5,2,21,22,21,19,25),
-(8,5,3,21,22,22,21,27),
-(8,5,4,21,23,22,22,28),
-(8,5,5,22,23,22,23,29),
-(8,5,6,22,23,23,25,31),
-(8,5,7,22,23,23,26,32),
-(8,5,8,22,24,24,27,34),
-(8,5,9,22,24,24,29,35),
-(8,5,10,22,24,24,30,37),
-(8,5,11,23,24,25,32,38),
-(8,5,12,23,24,25,33,40),
-(8,5,13,23,25,26,35,41),
-(8,5,14,23,25,26,36,43),
-(8,5,15,23,25,26,38,44),
-(8,5,16,24,26,27,39,46),
-(8,5,17,24,26,27,41,47),
-(8,5,18,24,26,28,42,49),
-(8,5,19,24,26,28,44,50),
-(8,5,20,24,27,29,45,52),
-(8,5,21,25,27,29,47,54),
-(8,5,22,25,27,30,48,55),
-(8,5,23,25,28,30,50,57),
-(8,5,24,25,28,31,52,59),
-(8,5,25,25,28,31,53,60),
-(8,5,26,26,28,32,55,62),
-(8,5,27,26,29,32,56,64),
-(8,5,28,26,29,33,58,65),
-(8,5,29,26,29,33,60,67),
-(8,5,30,27,30,34,62,69),
-(8,5,31,27,30,34,63,71),
-(8,5,32,27,30,35,65,73),
-(8,5,33,27,31,35,67,74),
-(8,5,34,28,31,36,68,76),
-(8,5,35,28,32,36,70,78),
-(8,5,36,28,32,37,72,80),
-(8,5,37,29,32,37,74,82),
-(8,5,38,29,33,38,76,84),
-(8,5,39,29,33,38,77,86),
-(8,5,40,29,33,39,79,87),
-(8,5,41,30,34,40,81,89),
-(8,5,42,30,34,40,83,91),
-(8,5,43,30,35,41,85,93),
-(8,5,44,31,35,41,87,95),
-(8,5,45,31,35,42,89,97),
-(8,5,46,31,36,43,91,99),
-(8,5,47,32,36,43,93,101),
-(8,5,48,32,37,44,94,103),
-(8,5,49,32,37,44,96,105),
-(8,5,50,33,37,45,98,107),
-(8,5,51,33,38,46,100,110),
-(8,5,52,33,38,46,102,112),
-(8,5,53,34,39,47,104,114),
-(8,5,54,34,39,48,106,116),
-(8,5,55,34,40,48,109,118),
-(8,5,56,35,40,49,111,120),
-(8,5,57,35,41,50,113,122),
-(8,5,58,35,41,50,115,125),
-(8,5,59,36,42,51,117,127),
-(8,5,60,36,42,52,119,129),
-(8,5,61,36,42,52,121,131),
-(8,5,62,37,43,53,123,133),
-(8,5,63,37,43,54,125,136),
-(8,5,64,38,44,55,128,138),
-(8,5,65,38,44,55,130,140),
-(8,5,66,38,45,56,132,143),
-(8,5,67,39,45,57,134,145),
-(8,5,68,39,46,58,136,147),
-(8,5,69,40,46,58,139,150),
-(8,5,70,40,47,59,141,152),
-(8,5,71,40,48,60,144,155),
-(8,5,72,41,48,60,147,158),
-(8,5,73,41,49,61,150,161),
-(8,5,74,42,49,62,152,164),
-(8,5,75,42,50,63,155,167),
-(8,5,76,42,51,64,158,170),
-(8,5,77,43,51,65,161,173),
-(8,5,78,43,52,66,164,176),
-(8,5,79,44,52,67,167,179),
-(8,5,80,44,53,68,170,182),
-(8,6,1,24,22,23,16,21),
-(8,6,2,25,23,24,16,21),
-(8,6,3,27,24,25,16,22),
-(8,6,4,28,24,26,16,22),
-(8,6,5,29,25,28,16,22),
-(8,6,6,31,26,29,16,22),
-(8,6,7,32,27,30,17,23),
-(8,6,8,33,28,31,17,23),
-(8,6,9,35,28,33,17,23),
-(8,6,10,36,29,34,17,24),
-(8,6,11,37,30,35,17,24),
-(8,6,12,39,31,36,17,24),
-(8,6,13,40,32,38,17,25),
-(8,6,14,42,33,39,17,25),
-(8,6,15,43,34,40,18,25),
-(8,6,16,45,35,42,18,26),
-(8,6,17,46,35,43,18,26),
-(8,6,18,48,36,44,18,26),
-(8,6,19,49,37,46,18,27),
-(8,6,20,51,38,47,18,27),
-(8,6,21,52,39,49,18,27),
-(8,6,22,54,40,50,18,28),
-(8,6,23,55,41,51,19,28),
-(8,6,24,57,42,53,19,29),
-(8,6,25,59,43,54,19,29),
-(8,6,26,60,44,56,19,29),
-(8,6,27,62,45,57,19,30),
-(8,6,28,63,46,59,19,30),
-(8,6,29,65,47,60,20,31),
-(8,6,30,67,48,62,20,31),
-(8,6,31,69,49,63,20,31),
-(8,6,32,70,50,65,20,32),
-(8,6,33,72,51,67,20,32),
-(8,6,34,74,53,68,20,33),
-(8,6,35,75,54,70,21,33),
-(8,6,36,77,55,71,21,34),
-(8,6,37,79,56,73,21,34),
-(8,6,38,81,57,75,21,35),
-(8,6,39,83,58,76,21,35),
-(8,6,40,84,59,78,22,35),
-(8,6,41,86,60,80,22,36),
-(8,6,42,88,62,81,22,36),
-(8,6,43,90,63,83,22,37),
-(8,6,44,92,64,85,22,37),
-(8,6,45,94,65,86,23,38),
-(8,6,46,96,66,88,23,38),
-(8,6,47,98,67,90,23,39),
-(8,6,48,100,69,92,23,39),
-(8,6,49,102,70,93,24,40),
-(8,6,50,103,71,95,24,40),
-(8,6,51,105,72,96,24,41),
-(8,6,52,106,74,97,24,42),
-(8,6,53,107,73,98,25,42),
-(8,6,54,108,74,99,25,43),
-(8,6,55,109,75,100,25,43),
-(8,6,56,112,77,103,25,44),
-(8,6,57,114,78,105,25,44),
-(8,6,58,118,79,107,26,45),
-(8,6,59,119,81,109,26,45),
-(8,6,60,121,82,111,26,46),
-(8,6,61,123,83,113,26,47),
-(8,6,62,126,85,115,26,47),
-(8,6,63,128,86,118,27,48),
-(8,6,64,131,88,120,27,48),
-(8,6,65,138,89,122,27,49),
-(8,6,66,140,91,125,27,50),
-(8,6,67,143,92,127,28,50),
-(8,6,68,145,94,129,28,51),
-(8,6,69,148,95,132,28,52),
-(8,6,70,151,97,134,28,52),
-(8,6,71,154,99,137,29,53),
-(8,6,72,156,100,139,29,54),
-(8,6,73,159,102,142,29,55),
-(8,6,74,162,104,144,29,55),
-(8,6,75,165,105,147,30,56),
-(8,6,76,168,107,150,30,57),
-(8,6,77,169,109,153,30,58),
-(8,6,78,170,110,155,30,58),
-(8,6,79,178,112,158,31,59),
-(8,6,80,181,114,161,31,60),
-(8,7,1,22,22,22,17,23),
-(8,7,2,23,22,23,18,24),
-(8,7,3,24,23,24,19,25),
-(8,7,4,25,23,25,20,26),
-(8,7,5,25,24,26,21,27),
-(8,7,6,26,24,27,22,28),
-(8,7,7,27,25,28,23,29),
-(8,7,8,28,25,29,24,30),
-(8,7,9,29,25,30,25,31),
-(8,7,10,30,26,31,26,33),
-(8,7,11,31,26,32,27,34),
-(8,7,12,32,27,33,28,35),
-(8,7,13,33,27,34,29,36),
-(8,7,14,34,28,35,30,37),
-(8,7,15,34,28,36,31,38),
-(8,7,16,35,29,38,32,39),
-(8,7,17,36,29,39,33,41),
-(8,7,18,37,30,40,34,42),
-(8,7,19,38,30,41,35,43),
-(8,7,20,39,31,42,36,44),
-(8,7,21,40,32,43,37,45),
-(8,7,22,41,32,45,38,47),
-(8,7,23,43,33,46,39,48),
-(8,7,24,44,33,47,40,49),
-(8,7,25,45,34,48,42,51),
-(8,7,26,46,34,49,43,52),
-(8,7,27,47,35,51,44,53),
-(8,7,28,48,35,52,45,54),
-(8,7,29,49,36,53,46,56),
-(8,7,30,50,37,54,48,57),
-(8,7,31,51,37,56,49,59),
-(8,7,32,52,38,57,50,60),
-(8,7,33,53,38,58,51,61),
-(8,7,34,55,39,60,52,63),
-(8,7,35,56,40,61,54,64),
-(8,7,36,57,40,62,55,66),
-(8,7,37,58,41,64,56,67),
-(8,7,38,59,42,65,57,68),
-(8,7,39,61,42,66,59,70),
-(8,7,40,62,43,68,60,71),
-(8,7,41,63,44,69,61,73),
-(8,7,42,64,44,71,63,74),
-(8,7,43,65,45,72,64,76),
-(8,7,44,67,46,74,65,77),
-(8,7,45,68,46,75,67,79),
-(8,7,46,69,47,76,68,80),
-(8,7,47,71,48,78,69,82),
-(8,7,48,72,49,79,71,83),
-(8,7,49,73,49,81,72,85),
-(8,7,50,74,50,82,74,87),
-(8,7,51,76,51,84,75,88),
-(8,7,52,77,51,85,77,90),
-(8,7,53,78,52,87,78,92),
-(8,7,54,80,53,89,79,93),
-(8,7,55,81,54,90,81,95),
-(8,7,56,83,55,92,82,96),
-(8,7,57,84,55,93,84,98),
-(8,7,58,85,56,95,85,100),
-(8,7,59,87,57,97,87,102),
-(8,7,60,88,58,98,88,103),
-(8,7,61,90,58,100,90,105),
-(8,7,62,91,59,101,91,107),
-(8,7,63,93,60,103,93,108),
-(8,7,64,94,61,105,94,110),
-(8,7,65,95,62,106,96,112),
-(8,7,66,97,63,108,98,114),
-(8,7,67,98,63,110,99,116),
-(8,7,68,100,64,112,101,117),
-(8,7,69,101,65,113,102,119),
-(8,7,70,103,66,115,104,121),
-(8,7,71,104,67,117,116,123),
-(8,7,72,106,68,119,118,126),
-(8,7,73,108,69,121,121,128),
-(8,7,74,110,70,124,123,130),
-(8,7,75,112,71,126,125,132),
-(8,7,76,114,72,128,127,135),
-(8,7,77,115,73,130,129,137),
-(8,7,78,117,74,132,132,139),
-(8,7,79,119,75,135,134,142),
-(8,7,80,121,76,137,136,144),
-(8,8,1,21,22,21,19,23),
-(8,8,2,21,22,21,20,24),
-(8,8,3,21,22,22,22,26),
-(8,8,4,21,22,22,23,27),
-(8,8,5,21,23,22,25,28),
-(8,8,6,21,23,22,26,30),
-(8,8,7,21,23,23,27,31),
-(8,8,8,22,23,23,29,32),
-(8,8,9,22,23,23,30,34),
-(8,8,10,22,23,24,32,35),
-(8,8,11,22,24,24,33,37),
-(8,8,12,22,24,24,35,38),
-(8,8,13,22,24,25,36,39),
-(8,8,14,22,24,25,38,41),
-(8,8,15,22,24,25,39,42),
-(8,8,16,22,24,26,41,44),
-(8,8,17,23,25,26,42,45),
-(8,8,18,23,25,26,44,47),
-(8,8,19,23,25,27,46,48),
-(8,8,20,23,25,27,47,50),
-(8,8,21,23,25,27,49,51),
-(8,8,22,23,26,28,51,53),
-(8,8,23,23,26,28,52,55),
-(8,8,24,24,26,29,54,56),
-(8,8,25,24,26,29,56,58),
-(8,8,26,24,27,29,57,60),
-(8,8,27,24,27,30,59,61),
-(8,8,28,24,27,30,61,63),
-(8,8,29,24,27,31,63,65),
-(8,8,30,24,28,31,64,66),
-(8,8,31,25,28,31,66,68),
-(8,8,32,25,28,32,68,70),
-(8,8,33,25,28,32,70,71),
-(8,8,34,25,29,33,71,73),
-(8,8,35,25,29,33,73,75),
-(8,8,36,26,29,34,75,77),
-(8,8,37,26,29,34,77,79),
-(8,8,38,26,30,35,79,80),
-(8,8,39,26,30,35,81,82),
-(8,8,40,26,30,35,83,84),
-(8,8,41,27,31,36,85,86),
-(8,8,42,27,31,36,87,88),
-(8,8,43,27,31,37,89,90),
-(8,8,44,27,32,37,91,91),
-(8,8,45,27,32,38,93,93),
-(8,8,46,28,32,38,95,95),
-(8,8,47,28,32,39,97,97),
-(8,8,48,28,33,39,99,99),
-(8,8,49,28,33,40,101,101),
-(8,8,50,29,33,40,103,103),
-(8,8,51,29,34,41,105,105),
-(8,8,52,29,34,42,107,107),
-(8,8,53,29,35,42,109,109),
-(8,8,54,30,35,43,111,111),
-(8,8,55,30,35,43,113,113),
-(8,8,56,30,36,44,115,115),
-(8,8,57,30,36,44,118,118),
-(8,8,58,31,36,45,120,120),
-(8,8,59,31,37,45,122,122),
-(8,8,60,31,37,46,124,124),
-(8,8,61,31,37,47,126,126),
-(8,8,62,32,38,47,129,128),
-(8,8,63,32,38,48,131,130),
-(8,8,64,32,39,48,133,133),
-(8,8,65,33,39,49,135,135),
-(8,8,66,33,39,50,138,137),
-(8,8,67,33,40,50,140,139),
-(8,8,68,33,40,51,142,141),
-(8,8,69,34,41,51,145,144),
-(8,8,70,34,41,52,147,146),
-(8,8,71,34,41,53,150,149),
-(8,8,72,34,42,54,153,152),
-(8,8,73,34,42,55,156,155),
-(8,8,74,35,43,55,159,157),
-(8,8,75,35,43,56,162,160),
-(8,8,76,35,43,57,168,163),
-(8,8,77,36,44,58,168,166),
-(8,8,78,36,44,58,171,169),
-(8,8,79,36,45,59,177,172),
-(8,8,80,37,45,60,177,175),
-(10,2,1,19,22,21,24,20),
-(10,2,2,20,23,22,25,21),
-(10,2,3,21,23,23,25,21),
-(10,2,4,22,24,24,26,22),
-(10,2,5,23,24,25,27,23),
-(10,2,6,25,25,26,27,24),
-(10,2,7,26,25,27,28,24),
-(10,2,8,27,26,28,29,25),
-(10,2,9,28,27,29,29,26),
-(10,2,10,29,27,31,30,26),
-(10,2,11,30,28,32,31,27),
-(10,2,12,32,29,33,31,28),
-(10,2,13,33,29,34,32,29),
-(10,2,14,34,30,35,33,30),
-(10,2,15,35,31,36,33,30),
-(10,2,16,37,31,37,34,31),
-(10,2,17,38,32,39,35,32),
-(10,2,18,39,33,40,36,33),
-(10,2,19,40,33,41,36,34),
-(10,2,20,42,34,42,37,35),
-(10,2,21,43,35,44,38,35),
-(10,2,22,44,35,45,39,36),
-(10,2,23,46,36,46,40,37),
-(10,2,24,47,37,47,40,38),
-(10,2,25,49,38,49,41,39),
-(10,2,26,50,38,50,42,40),
-(10,2,27,51,39,51,43,41),
-(10,2,28,53,40,53,44,42),
-(10,2,29,54,41,54,45,43),
-(10,2,30,56,41,55,45,43),
-(10,2,31,57,42,57,46,44),
-(10,2,32,58,43,58,47,45),
-(10,2,33,60,44,59,48,46),
-(10,2,34,61,45,61,49,47),
-(10,2,35,63,45,62,50,48),
-(10,2,36,64,46,64,51,49),
-(10,2,37,66,47,65,52,50),
-(10,2,38,67,48,67,53,51),
-(10,2,39,69,49,68,54,52),
-(10,2,40,71,50,69,55,53),
-(10,2,41,72,50,71,55,54),
-(10,2,42,74,51,72,56,55),
-(10,2,43,75,52,74,57,56),
-(10,2,44,77,53,75,58,57),
-(10,2,45,79,54,77,59,59),
-(10,2,46,80,55,78,60,60),
-(10,2,47,82,56,80,61,61),
-(10,2,48,83,57,82,62,62),
-(10,2,49,85,58,83,63,63),
-(10,2,50,87,59,85,64,64),
-(10,2,51,89,60,86,66,65),
-(10,2,52,90,61,88,67,66),
-(10,2,53,92,61,90,68,67),
-(10,2,54,94,62,91,69,69),
-(10,2,55,95,63,93,70,70),
-(10,2,56,97,64,95,71,71),
-(10,2,57,99,65,96,72,72),
-(10,2,58,101,66,98,73,73),
-(10,2,59,102,67,100,74,74),
-(10,2,60,104,68,101,75,76),
-(10,2,61,106,69,103,76,77),
-(10,2,62,108,70,105,78,78),
-(10,2,63,110,72,106,79,79),
-(10,2,64,112,73,108,80,80),
-(10,2,65,113,74,110,81,82),
-(10,2,66,115,75,112,82,83),
-(10,2,67,117,76,114,83,84),
-(10,2,68,119,77,115,85,85),
-(10,2,69,121,78,117,86,87),
-(10,2,70,123,79,119,87,88),
-(10,2,71,125,80,120,88,89),
-(10,2,72,128,81,123,90,91),
-(10,2,73,130,82,125,91,93),
-(10,2,74,133,84,127,93,94),
-(10,2,75,135,85,129,94,96),
-(10,2,76,137,86,132,96,97),
-(10,2,77,140,88,134,97,99),
-(10,2,78,143,89,136,99,101),
-(10,2,79,145,90,139,100,102),
-(10,2,80,148,92,141,102,104),
-(10,3,1,17,25,20,24,20),
-(10,3,2,17,26,21,25,21),
-(10,3,3,18,28,22,25,21),
-(10,3,4,18,29,23,26,22),
-(10,3,5,19,30,24,26,23),
-(10,3,6,19,32,25,27,23),
-(10,3,7,20,33,26,27,24),
-(10,3,8,20,35,27,28,25),
-(10,3,9,21,36,27,29,25),
-(10,3,10,21,38,28,29,26),
-(10,3,11,22,39,29,30,27),
-(10,3,12,22,41,30,31,27),
-(10,3,13,23,42,31,31,28),
-(10,3,14,23,44,32,32,29),
-(10,3,15,24,45,34,32,29),
-(10,3,16,24,47,35,33,30),
-(10,3,17,25,48,36,34,31),
-(10,3,18,25,50,37,34,32),
-(10,3,19,26,51,38,35,32),
-(10,3,20,26,53,39,36,33),
-(10,3,21,27,55,40,37,34),
-(10,3,22,27,56,41,37,35),
-(10,3,23,28,58,42,38,36),
-(10,3,24,28,60,43,39,36),
-(10,3,25,29,61,44,39,37),
-(10,3,26,30,63,46,40,38),
-(10,3,27,30,65,47,41,39),
-(10,3,28,31,66,48,42,40),
-(10,3,29,31,68,49,42,40),
-(10,3,30,32,70,50,43,41),
-(10,3,31,33,72,52,44,42),
-(10,3,32,33,73,53,45,43),
-(10,3,33,34,75,54,46,44),
-(10,3,34,34,77,55,46,45),
-(10,3,35,35,79,57,47,46),
-(10,3,36,36,81,58,48,47),
-(10,3,37,36,83,59,49,47),
-(10,3,38,37,85,60,50,48),
-(10,3,39,38,86,62,51,49),
-(10,3,40,38,88,63,51,50),
-(10,3,41,39,90,64,52,51),
-(10,3,42,40,92,66,53,52),
-(10,3,43,40,94,67,54,53),
-(10,3,44,41,96,68,55,54),
-(10,3,45,42,98,70,56,55),
-(10,3,46,42,100,71,57,56),
-(10,3,47,43,102,72,58,57),
-(10,3,48,44,104,74,59,58),
-(10,3,49,45,106,75,60,59),
-(10,3,50,45,108,77,61,60),
-(10,3,51,46,110,78,61,61),
-(10,3,52,47,113,79,62,62),
-(10,3,53,47,115,81,63,63),
-(10,3,54,48,117,82,64,64),
-(10,3,55,49,119,84,65,65),
-(10,3,56,50,121,85,66,66),
-(10,3,57,50,123,87,67,67),
-(10,3,58,51,126,88,68,68),
-(10,3,59,52,128,90,69,70),
-(10,3,60,53,130,91,70,71),
-(10,3,61,54,132,93,71,72),
-(10,3,62,54,134,94,72,73),
-(10,3,63,55,137,96,73,74),
-(10,3,64,56,139,97,75,75),
-(10,3,65,57,141,99,76,76),
-(10,3,66,58,144,101,77,77),
-(10,3,67,58,146,102,78,78),
-(10,3,68,59,148,104,79,80),
-(10,3,69,60,151,105,80,81),
-(10,3,70,61,153,107,81,82),
-(10,3,71,62,156,108,82,83),
-(10,3,72,63,159,110,83,84),
-(10,3,73,64,162,112,84,86),
-(10,3,74,65,165,114,86,87),
-(10,3,75,66,168,116,87,89),
-(10,3,76,67,171,118,89,90),
-(10,3,77,68,174,120,90,92),
-(10,3,78,69,177,122,91,93),
-(10,3,79,70,180,124,92,95),
-(10,3,80,71,183,126,94,96),
-(10,4,1,18,25,20,24,19),
-(10,4,2,19,26,21,24,19),
-(10,4,3,20,28,21,24,20),
-(10,4,4,20,29,22,24,20),
-(10,4,5,21,31,23,25,20),
-(10,4,6,22,32,24,25,21),
-(10,4,7,23,34,24,25,21),
-(10,4,8,24,35,25,25,22),
-(10,4,9,24,37,26,25,22),
-(10,4,10,25,38,26,25,22),
-(10,4,11,26,40,27,25,23),
-(10,4,12,27,41,28,26,23),
-(10,4,13,28,43,29,26,24),
-(10,4,14,29,45,30,26,24),
-(10,4,15,29,46,30,26,25),
-(10,4,16,30,48,31,26,25),
-(10,4,17,31,50,32,27,25),
-(10,4,18,32,51,33,27,26),
-(10,4,19,33,53,34,27,26),
-(10,4,20,34,55,35,27,27),
-(10,4,21,35,56,35,27,27),
-(10,4,22,36,58,36,28,28),
-(10,4,23,37,60,37,28,28),
-(10,4,24,38,62,38,28,29),
-(10,4,25,39,63,39,28,29),
-(10,4,26,40,65,40,29,30),
-(10,4,27,41,67,41,29,30),
-(10,4,28,42,69,42,29,31),
-(10,4,29,43,71,43,29,31),
-(10,4,30,44,72,43,29,32),
-(10,4,31,45,74,44,30,32),
-(10,4,32,46,76,45,30,33),
-(10,4,33,47,78,46,30,33),
-(10,4,34,48,80,47,31,34),
-(10,4,35,49,82,48,31,34),
-(10,4,36,50,84,49,31,35),
-(10,4,37,51,86,50,31,35),
-(10,4,38,52,88,51,32,36),
-(10,4,39,53,90,52,32,37),
-(10,4,40,54,92,53,32,37),
-(10,4,41,56,94,54,33,38),
-(10,4,42,57,96,55,33,38),
-(10,4,43,58,98,56,33,39),
-(10,4,44,59,100,57,33,39),
-(10,4,45,60,102,59,34,40),
-(10,4,46,61,104,60,34,41),
-(10,4,47,62,107,61,34,41),
-(10,4,48,64,109,62,35,42),
-(10,4,49,65,111,63,35,43),
-(10,4,50,66,113,64,35,43),
-(10,4,51,67,115,65,36,44),
-(10,4,52,68,117,66,36,44),
-(10,4,53,70,120,67,36,45),
-(10,4,54,71,122,69,37,46),
-(10,4,55,72,124,70,37,46),
-(10,4,56,73,126,71,37,47),
-(10,4,57,75,129,72,38,48),
-(10,4,58,76,131,73,38,48),
-(10,4,59,77,133,74,39,49),
-(10,4,60,79,136,76,39,50),
-(10,4,61,80,138,77,39,51),
-(10,4,62,81,140,78,40,51),
-(10,4,63,82,143,79,40,52),
-(10,4,64,84,145,80,41,53),
-(10,4,65,85,148,82,41,53),
-(10,4,66,87,150,83,41,54),
-(10,4,67,88,153,84,42,55),
-(10,4,68,89,155,85,42,56),
-(10,4,69,91,157,87,43,56),
-(10,4,70,92,160,88,43,57),
-(10,4,71,94,163,88,43,58),
-(10,4,72,96,166,90,44,58),
-(10,4,73,97,169,92,44,59),
-(10,4,74,99,172,93,45,60),
-(10,4,75,101,175,95,45,61),
-(10,4,76,102,178,96,45,62),
-(10,4,77,104,181,101,46,63),
-(10,4,78,106,185,104,46,64),
-(10,4,79,108,188,105,47,65),
-(10,4,80,110,191,107,47,66),
-(10,5,1,17,22,19,26,22),
-(10,5,2,17,22,19,27,23),
-(10,5,3,17,22,20,29,25),
-(10,5,4,17,23,20,30,26),
-(10,5,5,18,23,20,31,27),
-(10,5,6,18,23,21,33,29),
-(10,5,7,18,23,21,34,30),
-(10,5,8,18,24,22,35,32),
-(10,5,9,18,24,22,37,33),
-(10,5,10,19,24,22,38,35),
-(10,5,11,19,24,23,39,36),
-(10,5,12,19,24,23,41,38),
-(10,5,13,19,25,24,42,39),
-(10,5,14,19,25,24,44,41),
-(10,5,15,19,25,25,45,42),
-(10,5,16,20,26,25,47,44),
-(10,5,17,20,26,25,48,45),
-(10,5,18,20,26,26,50,47),
-(10,5,19,20,26,26,51,49),
-(10,5,20,21,27,27,53,50),
-(10,5,21,21,27,27,54,52),
-(10,5,22,21,27,28,56,53),
-(10,5,23,21,28,28,58,55),
-(10,5,24,21,28,29,59,57),
-(10,5,25,22,28,29,61,58),
-(10,5,26,22,28,30,62,60),
-(10,5,27,22,29,30,64,62),
-(10,5,28,22,29,31,66,64),
-(10,5,29,23,29,31,67,65),
-(10,5,30,23,30,32,69,67),
-(10,5,31,23,30,32,71,69),
-(10,5,32,23,30,33,72,71),
-(10,5,33,24,31,33,74,72),
-(10,5,34,24,31,34,76,74),
-(10,5,35,24,32,34,78,76),
-(10,5,36,24,32,35,80,78),
-(10,5,37,25,32,35,81,80),
-(10,5,38,25,33,36,83,82),
-(10,5,39,25,33,37,85,84),
-(10,5,40,26,33,37,87,86),
-(10,5,41,26,34,38,89,88),
-(10,5,42,26,34,38,91,89),
-(10,5,43,27,35,39,92,91),
-(10,5,44,27,35,39,94,93),
-(10,5,45,27,35,40,96,95),
-(10,5,46,27,36,41,98,97),
-(10,5,47,28,36,41,100,99),
-(10,5,48,28,37,42,102,101),
-(10,5,49,28,37,43,104,103),
-(10,5,50,29,37,43,106,106),
-(10,5,51,29,38,44,108,108),
-(10,5,52,29,38,44,110,110),
-(10,5,53,30,39,45,112,112),
-(10,5,54,30,39,46,114,114),
-(10,5,55,30,40,46,116,116),
-(10,5,56,31,40,47,118,118),
-(10,5,57,31,41,48,120,120),
-(10,5,58,31,41,48,123,123),
-(10,5,59,32,42,49,125,125),
-(10,5,60,32,42,50,127,127),
-(10,5,61,33,42,51,129,129),
-(10,5,62,33,43,51,131,131),
-(10,5,63,33,43,52,133,134),
-(10,5,64,34,44,53,135,136),
-(10,5,65,34,44,53,138,138),
-(10,5,66,34,45,54,140,141),
-(10,5,67,35,45,55,142,143),
-(10,5,68,35,46,56,144,145),
-(10,5,69,36,46,56,147,148),
-(10,5,70,36,47,57,149,150),
-(10,5,71,36,48,57,152,153),
-(10,5,72,37,48,57,155,156),
-(10,5,73,37,49,58,158,159),
-(10,5,74,38,49,59,160,163),
-(10,5,75,38,50,60,163,165),
-(10,5,76,38,51,61,166,170),
-(10,5,77,39,51,62,168,175),
-(10,5,78,39,52,63,172,174),
-(10,5,79,40,52,64,175,177),
-(10,5,80,40,53,65,178,180),
-(10,6,1,18,23,21,24,20),
-(10,6,2,19,24,22,24,20),
-(10,6,3,21,25,23,24,21),
-(10,6,4,22,25,25,24,21),
-(10,6,5,23,26,26,24,21),
-(10,6,6,25,27,27,24,21),
-(10,6,7,26,28,28,24,22),
-(10,6,8,27,29,29,25,22),
-(10,6,9,29,29,31,25,22),
-(10,6,10,30,30,32,25,23),
-(10,6,11,32,31,33,25,23),
-(10,6,12,33,32,34,25,23),
-(10,6,13,34,33,36,25,24),
-(10,6,14,36,34,37,25,24),
-(10,6,15,37,35,38,25,24),
-(10,6,16,39,36,40,25,25),
-(10,6,17,40,36,41,25,25),
-(10,6,18,42,37,43,26,25),
-(10,6,19,43,38,44,26,26),
-(10,6,20,45,39,45,26,26),
-(10,6,21,47,40,47,26,26),
-(10,6,22,48,41,48,26,27),
-(10,6,23,50,42,50,26,27),
-(10,6,24,51,43,51,26,28),
-(10,6,25,53,44,52,27,28),
-(10,6,26,55,45,54,27,28),
-(10,6,27,56,46,55,27,29),
-(10,6,28,58,47,57,27,29),
-(10,6,29,59,48,58,27,30),
-(10,6,30,61,49,60,27,30),
-(10,6,31,63,50,62,27,30),
-(10,6,32,65,51,63,28,31),
-(10,6,33,66,52,65,28,31),
-(10,6,34,68,53,66,28,32),
-(10,6,35,70,55,68,28,32),
-(10,6,36,72,56,69,28,33),
-(10,6,37,73,57,71,29,33),
-(10,6,38,75,58,73,29,34),
-(10,6,39,77,59,74,29,34),
-(10,6,40,79,60,76,29,35),
-(10,6,41,81,61,78,29,35),
-(10,6,42,82,62,79,30,35),
-(10,6,43,84,64,81,30,36),
-(10,6,44,86,65,83,30,36),
-(10,6,45,88,66,85,30,37),
-(10,6,46,90,67,86,30,37),
-(10,6,47,92,68,88,31,38),
-(10,6,48,94,69,90,31,38),
-(10,6,49,96,69,92,31,39),
-(10,6,50,98,70,93,31,40),
-(10,6,51,100,71,95,32,40),
-(10,6,52,102,72,96,32,41),
-(10,6,53,103,73,97,32,41),
-(10,6,54,104,74,98,32,41),
-(10,6,55,105,75,97,33,41),
-(10,6,56,108,77,100,33,42),
-(10,6,57,113,78,102,33,42),
-(10,6,58,115,79,104,34,43),
-(10,6,59,117,81,106,34,43),
-(10,6,60,118,82,108,34,44),
-(10,6,61,119,83,110,34,45),
-(10,6,62,121,85,112,34,45),
-(10,6,63,124,86,115,35,46),
-(10,6,64,127,88,117,35,46),
-(10,6,65,133,89,119,35,47),
-(10,6,66,135,91,122,35,48),
-(10,6,67,139,92,124,36,48),
-(10,6,68,141,94,126,36,49),
-(10,6,69,142,95,129,36,50),
-(10,6,70,145,97,131,36,50),
-(10,6,71,150,99,134,37,51),
-(10,6,72,152,100,136,37,52),
-(10,6,73,155,102,139,37,53),
-(10,6,74,158,104,141,37,53),
-(10,6,75,159,105,144,38,54),
-(10,6,76,160,107,147,38,55),
-(10,6,77,163,109,149,38,56),
-(10,6,78,166,110,152,38,56),
-(10,6,79,169,112,155,39,57),
-(10,6,80,172,114,158,39,58),
-(10,8,1,17,22,19,27,21),
-(10,8,2,17,22,19,28,22),
-(10,8,3,17,22,20,30,24),
-(10,8,4,17,22,20,31,25),
-(10,8,5,17,23,20,32,26),
-(10,8,6,17,23,20,34,28),
-(10,8,7,18,23,21,35,29),
-(10,8,8,18,23,21,37,30),
-(10,8,9,18,23,21,38,32),
-(10,8,10,18,23,22,40,33),
-(10,8,11,18,24,22,41,35),
-(10,8,12,18,24,22,42,36),
-(10,8,13,18,24,23,44,37),
-(10,8,14,18,24,23,45,39),
-(10,8,15,18,24,23,47,40),
-(10,8,16,19,24,24,49,42),
-(10,8,17,19,25,24,50,43),
-(10,8,18,19,25,24,52,45),
-(10,8,19,19,25,25,53,46),
-(10,8,20,19,25,25,55,48),
-(10,8,21,19,25,26,57,50),
-(10,8,22,19,26,26,58,51),
-(10,8,23,20,26,26,60,53),
-(10,8,24,20,26,27,61,54),
-(10,8,25,20,26,27,63,56),
-(10,8,26,20,27,27,65,58),
-(10,8,27,20,27,28,67,59),
-(10,8,28,20,27,28,68,61),
-(10,8,29,21,27,29,70,63),
-(10,8,30,21,28,29,72,64),
-(10,8,31,21,28,30,74,66),
-(10,8,32,21,28,30,75,68),
-(10,8,33,21,28,30,77,70),
-(10,8,34,21,29,31,79,71),
-(10,8,35,22,29,31,81,73),
-(10,8,36,22,29,32,83,75),
-(10,8,37,22,29,32,85,77),
-(10,8,38,22,30,33,86,78),
-(10,8,39,22,30,33,88,80),
-(10,8,40,23,30,34,90,82),
-(10,8,41,23,31,34,92,84),
-(10,8,42,23,31,35,94,86),
-(10,8,43,23,31,35,96,88),
-(10,8,44,23,32,36,98,90),
-(10,8,45,24,32,36,100,92),
-(10,8,46,24,32,37,102,93),
-(10,8,47,24,32,37,104,95),
-(10,8,48,24,33,38,106,97),
-(10,8,49,25,33,38,108,99),
-(10,8,50,25,33,39,110,101),
-(10,8,51,25,34,39,112,103),
-(10,8,52,25,34,40,114,105),
-(10,8,53,25,35,40,117,107),
-(10,8,54,26,35,41,119,109),
-(10,8,55,26,35,41,121,111),
-(10,8,56,26,36,42,123,113),
-(10,8,57,26,36,42,125,116),
-(10,8,58,27,36,43,127,118),
-(10,8,59,27,37,43,130,120),
-(10,8,60,27,37,44,132,122),
-(10,8,61,27,37,45,134,124),
-(10,8,62,28,38,45,136,126),
-(10,8,63,28,38,46,139,128),
-(10,8,64,28,39,46,141,131),
-(10,8,65,29,39,47,143,133),
-(10,8,66,29,39,48,146,135),
-(10,8,67,29,40,48,148,137),
-(10,8,68,29,40,49,150,139),
-(10,8,69,30,41,49,153,142),
-(10,8,70,30,41,50,155,144),
-(10,8,71,30,41,50,158,147),
-(10,8,72,30,42,51,161,150),
-(10,8,73,30,42,52,164,153),
-(10,8,74,31,43,52,167,155),
-(10,8,75,31,43,53,170,158),
-(10,8,76,31,43,54,173,161),
-(10,8,77,32,44,55,176,164),
-(10,8,78,32,44,55,179,167),
-(10,8,79,32,45,56,182,170),
-(10,8,80,33,45,57,185,173),
-(10,9,1,17,22,20,26,21),
-(10,9,2,17,22,21,27,22),
-(10,9,3,18,23,21,28,23),
-(10,9,4,18,23,22,29,24),
-(10,9,5,18,23,22,31,26),
-(10,9,6,18,24,23,32,27),
-(10,9,7,19,24,23,33,28),
-(10,9,8,19,25,24,34,29),
-(10,9,9,19,25,25,36,30),
-(10,9,10,20,25,25,37,32),
-(10,9,11,20,26,26,38,33),
-(10,9,12,20,26,26,39,34),
-(10,9,13,21,27,27,41,36),
-(10,9,14,21,27,28,42,37),
-(10,9,15,21,27,28,43,38),
-(10,9,16,22,28,29,45,39),
-(10,9,17,22,28,30,46,41),
-(10,9,18,23,29,30,47,42),
-(10,9,19,23,29,31,49,43),
-(10,9,20,23,30,32,50,45),
-(10,9,21,24,30,32,51,46),
-(10,9,22,24,31,33,53,48),
-(10,9,23,24,31,34,54,49),
-(10,9,24,25,31,34,56,50),
-(10,9,25,25,32,35,57,52),
-(10,9,26,26,32,36,59,53),
-(10,9,27,26,33,37,60,55),
-(10,9,28,26,33,37,62,56),
-(10,9,29,27,34,38,63,58),
-(10,9,30,27,34,39,65,59),
-(10,9,31,28,35,40,66,61),
-(10,9,32,28,36,40,68,62),
-(10,9,33,29,36,41,69,64),
-(10,9,34,29,37,42,71,65),
-(10,9,35,29,37,43,73,67),
-(10,9,36,30,38,43,74,69),
-(10,9,37,30,38,44,76,70),
-(10,9,38,31,39,45,77,72),
-(10,9,39,31,39,46,79,73),
-(10,9,40,32,40,47,81,75),
-(10,9,41,32,41,48,82,77),
-(10,9,42,33,41,48,84,78),
-(10,9,43,33,42,49,86,80),
-(10,9,44,34,42,50,88,82),
-(10,9,45,34,43,51,89,83),
-(10,9,46,35,44,52,91,85),
-(10,9,47,35,44,53,93,87),
-(10,9,48,36,45,54,95,89),
-(10,9,49,36,45,54,96,90),
-(10,9,50,37,46,55,98,92),
-(10,9,51,37,47,56,100,94),
-(10,9,52,38,47,57,102,96),
-(10,9,53,38,48,58,104,97),
-(10,9,54,39,49,59,105,99),
-(10,9,55,39,49,60,107,101),
-(10,9,56,40,50,61,109,103),
-(10,9,57,40,51,62,111,105),
-(10,9,58,41,51,63,113,107),
-(10,9,59,42,52,64,115,108),
-(10,9,60,42,53,65,117,110),
-(10,9,61,43,53,66,119,112),
-(10,9,62,43,54,67,121,114),
-(10,9,63,44,55,68,123,116),
-(10,9,64,44,56,69,125,118),
-(10,9,65,45,56,70,127,120),
-(10,9,66,46,57,71,129,122),
-(10,9,67,46,58,72,131,124),
-(10,9,68,47,58,73,133,126),
-(10,9,69,47,59,74,135,128),
-(10,9,70,48,60,75,137,130),
-(10,9,71,49,61,83,139,141),
-(10,9,72,50,61,84,142,143),
-(10,9,73,51,62,84,144,146),
-(10,9,74,51,63,86,147,149),
-(10,9,75,52,64,89,149,151),
-(10,9,76,53,65,90,155,154),
-(10,9,77,54,66,91,155,157),
-(10,9,78,54,67,93,157,160),
-(10,9,79,55,68,94,160,163),
-(10,9,80,56,69,95,163,165),
-(11,1,1,24,17,21,21,22),
-(11,1,2,25,18,22,21,22),
-(11,1,3,27,19,23,21,23),
-(11,1,4,28,19,25,21,23),
-(11,1,5,29,20,26,21,23),
-(11,1,6,31,21,27,21,23),
-(11,1,7,32,22,28,21,24),
-(11,1,8,33,23,29,22,24),
-(11,1,9,35,24,31,22,24),
-(11,1,10,36,24,32,22,25),
-(11,1,11,37,25,33,22,25),
-(11,1,12,39,26,34,22,25),
-(11,1,13,40,27,36,22,26),
-(11,1,14,42,28,37,22,26),
-(11,1,15,43,29,38,22,26),
-(11,1,16,45,30,40,22,27),
-(11,1,17,46,31,41,23,27),
-(11,1,18,48,32,43,23,27),
-(11,1,19,49,33,44,23,28),
-(11,1,20,51,34,45,23,28),
-(11,1,21,52,34,47,23,28),
-(11,1,22,54,35,48,23,29),
-(11,1,23,55,36,50,23,29),
-(11,1,24,57,37,51,24,30),
-(11,1,25,59,38,52,24,30),
-(11,1,26,60,39,54,24,30),
-(11,1,27,62,40,55,24,31),
-(11,1,28,63,41,57,24,31),
-(11,1,29,65,43,58,24,32),
-(11,1,30,67,44,60,24,32),
-(11,1,31,69,45,62,25,32),
-(11,1,32,70,46,63,25,33),
-(11,1,33,72,47,65,25,33),
-(11,1,34,74,48,66,25,34),
-(11,1,35,75,49,68,25,34),
-(11,1,36,77,50,69,26,35),
-(11,1,37,79,51,71,26,35),
-(11,1,38,81,52,73,26,35),
-(11,1,39,83,53,74,26,36),
-(11,1,40,84,55,76,26,36),
-(11,1,41,86,56,78,27,37),
-(11,1,42,88,57,79,27,37),
-(11,1,43,90,58,81,27,38),
-(11,1,44,92,59,83,27,38),
-(11,1,45,94,60,85,27,39),
-(11,1,46,96,62,86,28,39),
-(11,1,47,98,63,88,28,40),
-(11,1,48,100,64,90,28,40),
-(11,1,49,102,65,92,28,41),
-(11,1,50,103,66,93,29,41),
-(11,1,51,105,68,95,29,42),
-(11,1,52,107,69,97,29,42),
-(11,1,53,109,70,99,29,43),
-(11,1,54,112,71,101,30,44),
-(11,1,55,114,73,103,30,44),
-(11,1,56,116,74,104,30,45),
-(11,1,57,118,75,106,30,45),
-(11,1,58,120,77,108,31,46),
-(11,1,59,122,78,110,31,46),
-(11,1,60,124,79,112,31,47),
-(11,1,61,126,81,114,31,48),
-(11,1,62,128,82,116,32,48),
-(11,1,63,130,83,118,32,49),
-(11,1,64,133,85,120,32,49),
-(11,1,65,135,86,122,33,50),
-(11,1,66,137,87,124,33,51),
-(11,1,67,139,89,126,33,51),
-(11,1,68,141,90,128,33,52),
-(11,1,69,144,92,130,34,52),
-(11,1,70,146,93,132,34,53),
-(11,1,71,149,94,134,34,54),
-(11,1,72,151,96,137,34,55),
-(11,1,73,154,98,139,34,56),
-(11,1,74,157,99,142,35,56),
-(11,1,75,166,101,149,35,57),
-(11,1,76,172,103,155,35,58),
-(11,1,77,175,105,159,36,59),
-(11,1,78,179,106,161,36,59),
-(11,1,79,182,108,164,36,60),
-(11,1,80,185,110,167,37,61),
-(11,2,1,23,17,21,21,23),
-(11,2,2,24,18,22,22,24),
-(11,2,3,25,18,23,22,24),
-(11,2,4,26,19,24,23,25),
-(11,2,5,27,19,25,24,26),
-(11,2,6,29,20,26,24,26),
-(11,2,7,30,21,27,25,27),
-(11,2,8,31,21,28,26,28),
-(11,2,9,32,22,29,26,29),
-(11,2,10,33,22,31,27,29),
-(11,2,11,34,23,32,28,30),
-(11,2,12,36,24,33,28,31),
-(11,2,13,37,24,34,29,32),
-(11,2,14,38,25,35,30,32),
-(11,2,15,39,26,36,31,33),
-(11,2,16,40,26,37,31,34),
-(11,2,17,42,27,39,32,35),
-(11,2,18,43,28,40,33,36),
-(11,2,19,44,28,41,34,37),
-(11,2,20,46,29,42,34,37),
-(11,2,21,47,30,44,35,38),
-(11,2,22,48,31,45,36,39),
-(11,2,23,50,31,46,37,40),
-(11,2,24,51,32,47,38,41),
-(11,2,25,52,33,49,38,42),
-(11,2,26,54,34,50,39,43),
-(11,2,27,55,34,51,40,44),
-(11,2,28,56,35,53,41,44),
-(11,2,29,58,36,54,42,45),
-(11,2,30,59,37,55,43,46),
-(11,2,31,61,37,57,43,47),
-(11,2,32,62,38,58,44,48),
-(11,2,33,64,39,59,45,49),
-(11,2,34,65,40,61,46,50),
-(11,2,35,67,41,62,47,51),
-(11,2,36,68,42,64,48,52),
-(11,2,37,70,42,65,49,53),
-(11,2,38,71,43,67,50,54),
-(11,2,39,73,44,68,51,55),
-(11,2,40,74,45,69,52,56),
-(11,2,41,76,46,71,53,57),
-(11,2,42,78,47,72,54,58),
-(11,2,43,79,47,74,55,59),
-(11,2,44,81,48,75,56,60),
-(11,2,45,82,49,77,57,61),
-(11,2,46,84,50,78,58,62),
-(11,2,47,86,51,80,59,64),
-(11,2,48,87,52,82,60,65),
-(11,2,49,89,53,83,61,66),
-(11,2,50,91,54,85,62,67),
-(11,2,51,92,55,86,63,68),
-(11,2,52,94,56,88,64,69),
-(11,2,53,96,57,90,65,70),
-(11,2,54,97,58,91,66,71),
-(11,2,55,99,59,93,67,73),
-(11,2,56,101,60,95,68,74),
-(11,2,57,103,61,96,69,75),
-(11,2,58,105,62,98,70,76),
-(11,2,59,106,63,100,71,77),
-(11,2,60,108,64,101,72,78),
-(11,2,61,110,65,103,74,80),
-(11,2,62,112,66,105,75,81),
-(11,2,63,114,67,106,76,82),
-(11,2,64,116,68,108,77,83),
-(11,2,65,117,69,110,78,85),
-(11,2,66,119,70,112,79,86),
-(11,2,67,121,71,114,80,87),
-(11,2,68,123,72,115,82,88),
-(11,2,69,125,73,117,83,90),
-(11,2,70,127,74,119,84,91),
-(11,2,71,130,75,121,87,92),
-(11,2,72,132,76,124,90,94),
-(11,2,73,134,77,126,93,96),
-(11,2,74,137,79,128,97,97),
-(11,2,75,139,80,130,101,99),
-(11,2,76,142,81,133,106,100),
-(11,2,77,144,83,135,108,102),
-(11,2,78,147,84,137,110,104),
-(11,2,79,149,85,140,111,105),
-(11,2,80,152,87,142,113,107),
-(11,3,1,21,20,20,21,23),
-(11,3,2,21,21,21,22,24),
-(11,3,3,22,23,22,22,24),
-(11,3,4,22,24,23,23,25),
-(11,3,5,23,25,24,23,25),
-(11,3,6,23,27,25,24,26),
-(11,3,7,24,28,26,24,27),
-(11,3,8,24,30,27,25,27),
-(11,3,9,25,31,27,26,28),
-(11,3,10,25,33,28,26,29),
-(11,3,11,25,34,29,27,29),
-(11,3,12,26,36,30,28,30),
-(11,3,13,26,37,31,28,31),
-(11,3,14,27,39,32,29,32),
-(11,3,15,27,40,34,30,32),
-(11,3,16,28,42,35,30,33),
-(11,3,17,28,43,36,31,34),
-(11,3,18,29,45,37,32,35),
-(11,3,19,29,47,38,32,35),
-(11,3,20,30,48,39,33,36),
-(11,3,21,31,50,40,34,37),
-(11,3,22,31,51,41,34,38),
-(11,3,23,32,53,42,35,38),
-(11,3,24,32,55,43,36,39),
-(11,3,25,33,57,44,37,40),
-(11,3,26,33,58,46,37,41),
-(11,3,27,34,60,47,38,42),
-(11,3,28,35,62,48,39,42),
-(11,3,29,35,63,49,40,43),
-(11,3,30,36,65,50,40,44),
-(11,3,31,36,67,52,41,45),
-(11,3,32,37,69,53,42,46),
-(11,3,33,38,71,54,43,47),
-(11,3,34,38,72,55,44,48),
-(11,3,35,39,74,57,44,48),
-(11,3,36,39,76,58,45,49),
-(11,3,37,40,78,59,46,50),
-(11,3,38,41,80,60,47,51),
-(11,3,39,41,82,62,48,52),
-(11,3,40,42,84,63,49,53),
-(11,3,41,43,86,64,50,54),
-(11,3,42,43,88,66,50,55),
-(11,3,43,44,90,67,51,56),
-(11,3,44,45,91,68,52,57),
-(11,3,45,45,93,70,53,58),
-(11,3,46,46,95,71,54,59),
-(11,3,47,47,98,72,55,60),
-(11,3,48,48,100,74,56,61),
-(11,3,49,48,102,75,57,62),
-(11,3,50,49,104,77,58,63),
-(11,3,51,50,106,78,59,64),
-(11,3,52,51,108,79,60,65),
-(11,3,53,51,110,81,61,66),
-(11,3,54,52,112,82,61,67),
-(11,3,55,53,114,84,62,68),
-(11,3,56,54,116,85,63,69),
-(11,3,57,54,118,87,64,70),
-(11,3,58,55,121,88,65,71),
-(11,3,59,56,123,90,66,72),
-(11,3,60,57,125,91,67,74),
-(11,3,61,58,127,93,68,75),
-(11,3,62,58,130,94,69,76),
-(11,3,63,59,132,96,71,77),
-(11,3,64,60,134,97,72,78),
-(11,3,65,61,136,99,73,79),
-(11,3,66,62,139,101,74,80),
-(11,3,67,62,141,102,75,81),
-(11,3,68,63,143,104,76,83),
-(11,3,69,64,146,105,77,84),
-(11,3,70,65,148,107,78,85),
-(11,3,71,66,151,109,79,86),
-(11,3,72,67,154,111,80,87),
-(11,3,73,68,157,113,81,89),
-(11,3,74,69,160,115,83,90),
-(11,3,75,70,163,117,84,92),
-(11,3,76,71,166,119,85,93),
-(11,3,77,72,169,121,87,95),
-(11,3,78,73,172,123,88,96),
-(11,3,79,74,175,125,89,98),
-(11,3,80,75,178,127,91,99),
-(11,5,1,21,17,19,23,25),
-(11,5,2,21,17,19,24,26),
-(11,5,3,21,17,20,26,28),
-(11,5,4,21,18,20,27,29),
-(11,5,5,22,18,20,28,30),
-(11,5,6,22,18,21,30,32),
-(11,5,7,22,18,21,31,33),
-(11,5,8,22,19,22,32,35),
-(11,5,9,22,19,22,34,36),
-(11,5,10,22,19,22,35,38),
-(11,5,11,23,19,23,37,39),
-(11,5,12,23,20,23,38,41),
-(11,5,13,23,20,24,39,42),
-(11,5,14,23,20,24,41,44),
-(11,5,15,23,20,25,42,45),
-(11,5,16,24,21,25,44,47),
-(11,5,17,24,21,25,45,48),
-(11,5,18,24,21,26,47,50),
-(11,5,19,24,22,26,48,51),
-(11,5,20,24,22,27,50,53),
-(11,5,21,25,22,27,51,55),
-(11,5,22,25,22,28,53,56),
-(11,5,23,25,23,28,55,58),
-(11,5,24,25,23,29,56,60),
-(11,5,25,25,23,29,58,61),
-(11,5,26,26,24,30,60,63),
-(11,5,27,26,24,30,61,65),
-(11,5,28,26,24,31,63,66),
-(11,5,29,26,25,31,65,68),
-(11,5,30,27,25,32,66,70),
-(11,5,31,27,25,32,68,72),
-(11,5,32,27,26,33,70,73),
-(11,5,33,27,26,33,71,75),
-(11,5,34,28,26,34,73,77),
-(11,5,35,28,27,34,75,79),
-(11,5,36,28,27,35,77,81),
-(11,5,37,29,28,35,79,83),
-(11,5,38,29,28,36,80,85),
-(11,5,39,29,28,37,82,86),
-(11,5,40,29,29,37,84,88),
-(11,5,41,30,29,38,86,90),
-(11,5,42,30,29,38,88,92),
-(11,5,43,30,30,39,90,94),
-(11,5,44,31,30,39,91,96),
-(11,5,45,31,31,40,93,98),
-(11,5,46,31,31,41,95,100),
-(11,5,47,32,31,41,97,102),
-(11,5,48,32,32,42,99,104),
-(11,5,49,32,32,43,101,106),
-(11,5,50,33,33,43,103,108),
-(11,5,51,33,33,44,105,110),
-(11,5,52,33,34,44,107,113),
-(11,5,53,34,34,45,109,115),
-(11,5,54,34,34,46,111,117),
-(11,5,55,34,35,46,113,119),
-(11,5,56,35,35,47,115,121),
-(11,5,57,35,36,48,118,123),
-(11,5,58,35,36,48,120,126),
-(11,5,59,36,37,49,122,128),
-(11,5,60,36,37,50,124,130),
-(11,5,61,36,38,51,126,132),
-(11,5,62,37,38,51,128,134),
-(11,5,63,37,39,52,130,137),
-(11,5,64,38,39,53,133,139),
-(11,5,65,38,40,53,135,141),
-(11,5,66,38,40,54,137,144),
-(11,5,67,39,40,55,139,146),
-(11,5,68,39,41,56,141,148),
-(11,5,69,40,41,56,144,151),
-(11,5,70,40,42,57,146,153),
-(11,5,71,40,43,58,149,156),
-(11,5,72,41,43,58,155,159),
-(11,5,73,41,44,59,157,160),
-(11,5,74,42,44,61,160,163),
-(11,5,75,42,45,62,164,166),
-(11,5,76,42,46,62,167,169),
-(11,5,77,43,46,63,168,172),
-(11,5,78,43,47,64,169,177),
-(11,5,79,44,47,65,172,180),
-(11,5,80,44,48,66,175,183),
-(11,6,1,24,17,21,21,22),
-(11,6,2,25,18,22,21,22),
-(11,6,3,27,19,23,21,23),
-(11,6,4,28,19,25,21,23),
-(11,6,5,29,20,26,21,23),
-(11,6,6,31,21,27,21,23),
-(11,6,7,32,22,28,21,24),
-(11,6,8,33,23,29,22,24),
-(11,6,9,35,24,31,22,24),
-(11,6,10,36,24,32,22,25),
-(11,6,11,37,25,33,22,25),
-(11,6,12,39,26,34,22,25),
-(11,6,13,40,27,36,22,26),
-(11,6,14,42,28,37,22,26),
-(11,6,15,43,29,38,22,26),
-(11,6,16,45,30,40,22,27),
-(11,6,17,46,31,41,23,27),
-(11,6,18,48,32,43,23,27),
-(11,6,19,49,33,44,23,28),
-(11,6,20,51,34,45,23,28),
-(11,6,21,52,34,47,23,28),
-(11,6,22,54,35,48,23,29),
-(11,6,23,55,36,50,23,29),
-(11,6,24,57,37,51,24,30),
-(11,6,25,59,38,52,24,30),
-(11,6,26,60,39,54,24,30),
-(11,6,27,62,40,55,24,31),
-(11,6,28,63,41,57,24,31),
-(11,6,29,65,43,58,24,32),
-(11,6,30,67,44,60,24,32),
-(11,6,31,69,45,62,25,32),
-(11,6,32,70,46,63,25,33),
-(11,6,33,72,47,65,25,33),
-(11,6,34,74,48,66,25,34),
-(11,6,35,75,49,68,25,34),
-(11,6,36,77,50,69,26,35),
-(11,6,37,79,51,71,26,35),
-(11,6,38,81,52,73,26,35),
-(11,6,39,83,53,74,26,36),
-(11,6,40,84,55,76,26,36),
-(11,6,41,86,56,78,27,37),
-(11,6,42,88,57,79,27,37),
-(11,6,43,90,58,81,27,38),
-(11,6,44,92,59,83,27,38),
-(11,6,45,94,60,85,27,39),
-(11,6,46,96,62,86,28,39),
-(11,6,47,98,63,88,28,40),
-(11,6,48,100,64,90,28,40),
-(11,6,49,102,65,92,28,41),
-(11,6,50,103,65,93,29,41),
-(11,6,51,105,66,94,29,42),
-(11,6,52,106,67,95,29,42),
-(11,6,53,107,68,96,29,43),
-(11,6,54,108,69,97,30,44),
-(11,6,55,109,70,98,30,44),
-(11,6,56,112,72,101,30,45),
-(11,6,57,114,73,103,30,45),
-(11,6,58,117,74,105,31,46),
-(11,6,59,119,76,107,31,46),
-(11,6,60,121,77,109,31,47),
-(11,6,61,123,78,111,31,48),
-(11,6,62,126,80,113,31,48),
-(11,6,63,128,81,116,32,49),
-(11,6,64,131,83,118,32,49),
-(11,6,65,136,84,120,32,50),
-(11,6,66,140,86,123,32,51),
-(11,6,67,141,87,125,33,51),
-(11,6,68,141,89,127,33,52),
-(11,6,69,144,90,130,33,53),
-(11,6,70,147,92,132,33,53),
-(11,6,71,150,94,135,34,54),
-(11,6,72,152,95,137,34,55),
-(11,6,73,155,97,140,34,56),
-(11,6,74,162,99,142,34,56),
-(11,6,75,165,100,145,35,57),
-(11,6,76,167,102,146,35,58),
-(11,6,77,169,104,150,35,59),
-(11,6,78,170,105,152,35,59),
-(11,6,79,173,107,156,36,60),
-(11,6,80,176,109,159,36,61),
-(11,7,1,22,17,20,22,24),
-(11,7,2,23,17,21,23,25),
-(11,7,3,24,18,22,24,26),
-(11,7,4,25,18,23,25,27),
-(11,7,5,25,19,24,26,28),
-(11,7,6,26,19,25,27,29),
-(11,7,7,27,20,26,28,30),
-(11,7,8,28,20,27,28,31),
-(11,7,9,29,21,28,29,32),
-(11,7,10,30,21,29,30,33),
-(11,7,11,31,22,30,31,35),
-(11,7,12,32,22,31,32,36),
-(11,7,13,33,23,32,33,37),
-(11,7,14,34,23,33,34,38),
-(11,7,15,34,24,35,35,39),
-(11,7,16,35,24,36,36,40),
-(11,7,17,36,25,37,38,42),
-(11,7,18,37,25,38,39,43),
-(11,7,19,38,26,39,40,44),
-(11,7,20,39,26,40,41,45),
-(11,7,21,40,27,41,42,46),
-(11,7,22,41,27,43,43,48),
-(11,7,23,43,28,44,44,49),
-(11,7,24,44,28,45,45,50),
-(11,7,25,45,29,46,46,51),
-(11,7,26,46,30,47,48,53),
-(11,7,27,47,30,49,49,54),
-(11,7,28,48,31,50,50,55),
-(11,7,29,49,31,51,51,57),
-(11,7,30,50,32,53,52,58),
-(11,7,31,51,33,54,53,59),
-(11,7,32,52,33,55,55,61),
-(11,7,33,53,34,56,56,62),
-(11,7,34,55,34,58,57,64),
-(11,7,35,56,35,59,58,65),
-(11,7,36,57,36,60,60,66),
-(11,7,37,58,36,62,61,68),
-(11,7,38,59,37,63,62,69),
-(11,7,39,61,38,65,63,71),
-(11,7,40,62,38,66,65,72),
-(11,7,41,63,39,67,66,74),
-(11,7,42,64,40,69,67,75),
-(11,7,43,65,40,70,69,77),
-(11,7,44,67,41,72,70,78),
-(11,7,45,68,42,73,71,80),
-(11,7,46,69,42,75,73,81),
-(11,7,47,71,43,76,74,83),
-(11,7,48,72,44,78,76,84),
-(11,7,49,73,45,79,77,86),
-(11,7,50,74,45,81,78,88),
-(11,7,51,76,46,82,80,89),
-(11,7,52,77,47,84,81,91),
-(11,7,53,78,47,85,83,92),
-(11,7,54,80,48,87,84,94),
-(11,7,55,81,49,88,86,96),
-(11,7,56,83,50,90,87,97),
-(11,7,57,84,50,91,89,99),
-(11,7,58,85,51,93,90,101),
-(11,7,59,87,52,95,92,102),
-(11,7,60,88,53,96,93,104),
-(11,7,61,90,54,98,95,106),
-(11,7,62,91,54,99,96,108),
-(11,7,63,93,55,101,98,109),
-(11,7,64,94,56,103,99,111),
-(11,7,65,95,57,104,101,113),
-(11,7,66,97,58,106,103,115),
-(11,7,67,98,58,108,104,117),
-(11,7,68,100,59,110,106,118),
-(11,7,69,101,60,111,107,120),
-(11,7,70,103,61,113,109,122),
-(11,7,71,104,62,115,122,124),
-(11,7,72,106,63,117,124,127),
-(11,7,73,108,64,119,126,129),
-(11,7,74,110,65,122,128,131),
-(11,7,75,112,66,124,130,133),
-(11,7,76,114,67,126,133,136),
-(11,7,77,115,68,128,135,138),
-(11,7,78,117,69,130,137,140),
-(11,7,79,119,70,133,139,143),
-(11,7,80,121,71,135,141,145),
-(11,8,1,21,17,19,24,24),
-(11,8,2,21,17,19,25,25),
-(11,8,3,21,17,20,27,27),
-(11,8,4,21,17,20,28,28),
-(11,8,5,21,18,20,29,29),
-(11,8,6,21,18,20,31,31),
-(11,8,7,21,18,21,32,32),
-(11,8,8,22,18,21,34,33),
-(11,8,9,22,18,21,35,35),
-(11,8,10,22,19,22,37,36),
-(11,8,11,22,19,22,38,37),
-(11,8,12,22,19,22,40,39),
-(11,8,13,22,19,23,41,40),
-(11,8,14,22,19,23,43,42),
-(11,8,15,22,19,23,44,43),
-(11,8,16,22,20,24,46,45),
-(11,8,17,23,20,24,47,46),
-(11,8,18,23,20,24,49,48),
-(11,8,19,23,20,25,50,49),
-(11,8,20,23,21,25,52,51),
-(11,8,21,23,21,26,54,52),
-(11,8,22,23,21,26,55,54),
-(11,8,23,23,21,26,57,56),
-(11,8,24,24,21,27,59,57),
-(11,8,25,24,22,27,60,59),
-(11,8,26,24,22,27,62,60),
-(11,8,27,24,22,28,64,62),
-(11,8,28,24,22,28,65,64),
-(11,8,29,24,23,29,67,65),
-(11,8,30,24,23,29,69,67),
-(11,8,31,25,23,30,71,69),
-(11,8,32,25,23,30,73,71),
-(11,8,33,25,24,30,74,72),
-(11,8,34,25,24,31,76,74),
-(11,8,35,25,24,31,78,76),
-(11,8,36,26,24,32,80,78),
-(11,8,37,26,25,32,82,79),
-(11,8,38,26,25,33,84,81),
-(11,8,39,26,25,33,86,83),
-(11,8,40,26,26,34,87,85),
-(11,8,41,27,26,34,89,87),
-(11,8,42,27,26,35,91,89),
-(11,8,43,27,27,35,93,91),
-(11,8,44,27,27,36,95,92),
-(11,8,45,27,27,36,97,94),
-(11,8,46,28,27,37,99,96),
-(11,8,47,28,28,37,101,98),
-(11,8,48,28,28,38,103,100),
-(11,8,49,28,28,38,105,102),
-(11,8,50,29,29,39,107,104),
-(11,8,51,29,29,39,110,106),
-(11,8,52,29,29,40,112,108),
-(11,8,53,29,30,40,114,110),
-(11,8,54,30,30,41,116,112),
-(11,8,55,30,30,41,118,114),
-(11,8,56,30,31,42,120,116),
-(11,8,57,30,31,42,122,118),
-(11,8,58,31,31,43,125,121),
-(11,8,59,31,32,43,127,123),
-(11,8,60,31,32,44,129,125),
-(11,8,61,31,33,45,131,127),
-(11,8,62,32,33,45,133,129),
-(11,8,63,32,33,46,136,131),
-(11,8,64,32,34,46,138,134),
-(11,8,65,33,34,47,140,136),
-(11,8,66,33,34,48,143,138),
-(11,8,67,33,35,48,145,140),
-(11,8,68,33,35,49,147,142),
-(11,8,69,34,36,49,150,145),
-(11,8,70,34,36,50,152,147),
-(11,8,71,34,36,51,155,150),
-(11,8,72,34,37,52,161,153),
-(11,8,73,34,37,53,161,156),
-(11,8,74,35,38,53,164,158),
-(11,8,75,35,38,54,167,161),
-(11,8,76,35,38,55,170,164),
-(11,8,77,36,39,56,173,167),
-(11,8,78,36,39,56,176,170),
-(11,8,79,36,40,57,179,173),
-(11,8,80,37,40,58,182,176);
-/*!40000 ALTER TABLE `player_levelstats` ENABLE KEYS */;
-UNLOCK TABLES;
-
---
--- Table structure for table `player_xp_for_level`
---
-
-DROP TABLE IF EXISTS `player_xp_for_level`;
-/*!40101 SET @saved_cs_client = @@character_set_client */;
-/*!40101 SET character_set_client = utf8 */;
-CREATE TABLE `player_xp_for_level` (
- `lvl` int(3) unsigned NOT NULL,
- `xp_for_next_level` int(10) unsigned NOT NULL,
- PRIMARY KEY (`lvl`)
-) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-/*!40101 SET character_set_client = @saved_cs_client */;
-
---
--- Dumping data for table `player_xp_for_level`
---
-
-LOCK TABLES `player_xp_for_level` WRITE;
-/*!40000 ALTER TABLE `player_xp_for_level` DISABLE KEYS */;
-INSERT INTO `player_xp_for_level` VALUES
-(1,400),
-(2,900),
-(3,1400),
-(4,2100),
-(5,2800),
-(6,3600),
-(7,4500),
-(8,5400),
-(9,6500),
-(10,7600),
-(11,8700),
-(12,9800),
-(13,11000),
-(14,12300),
-(15,13600),
-(16,15000),
-(17,16400),
-(18,17800),
-(19,19300),
-(20,20800),
-(21,22400),
-(22,24000),
-(23,25500),
-(24,27200),
-(25,28900),
-(26,30500),
-(27,32200),
-(28,33900),
-(29,36300),
-(30,38800),
-(31,41600),
-(32,44600),
-(33,48000),
-(34,51400),
-(35,55000),
-(36,58700),
-(37,62400),
-(38,66200),
-(39,70200),
-(40,74300),
-(41,78500),
-(42,82800),
-(43,87100),
-(44,91600),
-(45,96300),
-(46,101000),
-(47,105800),
-(48,110700),
-(49,115700),
-(50,120900),
-(51,126100),
-(52,131500),
-(53,137000),
-(54,142500),
-(55,148200),
-(56,154000),
-(57,159900),
-(58,165800),
-(59,172000),
-(60,290000),
-(61,317000),
-(62,349000),
-(63,386000),
-(64,428000),
-(65,475000),
-(66,527000),
-(67,585000),
-(68,648000),
-(69,717000),
-(70,1523800),
-(71,1539600),
-(72,1555700),
-(73,1571800),
-(74,1587900),
-(75,1604200),
-(76,1620700),
-(77,1637400),
-(78,1653900),
-(79,1670800);
-/*!40000 ALTER TABLE `player_xp_for_level` ENABLE KEYS */;
-UNLOCK TABLES;
-
---
--- Table structure for table `playercreateinfo`
---
-
-DROP TABLE IF EXISTS `playercreateinfo`;
-/*!40101 SET @saved_cs_client = @@character_set_client */;
-/*!40101 SET character_set_client = utf8 */;
-CREATE TABLE `playercreateinfo` (
- `race` tinyint(3) unsigned NOT NULL DEFAULT '0',
- `class` tinyint(3) unsigned NOT NULL DEFAULT '0',
- `map` smallint(5) unsigned NOT NULL DEFAULT '0',
- `zone` mediumint(8) unsigned NOT NULL DEFAULT '0',
- `position_x` float NOT NULL DEFAULT '0',
- `position_y` float NOT NULL DEFAULT '0',
- `position_z` float NOT NULL DEFAULT '0',
- `orientation` float NOT NULL DEFAULT '0',
- PRIMARY KEY (`race`,`class`)
-) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-/*!40101 SET character_set_client = @saved_cs_client */;
-
---
--- Dumping data for table `playercreateinfo`
---
-
-LOCK TABLES `playercreateinfo` WRITE;
-/*!40000 ALTER TABLE `playercreateinfo` DISABLE KEYS */;
-INSERT INTO `playercreateinfo` VALUES
-(1,1,0,12,-8949.95,-132.493,83.5312,0),
-(1,2,0,12,-8949.95,-132.493,83.5312,0),
-(1,4,0,12,-8949.95,-132.493,83.5312,0),
-(1,5,0,12,-8949.95,-132.493,83.5312,0),
-(1,8,0,12,-8949.95,-132.493,83.5312,0),
-(1,9,0,12,-8949.95,-132.493,83.5312,0),
-(2,1,1,14,-618.518,-4251.67,38.718,0),
-(2,3,1,14,-618.518,-4251.67,38.718,0),
-(2,4,1,14,-618.518,-4251.67,38.718,0),
-(2,7,1,14,-618.518,-4251.67,38.718,0),
-(2,9,1,14,-618.518,-4251.67,38.718,0),
-(3,1,0,1,-6240.32,331.033,382.758,6.17716),
-(3,2,0,1,-6240.32,331.033,382.758,6.17716),
-(3,3,0,1,-6240.32,331.033,382.758,6.17716),
-(3,4,0,1,-6240.32,331.033,382.758,6.17716),
-(3,5,0,1,-6240.32,331.033,382.758,6.17716),
-(4,1,1,141,10311.3,832.463,1326.41,5.69632),
-(4,3,1,141,10311.3,832.463,1326.41,5.69632),
-(4,4,1,141,10311.3,832.463,1326.41,5.69632),
-(4,5,1,141,10311.3,832.463,1326.41,5.69632),
-(4,11,1,141,10311.3,832.463,1326.41,5.69632),
-(5,1,0,85,1676.71,1678.31,121.67,2.70526),
-(5,4,0,85,1676.71,1678.31,121.67,2.70526),
-(5,5,0,85,1676.71,1678.31,121.67,2.70526),
-(5,8,0,85,1676.71,1678.31,121.67,2.70526),
-(5,9,0,85,1676.71,1678.31,121.67,2.70526),
-(6,1,1,215,-2917.58,-257.98,52.9968,0),
-(6,3,1,215,-2917.58,-257.98,52.9968,0),
-(6,7,1,215,-2917.58,-257.98,52.9968,0),
-(6,11,1,215,-2917.58,-257.98,52.9968,0),
-(7,1,0,1,-6240.32,331.033,382.758,0),
-(7,9,0,1,-6240,331,383,0),
-(7,8,0,1,-6240,331,383,0),
-(7,4,0,1,-6240,331,383,0),
-(8,1,1,14,-618.518,-4251.67,38.718,0),
-(8,3,1,14,-618.518,-4251.67,38.718,0),
-(8,4,1,14,-618.518,-4251.67,38.718,0),
-(8,5,1,14,-618.518,-4251.67,38.718,0),
-(8,7,1,14,-618.518,-4251.67,38.718,0),
-(8,8,1,14,-618.518,-4251.67,38.718,0),
-(10,2,530,3431,10349.6,-6357.29,33.4026,5.31605),
-(10,3,530,3431,10349.6,-6357.29,33.4026,5.31605),
-(10,4,530,3431,10349.6,-6357.29,33.4026,5.31605),
-(10,5,530,3431,10349.6,-6357.29,33.4026,5.31605),
-(10,8,530,3431,10349.6,-6357.29,33.4026,5.31605),
-(10,9,530,3431,10349.6,-6357.29,33.4026,5.31605),
-(11,1,530,3526,-3961.64,-13931.2,100.615,2.08364),
-(11,2,530,3526,-3961.64,-13931.2,100.615,2.08364),
-(11,3,530,3526,-3961.64,-13931.2,100.615,2.08364),
-(11,5,530,3526,-3961.64,-13931.2,100.615,2.08364),
-(11,7,530,3526,-3961.64,-13931.2,100.615,2.08364),
-(11,8,530,3526,-3961.64,-13931.2,100.615,2.08364),
-(1,6,609,4298,2355.84,-5664.77,426.028,3.65997),
-(2,6,609,4298,2358.44,-5666.9,426.023,3.65997),
-(3,6,609,4298,2358.44,-5666.9,426.023,3.65997),
-(4,6,609,4298,2356.21,-5662.21,426.026,3.65997),
-(5,6,609,4298,2356.21,-5662.21,426.026,3.65997),
-(6,6,609,4298,2358.17,-5663.21,426.027,3.65997),
-(7,6,609,4298,2355.05,-5661.7,426.026,3.65997),
-(8,6,609,4298,2355.05,-5661.7,426.026,3.65997),
-(10,6,609,4298,2355.84,-5664.77,426.028,3.65997),
-(11,6,609,4298,2358.17,-5663.21,426.027,3.65997);
-/*!40000 ALTER TABLE `playercreateinfo` ENABLE KEYS */;
-UNLOCK TABLES;
-
---
--- Table structure for table `playercreateinfo_action`
---
-
-DROP TABLE IF EXISTS `playercreateinfo_action`;
-/*!40101 SET @saved_cs_client = @@character_set_client */;
-/*!40101 SET character_set_client = utf8 */;
-CREATE TABLE `playercreateinfo_action` (
- `race` tinyint(3) unsigned NOT NULL DEFAULT '0',
- `class` tinyint(3) unsigned NOT NULL DEFAULT '0',
- `button` smallint(5) unsigned NOT NULL DEFAULT '0',
- `action` int(11) unsigned NOT NULL DEFAULT '0',
- `type` smallint(5) unsigned NOT NULL DEFAULT '0',
- PRIMARY KEY (`race`,`class`,`button`),
- KEY `playercreateinfo_race_class_index` (`race`,`class`)
-) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-/*!40101 SET character_set_client = @saved_cs_client */;
-
---
--- Dumping data for table `playercreateinfo_action`
---
-
-LOCK TABLES `playercreateinfo_action` WRITE;
-/*!40000 ALTER TABLE `playercreateinfo_action` DISABLE KEYS */;
-INSERT INTO `playercreateinfo_action` (`race`,`class`,`button`,`action`,`type`) VALUES
-(10,6,2,45477,0),
-(10,6,3,45462,0),
-(10,6,4,45902,0),
-(10,6,5,47541,0),
-(10,6,6,50613,0),
-(10,8,0,133,0),
-(10,8,1,168,0),
-(10,8,2,28730,0),
-(10,9,0,686,0),
-(10,9,1,687,0),
-(10,9,2,28730,0),
-(11,1,0,6603,0),
-(11,1,72,6603,0),
-(11,1,73,78,0),
-(11,1,74,28880,0),
-(11,1,84,6603,0),
-(11,1,96,6603,0),
-(11,1,108,6603,0),
-(11,2,0,6603,0),
-(11,2,1,21084,0),
-(11,2,2,635,0),
-(11,2,3,59542,0),
-(11,3,0,6603,0),
-(11,3,1,2973,0),
-(11,3,2,75,0),
-(11,3,3,59543,0),
-(11,3,72,6603,0),
-(11,3,73,2973,0),
-(11,3,74,75,0),
-(11,5,0,585,0),
-(11,5,1,2050,0),
-(11,5,2,59544,0),
-(11,6,0,6603,0),
-(11,6,1,49576,0),
-(11,6,2,45477,0),
-(11,6,3,45462,0),
-(11,6,4,45902,0),
-(11,6,5,47541,0),
-(11,6,10,59545,0),
-(11,7,0,6603,0),
-(11,7,1,403,0),
-(11,7,2,331,0),
-(11,7,3,59547,0),
-(11,8,0,133,0),
-(11,8,1,168,0),
-(11,8,2,59548,0),
-(11,6,11,41751,128);
-/*!40000 ALTER TABLE `playercreateinfo_action` ENABLE KEYS */;
-UNLOCK TABLES;
-
---
--- Table structure for table `playercreateinfo_item`
---
-
-DROP TABLE IF EXISTS `playercreateinfo_item`;
-/*!40101 SET @saved_cs_client = @@character_set_client */;
-/*!40101 SET character_set_client = utf8 */;
-CREATE TABLE `playercreateinfo_item` (
- `race` tinyint(3) unsigned NOT NULL DEFAULT '0',
- `class` tinyint(3) unsigned NOT NULL DEFAULT '0',
- `itemid` mediumint(8) unsigned NOT NULL DEFAULT '0',
- `amount` tinyint(3) NOT NULL DEFAULT '1',
- KEY `playercreateinfo_race_class_index` (`race`,`class`)
-) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-/*!40101 SET character_set_client = @saved_cs_client */;
-
---
--- Dumping data for table `playercreateinfo_item`
---
-
-LOCK TABLES `playercreateinfo_item` WRITE;
-/*!40000 ALTER TABLE `playercreateinfo_item` DISABLE KEYS */;
-/*!40000 ALTER TABLE `playercreateinfo_item` ENABLE KEYS */;
-UNLOCK TABLES;
-
---
--- Table structure for table `playercreateinfo_spell`
---
-
-DROP TABLE IF EXISTS `playercreateinfo_spell`;
-/*!40101 SET @saved_cs_client = @@character_set_client */;
-/*!40101 SET character_set_client = utf8 */;
-CREATE TABLE `playercreateinfo_spell` (
- `race` tinyint(3) unsigned NOT NULL DEFAULT '0',
- `class` tinyint(3) unsigned NOT NULL DEFAULT '0',
- `Spell` mediumint(8) unsigned NOT NULL DEFAULT '0',
- `Note` varchar(255) DEFAULT NULL,
- PRIMARY KEY (`race`,`class`,`Spell`)
-) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-/*!40101 SET character_set_client = @saved_cs_client */;
-
---
--- Dumping data for table `playercreateinfo_spell`
---
-
-LOCK TABLES `playercreateinfo_spell` WRITE;
-/*!40000 ALTER TABLE `playercreateinfo_spell` DISABLE KEYS */;
-INSERT INTO `playercreateinfo_spell` VALUES (1,1,78,'Heroic Strike'),
-(1,1,81,'Dodge'),
-(1,1,107,'Block'),
-(1,1,196,'One-Handed Axes'),
-(1,1,198,'One-Handed Maces'),
-(1,1,201,'One-Handed Swords'),
-(1,1,203,'Unarmed'),
-(1,1,204,'Defense'),
-(1,1,522,'SPELLDEFENSE (DND)'),
-(1,1,668,'Language Common'),
-(1,1,1843,'Disarm'),
-(1,1,2382,'Generic'),
-(1,1,2457,'Battle Stance'),
-(1,1,2479,'Honorless Target'),
-(1,1,3050,'Detect'),
-(1,1,3365,'Opening'),
-(1,1,5301,'Defensive State (DND)'),
-(1,1,6233,'Closing'),
-(1,1,6246,'Closing'),
-(1,1,6247,'Opening'),
-(1,1,6477,'Opening'),
-(1,1,6478,'Opening'),
-(1,1,6603,'Attack'),
-(1,1,7266,'Duel'),
-(1,1,7267,'Grovel'),
-(1,1,7355,'Stuck'),
-(1,1,8386,'Attacking'),
-(1,1,8737,'Mail'),
-(1,1,9077,'Leather'),
-(1,1,9078,'Cloth'),
-(1,1,9116,'Shield'),
-(1,1,9125,'Generic'),
-(1,1,20597,'Sword Specialization'),
-(1,1,20598,'The Human Spirit'),
-(1,1,20599,'Diplomacy'),
-(1,1,20864,'Mace Specialization'),
-(1,1,21651,'Opening'),
-(1,1,21652,'Closing'),
-(1,1,22027,'Remove Insignia'),
-(1,1,22810,'Opening - No Text'),
-(1,1,32215,'Victorious State'),
-(1,1,45927,'Summon Friend'),
-(1,1,58985,'Perception'),
-(1,1,59752,'Every Man for Himself'),
-(1,1,61437,'Opening'),
-(1,2,81,'Dodge'),
-(1,2,107,'Block'),
-(1,2,198,'One-Handed Maces'),
-(1,2,199,'Two-Handed Maces'),
-(1,2,203,'Unarmed'),
-(1,2,204,'Defense'),
-(1,2,522,'SPELLDEFENSE (DND)'),
-(1,2,635,'Holy Light'),
-(1,2,668,'Language Common'),
-(1,2,1843,'Disarm'),
-(1,2,2382,'Generic'),
-(1,2,2479,'Honorless Target'),
-(1,2,3050,'Detect'),
-(1,2,3365,'Opening'),
-(1,2,6233,'Closing'),
-(1,2,6246,'Closing'),
-(1,2,6247,'Opening'),
-(1,2,6477,'Opening'),
-(1,2,6478,'Opening'),
-(1,2,6603,'Attack'),
-(1,2,7266,'Duel'),
-(1,2,7267,'Grovel'),
-(1,2,7355,'Stuck'),
-(1,2,8386,'Attacking'),
-(1,2,8737,'Mail'),
-(1,2,9077,'Leather'),
-(1,2,9078,'Cloth'),
-(1,2,9116,'Shield'),
-(1,2,9125,'Generic'),
-(1,2,21084,'Seal of Righteousness'),
-(1,2,20597,'Sword Specialization'),
-(1,2,20598,'The Human Spirit'),
-(1,2,20599,'Diplomacy'),
-(1,2,20864,'Mace Specialization'),
-(1,2,21651,'Opening'),
-(1,2,21652,'Closing'),
-(1,2,22027,'Remove Insignia'),
-(1,2,22810,'Opening - No Text'),
-(1,2,27762,'Libram'),
-(1,2,45927,'Summon Friend'),
-(1,2,58985,'Perception'),
-(1,2,59752,'Every Man for Himself'),
-(1,2,61437,'Opening'),
-(1,4,81,'Dodge'),
-(1,4,203,'Unarmed'),
-(1,4,204,'Defense'),
-(1,4,522,'SPELLDEFENSE (DND)'),
-(1,4,668,'Language Common'),
-(1,4,1180,'Daggers'),
-(1,4,1752,'Sinister Strike'),
-(1,4,1843,'Disarm'),
-(1,4,2098,'Eviscerate'),
-(1,4,2382,'Generic'),
-(1,4,2479,'Honorless Target'),
-(1,4,2567,'Thrown'),
-(1,4,2764,'Throw'),
-(1,4,3050,'Detect'),
-(1,4,3365,'Opening'),
-(1,4,6233,'Closing'),
-(1,4,6246,'Closing'),
-(1,4,6247,'Opening'),
-(1,4,6477,'Opening'),
-(1,4,6478,'Opening'),
-(1,4,6603,'Attack'),
-(1,4,7266,'Duel'),
-(1,4,7267,'Grovel'),
-(1,4,7355,'Stuck'),
-(1,4,8386,'Attacking'),
-(1,4,9077,'Leather'),
-(1,4,9078,'Cloth'),
-(1,4,9125,'Generic'),
-(1,4,16092,'Defensive State (DND)'),
-(1,4,20597,'Sword Specialization'),
-(1,4,20598,'The Human Spirit'),
-(1,4,20599,'Diplomacy'),
-(1,4,20864,'Mace Specialization'),
-(1,4,21184,'Rogue Passive (DND)'),
-(1,4,21651,'Opening'),
-(1,4,21652,'Closing'),
-(1,4,22027,'Remove Insignia'),
-(1,4,22810,'Opening - No Text'),
-(1,4,45927,'Summon Friend'),
-(1,4,58985,'Perception'),
-(1,4,59752,'Every Man for Himself'),
-(1,4,61437,'Opening'),
-(1,5,81,'Dodge'),
-(1,5,198,'One-Handed Maces'),
-(1,5,203,'Unarmed'),
-(1,5,204,'Defense'),
-(1,5,522,'SPELLDEFENSE (DND)'),
-(1,5,585,'Smite'),
-(1,5,668,'Language Common'),
-(1,5,1843,'Disarm'),
-(1,5,2050,'Lesser Heal'),
-(1,5,2382,'Generic'),
-(1,5,2479,'Honorless Target'),
-(1,5,3050,'Detect'),
-(1,5,3365,'Opening'),
-(1,5,5009,'Wands'),
-(1,5,5019,'Shoot'),
-(1,5,6233,'Closing'),
-(1,5,6246,'Closing'),
-(1,5,6247,'Opening'),
-(1,5,6477,'Opening'),
-(1,5,6478,'Opening'),
-(1,5,6603,'Attack'),
-(1,5,7266,'Duel'),
-(1,5,7267,'Grovel'),
-(1,5,7355,'Stuck'),
-(1,5,8386,'Attacking'),
-(1,5,9078,'Cloth'),
-(1,5,9125,'Generic'),
-(1,5,20597,'Sword Specialization'),
-(1,5,20598,'The Human Spirit'),
-(1,5,20599,'Diplomacy'),
-(1,5,20864,'Mace Specialization'),
-(1,5,21651,'Opening'),
-(1,5,21652,'Closing'),
-(1,5,22027,'Remove Insignia'),
-(1,5,22810,'Opening - No Text'),
-(1,5,45927,'Summon Friend'),
-(1,5,58985,'Perception'),
-(1,5,59752,'Every Man for Himself'),
-(1,5,61437,'Opening'),
-(1,6,81,'Dodge'),
-(1,6,196,'One-Handed Axes'),
-(1,6,197,'Two-Handed Axes'),
-(1,6,200,'Polearms'),
-(1,6,201,'One-Handed Swords'),
-(1,6,202,'Two-Handed Swords'),
-(1,6,203,'Unarmed'),
-(1,6,204,'Defense'),
-(1,6,522,'SPELLDEFENSE (DND)'),
-(1,6,668,'Language Common'),
-(1,6,674,'Dual Wield'),
-(1,6,750,'Plate Mail'),
-(1,6,1843,'Disarm'),
-(1,6,2382,'Generic'),
-(1,6,2479,'Honorless Target'),
-(1,6,3050,'Detect'),
-(1,6,3127,'Parry'),
-(1,6,3275,'Linen Bandage'),
-(1,6,3276,'Heavy Linen Bandage'),
-(1,6,3277,'Wool Bandage'),
-(1,6,3278,'Heavy Wool Bandage'),
-(1,6,3365,'Opening'),
-(1,6,6233,'Closing'),
-(1,6,6246,'Closing'),
-(1,6,6247,'Opening'),
-(1,6,6477,'Opening'),
-(1,6,6478,'Opening'),
-(1,6,6603,'Attack'),
-(1,6,7266,'Duel'),
-(1,6,7267,'Grovel'),
-(1,6,7355,'Stuck'),
-(1,6,7928,'Silk Bandage'),
-(1,6,7929,'Heavy Silk Bandage'),
-(1,6,7934,'Anti-Venom'),
-(1,6,8386,'Attacking'),
-(1,6,8737,'Mail'),
-(1,6,9077,'Leather'),
-(1,6,9078,'Cloth'),
-(1,6,9125,'Generic'),
-(1,6,10840,'Mageweave Bandage'),
-(1,6,10841,'Heavy Mageweave Bandage'),
-(1,6,10846,'First Aid'),
-(1,6,18629,'Runecloth Bandage'),
-(1,6,18630,'Heavy Runecloth Bandage'),
-(1,6,20597,'Sword Specialization'),
-(1,6,20598,'The Human Spirit'),
-(1,6,20599,'Diplomacy'),
-(1,6,20864,'Mace Specialization'),
-(1,6,21651,'Opening'),
-(1,6,21652,'Closing'),
-(1,6,22027,'Remove Insignia'),
-(1,6,22810,'Opening - No Text'),
-(1,6,33391,'Journeyman Riding'),
-(1,6,45462,'Plague Strike'),
-(1,6,45477,'Icy Touch'),
-(1,6,45902,'Blood Strike'),
-(1,6,45903,'Offensive State (DND)'),
-(1,6,45927,'Summon Friend'),
-(1,6,47541,'Death Coil'),
-(1,6,48266,'Blood Presence'),
-(1,6,49410,'Forceful Deflection'),
-(1,6,49576,'Death Grip'),
-(1,6,52665,'Sigil'),
-(1,6,58985,'Perception'),
-(1,6,59752,'Every Man for Himself'),
-(1,6,59879,'Blood Plague'),
-(1,6,59921,'Frost Fever'),
-(1,6,61437,'Opening'),
-(1,6,61455,'Runic Focus'),
-(1,8,81,'Dodge'),
-(1,8,133,'Fireball'),
-(1,8,168,'Frost Armor'),
-(1,8,203,'Unarmed'),
-(1,8,204,'Defense'),
-(1,8,227,'Staves'),
-(1,8,522,'SPELLDEFENSE (DND)'),
-(1,8,668,'Language Common'),
-(1,8,1843,'Disarm'),
-(1,8,2382,'Generic'),
-(1,8,2479,'Honorless Target'),
-(1,8,3050,'Detect'),
-(1,8,3365,'Opening'),
-(1,8,5009,'Wands'),
-(1,8,5019,'Shoot'),
-(1,8,6233,'Closing'),
-(1,8,6246,'Closing'),
-(1,8,6247,'Opening'),
-(1,8,6477,'Opening'),
-(1,8,6478,'Opening'),
-(1,8,6603,'Attack'),
-(1,8,7266,'Duel'),
-(1,8,7267,'Grovel'),
-(1,8,7355,'Stuck'),
-(1,8,8386,'Attacking'),
-(1,8,9078,'Cloth'),
-(1,8,9125,'Generic'),
-(1,8,20597,'Sword Specialization'),
-(1,8,20598,'The Human Spirit'),
-(1,8,20599,'Diplomacy'),
-(1,8,20864,'Mace Specialization'),
-(1,8,21651,'Opening'),
-(1,8,21652,'Closing'),
-(1,8,22027,'Remove Insignia'),
-(1,8,22810,'Opening - No Text'),
-(1,8,45927,'Summon Friend'),
-(1,8,58985,'Perception'),
-(1,8,59752,'Every Man for Himself'),
-(1,8,61437,'Opening'),
-(1,9,81,'Dodge'),
-(1,9,203,'Unarmed'),
-(1,9,204,'Defense'),
-(1,9,522,'SPELLDEFENSE (DND)'),
-(1,9,668,'Language Common'),
-(1,9,686,'Shadow Bolt'),
-(1,9,687,'Demon Skin'),
-(1,9,1180,'Daggers'),
-(1,9,1843,'Disarm'),
-(1,9,2382,'Generic'),
-(1,9,2479,'Honorless Target'),
-(1,9,3050,'Detect'),
-(1,9,3365,'Opening'),
-(1,9,5009,'Wands'),
-(1,9,5019,'Shoot'),
-(1,9,6233,'Closing'),
-(1,9,6246,'Closing'),
-(1,9,6247,'Opening'),
-(1,9,6477,'Opening'),
-(1,9,6478,'Opening'),
-(1,9,6603,'Attack'),
-(1,9,7266,'Duel'),
-(1,9,7267,'Grovel'),
-(1,9,7355,'Stuck'),
-(1,9,8386,'Attacking'),
-(1,9,9078,'Cloth'),
-(1,9,9125,'Generic'),
-(1,9,20597,'Sword Specialization'),
-(1,9,20598,'The Human Spirit'),
-(1,9,20599,'Diplomacy'),
-(1,9,20864,'Mace Specialization'),
-(1,9,21651,'Opening'),
-(1,9,21652,'Closing'),
-(1,9,22027,'Remove Insignia'),
-(1,9,22810,'Opening - No Text'),
-(1,9,45927,'Summon Friend'),
-(5,9,58284,'Chaos Bolt Passive'),
-(1,9,58985,'Perception'),
-(1,9,59752,'Every Man for Himself'),
-(1,9,61437,'Opening'),
-(2,1,78,'Heroic Strike'),
-(2,1,81,'Dodge'),
-(2,1,107,'Block'),
-(2,1,196,'One-Handed Axes'),
-(2,1,197,'Two-Handed Axes'),
-(2,1,201,'One-Handed Swords'),
-(2,1,203,'Unarmed'),
-(2,1,204,'Defense'),
-(2,1,522,'SPELLDEFENSE (DND)'),
-(2,1,669,'Language Orcish'),
-(2,1,1843,'Disarm'),
-(2,1,2382,'Generic'),
-(2,1,2457,'Battle Stance'),
-(2,1,2479,'Honorless Target'),
-(2,1,3050,'Detect'),
-(2,1,3365,'Opening'),
-(2,1,5301,'Defensive State (DND)'),
-(2,1,6233,'Closing'),
-(2,1,6246,'Closing'),
-(2,1,6247,'Opening'),
-(2,1,6477,'Opening'),
-(2,1,6478,'Opening'),
-(2,1,6603,'Attack'),
-(2,1,7266,'Duel'),
-(2,1,7267,'Grovel'),
-(2,1,7355,'Stuck'),
-(2,1,8386,'Attacking'),
-(2,1,8737,'Mail'),
-(2,1,9077,'Leather'),
-(2,1,9078,'Cloth'),
-(2,1,9116,'Shield'),
-(2,1,9125,'Generic'),
-(2,1,20572,'Blood Fury'),
-(2,1,20573,'Hardiness'),
-(2,1,20574,'Axe Specialization'),
-(2,1,21563,'Command'),
-(2,1,21651,'Opening'),
-(2,1,21652,'Closing'),
-(2,1,22027,'Remove Insignia'),
-(2,1,22810,'Opening - No Text'),
-(2,1,32215,'Victorious State'),
-(2,1,45927,'Summon Friend'),
-(2,1,61437,'Opening'),
-(2,3,75,'Auto Shot'),
-(2,3,81,'Dodge'),
-(2,3,196,'One-Handed Axes'),
-(2,3,203,'Unarmed'),
-(2,3,204,'Defense'),
-(2,3,264,'Bows'),
-(2,3,522,'SPELLDEFENSE (DND)'),
-(2,3,669,'Language Orcish'),
-(2,3,1843,'Disarm'),
-(2,3,2382,'Generic'),
-(2,3,2479,'Honorless Target'),
-(2,3,2973,'Raptor Strike'),
-(2,3,3050,'Detect'),
-(2,3,3365,'Opening'),
-(2,3,6233,'Closing'),
-(2,3,6246,'Closing'),
-(2,3,6247,'Opening'),
-(2,3,6477,'Opening'),
-(2,3,6478,'Opening'),
-(2,3,6603,'Attack'),
-(2,3,7266,'Duel'),
-(2,3,7267,'Grovel'),
-(2,3,7355,'Stuck'),
-(2,3,8386,'Attacking'),
-(2,3,9077,'Leather'),
-(2,3,9078,'Cloth'),
-(2,3,9125,'Generic'),
-(2,3,13358,'Defensive State (DND)'),
-(2,3,20572,'Blood Fury'),
-(2,3,20573,'Hardiness'),
-(2,3,20574,'Axe Specialization'),
-(2,3,20576,'Command'),
-(2,3,21651,'Opening'),
-(2,3,21652,'Closing'),
-(2,3,22027,'Remove Insignia'),
-(2,3,22810,'Opening - No Text'),
-(2,3,24949,'Defensive State 2 (DND)'),
-(2,3,34082,'Advantaged State (DND)'),
-(2,3,45927,'Summon Friend'),
-(2,3,61437,'Opening'),
-(2,4,81,'Dodge'),
-(2,4,203,'Unarmed'),
-(2,4,204,'Defense'),
-(2,4,522,'SPELLDEFENSE (DND)'),
-(2,4,669,'Language Orcish'),
-(2,4,1180,'Daggers'),
-(2,4,1752,'Sinister Strike'),
-(2,4,1843,'Disarm'),
-(2,4,2098,'Eviscerate'),
-(2,4,2382,'Generic'),
-(2,4,2479,'Honorless Target'),
-(2,4,2567,'Thrown'),
-(2,4,2764,'Throw'),
-(2,4,3050,'Detect'),
-(2,4,3365,'Opening'),
-(2,4,6233,'Closing'),
-(2,4,6246,'Closing'),
-(2,4,6247,'Opening'),
-(2,4,6477,'Opening'),
-(2,4,6478,'Opening'),
-(2,4,6603,'Attack'),
-(2,4,7266,'Duel'),
-(2,4,7267,'Grovel'),
-(2,4,7355,'Stuck'),
-(2,4,8386,'Attacking'),
-(2,4,9077,'Leather'),
-(2,4,9078,'Cloth'),
-(2,4,9125,'Generic'),
-(2,4,16092,'Defensive State (DND)'),
-(2,4,20572,'Blood Fury'),
-(2,4,20573,'Hardiness'),
-(2,4,20574,'Axe Specialization'),
-(2,4,21184,'Rogue Passive (DND)'),
-(2,4,21563,'Command'),
-(2,4,21651,'Opening'),
-(2,4,21652,'Closing'),
-(2,4,22027,'Remove Insignia'),
-(2,4,22810,'Opening - No Text'),
-(2,4,45927,'Summon Friend'),
-(2,4,61437,'Opening'),
-(2,6,81,'Dodge'),
-(2,6,196,'One-Handed Axes'),
-(2,6,197,'Two-Handed Axes'),
-(2,6,200,'Polearms'),
-(2,6,201,'One-Handed Swords'),
-(2,6,202,'Two-Handed Swords'),
-(2,6,203,'Unarmed'),
-(2,6,204,'Defense'),
-(2,6,522,'SPELLDEFENSE (DND)'),
-(2,6,669,'Language Orcish'),
-(2,6,674,'Dual Wield'),
-(2,6,750,'Plate Mail'),
-(2,6,1843,'Disarm'),
-(2,6,2382,'Generic'),
-(2,6,2479,'Honorless Target'),
-(2,6,3050,'Detect'),
-(2,6,3127,'Parry'),
-(2,6,3275,'Linen Bandage'),
-(2,6,3276,'Heavy Linen Bandage'),
-(2,6,3277,'Wool Bandage'),
-(2,6,3278,'Heavy Wool Bandage'),
-(2,6,3365,'Opening'),
-(2,6,6233,'Closing'),
-(2,6,6246,'Closing'),
-(2,6,6247,'Opening'),
-(2,6,6477,'Opening'),
-(2,6,6478,'Opening'),
-(2,6,6603,'Attack'),
-(2,6,7266,'Duel'),
-(2,6,7267,'Grovel'),
-(2,6,7355,'Stuck'),
-(2,6,7928,'Silk Bandage'),
-(2,6,7929,'Heavy Silk Bandage'),
-(2,6,7934,'Anti-Venom'),
-(2,6,8386,'Attacking'),
-(2,6,8737,'Mail'),
-(2,6,9077,'Leather'),
-(2,6,9078,'Cloth'),
-(2,6,9125,'Generic'),
-(2,6,10840,'Mageweave Bandage'),
-(2,6,10841,'Heavy Mageweave Bandage'),
-(2,6,10846,'First Aid'),
-(2,6,18629,'Runecloth Bandage'),
-(2,6,18630,'Heavy Runecloth Bandage'),
-(2,6,20572,'Blood Fury'),
-(2,6,20573,'Hardiness'),
-(2,6,20574,'Axe Specialization'),
-(2,6,21651,'Opening'),
-(2,6,21652,'Closing'),
-(2,6,22027,'Remove Insignia'),
-(2,6,22810,'Opening - No Text'),
-(2,6,33391,'Journeyman Riding'),
-(2,6,45462,'Plague Strike'),
-(2,6,45477,'Icy Touch'),
-(2,6,45902,'Blood Strike'),
-(2,6,45903,'Offensive State (DND)'),
-(2,6,45927,'Summon Friend'),
-(2,6,47541,'Death Coil'),
-(2,6,48266,'Blood Presence'),
-(2,6,49410,'Forceful Deflection'),
-(2,6,49576,'Death Grip'),
-(2,6,52665,'Sigil'),
-(2,6,54562,'Command'),
-(2,6,59879,'Blood Plague'),
-(2,6,59921,'Frost Fever'),
-(2,6,61437,'Opening'),
-(2,6,61455,'Runic Focus'),
-(2,7,81,'Dodge'),
-(2,7,107,'Block'),
-(2,7,198,'One-Handed Maces'),
-(2,7,203,'Unarmed'),
-(2,7,204,'Defense'),
-(2,7,227,'Staves'),
-(2,7,331,'Healing Wave'),
-(2,7,403,'Lightning Bolt'),
-(2,7,522,'SPELLDEFENSE (DND)'),
-(2,7,669,'Language Orcish'),
-(2,7,1843,'Disarm'),
-(2,7,2382,'Generic'),
-(2,7,2479,'Honorless Target'),
-(2,7,3050,'Detect'),
-(2,7,3365,'Opening'),
-(2,7,6233,'Closing'),
-(2,7,6246,'Closing'),
-(2,7,6247,'Opening'),
-(2,7,6477,'Opening'),
-(2,7,6478,'Opening'),
-(2,7,6603,'Attack'),
-(2,7,7266,'Duel'),
-(2,7,7267,'Grovel'),
-(2,7,7355,'Stuck'),
-(2,7,8386,'Attacking'),
-(2,7,9077,'Leather'),
-(2,7,9078,'Cloth'),
-(2,7,9116,'Shield'),
-(2,7,9125,'Generic'),
-(2,7,20573,'Hardiness'),
-(2,7,20574,'Axe Specialization'),
-(2,7,21563,'Command'),
-(2,7,21651,'Opening'),
-(2,7,21652,'Closing'),
-(2,7,22027,'Remove Insignia'),
-(2,7,22810,'Opening - No Text'),
-(2,7,27763,'Totem'),
-(2,7,33697,'Blood Fury'),
-(2,7,45927,'Summon Friend'),
-(2,7,61437,'Opening'),
-(2,9,81,'Dodge'),
-(2,9,203,'Unarmed'),
-(2,9,204,'Defense'),
-(2,9,522,'SPELLDEFENSE (DND)'),
-(2,9,669,'Language Orcish'),
-(2,9,686,'Shadow Bolt'),
-(2,9,687,'Demon Skin'),
-(2,9,1180,'Daggers'),
-(2,9,1843,'Disarm'),
-(2,9,2382,'Generic'),
-(2,9,2479,'Honorless Target'),
-(2,9,3050,'Detect'),
-(2,9,3365,'Opening'),
-(2,9,5009,'Wands'),
-(2,9,5019,'Shoot'),
-(2,9,6233,'Closing'),
-(2,9,6246,'Closing'),
-(2,9,6247,'Opening'),
-(2,9,6477,'Opening'),
-(2,9,6478,'Opening'),
-(2,9,6603,'Attack'),
-(2,9,7266,'Duel'),
-(2,9,7267,'Grovel'),
-(2,9,7355,'Stuck'),
-(2,9,8386,'Attacking'),
-(2,9,9078,'Cloth'),
-(2,9,9125,'Generic'),
-(2,9,20573,'Hardiness'),
-(2,9,20574,'Axe Specialization'),
-(2,9,20575,'Command'),
-(2,9,21651,'Opening'),
-(2,9,21652,'Closing'),
-(2,9,22027,'Remove Insignia'),
-(2,9,22810,'Opening - No Text'),
-(2,9,33702,'Blood Fury'),
-(2,9,45927,'Summon Friend'),
-(2,9,58284,'Chaos Bolt Passive'),
-(2,9,61437,'Opening'),
-(3,1,78,'Heroic Strike'),
-(3,1,81,'Dodge'),
-(3,1,107,'Block'),
-(3,1,196,'One-Handed Axes'),
-(3,1,197,'Two-Handed Axes'),
-(3,1,198,'One-Handed Maces'),
-(3,1,203,'Unarmed'),
-(3,1,204,'Defense'),
-(3,1,522,'SPELLDEFENSE (DND)'),
-(3,1,668,'Language Common'),
-(3,1,672,'Language Dwarven'),
-(3,1,1843,'Disarm'),
-(3,1,2382,'Generic'),
-(3,1,2457,'Battle Stance'),
-(3,1,2479,'Honorless Target'),
-(3,1,2481,'Find Treasure'),
-(3,1,3050,'Detect'),
-(3,1,3365,'Opening'),
-(3,1,5301,'Defensive State (DND)'),
-(3,1,6233,'Closing'),
-(3,1,6246,'Closing'),
-(3,1,6247,'Opening'),
-(3,1,6477,'Opening'),
-(3,1,6478,'Opening'),
-(3,1,6603,'Attack'),
-(3,1,7266,'Duel'),
-(3,1,7267,'Grovel'),
-(3,1,7355,'Stuck'),
-(3,1,8386,'Attacking'),
-(3,1,8737,'Mail'),
-(3,1,9077,'Leather'),
-(3,1,9078,'Cloth'),
-(3,1,9116,'Shield'),
-(3,1,9125,'Generic'),
-(3,1,20594,'Stoneform'),
-(3,1,20595,'Gun Specialization'),
-(3,1,20596,'Frost Resistance'),
-(3,1,21651,'Opening'),
-(3,1,21652,'Closing'),
-(3,1,22027,'Remove Insignia'),
-(3,1,22810,'Opening - No Text'),
-(3,1,32215,'Victorious State'),
-(3,1,45927,'Summon Friend'),
-(3,1,59224,'Mace Specialization'),
-(3,1,61437,'Opening'),
-(3,2,81,'Dodge'),
-(3,2,107,'Block'),
-(3,2,198,'One-Handed Maces'),
-(3,2,199,'Two-Handed Maces'),
-(3,2,203,'Unarmed'),
-(3,2,204,'Defense'),
-(3,2,522,'SPELLDEFENSE (DND)'),
-(3,2,635,'Holy Light'),
-(3,2,668,'Language Common'),
-(3,2,672,'Language Dwarven'),
-(3,2,1843,'Disarm'),
-(3,2,2382,'Generic'),
-(3,2,2479,'Honorless Target'),
-(3,2,2481,'Find Treasure'),
-(3,2,3050,'Detect'),
-(3,2,3365,'Opening'),
-(3,2,6233,'Closing'),
-(3,2,6246,'Closing'),
-(3,2,6247,'Opening'),
-(3,2,6477,'Opening'),
-(3,2,6478,'Opening'),
-(3,2,6603,'Attack'),
-(3,2,7266,'Duel'),
-(3,2,7267,'Grovel'),
-(3,2,7355,'Stuck'),
-(3,2,8386,'Attacking'),
-(3,2,8737,'Mail'),
-(3,2,9077,'Leather'),
-(3,2,9078,'Cloth'),
-(3,2,9116,'Shield'),
-(3,2,9125,'Generic'),
-(3,2,21084,'Seal of Righteousness'),
-(3,2,20594,'Stoneform'),
-(3,2,20595,'Gun Specialization'),
-(3,2,20596,'Frost Resistance'),
-(3,2,21651,'Opening'),
-(3,2,21652,'Closing'),
-(3,2,22027,'Remove Insignia'),
-(3,2,22810,'Opening - No Text'),
-(3,2,27762,'Libram'),
-(3,2,45927,'Summon Friend'),
-(3,2,59224,'Mace Specialization'),
-(3,2,61437,'Opening'),
-(3,3,75,'Auto Shot'),
-(3,3,81,'Dodge'),
-(3,3,196,'One-Handed Axes'),
-(3,3,203,'Unarmed'),
-(3,3,204,'Defense'),
-(3,3,266,'Guns'),
-(3,3,522,'SPELLDEFENSE (DND)'),
-(3,3,668,'Language Common'),
-(3,3,672,'Language Dwarven'),
-(3,3,1843,'Disarm'),
-(3,3,2382,'Generic'),
-(3,3,2479,'Honorless Target'),
-(3,3,2481,'Find Treasure'),
-(3,3,2973,'Raptor Strike'),
-(3,3,3050,'Detect'),
-(3,3,3365,'Opening'),
-(3,3,6233,'Closing'),
-(3,3,6246,'Closing'),
-(3,3,6247,'Opening'),
-(3,3,6477,'Opening'),
-(3,3,6478,'Opening'),
-(3,3,6603,'Attack'),
-(3,3,7266,'Duel'),
-(3,3,7267,'Grovel'),
-(3,3,7355,'Stuck'),
-(3,3,8386,'Attacking'),
-(3,3,9077,'Leather'),
-(3,3,9078,'Cloth'),
-(3,3,9125,'Generic'),
-(3,3,13358,'Defensive State (DND)'),
-(3,3,20594,'Stoneform'),
-(3,3,20595,'Gun Specialization'),
-(3,3,20596,'Frost Resistance'),
-(3,3,21651,'Opening'),
-(3,3,21652,'Closing'),
-(3,3,22027,'Remove Insignia'),
-(3,3,22810,'Opening - No Text'),
-(3,3,24949,'Defensive State 2 (DND)'),
-(3,3,34082,'Advantaged State (DND)'),
-(3,3,45927,'Summon Friend'),
-(3,3,59224,'Mace Specialization'),
-(3,3,61437,'Opening'),
-(3,4,81,'Dodge'),
-(3,4,203,'Unarmed'),
-(3,4,204,'Defense'),
-(3,4,522,'SPELLDEFENSE (DND)'),
-(3,4,668,'Language Common'),
-(3,4,672,'Language Dwarven'),
-(3,4,1180,'Daggers'),
-(3,4,1752,'Sinister Strike'),
-(3,4,1843,'Disarm'),
-(3,4,2098,'Eviscerate'),
-(3,4,2382,'Generic'),
-(3,4,2479,'Honorless Target'),
-(3,4,2481,'Find Treasure'),
-(3,4,2567,'Thrown'),
-(3,4,2764,'Throw'),
-(3,4,3050,'Detect'),
-(3,4,3365,'Opening'),
-(3,4,6233,'Closing'),
-(3,4,6246,'Closing'),
-(3,4,6247,'Opening'),
-(3,4,6477,'Opening'),
-(3,4,6478,'Opening'),
-(3,4,6603,'Attack'),
-(3,4,7266,'Duel'),
-(3,4,7267,'Grovel'),
-(3,4,7355,'Stuck'),
-(3,4,8386,'Attacking'),
-(3,4,9077,'Leather'),
-(3,4,9078,'Cloth'),
-(3,4,9125,'Generic'),
-(3,4,16092,'Defensive State (DND)'),
-(3,4,20594,'Stoneform'),
-(3,4,20595,'Gun Specialization'),
-(3,4,20596,'Frost Resistance'),
-(3,4,21184,'Rogue Passive (DND)'),
-(3,4,21651,'Opening'),
-(3,4,21652,'Closing'),
-(3,4,22027,'Remove Insignia'),
-(3,4,22810,'Opening - No Text'),
-(3,4,45927,'Summon Friend'),
-(3,4,59224,'Mace Specialization'),
-(3,4,61437,'Opening'),
-(3,5,81,'Dodge'),
-(3,5,198,'One-Handed Maces'),
-(3,5,203,'Unarmed'),
-(3,5,204,'Defense'),
-(3,5,522,'SPELLDEFENSE (DND)'),
-(3,5,585,'Smite'),
-(3,5,668,'Language Common'),
-(3,5,672,'Language Dwarven'),
-(3,5,1843,'Disarm'),
-(3,5,2050,'Lesser Heal'),
-(3,5,2382,'Generic'),
-(3,5,2479,'Honorless Target'),
-(3,5,2481,'Find Treasure'),
-(3,5,3050,'Detect'),
-(3,5,3365,'Opening'),
-(3,5,5009,'Wands'),
-(3,5,5019,'Shoot'),
-(3,5,6233,'Closing'),
-(3,5,6246,'Closing'),
-(3,5,6247,'Opening'),
-(3,5,6477,'Opening'),
-(3,5,6478,'Opening'),
-(3,5,6603,'Attack'),
-(3,5,7266,'Duel'),
-(3,5,7267,'Grovel'),
-(3,5,7355,'Stuck'),
-(3,5,8386,'Attacking'),
-(3,5,9078,'Cloth'),
-(3,5,9125,'Generic'),
-(3,5,20594,'Stoneform'),
-(3,5,20595,'Gun Specialization'),
-(3,5,20596,'Frost Resistance'),
-(3,5,21651,'Opening'),
-(3,5,21652,'Closing'),
-(3,5,22027,'Remove Insignia'),
-(3,5,22810,'Opening - No Text'),
-(3,5,45927,'Summon Friend'),
-(3,5,59224,'Mace Specialization'),
-(3,5,61437,'Opening'),
-(3,6,81,'Dodge'),
-(3,6,196,'One-Handed Axes'),
-(3,6,197,'Two-Handed Axes'),
-(3,6,200,'Polearms'),
-(3,6,201,'One-Handed Swords'),
-(3,6,202,'Two-Handed Swords'),
-(3,6,203,'Unarmed'),
-(3,6,204,'Defense'),
-(3,6,522,'SPELLDEFENSE (DND)'),
-(3,6,668,'Language Common'),
-(3,6,672,'Language Dwarven'),
-(3,6,674,'Dual Wield'),
-(3,6,750,'Plate Mail'),
-(3,6,1843,'Disarm'),
-(3,6,2382,'Generic'),
-(3,6,2479,'Honorless Target'),
-(3,6,2481,'Find Treasure'),
-(3,6,3050,'Detect'),
-(3,6,3127,'Parry'),
-(3,6,3275,'Linen Bandage'),
-(3,6,3276,'Heavy Linen Bandage'),
-(3,6,3277,'Wool Bandage'),
-(3,6,3278,'Heavy Wool Bandage'),
-(3,6,3365,'Opening'),
-(3,6,6233,'Closing'),
-(3,6,6246,'Closing'),
-(3,6,6247,'Opening'),
-(3,6,6477,'Opening'),
-(3,6,6478,'Opening'),
-(3,6,6603,'Attack'),
-(3,6,7266,'Duel'),
-(3,6,7267,'Grovel'),
-(3,6,7355,'Stuck'),
-(3,6,7928,'Silk Bandage'),
-(3,6,7929,'Heavy Silk Bandage'),
-(3,6,7934,'Anti-Venom'),
-(3,6,8386,'Attacking'),
-(3,6,8737,'Mail'),
-(3,6,9077,'Leather'),
-(3,6,9078,'Cloth'),
-(3,6,9125,'Generic'),
-(3,6,10840,'Mageweave Bandage'),
-(3,6,10841,'Heavy Mageweave Bandage'),
-(3,6,10846,'First Aid'),
-(3,6,18629,'Runecloth Bandage'),
-(3,6,18630,'Heavy Runecloth Bandage'),
-(3,6,20594,'Stoneform'),
-(3,6,20595,'Gun Specialization'),
-(3,6,20596,'Frost Resistance'),
-(3,6,21651,'Opening'),
-(3,6,21652,'Closing'),
-(3,6,22027,'Remove Insignia'),
-(3,6,22810,'Opening - No Text'),
-(3,6,33391,'Journeyman Riding'),
-(3,6,45462,'Plague Strike'),
-(3,6,45477,'Icy Touch'),
-(3,6,45902,'Blood Strike'),
-(3,6,45903,'Offensive State (DND)'),
-(3,6,45927,'Summon Friend'),
-(3,6,47541,'Death Coil'),
-(3,6,48266,'Blood Presence'),
-(3,6,49410,'Forceful Deflection'),
-(3,6,49576,'Death Grip'),
-(3,6,52665,'Sigil'),
-(3,6,59224,'Mace Specialization'),
-(3,6,59879,'Blood Plague'),
-(3,6,59921,'Frost Fever'),
-(3,6,61437,'Opening'),
-(3,6,61455,'Runic Focus'),
-(4,1,78,'Heroic Strike'),
-(4,1,81,'Dodge'),
-(4,1,107,'Block'),
-(4,1,198,'One-Handed Maces'),
-(4,1,201,'One-Handed Swords'),
-(4,1,203,'Unarmed'),
-(4,1,204,'Defense'),
-(4,1,522,'SPELLDEFENSE (DND)'),
-(4,1,668,'Language Common'),
-(4,1,671,'Language Darnassian'),
-(4,1,1180,'Daggers'),
-(4,1,1843,'Disarm'),
-(4,1,2382,'Generic'),
-(4,1,2457,'Battle Stance'),
-(4,1,2479,'Honorless Target'),
-(4,1,3050,'Detect'),
-(4,1,3365,'Opening'),
-(4,1,5301,'Defensive State (DND)'),
-(4,1,6233,'Closing'),
-(4,1,6246,'Closing'),
-(4,1,6247,'Opening'),
-(4,1,6477,'Opening'),
-(4,1,6478,'Opening'),
-(4,1,6603,'Attack'),
-(4,1,7266,'Duel'),
-(4,1,7267,'Grovel'),
-(4,1,7355,'Stuck'),
-(4,1,8386,'Attacking'),
-(4,1,8737,'Mail'),
-(4,1,9077,'Leather'),
-(4,1,9078,'Cloth'),
-(4,1,9116,'Shield'),
-(4,1,9125,'Generic'),
-(4,1,20582,'Quickness'),
-(4,1,20583,'Nature Resistance'),
-(4,1,20585,'Wisp Spirit'),
-(4,1,21651,'Opening'),
-(4,1,21652,'Closing'),
-(4,1,22027,'Remove Insignia'),
-(4,1,22810,'Opening - No Text'),
-(4,1,32215,'Victorious State'),
-(4,1,45927,'Summon Friend'),
-(4,1,58984,'Shadowmelt'),
-(4,1,61437,'Opening'),
-(4,3,75,'Auto Shot'),
-(4,3,81,'Dodge'),
-(4,3,203,'Unarmed'),
-(4,3,204,'Defense'),
-(4,3,264,'Bows'),
-(4,3,522,'SPELLDEFENSE (DND)'),
-(4,3,668,'Language Common'),
-(4,3,671,'Language Darnassian'),
-(4,3,1180,'Daggers'),
-(4,3,1843,'Disarm'),
-(4,3,2382,'Generic'),
-(4,3,2479,'Honorless Target'),
-(4,3,2973,'Raptor Strike'),
-(4,3,3050,'Detect'),
-(4,3,3365,'Opening'),
-(4,3,6233,'Closing'),
-(4,3,6246,'Closing'),
-(4,3,6247,'Opening'),
-(4,3,6477,'Opening'),
-(4,3,6478,'Opening'),
-(4,3,6603,'Attack'),
-(4,3,7266,'Duel'),
-(4,3,7267,'Grovel'),
-(4,3,7355,'Stuck'),
-(4,3,8386,'Attacking'),
-(4,3,9077,'Leather'),
-(4,3,9078,'Cloth'),
-(4,3,9125,'Generic'),
-(4,3,13358,'Defensive State (DND)'),
-(4,3,20582,'Quickness'),
-(4,3,20583,'Nature Resistance'),
-(4,3,20585,'Wisp Spirit'),
-(4,3,21651,'Opening'),
-(4,3,21652,'Closing'),
-(4,3,22027,'Remove Insignia'),
-(4,3,22810,'Opening - No Text'),
-(4,3,24949,'Defensive State 2 (DND)'),
-(4,3,34082,'Advantaged State (DND)'),
-(4,3,45927,'Summon Friend'),
-(4,3,58984,'Shadowmelt'),
-(4,3,61437,'Opening'),
-(4,4,81,'Dodge'),
-(4,4,203,'Unarmed'),
-(4,4,204,'Defense'),
-(4,4,522,'SPELLDEFENSE (DND)'),
-(4,4,668,'Language Common'),
-(4,4,671,'Language Darnassian'),
-(4,4,1180,'Daggers'),
-(4,4,1752,'Sinister Strike'),
-(4,4,1843,'Disarm'),
-(4,4,2098,'Eviscerate'),
-(4,4,2382,'Generic'),
-(4,4,2479,'Honorless Target'),
-(4,4,2567,'Thrown'),
-(4,4,2764,'Throw'),
-(4,4,3050,'Detect'),
-(4,4,3365,'Opening'),
-(4,4,6233,'Closing'),
-(4,4,6246,'Closing'),
-(4,4,6247,'Opening'),
-(4,4,6477,'Opening'),
-(4,4,6478,'Opening'),
-(4,4,6603,'Attack'),
-(4,4,7266,'Duel'),
-(4,4,7267,'Grovel'),
-(4,4,7355,'Stuck'),
-(4,4,8386,'Attacking'),
-(4,4,9077,'Leather'),
-(4,4,9078,'Cloth'),
-(4,4,9125,'Generic'),
-(4,4,16092,'Defensive State (DND)'),
-(4,4,20582,'Quickness'),
-(4,4,20583,'Nature Resistance'),
-(4,4,20585,'Wisp Spirit'),
-(4,4,21184,'Rogue Passive (DND)'),
-(4,4,21651,'Opening'),
-(4,4,21652,'Closing'),
-(4,4,22027,'Remove Insignia'),
-(4,4,22810,'Opening - No Text'),
-(4,4,45927,'Summon Friend'),
-(4,4,58984,'Shadowmelt'),
-(4,4,61437,'Opening'),
-(4,5,81,'Dodge'),
-(4,5,198,'One-Handed Maces'),
-(4,5,203,'Unarmed'),
-(4,5,204,'Defense'),
-(4,5,522,'SPELLDEFENSE (DND)'),
-(4,5,585,'Smite'),
-(4,5,668,'Language Common'),
-(4,5,671,'Language Darnassian'),
-(4,5,1843,'Disarm'),
-(4,5,2050,'Lesser Heal'),
-(4,5,2382,'Generic'),
-(4,5,2479,'Honorless Target'),
-(4,5,3050,'Detect'),
-(4,5,3365,'Opening'),
-(4,5,5009,'Wands'),
-(4,5,5019,'Shoot'),
-(4,5,6233,'Closing'),
-(4,5,6246,'Closing'),
-(4,5,6247,'Opening'),
-(4,5,6477,'Opening'),
-(4,5,6478,'Opening'),
-(4,5,6603,'Attack'),
-(4,5,7266,'Duel'),
-(4,5,7267,'Grovel'),
-(4,5,7355,'Stuck'),
-(4,5,8386,'Attacking'),
-(4,5,9078,'Cloth'),
-(4,5,9125,'Generic'),
-(4,5,20582,'Quickness'),
-(4,5,20583,'Nature Resistance'),
-(4,5,20585,'Wisp Spirit'),
-(4,5,21651,'Opening'),
-(4,5,21652,'Closing'),
-(4,5,22027,'Remove Insignia'),
-(4,5,22810,'Opening - No Text'),
-(4,5,45927,'Summon Friend'),
-(4,5,58984,'Shadowmelt'),
-(4,5,61437,'Opening'),
-(4,6,81,'Dodge'),
-(4,6,196,'One-Handed Axes'),
-(4,6,197,'Two-Handed Axes'),
-(4,6,200,'Polearms'),
-(4,6,201,'One-Handed Swords'),
-(4,6,202,'Two-Handed Swords'),
-(4,6,203,'Unarmed'),
-(4,6,204,'Defense'),
-(4,6,522,'SPELLDEFENSE (DND)'),
-(4,6,668,'Language Common'),
-(4,6,671,'Language Darnassian'),
-(4,6,674,'Dual Wield'),
-(4,6,750,'Plate Mail'),
-(4,6,1843,'Disarm'),
-(4,6,2382,'Generic'),
-(4,6,2479,'Honorless Target'),
-(4,6,3050,'Detect'),
-(4,6,3127,'Parry'),
-(4,6,3275,'Linen Bandage'),
-(4,6,3276,'Heavy Linen Bandage'),
-(4,6,3277,'Wool Bandage'),
-(4,6,3278,'Heavy Wool Bandage'),
-(4,6,3365,'Opening'),
-(4,6,6233,'Closing'),
-(4,6,6246,'Closing'),
-(4,6,6247,'Opening'),
-(4,6,6477,'Opening'),
-(4,6,6478,'Opening'),
-(4,6,6603,'Attack'),
-(4,6,7266,'Duel'),
-(4,6,7267,'Grovel'),
-(4,6,7355,'Stuck'),
-(4,6,7928,'Silk Bandage'),
-(4,6,7929,'Heavy Silk Bandage'),
-(4,6,7934,'Anti-Venom'),
-(4,6,8386,'Attacking'),
-(4,6,8737,'Mail'),
-(4,6,9077,'Leather'),
-(4,6,9078,'Cloth'),
-(4,6,9125,'Generic'),
-(4,6,10840,'Mageweave Bandage'),
-(4,6,10841,'Heavy Mageweave Bandage'),
-(4,6,10846,'First Aid'),
-(4,6,18629,'Runecloth Bandage'),
-(4,6,18630,'Heavy Runecloth Bandage'),
-(4,6,20582,'Quickness'),
-(4,6,20583,'Nature Resistance'),
-(4,6,20585,'Wisp Spirit'),
-(4,6,21651,'Opening'),
-(4,6,21652,'Closing'),
-(4,6,22027,'Remove Insignia'),
-(4,6,22810,'Opening - No Text'),
-(4,6,33391,'Journeyman Riding'),
-(4,6,45462,'Plague Strike'),
-(4,6,45477,'Icy Touch'),
-(4,6,45902,'Blood Strike'),
-(4,6,45903,'Offensive State (DND)'),
-(4,6,45927,'Summon Friend'),
-(4,6,47541,'Death Coil'),
-(4,6,48266,'Blood Presence'),
-(4,6,49410,'Forceful Deflection'),
-(4,6,49576,'Death Grip'),
-(4,6,52665,'Sigil'),
-(4,6,58984,'Shadowmeld'),
-(4,6,59879,'Blood Plague'),
-(4,6,59921,'Frost Fever'),
-(4,6,61437,'Opening'),
-(4,6,61455,'Runic Focus'),
-(4,11,81,'Dodge'),
-(4,11,203,'Unarmed'),
-(4,11,204,'Defense'),
-(4,11,227,'Staves'),
-(4,11,522,'SPELLDEFENSE (DND)'),
-(4,11,668,'Language Common'),
-(4,11,671,'Language Darnassian'),
-(4,11,1180,'Daggers'),
-(4,11,1843,'Disarm'),
-(4,11,2382,'Generic'),
-(4,11,2479,'Honorless Target'),
-(4,11,3050,'Detect'),
-(4,11,3365,'Opening'),
-(4,11,5176,'Wrath'),
-(4,11,5185,'Healing Touch'),
-(4,11,6233,'Closing'),
-(4,11,6246,'Closing'),
-(4,11,6247,'Opening'),
-(4,11,6477,'Opening'),
-(4,11,6478,'Opening'),
-(4,11,6603,'Attack'),
-(4,11,7266,'Duel'),
-(4,11,7267,'Grovel'),
-(4,11,7355,'Stuck'),
-(4,11,8386,'Attacking'),
-(4,11,9077,'Leather'),
-(4,11,9078,'Cloth'),
-(4,11,9125,'Generic'),
-(4,11,20582,'Quickness'),
-(4,11,20583,'Nature Resistance'),
-(4,11,20585,'Wisp Spirit'),
-(4,11,21651,'Opening'),
-(4,11,21652,'Closing'),
-(4,11,22027,'Remove Insignia'),
-(4,11,22810,'Opening - No Text'),
-(4,11,27764,'Fetish'),
-(4,11,45927,'Summon Friend'),
-(4,11,58984,'Shadowmelt'),
-(4,11,61437,'Opening'),
-(5,1,78,'Heroic Strike'),
-(5,1,81,'Dodge'),
-(5,1,107,'Block'),
-(5,1,201,'One-Handed Swords'),
-(5,1,202,'Two-Handed Swords'),
-(5,1,203,'Unarmed'),
-(5,1,204,'Defense'),
-(5,1,522,'SPELLDEFENSE (DND)'),
-(5,1,669,'Language Orcish'),
-(5,1,1180,'Daggers'),
-(5,1,1843,'Disarm'),
-(5,1,2382,'Generic'),
-(5,1,2457,'Battle Stance'),
-(5,1,2479,'Honorless Target'),
-(5,1,3050,'Detect'),
-(5,1,3365,'Opening'),
-(5,1,5227,'Underwater Breathing'),
-(5,1,5301,'Defensive State (DND)'),
-(5,1,6233,'Closing'),
-(5,1,6246,'Closing'),
-(5,1,6247,'Opening'),
-(5,1,6477,'Opening'),
-(5,1,6478,'Opening'),
-(5,1,6603,'Attack'),
-(5,1,7266,'Duel'),
-(5,1,7267,'Grovel'),
-(5,1,7355,'Stuck'),
-(5,1,7744,'Will of the Forsaken'),
-(5,1,8386,'Attacking'),
-(5,1,8737,'Mail'),
-(5,1,9077,'Leather'),
-(5,1,9078,'Cloth'),
-(5,1,9116,'Shield'),
-(5,1,9125,'Generic'),
-(5,1,17737,'Language Gutterspeak'),
-(5,1,20577,'Cannibalize'),
-(5,1,20579,'Shadow Resistance'),
-(5,1,21651,'Opening'),
-(5,1,21652,'Closing'),
-(5,1,22027,'Remove Insignia'),
-(5,1,22810,'Opening - No Text'),
-(5,1,32215,'Victorious State'),
-(5,1,45927,'Summon Friend'),
-(5,1,61437,'Opening'),
-(5,4,81,'Dodge'),
-(5,4,203,'Unarmed'),
-(5,4,204,'Defense'),
-(5,4,522,'SPELLDEFENSE (DND)'),
-(5,4,669,'Language Orcish'),
-(5,4,1180,'Daggers'),
-(5,4,1752,'Sinister Strike'),
-(5,4,1843,'Disarm'),
-(5,4,2098,'Eviscerate'),
-(5,4,2382,'Generic'),
-(5,4,2479,'Honorless Target'),
-(5,4,2567,'Thrown'),
-(5,4,2764,'Throw'),
-(5,4,3050,'Detect'),
-(5,4,3365,'Opening'),
-(5,4,5227,'Underwater Breathing'),
-(5,4,6233,'Closing'),
-(5,4,6246,'Closing'),
-(5,4,6247,'Opening'),
-(5,4,6477,'Opening'),
-(5,4,6478,'Opening'),
-(5,4,6603,'Attack'),
-(5,4,7266,'Duel'),
-(5,4,7267,'Grovel'),
-(5,4,7355,'Stuck'),
-(5,4,7744,'Will of the Forsaken'),
-(5,4,8386,'Attacking'),
-(5,4,9077,'Leather'),
-(5,4,9078,'Cloth'),
-(5,4,9125,'Generic'),
-(5,4,16092,'Defensive State (DND)'),
-(5,4,17737,'Language Gutterspeak'),
-(5,4,20577,'Cannibalize'),
-(5,4,20579,'Shadow Resistance'),
-(5,4,21184,'Rogue Passive (DND)'),
-(5,4,21651,'Opening'),
-(5,4,21652,'Closing'),
-(5,4,22027,'Remove Insignia'),
-(5,4,22810,'Opening - No Text'),
-(5,4,45927,'Summon Friend'),
-(5,4,61437,'Opening'),
-(5,5,81,'Dodge'),
-(5,5,198,'One-Handed Maces'),
-(5,5,203,'Unarmed'),
-(5,5,204,'Defense'),
-(5,5,522,'SPELLDEFENSE (DND)'),
-(5,5,585,'Smite'),
-(5,5,669,'Language Orcish'),
-(5,5,1843,'Disarm'),
-(5,5,2050,'Lesser Heal'),
-(5,5,2382,'Generic'),
-(5,5,2479,'Honorless Target'),
-(5,5,3050,'Detect'),
-(5,5,3365,'Opening'),
-(5,5,5009,'Wands'),
-(5,5,5019,'Shoot'),
-(5,5,5227,'Underwater Breathing'),
-(5,5,6233,'Closing'),
-(5,5,6246,'Closing'),
-(5,5,6247,'Opening'),
-(5,5,6477,'Opening'),
-(5,5,6478,'Opening'),
-(5,5,6603,'Attack'),
-(5,5,7266,'Duel'),
-(5,5,7267,'Grovel'),
-(5,5,7355,'Stuck'),
-(5,5,7744,'Will of the Forsaken'),
-(5,5,8386,'Attacking'),
-(5,5,9078,'Cloth'),
-(5,5,9125,'Generic'),
-(5,5,17737,'Language Gutterspeak'),
-(5,5,20577,'Cannibalize'),
-(5,5,20579,'Shadow Resistance'),
-(5,5,21651,'Opening'),
-(5,5,21652,'Closing'),
-(5,5,22027,'Remove Insignia'),
-(5,5,22810,'Opening - No Text'),
-(5,5,45927,'Summon Friend'),
-(5,5,61437,'Opening'),
-(5,6,81,'Dodge'),
-(5,6,196,'One-Handed Axes'),
-(5,6,197,'Two-Handed Axes'),
-(5,6,200,'Polearms'),
-(5,6,201,'One-Handed Swords'),
-(5,6,202,'Two-Handed Swords'),
-(5,6,203,'Unarmed'),
-(5,6,204,'Defense'),
-(5,6,522,'SPELLDEFENSE (DND)'),
-(5,6,669,'Language Orcish'),
-(5,6,674,'Dual Wield'),
-(5,6,750,'Plate Mail'),
-(5,6,1843,'Disarm'),
-(5,6,2382,'Generic'),
-(5,6,2479,'Honorless Target'),
-(5,6,3050,'Detect'),
-(5,6,3127,'Parry'),
-(5,6,3275,'Linen Bandage'),
-(5,6,3276,'Heavy Linen Bandage'),
-(5,6,3277,'Wool Bandage'),
-(5,6,3278,'Heavy Wool Bandage'),
-(5,6,3365,'Opening'),
-(5,6,5227,'Underwater Breathing'),
-(5,6,6233,'Closing'),
-(5,6,6246,'Closing'),
-(5,6,6247,'Opening'),
-(5,6,6477,'Opening'),
-(5,6,6478,'Opening'),
-(5,6,6603,'Attack'),
-(5,6,7266,'Duel'),
-(5,6,7267,'Grovel'),
-(5,6,7355,'Stuck'),
-(5,6,7744,'Will of the Forsaken'),
-(5,6,7928,'Silk Bandage'),
-(5,6,7929,'Heavy Silk Bandage'),
-(5,6,7934,'Anti-Venom'),
-(5,6,8386,'Attacking'),
-(5,6,8737,'Mail'),
-(5,6,9077,'Leather'),
-(5,6,9078,'Cloth'),
-(5,6,9125,'Generic'),
-(5,6,10840,'Mageweave Bandage'),
-(5,6,10841,'Heavy Mageweave Bandage'),
-(5,6,10846,'First Aid'),
-(5,6,17737,'Language Gutterspeak'),
-(5,6,18629,'Runecloth Bandage'),
-(5,6,18630,'Heavy Runecloth Bandage'),
-(5,6,20577,'Cannibalize'),
-(5,6,20579,'Shadow Resistance'),
-(5,6,21651,'Opening'),
-(5,6,21652,'Closing'),
-(5,6,22027,'Remove Insignia'),
-(5,6,22810,'Opening - No Text'),
-(5,6,33391,'Journeyman Riding'),
-(5,6,45462,'Plague Strike'),
-(5,6,45477,'Icy Touch'),
-(5,6,45902,'Blood Strike'),
-(5,6,45903,'Offensive State (DND)'),
-(5,6,45927,'Summon Friend'),
-(5,6,47541,'Death Coil'),
-(5,6,48266,'Blood Presence'),
-(5,6,49410,'Forceful Deflection'),
-(5,6,49576,'Death Grip'),
-(5,6,52665,'Sigil'),
-(5,6,59879,'Blood Plague'),
-(5,6,59921,'Frost Fever'),
-(5,6,61437,'Opening'),
-(5,6,61455,'Runic Focus'),
-(5,8,81,'Dodge'),
-(5,8,133,'Fireball'),
-(5,8,168,'Frost Armor'),
-(5,8,203,'Unarmed'),
-(5,8,204,'Defense'),
-(5,8,227,'Staves'),
-(5,8,522,'SPELLDEFENSE (DND)'),
-(5,8,669,'Language Orcish'),
-(5,8,1843,'Disarm'),
-(5,8,2382,'Generic'),
-(5,8,2479,'Honorless Target'),
-(5,8,3050,'Detect'),
-(5,8,3365,'Opening'),
-(5,8,5009,'Wands'),
-(5,8,5019,'Shoot'),
-(5,8,5227,'Underwater Breathing'),
-(5,8,6233,'Closing'),
-(5,8,6246,'Closing'),
-(5,8,6247,'Opening'),
-(5,8,6477,'Opening'),
-(5,8,6478,'Opening'),
-(5,8,6603,'Attack'),
-(5,8,7266,'Duel'),
-(5,8,7267,'Grovel'),
-(5,8,7355,'Stuck'),
-(5,8,7744,'Will of the Forsaken'),
-(5,8,8386,'Attacking'),
-(5,8,9078,'Cloth'),
-(5,8,9125,'Generic'),
-(5,8,17737,'Language Gutterspeak'),
-(5,8,20577,'Cannibalize'),
-(5,8,20579,'Shadow Resistance'),
-(5,8,21651,'Opening'),
-(5,8,21652,'Closing'),
-(5,8,22027,'Remove Insignia'),
-(5,8,22810,'Opening - No Text'),
-(5,8,45927,'Summon Friend'),
-(5,8,61437,'Opening'),
-(5,9,81,'Dodge'),
-(5,9,203,'Unarmed'),
-(5,9,204,'Defense'),
-(5,9,522,'SPELLDEFENSE (DND)'),
-(5,9,669,'Language Orcish'),
-(5,9,686,'Shadow Bolt'),
-(5,9,687,'Demon Skin'),
-(5,9,1180,'Daggers'),
-(5,9,1843,'Disarm'),
-(5,9,2382,'Generic'),
-(5,9,2479,'Honorless Target'),
-(5,9,3050,'Detect'),
-(5,9,3365,'Opening'),
-(5,9,5009,'Wands'),
-(5,9,5019,'Shoot'),
-(5,9,5227,'Underwater Breathing'),
-(5,9,6233,'Closing'),
-(5,9,6246,'Closing'),
-(5,9,6247,'Opening'),
-(5,9,6477,'Opening'),
-(5,9,6478,'Opening'),
-(5,9,6603,'Attack'),
-(5,9,7266,'Duel'),
-(5,9,7267,'Grovel'),
-(5,9,7355,'Stuck'),
-(5,9,7744,'Will of the Forsaken'),
-(5,9,8386,'Attacking'),
-(5,9,9078,'Cloth'),
-(5,9,9125,'Generic'),
-(5,9,17737,'Language Gutterspeak'),
-(5,9,20577,'Cannibalize'),
-(5,9,20579,'Shadow Resistance'),
-(5,9,21651,'Opening'),
-(5,9,21652,'Closing'),
-(5,9,22027,'Remove Insignia'),
-(5,9,22810,'Opening - No Text'),
-(5,9,45927,'Summon Friend'),
-(1,9,58284,'Chaos Bolt Passive'),
-(5,9,61437,'Opening'),
-(6,1,78,'Heroic Strike'),
-(6,1,81,'Dodge'),
-(6,1,107,'Block'),
-(6,1,196,'One-Handed Axes'),
-(6,1,198,'One-Handed Maces'),
-(6,1,199,'Two-Handed Maces'),
-(6,1,203,'Unarmed'),
-(6,1,204,'Defense'),
-(6,1,522,'SPELLDEFENSE (DND)'),
-(6,1,669,'Language Orcish'),
-(6,1,670,'Language Taurahe'),
-(6,1,1843,'Disarm'),
-(6,1,2382,'Generic'),
-(6,1,2457,'Battle Stance'),
-(6,1,2479,'Honorless Target'),
-(6,1,3050,'Detect'),
-(6,1,3365,'Opening'),
-(6,1,5301,'Defensive State (DND)'),
-(6,1,6233,'Closing'),
-(6,1,6246,'Closing'),
-(6,1,6247,'Opening'),
-(6,1,6477,'Opening'),
-(6,1,6478,'Opening'),
-(6,1,6603,'Attack'),
-(6,1,7266,'Duel'),
-(6,1,7267,'Grovel'),
-(6,1,7355,'Stuck'),
-(6,1,8386,'Attacking'),
-(6,1,8737,'Mail'),
-(6,1,9077,'Leather'),
-(6,1,9078,'Cloth'),
-(6,1,9116,'Shield'),
-(6,1,9125,'Generic'),
-(6,1,20549,'War Stomp'),
-(6,1,20550,'Endurance'),
-(6,1,20551,'Nature Resistance'),
-(6,1,20552,'Cultivation'),
-(6,1,21651,'Opening'),
-(6,1,21652,'Closing'),
-(6,1,22027,'Remove Insignia'),
-(6,1,22810,'Opening - No Text'),
-(6,1,32215,'Victorious State'),
-(6,1,45927,'Summon Friend'),
-(6,1,61437,'Opening'),
-(6,3,75,'Auto Shot'),
-(6,3,81,'Dodge'),
-(6,3,196,'One-Handed Axes'),
-(6,3,203,'Unarmed'),
-(6,3,204,'Defense'),
-(6,3,266,'Guns'),
-(6,3,522,'SPELLDEFENSE (DND)'),
-(6,3,669,'Language Orcish'),
-(6,3,670,'Language Taurahe'),
-(6,3,1843,'Disarm'),
-(6,3,2382,'Generic'),
-(6,3,2479,'Honorless Target'),
-(6,3,2973,'Raptor Strike'),
-(6,3,3050,'Detect'),
-(6,3,3365,'Opening'),
-(6,3,6233,'Closing'),
-(6,3,6246,'Closing'),
-(6,3,6247,'Opening'),
-(6,3,6477,'Opening'),
-(6,3,6478,'Opening'),
-(6,3,6603,'Attack'),
-(6,3,7266,'Duel'),
-(6,3,7267,'Grovel'),
-(6,3,7355,'Stuck'),
-(6,3,8386,'Attacking'),
-(6,3,9077,'Leather'),
-(6,3,9078,'Cloth'),
-(6,3,9125,'Generic'),
-(6,3,13358,'Defensive State (DND)'),
-(6,3,20549,'War Stomp'),
-(6,3,20550,'Endurance'),
-(6,3,20551,'Nature Resistance'),
-(6,3,20552,'Cultivation'),
-(6,3,21651,'Opening'),
-(6,3,21652,'Closing'),
-(6,3,22027,'Remove Insignia'),
-(6,3,22810,'Opening - No Text'),
-(6,3,24949,'Defensive State 2 (DND)'),
-(6,3,34082,'Advantaged State (DND)'),
-(6,3,45927,'Summon Friend'),
-(6,3,61437,'Opening'),
-(6,6,81,'Dodge'),
-(6,6,196,'One-Handed Axes'),
-(6,6,197,'Two-Handed Axes'),
-(6,6,200,'Polearms'),
-(6,6,201,'One-Handed Swords'),
-(6,6,202,'Two-Handed Swords'),
-(6,6,203,'Unarmed'),
-(6,6,204,'Defense'),
-(6,6,522,'SPELLDEFENSE (DND)'),
-(6,6,669,'Language Orcish'),
-(6,6,670,'Language Taurahe'),
-(6,6,674,'Dual Wield'),
-(6,6,750,'Plate Mail'),
-(6,6,1843,'Disarm'),
-(6,6,2382,'Generic'),
-(6,6,2479,'Honorless Target'),
-(6,6,3050,'Detect'),
-(6,6,3127,'Parry'),
-(6,6,3275,'Linen Bandage'),
-(6,6,3276,'Heavy Linen Bandage'),
-(6,6,3277,'Wool Bandage'),
-(6,6,3278,'Heavy Wool Bandage'),
-(6,6,3365,'Opening'),
-(6,6,6233,'Closing'),
-(6,6,6246,'Closing'),
-(6,6,6247,'Opening'),
-(6,6,6477,'Opening'),
-(6,6,6478,'Opening'),
-(6,6,6603,'Attack'),
-(6,6,7266,'Duel'),
-(6,6,7267,'Grovel'),
-(6,6,7355,'Stuck'),
-(6,6,7928,'Silk Bandage'),
-(6,6,7929,'Heavy Silk Bandage'),
-(6,6,7934,'Anti-Venom'),
-(6,6,8386,'Attacking'),
-(6,6,8737,'Mail'),
-(6,6,9077,'Leather'),
-(6,6,9078,'Cloth'),
-(6,6,9125,'Generic'),
-(6,6,10840,'Mageweave Bandage'),
-(6,6,10841,'Heavy Mageweave Bandage'),
-(6,6,10846,'First Aid'),
-(6,6,18629,'Runecloth Bandage'),
-(6,6,18630,'Heavy Runecloth Bandage'),
-(6,6,20549,'War Stomp'),
-(6,6,20550,'Endurance'),
-(6,6,20551,'Nature Resistance'),
-(6,6,20552,'Cultivation'),
-(6,6,21651,'Opening'),
-(6,6,21652,'Closing'),
-(6,6,22027,'Remove Insignia'),
-(6,6,22810,'Opening - No Text'),
-(6,6,33391,'Journeyman Riding'),
-(6,6,45462,'Plague Strike'),
-(6,6,45477,'Icy Touch'),
-(6,6,45902,'Blood Strike'),
-(6,6,45903,'Offensive State (DND)'),
-(6,6,45927,'Summon Friend'),
-(6,6,47541,'Death Coil'),
-(6,6,48266,'Blood Presence'),
-(6,6,49410,'Forceful Deflection'),
-(6,6,49576,'Death Grip'),
-(6,6,52665,'Sigil'),
-(6,6,59879,'Blood Plague'),
-(6,6,59921,'Frost Fever'),
-(6,6,61437,'Opening'),
-(6,6,61455,'Runic Focus'),
-(6,7,81,'Dodge'),
-(6,7,107,'Block'),
-(6,7,198,'One-Handed Maces'),
-(6,7,203,'Unarmed'),
-(6,7,204,'Defense'),
-(6,7,227,'Staves'),
-(6,7,331,'Healing Wave'),
-(6,7,403,'Lightning Bolt'),
-(6,7,522,'SPELLDEFENSE (DND)'),
-(6,7,669,'Language Orcish'),
-(6,7,670,'Language Taurahe'),
-(6,7,1843,'Disarm'),
-(6,7,2382,'Generic'),
-(6,7,2479,'Honorless Target'),
-(6,7,3050,'Detect'),
-(6,7,3365,'Opening'),
-(6,7,6233,'Closing'),
-(6,7,6246,'Closing'),
-(6,7,6247,'Opening'),
-(6,7,6477,'Opening'),
-(6,7,6478,'Opening'),
-(6,7,6603,'Attack'),
-(6,7,7266,'Duel'),
-(6,7,7267,'Grovel'),
-(6,7,7355,'Stuck'),
-(6,7,8386,'Attacking'),
-(6,7,9077,'Leather'),
-(6,7,9078,'Cloth'),
-(6,7,9116,'Shield'),
-(6,7,9125,'Generic'),
-(6,7,20549,'War Stomp'),
-(6,7,20550,'Endurance'),
-(6,7,20551,'Nature Resistance'),
-(6,7,20552,'Cultivation'),
-(6,7,21651,'Opening'),
-(6,7,21652,'Closing'),
-(6,7,22027,'Remove Insignia'),
-(6,7,22810,'Opening - No Text'),
-(6,7,27763,'Totem'),
-(6,7,45927,'Summon Friend'),
-(6,7,61437,'Opening'),
-(6,11,81,'Dodge'),
-(6,11,198,'One-Handed Maces'),
-(6,11,203,'Unarmed'),
-(6,11,204,'Defense'),
-(6,11,227,'Staves'),
-(6,11,522,'SPELLDEFENSE (DND)'),
-(6,11,669,'Language Orcish'),
-(6,11,670,'Language Taurahe'),
-(6,11,1843,'Disarm'),
-(6,11,2382,'Generic'),
-(6,11,2479,'Honorless Target'),
-(6,11,3050,'Detect'),
-(6,11,3365,'Opening'),
-(6,11,5176,'Wrath'),
-(6,11,5185,'Healing Touch'),
-(6,11,6233,'Closing'),
-(6,11,6246,'Closing'),
-(6,11,6247,'Opening'),
-(6,11,6477,'Opening'),
-(6,11,6478,'Opening'),
-(6,11,6603,'Attack'),
-(6,11,7266,'Duel'),
-(6,11,7267,'Grovel'),
-(6,11,7355,'Stuck'),
-(6,11,8386,'Attacking'),
-(6,11,9077,'Leather'),
-(6,11,9078,'Cloth'),
-(6,11,9125,'Generic'),
-(6,11,20549,'War Stomp'),
-(6,11,20550,'Endurance'),
-(6,11,20551,'Nature Resistance'),
-(6,11,20552,'Cultivation'),
-(6,11,21651,'Opening'),
-(6,11,21652,'Closing'),
-(6,11,22027,'Remove Insignia'),
-(6,11,22810,'Opening - No Text'),
-(6,11,27764,'Fetish'),
-(6,11,45927,'Summon Friend'),
-(6,11,61437,'Opening'),
-(7,1,78,'Heroic Strike'),
-(7,1,81,'Dodge'),
-(7,1,107,'Block'),
-(7,1,198,'One-Handed Maces'),
-(7,1,201,'One-Handed Swords'),
-(7,1,203,'Unarmed'),
-(7,1,204,'Defense'),
-(7,1,522,'SPELLDEFENSE (DND)'),
-(7,1,668,'Language Common'),
-(7,1,1180,'Daggers'),
-(7,1,1843,'Disarm'),
-(7,1,2382,'Generic'),
-(7,1,2457,'Battle Stance'),
-(7,1,2479,'Honorless Target'),
-(7,1,3050,'Detect'),
-(7,1,3365,'Opening'),
-(7,1,5301,'Defensive State (DND)'),
-(7,1,6233,'Closing'),
-(7,1,6246,'Closing'),
-(7,1,6247,'Opening'),
-(7,1,6477,'Opening'),
-(7,1,6478,'Opening'),
-(7,1,6603,'Attack'),
-(7,1,7266,'Duel'),
-(7,1,7267,'Grovel'),
-(7,1,7340,'Language Gnomish'),
-(7,1,7355,'Stuck'),
-(7,1,8386,'Attacking'),
-(7,1,8737,'Mail'),
-(7,1,9077,'Leather'),
-(7,1,9078,'Cloth'),
-(7,1,9116,'Shield'),
-(7,1,9125,'Generic'),
-(7,1,20589,'Escape Artist'),
-(7,1,20591,'Expansive Mind'),
-(7,1,20592,'Arcane Resistance'),
-(7,1,20593,'Engineering Specialization'),
-(7,1,21651,'Opening'),
-(7,1,21652,'Closing'),
-(7,1,22027,'Remove Insignia'),
-(7,1,22810,'Opening - No Text'),
-(7,1,32215,'Victorious State'),
-(7,1,45927,'Summon Friend'),
-(7,1,61437,'Opening'),
-(7,4,81,'Dodge'),
-(7,4,203,'Unarmed'),
-(7,4,204,'Defense'),
-(7,4,522,'SPELLDEFENSE (DND)'),
-(7,4,668,'Language Common'),
-(7,4,1180,'Daggers'),
-(7,4,1752,'Sinister Strike'),
-(7,4,1843,'Disarm'),
-(7,4,2098,'Eviscerate'),
-(7,4,2382,'Generic'),
-(7,4,2479,'Honorless Target'),
-(7,4,2567,'Thrown'),
-(7,4,2764,'Throw'),
-(7,4,3050,'Detect'),
-(7,4,3365,'Opening'),
-(7,4,6233,'Closing'),
-(7,4,6246,'Closing'),
-(7,4,6247,'Opening'),
-(7,4,6477,'Opening'),
-(7,4,6478,'Opening'),
-(7,4,6603,'Attack'),
-(7,4,7266,'Duel'),
-(7,4,7267,'Grovel'),
-(7,4,7340,'Language Gnomish'),
-(7,4,7355,'Stuck'),
-(7,4,8386,'Attacking'),
-(7,4,9077,'Leather'),
-(7,4,9078,'Cloth'),
-(7,4,9125,'Generic'),
-(7,4,16092,'Defensive State (DND)'),
-(7,4,20589,'Escape Artist'),
-(7,4,20591,'Expansive Mind'),
-(7,4,20592,'Arcane Resistance'),
-(7,4,20593,'Engineering Specialization'),
-(7,4,21184,'Rogue Passive (DND)'),
-(7,4,21651,'Opening'),
-(7,4,21652,'Closing'),
-(7,4,22027,'Remove Insignia'),
-(7,4,22810,'Opening - No Text'),
-(7,4,45927,'Summon Friend'),
-(7,4,61437,'Opening'),
-(7,6,81,'Dodge'),
-(7,6,196,'One-Handed Axes'),
-(7,6,197,'Two-Handed Axes'),
-(7,6,200,'Polearms'),
-(7,6,201,'One-Handed Swords'),
-(7,6,202,'Two-Handed Swords'),
-(7,6,203,'Unarmed'),
-(7,6,204,'Defense'),
-(7,6,522,'SPELLDEFENSE (DND)'),
-(7,6,668,'Language Common'),
-(7,6,674,'Dual Wield'),
-(7,6,750,'Plate Mail'),
-(7,6,1843,'Disarm'),
-(7,6,2382,'Generic'),
-(7,6,2479,'Honorless Target'),
-(7,6,3050,'Detect'),
-(7,6,3127,'Parry'),
-(7,6,3275,'Linen Bandage'),
-(7,6,3276,'Heavy Linen Bandage'),
-(7,6,3277,'Wool Bandage'),
-(7,6,3278,'Heavy Wool Bandage'),
-(7,6,3365,'Opening'),
-(7,6,6233,'Closing'),
-(7,6,6246,'Closing'),
-(7,6,6247,'Opening'),
-(7,6,6477,'Opening'),
-(7,6,6478,'Opening'),
-(7,6,6603,'Attack'),
-(7,6,7266,'Duel'),
-(7,6,7267,'Grovel'),
-(7,6,7340,'Language Gnomish'),
-(7,6,7355,'Stuck'),
-(7,6,7928,'Silk Bandage'),
-(7,6,7929,'Heavy Silk Bandage'),
-(7,6,7934,'Anti-Venom'),
-(7,6,8386,'Attacking'),
-(7,6,8737,'Mail'),
-(7,6,9077,'Leather'),
-(7,6,9078,'Cloth'),
-(7,6,9125,'Generic'),
-(7,6,10840,'Mageweave Bandage'),
-(7,6,10841,'Heavy Mageweave Bandage'),
-(7,6,10846,'First Aid'),
-(7,6,18629,'Runecloth Bandage'),
-(7,6,18630,'Heavy Runecloth Bandage'),
-(7,6,20589,'Escape Artist'),
-(7,6,20591,'Expansive Mind'),
-(7,6,20592,'Arcane Resistance'),
-(7,6,20593,'Engineering Specialization'),
-(7,6,21651,'Opening'),
-(7,6,21652,'Closing'),
-(7,6,22027,'Remove Insignia'),
-(7,6,22810,'Opening - No Text'),
-(7,6,33391,'Journeyman Riding'),
-(7,6,45462,'Plague Strike'),
-(7,6,45477,'Icy Touch'),
-(7,6,45902,'Blood Strike'),
-(7,6,45903,'Offensive State (DND)'),
-(7,6,45927,'Summon Friend'),
-(7,6,47541,'Death Coil'),
-(7,6,48266,'Blood Presence'),
-(7,6,49410,'Forceful Deflection'),
-(7,6,49576,'Death Grip'),
-(7,6,52665,'Sigil'),
-(7,6,59879,'Blood Plague'),
-(7,6,59921,'Frost Fever'),
-(7,6,61437,'Opening'),
-(7,6,61455,'Runic Focus'),
-(7,8,81,'Dodge'),
-(7,8,133,'Fireball'),
-(7,8,168,'Frost Armor'),
-(7,8,203,'Unarmed'),
-(7,8,204,'Defense'),
-(7,8,227,'Staves'),
-(7,8,522,'SPELLDEFENSE (DND)'),
-(7,8,668,'Language Common'),
-(7,8,1843,'Disarm'),
-(7,8,2382,'Generic'),
-(7,8,2479,'Honorless Target'),
-(7,8,3050,'Detect'),
-(7,8,3365,'Opening'),
-(7,8,5009,'Wands'),
-(7,8,5019,'Shoot'),
-(7,8,6233,'Closing'),
-(7,8,6246,'Closing'),
-(7,8,6247,'Opening'),
-(7,8,6477,'Opening'),
-(7,8,6478,'Opening'),
-(7,8,6603,'Attack'),
-(7,8,7266,'Duel'),
-(7,8,7267,'Grovel'),
-(7,8,7340,'Language Gnomish'),
-(7,8,7355,'Stuck'),
-(7,8,8386,'Attacking'),
-(7,8,9078,'Cloth'),
-(7,8,9125,'Generic'),
-(7,8,20589,'Escape Artist'),
-(7,8,20591,'Expansive Mind'),
-(7,8,20592,'Arcane Resistance'),
-(7,8,20593,'Engineering Specialization'),
-(7,8,21651,'Opening'),
-(7,8,21652,'Closing'),
-(7,8,22027,'Remove Insignia'),
-(7,8,22810,'Opening - No Text'),
-(7,8,45927,'Summon Friend'),
-(7,8,61437,'Opening'),
-(7,9,81,'Dodge'),
-(7,9,203,'Unarmed'),
-(7,9,204,'Defense'),
-(7,9,522,'SPELLDEFENSE (DND)'),
-(7,9,668,'Language Common'),
-(7,9,686,'Shadow Bolt'),
-(7,9,687,'Demon Skin'),
-(7,9,1180,'Daggers'),
-(7,9,1843,'Disarm'),
-(7,9,2382,'Generic'),
-(7,9,2479,'Honorless Target'),
-(7,9,3050,'Detect'),
-(7,9,3365,'Opening'),
-(7,9,5009,'Wands'),
-(7,9,5019,'Shoot'),
-(7,9,6233,'Closing'),
-(7,9,6246,'Closing'),
-(7,9,6247,'Opening'),
-(7,9,6477,'Opening'),
-(7,9,6478,'Opening'),
-(7,9,6603,'Attack'),
-(7,9,7266,'Duel'),
-(7,9,7267,'Grovel'),
-(7,9,7340,'Language Gnomish'),
-(7,9,7355,'Stuck'),
-(7,9,8386,'Attacking'),
-(7,9,9078,'Cloth'),
-(7,9,9125,'Generic'),
-(7,9,20589,'Escape Artist'),
-(7,9,20591,'Expansive Mind'),
-(7,9,20592,'Arcane Resistance'),
-(7,9,20593,'Engineering Specialization'),
-(7,9,21651,'Opening'),
-(7,9,21652,'Closing'),
-(7,9,22027,'Remove Insignia'),
-(7,9,22810,'Opening - No Text'),
-(7,9,45927,'Summon Friend'),
-(7,9,61437,'Opening'),
-(8,1,78,'Heroic Strike'),
-(8,1,81,'Dodge'),
-(8,1,107,'Block'),
-(8,1,196,'One-Handed Axes'),
-(8,1,203,'Unarmed'),
-(8,1,204,'Defense'),
-(8,1,522,'SPELLDEFENSE (DND)'),
-(8,1,669,'Language Orcish'),
-(8,1,1180,'Daggers'),
-(8,1,1843,'Disarm'),
-(8,1,2382,'Generic'),
-(8,1,2457,'Battle Stance'),
-(8,1,2479,'Honorless Target'),
-(8,1,2567,'Thrown'),
-(8,1,2764,'Throw'),
-(8,1,3050,'Detect'),
-(8,1,3365,'Opening'),
-(8,1,5301,'Defensive State (DND)'),
-(8,1,6233,'Closing'),
-(8,1,6246,'Closing'),
-(8,1,6247,'Opening'),
-(8,1,6477,'Opening'),
-(8,1,6478,'Opening'),
-(8,1,6603,'Attack'),
-(8,1,7266,'Duel'),
-(8,1,7267,'Grovel'),
-(8,1,7341,'Language Troll'),
-(8,1,7355,'Stuck'),
-(8,1,8386,'Attacking'),
-(8,1,8737,'Mail'),
-(8,1,9077,'Leather'),
-(8,1,9078,'Cloth'),
-(8,1,9116,'Shield'),
-(8,1,9125,'Generic'),
-(8,1,20555,'Regeneration'),
-(8,1,20557,'Beast Slaying'),
-(8,1,20558,'Throwing Specialization'),
-(8,1,21651,'Opening'),
-(8,1,21652,'Closing'),
-(8,1,22027,'Remove Insignia'),
-(8,1,22810,'Opening - No Text'),
-(8,1,26290,'Bow Specialization'),
-(8,1,26297,'Berserking'),
-(8,1,32215,'Victorious State'),
-(8,1,45927,'Summon Friend'),
-(8,1,58943,'Da Voodoo Shuffle'),
-(8,1,61437,'Opening'),
-(8,3,75,'Auto Shot'),
-(8,3,81,'Dodge'),
-(8,3,196,'One-Handed Axes'),
-(8,3,203,'Unarmed'),
-(8,3,204,'Defense'),
-(8,3,264,'Bows'),
-(8,3,522,'SPELLDEFENSE (DND)'),
-(8,3,669,'Language Orcish'),
-(8,3,1843,'Disarm'),
-(8,3,2382,'Generic'),
-(8,3,2479,'Honorless Target'),
-(8,3,2973,'Raptor Strike'),
-(8,3,3050,'Detect'),
-(8,3,3365,'Opening'),
-(8,3,6233,'Closing'),
-(8,3,6246,'Closing'),
-(8,3,6247,'Opening'),
-(8,3,6477,'Opening'),
-(8,3,6478,'Opening'),
-(8,3,6603,'Attack'),
-(8,3,7266,'Duel'),
-(8,3,7267,'Grovel'),
-(8,3,7341,'Language Troll'),
-(8,3,7355,'Stuck'),
-(8,3,8386,'Attacking'),
-(8,3,9077,'Leather'),
-(8,3,9078,'Cloth'),
-(8,3,9125,'Generic'),
-(8,3,13358,'Defensive State (DND)'),
-(8,3,26297,'Berserking'),
-(8,3,20555,'Regeneration'),
-(8,3,20557,'Beast Slaying'),
-(8,3,20558,'Throwing Specialization'),
-(8,3,21651,'Opening'),
-(8,3,21652,'Closing'),
-(8,3,22027,'Remove Insignia'),
-(8,3,22810,'Opening - No Text'),
-(8,3,24949,'Defensive State 2 (DND)'),
-(8,3,26290,'Bow Specialization'),
-(8,3,34082,'Advantaged State (DND)'),
-(8,3,45927,'Summon Friend'),
-(8,3,58943,'Da Voodoo Shuffle'),
-(8,3,61437,'Opening'),
-(8,4,81,'Dodge'),
-(8,4,203,'Unarmed'),
-(8,4,204,'Defense'),
-(8,4,522,'SPELLDEFENSE (DND)'),
-(8,4,669,'Language Orcish'),
-(8,4,1180,'Daggers'),
-(8,4,1752,'Sinister Strike'),
-(8,4,1843,'Disarm'),
-(8,4,2098,'Eviscerate'),
-(8,4,2382,'Generic'),
-(8,4,2479,'Honorless Target'),
-(8,4,2567,'Thrown'),
-(8,4,2764,'Throw'),
-(8,4,3050,'Detect'),
-(8,4,3365,'Opening'),
-(8,4,6233,'Closing'),
-(8,4,6246,'Closing'),
-(8,4,6247,'Opening'),
-(8,4,6477,'Opening'),
-(8,4,6478,'Opening'),
-(8,4,6603,'Attack'),
-(8,4,7266,'Duel'),
-(8,4,7267,'Grovel'),
-(8,4,7341,'Language Troll'),
-(8,4,7355,'Stuck'),
-(8,4,8386,'Attacking'),
-(8,4,9077,'Leather'),
-(8,4,9078,'Cloth'),
-(8,4,9125,'Generic'),
-(8,4,16092,'Defensive State (DND)'),
-(8,4,20555,'Regeneration'),
-(8,4,20557,'Beast Slaying'),
-(8,4,20558,'Throwing Specialization'),
-(8,4,21184,'Rogue Passive (DND)'),
-(8,4,21651,'Opening'),
-(8,4,21652,'Closing'),
-(8,4,22027,'Remove Insignia'),
-(8,4,22810,'Opening - No Text'),
-(8,4,26290,'Bow Specialization'),
-(8,4,26297,'Berserking'),
-(8,4,45927,'Summon Friend'),
-(8,4,58943,'Da Voodoo Shuffle'),
-(8,4,61437,'Opening'),
-(8,5,81,'Dodge'),
-(8,5,198,'One-Handed Maces'),
-(8,5,203,'Unarmed'),
-(8,5,204,'Defense'),
-(8,5,522,'SPELLDEFENSE (DND)'),
-(8,5,585,'Smite'),
-(8,5,669,'Language Orcish'),
-(8,5,1843,'Disarm'),
-(8,5,2050,'Lesser Heal'),
-(8,5,2382,'Generic'),
-(8,5,2479,'Honorless Target'),
-(8,5,3050,'Detect'),
-(8,5,3365,'Opening'),
-(8,5,5009,'Wands'),
-(8,5,5019,'Shoot'),
-(8,5,6233,'Closing'),
-(8,5,6246,'Closing'),
-(8,5,6247,'Opening'),
-(8,5,6477,'Opening'),
-(8,5,6478,'Opening'),
-(8,5,6603,'Attack'),
-(8,5,7266,'Duel'),
-(8,5,7267,'Grovel'),
-(8,5,7341,'Language Troll'),
-(8,5,7355,'Stuck'),
-(8,5,8386,'Attacking'),
-(8,5,9078,'Cloth'),
-(8,5,9125,'Generic'),
-(8,5,26297,'Berserking'),
-(8,5,20555,'Regeneration'),
-(8,5,20557,'Beast Slaying'),
-(8,5,20558,'Throwing Specialization'),
-(8,5,21651,'Opening'),
-(8,5,21652,'Closing'),
-(8,5,22027,'Remove Insignia'),
-(8,5,22810,'Opening - No Text'),
-(8,5,26290,'Bow Specialization'),
-(8,5,45927,'Summon Friend'),
-(8,5,58943,'Da Voodoo Shuffle'),
-(8,5,61437,'Opening'),
-(8,6,81,'Dodge'),
-(8,6,196,'One-Handed Axes'),
-(8,6,197,'Two-Handed Axes'),
-(8,6,200,'Polearms'),
-(8,6,201,'One-Handed Swords'),
-(8,6,202,'Two-Handed Swords'),
-(8,6,203,'Unarmed'),
-(8,6,204,'Defense'),
-(8,6,522,'SPELLDEFENSE (DND)'),
-(8,6,669,'Language Orcish'),
-(8,6,674,'Dual Wield'),
-(8,6,750,'Plate Mail'),
-(8,6,1843,'Disarm'),
-(8,6,2382,'Generic'),
-(8,6,2479,'Honorless Target'),
-(8,6,3050,'Detect'),
-(8,6,3127,'Parry'),
-(8,6,3275,'Linen Bandage'),
-(8,6,3276,'Heavy Linen Bandage'),
-(8,6,3277,'Wool Bandage'),
-(8,6,3278,'Heavy Wool Bandage'),
-(8,6,3365,'Opening'),
-(8,6,6233,'Closing'),
-(8,6,6246,'Closing'),
-(8,6,6247,'Opening'),
-(8,6,6477,'Opening'),
-(8,6,6478,'Opening'),
-(8,6,6603,'Attack'),
-(8,6,7266,'Duel'),
-(8,6,7267,'Grovel'),
-(8,6,7341,'Language Troll'),
-(8,6,7355,'Stuck'),
-(8,6,7928,'Silk Bandage'),
-(8,6,7929,'Heavy Silk Bandage'),
-(8,6,7934,'Anti-Venom'),
-(8,6,8386,'Attacking'),
-(8,6,8737,'Mail'),
-(8,6,9077,'Leather'),
-(8,6,9078,'Cloth'),
-(8,6,9125,'Generic'),
-(8,6,10840,'Mageweave Bandage'),
-(8,6,10841,'Heavy Mageweave Bandage'),
-(8,6,10846,'First Aid'),
-(8,6,18629,'Runecloth Bandage'),
-(8,6,18630,'Heavy Runecloth Bandage'),
-(8,6,20555,'Regeneration'),
-(8,6,20557,'Beast Slaying'),
-(8,6,20558,'Throwing Specialization'),
-(8,6,21651,'Opening'),
-(8,6,21652,'Closing'),
-(8,6,22027,'Remove Insignia'),
-(8,6,22810,'Opening - No Text'),
-(8,6,26290,'Bow Specialization'),
-(8,6,33391,'Journeyman Riding'),
-(8,6,45462,'Plague Strike'),
-(8,6,45477,'Icy Touch'),
-(8,6,45902,'Blood Strike'),
-(8,6,45903,'Offensive State (DND)'),
-(8,6,45927,'Summon Friend'),
-(8,6,47541,'Death Coil'),
-(8,6,48266,'Blood Presence'),
-(8,6,49410,'Forceful Deflection'),
-(8,6,49576,'Death Grip'),
-(8,6,26297,'Berserking'),
-(8,6,52665,'Sigil'),
-(8,6,58943,'Da Voodoo Shuffle'),
-(8,6,59879,'Blood Plague'),
-(8,6,59921,'Frost Fever'),
-(8,6,61437,'Opening'),
-(8,6,61455,'Runic Focus'),
-(8,7,81,'Dodge'),
-(8,7,107,'Block'),
-(8,7,198,'One-Handed Maces'),
-(8,7,203,'Unarmed'),
-(8,7,204,'Defense'),
-(8,7,227,'Staves'),
-(8,7,331,'Healing Wave'),
-(8,7,403,'Lightning Bolt'),
-(8,7,522,'SPELLDEFENSE (DND)'),
-(8,7,669,'Language Orcish'),
-(8,7,1843,'Disarm'),
-(8,7,2382,'Generic'),
-(8,7,2479,'Honorless Target'),
-(8,7,3050,'Detect'),
-(8,7,3365,'Opening'),
-(8,7,6233,'Closing'),
-(8,7,6246,'Closing'),
-(8,7,6247,'Opening'),
-(8,7,6477,'Opening'),
-(8,7,6478,'Opening'),
-(8,7,6603,'Attack'),
-(8,7,7266,'Duel'),
-(8,7,7267,'Grovel'),
-(8,7,7341,'Language Troll'),
-(8,7,7355,'Stuck'),
-(8,7,8386,'Attacking'),
-(8,7,9077,'Leather'),
-(8,7,9078,'Cloth'),
-(8,7,9116,'Shield'),
-(8,7,9125,'Generic'),
-(8,7,26297,'Berserking'),
-(8,7,20555,'Regeneration'),
-(8,7,20557,'Beast Slaying'),
-(8,7,20558,'Throwing Specialization'),
-(8,7,21651,'Opening'),
-(8,7,21652,'Closing'),
-(8,7,22027,'Remove Insignia'),
-(8,7,22810,'Opening - No Text'),
-(8,7,26290,'Bow Specialization'),
-(8,7,27763,'Totem'),
-(8,7,45927,'Summon Friend'),
-(8,7,58943,'Da Voodoo Shuffle'),
-(8,7,61437,'Opening'),
-(8,8,81,'Dodge'),
-(8,8,133,'Fireball'),
-(8,8,168,'Frost Armor'),
-(8,8,203,'Unarmed'),
-(8,8,204,'Defense'),
-(8,8,227,'Staves'),
-(8,8,522,'SPELLDEFENSE (DND)'),
-(8,8,669,'Language Orcish'),
-(8,8,1843,'Disarm'),
-(8,8,2382,'Generic'),
-(8,8,2479,'Honorless Target'),
-(8,8,3050,'Detect'),
-(8,8,3365,'Opening'),
-(8,8,5009,'Wands'),
-(8,8,5019,'Shoot'),
-(8,8,6233,'Closing'),
-(8,8,6246,'Closing'),
-(8,8,6247,'Opening'),
-(8,8,6477,'Opening'),
-(8,8,6478,'Opening'),
-(8,8,6603,'Attack'),
-(8,8,7266,'Duel'),
-(8,8,7267,'Grovel'),
-(8,8,7341,'Language Troll'),
-(8,8,7355,'Stuck'),
-(8,8,8386,'Attacking'),
-(8,8,9078,'Cloth'),
-(8,8,9125,'Generic'),
-(8,8,26297,'Berserking'),
-(8,8,20555,'Regeneration'),
-(8,8,20557,'Beast Slaying'),
-(8,8,20558,'Throwing Specialization'),
-(8,8,21651,'Opening'),
-(8,8,21652,'Closing'),
-(8,8,22027,'Remove Insignia'),
-(8,8,22810,'Opening - No Text'),
-(8,8,26290,'Bow Specialization'),
-(8,8,45927,'Summon Friend'),
-(8,8,58943,'Da Voodoo Shuffle'),
-(8,8,61437,'Opening'),
-(10,2,81,'Dodge'),
-(10,2,107,'Block'),
-(10,2,201,'One-Handed Swords'),
-(10,2,202,'Two-Handed Swords'),
-(10,2,203,'Unarmed'),
-(10,2,204,'Defense'),
-(10,2,522,'SPELLDEFENSE (DND)'),
-(10,2,635,'Holy Light'),
-(10,2,669,'Language Orcish'),
-(10,2,813,'Language Thalassian'),
-(10,2,822,'Magic Resistance'),
-(10,2,2382,'Generic'),
-(10,2,2479,'Honorless Target'),
-(10,2,3050,'Detect'),
-(10,2,3365,'Opening'),
-(10,2,6233,'Closing'),
-(10,2,6246,'Closing'),
-(10,2,6247,'Opening'),
-(10,2,6477,'Opening'),
-(10,2,6478,'Opening'),
-(10,2,6603,'Attack'),
-(10,2,7266,'Duel'),
-(10,2,7267,'Grovel'),
-(10,2,7355,'Stuck'),
-(10,2,8386,'Attacking'),
-(10,2,8737,'Mail'),
-(10,2,9077,'Leather'),
-(10,2,9078,'Cloth'),
-(10,2,9116,'Shield'),
-(10,2,9125,'Generic'),
-(10,2,21084,'Seal of Righteousness'),
-(10,2,21651,'Opening'),
-(10,2,21652,'Closing'),
-(10,2,22027,'Remove Insignia'),
-(10,2,22810,'Opening - No Text'),
-(10,2,27762,'Libram'),
-(10,2,28730,'Arcane Torrent'),
-(10,2,28877,'Arcane Affinity'),
-(10,3,75,'Auto Shot'),
-(10,3,81,'Dodge'),
-(10,3,203,'Unarmed'),
-(10,3,204,'Defense'),
-(10,3,264,'Bows'),
-(10,3,522,'SPELLDEFENSE (DND)'),
-(10,3,669,'Language Orcish'),
-(10,3,813,'Language Thalassian'),
-(10,3,822,'Magic Resistance'),
-(10,3,1180,'Daggers'),
-(10,3,2382,'Generic'),
-(10,3,2479,'Honorless Target'),
-(10,3,2973,'Raptor Strike'),
-(10,3,3050,'Detect'),
-(10,3,3365,'Opening'),
-(10,3,6233,'Closing'),
-(10,3,6246,'Closing'),
-(10,3,6247,'Opening'),
-(10,3,6477,'Opening'),
-(10,3,6478,'Opening'),
-(10,3,6603,'Attack'),
-(10,3,7266,'Duel'),
-(10,3,7267,'Grovel'),
-(10,3,7355,'Stuck'),
-(10,3,8386,'Attacking'),
-(10,3,9077,'Leather'),
-(10,3,9078,'Cloth'),
-(10,3,9125,'Generic'),
-(10,3,13358,'Defensive State (DND)'),
-(10,3,21651,'Opening'),
-(10,3,21652,'Closing'),
-(10,3,22027,'Remove Insignia'),
-(10,3,22810,'Opening - No Text'),
-(10,3,24949,'Defensive State 2 (DND)'),
-(10,3,28730,'Arcane Torrent'),
-(10,3,28877,'Arcane Affinity'),
-(10,3,34082,'Advantaged State (DND)'),
-(10,4,81,'Dodge'),
-(10,4,203,'Unarmed'),
-(10,4,204,'Defense'),
-(10,4,522,'SPELLDEFENSE (DND)'),
-(10,4,669,'Language Orcish'),
-(10,4,813,'Language Thalassian'),
-(10,4,822,'Magic Resistance'),
-(10,4,1180,'Daggers'),
-(10,4,1752,'Sinister Strike'),
-(10,4,2098,'Eviscerate'),
-(10,4,2382,'Generic'),
-(10,4,2479,'Honorless Target'),
-(10,4,2567,'Thrown'),
-(10,4,2764,'Throw'),
-(10,4,3050,'Detect'),
-(10,4,3365,'Opening'),
-(10,4,6233,'Closing'),
-(10,4,6246,'Closing'),
-(10,4,6247,'Opening'),
-(10,4,6477,'Opening'),
-(10,4,6478,'Opening'),
-(10,4,6603,'Attack'),
-(10,4,7266,'Duel'),
-(10,4,7267,'Grovel'),
-(10,4,7355,'Stuck'),
-(10,4,8386,'Attacking'),
-(10,4,9077,'Leather'),
-(10,4,9078,'Cloth'),
-(10,4,9125,'Generic'),
-(10,4,16092,'Defensive State (DND)'),
-(10,4,21184,'Rogue Passive (DND)'),
-(10,4,21651,'Opening'),
-(10,4,21652,'Closing'),
-(10,4,22027,'Remove Insignia'),
-(10,4,22810,'Opening - No Text'),
-(10,4,25046,'Arcane Torrent'),
-(10,4,28877,'Arcane Affinity'),
-(10,5,81,'Dodge'),
-(10,5,198,'One-Handed Maces'),
-(10,5,203,'Unarmed'),
-(10,5,204,'Defense'),
-(10,5,522,'SPELLDEFENSE (DND)'),
-(10,5,585,'Smite'),
-(10,5,669,'Language Orcish'),
-(10,5,813,'Language Thalassian'),
-(10,5,822,'Magic Resistance'),
-(10,5,2050,'Lesser Heal'),
-(10,5,2382,'Generic'),
-(10,5,2479,'Honorless Target'),
-(10,5,3050,'Detect'),
-(10,5,3365,'Opening'),
-(10,5,5009,'Wands'),
-(10,5,5019,'Shoot'),
-(10,5,6233,'Closing'),
-(10,5,6246,'Closing'),
-(10,5,6247,'Opening'),
-(10,5,6477,'Opening'),
-(10,5,6478,'Opening'),
-(10,5,6603,'Attack'),
-(10,5,7266,'Duel'),
-(10,5,7267,'Grovel'),
-(10,5,7355,'Stuck'),
-(10,5,8386,'Attacking'),
-(10,5,9078,'Cloth'),
-(10,5,9125,'Generic'),
-(10,5,21651,'Opening'),
-(10,5,21652,'Closing'),
-(10,5,22027,'Remove Insignia'),
-(10,5,22810,'Opening - No Text'),
-(10,5,28730,'Arcane Torrent'),
-(10,5,28877,'Arcane Affinity'),
-(10,6,81,'Dodge'),
-(10,6,196,'One-Handed Axes'),
-(10,6,197,'Two-Handed Axes'),
-(10,6,200,'Polearms'),
-(10,6,201,'One-Handed Swords'),
-(10,6,202,'Two-Handed Swords'),
-(10,6,203,'Unarmed'),
-(10,6,204,'Defense'),
-(10,6,522,'SPELLDEFENSE (DND)'),
-(10,6,669,'Language Orcish'),
-(10,6,674,'Dual Wield'),
-(10,6,750,'Plate Mail'),
-(10,6,813,'Language Thalassian'),
-(10,6,822,'Magic Resistance'),
-(10,6,1843,'Disarm'),
-(10,6,2382,'Generic'),
-(10,6,2479,'Honorless Target'),
-(10,6,3050,'Detect'),
-(10,6,3127,'Parry'),
-(10,6,3275,'Linen Bandage'),
-(10,6,3276,'Heavy Linen Bandage'),
-(10,6,3277,'Wool Bandage'),
-(10,6,3278,'Heavy Wool Bandage'),
-(10,6,3365,'Opening'),
-(10,6,6233,'Closing'),
-(10,6,6246,'Closing'),
-(10,6,6247,'Opening'),
-(10,6,6477,'Opening'),
-(10,6,6478,'Opening'),
-(10,6,6603,'Attack'),
-(10,6,7266,'Duel'),
-(10,6,7267,'Grovel'),
-(10,6,7355,'Stuck'),
-(10,6,7928,'Silk Bandage'),
-(10,6,7929,'Heavy Silk Bandage'),
-(10,6,7934,'Anti-Venom'),
-(10,6,8386,'Attacking'),
-(10,6,8737,'Mail'),
-(10,6,9077,'Leather'),
-(10,6,9078,'Cloth'),
-(10,6,9125,'Generic'),
-(10,6,10840,'Mageweave Bandage'),
-(10,6,10841,'Heavy Mageweave Bandage'),
-(10,6,10846,'First Aid'),
-(10,6,18629,'Runecloth Bandage'),
-(10,6,18630,'Heavy Runecloth Bandage'),
-(10,6,21651,'Opening'),
-(10,6,21652,'Closing'),
-(10,6,22027,'Remove Insignia'),
-(10,6,22810,'Opening - No Text'),
-(10,6,28877,'Arcane Affinity'),
-(10,6,33391,'Journeyman Riding'),
-(10,6,45462,'Plague Strike'),
-(10,6,45477,'Icy Touch'),
-(10,6,45902,'Blood Strike'),
-(10,6,45903,'Offensive State (DND)'),
-(10,6,45927,'Summon Friend'),
-(10,6,47541,'Death Coil'),
-(10,6,48266,'Blood Presence'),
-(10,6,49410,'Forceful Deflection'),
-(10,6,49576,'Death Grip'),
-(10,6,50613,'Arcane Torrent'),
-(10,6,52665,'Sigil'),
-(10,6,59879,'Blood Plague'),
-(10,6,59921,'Frost Fever'),
-(10,6,61437,'Opening'),
-(10,6,61455,'Runic Focus'),
-(10,8,81,'Dodge'),
-(10,8,133,'Fireball'),
-(10,8,168,'Frost Armor'),
-(10,8,203,'Unarmed'),
-(10,8,204,'Defense'),
-(10,8,227,'Staves'),
-(10,8,522,'SPELLDEFENSE (DND)'),
-(10,8,669,'Language Orcish'),
-(10,8,813,'Language Thalassian'),
-(10,8,822,'Magic Resistance'),
-(10,8,2382,'Generic'),
-(10,8,2479,'Honorless Target'),
-(10,8,3050,'Detect'),
-(10,8,3365,'Opening'),
-(10,8,5009,'Wands'),
-(10,8,5019,'Shoot'),
-(10,8,6233,'Closing'),
-(10,8,6246,'Closing'),
-(10,8,6247,'Opening'),
-(10,8,6477,'Opening'),
-(10,8,6478,'Opening'),
-(10,8,6603,'Attack'),
-(10,8,7266,'Duel'),
-(10,8,7267,'Grovel'),
-(10,8,7355,'Stuck'),
-(10,8,8386,'Attacking'),
-(10,8,9078,'Cloth'),
-(10,8,9125,'Generic'),
-(10,8,21651,'Opening'),
-(10,8,21652,'Closing'),
-(10,8,22027,'Remove Insignia'),
-(10,8,22810,'Opening - No Text'),
-(10,8,28730,'Arcane Torrent'),
-(10,8,28877,'Arcane Affinity'),
-(10,9,81,'Dodge'),
-(10,9,203,'Unarmed'),
-(10,9,204,'Defense'),
-(10,9,522,'SPELLDEFENSE (DND)'),
-(10,9,669,'Language Orcish'),
-(10,9,686,'Shadow Bolt'),
-(10,9,687,'Demon Skin'),
-(10,9,813,'Language Thalassian'),
-(10,9,822,'Magic Resistance'),
-(10,9,1180,'Daggers'),
-(10,9,2382,'Generic'),
-(10,9,2479,'Honorless Target'),
-(10,9,3050,'Detect'),
-(10,9,3365,'Opening'),
-(10,9,5009,'Wands'),
-(10,9,5019,'Shoot'),
-(10,9,6233,'Closing'),
-(10,9,6246,'Closing'),
-(10,9,6247,'Opening'),
-(10,9,6477,'Opening'),
-(10,9,6478,'Opening'),
-(10,9,6603,'Attack'),
-(10,9,7266,'Duel'),
-(10,9,7267,'Grovel'),
-(10,9,7355,'Stuck'),
-(10,9,8386,'Attacking'),
-(10,9,9078,'Cloth'),
-(10,9,9125,'Generic'),
-(10,9,21651,'Opening'),
-(10,9,21652,'Closing'),
-(10,9,22027,'Remove Insignia'),
-(10,9,22810,'Opening - No Text'),
-(10,9,28730,'Arcane Torrent'),
-(10,9,28877,'Arcane Affinity'),
-(11,1,78,'Heroic Strike'),
-(11,1,81,'Dodge'),
-(11,1,107,'Block'),
-(11,1,198,'One-Handed Maces'),
-(11,1,201,'One-Handed Swords'),
-(11,1,203,'Unarmed'),
-(11,1,204,'Defense'),
-(11,1,522,'SPELLDEFENSE (DND)'),
-(11,1,668,'Language Common'),
-(11,1,1843,'Disarm'),
-(11,1,2382,'Generic'),
-(11,1,2457,'Battle Stance'),
-(11,1,2479,'Honorless Target'),
-(11,1,3050,'Detect'),
-(11,1,3365,'Opening'),
-(11,1,5301,'Defensive State (DND)'),
-(11,1,6233,'Closing'),
-(11,1,6246,'Closing'),
-(11,1,6247,'Opening'),
-(11,1,6477,'Opening'),
-(11,1,6478,'Opening'),
-(11,1,6562,'Heroic Presence'),
-(11,1,6603,'Attack'),
-(11,1,7266,'Duel'),
-(11,1,7267,'Grovel'),
-(11,1,7355,'Stuck'),
-(11,1,8386,'Attacking'),
-(11,1,8737,'Mail'),
-(11,1,9077,'Leather'),
-(11,1,9078,'Cloth'),
-(11,1,9116,'Shield'),
-(11,1,9125,'Generic'),
-(11,1,21651,'Opening'),
-(11,1,21652,'Closing'),
-(11,1,22027,'Remove Insignia'),
-(11,1,22810,'Opening - No Text'),
-(11,1,28875,'Gemcutting'),
-(11,1,28880,'Gift of the Naaru'),
-(11,1,29932,'Language Draenei'),
-(11,1,32215,'Victorious State'),
-(11,1,45927,'Summon Friend'),
-(11,1,59221,'Shadow Resistance'),
-(11,1,61437,'Opening'),
-(11,2,81,'Dodge'),
-(11,2,107,'Block'),
-(11,2,198,'One-Handed Maces'),
-(11,2,199,'Two-Handed Maces'),
-(11,2,203,'Unarmed'),
-(11,2,204,'Defense'),
-(11,2,522,'SPELLDEFENSE (DND)'),
-(11,2,635,'Holy Light'),
-(11,2,668,'Language Common'),
-(11,2,1843,'Disarm'),
-(11,2,2382,'Generic'),
-(11,2,2479,'Honorless Target'),
-(11,2,3050,'Detect'),
-(11,2,3365,'Opening'),
-(11,2,6233,'Closing'),
-(11,2,6246,'Closing'),
-(11,2,6247,'Opening'),
-(11,2,6477,'Opening'),
-(11,2,6478,'Opening'),
-(11,2,6562,'Heroic Presence'),
-(11,2,6603,'Attack'),
-(11,2,7266,'Duel'),
-(11,2,7267,'Grovel'),
-(11,2,7355,'Stuck'),
-(11,2,8386,'Attacking'),
-(11,2,8737,'Mail'),
-(11,2,9077,'Leather'),
-(11,2,9078,'Cloth'),
-(11,2,9116,'Shield'),
-(11,2,9125,'Generic'),
-(11,2,21084,'Seal of Righteousness'),
-(11,2,21651,'Opening'),
-(11,2,21652,'Closing'),
-(11,2,22027,'Remove Insignia'),
-(11,2,22810,'Opening - No Text'),
-(11,2,27762,'Libram'),
-(11,2,28875,'Gemcutting'),
-(11,2,29932,'Language Draenei'),
-(11,2,45927,'Summon Friend'),
-(11,2,59221,'Shadow Resistance'),
-(11,2,59542,'Gift of the Naaru'),
-(11,2,61437,'Opening'),
-(11,3,75,'Auto Shot'),
-(11,3,81,'Dodge'),
-(11,3,201,'One-Handed Swords'),
-(11,3,203,'Unarmed'),
-(11,3,204,'Defense'),
-(11,3,522,'SPELLDEFENSE (DND)'),
-(11,3,668,'Language Common'),
-(11,3,1843,'Disarm'),
-(11,3,2382,'Generic'),
-(11,3,2479,'Honorless Target'),
-(11,3,2973,'Raptor Strike'),
-(11,3,3050,'Detect'),
-(11,3,3365,'Opening'),
-(11,3,5011,'Crossbows'),
-(11,3,6233,'Closing'),
-(11,3,6246,'Closing'),
-(11,3,6247,'Opening'),
-(11,3,6477,'Opening'),
-(11,3,6478,'Opening'),
-(11,3,6562,'Heroic Presence'),
-(11,3,6603,'Attack'),
-(11,3,7266,'Duel'),
-(11,3,7267,'Grovel'),
-(11,3,7355,'Stuck'),
-(11,3,8386,'Attacking'),
-(11,3,9077,'Leather'),
-(11,3,9078,'Cloth'),
-(11,3,9125,'Generic'),
-(11,3,13358,'Defensive State (DND)'),
-(11,3,21651,'Opening'),
-(11,3,21652,'Closing'),
-(11,3,22027,'Remove Insignia'),
-(11,3,22810,'Opening - No Text'),
-(11,3,24949,'Defensive State 2 (DND)'),
-(11,3,28875,'Gemcutting'),
-(11,3,29932,'Language Draenei'),
-(11,3,34082,'Advantaged State (DND)'),
-(11,3,45927,'Summon Friend'),
-(11,3,59221,'Shadow Resistance'),
-(11,3,59543,'Gift of the Naaru'),
-(11,3,61437,'Opening'),
-(11,5,81,'Dodge'),
-(11,5,198,'One-Handed Maces'),
-(11,5,203,'Unarmed'),
-(11,5,204,'Defense'),
-(11,5,522,'SPELLDEFENSE (DND)'),
-(11,5,585,'Smite'),
-(11,5,668,'Language Common'),
-(11,5,1843,'Disarm'),
-(11,5,2050,'Lesser Heal'),
-(11,5,2382,'Generic'),
-(11,5,2479,'Honorless Target'),
-(11,5,3050,'Detect'),
-(11,5,3365,'Opening'),
-(11,5,5009,'Wands'),
-(11,5,5019,'Shoot'),
-(11,5,6233,'Closing'),
-(11,5,6246,'Closing'),
-(11,5,6247,'Opening'),
-(11,5,6477,'Opening'),
-(11,5,6478,'Opening'),
-(11,5,6603,'Attack'),
-(11,5,7266,'Duel'),
-(11,5,7267,'Grovel'),
-(11,5,7355,'Stuck'),
-(11,5,8386,'Attacking'),
-(11,5,9078,'Cloth'),
-(11,5,9125,'Generic'),
-(11,5,21651,'Opening'),
-(11,5,21652,'Closing'),
-(11,5,22027,'Remove Insignia'),
-(11,5,22810,'Opening - No Text'),
-(11,5,28875,'Gemcutting'),
-(11,5,28878,'Inspiring Presence'),
-(11,5,29932,'Language Draenei'),
-(11,5,45927,'Summon Friend'),
-(11,5,59221,'Shadow Resistance'),
-(11,5,59544,'Gift of the Naaru'),
-(11,5,61437,'Opening'),
-(11,6,81,'Dodge'),
-(11,6,196,'One-Handed Axes'),
-(11,6,197,'Two-Handed Axes'),
-(11,6,200,'Polearms'),
-(11,6,201,'One-Handed Swords'),
-(11,6,202,'Two-Handed Swords'),
-(11,6,203,'Unarmed'),
-(11,6,204,'Defense'),
-(11,6,522,'SPELLDEFENSE (DND)'),
-(11,6,668,'Language Common'),
-(11,6,674,'Dual Wield'),
-(11,6,750,'Plate Mail'),
-(11,6,1843,'Disarm'),
-(11,6,2382,'Generic'),
-(11,6,2479,'Honorless Target'),
-(11,6,3050,'Detect'),
-(11,6,3127,'Parry'),
-(11,6,3275,'Linen Bandage'),
-(11,6,3276,'Heavy Linen Bandage'),
-(11,6,3277,'Wool Bandage'),
-(11,6,3278,'Heavy Wool Bandage'),
-(11,6,3365,'Opening'),
-(11,6,6233,'Closing'),
-(11,6,6246,'Closing'),
-(11,6,6247,'Opening'),
-(11,6,6477,'Opening'),
-(11,6,6478,'Opening'),
-(11,6,6562,'Heroic Presence'),
-(11,6,6603,'Attack'),
-(11,6,7266,'Duel'),
-(11,6,7267,'Grovel'),
-(11,6,7355,'Stuck'),
-(11,6,7928,'Silk Bandage'),
-(11,6,7929,'Heavy Silk Bandage'),
-(11,6,7934,'Anti-Venom'),
-(11,6,8386,'Attacking'),
-(11,6,8737,'Mail'),
-(11,6,9077,'Leather'),
-(11,6,9078,'Cloth'),
-(11,6,9125,'Generic'),
-(11,6,10840,'Mageweave Bandage'),
-(11,6,10841,'Heavy Mageweave Bandage'),
-(11,6,10846,'First Aid'),
-(11,6,18629,'Runecloth Bandage'),
-(11,6,18630,'Heavy Runecloth Bandage'),
-(11,6,21651,'Opening'),
-(11,6,21652,'Closing'),
-(11,6,22027,'Remove Insignia'),
-(11,6,22810,'Opening - No Text'),
-(11,6,28875,'Gemcutting'),
-(11,6,29932,'Language Draenei'),
-(11,6,33391,'Journeyman Riding'),
-(11,6,45462,'Plague Strike'),
-(11,6,45477,'Icy Touch'),
-(11,6,45902,'Blood Strike'),
-(11,6,45903,'Offensive State (DND)'),
-(11,6,45927,'Summon Friend'),
-(11,6,47541,'Death Coil'),
-(11,6,48266,'Blood Presence'),
-(11,6,49410,'Forceful Deflection'),
-(11,6,49576,'Death Grip'),
-(11,6,52665,'Sigil'),
-(11,6,59221,'Shadow Resistance'),
-(11,6,59539,'Shadow Resistance'),
-(11,6,59545,'Gift of the Naaru'),
-(11,6,59879,'Blood Plague'),
-(11,6,59921,'Frost Fever'),
-(11,6,61437,'Opening'),
-(11,6,61455,'Runic Focus'),
-(11,7,81,'Dodge'),
-(11,7,107,'Block'),
-(11,7,198,'One-Handed Maces'),
-(11,7,203,'Unarmed'),
-(11,7,204,'Defense'),
-(11,7,227,'Staves'),
-(11,7,331,'Healing Wave'),
-(11,7,403,'Lightning Bolt'),
-(11,7,522,'SPELLDEFENSE (DND)'),
-(11,7,668,'Language Common'),
-(11,7,1843,'Disarm'),
-(11,7,2382,'Generic'),
-(11,7,2479,'Honorless Target'),
-(11,7,3050,'Detect'),
-(11,7,3365,'Opening'),
-(11,7,6233,'Closing'),
-(11,7,6246,'Closing'),
-(11,7,6247,'Opening'),
-(11,7,6477,'Opening'),
-(11,7,6478,'Opening'),
-(11,7,6603,'Attack'),
-(11,7,7266,'Duel'),
-(11,7,7267,'Grovel'),
-(11,7,7355,'Stuck'),
-(11,7,8386,'Attacking'),
-(11,7,9077,'Leather'),
-(11,7,9078,'Cloth'),
-(11,7,9116,'Shield'),
-(11,7,9125,'Generic'),
-(11,7,21651,'Opening'),
-(11,7,21652,'Closing'),
-(11,7,22027,'Remove Insignia'),
-(11,7,22810,'Opening - No Text'),
-(11,7,27763,'Totem'),
-(11,7,28875,'Gemcutting'),
-(11,7,28878,'Inspiring Presence'),
-(11,7,29932,'Language Draenei'),
-(11,7,45927,'Summon Friend'),
-(11,7,59221,'Shadow Resistance'),
-(11,7,59547,'Gift of the Naaru'),
-(11,7,61437,'Opening'),
-(11,8,81,'Dodge'),
-(11,8,133,'Fireball'),
-(11,8,168,'Frost Armor'),
-(11,8,203,'Unarmed'),
-(11,8,204,'Defense'),
-(11,8,227,'Staves'),
-(11,8,522,'SPELLDEFENSE (DND)'),
-(11,8,668,'Language Common'),
-(11,8,1843,'Disarm'),
-(11,8,2382,'Generic'),
-(11,8,2479,'Honorless Target'),
-(11,8,3050,'Detect'),
-(11,8,3365,'Opening'),
-(11,8,5009,'Wands'),
-(11,8,5019,'Shoot'),
-(11,8,6233,'Closing'),
-(11,8,6246,'Closing'),
-(11,8,6247,'Opening'),
-(11,8,6477,'Opening'),
-(11,8,6478,'Opening'),
-(11,8,6603,'Attack'),
-(11,8,7266,'Duel'),
-(11,8,7267,'Grovel'),
-(11,8,7355,'Stuck'),
-(11,8,8386,'Attacking'),
-(11,8,9078,'Cloth'),
-(11,8,9125,'Generic'),
-(11,8,21651,'Opening'),
-(11,8,21652,'Closing'),
-(11,8,22027,'Remove Insignia'),
-(11,8,22810,'Opening - No Text'),
-(11,8,28875,'Gemcutting'),
-(11,8,28878,'Inspiring Presence'),
-(11,8,29932,'Language Draenei'),
-(11,8,45927,'Summon Friend'),
-(11,8,59221,'Shadow Resistance'),
-(11,8,59548,'Gift of the Naaru'),
-(11,8,61437,'Opening'),
-(7,9,58284,'Chaos Bolt Passive'),
-(10,9,58284,'Chaos Bolt Passive'),
-(11,2,60091,'Judgement Anti-Parry/Dodge Passive'),
-(10,2,60091,'Judgement Anti-Parry/Dodge Passive'),
-(3,2,60091,'Judgement Anti-Parry/Dodge Passive'),
-(1,2,60091,'Judgement Anti-Parry/Dodge Passive'),
-(0,6,56816,'Rune Strike'),
-(1,1,202,'Two-Handed Swords'),
-(4,1,202,'Two-Handed Swords'),
-(7,1,202,'Two-Handed Swords'),
-(8,1,202,'Two-Handed Swords'),
-(11,1,202,'Two-Handed Swords'),
-(2,3,197,'Two-Handed Axes'),
-(3,3,197,'Two-Handed Axes'),
-(4,3,197,'Two-Handed Axes'),
-(6,3,197,'Two-Handed Axes'),
-(8,3,197,'Two-Handed Axes'),
-(10,3,197,'Two-Handed Axes'),
-(11,3,197,'Two-Handed Axes'),
-(1,4,674,'Dual Wield'),
-(2,4,674,'Dual Wield'),
-(3,4,674,'Dual Wield'),
-(4,4,674,'Dual Wield'),
-(5,4,674,'Dual Wield'),
-(7,4,674,'Dual Wield'),
-(8,4,674,'Dual Wield'),
-(10,4,674,'Dual Wield'),
-(1,5,227,'Staves'),
-(3,5,227,'Staves'),
-(4,5,227,'Staves'),
-(5,5,227,'Staves'),
-(8,5,227,'Staves'),
-(10,5,227,'Staves'),
-(11,5,227,'Staves'),
-(1,9,227,'Staves'),
-(2,9,227,'Staves'),
-(5,9,227,'Staves'),
-(7,9,227,'Staves'),
-(10,9,227,'Staves'),
-(0,7,75461,'Flame Shock Passive'),
-(0,9,75445,'Demonic Immolate');
-/*!40000 ALTER TABLE `playercreateinfo_spell` ENABLE KEYS */;
-UNLOCK TABLES;
-
---
--- Table structure for table `playercreateinfo_spell_custom`
---
-
-DROP TABLE IF EXISTS `playercreateinfo_spell_custom`;
-/*!40101 SET @saved_cs_client = @@character_set_client */;
-/*!40101 SET character_set_client = utf8 */;
-CREATE TABLE `playercreateinfo_spell_custom` (
- `race` tinyint(3) unsigned NOT NULL DEFAULT '0',
- `class` tinyint(3) unsigned NOT NULL DEFAULT '0',
- `Spell` mediumint(8) unsigned NOT NULL DEFAULT '0',
- `Note` varchar(255) DEFAULT NULL,
- `Active` tinyint(3) unsigned NOT NULL DEFAULT '1',
- PRIMARY KEY (`race`,`class`,`Spell`)
-) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-/*!40101 SET character_set_client = @saved_cs_client */;
-
---
--- Dumping data for table `playercreateinfo_spell_custom`
---
-
-LOCK TABLES `playercreateinfo_spell_custom` WRITE;
-/*!40000 ALTER TABLE `playercreateinfo_spell_custom` DISABLE KEYS */;
-/*!40000 ALTER TABLE `playercreateinfo_spell_custom` ENABLE KEYS */;
-UNLOCK TABLES;
-
---
--- Table structure for table `points_of_interest`
---
-
-DROP TABLE IF EXISTS `points_of_interest`;
-/*!40101 SET @saved_cs_client = @@character_set_client */;
-/*!40101 SET character_set_client = utf8 */;
-CREATE TABLE `points_of_interest` (
- `entry` mediumint(8) unsigned NOT NULL DEFAULT '0',
- `x` float NOT NULL DEFAULT '0',
- `y` float NOT NULL DEFAULT '0',
- `icon` mediumint(8) unsigned NOT NULL DEFAULT '0',
- `flags` mediumint(8) unsigned NOT NULL DEFAULT '0',
- `data` mediumint(8) unsigned NOT NULL DEFAULT '0',
- `icon_name` text NOT NULL,
- PRIMARY KEY (`entry`)
-) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-/*!40101 SET character_set_client = @saved_cs_client */;
-
---
--- Dumping data for table `points_of_interest`
---
-
-LOCK TABLES `points_of_interest` WRITE;
-/*!40000 ALTER TABLE `points_of_interest` DISABLE KEYS */;
-/*!40000 ALTER TABLE `points_of_interest` ENABLE KEYS */;
-UNLOCK TABLES;
-
---
--- Table structure for table `pool_creature`
---
-
-DROP TABLE IF EXISTS `pool_creature`;
-/*!40101 SET @saved_cs_client = @@character_set_client */;
-/*!40101 SET character_set_client = utf8 */;
-CREATE TABLE `pool_creature` (
- `guid` int(10) unsigned NOT NULL DEFAULT '0',
- `pool_entry` mediumint(8) unsigned NOT NULL DEFAULT '0',
- `chance` float unsigned NOT NULL DEFAULT '0',
- `description` varchar(255) DEFAULT NULL,
- PRIMARY KEY (`guid`),
- KEY `idx_guid` (`guid`)
-) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-/*!40101 SET character_set_client = @saved_cs_client */;
-
---
--- Dumping data for table `pool_creature`
---
-
-LOCK TABLES `pool_creature` WRITE;
-/*!40000 ALTER TABLE `pool_creature` DISABLE KEYS */;
-/*!40000 ALTER TABLE `pool_creature` ENABLE KEYS */;
-UNLOCK TABLES;
-
---
--- Table structure for table `pool_gameobject`
---
-
-DROP TABLE IF EXISTS `pool_gameobject`;
-/*!40101 SET @saved_cs_client = @@character_set_client */;
-/*!40101 SET character_set_client = utf8 */;
-CREATE TABLE `pool_gameobject` (
- `guid` int(10) unsigned NOT NULL DEFAULT '0',
- `pool_entry` mediumint(8) unsigned NOT NULL DEFAULT '0',
- `chance` float unsigned NOT NULL DEFAULT '0',
- `description` varchar(255) DEFAULT NULL,
- PRIMARY KEY (`guid`),
- KEY `idx_guid` (`guid`)
-) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-/*!40101 SET character_set_client = @saved_cs_client */;
-
---
--- Dumping data for table `pool_gameobject`
---
-
-LOCK TABLES `pool_gameobject` WRITE;
-/*!40000 ALTER TABLE `pool_gameobject` DISABLE KEYS */;
-/*!40000 ALTER TABLE `pool_gameobject` ENABLE KEYS */;
-UNLOCK TABLES;
-
---
--- Table structure for table `pool_pool`
---
-
-DROP TABLE IF EXISTS `pool_pool`;
-/*!40101 SET @saved_cs_client = @@character_set_client */;
-/*!40101 SET character_set_client = utf8 */;
-CREATE TABLE `pool_pool` (
- `pool_id` mediumint(8) unsigned NOT NULL DEFAULT '0',
- `mother_pool` mediumint(8) unsigned NOT NULL DEFAULT '0',
- `chance` float NOT NULL DEFAULT '0',
- `description` varchar(255) DEFAULT NULL,
- PRIMARY KEY (`pool_id`)
-) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-/*!40101 SET character_set_client = @saved_cs_client */;
-
---
--- Dumping data for table `pool_pool`
---
-
-LOCK TABLES `pool_pool` WRITE;
-/*!40000 ALTER TABLE `pool_pool` DISABLE KEYS */;
-/*!40000 ALTER TABLE `pool_pool` ENABLE KEYS */;
-UNLOCK TABLES;
-
---
--- Table structure for table `pool_quest`
---
-
-DROP TABLE IF EXISTS `pool_quest`;
-/*!40101 SET @saved_cs_client = @@character_set_client */;
-/*!40101 SET character_set_client = utf8 */;
-CREATE TABLE `pool_quest` (
- `entry` int(10) unsigned NOT NULL DEFAULT '0',
- `pool_entry` mediumint(8) unsigned NOT NULL DEFAULT '0',
- `description` varchar(255) DEFAULT NULL,
- PRIMARY KEY (`entry`),
- KEY `idx_guid` (`entry`)
-) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-/*!40101 SET character_set_client = @saved_cs_client */;
-
---
--- Dumping data for table `pool_quest`
---
-
-LOCK TABLES `pool_quest` WRITE;
-/*!40000 ALTER TABLE `pool_quest` DISABLE KEYS */;
-/*!40000 ALTER TABLE `pool_quest` ENABLE KEYS */;
-UNLOCK TABLES;
-
---
--- Table structure for table `pool_template`
---
-
-DROP TABLE IF EXISTS `pool_template`;
-/*!40101 SET @saved_cs_client = @@character_set_client */;
-/*!40101 SET character_set_client = utf8 */;
-CREATE TABLE `pool_template` (
- `entry` mediumint(8) unsigned NOT NULL DEFAULT '0' COMMENT 'Pool entry',
- `max_limit` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Max number of objects (0) is no limit',
- `description` varchar(255) DEFAULT NULL,
- PRIMARY KEY (`entry`)
-) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-/*!40101 SET character_set_client = @saved_cs_client */;
-
---
--- Dumping data for table `pool_template`
---
-
-LOCK TABLES `pool_template` WRITE;
-/*!40000 ALTER TABLE `pool_template` DISABLE KEYS */;
-/*!40000 ALTER TABLE `pool_template` ENABLE KEYS */;
-UNLOCK TABLES;
-
---
--- Table structure for table `prospecting_loot_template`
---
-
-DROP TABLE IF EXISTS `prospecting_loot_template`;
-/*!40101 SET @saved_cs_client = @@character_set_client */;
-/*!40101 SET character_set_client = utf8 */;
-CREATE TABLE `prospecting_loot_template` (
- `entry` mediumint(8) unsigned NOT NULL DEFAULT '0',
- `item` mediumint(8) unsigned NOT NULL DEFAULT '0',
- `ChanceOrQuestChance` float NOT NULL DEFAULT '100',
- `lootmode` smallint(5) unsigned NOT NULL DEFAULT '1',
- `groupid` tinyint(3) unsigned NOT NULL DEFAULT '0',
- `mincountOrRef` mediumint(9) NOT NULL DEFAULT '1',
- `maxcount` tinyint(3) unsigned NOT NULL DEFAULT '1',
- `lootcondition` tinyint(3) unsigned NOT NULL DEFAULT '0',
- `condition_value1` mediumint(8) unsigned NOT NULL DEFAULT '0',
- `condition_value2` mediumint(8) unsigned NOT NULL DEFAULT '0',
- PRIMARY KEY (`entry`,`item`)
-) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Loot System';
-/*!40101 SET character_set_client = @saved_cs_client */;
-
---
--- Dumping data for table `prospecting_loot_template`
---
-
-LOCK TABLES `prospecting_loot_template` WRITE;
-/*!40000 ALTER TABLE `prospecting_loot_template` DISABLE KEYS */;
-/*!40000 ALTER TABLE `prospecting_loot_template` ENABLE KEYS */;
-UNLOCK TABLES;
-
---
--- Table structure for table `quest_end_scripts`
---
-
-DROP TABLE IF EXISTS `quest_end_scripts`;
-/*!40101 SET @saved_cs_client = @@character_set_client */;
-/*!40101 SET character_set_client = utf8 */;
-CREATE TABLE `quest_end_scripts` (
- `id` mediumint(8) unsigned NOT NULL DEFAULT '0',
- `delay` int(10) unsigned NOT NULL DEFAULT '0',
- `command` mediumint(8) unsigned NOT NULL DEFAULT '0',
- `datalong` mediumint(8) unsigned NOT NULL DEFAULT '0',
- `datalong2` int(10) unsigned NOT NULL DEFAULT '0',
- `dataint` int(11) NOT NULL DEFAULT '0',
- `x` float NOT NULL DEFAULT '0',
- `y` float NOT NULL DEFAULT '0',
- `z` float NOT NULL DEFAULT '0',
- `o` float NOT NULL DEFAULT '0'
-) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-/*!40101 SET character_set_client = @saved_cs_client */;
-
---
--- Dumping data for table `quest_end_scripts`
---
-
-LOCK TABLES `quest_end_scripts` WRITE;
-/*!40000 ALTER TABLE `quest_end_scripts` DISABLE KEYS */;
-/*!40000 ALTER TABLE `quest_end_scripts` ENABLE KEYS */;
-UNLOCK TABLES;
-
---
--- Table structure for table `quest_poi`
---
-
-DROP TABLE IF EXISTS `quest_poi`;
-/*!40101 SET @saved_cs_client = @@character_set_client */;
-/*!40101 SET character_set_client = utf8 */;
-CREATE TABLE `quest_poi` (
- `questId` int(10) UNSIGNED NOT NULL DEFAULT '0',
- `id` int(10) UNSIGNED NOT NULL DEFAULT '0',
- `objIndex` int(10) NOT NULL DEFAULT '0',
- `mapid` int(10) UNSIGNED NOT NULL DEFAULT '0',
- `WorldMapAreaId` int(10) UNSIGNED NOT NULL DEFAULT '0',
- `FloorId` int(10) UNSIGNED NOT NULL DEFAULT '0',
- `unk3` int(10) UNSIGNED NOT NULL DEFAULT '0',
- `unk4` int(10) UNSIGNED NOT NULL DEFAULT '0',
- KEY `questId` (`questId`,`id`),
- KEY `id` (`id`,`questId`)
-) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci;
-/*!40101 SET character_set_client = @saved_cs_client */;
-
---
--- Dumping data for table `quest_poi`
---
-
-LOCK TABLES `quest_poi` WRITE;
-/*!40000 ALTER TABLE `quest_poi` DISABLE KEYS */;
-/*!40000 ALTER TABLE `quest_poi` ENABLE KEYS */;
-UNLOCK TABLES;
-
---
--- Table structure for table `quest_poi_points`
---
-
-DROP TABLE IF EXISTS `quest_poi_points`;
-/*!40101 SET @saved_cs_client = @@character_set_client */;
-/*!40101 SET character_set_client = utf8 */;
-CREATE TABLE `quest_poi_points` (
- `questId` int(10) UNSIGNED NOT NULL DEFAULT '0',
- `id` int(10) UNSIGNED NOT NULL DEFAULT '0',
- `idx` int(10) unsigned NOT NULL DEFAULT '0',
- `x` int(10) NOT NULL DEFAULT '0',
- `y` int(10) NOT NULL DEFAULT '0',
- KEY `questId_id` (`questId`,`id`)
-) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci;
-/*!40101 SET character_set_client = @saved_cs_client */;
-
---
--- Dumping data for table `quest_poi_points`
---
-
-LOCK TABLES `quest_poi_points` WRITE;
-/*!40000 ALTER TABLE `quest_poi_points` DISABLE KEYS */;
-/*!40000 ALTER TABLE `quest_poi_points` ENABLE KEYS */;
-UNLOCK TABLES;
-
---
--- Table structure for table `quest_start_scripts`
---
-
-DROP TABLE IF EXISTS `quest_start_scripts`;
-/*!40101 SET @saved_cs_client = @@character_set_client */;
-/*!40101 SET character_set_client = utf8 */;
-CREATE TABLE `quest_start_scripts` (
- `id` mediumint(8) unsigned NOT NULL DEFAULT '0',
- `delay` int(10) unsigned NOT NULL DEFAULT '0',
- `command` mediumint(8) unsigned NOT NULL DEFAULT '0',
- `datalong` mediumint(8) unsigned NOT NULL DEFAULT '0',
- `datalong2` int(10) unsigned NOT NULL DEFAULT '0',
- `dataint` int(11) NOT NULL DEFAULT '0',
- `x` float NOT NULL DEFAULT '0',
- `y` float NOT NULL DEFAULT '0',
- `z` float NOT NULL DEFAULT '0',
- `o` float NOT NULL DEFAULT '0'
-) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-/*!40101 SET character_set_client = @saved_cs_client */;
-
---
--- Dumping data for table `quest_start_scripts`
---
-
-LOCK TABLES `quest_start_scripts` WRITE;
-/*!40000 ALTER TABLE `quest_start_scripts` DISABLE KEYS */;
-/*!40000 ALTER TABLE `quest_start_scripts` ENABLE KEYS */;
-UNLOCK TABLES;
-
---
--- Table structure for table `quest_template`
---
-
-DROP TABLE IF EXISTS `quest_template`;
-/*!40101 SET @saved_cs_client = @@character_set_client */;
-/*!40101 SET character_set_client = utf8 */;
-CREATE TABLE `quest_template` (
- `entry` mediumint(8) unsigned NOT NULL DEFAULT '0',
- `Method` tinyint(3) unsigned NOT NULL DEFAULT '2',
- `ZoneOrSort` smallint(6) NOT NULL DEFAULT '0',
- `SkillOrClassMask` mediumint(8) NOT NULL DEFAULT '0',
- `MinLevel` tinyint(3) unsigned NOT NULL DEFAULT '0',
- `MaxLevel` tinyint(3) unsigned NOT NULL DEFAULT '0',
- `QuestLevel` smallint(3) NOT NULL DEFAULT '1',
- `Type` smallint(5) unsigned NOT NULL DEFAULT '0',
- `RequiredRaces` smallint(5) unsigned NOT NULL DEFAULT '0',
- `RequiredSkillValue` smallint(5) unsigned NOT NULL DEFAULT '0',
- `RepObjectiveFaction` smallint(5) unsigned NOT NULL DEFAULT '0',
- `RepObjectiveValue` mediumint(9) NOT NULL DEFAULT '0',
- `RepObjectiveFaction2` smallint(5) unsigned NOT NULL DEFAULT '0',
- `RepObjectiveValue2` mediumint(9) NOT NULL DEFAULT '0',
- `RequiredMinRepFaction` smallint(5) unsigned NOT NULL DEFAULT '0',
- `RequiredMinRepValue` mediumint(9) NOT NULL DEFAULT '0',
- `RequiredMaxRepFaction` smallint(5) unsigned NOT NULL DEFAULT '0',
- `RequiredMaxRepValue` mediumint(9) NOT NULL DEFAULT '0',
- `SuggestedPlayers` tinyint(3) unsigned NOT NULL DEFAULT '0',
- `LimitTime` int(10) unsigned NOT NULL DEFAULT '0',
- `QuestFlags` int(10) unsigned NOT NULL DEFAULT '0',
- `SpecialFlags` tinyint(3) unsigned NOT NULL DEFAULT '0',
- `CharTitleId` tinyint(3) unsigned NOT NULL DEFAULT '0',
- `PlayersSlain` tinyint(3) unsigned NOT NULL DEFAULT '0',
- `BonusTalents` tinyint(3) unsigned NULL DEFAULT '0',
- `RewardArenaPoints` smallint(5) unsigned NOT NULL DEFAULT '0',
- `PrevQuestId` mediumint(9) NOT NULL DEFAULT '0',
- `NextQuestId` mediumint(9) NOT NULL DEFAULT '0',
- `ExclusiveGroup` mediumint(9) NOT NULL DEFAULT '0',
- `NextQuestInChain` mediumint(8) unsigned NOT NULL DEFAULT '0',
- `RewXPId` tinyint(2) unsigned NOT NULL DEFAULT '0',
- `SrcItemId` mediumint(8) unsigned NOT NULL DEFAULT '0',
- `SrcItemCount` tinyint(3) unsigned NOT NULL DEFAULT '0',
- `SrcSpell` mediumint(8) unsigned NOT NULL DEFAULT '0',
- `Title` text DEFAULT NULL,
- `Details` text DEFAULT NULL,
- `Objectives` text DEFAULT NULL,
- `OfferRewardText` text DEFAULT NULL,
- `RequestItemsText` text DEFAULT NULL,
- `EndText` text DEFAULT NULL,
- `CompletedText` text DEFAULT NULL,
- `ObjectiveText1` text DEFAULT NULL,
- `ObjectiveText2` text DEFAULT NULL,
- `ObjectiveText3` text DEFAULT NULL,
- `ObjectiveText4` text DEFAULT NULL,
- `ReqItemId1` mediumint(8) unsigned NOT NULL DEFAULT '0',
- `ReqItemId2` mediumint(8) unsigned NOT NULL DEFAULT '0',
- `ReqItemId3` mediumint(8) unsigned NOT NULL DEFAULT '0',
- `ReqItemId4` mediumint(8) unsigned NOT NULL DEFAULT '0',
- `ReqItemId5` mediumint(8) unsigned NOT NULL DEFAULT '0',
- `ReqItemId6` mediumint(8) unsigned NOT NULL DEFAULT '0',
- `ReqItemCount1` smallint(5) unsigned NOT NULL DEFAULT '0',
- `ReqItemCount2` smallint(5) unsigned NOT NULL DEFAULT '0',
- `ReqItemCount3` smallint(5) unsigned NOT NULL DEFAULT '0',
- `ReqItemCount4` smallint(5) unsigned NOT NULL DEFAULT '0',
- `ReqItemCount5` smallint(5) unsigned NOT NULL DEFAULT '0',
- `ReqItemCount6` smallint(5) unsigned NOT NULL DEFAULT '0',
- `ReqSourceId1` mediumint(8) unsigned NOT NULL DEFAULT '0',
- `ReqSourceId2` mediumint(8) unsigned NOT NULL DEFAULT '0',
- `ReqSourceId3` mediumint(8) unsigned NOT NULL DEFAULT '0',
- `ReqSourceId4` mediumint(8) unsigned NOT NULL DEFAULT '0',
- `ReqSourceCount1` smallint(5) unsigned NOT NULL DEFAULT '0',
- `ReqSourceCount2` smallint(5) unsigned NOT NULL DEFAULT '0',
- `ReqSourceCount3` smallint(5) unsigned NOT NULL DEFAULT '0',
- `ReqSourceCount4` smallint(5) unsigned NOT NULL DEFAULT '0',
- `ReqCreatureOrGOId1` mediumint(9) NOT NULL DEFAULT '0',
- `ReqCreatureOrGOId2` mediumint(9) NOT NULL DEFAULT '0',
- `ReqCreatureOrGOId3` mediumint(9) NOT NULL DEFAULT '0',
- `ReqCreatureOrGOId4` mediumint(9) NOT NULL DEFAULT '0',
- `ReqCreatureOrGOCount1` smallint(5) unsigned NOT NULL DEFAULT '0',
- `ReqCreatureOrGOCount2` smallint(5) unsigned NOT NULL DEFAULT '0',
- `ReqCreatureOrGOCount3` smallint(5) unsigned NOT NULL DEFAULT '0',
- `ReqCreatureOrGOCount4` smallint(5) unsigned NOT NULL DEFAULT '0',
- `ReqSpellCast1` mediumint(8) unsigned NOT NULL DEFAULT '0',
- `ReqSpellCast2` mediumint(8) unsigned NOT NULL DEFAULT '0',
- `ReqSpellCast3` mediumint(8) unsigned NOT NULL DEFAULT '0',
- `ReqSpellCast4` mediumint(8) unsigned NOT NULL DEFAULT '0',
- `RewChoiceItemId1` mediumint(8) unsigned NOT NULL DEFAULT '0',
- `RewChoiceItemId2` mediumint(8) unsigned NOT NULL DEFAULT '0',
- `RewChoiceItemId3` mediumint(8) unsigned NOT NULL DEFAULT '0',
- `RewChoiceItemId4` mediumint(8) unsigned NOT NULL DEFAULT '0',
- `RewChoiceItemId5` mediumint(8) unsigned NOT NULL DEFAULT '0',
- `RewChoiceItemId6` mediumint(8) unsigned NOT NULL DEFAULT '0',
- `RewChoiceItemCount1` smallint(5) unsigned NOT NULL DEFAULT '0',
- `RewChoiceItemCount2` smallint(5) unsigned NOT NULL DEFAULT '0',
- `RewChoiceItemCount3` smallint(5) unsigned NOT NULL DEFAULT '0',
- `RewChoiceItemCount4` smallint(5) unsigned NOT NULL DEFAULT '0',
- `RewChoiceItemCount5` smallint(5) unsigned NOT NULL DEFAULT '0',
- `RewChoiceItemCount6` smallint(5) unsigned NOT NULL DEFAULT '0',
- `RewItemId1` mediumint(8) unsigned NOT NULL DEFAULT '0',
- `RewItemId2` mediumint(8) unsigned NOT NULL DEFAULT '0',
- `RewItemId3` mediumint(8) unsigned NOT NULL DEFAULT '0',
- `RewItemId4` mediumint(8) unsigned NOT NULL DEFAULT '0',
- `RewItemCount1` smallint(5) unsigned NOT NULL DEFAULT '0',
- `RewItemCount2` smallint(5) unsigned NOT NULL DEFAULT '0',
- `RewItemCount3` smallint(5) unsigned NOT NULL DEFAULT '0',
- `RewItemCount4` smallint(5) unsigned NOT NULL DEFAULT '0',
- `RewRepFaction1` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'faction id from Faction.dbc in this case',
- `RewRepFaction2` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'faction id from Faction.dbc in this case',
- `RewRepFaction3` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'faction id from Faction.dbc in this case',
- `RewRepFaction4` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'faction id from Faction.dbc in this case',
- `RewRepFaction5` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'faction id from Faction.dbc in this case',
- `RewRepValueId1` mediumint(6) NOT NULL DEFAULT '0',
- `RewRepValueId2` mediumint(6) NOT NULL DEFAULT '0',
- `RewRepValueId3` mediumint(6) NOT NULL DEFAULT '0',
- `RewRepValueId4` mediumint(6) NOT NULL DEFAULT '0',
- `RewRepValueId5` mediumint(6) NOT NULL DEFAULT '0',
- `RewRepValue1` mediumint(9) NOT NULL DEFAULT '0',
- `RewRepValue2` mediumint(9) NOT NULL DEFAULT '0',
- `RewRepValue3` mediumint(9) NOT NULL DEFAULT '0',
- `RewRepValue4` mediumint(9) NOT NULL DEFAULT '0',
- `RewRepValue5` mediumint(9) NOT NULL DEFAULT '0',
- `RewHonorAddition` int(10) signed NOT NULL DEFAULT '0',
- `RewHonorMultiplier` float NOT NULL DEFAULT '1',
- `unk0` tinyint(2) unsigned NOT NULL DEFAULT '0',
- `RewOrReqMoney` int(11) NOT NULL DEFAULT '0',
- `RewMoneyMaxLevel` int(10) unsigned NOT NULL DEFAULT '0',
- `RewSpell` mediumint(8) unsigned NOT NULL DEFAULT '0',
- `RewSpellCast` int(11) signed NOT NULL DEFAULT '0',
- `RewMailTemplateId` mediumint(8) unsigned NOT NULL DEFAULT '0',
- `RewMailDelaySecs` int(11) unsigned NOT NULL DEFAULT '0',
- `PointMapId` smallint(5) unsigned NOT NULL DEFAULT '0',
- `PointX` float NOT NULL DEFAULT '0',
- `PointY` float NOT NULL DEFAULT '0',
- `PointOpt` mediumint(8) unsigned NOT NULL DEFAULT '0',
- `DetailsEmote1` smallint(5) unsigned NOT NULL DEFAULT '0',
- `DetailsEmote2` smallint(5) unsigned NOT NULL DEFAULT '0',
- `DetailsEmote3` smallint(5) unsigned NOT NULL DEFAULT '0',
- `DetailsEmote4` smallint(5) unsigned NOT NULL DEFAULT '0',
- `DetailsEmoteDelay1` int(11) unsigned NOT NULL DEFAULT '0',
- `DetailsEmoteDelay2` int(11) unsigned NOT NULL DEFAULT '0',
- `DetailsEmoteDelay3` int(11) unsigned NOT NULL DEFAULT '0',
- `DetailsEmoteDelay4` int(11) unsigned NOT NULL DEFAULT '0',
- `IncompleteEmote` smallint(5) unsigned NOT NULL DEFAULT '0',
- `CompleteEmote` smallint(5) unsigned NOT NULL DEFAULT '0',
- `OfferRewardEmote1` smallint(5) unsigned NOT NULL DEFAULT '0',
- `OfferRewardEmote2` smallint(5) unsigned NOT NULL DEFAULT '0',
- `OfferRewardEmote3` smallint(5) unsigned NOT NULL DEFAULT '0',
- `OfferRewardEmote4` smallint(5) unsigned NOT NULL DEFAULT '0',
- `OfferRewardEmoteDelay1` int(11) unsigned NOT NULL DEFAULT '0',
- `OfferRewardEmoteDelay2` int(11) unsigned NOT NULL DEFAULT '0',
- `OfferRewardEmoteDelay3` int(11) unsigned NOT NULL DEFAULT '0',
- `OfferRewardEmoteDelay4` int(11) unsigned NOT NULL DEFAULT '0',
- `StartScript` mediumint(8) unsigned NOT NULL DEFAULT '0',
- `CompleteScript` mediumint(8) unsigned NOT NULL DEFAULT '0',
- `WDBVerified` smallint(5) signed DEFAULT '1',
- PRIMARY KEY (`entry`)
-) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Quest System';
-/*!40101 SET character_set_client = @saved_cs_client */;
-
---
--- Dumping data for table `quest_template`
---
-
-LOCK TABLES `quest_template` WRITE;
-/*!40000 ALTER TABLE `quest_template` DISABLE KEYS */;
-/*!40000 ALTER TABLE `quest_template` ENABLE KEYS */;
-UNLOCK TABLES;
-
---
--- Table structure for table `reference_loot_template`
---
-
-DROP TABLE IF EXISTS `reference_loot_template`;
-/*!40101 SET @saved_cs_client = @@character_set_client */;
-/*!40101 SET character_set_client = utf8 */;
-CREATE TABLE `reference_loot_template` (
- `entry` mediumint(8) unsigned NOT NULL DEFAULT '0',
- `item` mediumint(8) unsigned NOT NULL DEFAULT '0',
- `ChanceOrQuestChance` float NOT NULL DEFAULT '100',
- `lootmode` smallint(5) unsigned NOT NULL DEFAULT '1',
- `groupid` tinyint(3) unsigned NOT NULL DEFAULT '0',
- `mincountOrRef` mediumint(9) NOT NULL DEFAULT '1',
- `maxcount` tinyint(3) unsigned NOT NULL DEFAULT '1',
- `lootcondition` tinyint(3) unsigned NOT NULL DEFAULT '0',
- `condition_value1` mediumint(8) unsigned NOT NULL DEFAULT '0',
- `condition_value2` mediumint(8) unsigned NOT NULL DEFAULT '0',
- PRIMARY KEY (`entry`,`item`)
-) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Loot System';
-/*!40101 SET character_set_client = @saved_cs_client */;
-
---
--- Dumping data for table `reference_loot_template`
---
-
-LOCK TABLES `reference_loot_template` WRITE;
-/*!40000 ALTER TABLE `reference_loot_template` DISABLE KEYS */;
-/*!40000 ALTER TABLE `reference_loot_template` ENABLE KEYS */;
-UNLOCK TABLES;
-
---
--- Table structure for table `reputation_reward_rate`
---
-
-DROP TABLE IF EXISTS `reputation_reward_rate`;
-CREATE TABLE `reputation_reward_rate` (
- `faction` mediumint(8) unsigned NOT NULL default '0',
- `quest_rate` float NOT NULL default '1',
- `creature_rate` float NOT NULL default '1',
- `spell_rate` float NOT NULL default '1',
- PRIMARY KEY (`faction`)
-) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-
---
--- Dumping data for table `reputation_reward_rate`
---
-
-LOCK TABLES `reputation_reward_rate` WRITE;
-/*!40000 ALTER TABLE `reputation_reward_rate` DISABLE KEYS */;
-/*!40000 ALTER TABLE `reputation_reward_rate` ENABLE KEYS */;
-UNLOCK TABLES;
---
--- Table structure for table `reputation_spillover_template`
---
-
-DROP TABLE IF EXISTS `reputation_spillover_template`;
-CREATE TABLE `reputation_spillover_template` (
- `faction` smallint(6) unsigned NOT NULL default '0' COMMENT 'faction entry',
- `faction1` smallint(6) unsigned NOT NULL default '0' COMMENT 'faction to give spillover for',
- `rate_1` float NOT NULL default '0' COMMENT 'the given rep points * rate',
- `rank_1` tinyint(3) unsigned NOT NULL default '0' COMMENT 'max rank, above this will not give any spillover',
- `faction2` smallint(6) unsigned NOT NULL default '0',
- `rate_2` float NOT NULL default '0',
- `rank_2` tinyint(3) unsigned NOT NULL default '0',
- `faction3` smallint(6) unsigned NOT NULL default '0',
- `rate_3` float NOT NULL default '0',
- `rank_3` tinyint(3) unsigned NOT NULL default '0',
- `faction4` smallint(6) unsigned NOT NULL default '0',
- `rate_4` float NOT NULL default '0',
- `rank_4` tinyint(3) unsigned NOT NULL default '0',
- PRIMARY KEY (`faction`)
-) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=DYNAMIC COMMENT='Reputation spillover reputation gain';
-
---
--- Dumping data for table `reputation_spillover_template`
---
-
-LOCK TABLES `reputation_spillover_template` WRITE;
-/*!40000 ALTER TABLE `reputation_spillover_template` DISABLE KEYS */;
-/*!40000 ALTER TABLE `reputation_spillover_template` ENABLE KEYS */;
-UNLOCK TABLES;
-
---
--- Table structure for table `script_texts`
---
-
-DROP TABLE IF EXISTS `script_texts`;
-/*!40101 SET @saved_cs_client = @@character_set_client */;
-/*!40101 SET character_set_client = utf8 */;
-CREATE TABLE `script_texts` (
- `npc_entry` mediumint(8) NOT NULL DEFAULT '0' COMMENT 'creature_template entry',
- `entry` mediumint(8) NOT NULL,
- `content_default` text NOT NULL,
- `content_loc1` text,
- `content_loc2` text,
- `content_loc3` text,
- `content_loc4` text,
- `content_loc5` text,
- `content_loc6` text,
- `content_loc7` text,
- `content_loc8` text,
- `sound` mediumint(8) unsigned NOT NULL DEFAULT '0',
- `type` tinyint(3) unsigned NOT NULL DEFAULT '0',
- `language` tinyint(3) unsigned NOT NULL DEFAULT '0',
- `emote` smallint(5) unsigned NOT NULL DEFAULT '0',
- `comment` text,
- PRIMARY KEY (`npc_entry`,`entry`)
-) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Script Texts';
-/*!40101 SET character_set_client = @saved_cs_client */;
-
---
--- Dumping data for table `script_texts`
---
-
-LOCK TABLES `script_texts` WRITE;
-/*!40000 ALTER TABLE `script_texts` DISABLE KEYS */;
-/*!40000 ALTER TABLE `script_texts` ENABLE KEYS */;
-UNLOCK TABLES;
-
---
--- Table structure for table `script_waypoint`
---
-
-DROP TABLE IF EXISTS `script_waypoint`;
-/*!40101 SET @saved_cs_client = @@character_set_client */;
-/*!40101 SET character_set_client = utf8 */;
-CREATE TABLE `script_waypoint` (
- `entry` mediumint(8) unsigned NOT NULL DEFAULT '0' COMMENT 'creature_template entry',
- `pointid` mediumint(8) unsigned NOT NULL DEFAULT '0',
- `location_x` float NOT NULL DEFAULT '0',
- `location_y` float NOT NULL DEFAULT '0',
- `location_z` float NOT NULL DEFAULT '0',
- `waittime` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'waittime in millisecs',
- `point_comment` text,
- PRIMARY KEY (`entry`,`pointid`)
-) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Script Creature waypoints';
-/*!40101 SET character_set_client = @saved_cs_client */;
-
---
--- Dumping data for table `script_waypoint`
---
-
-LOCK TABLES `script_waypoint` WRITE;
-/*!40000 ALTER TABLE `script_waypoint` DISABLE KEYS */;
-/*!40000 ALTER TABLE `script_waypoint` ENABLE KEYS */;
-UNLOCK TABLES;
-
---
--- Table structure for table `season_linked_event`
---
-
-DROP TABLE IF EXISTS `season_linked_event`;
-/*!40101 SET @saved_cs_client = @@character_set_client */;
-/*!40101 SET character_set_client = utf8 */;
-CREATE TABLE `season_linked_event` (
- `season` int(3) UNSIGNED NOT NULL default '0',
- `event` int(8) UNSIGNED NOT NULL default '0',
- PRIMARY KEY (`season`),
- UNIQUE (`season`,`event`)
-) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-/*!40101 SET character_set_client = @saved_cs_client */;
-
---
--- Dumping data for table `season_linked_event`
---
-
-LOCK TABLES `season_linked_event` WRITE;
-/*!40000 ALTER TABLE `season_linked_event` DISABLE KEYS */;
-/*!40000 ALTER TABLE `season_linked_event` ENABLE KEYS */;
-UNLOCK TABLES;
-
---
--- Table structure for table `skill_discovery_template`
---
-
-DROP TABLE IF EXISTS `skill_discovery_template`;
-/*!40101 SET @saved_cs_client = @@character_set_client */;
-/*!40101 SET character_set_client = utf8 */;
-CREATE TABLE `skill_discovery_template` (
- `spellId` mediumint(8) unsigned NOT NULL DEFAULT '0' COMMENT 'SpellId of the discoverable spell',
- `reqSpell` mediumint(8) unsigned NOT NULL DEFAULT '0' COMMENT 'spell requirement',
- `reqSkillValue` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'skill points requirement',
- `chance` float NOT NULL DEFAULT '0' COMMENT 'chance to discover',
- PRIMARY KEY (`spellId`,`reqSpell`)
-) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Skill Discovery System';
-/*!40101 SET character_set_client = @saved_cs_client */;
-
---
--- Dumping data for table `skill_discovery_template`
---
-
-LOCK TABLES `skill_discovery_template` WRITE;
-/*!40000 ALTER TABLE `skill_discovery_template` DISABLE KEYS */;
-/*!40000 ALTER TABLE `skill_discovery_template` ENABLE KEYS */;
-UNLOCK TABLES;
-
---
--- Table structure for table `skill_extra_item_template`
---
-
-DROP TABLE IF EXISTS `skill_extra_item_template`;
-/*!40101 SET @saved_cs_client = @@character_set_client */;
-/*!40101 SET character_set_client = utf8 */;
-CREATE TABLE `skill_extra_item_template` (
- `spellId` mediumint(8) unsigned NOT NULL DEFAULT '0' COMMENT 'SpellId of the item creation spell',
- `requiredSpecialization` mediumint(8) unsigned NOT NULL DEFAULT '0' COMMENT 'Specialization spell id',
- `additionalCreateChance` float NOT NULL DEFAULT '0' COMMENT 'chance to create add',
- `additionalMaxNum` tinyint(3) unsigned NOT NULL DEFAULT '0' COMMENT 'max num of adds',
- PRIMARY KEY (`spellId`)
-) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Skill Specialization System';
-/*!40101 SET character_set_client = @saved_cs_client */;
-
---
--- Dumping data for table `skill_extra_item_template`
---
-
-LOCK TABLES `skill_extra_item_template` WRITE;
-/*!40000 ALTER TABLE `skill_extra_item_template` DISABLE KEYS */;
-/*!40000 ALTER TABLE `skill_extra_item_template` ENABLE KEYS */;
-UNLOCK TABLES;
-
---
--- Table structure for table `skill_fishing_base_level`
---
-
-DROP TABLE IF EXISTS `skill_fishing_base_level`;
-/*!40101 SET @saved_cs_client = @@character_set_client */;
-/*!40101 SET character_set_client = utf8 */;
-CREATE TABLE `skill_fishing_base_level` (
- `entry` mediumint(8) unsigned NOT NULL DEFAULT '0' COMMENT 'Area identifier',
- `skill` smallint(6) NOT NULL DEFAULT '0' COMMENT 'Base skill level requirement',
- PRIMARY KEY (`entry`)
-) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Fishing system';
-/*!40101 SET character_set_client = @saved_cs_client */;
-
---
--- Dumping data for table `skill_fishing_base_level`
---
-
-LOCK TABLES `skill_fishing_base_level` WRITE;
-/*!40000 ALTER TABLE `skill_fishing_base_level` DISABLE KEYS */;
-/*!40000 ALTER TABLE `skill_fishing_base_level` ENABLE KEYS */;
-UNLOCK TABLES;
-
---
--- Table structure for table `skinning_loot_template`
---
-
-DROP TABLE IF EXISTS `skinning_loot_template`;
-/*!40101 SET @saved_cs_client = @@character_set_client */;
-/*!40101 SET character_set_client = utf8 */;
-CREATE TABLE `skinning_loot_template` (
- `entry` mediumint(8) unsigned NOT NULL DEFAULT '0',
- `item` mediumint(8) unsigned NOT NULL DEFAULT '0',
- `ChanceOrQuestChance` float NOT NULL DEFAULT '100',
- `lootmode` smallint(5) unsigned NOT NULL DEFAULT '1',
- `groupid` tinyint(3) unsigned NOT NULL DEFAULT '0',
- `mincountOrRef` mediumint(9) NOT NULL DEFAULT '1',
- `maxcount` tinyint(3) unsigned NOT NULL DEFAULT '1',
- `lootcondition` tinyint(3) unsigned NOT NULL DEFAULT '0',
- `condition_value1` mediumint(8) unsigned NOT NULL DEFAULT '0',
- `condition_value2` mediumint(8) unsigned NOT NULL DEFAULT '0',
- PRIMARY KEY (`entry`,`item`)
-) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Loot System';
-/*!40101 SET character_set_client = @saved_cs_client */;
-
---
--- Dumping data for table `skinning_loot_template`
---
-
-LOCK TABLES `skinning_loot_template` WRITE;
-/*!40000 ALTER TABLE `skinning_loot_template` DISABLE KEYS */;
-/*!40000 ALTER TABLE `skinning_loot_template` ENABLE KEYS */;
-UNLOCK TABLES;
-
---
--- Table structure for table `smart_scripts`
---
-
-DROP TABLE IF EXISTS `smart_scripts`;
-/*!40101 SET @saved_cs_client = @@character_set_client */;
-/*!40101 SET character_set_client = utf8 */;
-CREATE TABLE `smart_scripts` (
- `entryorguid` int(11) NOT NULL,
- `source_type` tinyint(3) unsigned NOT NULL DEFAULT '0',
- `id` smallint(5) unsigned NOT NULL DEFAULT '0',
- `link` smallint(5) unsigned NOT NULL DEFAULT '0',
- `event_type` tinyint(3) unsigned NOT NULL DEFAULT '0',
- `event_phase_mask` tinyint(3) unsigned NOT NULL DEFAULT '0',
- `event_chance` tinyint(3) unsigned NOT NULL DEFAULT '100',
- `event_flags` tinyint(3) unsigned NOT NULL DEFAULT '0',
- `event_param1` int(10) unsigned NOT NULL DEFAULT '0',
- `event_param2` int(10) unsigned NOT NULL DEFAULT '0',
- `event_param3` int(10) unsigned NOT NULL DEFAULT '0',
- `event_param4` int(10) unsigned NOT NULL DEFAULT '0',
- `action_type` tinyint(3) unsigned NOT NULL DEFAULT '0',
- `action_param1` int(10) unsigned NOT NULL DEFAULT '0',
- `action_param2` int(10) unsigned NOT NULL DEFAULT '0',
- `action_param3` int(10) unsigned NOT NULL DEFAULT '0',
- `action_param4` int(10) unsigned NOT NULL DEFAULT '0',
- `action_param5` int(10) unsigned NOT NULL DEFAULT '0',
- `action_param6` int(10) unsigned NOT NULL DEFAULT '0',
- `target_type` tinyint(3) unsigned NOT NULL DEFAULT '0',
- `target_param1` int(10) unsigned NOT NULL DEFAULT '0',
- `target_param2` int(10) unsigned NOT NULL DEFAULT '0',
- `target_param3` int(10) unsigned NOT NULL DEFAULT '0',
- `target_x` float NOT NULL DEFAULT '0',
- `target_y` float NOT NULL DEFAULT '0',
- `target_z` float NOT NULL DEFAULT '0',
- `target_o` float NOT NULL DEFAULT '0',
- `comment` TEXT CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT 'Event Comment',
- PRIMARY KEY (`entryorguid`,`source_type`,`id`,`link`)
-) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED;
-/*!40101 SET character_set_client = @saved_cs_client */;
-
---
--- Dumping data for table `smart_scripts`
---
-
-LOCK TABLES `smart_scripts` WRITE;
-/*!40000 ALTER TABLE `smart_scripts` DISABLE KEYS */;
-/*!40000 ALTER TABLE `smart_scripts` ENABLE KEYS */;
-UNLOCK TABLES;
-
---
--- Table structure for table `spell_area`
---
-
-DROP TABLE IF EXISTS `spell_area`;
-/*!40101 SET @saved_cs_client = @@character_set_client */;
-/*!40101 SET character_set_client = utf8 */;
-CREATE TABLE `spell_area` (
- `spell` mediumint(8) unsigned NOT NULL DEFAULT '0',
- `area` mediumint(8) unsigned NOT NULL DEFAULT '0',
- `quest_start` mediumint(8) unsigned NOT NULL DEFAULT '0',
- `quest_start_active` tinyint(1) unsigned NOT NULL DEFAULT '0',
- `quest_end` mediumint(8) unsigned NOT NULL DEFAULT '0',
- `aura_spell` mediumint(8) NOT NULL DEFAULT '0',
- `racemask` mediumint(8) unsigned NOT NULL DEFAULT '0',
- `gender` tinyint(1) unsigned NOT NULL DEFAULT '2',
- `autocast` tinyint(1) unsigned NOT NULL DEFAULT '0',
- PRIMARY KEY (`spell`,`area`,`quest_start`,`quest_start_active`,`aura_spell`,`racemask`,`gender`)
-) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-/*!40101 SET character_set_client = @saved_cs_client */;
-
---
--- Dumping data for table `spell_area`
---
-
-LOCK TABLES `spell_area` WRITE;
-/*!40000 ALTER TABLE `spell_area` DISABLE KEYS */;
-/*!40000 ALTER TABLE `spell_area` ENABLE KEYS */;
-UNLOCK TABLES;
-
---
--- Table structure for table `spell_bonus_data`
---
-
-DROP TABLE IF EXISTS `spell_bonus_data`;
-/*!40101 SET @saved_cs_client = @@character_set_client */;
-/*!40101 SET character_set_client = utf8 */;
-CREATE TABLE `spell_bonus_data` (
- `entry` mediumint(8) unsigned NOT NULL DEFAULT '0',
- `direct_bonus` float NOT NULL DEFAULT '0',
- `dot_bonus` float NOT NULL DEFAULT '0',
- `ap_bonus` float NOT NULL DEFAULT '0',
- `ap_dot_bonus` float NOT NULL DEFAULT '0',
- `comments` varchar(255) DEFAULT NULL,
- PRIMARY KEY (`entry`)
-) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-/*!40101 SET character_set_client = @saved_cs_client */;
-
---
--- Dumping data for table `spell_bonus_data`
---
-
-LOCK TABLES `spell_bonus_data` WRITE;
-/*!40000 ALTER TABLE `spell_bonus_data` DISABLE KEYS */;
-INSERT INTO `spell_bonus_data` (`entry`,`direct_bonus`,`dot_bonus`,`ap_bonus`,`ap_dot_bonus`,`comments`) VALUES
-(48721, 0, -1, 0.06, -1, 'Death Knight - Blood Boil'),
-(55078, 0, 0, -1, 0.06325, 'Death Knight - Blood Plague'),
-(50444, -1, -1, 0.105, -1, 'Death Knight - Corpse Explosion Triggered'),
-(52212, 0, -1, 0.0475, -1, 'Death Knight - Death and Decay'),
-(47632, -1, -1, 0.15, -1, 'Death Knight - Death Coil'),
-(47633, -1, -1, 0.15, -1, 'Death Knight - Death Coil Heal'),
-(55095, -1, 0, -1, 0.06325, 'Death Knight - Frost Fever'),
-(58621, -1, -1, 0.08, -1, 'Death Knight - Glyph of Chains of Ice'),
-(49184, -1, -1, 0.1, -1, 'Death Knight - Howling Blast'),
-(45477, 0, -1, 0.1, -1, 'Death Knight - Icy Touch'),
-(56903, 0, 0, 0, 0, 'Death Knight - Lichflame'),
-(51460, 0, -1, -1, -1, 'Death Knight - Necrosis'),
-(50842, -1, -1, 0.04, -1, 'Death Knight - Pestilence'),
-(50401, 0, 0, 0, 0, 'Death Knight - Razor Frost'),
-(47476, -1, -1, 0.06, -1, 'Death Knight - Strangulate'),
-(50536, -1, 0, -1, -1, 'Death Knight - Unholy Blight (Rank 1)'),
-(339, -1, 0.1, -1, -1, 'Druid - Entangling Roots'),
-(60089, -1, -1, 0.15, -1, 'Druid - Faerie Fire (feral)'),
-(5185, 1.611, -1, -1, -1, 'Druid - Healing Touch'),
-(42231, 0.12898, -1, -1, -1, 'Druid - Hurricane Triggered'),
-(5570, -1, 0.2, -1, -1, 'Druid - Insect Swarm'),
-(33745,0,0,0,0.01,'Druid - Lacerate Rank 1($AP*0.05/number of ticks)'),
-(48567,0,0,0,0.01,'Druid - Lacerate Rank 2($AP*0.05/number of ticks)'),
-(48568,0,0,0,0.01,'Druid - Lacerate Rank 3($AP*0.05/number of ticks)'),
-(33778, 0.589714, 0, 0, 0, 'Druid - Lifebloom final heal'),
-(33763, 0, 0.09518, 0, 0, 'Druid - Lifebloom HoT(rank 1)'),
-(48450, 0, 0.09518, 0, 0, 'Druid - Lifebloom HoT(rank 2)'),
-(48451, 0, 0.09518, 0, 0, 'Druid - Lifebloom HoT(rank 3)'),
-(48628, -1, -1, -1, 0.15, 'Druid - Lock Jaw'),
-(8921, 0.1515, 0.13, -1, -1, 'Druid - Moonfire'),
-(50464, 0.67305, -1, -1, -1, 'Druid - Nourish'),
-(1822, -1, -1, 0.01, 0.06, 'Druid - Rake ($AP*0.18 / number of ticks)'),
-(8936, 0.539, 0.188, -1, -1, 'Druid - Regrowth'),
-(774, -1, 0.37604, -1, -1, 'Druid - Rejuvenation'),
-(50294, 0.13, -1, -1, -1, 'Druid - Starfall AOE'),
-(50288, 0.3, -1, -1, -1, 'Druid - Starfall'),
-(2912, 1, -1, -1, -1, 'Druid - Starfire'),
-(18562, 0, 0, 0, 0, 'Druid - Swiftmend'),
-(779, -1, -1, 0.063, -1, 'Druid - Swipe (Bear)'),
-(467, 0.033, -1, -1, -1, 'Druid - Thorns'),
-(44203, 0.538, -1, -1, -1, 'Druid - Tranquility Triggered'),
-(61391, 0.193, -1, -1, -1, 'Druid - Typhoon'),
-(48438, -1, 0.11505, -1, -1, 'Druid - Wild Growth'),
-(5176, 0.5714, -1, -1, -1, 'Druid - Wrath'),
-(70691,0,0,0,0, 'Druid - Rejuvenation T10 4P proc'),
-(64801,0.45,0,0,0,'Druid - T8 Restoration 4P Bonus'),
-(3044, -1, -1, 0.15, -1, 'Hunter - Arcane Shot'),
-(3674, -1, -1, -1, 0.02, 'Hunter - Black Arrow($RAP*0.1 / number of ticks)'),
-(19306, -1, -1, 0.2, -1, 'Hunter - Counterattack'),
-(13812, -1, -1, 0.1, -1, 'Hunter - Explosive Trap Effect'),
-(13797, -1, -1, -1, 0.02, 'Hunter - Immolation Trap($RAP*0.1 / number of ticks)'),
-(1495, -1, -1, 0.2, -1, 'Hunter - Mongoose Bite'),
-(1978, -1, -1, -1, 0.04, 'Hunter - Serpent Sting($RAP*0.2 / number of ticks)'),
-(56641, -1, -1, 0.1, -1, 'Hunter - Steady Shot'),
-(42243, -1, -1, 0.07, -1, 'Hunter - Volley'),
-(53352, -1, -1, 0.14, -1, 'Hunter - Explosive Shot (triggered)'),
-(55039, 0, 0, 0, 0, 'Item - Gnomish Lightning Generator'),
-(40293, 0, 0, 0, 0, 'Item - Siphon Essence'),
-(67760, 0, 0, 0, 0, 'Item - Coliseum 25 Heroic Caster Trinket - Pillar of Flame'),
-(67714, 0, 0, 0, 0, 'Item - Coliseum 25 Normal Caster Trinket - Pillar of Flame'),
-(69729, -1, 0, -1, -1, 'Item - Onyxia 10 Caster Trinket - Searing Flames'),
-(69730, -1, 0, -1, -1, 'Item - Onyxia 25 Caster Trinket - Searing Flames'),
-(69733, 0, -1, -1, -1, 'Item - Onyxia 10 Caster Trinket - Cauterizing Heal'),
-(69734, 0, -1, -1, -1, 'Item - Onyxia 25 Caster Trinket - Cauterizing Heal'),
-(44425, 0.7143, -1, -1, -1, 'Mage - Arcane Barrage'),
-(30451, 0.7143, -1, -1, -1, 'Mage - Arcane Blast'),
-(1449, 0.2128, -1, -1, -1, 'Mage - Arcane Explosion'),
-(7268, 0.2857, -1, -1, -1, 'Mage - Arcane Missiles Triggered Spell Rank 1'),
-(7269, 0.2857, -1, -1, -1, 'Mage - Arcane Missiles Triggered Spell Rank 2'),
-(11113, 0.1936, -1, -1, -1, 'Mage - Blast Wave'),
-(42208, 0.1437, -1, -1, -1, 'Mage - Blizzard Triggered Spell'),
-(120, 0.214, -1, -1, -1, 'Mage - Cone of Cold'),
-(31661, 0.1936, -1, -1, -1, 'Mage - Dragons Breath'),
-(133, 1, -1, -1, -1, 'Mage - Fire Ball'),
-(2136, 0.4286, -1, -1, -1, 'Mage - Fire Blast'),
-(543, 0.1, -1, -1, -1, 'Mage - Fire Ward'),
-(2120, 0.2357, 0.122, -1, -1, 'Mage - Flamestrike'),
-(116, 0.857, -1, -1, -1, 'Mage - Frostbolt'),
-(122, 0.193, -1, -1, -1, 'Mage - Frost Nova'),
-(6143, 0.1, -1, -1, -1, 'Mage - Frost Ward'),
-(44614, 0.8571, -1, -1, -1, 'Mage - Frostfire Bolt'),
-(11426, 0.8053, -1, -1, -1, 'Mage - Ice Barrier'),
-(30455, 0.1429, -1, -1, -1, 'Mage - Ice Lance'),
-(12654, 0, 0, 0, 0, 'Mage - Ignite'),
-(44457, 0.4, 0.2, -1, -1, 'Mage - Living Bomb'),
-(1463, 0.8053, -1, -1, -1, 'Mage - Mana Shield'),
-(34913, 0, 0, 0, 0, 'Mage - Molten Armor Triggered Rank 1'),
-(11366, 1.15, 0.05, -1, -1, 'Mage - Pyroblast'),
-(2948, 0.4286, -1, -1, -1, 'Mage - Scorch'),
-(59638, 0.3, -1, 0, -1, 'Mage - Mirror Image Frostbolt'),
-(59637, 0.15, -1, 0, -1, 'Mage - Mirror Image Fire Blast'),
-(31707, 0.8333, 0, 0, 0, 'Mage - Water Elemental Waterbolt'),
-(31935, 0.07, -1, 0.07, -1, 'Paladin - Avenger Shield'),
-(53742, -1, 0.0176, -1, 0.03, 'Paladin - Blood Corruption'),
-(26573, -1, 0.04, -1, 0.04, 'Paladin - Consecration'),
-(879, 0.15, -1, 0.15, -1, 'Paladin - Exorcism'),
-(19750, 1, -1, -1, -1, 'Paladin - Flash of Light'),
-(66922, 0, 0, 0, 0, 'Paladin - Flash of Light'),
-(53595, 0, 0, 0, 0, 'Paladin - Hammer of the Righteous'),
-(24275, 0.15, -1, 0.15, -1, 'Paladin - Hammer of Wrath'),
-(67485, 0, -1, 0.5, -1, 'Paladin - Hand of Reckoning triggered'),
-(635, 1.66, -1, -1, -1, 'Paladin - Holy Light'),
-(20925, 0.09, -1, 0.056, -1, 'Paladin - Holy Shield'),
-(25914, 0.81, -1, -1, -1, 'Paladin - Holy Shock Triggered Heal Rank 1'),
-(25912, 0.4286, -1, -1, -1, 'Paladin - Holy Shock Triggered Hurt Rank 1'),
-(31803, -1, 0.0176, -1, 0.03, 'Paladin - Holy Vengeance'),
-(2812, 0.07, -1, 0.07, -1, 'Paladin - Holy Wrath'),
-(31898, 0.25, -1, 0.16, -1, 'Paladin - Judgement of Blood Enemy'),
-(32220, 0.0833, -1, 0.0533, -1, 'Paladin - Judgement of Blood Self'),
-(20467, 0.25, -1, 0.16, -1, 'Paladin - Judgement of Command'),
-(53733, 0.22, -1, 0.14, -1, 'Paladin - Judgement of Corruption'),
-(20187, 0.32, 0, 0.2, 0, 'Paladin - Judgement of Righteousness'),
-(53726, 0.25, -1, 0.16, -1, 'Paladin - Judgement of the Martyr Enemy'),
-(53725, 0.0833, -1, 0.0533, -1, 'Paladin - Judgement of the Martyr Self'),
-(31804, 0.22, 0, 0.14, 0, 'Paladin - Judgement of Vengeance'),
-(54158, 0.25, 0, 0.16, 0, 'Paladin - Judgement (Seal of Light, Seal of Wisdom, Seal of Justice)'),
-(7294, 0.033, -1, -1, -1, 'Paladin - Retribution Aura'),
-(58597, 0.75, -1, -1, -1, 'Paladin - Sacred Shield'),
-(53601, 0.75, -1, -1, -1, 'Paladin - Sacred Shield'),
-(31893, 0, 0, 0, 0, 'Paladin - Seal of Blood Proc Enemy'),
-(32221, 0, 0, 0, 0, 'Paladin - Seal of Blood Proc Self'),
-(20424, 0, 0, 0, 0, 'Paladin - Seal of Command Proc'),
-(20167, 0.15, -1, 0.15, -1, 'Paladin - Seal of Light Proc'),
-(25742, 0, -1, 0, -1, 'Paladin - Seal of Righteousness Dummy Proc'),
-(53719, 0, 0, 0, 0, 'Paladin - Seal of the Martyr Proc Enemy'),
-(53718, 0, 0, 0, 0, 'Paladin - Seal of the Martyr Proc Self'),
-(53600, 0, 0, 0, 0 ,'Paladin - Shield of Righteousness'),
-(20267, 0, 0, 0, 0, 'Paladin - Judgement of Light Proc'),
-(25997, 0, 0, 0, 0, 'Paladin - Eye for an Eye'),
-(64891, -1, 0, -1, -1, 'Paladin - T8 Holy 2P - Holy Mending'),
-(50256, -1, -1, 0.08, -1, 'Pet Skills - Bear (Swipe)'),
-(32546, 0.8068, -1, -1, -1, 'Priest - Binding Heal'),
-(27813, 0, 0, 0, 0, 'Priest - Blessed Recovery Rank 1'),
-(34861, 0.402, -1, -1, -1, 'Priest - Circle of Healing'),
-(19236, 0.8068, -1, -1, -1, 'Priest - Desperate Prayer'),
-(2944, -1, 0.1849, -1, -1, 'Priest - Devouring Plague'),
-(64844, 0.564, -1, -1, -1, 'Priest - Divine Hymn'),
-(63544, 0, -1, -1, -1, 'Priest - Empowered Renew'),
-(2061, 0.8068, -1, -1, -1, 'Priest - Flash Heal'),
-(2060, 1.6135, -1, -1, -1, 'Priest - Greater Heal'),
-(14914, 0.5711, 0.024, -1, -1, 'Priest - Holy Fire'),
-(15237, 0.1606, -1, -1, -1, 'Priest - Holy Nova Damage'),
-(23455, 0.3035, -1, -1, -1, 'Priest - Holy Nova Heal Rank 1'),
-(8129, 0, 0, 0, 0, 'Priest - Mana Burn'),
-(8092, 0.428, -1, -1, -1, 'Priest - Mind Blast'),
-(58381, 0.257, -1, -1, -1, 'Priest - Mind Flay'),
-(49821, 0.2861, -1, -1, -1, 'Priest - Mind Sear Trigger Rank 1'),
-(47750, 0.5362, -1, -1, -1, 'Priest - Penance Heal (Rank 1)'),
-(52983, 0.5362, -1, -1, -1, 'Priest - Penance Heal (Rank 2)'),
-(52954, 0.5362, -1, -1, -1, 'Priest - Penance Heal (Rank 3)'),
-(58985, 0.5362, -1, -1, -1, 'Priest - Penance Heal (Rank 4)'),
-(47666, 0.229, -1, -1, -1, 'Priest - Penance Hurt (Rank 1)'),
-(52998, 0.229, -1, -1, -1, 'Priest - Penance Hurt (Rank 2)'),
-(52999, 0.229, -1, -1, -1, 'Priest - Penance Hurt (Rank 3)'),
-(53000, 0.229, -1, -1, -1, 'Priest - Penance Hurt (Rank 4)'),
-(17, 0.8068, -1, -1, -1, 'Priest - Power Word: Shield'),
-(596, 0.526, -1, -1, -1, 'Priest - Prayer of Healing'),
-(33110, 0.8068, 0, 0, 0, 'Priest - Prayer of Mending Heal Proc'),
-(33619, 0, 0, 0, 0, 'Priest - Reflective Shield'),
-(139, -1, 0.376, -1, -1, 'Priest - Renew'),
-(32379, 0.4296, -1, -1, -1, 'Priest - Shadow Word: Death'),
-(589, -1, 0.1829, -1, -1, 'Priest - Shadow Word: Pain'),
-(34433, 0.65, -1, -1, -1, 'Priest - Shadowfiend'),
-(585, 0.714, -1, -1, -1, 'Priest - Smite'),
-(34914, -1, 0.4, -1, -1, 'Priest - Vampiric Touch'),
-(64085, 1.2, -1, -1, -1, 'Priest - Vampiric Touch (Dispelled)'),
-(7001, -1, 0.3333, -1, -1, 'Priest - Lightwell Renew Rank 1'),
-(63675, 0, 0, 0, 0, 'Priest - Improved Devouring Plague'),
-(56131, 0, 0, 0, 0, 'Priest - Glyph of Dispel Magic'),
-(56160, 0, 0, 0, 0, 'Priest - Glyph of Power Word: Shield'),
-(2818, 0, 0, 0, 0.03, 'Rogue - Deadly Poison All Ranks($AP*0.12 / number of ticks)'),
-(703, -1, -1, -1, 0.07, 'Rogue - Garrote'),
-(1776, -1, -1, 0.21, -1, 'Rogue - Gouge'),
-(8680, -1, -1, 0.1, -1, 'Rogue - Instant Poison Rank 1'),
-(8685, -1, -1, 0.1, -1, 'Rogue - Instant Poison Rank 2'),
-(8689, -1, -1, 0.1, -1, 'Rogue - Instant Poison Rank 3'),
-(11335, -1, -1, 0.1, -1, 'Rogue - Instant Poison Rank 4'),
-(11336, -1, -1, 0.1, -1, 'Rogue - Instant Poison Rank 5'),
-(11337, -1, -1, 0.1, -1, 'Rogue - Instant Poison Rank 6'),
-(26890, -1, -1, 0.1, -1, 'Rogue - Instant Poison Rank 7'),
-(57964, -1, -1, 0.1, -1, 'Rogue - Instant Poison Rank 8'),
-(57965, -1, -1, 0.1, -1, 'Rogue - Instant Poison Rank 9'),
-(13218, -1, -1, 0.04, -1, 'Rogue - Wound Poison Rank 1'),
-(13222, -1, -1, 0.04, -1, 'Rogue - Wound Poison Rank 2'),
-(13223, -1, -1, 0.04, -1, 'Rogue - Wound Poison Rank 3'),
-(13224, -1, -1, 0.04, -1, 'Rogue - Wound Poison Rank 4'),
-(27189, -1, -1, 0.04, -1, 'Rogue - Wound Poison Rank 5'),
-(57974, -1, -1, 0.04, -1, 'Rogue - Wound Poison Rank 6'),
-(57975, -1, -1, 0.04, -1, 'Rogue - Wound Poison Rank 7'),
-(1064, 1.34, -1, -1, -1, 'Shaman - Chain Heal'),
-(421, 0.57, -1, -1, -1, 'Shaman - Chain Lightning'),
-(974, 0.4762, -1, -1, -1, 'Shaman - Earth Shield'),
-(379, 0, 0, 0, 0, 'Shaman - Earth Shield Triggered'),
-(8042, 0.3858, -1, -1, -1, 'Shaman - Earth Shock'),
-(8050, 0.2142, 0.1, -1, -1, 'Shaman - Flame Shock'),
-(10444, 0, 0, 0, 0, 'Shaman - Flametongue Trigger'),
-(8026, 0.1, -1, -1, -1, 'Shaman - Flametongue Weapon Proc Rank 1'),
-(58788, 0.1, -1, -1, -1, 'Shaman - Flametongue Weapon Proc Rank 10'),
-(8028, 0.1, -1, -1, -1, 'Shaman - Flametongue Weapon Proc Rank 2'),
-(8029, 0.1, -1, -1, -1, 'Shaman - Flametongue Weapon Proc Rank 3'),
-(10445, 0.1, -1, -1, -1, 'Shaman - Flametongue Weapon Proc Rank 4'),
-(16343, 0.1, -1, -1, -1, 'Shaman - Flametongue Weapon Proc Rank 5'),
-(16344, 0.1, -1, -1, -1, 'Shaman - Flametongue Weapon Proc Rank 6'),
-(25488, 0.1, -1, -1, -1, 'Shaman - Flametongue Weapon Proc Rank 7'),
-(58786, 0.1, -1, -1, -1, 'Shaman - Flametongue Weapon Proc Rank 8'),
-(58787, 0.1, -1, -1, -1, 'Shaman - Flametongue Weapon Proc Rank 9'),
-(8056, 0.3858, -1, -1, -1, 'Shaman - Frost Shock'),
-(8034, 0.1, -1, -1, -1, 'Shaman - Frostbrand Attack Rank 1'),
-(8037, 0.1, -1, -1, -1, 'Shaman - Frostbrand Attack Rank 2'),
-(10458, 0.1, -1, -1, -1, 'Shaman - Frostbrand Attack Rank 3'),
-(16352, 0.1, -1, -1, -1, 'Shaman - Frostbrand Attack Rank 4'),
-(16353, 0.1, -1, -1, -1, 'Shaman - Frostbrand Attack Rank 5'),
-(25501, 0.1, -1, -1, -1, 'Shaman - Frostbrand Attack Rank 6'),
-(58797, 0.1, -1, -1, -1, 'Shaman - Frostbrand Attack Rank 7'),
-(58798, 0.1, -1, -1, -1, 'Shaman - Frostbrand Attack Rank 8'),
-(58799, 0.1, -1, -1, -1, 'Shaman - Frostbrand Attack Rank 9'),
-(2645, 0, 0, 0, 0, 'Shaman - Glyph of Ghost Wolf'),
-(52042, 0.0445, 0.0445, -1, -1, 'Shaman - Healing Stream Totem Triggered Heal'),
-(331, 1.6106, -1, -1, -1, 'Shaman - Healing Wave'),
-(51505, 0.5714, -1, -1, -1, 'Shaman - Lava Burst'),
-(8004, 0.8082, -1, -1, -1, 'Shaman - Lesser Healing Wave'),
-(403, 0.7143, -1, -1, -1, 'Shaman - Lightning Bolt'),
-(26364, 0.33, -1, -1, -1, 'Shaman - Lightning Shield Proc Rank 1'),
-(45284, 0.357, -1, -1, -1, 'Shaman - LO Lightning Bolt'),
-(45297, 0.285, -1, -1, -1, 'Shaman - LO Chain Lightning'),
-(8188, 0.1, -1, -1, -1, 'Shaman - Magma Totam Passive Rank 1'),
-(10582, 0.1, -1, -1, -1, 'Shaman - Magma Totam Passive Rank 2'),
-(10583, 0.1, -1, -1, -1, 'Shaman - Magma Totam Passive Rank 3'),
-(10584, 0.1, -1, -1, -1, 'Shaman - Magma Totam Passive Rank 4'),
-(25551, 0.1, -1, -1, -1, 'Shaman - Magma Totam Passive Rank 5'),
-(58733, 0.1, -1, -1, -1, 'Shaman - Magma Totam Passive Rank 6'),
-(58736, 0.1, -1, -1, -1, 'Shaman - Magma Totam Passive Rank 7'),
-(61295, 0.4, 0.18, -1, -1, 'Shaman - Riptide'),
-(3606, 0.1667, -1, -1, -1, 'Shaman - Searing Totem Attack Rank 1'),
-(58702, 0.1667, -1, -1, -1, 'Shaman - Searing Totem Attack Rank 10'),
-(6350, 0.1667, -1, -1, -1, 'Shaman - Searing Totem Attack Rank 2'),
-(6351, 0.1667, -1, -1, -1, 'Shaman - Searing Totem Attack Rank 3'),
-(6352, 0.1667, -1, -1, -1, 'Shaman - Searing Totem Attack Rank 4'),
-(10435, 0.1667, -1, -1, -1, 'Shaman - Searing Totem Attack Rank 5'),
-(10436, 0.1667, -1, -1, -1, 'Shaman - Searing Totem Attack Rank 6'),
-(25530, 0.1667, -1, -1, -1, 'Shaman - Searing Totem Attack Rank 7'),
-(58700, 0.1667, -1, -1, -1, 'Shaman - Searing Totem Attack Rank 8'),
-(58701, 0.1667, -1, -1, -1, 'Shaman - Searing Totem Attack Rank 9'),
-(52752, 0, 0, 0, 0, 'Shaman - Ancestral Awakening'),
-(70809, 0, 0, 0, 0, 'Shaman - Item - T10 Restoration 4P Bonus'),
-(55533, 0, 0, 0, 0, 'Shaman - Glyph of Healing Wave'),
-(50796, 0.7139, -1, -1, -1, 'Warlock - Chaos Bolt'),
-(17962, 0, 0, 0, 0, 'Warlock - Conflagrate'),
-(172, -1, 0.2, -1, -1, 'Warlock - Corruption'),
-(980, -1, 0.1, -1, -1, 'Warlock - Curse of Agony'),
-(603, -1, 2, -1, -1, 'Warlock - Curse of Doom'),
-(18220, 0.96, -1, -1, -1, 'Warlock - Dark Pact Rank 1'),
-(6789, 0.2143, -1, -1, -1, 'Warlock - Death Coil'),
-(689, -1, 0.143, -1, -1, 'Warlock - Drain Life'),
-(5138, 0, 0, 0, 0, 'Warlock - Drain Mana'),
-(1120, -1, 0.429, -1, -1, 'Warlock - Drain Soul'),
-(28176, 0, 0, 0, 0, 'Warlock - Fel Armor'),
-(18790, 0, 0, 0, 0, 'Warlock - Fel Stamina'),
-(54181, 0, -1, -1, -1, 'Warlock - Fel Synergy'),
-(48181, 0.4793, -1, -1, -1, 'Warlock - Haunt'),
-(755, -1, 0.4485, -1, -1, 'Warlock - Health Funnel'),
-(1949, -1, 0.0949, -1, -1, 'Warlock - Hellfire'),
-(5857, 0.145, -1, -1, -1, 'Warlock - Hellfire Effect on Enemy Rank 1'),
-(348, 0.2, 0.2, -1, -1, 'Warlock - Immolate'),
-(29722, 0.7139, -1, -1, -1, 'Warlock - Incinerate'),
-(42223, 0.286, -1, -1, -1, 'Warlock - Rain of Fire Triggered Rank 1'),
-(5676, 0.4293, -1, -1, -1, 'Warlock - Searing Pain'),
-(27243, -1, 0.25, -1, -1, 'Warlock - Seed of Corruption'),
-(27285, 0.2129, -1, -1, -1, 'Warlock - Seed of Corruption Proc'),
-(686, 0.8569, -1, -1, -1, 'Warlock - Shadow Bolt'),
-(6229, 0.3, -1, -1, -1, 'Warlock - Shadow Ward'),
-(17877, 0.4293, -1, -1, -1, 'Warlock - Shadowburn'),
-(47960, 0.1064, 0.0667, -1, -1, 'Warlock - Shadowflame Rank 1'),
-(61291, 0.1064, 0.0667, -1, -1, 'Warlock - Shadowflame Rank 2'),
-(30283, 0.1932, -1, -1, -1, 'Warlock - Shadowfury'),
-(63106, 0, 0, 0, 0, 'Warlock - Siphon Life Triggered'),
-(38395, 0 ,0, 0, 0, 'Warlock - Siphon Essence T6 2P proc'),
-(6353, 1.15, -1, -1, -1, 'Warlock - Soul Fire'),
-(30294, 0, 0, 0, 0, 'Warlock - Soul Leech'),
-(30108, -1, 0.2, -1, -1, 'Warlock - Unstable Affliction'),
-(31117, 1.8, -1, -1, -1, 'Warlock - Unstable Affliction Dispell'),
-(12162, 0, 0, 0, 0, 'Warrior - Deep Wounds'),
-(57755, -1, -1, 0.5, -1, 'Warrior - Heroic Throw'),
-(20253, -1, -1, 0.12, -1, 'Warrior - Intercept'),
-(61491, -1, -1, 0.12, -1, 'Warrior - Intercept'),
-(6572, -1, -1, 0.207, -1, 'Warrior - Revenge'),
-(64382, -1, -1, 0.5, -1, 'Warrior - Shattering Throw'),
-(6343, -1, -1, 0.12, -1, 'Warrior - Thunder Clap'),
-(54757, 0, -1, -1, -1, 'Hand-Mounted Pyro Rocket - Pyro Rocket'),
-(45055, 0, -1, -1, -1, 'Timbal''s Focusing Crystal - Shadow Bolt'),
-(60203, 0, -1, -1, -1, 'Darkmoon Card: Death'),
-(60488, 0, -1, -1, -1, 'Extract of Necromatic Power'),
-(45429, 0, -1, -1, -1, 'Shattered Sun Pendant of Acumen - Arcane Bolt'),
-(56161, 0, 0, 0, 0, 'Priest - Glyph of Prayer of Healing'),
-(46579, 0, 0, 0, 0, 'Deathfrost - Enchantment');
-/*!40000 ALTER TABLE `spell_bonus_data` ENABLE KEYS */;
-UNLOCK TABLES;
-
---
--- Table structure for table `spell_dbc`
---
-
-DROP TABLE IF EXISTS `spell_dbc`;
-/*!40101 SET @saved_cs_client = @@character_set_client */;
-/*!40101 SET character_set_client = utf8 */;
-CREATE TABLE `spell_dbc` (
- `Id` int(10) unsigned NOT NULL,
- `Dispel` tinyint(3) unsigned NOT NULL DEFAULT '0',
- `Mechanic` tinyint(3) unsigned NOT NULL DEFAULT '0',
- `Attributes` int(10) unsigned NOT NULL DEFAULT '0',
- `AttributesEx` int(10) unsigned NOT NULL DEFAULT '0',
- `AttributesEx2` int(10) unsigned NOT NULL DEFAULT '0',
- `AttributesEx3` int(10) unsigned NOT NULL DEFAULT '0',
- `AttributesEx4` int(10) unsigned NOT NULL DEFAULT '0',
- `AttributesEx5` int(10) unsigned NOT NULL DEFAULT '0',
- `Stances` int(10) unsigned NOT NULL DEFAULT '0',
- `StancesNot` int(10) unsigned NOT NULL DEFAULT '0',
- `Targets` int(10) unsigned NOT NULL DEFAULT '0',
- `CastingTimeIndex` tinyint(3) unsigned NOT NULL DEFAULT '1',
- `AuraInterruptFlags` int(10) unsigned NOT NULL DEFAULT '0',
- `ProcFlags` int(10) unsigned NOT NULL DEFAULT '0',
- `ProcChance` tinyint(3) unsigned NOT NULL DEFAULT '0',
- `ProcCharges` tinyint(3) unsigned NOT NULL DEFAULT '0',
- `MaxLevel` tinyint(3) unsigned NOT NULL DEFAULT '0',
- `BaseLevel` tinyint(3) unsigned NOT NULL DEFAULT '0',
- `SpellLevel` tinyint(3) unsigned NOT NULL DEFAULT '0',
- `DurationIndex` smallint(5) unsigned NOT NULL DEFAULT '0',
- `RangeIndex` tinyint(3) unsigned NOT NULL DEFAULT '1',
- `StackAmount` tinyint(3) unsigned NOT NULL DEFAULT '0',
- `EquippedItemClass` int(11) NOT NULL DEFAULT '-1',
- `EquippedItemSubClassMask` int(11) NOT NULL DEFAULT '0',
- `EquippedItemInventoryTypeMask` int(11) NOT NULL DEFAULT '0',
- `Effect1` tinyint(3) unsigned NOT NULL DEFAULT '0',
- `Effect2` tinyint(3) unsigned NOT NULL DEFAULT '0',
- `Effect3` tinyint(3) unsigned NOT NULL DEFAULT '0',
- `EffectDieSides1` int(11) NOT NULL DEFAULT '0',
- `EffectDieSides2` int(11) NOT NULL DEFAULT '0',
- `EffectDieSides3` int(11) NOT NULL DEFAULT '0',
- `EffectRealPointsPerLevel1` float NOT NULL DEFAULT '0',
- `EffectRealPointsPerLevel2` float NOT NULL DEFAULT '0',
- `EffectRealPointsPerLevel3` float NOT NULL DEFAULT '0',
- `EffectBasePoints1` int(11) NOT NULL DEFAULT '0',
- `EffectBasePoints2` int(11) NOT NULL DEFAULT '0',
- `EffectBasePoints3` int(11) NOT NULL DEFAULT '0',
- `EffectMechanic1` tinyint(3) unsigned NOT NULL DEFAULT '0',
- `EffectMechanic2` tinyint(3) unsigned NOT NULL DEFAULT '0',
- `EffectMechanic3` tinyint(3) unsigned NOT NULL DEFAULT '0',
- `EffectImplicitTargetA1` tinyint(3) unsigned NOT NULL DEFAULT '0',
- `EffectImplicitTargetA2` tinyint(3) unsigned NOT NULL DEFAULT '0',
- `EffectImplicitTargetA3` tinyint(3) unsigned NOT NULL DEFAULT '0',
- `EffectImplicitTargetB1` tinyint(3) unsigned NOT NULL DEFAULT '0',
- `EffectImplicitTargetB2` tinyint(3) unsigned NOT NULL DEFAULT '0',
- `EffectImplicitTargetB3` tinyint(3) unsigned NOT NULL DEFAULT '0',
- `EffectRadiusIndex1` tinyint(3) unsigned NOT NULL DEFAULT '0',
- `EffectRadiusIndex2` tinyint(3) unsigned NOT NULL DEFAULT '0',
- `EffectRadiusIndex3` tinyint(3) unsigned NOT NULL DEFAULT '0',
- `EffectApplyAuraName1` smallint(5) unsigned NOT NULL DEFAULT '0',
- `EffectApplyAuraName2` smallint(5) unsigned NOT NULL DEFAULT '0',
- `EffectApplyAuraName3` smallint(5) unsigned NOT NULL DEFAULT '0',
- `EffectAmplitude1` int(11) NOT NULL DEFAULT '0',
- `EffectAmplitude2` int(11) NOT NULL DEFAULT '0',
- `EffectAmplitude3` int(11) NOT NULL DEFAULT '0',
- `EffectMultipleValue1` float NOT NULL DEFAULT '0',
- `EffectMultipleValue2` float NOT NULL DEFAULT '0',
- `EffectMultipleValue3` float NOT NULL DEFAULT '0',
- `EffectMiscValue1` int(11) NOT NULL DEFAULT '0',
- `EffectMiscValue2` int(11) NOT NULL DEFAULT '0',
- `EffectMiscValue3` int(11) NOT NULL DEFAULT '0',
- `EffectMiscValueB1` int(11) NOT NULL DEFAULT '0',
- `EffectMiscValueB2` int(11) NOT NULL DEFAULT '0',
- `EffectMiscValueB3` int(11) NOT NULL DEFAULT '0',
- `EffectTriggerSpell1` int(10) unsigned NOT NULL DEFAULT '0',
- `EffectTriggerSpell2` int(10) unsigned NOT NULL DEFAULT '0',
- `EffectTriggerSpell3` int(10) unsigned NOT NULL DEFAULT '0',
- `EffectSpellClassMaskA1` int(10) unsigned NOT NULL DEFAULT '0',
- `EffectSpellClassMaskA2` int(10) unsigned NOT NULL DEFAULT '0',
- `EffectSpellClassMaskA3` int(10) unsigned NOT NULL DEFAULT '0',
- `EffectSpellClassMaskB1` int(10) unsigned NOT NULL DEFAULT '0',
- `EffectSpellClassMaskB2` int(10) unsigned NOT NULL DEFAULT '0',
- `EffectSpellClassMaskB3` int(10) unsigned NOT NULL DEFAULT '0',
- `EffectSpellClassMaskC1` int(10) unsigned NOT NULL DEFAULT '0',
- `EffectSpellClassMaskC2` int(10) unsigned NOT NULL DEFAULT '0',
- `EffectSpellClassMaskC3` int(10) unsigned NOT NULL DEFAULT '0',
- `MaxTargetLevel` tinyint(3) unsigned NOT NULL DEFAULT '0',
- `SpellFamilyName` tinyint(3) unsigned NOT NULL DEFAULT '0',
- `SpellFamilyFlags1` int(10) unsigned NOT NULL DEFAULT '0',
- `SpellFamilyFlags2` int(10) unsigned NOT NULL DEFAULT '0',
- `SpellFamilyFlags3` int(10) unsigned NOT NULL DEFAULT '0',
- `MaxAffectedTargets` tinyint(3) unsigned NOT NULL DEFAULT '0',
- `DmgClass` tinyint(3) unsigned NOT NULL DEFAULT '0',
- `PreventionType` tinyint(3) unsigned NOT NULL DEFAULT '0',
- `DmgMultiplier1` float NOT NULL DEFAULT '0',
- `DmgMultiplier2` float NOT NULL DEFAULT '0',
- `DmgMultiplier3` float NOT NULL DEFAULT '0',
- `AreaGroupId` int(11) NOT NULL DEFAULT '0',
- `SchoolMask` int(10) unsigned NOT NULL DEFAULT '0',
- `Comment` text NOT NULL,
- PRIMARY KEY (`Id`)
-) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Custom spell.dbc entries';
-/*!40101 SET character_set_client = @saved_cs_client */;
-
---
--- Dumping data for table `spell_dbc`
---
-
-LOCK TABLES `spell_dbc` WRITE;
-/*!40000 ALTER TABLE `spell_dbc` DISABLE KEYS */;
-INSERT INTO `spell_dbc` (`Id`,`Dispel`,`Mechanic`,`Attributes`,`AttributesEx`,`AttributesEx2`,`AttributesEx3`,`AttributesEx4`,`AttributesEx5`,`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
-(62388, 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, 0, 0, 0, 0, 0, 'Demonic Circle: Teleport(48020) - casterAuraSpell'),
-(65142, 3, 22, 0, 0, 0, 128, 0, 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, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 255, 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, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 'Crypt Fever - SPELL_AURA_LINKED'),
-(34145, 0, 0, 0, 0, 0, 67108864, 0, 0, 0, 0, 0, 1, 0, 0, 101, 0, 0, 80, 80, 0, 1, 0, -1, 0, 0, 64, 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, 29886, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 1, 'Ritual of Souls Rank 1 - Trigger Create Soulwell (29886)'),
-(58888, 0, 0, 0, 0, 0, 67108864, 0, 0, 0, 0, 0, 1, 0, 0, 101, 0, 0, 68, 68, 0, 1, 0, -1, 0, 0, 64, 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, 58889, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 1, 'Ritual of Souls Rank 2 - Trigger Create Soulwell (58889)'),
-(61988, 0, 0, 671089024, 268436480, 4, 269484032, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 25, 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, 0, 0, 0, 0, 0, 0, 0, 'Divine Shield Exclude Aura - 61988'),
-(100000, 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, 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, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 'Bone Shield cooldown - serverside spell'),
-(100001, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 8, 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, 5, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 1, 'Drain Soul increased damage - serverside spell'),
-(42876, 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, 'Quest 9275 reward serverside spell'),
-(44987, 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, 'Quest 11521 reward serverside spell'),
-(48803, 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, 'Quest 12214 reward serverside spell'),
-(68496, 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, 'Item_template serverside spell'),
-(72958, 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, 'Item_template serverside spell'),
-(32780, 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, 'Quest 10040 reward serverside spell'),
-(45453, 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, 'Quest 11587 reward serverside spell'),
-(25347, 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, 'Item_template serverside spell'),
-(45315, 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, 'Quest 11566 reward serverside spell'),
-(43236, 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, 'Quest 11288 reward serverside spell'),
-(43459, 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, 'Quest 11332 reward serverside spell'),
-(43499, 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, 'Quest 11250 reward serverside spell'),
-(44275, 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, 'Quest 11432 reward serverside spell'),
-(64689, 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, 'Quest 13854 and 13862 reward serverside spell'),
-(50574, 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, 'Quest 12597 reward serverside spell'),
-(71356, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 'Spelldifficulty_dbc id:2108 spellid0 serverside spell'),
-(71803, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 'Spelldifficulty_dbc id:2108 spellid1 serverside spell'),
-(72111, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 'Spelldifficulty_dbc id:2136 spellid0 serverside spell'),
-(72125, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 'Spelldifficulty_dbc id:2136 spellid1 serverside spell'),
-(70816, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 'Spelldifficulty_dbc id:2146 spellid0 serverside spell'),
-(72233, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 'Spelldifficulty_dbc id:2146 spellid1 serverside spell'),
-(72234, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 'Spelldifficulty_dbc id:2146 spellid2 serverside spell'),
-(72235, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 'Spelldifficulty_dbc id:2146 spellid3 serverside spell'),
-(58428, 0, 0, 671089024, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 100, 0, 0, 0, 0, 18, 1, 0, -1, 0, 0, 6, 0, 0, 1, 0, 0, 0, 0, 0, 9, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 226, 0, 0, 20000, 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, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 1, 'Overkill - aura remove spell'),
-(56817, 0, 0, 384, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 16, 101, 1, 0, 67, 67, 1, 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, 0, 0, 0, 0, 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, 0, 0, 0, 0, 0, 0, 0, 'Rune strike proc'),
-(24899, 0, 0, 400, 1024, 0, 0, 2097152, 0, 144, 0, 0, 1, 0, 0, 101, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 6, 0, 0, 1, 0, 0, 0, 0, 0, -1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 137, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Heart of the Wild Bear Effect'),
-(24900, 0, 0, 400, 1024, 0, 0, 2097152, 0, 1, 0, 0, 1, 0, 0, 101, 0, 0, 0, 0, 21, 1, 0, -1, 0, 0, 6, 0, 0, 1, 0, 0, 0, 0, 0, -1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 166, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 'Heart of the Wild Cat Effect'),
-(43503, 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, 'Quest 11261 reward serverside spell'),
-(39613, 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, 'Quest 10967 reward serverside spell'),
-(34448, 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, 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, 0, 0, 0, 0, 0, 'Serverside spell orb of translocation (gobjid=180911)'),
-(34452, 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, 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, 0, 0, 0, 0, 0, 'Serverside spell orb of translocation (gobjid=180912)'),
-(39616, 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, 'Quest 10966 reward serverside spell'),
-(11202, 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, 'Item 3776 spellid_1 serverside spell'),
-(25359, 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, 'Item 21293 spellid_2 serverside spell'),
-(40145, 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, 'Quest 11000 RewSpellCast serverside spell'),
-(45767, 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, 'Quest 11670 RewSpellCast serverside spell'),
-(71098, 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, 'Quest 24451 RewSpellCast serverside spell'),
-(70878, 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, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 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, 0, 0, 0, 0, 0, 'Creature 40160 creature_addon serverside spell'),
-(38406, 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, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 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, 0, 0, 0, 0, 0, 'Quest 10721 RewSpellCast serverside spell'),
-(44805, 0, 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, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 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, 0, 0, 0, 0, 0, 'Aura used in creature_addon - serverside spell'),
-(3617, 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, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 'NPC 32958 suicide spell'),
-(58630, 0, 0, 536870912, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 101, 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, 18, 0, 0, 16, 0, 0, 28, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 'Mal''ganis credit marker'),
-(68572, 0, 0, 536870912, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 101, 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, 18, 0, 0, 16, 0, 0, 28, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 'Grand Champions credit marker'),
-(68574, 0, 0, 536870912, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 101, 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, 18, 0, 0, 16, 0, 0, 28, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 'Argent Champion credit marker'),
-(59046, 0, 0, 536870912, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 101, 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, 18, 0, 0, 16, 0, 0, 28, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 'Tribunal of Ages credit marker'),
-(68184, 0, 0, 536870912, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 101, 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, 18, 0, 0, 16, 0, 0, 28, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 'Faction Champions credit marker'),
-(59450, 0, 0, 536870912, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 101, 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, 18, 0, 0, 16, 0, 0, 28, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 'The Four Horsemen credit marker'),
-(65195, 0, 0, 536870912, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 101, 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, 18, 0, 0, 16, 0, 0, 28, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 'The Iron Council credit marker'),
-(64899, 0, 0, 536870912, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 101, 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, 18, 0, 0, 16, 0, 0, 28, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 'Hodir credit marker'),
-(64985, 0, 0, 536870912, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 101, 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, 18, 0, 0, 16, 0, 0, 28, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 'Thorim credit marker'),
-(65074, 0, 0, 536870912, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 101, 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, 18, 0, 0, 16, 0, 0, 28, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 'Freya credit marker'),
-(60937, 0, 0, 562036736, 32, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 101, 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, 0, 0, 0, 0, 0, 'Seaforium charges damaging wall achievement credit'),
-(62791, 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, 0, 0, 0, 0, 0, 'XT-002 Heart Overload Trigger Spell'),
-(65037, 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, 0, 0, 0, 0, 0, 'Nerf the Scrapbots Achievement Criteria Marker'),
-(65074, 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, 22, 0, 0, 30, 0, 0, 28, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, Freya Achievement spell - Criteria Marker);
-/*!40000 ALTER TABLE `spell_dbc` ENABLE KEYS */;
-UNLOCK TABLES;
-
---
--- Table structure for table `spell_group`
---
-
-DROP TABLE IF EXISTS `spell_group`;
-/*!40101 SET @saved_cs_client = @@character_set_client */;
-/*!40101 SET character_set_client = utf8 */;
-CREATE TABLE `spell_group` (
- `id` int(11) unsigned NOT NULL DEFAULT 0,
- `spell_id` int(11) NOT NULL DEFAULT 0,
- PRIMARY KEY (`id`, `spell_id`)
-) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Spell System';
-/*!40101 SET character_set_client = @saved_cs_client */;
-
---
--- Dumping data for table `spell_group`
---
-
-LOCK TABLES `spell_group` WRITE;
-/*!40000 ALTER TABLE `spell_group` DISABLE KEYS */;
-INSERT INTO `spell_group` (`id`, `spell_id`) VALUES
- -- SPELL_GROUP_ELIXIR_BATTLE
-(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),
- -- SPELL_GROUP_ELIXIR_GUARDIAN
-(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),
- -- SPELL_GROUP_ELIXIR_UNSTABLE
-(3, 40567),
-(3, 40568),
-(3, 40572),
-(3, 40573),
-(3, 40575),
-(3, 40576),
- -- SPELL_GROUP_ELIXIR_SHATTRATH
-(4, 41608),
-(4, 41609),
-(4, 41610),
-(4, 41611),
-(4, 46837),
-(4, 46839),
- -- Well Fed
-(1001, 19705),
-(1001, 19706),
-(1001, 19708),
-(1001, 19709),
-(1001, 19710),
-(1001, 19711),
-(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, 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, 59690),
-(1001, 59699),
-(1001, 62349),
-(1001, 64057),
-(1001, 65247),
-(1001, 65365),
-(1001, 65410),
-(1001, 65412),
-(1001, 65414),
-(1001, 65415),
-(1001, 65416),
-(1001, 66623),
-(1001, 66624),
-(1001, 69559),
-(1001, 18125),
-(1001, 18141),
-(1001, 23697),
- -- Blessing of Might
-(1002, 19740),
-(1002, 25782),
-(1002, 56520),
--- Battle Shout
-(1003, 6673),
--- Blessing of Might, Battle Shout
-(1004, -1002),
-(1004, -1003),
--- Blessing of Wisdom
-(1005, 19742),
-(1005, 25894),
-(1005, 56521),
--- Blessing of Kings
-(1006, 20217),
-(1006, 25898),
-(1006, 43223),
-(1006, 56525),
-(1006, 58054),
--- Blessing of Sanctuary
-(1007, 20911),
-(1007, 25899),
--- Blessing of Protection
-(1008, 41450),
-(1008, 23415),
--- Blessing of Light
-(1009, 32770),
--- Blessings
-(1010, -1002),
-(1010, -1005),
-(1010, -1006),
-(1010, -1007),
-(1010, -1008),
-(1010, -1009),
--- Commanding shout, Battle Shout
-(1011,-1083),
-(1011, -1003),
--- Armor Debuff (Major)
-(1012,55749), -- Acid Spit
-(1013,8647), -- Exposed Armor
-(1014,7386), -- sunder Armor
--- Armor Debuff (Minor)
-(1016,770), -- Faerie Fire
-(1016,16857), -- Faerie Fire
-(1017,56626), -- Sting
-(1018,16231), -- Curse of Recklessness
--- Melee Haste Buff
-(1020,55610), -- Improved Icy Talons
-(1021,8515), -- windfury totem
--- Melee Critical Strike Chance Buff
-(1023,17007), -- Leader of the Pack
-(1024,29801), -- Rampage
--- Attack Power Buff (Multiplier)
-(1026,53137), -- Abomination's Might
-(1027,19506), -- Trueshot Aura
-(1028,30802), -- Unleashed Rage
--- Bleed Damage Increase Debuff
-(1030,33878), -- Mangle (Bear)
-(1031,33876), -- Mangle (Cat)
-(1032,46856), -- Trauma
--- Spell Critical Strike Chance Buff
-(1034,24907), -- moonkng aura
-(1035,51466), -- elemental oath
--- Spell Critical Strike Chance Debuff
-(1037,11095), -- improved scorch
-(1038,11180), -- Winter's Chill
--- Increased Spell Damage Taken Debuff
-(1040,51099), -- Ebon Plaguebringer
-(1041,48506), -- Earth and Moon
-(1042,1490), -- Curse of the Elements
--- Increased Spell Power Buff
-(1045,52109), -- Flametongue Totem
-(1046,57658), -- Totem of Wrath
-(1046,57660), -- Totem of Wrath
-(1046,57662), -- Totem of Wrath
-(1046,57663), -- Totem of Wrath
-(1047,53646), -- Demonic Pact
--- Increased Spell Hit Chance Taken Debuff
-(1049,33600), -- Improved Faerie Fire
-(1050,33191), -- Misery
--- Percentage Haste Increase (All Types)
-(1052,48384), -- Improved Moonkin Form
-(1053,53379), -- Swift Retribution
--- Percentage Damage Increase
-(1055,34455), -- Ferocious Inspiration
-(1056,31869), -- Sanctified Retribution
--- Critical Strike Chance Taken Debuff (All types)
-(1058,20335), -- Heart of the Crusader
--- totem of wrath 1046 CHECK IT!
--- Melee Attack Speed Slow Debuff
-(1060,45477), -- Icy Touch
-(1061,48483), -- Infected Wounds
-(1062,53695), -- Judgements of the Just
-(1063,6343), -- Thunder Clap
--- Melee Hit Chance Reduction Debuff
-(1066,5570), -- Insect Swarm
-(1067,3043), -- Scorpid Sting
--- Healing Debuff
-(1070,13218), -- Wound Posion
-(1071,19434), -- Aimed Shot
-(1072,12294), -- Mortal Strike
-(1073,46910), -- Furious Attacks
--- Attack Power Debuff
-(1076,99), -- Demoralizing Roar
-(1077,702), -- Curse of Weakness
-(1078,1160), -- Demoralizing Shout
--- Agility and Strength Buff
-(1080,8076), -- Strength of Earth
-(1081,57330), -- Horn of Winter
--- Health Buff
-(1083,469), -- Commanding Shout
-(1084,6307), -- Blood Pact
--- Intellect Buff
-(1086,1459), -- Arcane Intellect
-(1104,23028), -- Arcane Brilliance
-(1087,54424), -- Fel Intelligence
--- Spirit Buff
--- fel intelegencegoes here
-(1105,14752), -- Divine Spirit
-(1106,27681), -- Prayer of Spirit
--- Damage Reduction Percentage Buff
-(1091,47930), -- Grace
-(1092,20911), -- Blessing of Sanctuary
--- Percentage Increase Healing Received Buff
-(1094,34123), -- tree of life aura
-(1095,20138), -- Improved Devotion Aura
--- Armor Increase Percentage Buff
-(1097,14893), -- Inspiration
-(1098,16177), -- Ancestral Healing
--- Cast Speed Slow
-(1100,1714), -- Curse of Tongues
-(1101,31589), -- Slow
-(1102,5760), -- Mind-numbing Poison
--- Armor Debuff (Major)
-(1015,-1012),
-(1015,-1013),
-(1015,-1014),
--- Armor Debuff (Minor)
-(1019,-1016),
-(1019,-1017),
-(1019,-1018),
--- Melee Haste Buff
-(1022,-1020),
-(1022,-1021),
--- Melee Critical Strike Chance Buff
-(1025,-1023),
-(1025,-1024),
--- Attack Power Buff (Multiplier)
-(1029,-1026),
-(1029,-1027),
-(1029,-1028),
--- Bleed Damage Increase Debuff
-(1033,-1030),
-(1033,-1031),
-(1033,-1032),
--- Spell Critical Strike Chance Buff
-(1036,-1034),
-(1036,-1035),
--- Spell Critical Strike Chance Debuff
-(1039,-1037),
-(1039,-1038),
--- Increased Spell Damage Taken Debuff
-(1043,-1040),
-(1043,-1041),
-(1043,-1042),
--- Increased Spell Power Buff
-(1048,-1045),
-(1048,-1046),
-(1048,-1047),
--- Increased Spell Hit Chance Taken Debuff
-(1051,-1049),
-(1051,-1050),
--- Percentage Haste Increase (All Types)
-(1054,-1052),
-(1054,-1053),
--- Percentage Damage Increase
-(1057,-1055),
-(1057,-1056),
--- Critical Strike Chance Taken Debuff (All types)
-(1059,-1058),
-(1059,-1046),
--- Melee Attack Speed Slow Debuff
-(1064,-1060),
-(1064,-1061),
-(1064,-1062),
-(1064,-1063),
--- Melee Hit Chance Reduction Debuff
-(1068,-1066),
-(1068,-1067),
--- Healing Debuff
-(1074,-1070),
-(1074,-1071),
-(1074,-1072),
-(1074,-1073),
--- Attack Power Debuff
-(1079,-1076),
-(1079,-1077),
-(1079,-1078),
--- Agility and Strength Buff
-(1082,-1080),
-(1082,-1081),
--- Health Buff
-(1085,-1083),
-(1085,-1084),
--- Intellect Buff
-(1088,-1086),
-(1088,-1104),
-(1088,-1087),
--- Spirit Buff
-(1090,-1087),
-(1090,-1105),
-(1090,-1106),
--- Damage Reduction Percentage Buff
-(1093,-1091),
-(1093,-1092),
--- Percentage Increase Healing Received Buff
-(1096,-1094),
-(1096,-1095),
--- Armor Increase Percentage Buff
-(1099,-1097),
-(1099,-1098),
--- Cast Speed Slow
-(1103,-1100),
-(1103,-1101),
-(1103,-1102),
--- mage freezing spells
-(1107, 122), -- Frost Nova
-(1107, 33395), -- Freeze
-(1107, 55080), -- Shattered Barrier
--- Mark/Gift of the Wild
-(1108, 1126),
-(1108, 21849),
--- Power Word/Prayer of Fortitude
-(1109, 1243),
-(1109, 21562),
--- Prayer of/Shadow Protection
-(1110, 976),
-(1110, 27683),
-(1006, 72586), -- Blessing of Forgotten Kings (Drums)
-(1108, 72588), -- Gift of the Wild (Drums)
-(1109, 72590), -- Fortitude (Scroll)
--- Immolate / Unstable Affliction
-(1112, 348),
-(1112, 30108),
--- Amplify Magic / Dampen Magic
-(1113, 1008),
-(1113, 604);
-
-/*!40000 ALTER TABLE `spell_group` ENABLE KEYS */;
-UNLOCK TABLES;
-
---
--- Table structure for table `spell_enchant_proc_data`
---
-
-DROP TABLE IF EXISTS `spell_enchant_proc_data`;
-/*!40101 SET @saved_cs_client = @@character_set_client */;
-/*!40101 SET character_set_client = utf8 */;
-CREATE TABLE `spell_enchant_proc_data` (
- `entry` int(10) unsigned NOT NULL,
- `customChance` int(10) unsigned NOT NULL DEFAULT '0',
- `PPMChance` float unsigned NOT NULL DEFAULT '0',
- `procEx` float unsigned NOT NULL DEFAULT '0'
-) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=DYNAMIC COMMENT='Spell enchant proc data';
-/*!40101 SET character_set_client = @saved_cs_client */;
-
---
--- Dumping data for table `spell_enchant_proc_data`
---
-
-LOCK TABLES `spell_enchant_proc_data` WRITE;
-/*!40000 ALTER TABLE `spell_enchant_proc_data` DISABLE KEYS */;
-INSERT INTO spell_enchant_proc_data (`entry`,`customChance`,`PPMChance`,`procEx`) VALUES
- -- Frostbrand Weapon
-(2, 0, 8.8,0),
-(12, 0, 8.8,0),
-(524, 0, 8.8,0),
-(1667, 0, 8.8,0),
-(1668, 0, 8.8,0),
-(2635, 0, 8.8,0),
-(3782, 0, 8.8,0),
-(3783, 0, 8.8,0),
-(3784, 0, 8.8,0),
- -- Wound Poison
-(703, 0, 21.43,0),
-(704, 0, 21.43,0),
-(705, 0, 21.43,0),
-(706, 0, 21.43,0),
-(2644, 0, 21.43,0),
-(3772, 0, 21.43,0),
-(3773, 0, 21.43,0),
- -- Instant Poison
-(323, 0, 8.53,0),
-(324, 0, 8.53,0),
-(325, 0, 8.53,0),
-(623, 0, 8.53,0),
-(624, 0, 8.53,0),
-(625, 0, 8.53,0),
-(2641, 0, 8.53,0),
-(3768, 0, 8.53,0),
-(3769, 0, 8.53,0),
- -- Fiery Weapon
-(803, 0, 6.0,0),
- -- Demonslaying
-(912, 0, 6.0,0),
- -- Icy Weapon
-(1894, 0, 3.0,0),
- -- Lifestealing
-(1898, 0, 6.0,0),
- -- Unholy Weapon
-(1899, 0, 1.0,0),
- -- Crusader
-(1900, 0, 1.0,0),
- -- Mongoose
-(2673, 0, 1.0,0),
- -- Battlemaster
-(2675, 0, 1.0,0),
- -- Executioner
-(3225, 0, 1.0,0),
- -- Icebreaker Weapon
-(3239, 0, 3.0,0),
- -- Lifeward
-(3241, 0, 3.0,0),
- -- Giantslaying
-(3251, 0, 3.0,0),
- -- Deathfrost
-(3273, 0, 3.0,0),
- -- Rune of the Fallen Crusader
-(3368, 0, 1.0,0),
- -- Rune of Cinderglacier
-(3369, 0, 1.0,0),
- -- Berserking
-(3789, 0, 1.0,0),
- -- Blade Ward
-(3869, 0, 1.0,0);
-/*!40000 ALTER TABLE `spell_enchant_proc_data` ENABLE KEYS */;
-UNLOCK TABLES;
-
---
--- Table structure for table `spell_learn_spell`
---
-
-DROP TABLE IF EXISTS `spell_learn_spell`;
-/*!40101 SET @saved_cs_client = @@character_set_client */;
-/*!40101 SET character_set_client = utf8 */;
-CREATE TABLE `spell_learn_spell` (
- `entry` smallint(5) unsigned NOT NULL DEFAULT '0',
- `SpellID` smallint(5) unsigned NOT NULL DEFAULT '0',
- `Active` tinyint(3) unsigned NOT NULL DEFAULT '1',
- PRIMARY KEY (`entry`,`SpellID`)
-) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Item System';
-/*!40101 SET character_set_client = @saved_cs_client */;
-
---
--- Dumping data for table `spell_learn_spell`
---
-
-LOCK TABLES `spell_learn_spell` WRITE;
-/*!40000 ALTER TABLE `spell_learn_spell` DISABLE KEYS */;
-INSERT INTO `spell_learn_spell` VALUES
-(53428,53341,1),
-(53428,53343,1),
-(17002,24867,0),
-(24866,24864,0),
-(33872,47179,0),
-(33873,47180,0),
-(33943,34090,1),
-(58984,21009,1);
-/*!40000 ALTER TABLE `spell_learn_spell` ENABLE KEYS */;
-UNLOCK TABLES;
-
---
--- Table structure for table `spell_linked_spell`
---
-
--- --------
--- LINKED
--- --------
--- spell1 / spell2 / type
--- + + 0 caster casts 2 when casts 1
--- + - 0 caster removes aura 2 when casts 1
--- + + 1 target casts 2 on self (originalCaster = caster) when 1 casted by caster hits target
--- + - 1 target removes aura 2 when hit by 1
--- + + 2 when aura 1 is applied, aura 2 is also applied; when 1 is removed, 2 is also removed
--- + - 2 when aura 1 is applied, target is immune to spell 2, until 1 is removed
--- - + 0 target casts 2 on self (originalCaster = caster) when aura 1 casted by caster is removed
--- - - 0 aura 2 is removed when aura 1 is removed
-
-DROP TABLE IF EXISTS `spell_linked_spell`;
-/*!40101 SET @saved_cs_client = @@character_set_client */;
-/*!40101 SET character_set_client = utf8 */;
-CREATE TABLE `spell_linked_spell` (
- `spell_trigger` mediumint(8) NOT NULL,
- `spell_effect` mediumint(8) NOT NULL DEFAULT '0',
- `type` tinyint(3) unsigned NOT NULL DEFAULT '0',
- `comment` text NOT NULL,
- UNIQUE KEY `trigger_effect_type` (`spell_trigger`,`spell_effect`,`type`)
-) ENGINE=MyISAM DEFAULT CHARSET=latin1 COMMENT='Spell System';
-/*!40101 SET character_set_client = @saved_cs_client */;
-
---
--- Dumping data for table `spell_linked_spell`
---
-
-LOCK TABLES `spell_linked_spell` WRITE;
-/*!40000 ALTER TABLE `spell_linked_spell` DISABLE KEYS */;
-INSERT INTO `spell_linked_spell` (`spell_trigger`,`spell_effect`,`type`,`comment`) VALUES
--- class
-( 16857, 60089, 0, 'Faerie Fire (Feral)'),
-( 31224, -1543, 2, 'Cloak of Shadows - Flare'),
-( 15237, 23455, 0, 'Holy Nova (rank1)'),
-( 15430, 23458, 0, 'Holy Nova (rank2)'),
-( 15431, 23459, 0, 'Holy Nova (rank3)'),
-( 27799, 27803, 0, 'Holy Nova (rank4)'),
-( 27800, 27804, 0, 'Holy Nova (rank5)'),
-( 27801, 27805, 0, 'Holy Nova (rank6)'),
-( 25331, 25329, 0, 'Holy Nova (rank7)'),
-( 48077, 48075, 0, 'Holy Nova (rank8)'),
-( 48078, 48076, 0, 'Holy Nova (rank9)'),
-(-19386, 24131, 0, 'Wyvern Sting'),
-(-24132, 24134, 0, 'Wyvern Sting'),
-(-24133, 24135, 0, 'Wyvern Sting'),
-(-27068, 27069, 0, 'Wyvern Sting'),
-(-49011, 49009, 0, 'Wyvern Sting'),
-(-49012, 49010, 0, 'Wyvern Sting'),
-( 47585, 60069, 2, 'Dispersion (transform/regen)'),
-( 47585, 63230, 2, 'Dispersion (immunity)'),
-( 61847, 61848, 2, 'Aspect of the dragonhawk'),
-( 61846, 61848, 2, 'Aspect of the dragonhawk'),
-( 47988, 54501, 2, 'Consume Shadows - Rank 9'),
-( 47987, 54501, 2, 'Consume Shadows - Rank 8'),
-( 27272, 54501, 2, 'Consume Shadows - Rank 7'),
-( 17854, 54501, 2, 'Consume Shadows - Rank 6'),
-( 17853, 54501, 2, 'Consume Shadows - Rank 5'),
-( 17852, 54501, 2, 'Consume Shadows - Rank 4'),
-( 17851, 54501, 2, 'Consume Shadows - Rank 3'),
-( 17850, 54501, 2, 'Consume Shadows - Rank 2'),
-( 17767, 54501, 2, 'Consume Shadows - Rank 1'),
-(-11129,-28682, 0, 'Combustion'),
-(-5143, -36032, 0, 'Arcane Missiles Rank 1'),
-(-5144, -36032, 0, 'Arcane Missiles Rank 2'),
-(-5145, -36032, 0, 'Arcane Missiles Rank 3'),
-(-8416, -36032, 0, 'Arcane Missiles Rank 4'),
-(-8417, -36032, 0, 'Arcane Missiles Rank 5'),
-(-10211,-36032, 0, 'Arcane Missiles Rank 6'),
-(-10212,-36032, 0, 'Arcane Missiles Rank 7'),
-(-25345,-36032, 0, 'Arcane Missiles Rank 8'),
-(-27075,-36032, 0, 'Arcane Missiles Rank 9'),
-(-38699,-36032, 0, 'Arcane Missiles Rank 10'),
-(-38704,-36032, 0, 'Arcane Missiles Rank 11'),
-(-42843,-36032, 0, 'Arcane Missiles Rank 12'),
-(-42846,-36032, 0, 'Arcane Missiles Rank 13'),
-( 53563, 53651, 2, 'Beacon of Light'),
-( 781, 56446, 0, 'Disengage'),
-( 57635, 57636, 0, 'Disengage'),
-( 60932, 60934, 0, 'Disengage'),
-( 61507, 61508, 0, 'Disengage'),
-( 49576, 49560, 0, 'Death Grip'),
-( 47897, 47960, 1, 'Shadowflame Rank 1'),
-( 61290, 61291, 1, 'Shadowflame Rank 2'),
-( 51723, 52874, 0, 'Fan Of Knives'),
-( 32386, 60448, 2, 'Shadow Embrace Rank1'),
-( 32388, 60465, 2, 'Shadow Embrace Rank2'),
-( 32389, 60466, 2, 'Shadow Embrace Rank3'),
-( 32390, 60467, 2, 'Shadow Embrace Rank4'),
-( 32391, 60468, 2, 'Shadow Embrace Rank5'),
-( 33206, 44416, 2, 'Pain Suppression (threat)'),
-( 52610, 62071, 0, 'Savage Roar'),
-(-52610,-62071, 0, 'Savage Roar'),
-( 51209, 55095, 1, 'Hungering cold - frost fever'),
-( 50334, 58923, 2, 'Berserk - modify target number aura'),
-(-5229, -51185, 0, 'King of the Jungle - remove with enrage'),
-( 48384, 50170, 2, 'Improved Moonkin Form'),
-( 48395, 50171, 2, 'Improved Moonkin Form'),
-( 48396, 50172, 2, 'Improved Moonkin Form'),
-( 20594, 65116, 0, 'Stoneform'),
-( 49039, 50397, 2, 'Lichborne - shapeshift'),
-( 64382, 64380, 0, 'Shattering Throw'),
-(-59907, 7, 0, 'Lightwell Charges - Suicide'),
-( 19263, 67801, 2, 'Deterrence'),
-( 45524, 55095, 0, 'Chains of Ice - Frost Fever'),
-( 20066,-61840, 1, 'Repentance'),
-( 66235, 66233, 0, 'Ardent Defender Visuals'),
-( 58875, 58876, 1, 'Spirit Walk'),
-(-47960,-63311, 0, 'Glyph of Shadowflame Rank 1'),
-(-61291,-63311, 0, 'Glyph of Shadowflame Rank 2'),
-( 56453, 67544, 0, 'Lock and Load Marker'),
--- Misc
-( 55428, 55475, 0, 'Lifeblood (Rank 1)'),
-( 55480, 55475, 0, 'Lifeblood (Rank 2)'),
-( 55500, 55475, 0, 'Lifeblood (Rank 3)'),
-( 55501, 55475, 0, 'Lifeblood (Rank 4)'),
-( 55502, 55475, 0, 'Lifeblood (Rank 5)'),
-( 55503, 55475, 0, 'Lifeblood (Rank 6)'),
-( 61716, 61719, 2, 'Rabbit Costume: Lay Egg periodic'),
-( 61734, 61719, 2, 'Noblegarden Bunny: Lay Egg periodic'),
--- Quest
-( 26286, 44430, 0, 'Small Red Rocket - questcredit'),
-( 26292, 44430, 0, 'Small Green Rocket - questcredit'),
-( 26291, 44430, 0, 'Small Blue Rocket - questcredit'),
-( 26327, 44429, 0, 'Red Firework Cluster - questcredit'),
-( 26325, 44429, 0, 'Green Firework Cluster - questcredit'),
-( 26304, 44429, 0, 'Blue Firework Cluster - questcredit'),
-( 40214, 40216, 2, 'Dragonmaw Illusion'),
-( 40214, 42016, 2, 'Dragonmaw Illusion'),
-( 66744, 66747, 0, 'Totem of the earthen ring'),
-( 53099, 53098, 0, 'Trigger teleport to acherus (for quest 12757)'),
--- Creature
-( 36574, 36650, 0, 'Apply Phase Slip Vulnerability'),
--- instance
-(-30410, 44032, 0, 'Manticron Cube Mind Exhaustion'),
-(-33711, 33686, 0, 'Murmur''s Shockwave (Normal)'),
-(-38794, 33686, 0, 'Murmur''s Shockwave (Heroic)'),
-( 33686, 31705, 0, 'Murmur''s Shockwave Jump'),
--- Zul'aman
-( 44008, 45265, 1, 'Static Disruption Visual'),
-( 43648, 44007, 1, 'Storm Eye Safe Zone'),
-( 44007,-43657, 2, 'Storm Eye Safe Zone Immune'),
-( 43658, 43653, 0, 'Electrical Arc Visual'),
-( 43658, 43654, 0, 'Electrical Arc Visual'),
-( 43658, 43655, 0, 'Electrical Arc Visual'),
-( 43658, 43656, 0, 'Electrical Arc Visual'),
-( 43658, 43659, 0, 'Electrical Arc Visual'),
--- black temple
--- (39992, 39835, 1, 'Needle Spine'),
-( 39835, 39968, 1, 'Needle Spine'),
-(-41376, 41377, 0, 'Spite'),
-( 41126, 41131, 1, 'Flame Crash'),
-(-41914, 41915, 0, 'Summon Parasitic Shadowfiend'),
-(-41917, 41915, 0, 'Summon Parasitic Shadowfiend'),
-( 39908, 40017, 1, 'Eye Blast'),
-( 40604, 40616, 1, 'Fel Rage Aura'),
-( 40616, 41625, 1, 'Fel Rage Aura'),
-( 41292, 42017, 2, 'Aura of Suffering'),
--- sunwell
-( 44869, 44866, 1, 'Spectral Blast Portal'),
--- (44869, 46648, 1, 'Spectral Blast Visual'), cause severe lag seems should be casted by go
-( 44869, 46019, 1, 'Spectral Blast Teleport'),
-( 46019, 46021, 1, 'Spectral Realm Aura'),
--- (46021, 44852, 1, 'Spectral Realm Aura'), 44852 makes boss friendly to you
-(-46021, 46020, 0, 'Teleport: Normal Realm'),
-( 46020, 44867, 1, 'Spectral Exhaustion'),
-( 44867,-46019, 2, 'Spectral Exhaustion - Teleport: Spectral Realm'),
-( 45661, 45665, 1, 'Encapsulate'),
-( 45347,-45348, 1, 'Remove Flame Touched'),
-( 45348,-45347, 1, 'Remove Dark Touched'),
-( 45248, 45347, 1, 'Apply Dark Touched'),
-( 45329, 45347, 1, 'Apply Dark Touched'),
-( 45256, 45347, 1, 'Apply Dark Touched'),
-( 45270, 45347, 1, 'Apply Dark Touched'),
-( 45342, 45348, 1, 'Apply Flame Touched'),
-( 46771, 45348, 1, 'Apply Flame Touched'),
-( 45271, 45347, 1, 'Apply Dark Touched'),
-( 45246, 45348, 1, 'Apply Flame Touched'),
-( 44869,-45018, 1, 'Remove Arcane Buffet'),
-( 46019,-45018, 1, 'Remove Arcane Buffet'),
-( 46242, 46247, 0, 'Black Hole Visual (Birth)'),
-( 46228, 46235, 0, 'Black Hole Visual (Grown)'),
-( 46228,-46247, 0, 'Black Hole Visual (Grown)'),
-( 46262, 46265, 0, 'Void Zone Visual'),
--- naxx
-(-28169, 28206, 0, 'Mutating Injection - Mutagen Explosion'),
-( 28732,-28798, 1, 'Widow''s Embrace - Frenzy'),
-( 54097,-54100, 1, 'Widow''s Embrace - Frenzy (H)'),
-(-28169, 28240, 0, 'Mutating Injection - Poison Cloud'),
--- Archavon
-( 58666, 58672, 1, 'Impale (Archavon)'),
-( 60882, 58672, 1, 'Impale (Archavon)'),
--- Violet Hold
-(-54361, 54343, 0, 'Void Shift (Normal) - Void Shifted'),
-(-59743, 54343, 0, 'Void Shift (Heroic) - Void Shifted'),
--- Gundrak
-( 54850, 54851, 1, 'Emerge - Emerge Summon'),
-( 55814, 55817, 1, 'Eck Residue'),
--- Trial of the Champion
-( 66680, 66547, 0, 'Confess - Confess'),
-( 66889,-66865, 0, 'Remove Vengeance'),
--- Trial of the Crusader
-( 66870,-66823, 1, 'Remove Paralytic Toxin when hit by Burning Bite'),
-( 67621,-67618, 1, 'Remove Paralytic Toxin when hit by Burning Bite'),
-( 67622,-67619, 1, 'Remove Paralytic Toxin when hit by Burning Bite'),
-( 67623,-67620, 1, 'Remove Paralytic Toxin when hit by Burning Bite'),
-(-66683, 68667, 0, 'Icehowl - Surge of Adrenaline'),
-(-67661, 68667, 0, 'Icehowl - Surge of Adrenaline'),
-( 65940, 65941, 0, 'Trial of the Crusader: Shattering Throw'),
--- Forge of Souls
-(-68839, 68846, 0, 'Bronjahm: Corrupt Soul Summon'),
--- Icecrown Citadel
-(-69674, 69706, 0, 'Rotface: Mutated Infection Summon'),
-(-71224, 69706, 0, 'Rotface: Mutated Infection Summon'),
-(-73022, 69706, 0, 'Rotface: Mutated Infection Summon'),
-(-73023, 69706, 0, 'Rotface: Mutated Infection Summon'),
-(-70447, 70530, 0, 'Putricide: Volatile Ooze Adhesive Protection'),
-(-72836, 70530, 0, 'Putricide: Volatile Ooze Adhesive Protection'),
-(-72837, 70530, 0, 'Putricide: Volatile Ooze Adhesive Protection'),
-(-72838, 70530, 0, 'Putricide: Volatile Ooze Adhesive Protection'),
-( 70867, 70871, 2, 'Blood-Queen: Essence of the Blood Queen'),
-( 71473, 70871, 2, 'Blood-Queen: Essence of the Blood Queen'),
-( 71532, 70871, 2, 'Blood-Queen: Essence of the Blood Queen'),
-( 71533, 70871, 2, 'Blood-Queen: Essence of the Blood Queen'),
-( 70879, 70871, 2, 'Blood-Queen: Essence of the Blood Queen'),
-( 71525, 70871, 2, 'Blood-Queen: Essence of the Blood Queen'),
-( 71530, 70871, 2, 'Blood-Queen: Essence of the Blood Queen'),
-( 71531, 70871, 2, 'Blood-Queen: Essence of the Blood Queen'),
-( 70877, 72649, 2, 'Blood-Queen: Frenzied Bloodthirst 10man'),
-( 70877, 72151, 2, 'Blood-Queen: Frenzied Bloodthirst 10man'),
-( 71474, 72648, 2, 'Blood-Queen: Frenzied Bloodthirst 25man'),
-( 71474, 72650, 2, 'Blood-Queen: Frenzied Bloodthirst 25man'),
-( 70923, 70924, 1, 'Blood-Queen: Uncontrollable Frenzy damage buff'),
-(-70923,-70924, 0, 'Blood-Queen: Uncontrollable Frenzy remove 10man'),
-(-70923,-73015, 0, 'Blood-Queen: Uncontrollable Frenzy remove 25man'),
-( 71446, 71447, 1, 'Blood-Queen: Bloodbolt Splash'),
-( 71478, 71481, 1, 'Blood-Queen: Bloodbolt Splash'),
-( 71479, 71482, 1, 'Blood-Queen: Bloodbolt Splash'),
-( 71480, 71483, 1, 'Blood-Queen: Bloodbolt Splash'),
-( 71952, 70995, 1, 'Blood-Queen: Presence of the Darkfallen'),
-( 70157, 69700, 2, 'Sindragosa - Ice Tomb resistance'),
--- Eye Of Eternity
-( 56397, 63934, 1,'Arcane Barrage - Arcane Barrage'),
--- Isle of Conquest
-( 66548, 66550, 0, 'Isle of Conquest (IN>OUT)'),
-( 66549, 66551, 0, 'Isle of Conquest (OUT>IN)'),
-( 66551, -66548, 2, 'Isle of Conquest Teleport (OUT>IN) Debuff limit'),
-( 66550, -66549, 2, 'Isle of Conquest Teleport (IN>OUT) Debuff limit'),
--- Warsong Gulch
-( 54861,-23335, 0, 'Drop Flag on Nitro Boost WSG'),
-( 54861,-23333, 0, 'Drop Flag on Nitro Boost WSG'),
-( 55004,-23335, 0, 'Drop Flag on Nitro Boost WSG'),
-( 55004,-23333, 0, 'Drop Flag on Nitro Boost WSG'),
--- Eye of Storm
-( 54861,-34976, 0, 'Drop Flag on Nitro Boost EOS'),
-( 55004,-34976, 0, 'Drop Flag on Nitro Boost EOS'),
--- Strand of the Ancients
-( 52415, 52418, 0, 'Carrying Seaforium - Add'),
-( 52410,-52418, 0, 'Carrying Seaforium - Remove'),
--- Item
-( 69381, 72588, 1, 'Drums of the Wild'),
-( 69378, 72586, 1, 'Drums of the Forgotten Kings'),
-( 69377, 72590, 1, 'Runescroll of Fortitude'),
-( 50141, 50001, 0, 'Blood Oath to Blood Oath Aura'),
-( 61263, 61267, 0, 'Intravenous Healing Effect'),
-( 61263, 61268, 0, 'Intravenous Mana Regeneration Effect'),
-(-57350,60242,0, 'Darkmoon Card: Illusion'),
--- PvP Trinket / Every Man for Himself / Will of the Forsaken
-(7744, 72757, 0, 'Will of the Forsaken Cooldown Trigger (WOTF)'),
-(42292, 72752, 0, 'Will of the Forsaken Cooldown Trigger'),
-(59752, 72752, 0, 'Will of the Forsaken Cooldown Trigger');
-/*!40000 ALTER TABLE `spell_linked_spell` ENABLE KEYS */;
-UNLOCK TABLES;
-
---
--- Table structure for table `spell_loot_template`
---
-
-DROP TABLE IF EXISTS `spell_loot_template`;
-/*!40101 SET @saved_cs_client = @@character_set_client */;
-/*!40101 SET character_set_client = utf8 */;
-CREATE TABLE `spell_loot_template` (
- `entry` mediumint(8) unsigned NOT NULL DEFAULT '0',
- `item` mediumint(8) unsigned NOT NULL DEFAULT '0',
- `ChanceOrQuestChance` float NOT NULL DEFAULT '100',
- `lootmode` smallint(5) unsigned NOT NULL DEFAULT '1',
- `groupid` tinyint(3) unsigned NOT NULL DEFAULT '0',
- `mincountOrRef` mediumint(9) NOT NULL DEFAULT '1',
- `maxcount` tinyint(3) unsigned NOT NULL DEFAULT '1',
- `lootcondition` tinyint(3) unsigned NOT NULL DEFAULT '0',
- `condition_value1` mediumint(8) unsigned NOT NULL DEFAULT '0',
- `condition_value2` mediumint(8) unsigned NOT NULL DEFAULT '0',
- PRIMARY KEY (`entry`,`item`)
-) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Loot System';
-/*!40101 SET character_set_client = @saved_cs_client */;
-
---
--- Dumping data for table `spell_loot_template`
---
-
-LOCK TABLES `spell_loot_template` WRITE;
-/*!40000 ALTER TABLE `spell_loot_template` DISABLE KEYS */;
-/*!40000 ALTER TABLE `spell_loot_template` ENABLE KEYS */;
-UNLOCK TABLES;
-
---
--- Table structure for table `spell_pet_auras`
---
-
-DROP TABLE IF EXISTS `spell_pet_auras`;
-/*!40101 SET @saved_cs_client = @@character_set_client */;
-/*!40101 SET character_set_client = utf8 */;
-CREATE TABLE `spell_pet_auras` (
- `spell` mediumint(8) unsigned NOT NULL COMMENT 'dummy spell id',
- `effectId` tinyint(3) unsigned NOT NULL DEFAULT '0',
- `pet` mediumint(8) unsigned NOT NULL DEFAULT '0' COMMENT 'pet id; 0 = all',
- `aura` mediumint(8) unsigned NOT NULL COMMENT 'pet aura id',
- PRIMARY KEY (`spell`,`effectId`,`pet`)
-) ENGINE=MyISAM DEFAULT CHARSET=latin1;
-/*!40101 SET character_set_client = @saved_cs_client */;
-
---
--- Dumping data for table `spell_pet_auras`
---
-
-LOCK TABLES `spell_pet_auras` WRITE;
-/*!40000 ALTER TABLE `spell_pet_auras` DISABLE KEYS */;
-INSERT INTO `spell_pet_auras` VALUES (19028,0,0,25228),
-(19578,0,0,19579),
-(20895,0,0,24529),
-(28757,0,0,28758),
-(34455,0,0,75593),
-(34459,0,0,75446),
-(34460,0,0,75447),
-(35029,0,0,35060),
-(35030,0,0,35061),
-(35691,0,0,35696),
-(35692,0,0,35696),
-(35693,0,0,35696),
-(56314,0,0,57447),
-(56314,1,0,57485),
-(56315,0,0,57452),
-(56315,1,0,57484),
-(56316,0,0,57453),
-(56316,1,0,57483),
-(56317,0,0,57457),
-(56317,1,0,57482),
-(56318,0,0,57458),
-(56318,1,0,57475),
-(23785,0,416,23759),
-(23822,0,416,23826),
-(23823,0,416,23827),
-(23824,0,416,23828),
-(23825,0,416,23829),
-(23785,0,417,23762),
-(23822,0,417,23837),
-(23823,0,417,23838),
-(23824,0,417,23839),
-(23825,0,417,23840),
-(23785,0,1860,23760),
-(23822,0,1860,23841),
-(23823,0,1860,23842),
-(23824,0,1860,23843),
-(23825,0,1860,23844),
-(23785,0,1863,23761),
-(23822,0,1863,23833),
-(23823,0,1863,23834),
-(23824,0,1863,23835),
-(23825,0,1863,23836),
-(23785,0,17252,35702),
-(23822,0,17252,35703),
-(23823,0,17252,35704),
-(23824,0,17252,35705),
-(23825,0,17252,35706);
-/*!40000 ALTER TABLE `spell_pet_auras` ENABLE KEYS */;
-UNLOCK TABLES;
-
---
--- Table structure for table `spell_proc`
---
-
-DROP TABLE IF EXISTS `spell_proc`;
-/*!40101 SET @saved_cs_client = @@character_set_client */;
-/*!40101 SET character_set_client = utf8 */;
-CREATE TABLE `spell_proc` (
- `spellId` mediumint(8) NOT NULL DEFAULT '0',
- `schoolMask` tinyint(4) NOT NULL DEFAULT '0',
- `spellFamilyName` smallint(5) unsigned NOT NULL DEFAULT '0',
- `spellFamilyMask0` int(10) unsigned NOT NULL DEFAULT '0',
- `spellFamilyMask1` int(10) unsigned NOT NULL DEFAULT '0',
- `spellFamilyMask2` int(10) unsigned NOT NULL DEFAULT '0',
- `typeMask` int(10) unsigned NOT NULL DEFAULT '0',
- `spellTypeMask` int(10) unsigned NOT NULL DEFAULT '0',
- `spellPhaseMask` int(10) NOT NULL DEFAULT '0',
- `hitMask` int(10) NOT NULL DEFAULT '0',
- `attributesMask` int(10) unsigned NOT NULL DEFAULT '0',
- `ratePerMinute` float NOT NULL DEFAULT '0',
- `chance` float NOT NULL DEFAULT '0',
- `cooldown` float unsigned NOT NULL DEFAULT '0',
- `charges` int(10) unsigned NOT NULL DEFAULT '0',
- PRIMARY KEY (`spellId`)
-) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-/*!40101 SET character_set_client = @saved_cs_client */;
-
---
--- Table structure for table `spell_proc_event`
---
-
-DROP TABLE IF EXISTS `spell_proc_event`;
-/*!40101 SET @saved_cs_client = @@character_set_client */;
-/*!40101 SET character_set_client = utf8 */;
-CREATE TABLE `spell_proc_event` (
- `entry` mediumint(8) unsigned NOT NULL DEFAULT '0',
- `SchoolMask` tinyint(4) NOT NULL DEFAULT '0',
- `SpellFamilyName` smallint(5) unsigned NOT NULL DEFAULT '0',
- `SpellFamilyMask0` int(10) unsigned NOT NULL DEFAULT '0',
- `SpellFamilyMask1` int(10) unsigned NOT NULL DEFAULT '0',
- `SpellFamilyMask2` int(10) unsigned NOT NULL DEFAULT '0',
- `procFlags` int(10) unsigned NOT NULL DEFAULT '0',
- `procEx` int(10) unsigned NOT NULL DEFAULT '0',
- `ppmRate` float NOT NULL DEFAULT '0',
- `CustomChance` float NOT NULL DEFAULT '0',
- `Cooldown` int(10) unsigned NOT NULL DEFAULT '0',
- PRIMARY KEY (`entry`)
-) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-/*!40101 SET character_set_client = @saved_cs_client */;
-
---
--- Dumping data for table `spell_proc_event`
---
-
-LOCK TABLES `spell_proc_event` WRITE;
-/*!40000 ALTER TABLE `spell_proc_event` DISABLE KEYS */;
-INSERT INTO `spell_proc_event` (`entry`,`SchoolMask`,`SpellFamilyName`,`SpellFamilyMask0`,`SpellFamilyMask1`,`SpellFamilyMask2`,`procFlags`,`procEx`,`ppmRate`,`CustomChance`,`Cooldown`) VALUES
-( 324, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 3), -- Lightning Shield (Rank 1)
-( 325, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 3), -- Lightning Shield (Rank 2)
-( 905, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 3), -- Lightning Shield (Rank 3)
-( 945, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 3), -- Lightning Shield (Rank 4)
-( 974, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x000222A8, 0x00000000, 0, 0, 3), -- Earth Shield (Rank 1)
-( 1463, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000400, 0, 0, 0), -- Mana Shield (Rank 1)
-( 3232, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0, 0, 0), -- Gouge Stun Test
-( 5952, 0x00, 8, 0x00000001, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Throwing Specialization (Rank 1)
-( 6346, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000100, 0, 0, 0), -- Fear Ward
-( 7383, 0x01, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000100, 0, 0, 0), -- Water Bubble
-( 7434, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0, 0, 0), -- Fate Rune of Unsurpassed Vigor
-( 8134, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 3), -- Lightning Shield (Rank 5)
-( 8178, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0, 0, 0), -- Grounding Totem Effect (Rank 1)
-( 8494, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000400, 0, 0, 0), -- Mana Shield (Rank 2)
-( 8495, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000400, 0, 0, 0), -- Mana Shield (Rank 3)
-( 9452, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 3, 0, 0), -- Vindication (Rank 1)
-( 9782, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0, 0, 0), -- Mithril Shield Spike
-( 9784, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0, 0, 0), -- Iron Shield Spike
-( 9799, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0, 0, 0), -- Eye for an Eye (Rank 1)
-( 10191, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000400, 0, 0, 0), -- Mana Shield (Rank 4)
-( 10192, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000400, 0, 0, 0), -- Mana Shield (Rank 5)
-( 10193, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000400, 0, 0, 0), -- Mana Shield (Rank 6)
-( 10431, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 3), -- Lightning Shield (Rank 6)
-( 10432, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 3), -- Lightning Shield (Rank 7)
-( 11095, 0x00, 3, 0x00000010, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Improved Scorch (Rank 1)
-( 11119, 0x04, 3, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0, 0, 0), -- Ignite (Rank 1)
-( 11120, 0x04, 3, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0, 0, 0), -- Ignite (Rank 2)
-( 11129, 0x04, 3, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Combustion
-( 11180, 0x10, 3, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Winter's Chill (Rank 1)
-( 11185, 0x00, 3, 0x00000080, 0x00000000, 0x00000000, 0x00050000, 0x00000000, 0, 0, 0), -- Improved Blizzard (Rank 1)
-( 11255, 0x00, 3, 0x00004000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Improved Counterspell (Rank 1)
-( 11213, 0x00, 3, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Arcane Concentration (Rank 1)
-( 12574, 0x00, 3, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Arcane Concentration (Rank 2)
-( 12575, 0x00, 3, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Arcane Concentration (Rank 3)
-( 12576, 0x00, 3, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Arcane Concentration (Rank 4)
-( 12577, 0x00, 3, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Arcane Concentration (Rank 5)
-( 12169, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0, 0, 0), -- Shield Block
-( 12289, 0x00, 4, 0x00000002, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Improved Hamstring (Rank 1)
-( 12298, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000070, 0, 0, 0), -- Shield Specialization (Rank 1)
-( 12311, 0x00, 4, 0x00000800, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Gag Order (Rank 1)
-( 12319, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0, 0, 0), -- Flurry (Rank 1)
-( 12322, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 3, 0, 0), -- Unbridled Wrath (Rank 1)
-( 12487, 0x00, 3, 0x00000080, 0x00000000, 0x00000000, 0x00050000, 0x00000000, 0, 0, 0), -- Improved Blizzard (Rank 2)
-( 12488, 0x00, 3, 0x00000080, 0x00000000, 0x00000000, 0x00050000, 0x00000000, 0, 0, 0), -- Improved Blizzard (Rank 3)
-( 12598, 0x00, 3, 0x00004000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Improved Counterspell (Rank 2)
-( 12668, 0x00, 4, 0x00000002, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Improved Hamstring (Rank 2)
-( 12724, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000070, 0, 0, 0), -- Shield Specialization (Rank 2)
-( 12725, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000070, 0, 0, 0), -- Shield Specialization (Rank 3)
-( 12726, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000070, 0, 0, 0), -- Shield Specialization (Rank 4)
-( 12727, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000070, 0, 0, 0), -- Shield Specialization (Rank 5)
-( 12797, 0x00, 4, 0x00000400, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Improved Revenge (Rank 1)
-( 12799, 0x00, 4, 0x00000400, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Improved Revenge (Rank 2)
-( 12281, 0x00, 4, 0xAA600444, 0x00400105, 0x00000000, 0x00000000, 0x00000000, 0, 0, 6), -- Sword Specialization (Rank 1)
-( 12812, 0x00, 4, 0xAA600444, 0x00400105, 0x00000000, 0x00000000, 0x00000000, 0, 0, 6), -- Sword Specialization (Rank 2)
-( 12813, 0x00, 4, 0xAA600444, 0x00400105, 0x00000000, 0x00000000, 0x00000000, 0, 0, 6), -- Sword Specialization (Rank 3)
-( 12814, 0x00, 4, 0xAA600444, 0x00400105, 0x00000000, 0x00000000, 0x00000000, 0, 0, 6), -- Sword Specialization (Rank 4)
-( 12815, 0x00, 4, 0xAA600444, 0x00400105, 0x00000000, 0x00000000, 0x00000000, 0, 0, 6), -- Sword Specialization (Rank 5)
-( 12834, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0, 0, 0), -- Deep Wounds (Rank 1)
-( 12846, 0x04, 3, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0, 0, 0), -- Ignite (Rank 3)
-( 12847, 0x04, 3, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0, 0, 0), -- Ignite (Rank 4)
-( 12848, 0x04, 3, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0, 0, 0), -- Ignite (Rank 5)
-( 12849, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0, 0, 0), -- Deep Wounds (Rank 2)
-( 12867, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0, 0, 0), -- Deep Wounds (Rank 3)
-( 12872, 0x00, 3, 0x00000010, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Improved Scorch (Rank 2)
-( 12873, 0x00, 3, 0x00000010, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Improved Scorch (Rank 3)
-( 12958, 0x00, 4, 0x00000800, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Gag Order (Rank 2)
-( 12966, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0, 0, 0), -- Flurry (Rank 1)
-( 12967, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0, 0, 0), -- Flurry (Rank 2)
-( 12968, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0, 0, 0), -- Flurry (Rank 3)
-( 12969, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0, 0, 0), -- Flurry (Rank 4)
-( 12970, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0, 0, 0), -- Flurry (Rank 5)
-( 12971, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0, 0, 0), -- Flurry (Rank 2)
-( 12972, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0, 0, 0), -- Flurry (Rank 3)
-( 12973, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0, 0, 0), -- Flurry (Rank 4)
-( 12974, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0, 0, 0), -- Flurry (Rank 5)
-( 12999, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 6, 0, 0), -- Unbridled Wrath (Rank 2)
-( 13000, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 9, 0, 0), -- Unbridled Wrath (Rank 3)
-( 13001, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 12, 0, 0), -- Unbridled Wrath (Rank 4)
-( 13002, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 15, 0, 0), -- Unbridled Wrath (Rank 5)
-( 13163, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000010, 0, 0, 0), -- Aspect of the Monkey
-( 13754, 0x00, 8, 0x00000010, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Improved Kick (Rank 1)
-( 13867, 0x00, 8, 0x00000010, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Improved Kick (Rank 2)
-( 13983, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000018, 0, 0, 0), -- Setup (Rank 1)
-( 14070, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000018, 0, 0, 0), -- Setup (Rank 2)
-( 14071, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000018, 0, 0, 0), -- Setup (Rank 3)
-( 14156, 0x00, 8, 0x003E0000, 0x80000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Ruthlessness (Rank 1)
-( 14160, 0x00, 8, 0x003E0000, 0x80000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Ruthlessness (Rank 2)
-( 14161, 0x00, 8, 0x003E0000, 0x80000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Ruthlessness (Rank 3)
-( 14186, 0x00, 8, 0x40800508, 0x00000006, 0x00000000, 0x00000000, 0x00000002, 0, 0, 1), -- Seal Fate (Rank 1)
-( 14190, 0x00, 8, 0x40800508, 0x00000006, 0x00000000, 0x00000000, 0x00000002, 0, 0, 1), -- Seal Fate (Rank 2)
-( 14193, 0x00, 8, 0x40800508, 0x00000006, 0x00000000, 0x00000000, 0x00000002, 0, 0, 1), -- Seal Fate (Rank 3)
-( 14194, 0x00, 8, 0x40800508, 0x00000006, 0x00000000, 0x00000000, 0x00000002, 0, 0, 1), -- Seal Fate (Rank 4)
-( 14195, 0x00, 8, 0x40800508, 0x00000006, 0x00000000, 0x00000000, 0x00000002, 0, 0, 1), -- Seal Fate (Rank 5)
-( 14531, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0, 0, 0), -- Martyrdom (Rank 1)
-( 14774, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0, 0, 0), -- Martyrdom (Rank 2)
-( 14892, 0x00, 6, 0x10001E00, 0x00010004, 0x00000000, 0x00000000, 0x00000002, 0, 0, 0), -- Inspiration (Rank 1)
-( 15088, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0, 0, 0), -- Flurry
-( 15128, 0x04, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Mark of Flames
-( 15277, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 6, 0, 0), -- Seal of Reckoning
-( 15286, 0x20, 6, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Vampiric Embrace
-( 15337, 0x00, 6, 0x00802000, 0x00000002, 0x00000000, 0x00000000, 0x00000002, 0, 0, 0), -- Improved Spirit Tap (Rank 1)
-( 15338, 0x00, 6, 0x00802000, 0x00000002, 0x00000000, 0x00000000, 0x00000002, 0, 0, 0), -- Improved Spirit Tap (Rank 2)
-( 15346, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 6, 0, 0), -- Seal of Reckoning
-( 15362, 0x00, 6, 0x10001E00, 0x00010004, 0x00000000, 0x00000000, 0x00000002, 0, 0, 0), -- Inspiration (Rank 2)
-( 15363, 0x00, 6, 0x10001E00, 0x00010004, 0x00000000, 0x00000000, 0x00000002, 0, 0, 0), -- Inspiration (Rank 3)
-( 15600, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 1, 0, 0), -- Hand of Justice
-( 16086, 0x04, 11, 0x00000000, 0x00040000, 0x00000000, 0x00030000, 0x00000000, 0, 0, 0), -- Improved Fire Nova Totem (Rank 1)
-( 16544, 0x04, 11, 0x00000000, 0x00040000, 0x00000000, 0x00030000, 0x00000000, 0, 0, 0), -- Improved Fire Nova Totem (Rank 2)
-( 16176, 0x00, 11, 0x000001C0, 0x00000000, 0x00000010, 0x00000000, 0x00000002, 0, 0, 0), -- Ancestral Healing (Rank 1)
-( 16180, 0x00, 11, 0x000001C0, 0x00000000, 0x00000010, 0x00000000, 0x00000002, 0, 100, 0), -- Improved Water Shield (Rank 1)
-( 16196, 0x00, 11, 0x000001C0, 0x00000000, 0x00000010, 0x00000000, 0x00000002, 0, 100, 0), -- Improved Water Shield (Rank 2)
-( 16198, 0x00, 11, 0x000001C0, 0x00000000, 0x00000010, 0x00000000, 0x00000002, 0, 100, 0), -- Improved Water Shield (Rank 3)
-( 16235, 0x00, 11, 0x000001C0, 0x00000000, 0x00000010, 0x00000000, 0x00000002, 0, 0, 0), -- Ancestral Healing (Rank 2)
-( 16240, 0x00, 11, 0x000001C0, 0x00000000, 0x00000010, 0x00000000, 0x00000002, 0, 0, 0), -- Ancestral Healing (Rank 3)
-( 16256, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0, 0, 0), -- Flurry (Rank 1)
-( 16257, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0, 0, 0), -- Flurry (Rank 1)
-( 16277, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0, 0, 0), -- Flurry (Rank 2)
-( 16278, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0, 0, 0), -- Flurry (Rank 3)
-( 16279, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0, 0, 0), -- Flurry (Rank 4)
-( 16280, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0, 0, 0), -- Flurry (Rank 5)
-( 16281, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0, 0, 0), -- Flurry (Rank 2)
-( 16282, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0, 0, 0), -- Flurry (Rank 3)
-( 16283, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0, 0, 0), -- Flurry (Rank 4)
-( 16284, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0, 0, 0), -- Flurry (Rank 5)
-( 16487, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0, 0, 0), -- Blood Craze (Rank 1)
-( 16489, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0, 0, 0), -- Blood Craze (Rank 2)
-( 16492, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0, 0, 0), -- Blood Craze (Rank 3)
-( 16550, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0, 0, 0), -- Bonespike (Rank 1)
-( 16620, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 30), -- Proc Self Invulnerability
-( 16624, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0, 0, 0), -- Thorium Shield Spike
-( 16850, 0x00, 7, 0x00000004, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Celestial Focus (Rank 1)
-( 16864, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0, 6, 10), -- Omen of Clarity
-( 16923, 0x00, 7, 0x00000004, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Celestial Focus (Rank 2)
-( 16924, 0x00, 7, 0x00000004, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Celestial Focus (Rank 3)
-( 16952, 0x00, 7, 0x00039000, 0x00000400, 0x00000000, 0x00000000, 0x00000002, 0, 0, 0), -- Blood Frenzy (Rank 1)
-( 16954, 0x00, 7, 0x00039000, 0x00000400, 0x00000000, 0x00000000, 0x00000002, 0, 0, 0), -- Blood Frenzy (Rank 2)
-( 16958, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0, 0, 0), -- Primal Fury (Rank 1)
-( 16961, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0, 0, 0), -- Primal Fury (Rank 2)
-( 17106, 0x00, 7, 0x00080000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Intensity (Rank 1)
-( 17107, 0x00, 7, 0x00080000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Intensity (Rank 2)
-( 17108, 0x00, 7, 0x00080000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Intensity (Rank 3)
-( 17364, 0x08, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Stormstrike
-( 17495, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0, 0, 0), -- Crest of Retribution
-( 17619, 0x00, 13, 0x00000000, 0x00000000, 0x00000000, 0x00008000, 0x00000000, 0, 0, 0), -- Alchemist's Stone
-( 17793, 0x00, 5, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Improved Shadow Bolt (Rank 1)
-( 17796, 0x00, 5, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Improved Shadow Bolt (Rank 2)
-( 17801, 0x00, 5, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Improved Shadow Bolt (Rank 3)
-( 17802, 0x00, 5, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Improved Shadow Bolt (Rank 4)
-( 17803, 0x00, 5, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Improved Shadow Bolt (Rank 5)
-( 18094, 0x00, 5, 0x0000000A, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Nightfall (Rank 1)
-( 18095, 0x00, 5, 0x0000000A, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Nightfall (Rank 2)
-( 18820, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0, 0, 0), -- Insight
-( 19184, 0x00, 9, 0x00000010, 0x00002000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Entrapment (Rank 1)
-( 19387, 0x00, 9, 0x00000010, 0x00002000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Entrapment (Rank 2)
-( 19388, 0x00, 9, 0x00000010, 0x00002000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Entrapment (Rank 3)
-( 19572, 0x00, 9, 0x00800000, 0x00000000, 0x00000000, 0x00004000, 0x00000000, 0, 0, 0), -- Improved Mend Pet (Rank 1)
-( 19573, 0x00, 9, 0x00800000, 0x00000000, 0x00000000, 0x00004000, 0x00000000, 0, 0, 0), -- Improved Mend Pet (Rank 2)
-( 20049, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0, 0, 0), -- Vengeance (Rank 1)
-( 20056, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0, 0, 0), -- Vengeance (Rank 2)
-( 20057, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0, 0, 0), -- Vengeance (Rank 3)
-( 20128, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0, 0, 0), -- Redoubt
-( 20131, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0, 0, 0), -- Redoubt
-( 20132, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0, 0, 0), -- Redoubt
-( 20164, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 5, 0, 0), -- Seal of Justice
-( 20165, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 20, 0, 0), -- Seal of Light
-( 20166, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 12, 0, 0), -- Seal of Wisdom
-( 20177, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000043, 0, 0, 0), -- Reckoning (Rank 1)
-( 20179, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000043, 0, 0, 0), -- Reckoning (Rank 2)
-( 20180, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000043, 0, 0, 0), -- Reckoning (Rank 4)
-( 20181, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000043, 0, 0, 0), -- Reckoning (Rank 3)
-( 20182, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000043, 0, 0, 0), -- Reckoning (Rank 5)
-( 20185, 0x01, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 15, 0, 0), -- Judgement of Light
-( 20186, 0x01, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 15, 0, 0), -- Judgement of Wisdom
-( 20210, 0x00, 10, 0xC0000000, 0x00010000, 0x00000000, 0x00000000, 0x00000002, 0, 0, 0), -- Illumination (Rank 1)
-( 20212, 0x00, 10, 0xC0000000, 0x00010000, 0x00000000, 0x00000000, 0x00000002, 0, 0, 0), -- Illumination (Rank 2)
-( 20213, 0x00, 10, 0xC0000000, 0x00010000, 0x00000000, 0x00000000, 0x00000002, 0, 0, 0), -- Illumination (Rank 3)
-( 20214, 0x00, 10, 0xC0000000, 0x00010000, 0x00000000, 0x00000000, 0x00000002, 0, 0, 0), -- Illumination (Rank 4)
-( 20215, 0x00, 10, 0xC0000000, 0x00010000, 0x00000000, 0x00000000, 0x00000002, 0, 0, 0), -- Illumination (Rank 5)
-( 20234, 0x00, 10, 0x00008000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Improved Lay on Hands (Rank 1)
-( 20235, 0x00, 10, 0x00008000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Improved Lay on Hands (Rank 2)
-( 20335, 0x00, 10, 0x00800000, 0x00000000, 0x00000008, 0x00000100, 0x00000000, 0, 100, 0), -- Heart of the Crusader (Rank 1)
-( 20336, 0x00, 10, 0x00800000, 0x00000000, 0x00000008, 0x00000100, 0x00000000, 0, 100, 0), -- Heart of the Crusader (Rank 2)
-( 20337, 0x00, 10, 0x00800000, 0x00000000, 0x00000008, 0x00000100, 0x00000000, 0, 100, 0), -- Heart of the Crusader (Rank 3)
-( 20375, 0x01, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 1), -- Seal of Command
-( 20500, 0x00, 4, 0x10000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Improved Berserker Rage (Rank 1)
-( 20501, 0x00, 4, 0x10000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Improved Berserker Rage (Rank 2)
-( 20705, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0, 0, 0), -- Power Shield 500
-( 20784, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0, 0, 0), -- Tamed Pet Passive 07
-( 20911, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000070, 0, 0, 0), -- Blessing of Sanctuary
-( 20925, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0, 0, 0), -- Holy Shield (Rank 1)
-( 20927, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0, 0, 0), -- Holy Shield (Rank 2)
-( 20928, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0, 0, 0), -- Holy Shield (Rank 3)
-( 21185, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 10), -- Spinal Reaper
-( 21882, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0, 0, 0), -- Judgement Smite
-( 21890, 0x00, 4, 0x2A764EEF, 0x0000036C, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Warrior's Wrath
-( 22007, 0x00, 3, 0x00200021, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0, 0, 0), -- Netherwind Focus
-( 22618, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0, 0, 0), -- Force Reactive Disk
-( 22648, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0, 0, 0), -- Call of Eskhandar
-( 23547, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000020, 0, 0, 0), -- Parry
-( 23548, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0, 0, 0), -- Parry
-( 23551, 0x00, 11, 0x000000C0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Lightning Shield
-( 23552, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 3), -- Lightning Shield
-( 23572, 0x00, 11, 0x000000C0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Mana Surge
-( 23578, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 2, 0, 0), -- Expose Weakness
-( 23581, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 2, 0, 0), -- Bloodfang
-( 23686, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 2, 0, 0), -- Lightning Strike
-( 23688, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0, 0, 0), -- Aura of the Blue Dragon
-( 23689, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 4, 0, 0), -- Heroism
-( 23695, 0x00, 4, 0x00000002, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Improved Hamstring (Rank 3)
-( 23721, 0x00, 9, 0x00000800, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Arcane Infused
-( 23920, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000800, 0, 0, 0), -- Spell Reflection
-( 24353, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0, 0, 0), -- Primal Instinct
-( 24389, 0x00, 3, 0x00C00017, 0x00000040, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Chaos Fire
-( 24398, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 3), -- Water Shield (Rank 7)
-( 24658, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00014110, 0x00000000, 0, 0, 0), -- Unstable Power
-( 24905, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 15, 0, 0), -- Moonkin Form (Passive) (Passive)
-( 24932, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0, 0, 6), -- Leader of the Pack
-( 25050, 0x04, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Mark of Flames
-( 25469, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 3), -- Lightning Shield (Rank 8)
-( 25472, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 3), -- Lightning Shield (Rank 9)
-( 25669, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 1, 0, 0), -- Decapitate
-( 25899, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000070, 0, 0, 0), -- Greater Blessing of Sanctuary
-( 25988, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0, 0, 0), -- Eye for an Eye (Rank 2)
-( 26016, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 2, 0, 0), -- Vindication (Rank 2)
-( 26107, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000064, 0, 0, 0), -- Symbols of Unending Life Finisher Bonus
-( 26119, 0x00, 10, 0x90100003, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0, 0, 0), -- Stormcaller Spelldamage Bonus
-( 26128, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000008, 0, 0, 0), -- Enigma Resist Bonus
-( 26135, 0x00, 10, 0x00800000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0, 0, 0), -- Battlegear of Eternal Justice
-( 26480, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 3, 0, 0), -- Badge of the Swarmguard
-( 26605, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0, 0, 0), -- Bloodcrown
-( 27131, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000400, 0, 0, 0), -- Mana Shield (Rank 7)
-( 27179, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0, 0, 0), -- Holy Shield (Rank 4)
-( 27419, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 3, 0, 0), -- Warrior's Resolve
-( 27498, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 3, 0, 0), -- Crusader's Wrath
-( 27521, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0, 0, 15), -- Mana Restore
-( 27656, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 3, 0, 0), -- Flame Lash
-( 27774, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0, 0, 0), -- The Furious Storm
-( 27787, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 3, 0, 0), -- Rogue Armor Energize
-( 27811, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0, 0, 0), -- Blessed Recovery (Rank 1)
-( 27815, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0, 0, 0), -- Blessed Recovery (Rank 2)
-( 27816, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0, 0, 0), -- Blessed Recovery (Rank 3)
-( 28592, 0x10, 3, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Winter's Chill (Rank 2)
-( 28593, 0x10, 3, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Winter's Chill (Rank 3)
-( 28716, 0x00, 7, 0x00000010, 0x00000000, 0x00000000, 0x00040000, 0x00000000, 0, 0, 0), -- Rejuvenation
-( 28719, 0x00, 7, 0x00000020, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0, 0, 0), -- Healing Touch
-( 28744, 0x00, 7, 0x00000040, 0x00000000, 0x00000000, 0x00044000, 0x00000000, 0, 0, 0), -- Regrowth
-( 28752, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0, 0, 0), -- Adrenaline Rush
-( 28789, 0x00, 10, 0xC0000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Holy Power
-( 28802, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0, 0, 0), -- Epiphany
-( 28809, 0x00, 6, 0x00001000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0, 0, 0), -- Greater Heal
-( 28812, 0x00, 8, 0x02000006, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0, 0, 0), -- Head Rush
-( 28816, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 3, 0, 0), -- Invigorate
-( 28823, 0x00, 11, 0x000000C0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Totemic Power
-( 28847, 0x00, 7, 0x00000020, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Healing Touch Refund
-( 28849, 0x00, 11, 0x00000080, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Lesser Healing Wave
-( 29074, 0x14, 3, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0, 0, 0), -- Master of Elements (Rank 1)
-( 29075, 0x14, 3, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0, 0, 0), -- Master of Elements (Rank 2)
-( 29076, 0x14, 3, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0, 0, 0), -- Master of Elements (Rank 3)
-( 29150, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 3, 0, 0), -- Electric Discharge
-( 29179, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0, 0, 0), -- Elemental Devastation (Rank 2)
-( 29180, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0, 0, 0), -- Elemental Devastation (Rank 3)
-( 29385, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 7, 0, 0), -- Seal of Command
-( 29441, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000008, 0, 0, 1), -- Magic Absorption (Rank 1)
-( 29444, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000008, 0, 0, 1), -- Magic Absorption (Rank 2)
-( 29455, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0, 0, 0), -- Felsteel Shield Spike
-( 29501, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 3, 0, 0), -- Frost Arrow
-( 29593, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000070, 0, 0, 0), -- Improved Defensive Stance (Rank 1)
-( 29594, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000070, 0, 0, 0), -- Improved Defensive Stance (Rank 2)
-( 29624, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 3, 0, 0), -- Searing Arrow
-( 29625, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 3, 0, 0), -- Flaming Cannonball
-( 29626, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 3, 0, 0), -- Shadow Bolt
-( 29632, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 3, 0, 0), -- Shadow Shot
-( 29633, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 3, 0, 0), -- Fire Blast
-( 29634, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 3, 0, 0), -- Quill Shot
-( 29635, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 3, 0, 0), -- Flaming Shell
-( 29636, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 3, 0, 0), -- Venom Shot
-( 29637, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 3, 0, 0), -- Keeper's Sting
-( 29834, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0, 0, 0), -- Second Wind (Rank 1)
-( 29838, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0, 0, 0), -- Second Wind (Rank 2)
-( 29977, 0x00, 3, 0x00C00017, 0x00000040, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Combustion
-( 30003, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000800, 0, 0, 0), -- Sheen of Zanza
-( 30160, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0, 0, 0), -- Elemental Devastation (Rank 1)
-( 30293, 0x00, 5, 0x00000381, 0x008200C0, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Soul Leech (Rank 1)
-( 30295, 0x00, 5, 0x00000381, 0x008200C0, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Soul Leech (Rank 2)
-( 30296, 0x00, 5, 0x00000381, 0x008200C0, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Soul Leech (Rank 3)
-( 30299, 0x7E, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Nether Protection (Rank 1)
-( 30301, 0x7E, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Nether Protection (Rank 2)
-( 30302, 0x7E, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Nether Protection (Rank 3)
-( 30675, 0x00, 11, 0x00000003, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Lightning Overload (Rank 1)
-( 30678, 0x00, 11, 0x00000003, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Lightning Overload (Rank 2)
-( 30679, 0x00, 11, 0x00000003, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Lightning Overload (Rank 3)
-( 30701, 0x1C, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Elemental Absorption (Rank 1)
-( 30705, 0x1C, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Elemental Absorption (Rank 5)
-( 30823, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 10., 0, 0), -- Shamanistic Rage
-( 30881, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 30), -- Nature's Guardian (Rank 1)
-( 30883, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 30), -- Nature's Guardian (Rank 2)
-( 30884, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 30), -- Nature's Guardian (Rank 3)
-( 30885, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 30), -- Nature's Guardian (Rank 4)
-( 30886, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 30), -- Nature's Guardian (Rank 5)
-( 30937, 0x20, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Mark of Shadow
-( 31124, 0x00, 8, 0x01000006, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Blade Twisting (Rank 1)
-( 31126, 0x00, 8, 0x01000006, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Blade Twisting (Rank 2)
-( 31244, 0x00, 8, 0x003E0000, 0x00000009, 0x00000000, 0x00000000, 0x00000034, 0, 0, 0), -- Quick Recovery (Rank 1)
-( 31245, 0x00, 8, 0x003E0000, 0x00000009, 0x00000000, 0x00000000, 0x00000034, 0, 0, 0), -- Quick Recovery (Rank 2)
-( 31394, 0x20, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Mark of Shadow
-( 31569, 0x00, 3, 0x00010000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Improved Blink (Rank 1)
-( 31570, 0x00, 3, 0x00010000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Improved Blink (Rank 2)
-( 31571, 0x00, 3, 0x00000000, 0x00000022, 0x00000000, 0x00004000, 0x00000000, 0, 0, 0), -- Arcane Potency (Rank 1)
-( 31572, 0x00, 3, 0x00000000, 0x00000022, 0x00000000, 0x00004000, 0x00000000, 0, 0, 0), -- Arcane Potency (Rank 2)
-( 31656, 0x04, 3, 0x8000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Empowered Fire (Rank 1)
-( 31657, 0x04, 3, 0x8000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Empowered Fire (Rank 2)
-( 31658, 0x04, 3, 0x8000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Empowered Fire (Rank 3)
-( 31794, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0, 0, 0), -- Focused Mind
-( 31833, 0x00, 10, 0x80000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Light's Grace (Rank 1)
-( 31835, 0x00, 10, 0x80000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Light's Grace (Rank 2)
-( 31836, 0x00, 10, 0x80000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Light's Grace (Rank 3)
-( 31871, 0x00, 10, 0x00000010, 0x00000000, 0x00000000, 0x00004000, 0x00000000, 0, 0, 0), -- Divine Purpose (Rank 1)
-( 31872, 0x00, 10, 0x00000010, 0x00000000, 0x00000000, 0x00004000, 0x00000000, 0, 0, 0), -- Divine Purpose (Rank 2)
-( 53530, 0x01, 10, 0x00000000, 0x00000000, 0x00000004, 0x00000400, 0x00000001, 0, 100, 0), -- Divine Guardian
-( 31876, 0x00, 10, 0x00800000, 0x00000000, 0x00000000, 0x00000000, 0x00040000, 0, 0, 0), -- Judgements of the Wise (Rank 1)
-( 31877, 0x00, 10, 0x00800000, 0x00000000, 0x00000000, 0x00000000, 0x00040000, 0, 0, 0), -- Judgements of the Wise (Rank 2)
-( 31878, 0x00, 10, 0x00800000, 0x00000000, 0x00000000, 0x00000000, 0x00040000, 0, 0, 0), -- Judgements of the Wise (Rank 3)
-( 31904, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0, 0, 0), -- Holy Shield
-( 32216, 0x00, 4, 0x00000000, 0x00000100, 0x00000000, 0x00000010, 0x00000000, 0, 0, 0), -- Victorious
-( 32385, 0x00, 5, 0x00000001, 0x00040000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Shadow Embrace (Rank 1)
-( 32387, 0x00, 5, 0x00000001, 0x00040000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Shadow Embrace (Rank 2)
-( 32392, 0x00, 5, 0x00000001, 0x00040000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Shadow Embrace (Rank 3)
-( 32393, 0x00, 5, 0x00000001, 0x00040000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Shadow Embrace (Rank 4)
-( 32394, 0x00, 5, 0x00000001, 0x00040000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Shadow Embrace (Rank 5)
-( 32409, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Shadow Word: Death
-( 32587, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0, 0, 0), -- Shield Block
-( 32593, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x000222A8, 0x00000000, 0, 0, 3), -- Earth Shield (Rank 2)
-( 32594, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x000222A8, 0x00000000, 0, 0, 3), -- Earth Shield (Rank 3)
-( 32642, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0, 0, 0), -- Spore Cloud
-( 32734, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 3), -- Earth Shield
-( 32748, 0x00, 8, 0x00000000, 0x00000001, 0x00000000, 0x00000140, 0x00000000, 0, 0, 0), -- Deadly Throw Interrupt (Rank 5)
-( 32776, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0, 0, 0), -- Redoubt
-( 32777, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0, 0, 0), -- Holy Shield
-( 32837, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0, 0, 45), -- Spell Focus Trigger
-( 32844, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 2, 0, 0), -- Lesser Heroism
-( 32885, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0, 0, 0), -- Infuriate
-( 33076, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x000A22A8, 0x00000000, 0, 0, 0), -- Prayer of Mending (Rank 1)
-( 33089, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0, 0, 0), -- Vigilance of the Colossus
-( 33127, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 7, 0, 0), -- Seal of Command
-( 33142, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0, 0, 0), -- Blessed Resilience (Rank 1)
-( 33145, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0, 0, 0), -- Blessed Resilience (Rank 2)
-( 33146, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0, 0, 0), -- Blessed Resilience (Rank 3)
-( 33150, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0, 0, 0), -- Surge of Light (Rank 1)
-( 33154, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0, 0, 0), -- Surge of Light (Rank 2)
-( 33191, 0x00, 6, 0x00808000, 0x00000400, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Misery (Rank 1)
-( 33192, 0x00, 6, 0x00808000, 0x00000400, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Misery (Rank 2)
-( 33193, 0x00, 6, 0x00808000, 0x00000400, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Misery (Rank 3)
-( 33297, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 45), -- Spell Haste Trinket
-( 33299, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0, 0, 0), -- Coilfang Slave Pens Lvl 70 Boss3a Caster Trinket
-( 33510, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 5, 0, 0), -- Health Restore
-( 33648, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0, 0, 45), -- Reflection of Torment
-( 33719, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000800, 0, 0, 0), -- Perfect Spell Reflection
-( 33736, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 3), -- Water Shield (Rank 8)
-( 33746, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 10), -- Essence Infused Mushroom
-( 33757, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 100, 3), -- Windfury Weapon (Passive) (Rank 1)
-( 33759, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 10), -- Power Infused Mushroom
-( 33881, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0, 0, 0), -- Natural Perfection (Rank 1)
-( 33882, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0, 0, 0), -- Natural Perfection (Rank 2)
-( 33883, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0, 0, 0), -- Natural Perfection (Rank 3)
-( 33953, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00044000, 0x00000000, 0, 0, 45), -- Essence of Life
-( 34074, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000003, 0, 0, 0), -- Aspect of the Viper
-( 34080, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000008, 0, 0, 0), -- Riposte Stance
-( 34138, 0x00, 11, 0x00000080, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Totem of the Third Wind
-( 34139, 0x00, 10, 0x40000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Libram of Justice
-( 34258, 0x00, 10, 0x00800000, 0x00000000, 0x00000000, 0x00000000, 0x00040000, 0, 0, 0), -- Justice
-( 34262, 0x00, 10, 0x00800000, 0x00000000, 0x00000000, 0x00000000, 0x00040000, 0, 0, 0), -- Mercy
-( 34320, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0, 0, 45), -- Call of the Nexus
-( 34355, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 3), -- Poison Shield
-( 34497, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0, 0, 0), -- Thrill of the Hunt (Rank 1)
-( 34498, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0, 0, 0), -- Thrill of the Hunt (Rank 2)
-( 34499, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0, 0, 0), -- Thrill of the Hunt (Rank 3)
-( 34500, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0, 0, 0), -- Expose Weakness (Rank 1)
-( 34502, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0, 0, 0), -- Expose Weakness (Rank 2)
-( 34503, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0, 0, 0), -- Expose Weakness (Rank 3)
-( 34584, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 30), -- Love Struck
-( 34586, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 1.5, 0, 0), -- Romulo's Poison
-( 34598, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 45), -- Karazhan Caster Robe
-( 34749, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000008, 0, 0, 0), -- Recurring Power
-( 34753, 0x00, 6, 0x00001800, 0x00000004, 0x00001000, 0x00000000, 0x00000002, 0, 0, 0), -- Holy Concentration (Rank 1)
-( 34774, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 1.5, 0, 20), -- Magtheridon Melee Trinket
-( 34783, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000800, 0, 0, 0), -- Spell Reflection
-( 34827, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 3), -- Water Shield
-( 34859, 0x00, 6, 0x00001800, 0x00000004, 0x00001000, 0x00000000, 0x00000002, 0, 0, 0), -- Holy Concentration (Rank 2)
-( 34860, 0x00, 6, 0x00001800, 0x00000004, 0x00001000, 0x00000000, 0x00000002, 0, 0, 0), -- Holy Concentration (Rank 3)
-( 34914, 0x00, 6, 0x00002000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Vampiric Touch (Rank 1)
-( 34916, 0x00, 6, 0x00002000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Vampiric Touch (Rank 2)
-( 34917, 0x00, 6, 0x00002000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Vampiric Touch (Rank 3)
-( 34935, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 8), -- Backlash (Rank 1)
-( 34938, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 8), -- Backlash (Rank 2)
-( 34939, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 8), -- Backlash (Rank 3)
-( 34950, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0, 0, 0), -- Go for the Throat (Rank 1)
-( 34954, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0, 0, 0), -- Go for the Throat (Rank 2)
-( 35077, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 60), -- Band of the Eternal Defender
-( 35080, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 1, 0, 60), -- Band of the Eternal Champion
-( 35083, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 60), -- Band of the Eternal Sage
-( 35086, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 60), -- Band of the Eternal Restorer
-( 35121, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0, 0, 0), -- Nether Power
-( 35541, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00800000, 0x00000000, 0, 0, 0), -- Combat Potency (Rank 1)
-( 35550, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00800000, 0x00000000, 0, 0, 0), -- Combat Potency (Rank 2)
-( 35551, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00800000, 0x00000000, 0, 0, 0), -- Combat Potency (Rank 3)
-( 35552, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00800000, 0x00000000, 0, 0, 0), -- Combat Potency (Rank 4)
-( 35553, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00800000, 0x00000000, 0, 0, 0), -- Combat Potency (Rank 5)
-( 36032, 0x00, 3, 0x00001000, 0x00008000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Arcane Blast
-( 36096, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000800, 0, 0, 0), -- Spell Reflection
-( 36111, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- World Breaker
-( 36541, 0x04, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Curse of Burning Shadows
-( 37165, 0x00, 8, 0x00200400, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Haste
-( 37168, 0x00, 8, 0x003E0000, 0x00000009, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Finisher Combo
-( 37170, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 1, 0, 0), -- Free Finisher Chance
-( 37173, 0x00, 8, 0x2CBC0598, 0x00000106, 0x00000000, 0x00000000, 0x00000000, 0, 0, 30), -- Armor Penetration
-( 37189, 0x00, 10, 0xC0000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0, 0, 60), -- Recuced Holy Light Cast Time
-( 37193, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0, 0, 0), -- Infused Shield
-( 37195, 0x00, 10, 0x00800000, 0x00000000, 0x00000000, 0x00000000, 0x00040000, 0, 0, 0), -- Judgement Group Heal
-( 37197, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0, 0, 45), -- Spell Damage
-( 37213, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0, 0, 0), -- Mana Cost Reduction
-( 37214, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0, 0, 0), -- Energized
-( 37227, 0x00, 11, 0x000001C0, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0, 0, 60), -- Improved Healing Wave
-( 37237, 0x00, 11, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0, 0, 0), -- Lightning Bolt Discount
-( 37247, 0x08, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0, 0, 45), -- Regain Mana
-( 37377, 0x20, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0, 0, 0), -- Shadowflame
-( 37379, 0x20, 5, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Flameshadow
-( 37384, 0x00, 5, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Improved Corruption and Immolate
-( 37443, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0, 0, 0), -- Crit Bonus Damage
-( 37514, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000020, 0, 0, 0), -- Blade Turning
-( 37516, 0x00, 4, 0x00000400, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Revenge Bonus
-( 37519, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000030, 0, 0, 0), -- Rage Bonus
-( 37523, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0, 0, 0), -- Reinforced Shield
-( 37528, 0x00, 4, 0x00000004, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Overpower Bonus
-( 37536, 0x00, 4, 0x00010000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Improved Battle Shout
-( 37568, 0x00, 6, 0x00000800, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Greater Heal Discount
-( 37594, 0x00, 6, 0x00001000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Greater Heal Refund
-( 37600, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0, 0, 0), -- Offensive Discount
-( 37601, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0, 0, 0), -- Relentlessness
-( 37603, 0x00, 6, 0x00008000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Shadow Word Pain Damage
-( 37655, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 60), -- Bonus Mana Regen
-( 37657, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0, 0, 3), -- Lightning Capacitor
-( 38026, 0x01, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000100, 0, 0, 0), -- Viscous Shield
-( 38031, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0, 0, 0), -- Shield Block
-( 38290, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 1.6, 0, 0), -- Santos' Blessing
-( 38299, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 15), -- HoTs on Heals
-( 38326, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0, 0, 0), -- Crit Threat Reduction Melee
-( 38327, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0, 0, 0), -- Crit Threat Reduction Spell
-( 38334, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 60), -- Proc Mana Regen
-( 38347, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0, 0, 45), -- Crit Proc Spell Damage
-( 38350, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0, 0, 0), -- Crit Proc Heal
-( 38394, 0x00, 5, 0x00000006, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Dot Heals
-( 38857, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0, 0, 0), -- Spell Ground
-( 39027, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 3), -- Poison Shield
-( 39372, 0x30, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Frozen Shadoweave
-( 39437, 0x04, 5, 0x00001364, 0x000000C0, 0x00000000, 0x00000000, 0x00010000, 0, 0, 0), -- Shadowflame Hellfire and RoF
-( 39442, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000001, 0, 0, 0), -- Aura of Wrath
-( 39443, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0, 0, 0), -- Aura of Wrath
-( 39530, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0, 0, 0), -- Focus
-( 39958, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.7, 0, 40), -- Skyfire Swiftness
-( 40407, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 6, 0, 0), -- Illidan Tank Shield
-( 40438, 0x00, 6, 0x00008040, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Priest Tier 6 Trinket
-( 40442, 0x00, 7, 0x00000014, 0x00000440, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Druid Tier 6 Trinket
-( 40444, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0, 0, 0), -- Black Temple Tank Trinket
-( 40458, 0x00, 4, 0x02000000, 0x00000601, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Warrior Tier 6 Trinket
-( 40463, 0x00, 11, 0x00000081, 0x00000010, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Shaman Tier 6 Trinket
-( 40470, 0x00, 10, 0xC0800000, 0x00000000, 0x00000000, 0x00000000, 0x00040000, 0, 0, 0), -- Paladin Tier 6 Trinket
-( 40475, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 3, 0, 0), -- Black Temple Melee Trinket
-( 40478, 0x00, 5, 0x00000002, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Warlock Tier 6 Trinket
-( 40482, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0, 0, 0), -- Mage Tier 6 Trinket
-( 40485, 0x00, 9, 0x00000000, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Hunter Tier 6 Trinket
-( 40899, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 3), -- Felfire Proc
-( 41034, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000400, 0, 0, 0), -- Spell Absorption
-( 41260, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 10), -- Aviana's Purpose
-( 41262, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 10), -- Aviana's Will
-( 41381, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000100, 0, 0, 0), -- Shell of Life
-( 41393, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000020, 0, 0, 0), -- Riposte
-( 41434, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 2, 0, 45), -- The Twin Blades of Azzinoth
-( 41469, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 7, 0, 0), -- Seal of Command
-( 41635, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x000A22A8, 0x00000000, 0, 0, 0), -- Prayer of Mending (Rank 1)
-( 41989, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.5, 0, 0), -- Fists of Fury
-( 42083, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0, 0, 45), -- Fury of the Crashing Waves
-( 42135, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 90), -- Lesser Rune of Warding
-( 42136, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 90), -- Greater Rune of Warding
-( 42368, 0x00, 10, 0x40000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Merciless Libram of Justice
-( 42370, 0x00, 11, 0x00000080, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Merciless Totem of the Third WInd
-( 42770, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0, 0, 0), -- Second Wind (Rank 2)
-( 43019, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000400, 0, 0, 0), -- Mana Shield (Rank 8)
-( 43020, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000400, 0, 0, 0), -- Mana Shield (Rank 9)
-( 43338, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0, 0, 0), -- Shamanistic Focus
-( 43443, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000800, 0, 0, 0), -- Spell Reflection
-( 43726, 0x00, 10, 0x40000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Vengeful Libram of Justice
-( 43728, 0x00, 11, 0x00000080, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Vengeful Totem of Third WInd
-( 43737, 0x00, 7, 0x00000000, 0x00000440, 0x00000000, 0x00000000, 0x00000000, 0, 0, 10), -- Primal Instinct
-( 43739, 0x00, 7, 0x00000002, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Lunar Grace
-( 43741, 0x00, 10, 0x80000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Light's Grace
-( 43745, 0x00, 10, 0x00000000, 0x00000200, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Crusader's Command
-( 43748, 0x00, 11, 0x90100000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Elemental Strength
-( 43750, 0x00, 11, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Energized
-( 43819, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0, 0, 0), -- Lucidity
-( 44404, 0x00, 3, 0x20000021, 0x00009000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Missile Barrage (Rank 1)
-( 44442, 0x00, 3, 0x00800000, 0x00000040, 0x00000000, 0x00000000, 0x00010000, 0, 0, 1), -- Firestarter (Rank 1)
-( 44443, 0x00, 3, 0x00800000, 0x00000040, 0x00000000, 0x00000000, 0x00010000, 0, 0, 1), -- Firestarter (Rank 2)
-( 44445, 0x00, 3, 0x00000013, 0x00011000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Hot Streak (Rank 1)
-( 44446, 0x00, 3, 0x00000013, 0x00011000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Hot Streak (Rank 2)
-( 44448, 0x00, 3, 0x00000013, 0x00011000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Hot Streak (Rank 3)
-( 44449, 0x00, 3, 0x20E21277, 0x00019048, 0x00000000, 0x00000000, 0x00000002, 0, 0, 0), -- Burnout (Rank 1)
-( 44469, 0x00, 3, 0x20E21277, 0x00019048, 0x00000000, 0x00000000, 0x00000002, 0, 0, 0), -- Burnout (Rank 2)
-( 44470, 0x00, 3, 0x20E21277, 0x00019048, 0x00000000, 0x00000000, 0x00000002, 0, 0, 0), -- Burnout (Rank 3)
-( 44471, 0x00, 3, 0x20E21277, 0x00019048, 0x00000000, 0x00000000, 0x00000002, 0, 0, 0), -- Burnout (Rank 4)
-( 44472, 0x00, 3, 0x20E21277, 0x00019048, 0x00000000, 0x00000000, 0x00000002, 0, 0, 0), -- Burnout (Rank 5)
-( 44543, 0x00, 3, 0x00100220, 0x00001000, 0x00000000, 0x00010000, 0x00000000, 0, 7, 0), -- Fingers of Frost (Rank 1)
-( 44545, 0x00, 3, 0x00100220, 0x00001000, 0x00000000, 0x00010000, 0x00000000, 0, 15, 0), -- Fingers of Frost (Rank 2)
-( 74396, 0x54, 3, 0x28E212F7, 0x00119048, 0x00000000, 0x00010000, 0x00000003, 0, 0, 0), -- Fingers of Frost (buff)
-( 44546, 0x00, 3, 0x00100220, 0x00001000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Brain Freeze (Rank 1)
-( 44548, 0x00, 3, 0x00100220, 0x00001000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Brain Freeze (Rank 2)
-( 44549, 0x00, 3, 0x00100220, 0x00001000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Brain Freeze (Rank 3)
-( 44557, 0x00, 3, 0x00000020, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Enduring Winter (Rank 1)
-( 44560, 0x00, 3, 0x00000020, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Enduring Winter (Rank 2)
-( 44561, 0x00, 3, 0x00000020, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Enduring Winter (Rank 3)
-( 44835, 0x00, 7, 0x00000000, 0x00000080, 0x00000000, 0x00000010, 0x00000000, 0, 0, 0), -- Maim Interrupt
-( 45054, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 15), -- Augment Pain
-( 45057, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 30), -- Evasive Maneuvers
-( 45234, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0, 0, 0), -- Focused Will (Rank 1)
-( 45243, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0, 0, 0), -- Focused Will (Rank 2)
-( 45244, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0, 0, 0), -- Focused Will (Rank 3)
-( 45354, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 45), -- Item - Sunwell Dungeon Melee Trinket
-( 45469, 0x00, 15, 0x00000010, 0x00000000, 0x00000000, 0x00000010, 0x00000000, 0, 0, 0), -- Death Strike
-( 45481, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 45), -- Sunwell Exalted Caster Neck
-( 45482, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 45), -- Sunwell Exalted Melee Neck
-( 45483, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 45), -- Sunwell Exalted Tank Neck
-( 45484, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00004000, 0x00000000, 0, 0, 45), -- Sunwell Exalted Healer Neck
-( 46025, 0x20, 6, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Blackout (Rank 5)
-( 46092, 0x00, 10, 0x40000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Brutal Libram of Justice
-( 46098, 0x00, 11, 0x00000080, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Brutal Totem of Third WInd
-( 46569, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 45), -- Sunwell Exalted Caster Neck
-( 46662, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 20), -- Deathfrost
-( 46832, 0x00, 7, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0, 0, 0), -- Moonkin Starfire Bonus
-( 46854, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0, 0, 0), -- Trauma (Rank 1)
-( 46855, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0, 0, 0), -- Trauma (Rank 2)
-( 46867, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0, 0, 0), -- Wrecking Crew (Rank 1)
-( 46910, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000001, 5.5, 0, 0), -- Furious Attacks (Rank 1)
-( 46911, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000001, 7.5, 0, 0), -- Furious Attacks (Rank 2)
-( 46913, 0x00, 4, 0x00000040, 0x00000404, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Bloodsurge (Rank 1)
-( 46914, 0x00, 4, 0x00000040, 0x00000404, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Bloodsurge (Rank 2)
-( 46915, 0x00, 4, 0x00000040, 0x00000404, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Bloodsurge (Rank 3)
-( 46951, 0x00, 4, 0x00000400, 0x00000040, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Sword and Board (Rank 1)
-( 46952, 0x00, 0, 0x00000400, 0x00000040, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Sword and Board (Rank 2)
-( 46953, 0x00, 0, 0x00000400, 0x00000040, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Sword and Board (Rank 3)
-( 47195, 0x00, 5, 0x00000002, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Eradication (Rank 1)
-( 47196, 0x00, 5, 0x00000002, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Eradication (Rank 2)
-( 47197, 0x00, 5, 0x00000002, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Eradication (Rank 3)
-( 47201, 0x00, 5, 0x00004009, 0x00040000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Everlasting Affliction (1)
-( 47202, 0x00, 5, 0x00004009, 0x00040000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Everlasting Affliction (2)
-( 47203, 0x00, 5, 0x00004009, 0x00040000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Everlasting Affliction (3)
-( 47204, 0x00, 5, 0x00004009, 0x00040000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Everlasting Affliction (4)
-( 47205, 0x00, 5, 0x00004009, 0x00040000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Everlasting Affliction (5)
-( 47245, 0x00, 5, 0x00000002, 0x00000000, 0x00000000, 0x00000000, 0x00000001, 0, 0, 0), -- Molten Core (Rank 1)
-( 47246, 0x00, 5, 0x00000002, 0x00000000, 0x00000000, 0x00000000, 0x00000001, 0, 0, 0), -- Molten Core (Rank 2)
-( 47247, 0x00, 5, 0x00000002, 0x00000000, 0x00000000, 0x00000000, 0x00000001, 0, 0, 0), -- Molten Core (Rank 3)
-( 47258, 0x00, 5, 0x00000000, 0x00800000, 0x00000000, 0x00000000, 0x00010000, 0, 0, 0), -- Backdraft (Rank 1)
-( 47259, 0x00, 5, 0x00000000, 0x00800000, 0x00000000, 0x00000000, 0x00010000, 0, 0, 0), -- Backdraft (Rank 2)
-( 47260, 0x00, 5, 0x00000000, 0x00800000, 0x00000000, 0x00000000, 0x00010000, 0, 0, 0), -- Backdraft (Rank 3)
-( 47263, 0x20, 5, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0, 0, 20), -- Torture (Rank 1)
-( 47264, 0x20, 5, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0, 0, 20), -- Torture (Rank 2)
-( 47265, 0x20, 5, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0, 0, 20), -- Torture (Rank 3)
-( 47509, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0, 0, 0), -- Divine Aegis (Rank 1)
-( 47511, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0, 0, 0), -- Divine Aegis (Rank 2)
-( 47515, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0, 0, 0), -- Divine Aegis (Rank 3)
-( 47516, 0x00, 6, 0x00001800, 0x00010000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Grace (Rank 1)
-( 47517, 0x00, 6, 0x00001800, 0x00010000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Grace (Rank 2)
-( 47569, 0x00, 6, 0x00004000, 0x00000000, 0x00000000, 0x00004000, 0x00000000, 0, 0, 0), -- Improved Shadowform (Rank 1)
-( 47570, 0x00, 6, 0x00004000, 0x00000000, 0x00000000, 0x00004000, 0x00000000, 0, 0, 0), -- Improved Shadowform (Rank 2)
-( 47580, 0x00, 6, 0x00000000, 0x00000000, 0x00000040, 0x00000000, 0x00010000, 0, 0, 0), -- Pain and Suffering (Rank 1)
-( 47581, 0x00, 6, 0x00000000, 0x00000000, 0x00000040, 0x00000000, 0x00010000, 0, 0, 0), -- Pain and Suffering (Rank 2)
-( 47582, 0x00, 6, 0x00000000, 0x00000000, 0x00000040, 0x00000000, 0x00010000, 0, 0, 0), -- Pain and Suffering (Rank 3)
-( 48110, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x000A22A8, 0x00000000, 0, 0, 0), -- Prayer of Mending (Rank 2)
-( 48111, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x000A22A8, 0x00000000, 0, 0, 0), -- Prayer of Mending (Rank 3)
-( 48112, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x000A22A8, 0x00000000, 0, 0, 0), -- Prayer of Mending (Rank 2)
-( 48113, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x000A22A8, 0x00000000, 0, 0, 0), -- Prayer of Mending (Rank 3)
-( 48159, 0x00, 6, 0x00002000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Vampiric Touch (Rank 4)
-( 48160, 0x00, 6, 0x00002000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Vampiric Touch (Rank 5)
-( 48483, 0x00, 7, 0x00008800, 0x00000440, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Infected Wounds (Rank 1)
-( 48484, 0x00, 7, 0x00008800, 0x00000440, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Infected Wounds (Rank 2)
-( 48485, 0x00, 7, 0x00008800, 0x00000440, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Infected Wounds (Rank 3)
-( 48492, 0x00, 7, 0x00080000, 0x00000000, 0x00000800, 0x00000400, 0x00000000, 0, 0, 0), -- King of the Jungle (Rank1)
-( 48494, 0x00, 7, 0x00080000, 0x00000000, 0x00000800, 0x00000400, 0x00000000, 0, 0, 0), -- King of the Jungle (Rank2)
-( 48495, 0x00, 7, 0x00080000, 0x00000000, 0x00000800, 0x00000400, 0x00000000, 0, 0, 0), -- King of the Jungle (Rank3)
-( 48496, 0x00, 7, 0x00000060, 0x02000002, 0x00000000, 0x00000000, 0x00000002, 0, 0, 0), -- Living Seed (Rank 1)
-( 48499, 0x00, 7, 0x00000060, 0x02000002, 0x00000000, 0x00000000, 0x00000002, 0, 0, 0), -- Living Seed (Rank 2)
-( 48500, 0x00, 7, 0x00000060, 0x02000002, 0x00000000, 0x00000000, 0x00000002, 0, 0, 0), -- Living Seed (Rank 3)
-( 48506, 0x00, 7, 0x00000005, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Earth and Moon (Rank 1)
-( 48510, 0x00, 7, 0x00000005, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Earth and Moon (Rank 2)
-( 48511, 0x00, 7, 0x00000005, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Earth and Moon (Rank 3)
-( 48516, 0x00, 7, 0x00000005, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0, 0, 30), -- Eclipse (Rank 1)
-( 48521, 0x00, 7, 0x00000005, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0, 0, 30), -- Eclipse (Rank 2)
-( 48525, 0x00, 7, 0x00000005, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0, 0, 30), -- Eclipse (Rank 3)
-( 48833, 0x00, 7, 0x00000000, 0x00000440, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Primal Instinct
-( 48835, 0x00, 10, 0x00800000, 0x00000000, 0x00000000, 0x00000000, 0x00040000, 0, 0, 0), -- Justice
-( 48837, 0x00, 11, 0x90100000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Elemental Tenacity
-( 48951, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0, 0, 0), -- Holy Shield (Rank 5)
-( 48952, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0, 0, 0), -- Holy Shield (Rank 6)
-( 48988, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0, 0, 0), -- Bloody Vengeance (Rank 1)
-( 49004, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000033, 0, 0, 0), -- Scent of Blood (Rank 1)
-( 49508, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000033, 0, 0, 0), -- Scent of Blood (Rank 2)
-( 49509, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000033, 0, 0, 0), -- Scent of Blood (Rank 3)
-( 49018, 0x00, 15, 0x01400000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Sudden Doom (Rank 1)
-( 49194, 0x00, 15, 0x00002000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Unholy Blight
-( 49027, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 3, 20), -- Bloodworms (Rank 1)
-( 49542, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 6, 20), -- Bloodworms (Rank 2)
-( 49543, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 9, 20), -- Bloodworms (Rank 3)
-( 49208, 0x00, 15, 0x00400000, 0x00010000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Reaping (Rank 1)
-( 49219, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000004, 0x00000000, 0, 0, 0), -- Blood-Caked Blade (Rank 1)
-( 49222, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x000222A8, 0x00000000, 0, 0, 2), -- Bone Shield
-( 49280, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 3), -- Lightning Shield (Rank 10)
-( 49281, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 3), -- Lightning Shield (Rank 11)
-( 49283, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x000222A8, 0x00000000, 0, 0, 3), -- Earth Shield (Rank 4)
-( 49284, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x000222A8, 0x00000000, 0, 0, 3), -- Earth Shield (Rank 5)
-( 49503, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0, 0, 0), -- Bloody Vengeance (Rank 2)
-( 49504, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0, 0, 0), -- Bloody Vengeance (Rank 3)
-( 49529, 0x00, 15, 0x01400000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Sudden Doom (Rank 2)
-( 49530, 0x00, 15, 0x01400000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Sudden Doom (Rank 3)
-( 49622, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 60), -- Bonus Mana Regen
-( 49627, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000004, 0x00000000, 0, 0, 0), -- Blood-Caked Blade (Rank 2)
-( 49628, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000004, 0x00000000, 0, 0, 0), -- Blood-Caked Blade (Rank 3)
-( 50781, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0, 0, 6), -- Fate Rune of Primal Energy
-( 50880, 0x00, 15, 0x00000000, 0x04000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Icy Talons
-( 50884, 0x00, 15, 0x00000000, 0x04000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Icy Talons
-( 50885, 0x00, 15, 0x00000000, 0x04000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Icy Talons
-( 50886, 0x00, 15, 0x00000000, 0x04000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Icy Talons
-( 50887, 0x00, 15, 0x00000000, 0x04000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Icy Talons
-( 51123, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 1, 0, 0), -- Killing Machine (Rank 1)
-( 51127, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 2, 0, 0), -- Killing Machine (Rank 2)
-( 51128, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 4, 0, 0), -- Killing Machine (Rank 3)
-( 51129, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 6, 0, 0), -- Killing Machine (Rank 4)
-( 51130, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 8, 0, 0), -- Killing Machine (Rank 5)
-( 51346, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 10), -- Venture Company Beatdown!
-( 51349, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 10), -- Venture Company Beatdown
-( 51352, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 10), -- Venture Company Beatdown!
-( 51359, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 10), -- Venture Company Beatdown
-( 51414, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 45), -- Venomous Breath Aura
-( 51459, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000004, 0x00000000, 0, 0, 0), -- Necrosis (Rank 1)
-( 51462, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000004, 0x00000000, 0, 0, 0), -- Necrosis (Rank 2)
-( 51463, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000004, 0x00000000, 0, 0, 0), -- Necrosis (Rank 3)
-( 51464, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000004, 0x00000000, 0, 0, 0), -- Necrosis (Rank 4)
-( 51465, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000004, 0x00000000, 0, 0, 0), -- Necrosis (Rank 5)
-( 51474, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0, 0, 0), -- Astral Shift (Rank 1)
-( 51478, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0, 0, 0), -- Astral Shift (Rank 2)
-( 51479, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0, 0, 0), -- Astral Shift (Rank 3)
-( 51483, 0x01, 11, 0x20000000, 0x00000000, 0x00000000, 0x00004000, 0x00000001, 0, 0, 0), -- Storm, Earth and Fire
-( 51485, 0x01, 11, 0x20000000, 0x00000000, 0x00000000, 0x00004000, 0x00000001, 0, 0, 0), -- Storm, Earth and Fire
-( 51486, 0x01, 11, 0x20000000, 0x00000000, 0x00000000, 0x00004000, 0x00000001, 0, 0, 0), -- Storm, Earth and Fire
-( 51521, 0x00, 11, 0x00000000, 0x01000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Improved Stormstrike
-( 51522, 0x00, 11, 0x00000000, 0x01000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Improved Stormstrike
-( 51523, 0x00, 11, 0x00000000, 0x00000001, 0x00000000, 0x00010000, 0x00000000, 0, 50, 0), -- Earthen Power (Rank 1)
-( 51524, 0x00, 11, 0x00000000, 0x00000001, 0x00000000, 0x00010000, 0x00000000, 0, 50, 0), -- Earthen Power (Rank 2)
-( 51528, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 2.5, 0, 0), -- Maelstrom Weapon (Rank 1)
-( 51529, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 5, 0, 0), -- Maelstrom Weapon (Rank 2)
-( 51530, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 7.5, 0, 0), -- Maelstrom Weapon (Rank 3)
-( 51531, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 10, 0, 0), -- Maelstrom Weapon (Rank 4)
-( 51532, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 12., 0, 0), -- Maelstrom Weapon (Rank 5)
-( 51556, 0x00, 11, 0x000000C0, 0x00000000, 0x00000010, 0x00000000, 0x00000002, 0, 0, 0), -- Ancestral Awakening (Rank 1)
-( 51557, 0x00, 11, 0x000000C0, 0x00000000, 0x00000010, 0x00000000, 0x00000002, 0, 0, 0), -- Ancestral Awakening (Rank 2)
-( 51558, 0x00, 11, 0x000000C0, 0x00000000, 0x00000010, 0x00000000, 0x00000002, 0, 0, 0), -- Ancestral Awakening (Rank 3)
-( 51562, 0x00, 11, 0x00000100, 0x00000000, 0x00000010, 0x00000000, 0x00000000, 0, 0, 0), -- Tidal Waves (Rank 1)
-( 51563, 0x00, 11, 0x00000100, 0x00000000, 0x00000010, 0x00000000, 0x00000000, 0, 0, 0), -- Tidal Waves (Rank 2)
-( 51564, 0x00, 11, 0x00000100, 0x00000000, 0x00000010, 0x00000000, 0x00000000, 0, 0, 0), -- Tidal Waves (Rank 3)
-( 51565, 0x00, 11, 0x00000100, 0x00000000, 0x00000010, 0x00000000, 0x00000000, 0, 0, 0), -- Tidal Waves (Rank 4)
-( 51566, 0x00, 11, 0x00000100, 0x00000000, 0x00000010, 0x00000000, 0x00000000, 0, 0, 0), -- Tidal Waves (Rank 5)
-( 51625, 0x00, 8, 0x1000A000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Deadly Brew (Rank 1)
-( 51626, 0x00, 8, 0x1000A000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Deadly Brew (Rank 2)
-( 51627, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000070, 0, 0, 0), -- Turn the Tables (Rank 1)
-( 51628, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000070, 0, 0, 0), -- Turn the Tables (Rank 2)
-( 51629, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000070, 0, 0, 0), -- Turn the Tables (Rank 3)
-( 51634, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0, 0, 0), -- Focused Attacks (Rank 1)
-( 51635, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0, 0, 0), -- Focused Attacks (Rank 2)
-( 51636, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0, 0, 0), -- Focused Attacks (Rank 3)
-( 51664, 0x00, 8, 0x00020000, 0x00000008, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Cut to the Chase (Rank 1)
-( 51665, 0x00, 8, 0x00020000, 0x00000008, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Cut to the Chase (Rank 2)
-( 51667, 0x00, 8, 0x00020000, 0x00000008, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Cut to the Chase (Rank 3)
-( 51668, 0x00, 8, 0x00020000, 0x00000008, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Cut to the Chase (Rank 4)
-( 51669, 0x00, 8, 0x00020000, 0x00000008, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Cut to the Chase (Rank 5)
-( 51672, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000010, 0, 0, 1), -- Unfair Advantage (Rank 1)
-( 51674, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000010, 0, 0, 1), -- Unfair Advantage (Rank 2)
-( 51679, 0x00, 8, 0x00000001, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Throwing Specialization (Rank 2)
-( 51692, 0x00, 8, 0x00000204, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Waylay (Rank 1)
-( 51696, 0x00, 8, 0x00000204, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Waylay (Rank 2)
-( 51698, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0, 0, 1), -- Honor Among Thieves (Rank 1)
-( 51700, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0, 0, 1), -- Honor Among Thieves (Rank 2)
-( 51701, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0, 0, 1), -- Honor Among Thieves (Rank 3)
-( 51915, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x01000000, 0x00000000, 0, 100, 600), -- Undying Resolve
-( 51940, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 20, 0), -- Earthliving Weapon (Passive) (Rank 1)
-( 51989, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 20, 0), -- Earthliving Weapon (Passive) (Rank 2)
-( 52004, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 20, 0), -- Earthliving Weapon (Passive) (Rank 3)
-( 52005, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 20, 0), -- Earthliving Weapon (Passive) (Rank 4)
-( 52007, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 20, 0), -- Earthliving Weapon (Passive) (Rank 5)
-( 52008, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 20, 0), -- Earthliving Weapon (Passive) (Rank 6)
-( 52020, 0x00, 7, 0x00008000, 0x00100000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Snap and Snarl
-( 52127, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 3), -- Water Shield (Rank 1)
-( 52129, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 3), -- Water Shield (Rank 2)
-( 52131, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 3), -- Water Shield (Rank 3)
-( 52134, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 3), -- Water Shield (Rank 4)
-( 52136, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 3), -- Water Shield (Rank 5)
-( 52138, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 3), -- Water Shield (Rank 6)
-( 52420, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 30), -- Deflection
-( 52423, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000020, 0, 0, 0), -- Retaliation
-( 52795, 0x00, 6, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Borrowed Time (Rank 1)
-( 52797, 0x00, 6, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Borrowed Time (Rank 2)
-( 52798, 0x00, 6, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Borrowed Time (Rank 3)
-( 52799, 0x00, 6, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Borrowed Time (Rank 4)
-( 52800, 0x00, 6, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Borrowed Time (Rank 5)
-( 52898, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0, 0, 0), -- Spell Damping
-( 53215, 0x00, 9, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Wild Quiver (Rank 1)
-( 53216, 0x00, 9, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Wild Quiver (Rank 2)
-( 53217, 0x00, 9, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Wild Quiver (Rank 3)
-( 53221, 0x00, 9, 0x00000000, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Improved Steady Shot (Rank 1)
-( 53222, 0x00, 9, 0x00000000, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Improved Steady Shot (Rank 2)
-( 53224, 0x00, 9, 0x00000000, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Improved Steady Shot (Rank 3)
-( 53228, 0x00, 9, 0x00000020, 0x01000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Rapid Recuperation (Rank 1)
-( 53232, 0x00, 9, 0x00000020, 0x01000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Rapid Recuperation (Rank 2)
-( 53256, 0x00, 9, 0x00000800, 0x00800001, 0x00000000, 0x00000000, 0x00000002, 0, 0, 0), -- Cobra Strikes (Rank 1)
-( 53259, 0x00, 9, 0x00000800, 0x00800001, 0x00000000, 0x00000000, 0x00000002, 0, 0, 0), -- Cobra Strikes (Rank 2)
-( 53260, 0x00, 9, 0x00000800, 0x00800001, 0x00000000, 0x00000000, 0x00000002, 0, 0, 0), -- Cobra Strikes (Rank 3)
-( 53290, 0x00, 9, 0x00000800, 0x00000001, 0x00000200, 0x00000000, 0x00000002, 0, 0, 0), -- Hunting Party (Rank 1)
-( 53291, 0x00, 9, 0x00000800, 0x00000001, 0x00000200, 0x00000000, 0x00000002, 0, 0, 0), -- Hunting Party (Rank 2)
-( 53292, 0x00, 9, 0x00000800, 0x00000001, 0x00000200, 0x00000000, 0x00000002, 0, 0, 0), -- Hunting Party (Rank 3)
-( 53375, 0x00, 10, 0x00000000, 0x00002000, 0x00000000, 0x00000400, 0x00000000, 0, 0, 6), -- Sanctified Wrath (Rank 1)
-( 53376, 0x00, 10, 0x00000000, 0x00002000, 0x00000000, 0x00000400, 0x00000000, 0, 0, 6), -- Sanctified Wrath (Rank 2)
-( 53380, 0x00, 10, 0x00800000, 0x00028000, 0x00000000, 0x00000000, 0x00040002, 0, 0, 0), -- Righteous Vengeance (Rank 1)
-( 53381, 0x00, 10, 0x00800000, 0x00028000, 0x00000000, 0x00000000, 0x00040002, 0, 0, 0), -- Righteous Vengeance (Rank 2)
-( 53382, 0x00, 10, 0x00800000, 0x00028000, 0x00000000, 0x00000000, 0x00040002, 0, 0, 0), -- Righteous Vengeance (Rank 3)
-( 53397, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0, 0, 0), -- Invigoration (Rank 1)
-( 53486, 0x00, 10, 0x00800000, 0x00028000, 0x00000000, 0x00000000, 0x00040002, 0, 0, 0), -- The Art of War (Rank 1)
-( 53488, 0x00, 10, 0x00800000, 0x00028000, 0x00000000, 0x00000000, 0x00040002, 0, 0, 0), -- The Art of War (Rank 2)
-( 53501, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0, 0, 0), -- Sheath of Light (Rank 1)
-( 53502, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0, 0, 0), -- Sheath of Light (Rank 2)
-( 53503, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0, 0, 0), -- Sheath of Light (Rank 3)
-( 53551, 0x00, 10, 0x00001000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Sacred Cleansing (Rank 1)
-( 53552, 0x00, 10, 0x00001000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Sacred Cleansing (Rank 2)
-( 53553, 0x00, 10, 0x00001000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Sacred Cleansing (Rank 3)
-( 53569, 0x00, 10, 0x40200000, 0x00010000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Infusion of Light (Rank 1)
-( 53576, 0x00, 10, 0x40200000, 0x00010000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Infusion of Light (Rank 2)
-( 53646, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0, 0, 0), -- Demonic Pact (Rank 1)
-( 53671, 0x00, 10, 0x00800000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Judgements of the Pure (Rank 1)
-( 53673, 0x00, 10, 0x00800000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Judgements of the Pure (Rank 2)
-( 53695, 0x00, 10, 0x00800000, 0x00000000, 0x00000008, 0x00000000, 0x00000000, 0, 0, 0), -- Judgements of the Just (Rank 1)
-( 53696, 0x00, 10, 0x00800000, 0x00000000, 0x00000008, 0x00000000, 0x00000000, 0, 0, 0), -- Judgements of the Just (Rank 2)
-( 53709, 0x02, 10, 0x00004000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Shield of the templar
-( 53710, 0x02, 10, 0x00004000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Shield of the templar
-( 53711, 0x02, 10, 0x00004000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Shield of the templar
-( 54151, 0x00, 10, 0x00800000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Judgements of the Pure (Rank 3)
-( 54154, 0x00, 10, 0x00800000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Judgements of the Pure (Rank 4)
-( 54155, 0x00, 10, 0x00800000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Judgements of the Pure (Rank 5)
-( 54278, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0, 0, 0), -- Empowered Imp
-( 54486, 0x00, 0, 0x20000021, 0x00009000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Missile Barrage (Rank 2)
-( 54488, 0x00, 0, 0x20000021, 0x00009000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Missile Barrage (Rank 3)
-( 54489, 0x00, 0, 0x20000021, 0x00009000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Missile Barrage (Rank 4)
-( 54490, 0x00, 0, 0x20000021, 0x00009000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Missile Barrage (Rank 5)
-( 54646, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0, 0, 0), -- Focus Magic
-( 54695, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 45), -- Item - Death Knight's Anguish Base
-( 54707, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 60), -- Sonic Awareness (DND)
-( 54738, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0, 0, 45), -- Star of Light
-( 54747, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0, 0, 0), -- Burning Determination (Rank 1)
-( 54749, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0, 0, 0), -- Burning Determination (Rank 2)
-( 54754, 0x00, 7, 0x00000010, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Glyph of Rejuvenation
-( 54808, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 60), -- Sonic Shield
-( 54838, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 45), -- Purified Spirit
-( 54841, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0, 0, 3), -- Thunder Capacitor
-( 54937, 0x00, 10, 0x80000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Glyph of Holy Light
-( 54939, 0x00, 10, 0x00008000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Glyph of Divinity
-( 55198, 0x00, 11, 0x000001C0, 0x00000000, 0x00000000, 0x00004000, 0x00000002, 0, 0, 0), -- Tidal Force
-( 55380, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 45), -- Skyflare Swiftness
-( 55381, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0, 0, 15), -- Mana Restore
-( 55440, 0x00, 11, 0x00000040, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Glyph of Healing Wave
-( 55610, 0x00, 15, 0x00000000, 0x04000000, 0x00000000, 0x00001000, 0x00000000, 0, 0, 0), -- Improved Icy Talons
-( 55640, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 45), -- Lightweave Embroidery
-( 55677, 0x00, 6, 0x00000000, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Glyph of Dispel Magic
-( 55680, 0x00, 6, 0x00000200, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Glyph of Prayer of Healing
-( 55681, 0x00, 6, 0x00008000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Glyph of Shadow Word: Pain
-( 55689, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0, 0, 0), -- Glyph of Shadow
-( 55747, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 45), -- Argent Fury
-( 55768, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 45), -- Darkglow Embroidery
-( 55776, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 45), -- Swordguard Embroidery
-( 56218, 0x00, 5, 0x00000002, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Glyph of Corruption
-( 56249, 0x00, 5, 0x00000000, 0x00000000, 0x00000400, 0x00000000, 0x00000000, 0, 0, 0), -- Glyph of Felhunter
-( 56355, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0, 0, 0), -- Titanium Shield Spike
-( 56364, 0x00, 3, 0x00000000, 0x01000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Glyph of Remove Curse
-( 56372, 0x00, 3, 0x00000000, 0x00000080, 0x00000000, 0x00004000, 0x00000000, 0, 0, 0), -- Glyph of Ice Block
-( 56374, 0x00, 3, 0x00000000, 0x00004000, 0x00000000, 0x00004000, 0x00000000, 0, 0, 0), -- Glyph of Icy Veins
-( 56451, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 3), -- Earth Shield
-( 56611, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0, 0, 0), -- Wrecking Crew (Rank 2)
-( 56612, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0, 0, 0), -- Wrecking Crew (Rank 3)
-( 56613, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0, 0, 0), -- Wrecking Crew (Rank 4)
-( 56614, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0, 0, 0), -- Wrecking Crew (Rank 5)
-( 56816, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000030, 0, 0, 0), -- Rune Strike
-( 56821, 0x00, 8, 0x00000002, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0, 0, 0), -- Glyph of Sinister Strike
-( 56834, 0x00, 15, 0x00400000, 0x00010000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Reaping (Rank 2)
-( 56835, 0x00, 15, 0x00400000, 0x00010000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Reaping (Rank 3)
-( 57345, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 45), -- Darkmoon Card: Greatness
-( 57352, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00051154, 0x00000000, 0, 0, 45), -- Darkmoon Card: Death
-( 57870, 0x00, 9, 0x00800000, 0x00000000, 0x00000000, 0x00040000, 0x00000000, 0, 0, 0), -- Glyph of Mend Pet
-( 57878, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000010, 0, 0, 0), -- Natural Reaction (Rank 1)
-( 57880, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000010, 0, 0, 0), -- Natural Reaction (Rank 2)
-( 57881, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000010, 0, 0, 0), -- Natural Reaction (Rank 3)
-( 57907, 0x00, 7, 0x00000002, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Increased Spirit
-( 57960, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 3), -- Water Shield (Rank 9)
-( 58357, 0x00, 4, 0x00000040, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0, 0, 0), -- Glyph of Heroic Strike
-( 58364, 0x00, 4, 0x00000400, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Glyph of Revenge
-( 58372, 0x00, 4, 0x00000002, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Glyph of Hamstring
-( 58386, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000020, 0, 0, 0), -- Glyph of Overpower
-( 58442, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 15), -- Airy Pale Ale
-( 58444, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 5), -- Worg Tooth Oatmeal Stout
-( 58626, 0x00, 15, 0x02000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Glyph of Death Grip
-( 58642, 0x00, 15, 0x00000000, 0x08000000, 0x00000000, 0x00000010, 0x00000000, 0, 0, 0), -- Glyph of Scourge Strike
-( 58644, 0x00, 15, 0x00000000, 0x00000004, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Glyph of Frost Strike
-( 58647, 0x00, 15, 0x00000000, 0x00000004, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Glyph of Frost Strike
-( 58676, 0x00, 15, 0x00000000, 0x00000008, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Glyph of Vampiric Blood
-( 58677, 0x00, 15, 0x00002000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Glyph of Death's Embrace
-( 58872, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00042043, 0, 0, 0), -- Damage Shield (Rank 1)
-( 58874, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00042043, 0, 0, 0), -- Damage Shield (Rank 2)
-( 58901, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0, 0, 45), -- Tears of Anguish
-( 59088, 0x00, 4, 0x00000000, 0x00000002, 0x00000000, 0x00000400, 0x00000000, 0, 0, 0), -- Improved Spell Reflection (Rank 1)
-( 59089, 0x00, 4, 0x00000000, 0x00000002, 0x00000000, 0x00000400, 0x00000000, 0, 0, 0), -- Improved Spell Reflection (Rank 2)
-( 59176, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0, 0, 0), -- Spell Damping
-( 59327, 0x00, 15, 0x08000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Glyph of Rune Tap
-( 59345, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 45), -- Chagrin
-( 59630, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 45), -- Black Magic
-( 59725, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000800, 0, 0, 0), -- Spell Reflection
-( 60061, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 45), -- Flow of Time
-( 60063, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 45), -- Now is the Time!
-( 60132, 0x00, 15, 0x00000000, 0x08020000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Oblit/Scourge Strike Runic Power Up
-( 60170, 0x00, 5, 0x00000006, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Corruption Triggers Crit
-( 60172, 0x00, 5, 0x00040000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Life Tap Bonus Spirit
-( 60176, 0x00, 4, 0x00000020, 0x00000010, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Bleed Cost Reduction
-( 60221, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 45), -- Essence of Gossamer
-( 60301, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 45), -- Meteorite Whetstone
-( 60306, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 45), -- Vestige of Haldor
-( 60317, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 45), -- Signet of Edward the Odd
-( 60436, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 45), -- Grim Toll
-( 60442, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 45), -- Bandit's Insignia
-( 60473, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 45), -- Forge Ember
-( 60482, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 45), -- Pendulum of Telluric Currents
-( 60487, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 15), -- Extract of Necromatic Power
-( 60490, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 45), -- Embrace of the Spider
-( 60493, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 45), -- Dying Curse
-( 60519, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 45), -- Spark of Life
-( 60524, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0, 0, 0), -- Majestic Dragon Figurine
-( 60529, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 45), -- Forethought Talisman
-( 60537, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0, 0, 45), -- Soul of the Dead
-( 60564, 0x00, 11, 0x90100000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Savage Gladiator's Totem of Survival
-( 60571, 0x00, 11, 0x90100000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Hateful Gladiator's Totem of Survival
-( 60572, 0x00, 11, 0x90100000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Deadly Gladiator's Totem of Survival
-( 60573, 0x00, 11, 0x90100000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- LK Arena 4 Gladiator's Totem of Survival
-( 60574, 0x00, 11, 0x90100000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- LK Arena 5 Gladiator's Totem of Survival
-( 60575, 0x00, 11, 0x90100000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- LK Arena 6 Gladiator's Totem of Survival
-( 60617, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000020, 0, 0, 0), -- Parry
-( 60710, 0x00, 7, 0x00000002, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Savage Gladiator's Idol of Steadfastness
-( 60717, 0x00, 7, 0x00000002, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 100, 0), -- Hateful Gladiator's Idol of Steadfastness
-( 60719, 0x00, 7, 0x00000002, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Deadly Gladiator's Idol of Steadfastness
-( 60722, 0x00, 7, 0x00000002, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- LK Arena 4 Gladiator's Idol of Steadfastness
-( 60724, 0x00, 7, 0x00000002, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- LK Arena 5 Gladiator's Idol of Steadfastness
-( 60726, 0x00, 7, 0x00000002, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- LK Arena 6 Gladiator's Idol of Steadfastness
-( 60770, 0x00, 11, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Totem of the Elemental Plane
-( 60818, 0x00, 10, 0x00000000, 0x00000200, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Libram of Reciprocation
-( 60826, 0x00, 15, 0x01400000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Sigil of Haunted Dreams
-( 61188, 0x00, 5, 0x00000004, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Chaotic Mind
-( 61324, 0x00, 10, 0x00000000, 0x00020000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Justice
-( 16880, 0x48, 7, 0x00000067, 0x03800002, 0x00000000, 0x00000000, 0x00000002, 0, 0, 0), -- Nature's Grace
-( 61345, 0x48, 7, 0x00000067, 0x03800002, 0x00000000, 0x00000000, 0x00000002, 0, 0, 0), -- Nature's Grace
-( 61346, 0x48, 7, 0x00000067, 0x03800002, 0x00000000, 0x00000000, 0x00000002, 0, 0, 0), -- Nature's Grace
-( 61356, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0, 0, 90), -- Invigorating Earthsiege Diamond Passive
-( 61618, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 45), -- Tentacles
-( 61848, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000010, 0, 0, 0), -- Aspect of the Dragonhawk
-( 62147, 0x00, 15, 0x00000002, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Icy Touch Defense Increase
-( 62459, 0x00, 15, 0x00000004, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Chains of Ice Frost Rune Refresh (Rank 3)
-( 63108, 0x00, 5, 0x00000002, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Siphon Life
-( 63158, 0x00, 5, 0x00000001, 0x000000C0, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Decimation
-( 63156, 0x00, 5, 0x00000001, 0x000000C0, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Decimation
-( 63251, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 45), -- Glory of the Jouster
-( 64343, 0x00, 3, 0x00000002, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Impact
-( 64976, 0x00, 4, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Juggernaut
-( 64914, 0x00, 8, 0x00010000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Item - Rogue T8 2P Bonus
-( 64938, 0x00, 4, 0x00200040, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0, 0, 0), -- Item - Warrior T8 Melee 2P Bonus
-( 64952, 0x00, 7, 0x00000000, 0x00000440, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Item - Druid T8 Feral Relic
-( 64964, 0x00, 15, 0x00000000, 0x20000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Item - Death Knight T8 Tank Relic
-( 65002, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 45), -- Bonus Mana Regen
-( 65005, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 45), -- Alacrity of the Elements
-( 64999, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 5, 0, 0), -- Meteoric Inspiration
-( 65007, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00014000, 0x00000000, 0, 0, 0), -- Eye of the Broodmother
-( 65013, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0, 0, 45), -- Pyrite Infusion
-( 65020, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 45), -- Mjolnir Runestone
-( 65025, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 45), -- Dark Matter
-( 46949, 0x00, 4, 0x00000000, 0x00010000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Safeguard
-( 46945, 0x00, 4, 0x00000000, 0x00010000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Safeguard
-( 64415, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 45), -- Val'anyr Hammer of Ancient Kings - Equip Effect
-( 60066, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0, 0, 45), -- Rage of the Unraveller
-( 62115, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 45), -- Strength of the Titans
-( 62114, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 45), -- Flow of Knowledge
-( 62600, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0, 0, 0), -- Savage Defense
-( 63245, 0x00, 5, 0x00000100, 0x00800000, 0x00000000, 0x00000000, 0x00000002, 0, 0, 0), -- Pyroclasm
-( 18096, 0x00, 5, 0x00000100, 0x00800000, 0x00000000, 0x00000000, 0x00000002, 0, 0, 0), -- Pyroclasm
-( 18073, 0x00, 5, 0x00000100, 0x00800000, 0x00000000, 0x00000000, 0x00000002, 0, 0, 0), -- Pyroclasm
-( 63280, 0x00, 11, 0x20000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Glyph of Totem of Wrath
-( 63310, 0x00, 5, 0x00000000, 0x00010000, 0x00000000, 0x00010000, 0x00000000, 0, 0, 0), -- Glyph of Shadowflame
-( 63335, 0x00, 15, 0x00000000, 0x00000002, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Glyph of Howling Blast
-( 63730, 0x00, 6, 0x00000800, 0x00000004, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Serendipity
-( 63733, 0x00, 6, 0x00000800, 0x00000004, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Serendipity
-( 63737, 0x00, 6, 0x00000800, 0x00000004, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Serendipity
-( 64127, 0x00, 6, 0x00000001, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Body and Soul
-( 64129, 0x00, 6, 0x00000001, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Body and Soul
-( 64571, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 10), -- Blood Draining
-( 64440, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000020, 0, 0, 20), -- Blade Warding
-( 64714, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 45), -- Flame of the Heavens
-( 64738, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 45), -- Show of Faith
-( 64742, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 45), -- Pandora's Plea
-( 64752, 0x00, 7, 0x00800000, 0x10000100, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Item - Druid T8 Feral 2P Bonus
-( 64786, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 15), -- Comet's Trail
-( 64792, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0, 0, 45), -- Blood of the Old God
-( 64824, 0x00, 7, 0x00200000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Item - Druid T8 Balance 4P Bonus
-( 64928, 0x00, 11, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0, 0, 0), -- Item - Shaman T8 Elemental
-( 64860, 0x00, 9, 0x00000000, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Item - Hunter T8 4P Bonus
-( 64867, 0x00, 3, 0x20000021, 0x00001000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Item - Mage T8 2P Bonus
-( 64882, 0x00, 10, 0x00000000, 0x00100000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Item - Paladin T8 Protection 4P Bonus
-( 64890, 0x00, 10, 0x00000000, 0x00010000, 0x00000000, 0x00000000, 0x00000002, 0, 0, 0), -- Item - Paladin T8 Holy 2P Bonus
-( 64908, 0x00, 6, 0x00002000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Item - Priest T8 Shadow 4P Bonus
-( 64912, 0x00, 6, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Item - Priest T8 Healer 4P Bonus
-( 57470, 0x00, 6, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Renewed Hope
-( 57472, 0x00, 6, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Renewed Hope
-( 35100, 0x00, 9, 0x00001000, 0x00000000, 0x00000001, 0x00000000, 0x00000000, 0, 0, 0), -- Concussive Barrage
-( 35102, 0x00, 9, 0x00001000, 0x00000000, 0x00000001, 0x00000000, 0x00000000, 0, 0, 0), -- Concussive Barrage
-( 18119, 0x00, 5, 0x00000000, 0x00800000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Aftermath
-( 18120, 0x00, 5, 0x00000000, 0x00800000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Aftermath
-( 13165, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0x00000000, 0, 0, 0), -- Aspect of the Hawk
-( 14318, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0x00000000, 0, 0, 0), -- Aspect of the Hawk
-( 14319, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0x00000000, 0, 0, 0), -- Aspect of the Hawk
-( 14320, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0x00000000, 0, 0, 0), -- Aspect of the Hawk
-( 14321, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0x00000000, 0, 0, 0), -- Aspect of the Hawk
-( 14322, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0x00000000, 0, 0, 0), -- Aspect of the Hawk
-( 25296, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0x00000000, 0, 0, 0), -- Aspect of the Hawk
-( 27044, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0x00000000, 0, 0, 0), -- Aspect of the Hawk
-( 61846, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0x00000000, 0, 0, 0), -- Aspect of the Dragonhawk
-( 61847, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0x00000000, 0, 0, 0), -- Aspect of the Dragonhawk
-( 53178, 0x00, 9, 0x00000000, 0x10000000, 0x00000000, 0x00010000, 0x00000000, 0, 100, 0), -- Guard Dog (Rank 1)
-( 53179, 0x00, 9, 0x00000000, 0x10000000, 0x00000000, 0x00010000, 0x00000000, 0, 100, 0), -- Guard Dog (Rank 2)
-( 62764, 0x00, 9, 0x00000000, 0x10000000, 0x00000000, 0x00010000, 0x00000000, 0, 100, 0), -- Silverback (Rank 1)
-( 62765, 0x00, 9, 0x00000000, 0x10000000, 0x00000000, 0x00010000, 0x00000000, 0, 100, 0), -- Silverback (Rank 2)
-( 49223, 0x00, 15, 0x00000011, 0x08020000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Dirge
-( 49599, 0x00, 15, 0x00000011, 0x08020000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Dirge
-( 49188, 0x00, 15, 0x00000000, 0x00020000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Rime
-( 56822, 0x00, 15, 0x00000000, 0x00020000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Rime
-( 59057, 0x00, 15, 0x00000000, 0x00020000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Rime
-( 55666, 0x00, 15, 0x00000001, 0x08000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Desecration
-( 55667, 0x00, 15, 0x00000001, 0x08000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Desecration
-( 58616, 0x00, 15, 0x01000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Glyph of Heart Strike
-( 16164, 0x00, 11, 0x901000C3, 0x00001000, 0x00000000, 0x00000000, 0x00000002, 0, 0, 0), -- Elemental Focus
-( 49149, 0x00, 15, 0x00000006, 0x00020002, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Chill of the Grave
-( 50115, 0x00, 15, 0x00000006, 0x00020002, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Chill of the Grave
-( 49217, 0x00, 15, 0x00000000, 0x00000000, 0x00000002, 0x00000000, 0x00000000, 0, 0, 1), -- Wandering Plague
-( 49654, 0x00, 15, 0x00000000, 0x00000000, 0x00000002, 0x00000000, 0x00000000, 0, 0, 1), -- Wandering Plague
-( 49655, 0x00, 15, 0x00000000, 0x00000000, 0x00000002, 0x00000000, 0x00000000, 0, 0, 1), -- Wandering Plague
-( 58620, 0x00, 15, 0x00000004, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Glyph of Chains of Ice
-( 56342, 0x00, 9, 0x00000018, 0x08000000, 0x00024000, 0x00000000, 0x00000000, 0, 0, 22), -- Lock and Load
-( 56343, 0x00, 9, 0x00000018, 0x08000000, 0x00024000, 0x00000000, 0x00000000, 0, 0, 22), -- Lock and Load
-( 56344, 0x00, 9, 0x00000018, 0x08000000, 0x00024000, 0x00000000, 0x00000000, 0, 0, 22), -- Lock and Load
-( 48539, 0x00, 7, 0x00000010, 0x04000000, 0x00000000, 0x00040000, 0x00000000, 0, 0, 0), -- Revitalize
-( 48544, 0x00, 7, 0x00000010, 0x04000000, 0x00000000, 0x00040000, 0x00000000, 0, 0, 0), -- Revitalize
-( 48545, 0x00, 7, 0x00000010, 0x04000000, 0x00000000, 0x00040000, 0x00000000, 0, 0, 0), -- Revitalize
-( 53234, 0x00, 9, 0x00020000, 0x00000001, 0x00000001, 0x00000000, 0x00000002, 0, 0, 0), -- Piercing Shots (Rank 1)
-( 53237, 0x00, 9, 0x00020000, 0x00000001, 0x00000001, 0x00000000, 0x00000002, 0, 0, 0), -- Piercing Shots (Rank 2)
-( 53238, 0x00, 9, 0x00020000, 0x00000001, 0x00000001, 0x00000000, 0x00000002, 0, 0, 0), -- Piercing Shots (Rank 3)
-( 56636, 0x00, 4, 0x00000020, 0x00000000, 0x00000000, 0x00000000, 0x00040000, 0, 0, 6), -- Taste for Blood (Rank 1)
-( 56637, 0x00, 4, 0x00000020, 0x00000000, 0x00000000, 0x00000000, 0x00040000, 0, 0, 6), -- Taste for Blood (Rank 2)
-( 56638, 0x00, 4, 0x00000020, 0x00000000, 0x00000000, 0x00000000, 0x00040000, 0, 0, 6), -- Taste for Blood (Rank 3)
-( 60503, 0x01, 4, 0x00000004, 0x00000000, 0x00000000, 0x00000010, 0x00000000, 0, 0, 0), -- Taste for Blood (proc)
-( 68051, 0x01, 4, 0x00000004, 0x00000000, 0x00000000, 0x00000010, 0x00000000, 0, 0, 0), -- Overpower Ready! (proc)
-( 52437, 0x01, 4, 0x20000000, 0x00000000, 0x00000000, 0x00000010, 0x00000000, 0, 0, 0), -- Sudden Death (proc)
-( 50421, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Scent of Blood
-( 53386, 0x30, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Rune of Cinderglacier
-( 56375, 0x00, 3, 0x01000000, 0x00000000, 0x00000000, 0x00010000, 0x00000000, 0, 0, 0), -- Glyphs of Polymorph
-( 54639, 0x00, 15, 0x00400000, 0x00010000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Blood of the north
-( 54638, 0x00, 15, 0x00400000, 0x00010000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Blood of the north
-( 54637, 0x00, 15, 0x00400000, 0x00010000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Blood of the north
-( 49467, 0x00, 15, 0x00000010, 0x00020000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Death Rune Mastery
-( 50033, 0x00, 15, 0x00000010, 0x00020000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Death Rune Mastery
-( 50034, 0x00, 15, 0x00000010, 0x00020000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Death Rune Mastery
-( 63373, 0x00, 11, 0x80000000, 0x00000000, 0x00000000, 0x00010000, 0x00000000, 0, 0, 0), -- Frozen Power (Rank 1)
-( 63374, 0x00, 11, 0x80000000, 0x00000000, 0x00000000, 0x00010000, 0x00000000, 0, 0, 0), -- Frozen Power (Rank 2)
-( 54821, 0x00, 7, 0x00001000, 0x00000000, 0x00000000, 0x00000010, 0x00000000, 0, 0, 0), -- Glyph of Rake
-( 54815, 0x00, 7, 0x00008000, 0x00000000, 0x00000000, 0x00000010, 0x00000000, 0, 0, 0), -- Glyph of Shred
-( 54845, 0x00, 7, 0x00000004, 0x00000000, 0x00000000, 0x00010000, 0x00000000, 0, 0, 0), -- Glyph of Starfire
-( 56800, 0x00, 8, 0x00800004, 0x00000000, 0x00000000, 0x00000010, 0x00000000, 0, 0, 0), -- Glyph of Backstab
-( 54832, 0x00, 7, 0x00000000, 0x00001000, 0x00000000, 0x00004000, 0x00000000, 0, 0, 0), -- Glyph of Innervate
-( 67353, 0x00, 7, 0x00008000, 0x00100500, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- uncommented
-( 57989, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000001, 0x00000000, 0, 0, 0), -- uncommented
-( 63086, 0x00, 9, 0x00000000, 0x00000000, 0x00010000, 0x00000000, 0x00000000, 0, 0, 0), -- Glyph of Raptor Strike
-( 65661, 0x00, 15, 0x00400011, 0x20020004, 0x00000000, 0x00000010, 0x00000000, 0, 100, 0), -- Threat of Thassarian (Rank 1)
-( 66191, 0x00, 15, 0x00400011, 0x20020004, 0x00000000, 0x00000010, 0x00000000, 0, 100, 0), -- Threat of Thassarian (Rank 2)
-( 66192, 0x00, 15, 0x00400011, 0x20020004, 0x00000000, 0x00000010, 0x00000000, 0, 100, 0), -- Threat of Thassarian (Rank 3)
-( 66799, 0x00, 15, 0x00400000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Desolation (Rank 1)
-( 66814, 0x00, 15, 0x00400000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Desolation (Rank 2)
-( 66815, 0x00, 15, 0x00400000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Desolation (Rank 3)
-( 66816, 0x00, 15, 0x00400000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Desolation (Rank 4)
-( 66817, 0x00, 15, 0x00400000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Desolation (Rank 5)
-( 53601, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x000A02A8, 0x00000000, 0, 0, 6), -- Sacred Shield (Rank 1)
-( 58375, 0x00, 4, 0x00000000, 0x00000200, 0x00000000, 0x00000010, 0x00000000, 0, 0, 0), -- Glyph of Blocking
-( 58387, 0x00, 4, 0x00004000, 0x00000040, 0x00000000, 0x00000010, 0x00000000, 0, 0, 0), -- Glyph of Sunder Armor
-( 54925, 0x02, 10, 0x00000000, 0x00000208, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Glyph of Seal of Command
-( 63320, 0x00, 5, 0x80040000, 0x00000000, 0x00008000, 0x00000400, 0x00000000, 0, 0, 0), -- Glyph of Life Tap
-( 64955, 0x00, 10, 0x00000000, 0x00000040, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Item - Paladin T8 Protection Relic
-( 67115, 0x00, 15, 0x01400000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 45), -- Item - Death Knight T9 Melee 2P Bonus
-( 67356, 0x08, 7, 0x00000010, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Item - Druid T9 Restoration Relic (Rejuvenation)
-( 67361, 0x00, 7, 0x00000002, 0x00000000, 0x00000000, 0x00040000, 0x00000000, 0, 0, 0), -- Item - Druid T9 Balance Relic (Moonfire)
-( 67363, 0x00, 10, 0x00000000, 0x80000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 10), -- Item - Paladin T9 Holy Relic (Judgement)
-( 67365, 0x00, 10, 0x00000000, 0x00000800, 0x00000000, 0x00040000, 0x00000000, 0, 0, 6), -- Item - Paladin T9 Retribution Relic (Seal of Vengeance)
-( 67379, 0x00, 10, 0x00000000, 0x00040000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Item - Paladin T9 Protection Relic (Hammer of The Righteous)
-( 67381, 0x00, 15, 0x00000000, 0x20000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 10), -- Item - Death Knight T9 Tank Relic (Rune Strike)
-( 67384, 0x00, 15, 0x00000010, 0x08020000, 0x00000000, 0x00000000, 0x00000000, 0, 80, 10), -- Item - Death Knight T9 Melee Relic (Rune Strike)
-( 67386, 0x00, 11, 0x00000001, 0x00000000, 0x00000000, 0x00010000, 0x00000000, 0, 0, 6), -- Item - Shaman T9 Elemental Relic (Lightning Bolt)
-( 67389, 0x00, 11, 0x00000100, 0x00000000, 0x00000000, 0x00004000, 0x00000000, 0, 0, 8), -- Item - Shaman T9 Restoration Relic (Chain Heal)
-( 67392, 0x00, 11, 0x00000000, 0x00000000, 0x00000004, 0x00000010, 0x00000000, 0, 0, 0), -- Item - Shaman T9 Enhancement Relic (Lava Lash)
-( 67653, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00400028, 0x00000000, 0, 0, 45), -- Item - Coliseum Tank Trinket 5men
-( 67667, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00004000, 0x00000000, 0, 0, 45), -- Item - Coliseum Healer Trinket 5men
-( 67670, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0x00000000, 0, 0, 45), -- Item - Coliseum Caster Trinket 5men
-( 67672, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00800154, 0x00000000, 0, 0, 45), -- Item - Coliseum Melee Trinket 5men
-( 67712, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00011000, 0x00000002, 0, 0, 2), -- Item - Coliseum 25 Normal Caster Trinket - Pillar of Flame
-( 67758, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00011000, 0x00000002, 0, 0, 2), -- Item - Coliseum 25 Heroic Caster Trinket - Pillar of Flame
-( 67771, 0x01, 0, 0x00000000, 0x00000000, 0x00000000, 0x00851154, 0x00000003, 0, 35, 45), -- Item - Coliseum Melee Trinket 10men
-( 67702, 0x01, 0, 0x00000000, 0x00000000, 0x00000000, 0x00851154, 0x00000003, 0, 35, 45), -- Item - Coliseum Melee Trinket 25men
-( 69739, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 45), -- Item - Onyxia 25 Caster Trinket
-( 69755, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 45), -- Item - Onyxia 10 Caster Trinket
-( 70652, 0x00, 15, 0x00000008, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Item - Death Knight T10 Tank 4P Bonus
-( 70656, 0x00, 15, 0x00000000, 0x00000000, 0x00000000, 0x00014000, 0x00000000, 0, 0, 0), -- Item - Death Knight T10 Melee 4P Bonus
-( 70664, 0x00, 7, 0x00000010, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Item - Druid T10 Restoration 4P Bonus (Rejuvenation)
-( 70727, 0x00, 9, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0x00000000, 0, 0, 0), -- Item - Hunter T10 2P Bonus
-( 70730, 0x00, 9, 0x00004000, 0x00001000, 0x00000000, 0x00040000, 0x00000000, 0, 0, 0), -- Item - Hunter T10 4P Bonus
-( 70748, 0x00, 3, 0x00000000, 0x00200000, 0x00000000, 0x00000400, 0x00000000, 0, 0, 0), -- Item - Mage T10 4P Bonus
-( 70756, 0x00, 10, 0x00200000, 0x00010000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Item - Paladin T10 Holy 4P Bonus
-( 70761, 0x00, 10, 0x00000000, 0x80004000, 0x00000001, 0x00000400, 0x00000000, 0, 0, 0), -- Item - Paladin T10 Protection 4P Bonus
-( 70803, 0x00, 8, 0x003E0000, 0x00000008, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Item - Rogue T10 4P Bonus
-( 70805, 0x00, 8, 0x00000000, 0x00020000, 0x00000000, 0x00004000, 0x00000000, 0, 0, 0), -- Item - Rogue T10 2P Bonus
-( 70807, 0x00, 11, 0x00000000, 0x00000000, 0x00000010, 0x00000000, 0x00000000, 0, 0, 0), -- Item - Shaman T10 Restoration 2P Bonus
-( 70817, 0x00, 11, 0x00000000, 0x00001000, 0x00000000, 0x00010000, 0x00000000, 0, 0, 0), -- Item - Shaman T10 Elemental 4P Bonus
-( 70830, 0x00, 11, 0x00000000, 0x00020000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Item - Shaman T10 Enhancement 2P Bonus
-( 70841, 0x00, 5, 0x00000004, 0x00000100, 0x00000000, 0x00040000, 0x00000000, 0, 0, 0), -- Item - Warlock T10 4P Bonus
-( 70844, 0x00, 4, 0x00000100, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Item - Warrior T10 Protection 4P Bonus
-( 70854, 0x00, 4, 0x00000000, 0x00000010, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Item - Warrior T10 Melee 2P Bonus
-( 71176, 0x00, 7, 0x00200002, 0x00000000, 0x00000000, 0x00040000, 0x00000000, 0, 0, 0), -- Item - Druid T10 Balance Relic (Moonfire and Insect Swarm)
-( 71178, 0x00, 7, 0x00000010, 0x00000000, 0x00000000, 0x00040000, 0x00000000, 0, 0, 0), -- Item - Druid T10 Restoration Relic (Rejuvenation)
-( 71186, 0x00, 10, 0x00000000, 0x00008000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Item - Paladin T10 Retribution Relic (Crusader Strike)
-( 71191, 0x00, 10, 0x00000000, 0x00010000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Item - Paladin T10 Holy Relic (Holy Shock)
-( 71194, 0x00, 10, 0x00000000, 0x00100000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Item - Paladin T10 Protection Relic (Shield of Righteousness)
-( 71214, 0x00, 11, 0x00001400, 0x00000010, 0x00000000, 0x00000010, 0x00000000, 0, 0, 6), -- Item - Shaman T10 Enhancement Relic (Stormstrike)
-( 71217, 0x00, 11, 0x00000000, 0x00000000, 0x00000010, 0x00004000, 0x00000000, 0, 0, 0), -- Item - Shaman T10 Restoration Relic (Riptide)
-( 71226, 0x00, 15, 0x00000010, 0x08020000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Item - Death Knight T10 DPS Relic (Obliterate, Scourge Strike, Death Strike)
-( 71228, 0x00, 15, 0x00000000, 0x20000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Item - Death Knight T10 Tank Relic (Runestrike)
-( 71402, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 45), -- Whispering Fanged Skull
-( 71519, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 105), -- Item - Deathbringer's Will Trinket Normal
-( 71540, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 45), -- Whispering Fanged Skull (Heroic)
-( 71562, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 105), -- Item - Deathbringer's Will Trinket Heroic
-( 71602, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0x00000000, 0, 0, 45), -- Dislodged Foreign Object
-( 71606, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 100), -- Phylactery of the Nameless Lich
-( 71611, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 45), -- Althor's Abacus
-( 71634, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 30), -- Corpse Tongue Coin
-( 71637, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 100), -- Phylactery of the Nameless Lich (Heroic)
-( 71640, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 30), -- Corpse Tongue Coin (Heroic)
-( 71642, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 45), -- Althor's Abacus (Heroic)
-( 71645, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0x00000000, 0, 0, 45), -- Dislodged Foreign Object (Heroic)
-( 71880, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 1, 0, 0), -- Heartpierce
-( 71892, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 1, 0, 0), -- Heartpierce (Heroic)
-( 72417, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 60), -- Item - Icecrown Reputation Ring Caster Trigger
-( 72413, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 60), -- Item - Icecrown Reputation Ring Melee
-( 72419, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 60), -- Item - Icecrown Reputation Ring Healer Trigger
-( 71404, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0, 0, 45), -- Item - Icecrown Dungeon Melee Trinket
-( 71564, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0, 0, 0), -- Nevermelting Ice Crystal
-( 71545, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 50, 0), -- Tiny Abomination in a Jar (Heroic)
-( 71406, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 50, 0), -- Tiny Abomination in a Jar
-( 71585, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 45), -- Purified Lunar Dust
-( 71903, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 20, 0), -- Item - Shadowmourne Legendary
-( 70215, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000004, 0x00000000, 0, 100, 0), -- Gaseous Bloat
-( 72858, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000004, 0x00000000, 0, 100, 0), -- Gaseous Bloat
-( 72859, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000004, 0x00000000, 0, 100, 0), -- Gaseous Bloat
-( 72860, 0x00, 0, 0x00000000, 0x00000000, 0x00000000 ,0x00000004, 0x00000000, 0, 100, 0), -- Gaseous Bloat
-( 75475, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 45), -- Item - Chamber of Aspects 25 Tank Trinket
-( 75481, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 45), -- Item - Chamber of Aspects 25 Heroic Tank Trinket
-( 75474, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 45), -- Charred Twilight Scale (Heroic)
-( 75465, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 45), -- Charred Twilight Scale
-( 75457, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 45), -- Sharpened Twilight Scale (Heroic)
-( 75455, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 45); -- Sharpened Twilight Scale
-/*!40000 ALTER TABLE `spell_proc_event` ENABLE KEYS */;
-UNLOCK TABLES;
-
---
--- Table structure for table `spell_required`
---
-
-DROP TABLE IF EXISTS `spell_required`;
-/*!40101 SET @saved_cs_client = @@character_set_client */;
-/*!40101 SET character_set_client = utf8 */;
-CREATE TABLE `spell_required` (
- `spell_id` mediumint(9) NOT NULL DEFAULT '0',
- `req_spell` mediumint(9) NOT NULL DEFAULT '0',
- PRIMARY KEY (`spell_id`, `req_spell`)
-) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Spell Additinal Data';
-/*!40101 SET character_set_client = @saved_cs_client */;
-
---
--- Dumping data for table `spell_required`
---
-
-LOCK TABLES `spell_required` WRITE;
-/*!40000 ALTER TABLE `spell_required` DISABLE KEYS */;
-/*!40000 ALTER TABLE `spell_required` ENABLE KEYS */;
-UNLOCK TABLES;
-
---
--- Table structure for table `spell_script_target`
---
-
-DROP TABLE IF EXISTS `spell_script_target`;
-/*!40101 SET @saved_cs_client = @@character_set_client */;
-/*!40101 SET character_set_client = utf8 */;
-CREATE TABLE `spell_script_target` (
- `entry` mediumint(8) unsigned NOT NULL,
- `type` tinyint(3) unsigned NOT NULL DEFAULT '0',
- `targetEntry` mediumint(8) unsigned NOT NULL DEFAULT '0',
- UNIQUE KEY `entry_type_target` (`entry`,`type`,`targetEntry`)
-) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Spell System';
-/*!40101 SET character_set_client = @saved_cs_client */;
-
---
--- Dumping data for table `spell_script_target`
---
-
-LOCK TABLES `spell_script_target` WRITE;
-/*!40000 ALTER TABLE `spell_script_target` DISABLE KEYS */;
-/*!40000 ALTER TABLE `spell_script_target` ENABLE KEYS */;
-UNLOCK TABLES;
-
---
--- Table structure for table `spell_scripts`
---
-
-DROP TABLE IF EXISTS `spell_scripts`;
-/*!40101 SET @saved_cs_client = @@character_set_client */;
-/*!40101 SET character_set_client = utf8 */;
-CREATE TABLE `spell_scripts` (
- `id` mediumint(8) unsigned NOT NULL DEFAULT '0',
- `effIndex` tinyint(3) unsigned NOT NULL DEFAULT '0',
- `delay` int(10) unsigned NOT NULL DEFAULT '0',
- `command` mediumint(8) unsigned NOT NULL DEFAULT '0',
- `datalong` mediumint(8) unsigned NOT NULL DEFAULT '0',
- `datalong2` int(10) unsigned NOT NULL DEFAULT '0',
- `dataint` int(11) NOT NULL DEFAULT '0',
- `x` float NOT NULL DEFAULT '0',
- `y` float NOT NULL DEFAULT '0',
- `z` float NOT NULL DEFAULT '0',
- `o` float NOT NULL DEFAULT '0'
-) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-/*!40101 SET character_set_client = @saved_cs_client */;
-
---
--- Dumping data for table `spell_scripts`
---
-
-LOCK TABLES `spell_scripts` WRITE;
-/*!40000 ALTER TABLE `spell_scripts` DISABLE KEYS */;
-/*!40000 ALTER TABLE `spell_scripts` ENABLE KEYS */;
-UNLOCK TABLES;
-
---
--- Table structure for table `spell_group_stack_rules`
---
-
-DROP TABLE IF EXISTS `spell_group_stack_rules`;
-/*!40101 SET @saved_cs_client = @@character_set_client */;
-/*!40101 SET character_set_client = utf8 */;
-DROP TABLE IF EXISTS `spell_group_stack_rules`;
-CREATE TABLE `spell_group_stack_rules` (
- `group_id` INT(11) UNSIGNED NOT NULL DEFAULT 0,
- `stack_rule` TINYINT(3) NOT NULL DEFAULT 0,
- PRIMARY KEY (`group_id`)
-) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-/*!40101 SET character_set_client = @saved_cs_client */;
-
---
--- Dumping data for table `spell_group_stack_rules`
---
-
-LOCK TABLES `spell_group_stack_rules` WRITE;
-/*!40000 ALTER TABLE `spell_group_stack_rules` DISABLE KEYS */;
-INSERT INTO spell_group_stack_rules (`group_id`, `stack_rule`) VALUES
-(1, 1),
-(2, 1),
-(1001, 1),
-(1002, 1),
-(1003, 1),
-(1004, 1),
-(1005, 1),
-(1006, 1),
-(1007, 1),
-(1008, 1),
-(1009, 1),
-(1010, 2),
-(1011, 2),
-(1015,1),
-(1016,1),
-(1019,1),
-(1022,1),
-(1025,1),
-(1029,1),
-(1033,1),
-(1036,1),
-(1043,1),
-(1048,1),
-(1051,1),
-(1054,1),
-(1057,1),
-(1059,1),
-(1064,1),
-(1068,1),
-(1074,1),
-(1079,1),
-(1082,1),
-(1085,1),
-(1088,1),
-(1090,1),
-(1093,1),
-(1096,1),
-(1099,1),
-(1103,1),
-(1046,1),
-(1107,1),
-(1108,1),
-(1109,1),
-(1110,1),
-(1112,2),
-(1113,1);
-
-/*!40000 ALTER TABLE `spell_group_stack_rules` ENABLE KEYS */;
-UNLOCK TABLES;
-
---
--- Table structure for table `spell_ranks`
---
-
-DROP TABLE IF EXISTS `spell_ranks`;
-CREATE TABLE `spell_ranks` (
- `first_spell_id` INT UNSIGNED NOT NULL DEFAULT 0,
- `spell_id` INT UNSIGNED NOT NULL DEFAULT 0,
- `rank` TINYINT UNSIGNED NOT NULL DEFAULT 0,
- PRIMARY KEY (`first_spell_id`, `rank`),
- UNIQUE (`spell_id`)
-) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Spell Rank Data';
-
---
--- Dumping data for table `spell_ranks`
---
-
-LOCK TABLES `spell_ranks` WRITE;
-/*!40000 ALTER TABLE `spell_ranks` DISABLE KEYS */;
-INSERT INTO spell_ranks (`first_spell_id`, `spell_id`, `rank`) VALUES
- -- Abomination's Might
-(53137, 53137, 1),
-(53137, 53138, 2),
- -- Absolution
-(33167, 33167, 1),
-(33167, 33171, 2),
-(33167, 33172, 3),
- -- Acclimation
-(49200, 49200, 1),
-(49200, 50151, 2),
-(49200, 50152, 3),
- -- Acid Spit
-(55749, 55749, 1),
-(55749, 55750, 2),
-(55749, 55751, 3),
-(55749, 55752, 4),
-(55749, 55753, 5),
-(55749, 55754, 6),
- -- Aftermath
-(18119, 18119, 1),
-(18119, 18120, 2),
- -- Aggression
-(18427, 18427, 1),
-(18427, 18428, 2),
-(18427, 18429, 3),
-(18427, 61330, 4),
-(18427, 61331, 5),
- -- Agility
-(8115, 8115, 1),
-(8115, 8116, 2),
-(8115, 8117, 3),
-(8115, 12174, 4),
-(8115, 33077, 5),
-(8115, 43194, 6),
-(8115, 58450, 7),
-(8115, 58451, 8),
- -- Aimed Shot
-(19434, 19434, 1),
-(19434, 20900, 2),
-(19434, 20901, 3),
-(19434, 20902, 4),
-(19434, 20903, 5),
-(19434, 20904, 6),
-(19434, 27065, 7),
-(19434, 49049, 8),
-(19434, 49050, 9),
- -- Alchemy
-(2259, 2259, 1),
-(2259, 3101, 2),
-(2259, 3464, 3),
-(2259, 11611, 4),
-(2259, 28596, 5),
-(2259, 51304, 6),
- -- Ambush
-(8676, 8676, 1),
-(8676, 8724, 2),
-(8676, 8725, 3),
-(8676, 11267, 4),
-(8676, 11268, 5),
-(8676, 11269, 6),
-(8676, 27441, 7),
-(8676, 48689, 8),
-(8676, 48690, 9),
-(8676, 48691, 10),
- -- Amplify Magic
-(1267, 1267, 1),
-(1267, 8456, 2),
-(1267, 10171, 3),
-(1267, 10172, 4),
-(1267, 27397, 5),
-(1267, 33947, 6),
- -- Amplify Magic
-(1008, 1008, 1),
-(1008, 8455, 2),
-(1008, 10169, 3),
-(1008, 10170, 4),
-(1008, 27130, 5),
-(1008, 33946, 6),
-(1008, 43017, 7),
- -- Ancestral Awakening
-(51556, 51556, 1),
-(51556, 51557, 2),
-(51556, 51558, 3),
- -- Ancestral Fortitude
-(16177, 16177, 1),
-(16177, 16236, 2),
-(16177, 16237, 3),
- -- Ancestral Healing
-(16176, 16176, 1),
-(16176, 16235, 2),
-(16176, 16240, 3),
- -- Ancestral Knowledge
-(17485, 17485, 1),
-(17485, 17486, 2),
-(17485, 17487, 3),
-(17485, 17488, 4),
-(17485, 17489, 5),
- -- Ancestral Spirit
-(2008, 2008, 1),
-(2008, 20609, 2),
-(2008, 20610, 3),
-(2008, 20776, 4),
-(2008, 20777, 5),
-(2008, 25590, 6),
-(2008, 49277, 7),
- -- Anguish
-(33704, 33704, 1),
-(33704, 33705, 2),
-(33704, 33706, 3),
- -- Anguish
-(33698, 33698, 1),
-(33698, 33699, 2),
-(33698, 33700, 3),
-(33698, 47993, 4),
- -- Animal Handler
-(34453, 34453, 1),
-(34453, 34454, 2),
- -- Annihilation
-(51468, 51468, 1),
-(51468, 51472, 2),
-(51468, 51473, 3),
- -- Anticipation
-(12297, 12297, 1),
-(12297, 12750, 2),
-(12297, 12751, 3),
-(12297, 12752, 4),
-(12297, 12753, 5),
- -- Anticipation
-(20096, 20096, 1),
-(20096, 20097, 2),
-(20096, 20098, 3),
-(20096, 20099, 4),
-(20096, 20100, 5),
- -- Anticipation
-(16254, 16254, 1),
-(16254, 16271, 2),
-(16254, 16272, 3),
- -- Anticipation
-(55129, 55129, 1),
-(55129, 55130, 2),
-(55129, 55131, 3),
-(55129, 55132, 4),
-(55129, 55133, 5),
- -- Arcane Barrage
-(44425, 44425, 1),
-(44425, 44780, 2),
-(44425, 44781, 3),
- -- Arcane Blast
-(30451, 30451, 1),
-(30451, 42894, 2),
-(30451, 42896, 3),
-(30451, 42897, 4),
- -- Arcane Brilliance
-(23028, 23028, 1),
-(23028, 27127, 2),
-(23028, 43002, 3),
- -- Arcane Concentration
-(11213, 11213, 1),
-(11213, 12574, 2),
-(11213, 12575, 3),
-(11213, 12576, 4),
-(11213, 12577, 5),
- -- Arcane Empowerment
-(31579, 31579, 1),
-(31579, 31582, 2),
-(31579, 31583, 3),
- -- Arcane Explosion
-(1449, 1449, 1),
-(1449, 8437, 2),
-(1449, 8438, 3),
-(1449, 8439, 4),
-(1449, 10201, 5),
-(1449, 10202, 6),
-(1449, 27080, 7),
-(1449, 27082, 8),
-(1449, 42920, 9),
-(1449, 42921, 10),
- -- Arcane Flows
-(44378, 44378, 1),
-(44378, 44379, 2),
- -- Arcane Focus
-(11222, 11222, 1),
-(11222, 12839, 2),
-(11222, 12840, 3),
- -- Arcane Fortitude
-(28574, 28574, 1),
-(28574, 54658, 2),
-(28574, 54659, 3),
- -- Arcane Instability
-(15058, 15058, 1),
-(15058, 15059, 2),
-(15058, 15060, 3),
- -- Arcane Intellect
-(1459, 1459, 1),
-(1459, 1460, 2),
-(1459, 1461, 3),
-(1459, 10156, 4),
-(1459, 10157, 5),
-(1459, 27126, 6),
-(1459, 42995, 7),
- -- Arcane Mastery
-(16734, 16734, 1),
-(16734, 16735, 2),
-(16734, 16736, 3),
-(16734, 16737, 4),
-(16734, 16738, 5),
- -- Arcane Meditation
-(18462, 18462, 1),
-(18462, 18463, 2),
-(18462, 18464, 3),
- -- Arcane Mind
-(11232, 11232, 1),
-(11232, 12500, 2),
-(11232, 12501, 3),
-(11232, 12502, 4),
-(11232, 12503, 5),
- -- Arcane Potency
-(31571, 31571, 1),
-(31571, 31572, 2),
- -- Arcane Shielding
-(11252, 11252, 1),
-(11252, 12605, 2),
- -- Arcane Shot
-(3044, 3044, 1),
-(3044, 14281, 2),
-(3044, 14282, 3),
-(3044, 14283, 4),
-(3044, 14284, 5),
-(3044, 14285, 6),
-(3044, 14286, 7),
-(3044, 14287, 8),
-(3044, 27019, 9),
-(3044, 49044, 10),
-(3044, 49045, 11),
- -- Arcane Stability
-(11237, 11237, 1),
-(11237, 12463, 2),
-(11237, 12464, 3),
-(11237, 16769, 4),
-(11237, 16770, 5),
- -- Arcane Subtlety
-(11210, 11210, 1),
-(11210, 12592, 2),
- -- Arctic Reach
-(16757, 16757, 1),
-(16757, 16758, 2),
- -- Arctic Winds
-(31674, 31674, 1),
-(31674, 31675, 2),
-(31674, 31676, 3),
-(31674, 31677, 4),
-(31674, 31678, 5),
- -- Ardent Defender
-(31850, 31850, 1),
-(31850, 31851, 2),
-(31850, 31852, 3),
- -- Armor
-(8091, 8091, 1),
-(8091, 8094, 2),
-(8091, 8095, 3),
-(8091, 12175, 4),
-(8091, 33079, 5),
-(8091, 43196, 6),
-(8091, 58452, 7),
-(8091, 58453, 8),
- -- Armored to the Teeth
-(61216, 61216, 1),
-(61216, 61221, 2),
-(61216, 61222, 3),
- -- Aspect of the Dragonhawk
-(61846, 61846, 1),
-(61846, 61847, 2),
- -- Aspect of the Hawk
-(13165, 13165, 1),
-(13165, 14318, 2),
-(13165, 14319, 3),
-(13165, 14320, 4),
-(13165, 14321, 5),
-(13165, 14322, 6),
-(13165, 25296, 7),
-(13165, 27044, 8),
- -- Aspect of the Wild
-(20043, 20043, 1),
-(20043, 20190, 2),
-(20043, 27045, 3),
-(20043, 49071, 4),
- -- Aspiration
-(47507, 47507, 1),
-(47507, 47508, 2),
- -- Astral Shift
-(51474, 51474, 1),
-(51474, 51478, 2),
-(51474, 51479, 3),
- -- Avenger's Shield
-(31935, 31935, 1),
-(31935, 32699, 2),
-(31935, 32700, 3),
-(31935, 48826, 4),
-(31935, 48827, 5),
- -- Backdraft
-(47258, 47258, 1),
-(47258, 47259, 2),
-(47258, 47260, 3),
- -- Backlash
-(34935, 34935, 1),
-(34935, 34938, 2),
-(34935, 34939, 3),
- -- Backstab
-(53, 53, 1),
-(53, 2589, 2),
-(53, 2590, 3),
-(53, 2591, 4),
-(53, 8721, 5),
-(53, 11279, 6),
-(53, 11280, 7),
-(53, 11281, 8),
-(53, 25300, 9),
-(53, 26863, 10),
-(53, 48656, 11),
-(53, 48657, 12),
- -- Bad Attitude
-(50433, 50433, 1),
-(50433, 52395, 2),
-(50433, 52396, 3),
-(50433, 52397, 4),
-(50433, 52398, 5),
-(50433, 52399, 6),
- -- Balance of Power
-(33592, 33592, 1),
-(33592, 33596, 2),
- -- Bane
-(17788, 17788, 1),
-(17788, 17789, 2),
-(17788, 17790, 3),
-(17788, 17791, 4),
-(17788, 17792, 5),
- -- Banish
-(710, 710, 1),
-(710, 18647, 2),
- -- Barrage
-(19461, 19461, 1),
-(19461, 19462, 2),
-(19461, 24691, 3),
- -- Bash
-(5211, 5211, 1),
-(5211, 6798, 2),
-(5211, 8983, 3),
- -- Battle Shout
-(6673, 6673, 1),
-(6673, 5242, 2),
-(6673, 6192, 3),
-(6673, 11549, 4),
-(6673, 11550, 5),
-(6673, 11551, 6),
-(6673, 25289, 7),
-(6673, 2048, 8),
-(6673, 47436, 9),
- -- Benediction
-(20101, 20101, 1),
-(20101, 20102, 2),
-(20101, 20103, 3),
-(20101, 20104, 4),
-(20101, 20105, 5),
- -- Bestial Discipline
-(19590, 19590, 1),
-(19590, 19592, 2),
- -- Bestial Fury
-(19603, 19603, 1),
-(19603, 19605, 2),
-(19603, 19606, 3),
-(19603, 19607, 4),
-(19603, 19608, 5),
- -- Binding Heal
-(32546, 32546, 1),
-(32546, 48119, 2),
-(32546, 48120, 3),
- -- Bite
-(17254, 17254, 1),
-(17254, 17262, 2),
-(17254, 17263, 3),
-(17254, 17264, 4),
-(17254, 17265, 5),
-(17254, 17266, 6),
-(17254, 17267, 7),
-(17254, 17268, 8),
-(17254, 27348, 9),
- -- Bite
-(17253, 17253, 1),
-(17253, 17255, 2),
-(17253, 17256, 3),
-(17253, 17257, 4),
-(17253, 17258, 5),
-(17253, 17259, 6),
-(17253, 17260, 7),
-(17253, 17261, 8),
-(17253, 27050, 9),
-(17253, 52473, 10),
-(17253, 52474, 11),
- -- Black Arrow
-(3674, 3674, 1),
-(3674, 63668, 2),
-(3674, 63669, 3),
-(3674, 63670, 4),
-(3674, 63671, 5),
-(3674, 63672, 6),
- -- Black Ice
-(49140, 49140, 1),
-(49140, 49661, 2),
-(49140, 49662, 3),
-(49140, 49663, 4),
-(49140, 49664, 5),
- -- Blacksmithing
-(2018, 2018, 1),
-(2018, 3100, 2),
-(2018, 3538, 3),
-(2018, 9785, 4),
-(2018, 29844, 5),
-(2018, 51300, 6),
- -- Blade Barrier
-(51789, 51789, 1),
-(51789, 64855, 2),
-(51789, 64856, 3),
-(51789, 64858, 4),
-(51789, 64859, 5),
- -- Blade Barrier
-(49182, 49182, 1),
-(49182, 49500, 2),
-(49182, 49501, 3),
-(49182, 55225, 4),
-(49182, 55226, 5),
- -- Blade Twisting
-(31124, 31124, 1),
-(31124, 31126, 2),
- -- Bladed Armor
-(48978, 48978, 1),
-(48978, 49390, 2),
-(48978, 49391, 3),
-(48978, 49392, 4),
-(48978, 49393, 5),
- -- Blast Wave
-(11113, 11113, 1),
-(11113, 13018, 2),
-(11113, 13019, 3),
-(11113, 13020, 4),
-(11113, 13021, 5),
-(11113, 27133, 6),
-(11113, 33933, 7),
-(11113, 42944, 8),
-(11113, 42945, 9),
- -- Blazing Speed
-(31641, 31641, 1),
-(31641, 31642, 2),
- -- Blessed Hands
-(53660, 53660, 1),
-(53660, 53661, 2),
- -- Blessed Life
-(31828, 31828, 1),
-(31828, 31829, 2),
-(31828, 31830, 3),
- -- Blessing of Might
-(19740, 19740, 1),
-(19740, 19834, 2),
-(19740, 19835, 3),
-(19740, 19836, 4),
-(19740, 19837, 5),
-(19740, 19838, 6),
-(19740, 25291, 7),
-(19740, 27140, 8),
-(19740, 48931, 9),
-(19740, 48932, 10),
- -- Blessing of the Eternals
-(51554, 51554, 1),
-(51554, 51555, 2),
- -- Blessing of Wisdom
-(19742, 19742, 1),
-(19742, 19850, 2),
-(19742, 19852, 3),
-(19742, 19853, 4),
-(19742, 19854, 5),
-(19742, 25290, 6),
-(19742, 27142, 7),
-(19742, 48935, 8),
-(19742, 48936, 9),
- -- Blood Boil
-(48721, 48721, 1),
-(48721, 49939, 2),
-(48721, 49940, 3),
-(48721, 49941, 4),
- -- Blood Craze
-(16487, 16487, 1),
-(16487, 16489, 2),
-(16487, 16492, 3),
- -- Blood Frenzy
-(30069, 30069, 1),
-(30069, 30070, 2),
- -- Blood Frenzy
-(29836, 29836, 1),
-(29836, 29859, 2),
- -- Blood Frenzy
-(16952, 16952, 1),
-(16952, 16954, 2),
- -- Blood of Icewater
-(50122, 50122, 1),
-(50122, 50123, 2),
-(50122, 50124, 3),
-(50122, 50125, 4),
-(50122, 50126, 5),
- -- Blood of the North
-(54639, 54639, 1),
-(54639, 54638, 2),
-(54639, 54637, 3),
- -- Blood of the Rhino
-(53481, 53481, 1),
-(53481, 53482, 2),
- -- Blood Pact
-(6307, 6307, 1),
-(6307, 7804, 2),
-(6307, 7805, 3),
-(6307, 11766, 4),
-(6307, 11767, 5),
-(6307, 27268, 6),
-(6307, 47982, 7),
- -- Blood Spatter
-(51632, 51632, 1),
-(51632, 51633, 2),
- -- Blood-Caked Blade
-(49219, 49219, 1),
-(49219, 49627, 2),
-(49219, 49628, 3),
- -- Bloodsurge
-(46913, 46913, 1),
-(46913, 46914, 2),
-(46913, 46915, 3),
- -- Bloodthirsty
-(53186, 53186, 1),
-(53186, 53187, 2),
- -- Bloodworms
-(49027, 49027, 1),
-(49027, 49542, 2),
-(49027, 49543, 3),
- -- Bloody Strikes
-(48977, 48977, 1),
-(48977, 49394, 2),
-(48977, 49395, 3),
- -- Bloody Vengeance
-(48988, 48988, 1),
-(48988, 49503, 2),
-(48988, 49504, 3),
- -- Body and Soul
-(64127, 64127, 1),
-(64127, 64129, 2),
- -- Booming Echoes
-(63370, 63370, 1),
-(63370, 63372, 2),
- -- Booming Voice
-(12321, 12321, 1),
-(12321, 12835, 2),
- -- Borrowed Time
-(52795, 52795, 1),
-(52795, 52797, 2),
-(52795, 52798, 3),
-(52795, 52799, 4),
-(52795, 52800, 5),
- -- Brain Freeze
-(44546, 44546, 1),
-(44546, 44548, 2),
-(44546, 44549, 3),
- -- Brambles
-(16836, 16836, 1),
-(16836, 16839, 2),
-(16836, 16840, 3),
- -- Brutal Impact
-(16940, 16940, 1),
-(16940, 16941, 2),
- -- Burning Determination
-(54747, 54747, 1),
-(54747, 54749, 2),
- -- Burning Soul
-(11083, 11083, 1),
-(11083, 12351, 2),
- -- Burnout
-(44449, 44449, 1),
-(44449, 44469, 2),
-(44449, 44470, 3),
-(44449, 44471, 4),
-(44449, 44472, 5),
- -- Butchery
-(48979, 48979, 1),
-(48979, 49483, 2),
- -- Call of Flame
-(16038, 16038, 1),
-(16038, 16160, 2),
-(16038, 16161, 3),
- -- Camouflage
-(13975, 13975, 1),
-(13975, 14062, 2),
-(13975, 14063, 3),
- -- Careful Aim
-(34482, 34482, 1),
-(34482, 34483, 2),
-(34482, 34484, 3),
- -- Cataclysm
-(17778, 17778, 1),
-(17778, 17779, 2),
-(17778, 17780, 3),
- -- Catlike Reflexes
-(34462, 34462, 1),
-(34462, 34464, 2),
-(34462, 34465, 3),
- -- Celestial Focus
-(16850, 16850, 1),
-(16850, 16923, 2),
-(16850, 16924, 3),
- -- Chain Heal
-(1064, 1064, 1),
-(1064, 10622, 2),
-(1064, 10623, 3),
-(1064, 25422, 4),
-(1064, 25423, 5),
-(1064, 55458, 6),
-(1064, 55459, 7),
- -- Chains of Ice
-(113, 113, 1),
-(113, 512, 2),
- -- Chaos Bolt
-(50796, 50796, 1),
-(50796, 59170, 2),
-(50796, 59171, 3),
-(50796, 59172, 4),
- -- Charge
-(100, 100, 1),
-(100, 6178, 2),
-(100, 11578, 3),
- -- Charge Rage Bonus Effect
-(12695, 12695, 1),
-(12695, 12696, 2),
- -- Cheat Death
-(31228, 31228, 1),
-(31228, 31229, 2),
-(31228, 31230, 3),
- -- Chilblains
-(50040, 50040, 1),
-(50040, 50041, 2),
-(50040, 50043, 3),
- -- Chill of the Grave
-(49149, 49149, 1),
-(49149, 50115, 2),
- -- Chilled
-(12484, 12484, 1),
-(12484, 12485, 2),
-(12484, 12486, 3),
- -- Chilled to the Bone
-(44566, 44566, 1),
-(44566, 44567, 2),
-(44566, 44568, 3),
-(44566, 44570, 4),
-(44566, 44571, 5),
- -- Circle of Healing
-(34861, 34861, 1),
-(34861, 34863, 2),
-(34861, 34864, 3),
-(34861, 34865, 4),
-(34861, 34866, 5),
-(34861, 48088, 6),
-(34861, 48089, 7),
- -- Claw
-(1082, 1082, 1),
-(1082, 3029, 2),
-(1082, 5201, 3),
-(1082, 9849, 4),
-(1082, 9850, 5),
-(1082, 27000, 6),
-(1082, 48569, 7),
-(1082, 48570, 8),
- -- Claw
-(16827, 16827, 1),
-(16827, 16828, 2),
-(16827, 16829, 3),
-(16827, 16830, 4),
-(16827, 16831, 5),
-(16827, 16832, 6),
-(16827, 3010, 7),
-(16827, 3009, 8),
-(16827, 27049, 9),
-(16827, 52471, 10),
-(16827, 52472, 11),
- -- Cleave
-(30214, 30214, 1),
-(30214, 30222, 2),
-(30214, 30224, 3),
- -- Cleave
-(845, 845, 1),
-(845, 7369, 2),
-(845, 11608, 3),
-(845, 11609, 4),
-(845, 20569, 5),
-(845, 25231, 6),
-(845, 47519, 7),
-(845, 47520, 8),
- -- Cleave
-(30213, 30213, 1),
-(30213, 30219, 2),
-(30213, 30223, 3),
-(30213, 47994, 4),
- -- Cleave Armor
-(5508, 5508, 1),
-(5508, 5480, 2),
- -- Close Quarters Combat
-(13706, 13706, 1),
-(13706, 13804, 2),
-(13706, 13805, 3),
-(13706, 13806, 4),
-(13706, 13807, 5),
- -- Cobra Reflexes
-(61682, 61682, 1),
-(61682, 61683, 2),
- -- Cobra Strikes
-(53256, 53256, 1),
-(53256, 53259, 2),
-(53256, 53260, 3),
- -- Cold as Ice
-(55091, 55091, 1),
-(55091, 55092, 2),
- -- Combat Endurance
-(17427, 17427, 1),
-(17427, 17428, 2),
-(17427, 17429, 3),
- -- Combat Experience
-(34475, 34475, 1),
-(34475, 34476, 2),
- -- Combat Expertise
-(31858, 31858, 1),
-(31858, 31859, 2),
-(31858, 31860, 3),
- -- Combat Potency
-(35542, 35542, 1),
-(35542, 35545, 2),
-(35542, 35546, 3),
-(35542, 35547, 4),
-(35542, 35548, 5),
- -- Combat Potency
-(35541, 35541, 1),
-(35541, 35550, 2),
-(35541, 35551, 3),
-(35541, 35552, 4),
-(35541, 35553, 5),
- -- Commanding Presence
-(12318, 12318, 1),
-(12318, 12857, 2),
-(12318, 12858, 3),
-(12318, 12860, 4),
-(12318, 12861, 5),
- -- Commanding Shout
-(469, 469, 1),
-(469, 47439, 2),
-(469, 47440, 3),
- -- Concussion
-(16035, 16035, 1),
-(16035, 16105, 2),
-(16035, 16106, 3),
-(16035, 16107, 4),
-(16035, 16108, 5),
- -- Concussive Barrage
-(35100, 35100, 1),
-(35100, 35102, 2),
- -- Cone of Cold
-(120, 120, 1),
-(120, 8492, 2),
-(120, 10159, 3),
-(120, 10160, 4),
-(120, 10161, 5),
-(120, 27087, 6),
-(120, 42930, 7),
-(120, 42931, 8),
- -- Conjure Food
-(587, 587, 1),
-(587, 597, 2),
-(587, 990, 3),
-(587, 6129, 4),
-(587, 10144, 5),
-(587, 10145, 6),
-(587, 28612, 7),
-(587, 33717, 8),
- -- Conjure Mana Gem
-(759, 759, 1),
-(759, 3552, 2),
-(759, 10053, 3),
-(759, 10054, 4),
-(759, 27101, 5),
-(759, 42985, 6),
- -- Conjure Refreshment
-(42955, 42955, 1),
-(42955, 42956, 2),
- -- Conjure Water
-(5504, 5504, 1),
-(5504, 5505, 2),
-(5504, 5506, 3),
-(5504, 6127, 4),
-(5504, 10138, 5),
-(5504, 10139, 6),
-(5504, 10140, 7),
-(5504, 37420, 8),
-(5504, 27090, 9),
- -- Consecration
-(26573, 26573, 1),
-(26573, 20116, 2),
-(26573, 20922, 3),
-(26573, 20923, 4),
-(26573, 20924, 5),
-(26573, 27173, 6),
-(26573, 48818, 7),
-(26573, 48819, 8),
- -- Consume Shadows
-(17767, 17767, 1),
-(17767, 17850, 2),
-(17767, 17851, 3),
-(17767, 17852, 4),
-(17767, 17853, 5),
-(17767, 17854, 6),
-(17767, 27272, 7),
-(17767, 47987, 8),
-(17767, 47988, 9),
- -- Contagion
-(30060, 30060, 1),
-(30060, 30061, 2),
-(30060, 30062, 3),
-(30060, 30063, 4),
-(30060, 30064, 5),
- -- Convection
-(16039, 16039, 1),
-(16039, 16109, 2),
-(16039, 16110, 3),
-(16039, 16111, 4),
-(16039, 16112, 5),
- -- Conviction
-(20117, 20117, 1),
-(20117, 20118, 2),
-(20117, 20119, 3),
-(20117, 20120, 4),
-(20117, 20121, 5),
- -- Cooking
-(2550, 2550, 1),
-(2550, 3102, 2),
-(2550, 3413, 3),
-(2550, 18260, 4),
-(2550, 33359, 5),
-(2550, 51296, 6),
- -- Cornered
-(52234, 52234, 1),
-(52234, 53497, 2),
- -- Corpse Explosion
-(49158, 49158, 1),
-(49158, 51325, 2),
-(49158, 51326, 3),
-(49158, 51327, 4),
-(49158, 51328, 5),
- -- Corruption
-(172, 172, 1),
-(172, 6222, 2),
-(172, 6223, 3),
-(172, 7648, 4),
-(172, 11671, 5),
-(172, 11672, 6),
-(172, 25311, 7),
-(172, 27216, 8),
-(172, 47812, 9),
-(172, 47813, 10),
- -- Counterattack
-(19306, 19306, 1),
-(19306, 20909, 2),
-(19306, 20910, 3),
-(19306, 27067, 4),
-(19306, 48998, 5),
-(19306, 48999, 6),
- -- Cower
-(8998, 8998, 1),
-(8998, 9000, 2),
-(8998, 9892, 3),
-(8998, 31709, 4),
-(8998, 27004, 5),
-(8998, 48575, 6),
- -- Create Firestone
-(6366, 6366, 1),
-(6366, 17951, 2),
-(6366, 17952, 3),
-(6366, 17953, 4),
-(6366, 27250, 5),
-(6366, 60219, 6),
-(6366, 60220, 7),
- -- Create Healthstone
-(6201, 6201, 1),
-(6201, 6202, 2),
-(6201, 5699, 3),
-(6201, 11729, 4),
-(6201, 11730, 5),
-(6201, 27230, 6),
-(6201, 47871, 7),
-(6201, 47878, 8),
- -- Create Soulstone
-(693, 693, 1),
-(693, 20752, 2),
-(693, 20755, 3),
-(693, 20756, 4),
-(693, 20757, 5),
-(693, 27238, 6),
-(693, 47884, 7),
- -- Create Spellstone
-(2362, 2362, 1),
-(2362, 17727, 2),
-(2362, 17728, 3),
-(2362, 28172, 4),
-(2362, 47886, 5),
-(2362, 47888, 6),
- -- Critical Block
-(47294, 47294, 1),
-(47294, 47295, 2),
-(47294, 47296, 3),
- -- Critical Mass
-(11115, 11115, 1),
-(11115, 11367, 2),
-(11115, 11368, 3),
- -- Cruelty
-(12320, 12320, 1),
-(12320, 12852, 2),
-(12320, 12853, 3),
-(12320, 12855, 4),
-(12320, 12856, 5),
- -- Crusade
-(31866, 31866, 1),
-(31866, 31867, 2),
-(31866, 31868, 3),
- -- Crypt Fever
-(49032, 49032, 1),
-(49032, 49631, 2),
-(49032, 49632, 3),
- -- Culling the Herd
-(61680, 61680, 1),
-(61680, 61681, 2),
-(61680, 52858, 3),
- -- Curse of Agony
-(980, 980, 1),
-(980, 1014, 2),
-(980, 6217, 3),
-(980, 11711, 4),
-(980, 11712, 5),
-(980, 11713, 6),
-(980, 27218, 7),
-(980, 47863, 8),
-(980, 47864, 9),
- -- Curse of Doom
-(603, 603, 1),
-(603, 30910, 2),
-(603, 47867, 3),
- -- Curse of the Elements
-(1490, 1490, 1),
-(1490, 11721, 2),
-(1490, 11722, 3),
-(1490, 27228, 4),
-(1490, 47865, 5),
- -- Curse of Tongues
-(1714, 1714, 1),
-(1714, 11719, 2),
- -- Curse of Weakness
-(702, 702, 1),
-(702, 1108, 2),
-(702, 6205, 3),
-(702, 7646, 4),
-(702, 11707, 5),
-(702, 11708, 6),
-(702, 27224, 7),
-(702, 30909, 8),
-(702, 50511, 9),
- -- Cut to the Chase
-(51664, 51664, 1),
-(51664, 51665, 2),
-(51664, 51667, 3),
-(51664, 51668, 4),
-(51664, 51669, 5),
- -- Damage Shield
-(58872, 58872, 1),
-(58872, 58874, 2),
- -- Dampen Magic
-(1266, 1266, 1),
-(1266, 8452, 2),
-(1266, 8453, 3),
-(1266, 10175, 4),
-(1266, 10176, 5),
- -- Dampen Magic
-(604, 604, 1),
-(604, 8450, 2),
-(604, 8451, 3),
-(604, 10173, 4),
-(604, 10174, 5),
-(604, 33944, 6),
-(604, 43015, 7),
- -- Dark Conviction
-(48987, 48987, 1),
-(48987, 49477, 2),
-(48987, 49478, 3),
-(48987, 49479, 4),
-(48987, 49480, 5),
- -- Dark Pact
-(18220, 18220, 1),
-(18220, 18937, 2),
-(18220, 18938, 3),
-(18220, 27265, 4),
-(18220, 59092, 5),
- -- Darkness
-(15259, 15259, 1),
-(15259, 15307, 2),
-(15259, 15308, 3),
-(15259, 15309, 4),
-(15259, 15310, 5),
- -- Dash
-(1850, 1850, 1),
-(1850, 9821, 2),
-(1850, 33357, 3),
- -- Deadened Nerves
-(31380, 31380, 1),
-(31380, 31382, 2),
-(31380, 31383, 3),
- -- Deadliness
-(30902, 30902, 1),
-(30902, 30903, 2),
-(30902, 30904, 3),
-(30902, 30905, 4),
-(30902, 30906, 5),
- -- Deadly Brew
-(51625, 51625, 1),
-(51625, 51626, 2),
- -- Deadly Throw
-(26679, 26679, 1),
-(26679, 48673, 2),
-(26679, 48674, 3),
- -- Death and Decay
-(43265, 43265, 1),
-(43265, 49936, 2),
-(43265, 49937, 3),
-(43265, 49938, 4),
- -- Death Coil
-(6789, 6789, 1),
-(6789, 17925, 2),
-(6789, 17926, 3),
-(6789, 27223, 4),
-(6789, 47859, 5),
-(6789, 47860, 6),
- -- Death Coil
-(62900, 62900, 1),
-(62900, 62901, 2),
-(62900, 62902, 3),
-(62900, 62903, 4),
-(62900, 62904, 5),
- -- Death Strike
-(49998, 49998, 1),
-(49998, 49999, 2),
-(49998, 45463, 3),
-(49998, 49923, 4),
-(49998, 49924, 5),
- -- Death's Embrace
-(47198, 47198, 1),
-(47198, 47199, 2),
-(47198, 47200, 3),
- -- Decimation
-(63156, 63156, 1),
-(63156, 63158, 2),
- -- Deep Wounds
-(12162, 12162, 1),
-(12162, 12850, 2),
-(12162, 12868, 3),
- -- Deep Wounds
-(12834, 12834, 1),
-(12834, 12849, 2),
-(12834, 12867, 3),
- -- Defensive Tactics
-(29559, 29559, 1),
-(29559, 29588, 2),
-(29559, 29589, 3),
- -- Defiance
-(12303, 12303, 1),
-(12303, 12788, 2),
-(12303, 12789, 3),
- -- Deflection
-(16462, 16462, 1),
-(16462, 16463, 2),
-(16462, 16464, 3),
-(16462, 16465, 4),
-(16462, 16466, 5),
- -- Deflection
-(13713, 13713, 1),
-(13713, 13853, 2),
-(13713, 13854, 3),
- -- Deflection
-(19295, 19295, 1),
-(19295, 19297, 2),
-(19295, 19298, 3),
- -- Deflection
-(20060, 20060, 1),
-(20060, 20061, 2),
-(20060, 20062, 3),
-(20060, 20063, 4),
-(20060, 20064, 5),
- -- Demon Armor
-(706, 706, 1),
-(706, 1086, 2),
-(706, 11733, 3),
-(706, 11734, 4),
-(706, 11735, 5),
-(706, 27260, 6),
-(706, 47793, 7),
-(706, 47889, 8),
- -- Demon Skin
-(687, 687, 1),
-(687, 696, 2),
- -- Demonic Aegis
-(30143, 30143, 1),
-(30143, 30144, 2),
-(30143, 30145, 3),
- -- Demonic Brutality
-(18705, 18705, 1),
-(18705, 18706, 2),
-(18705, 18707, 3),
- -- Demonic Embrace
-(18697, 18697, 1),
-(18697, 18698, 2),
-(18697, 18699, 3),
- -- Demonic Knowledge
-(35691, 35691, 1),
-(35691, 35692, 2),
-(35691, 35693, 3),
- -- Demonic Pact
-(47236, 47236, 1),
-(47236, 47237, 2),
-(47236, 47238, 3),
-(47236, 47239, 4),
-(47236, 47240, 5),
- -- Demonic Power
-(18126, 18126, 1),
-(18126, 18127, 2),
- -- Demonic Resilience
-(30319, 30319, 1),
-(30319, 30320, 2),
-(30319, 30321, 3),
- -- Demonic Tactics
-(30242, 30242, 1),
-(30242, 30245, 2),
-(30242, 30246, 3),
-(30242, 30247, 4),
-(30242, 30248, 5),
- -- Demoralizing Roar
-(99, 99, 1),
-(99, 1735, 2),
-(99, 9490, 3),
-(99, 9747, 4),
-(99, 9898, 5),
-(99, 26998, 6),
-(99, 48559, 7),
-(99, 48560, 8),
- -- Demoralizing Screech
-(24424, 24424, 1),
-(24424, 24580, 2),
-(24424, 24581, 3),
-(24424, 24582, 4),
-(24424, 27349, 5),
- -- Demoralizing Screech
-(24423, 24423, 1),
-(24423, 24577, 2),
-(24423, 24578, 3),
-(24423, 24579, 4),
-(24423, 27051, 5),
-(24423, 55487, 6),
- -- Demoralizing Shout
-(1160, 1160, 1),
-(1160, 6190, 2),
-(1160, 11554, 3),
-(1160, 11555, 4),
-(1160, 11556, 5),
-(1160, 25202, 6),
-(1160, 25203, 7),
-(1160, 47437, 8),
- -- Desecration
-(55666, 55666, 1),
-(55666, 55667, 2),
- -- Desperate Prayer
-(19236, 19236, 1),
-(19236, 19238, 2),
-(19236, 19240, 3),
-(19236, 19241, 4),
-(19236, 19242, 5),
-(19236, 19243, 6),
-(19236, 25437, 7),
-(19236, 48172, 8),
-(19236, 48173, 9),
- -- Destructive Reach
-(17917, 17917, 1),
-(17917, 17918, 2),
- -- Destructive Soul
-(30251, 30251, 1),
-(30251, 30256, 2),
- -- Devastate
-(20243, 20243, 1),
-(20243, 30016, 2),
-(20243, 30022, 3),
-(20243, 47497, 4),
-(20243, 47498, 5),
- -- Devotion Aura
-(465, 465, 1),
-(465, 10290, 2),
-(465, 643, 3),
-(465, 10291, 4),
-(465, 1032, 5),
-(465, 10292, 6),
-(465, 10293, 7),
-(465, 27149, 8),
-(465, 48941, 9),
-(465, 48942, 10),
- -- Devour Magic
-(19505, 19505, 1),
-(19505, 19731, 2),
-(19505, 19734, 3),
-(19505, 19736, 4),
-(19505, 27276, 5),
-(19505, 27277, 6),
-(19505, 48011, 7),
- -- Devouring Plague
-(2944, 2944, 1),
-(2944, 19276, 2),
-(2944, 19277, 3),
-(2944, 19278, 4),
-(2944, 19279, 5),
-(2944, 19280, 6),
-(2944, 25467, 7),
-(2944, 48299, 8),
-(2944, 48300, 9),
- -- Dirge
-(49223, 49223, 1),
-(49223, 49599, 2),
- -- Dirty Deeds
-(14082, 14082, 1),
-(14082, 14083, 2),
- -- Dirty Tricks
-(14076, 14076, 1),
-(14076, 14094, 2),
- -- Dispel Magic
-(527, 527, 1),
-(527, 988, 2),
- -- Displacement
-(34478, 34478, 1),
-(34478, 34479, 2),
-(34478, 34481, 3),
- -- Dive
-(23146, 23146, 1),
-(23146, 23149, 2),
-(23146, 23150, 3),
- -- Divine Aegis
-(47509, 47509, 1),
-(47509, 47511, 2),
-(47509, 47515, 3),
- -- Divine Fury
-(18530, 18530, 1),
-(18530, 18531, 2),
-(18530, 18533, 3),
-(18530, 18534, 4),
-(18530, 18535, 5),
- -- Divine Guardian
-(53527, 53527, 1),
-(53527, 53530, 2),
- -- Divine Intellect
-(20257, 20257, 1),
-(20257, 20258, 2),
-(20257, 20259, 3),
-(20257, 20260, 4),
-(20257, 20261, 5),
- -- Divine Providence
-(47562, 47562, 1),
-(47562, 47564, 2),
-(47562, 47565, 3),
-(47562, 47566, 4),
-(47562, 47567, 5),
- -- Divine Purpose
-(31871, 31871, 1),
-(31871, 31872, 2),
- -- Divine Spirit
-(14752, 14752, 1),
-(14752, 14818, 2),
-(14752, 14819, 3),
-(14752, 27841, 4),
-(14752, 25312, 5),
-(14752, 48073, 6),
- -- Divine Strength
-(20262, 20262, 1),
-(20262, 20263, 2),
-(20262, 20264, 3),
-(20262, 20265, 4),
-(20262, 20266, 5),
- -- Divinity
-(63646, 63646, 1),
-(63646, 63647, 2),
-(63646, 63648, 3),
-(63646, 63649, 4),
-(63646, 63650, 5),
- -- Dragon's Breath
-(31661, 31661, 1),
-(31661, 33041, 2),
-(31661, 33042, 3),
-(31661, 33043, 4),
-(31661, 42949, 5),
-(31661, 42950, 6),
- -- Drain Life
-(689, 689, 1),
-(689, 699, 2),
-(689, 709, 3),
-(689, 7651, 4),
-(689, 11699, 5),
-(689, 11700, 6),
-(689, 27219, 7),
-(689, 27220, 8),
-(689, 47857, 9),
- -- Drain Soul
-(1120, 1120, 1),
-(1120, 8288, 2),
-(1120, 8289, 3),
-(1120, 11675, 4),
-(1120, 27217, 5),
-(1120, 47855, 6),
- -- Dreamstate
-(33597, 33597, 1),
-(33597, 33599, 2),
-(33597, 33956, 3),
- -- Dual Wield Specialization
-(13715, 13715, 1),
-(13715, 13848, 2),
-(13715, 13849, 3),
-(13715, 13851, 4),
-(13715, 13852, 5),
- -- Dual Wield Specialization
-(23584, 23584, 1),
-(23584, 23585, 2),
-(23584, 23586, 3),
-(23584, 23587, 4),
-(23584, 23588, 5),
- -- Dual Wield Specialization
-(30816, 30816, 1),
-(30816, 30818, 2),
-(30816, 30819, 3),
- -- Earth and Moon
-(48506, 48506, 1),
-(48506, 48510, 2),
-(48506, 48511, 3),
- -- Earth Shield
-(974, 974, 1),
-(974, 32593, 2),
-(974, 32594, 3),
-(974, 49283, 4),
-(974, 49284, 5),
- -- Earth Shock
-(8042, 8042, 1),
-(8042, 8044, 2),
-(8042, 8045, 3),
-(8042, 8046, 4),
-(8042, 10412, 5),
-(8042, 10413, 6),
-(8042, 10414, 7),
-(8042, 25454, 8),
-(8042, 49230, 9),
-(8042, 49231, 10),
- -- Earthen Power
-(51523, 51523, 1),
-(51523, 51524, 2),
- -- Earthliving
-(51945, 51945, 1),
-(51945, 51990, 2),
-(51945, 51997, 3),
-(51945, 51998, 4),
-(51945, 51999, 5),
-(51945, 52000, 6),
- -- Earthliving Weapon
-(51730, 51730, 1),
-(51730, 51988, 2),
-(51730, 51991, 3),
-(51730, 51992, 4),
-(51730, 51993, 5),
-(51730, 51994, 6),
- -- Earthliving Weapon (Passive)
-(51940, 51940, 1),
-(51940, 51989, 2),
-(51940, 52004, 3),
-(51940, 52005, 4),
-(51940, 52007, 5),
-(51940, 52008, 6),
- -- Earth's Grasp
-(16043, 16043, 1),
-(16043, 16130, 2),
- -- Ebon Plaguebringer
-(51099, 51099, 1),
-(51099, 51160, 2),
-(51099, 51161, 3),
- -- Eclipse
-(48516, 48516, 1),
-(48516, 48521, 2),
-(48516, 48525, 3),
- -- Efficiency
-(19416, 19416, 1),
-(19416, 19417, 2),
-(19416, 19418, 3),
-(19416, 19419, 4),
-(19416, 19420, 5),
- -- Elemental Absorption
-(30701, 30701, 1),
-(30701, 30702, 2),
-(30701, 30703, 3),
-(30701, 30704, 4),
-(30701, 30705, 5),
- -- Elemental Oath
-(51466, 51466, 1),
-(51466, 51470, 2),
- -- Elemental Precision
-(30672, 30672, 1),
-(30672, 30673, 2),
-(30672, 30674, 3),
- -- Elemental Reach
-(28999, 28999, 1),
-(28999, 29000, 2),
- -- Elemental Shields
-(30669, 30669, 1),
-(30669, 30670, 2),
-(30669, 30671, 3),
- -- Elemental Warding
-(28996, 28996, 1),
-(28996, 28997, 2),
-(28996, 28998, 3),
- -- Elemental Weapons
-(16266, 16266, 1),
-(16266, 29079, 2),
-(16266, 29080, 3),
- -- Elusiveness
-(13981, 13981, 1),
-(13981, 14066, 2),
- -- Emberstorm
-(17954, 17954, 1),
-(17954, 17955, 2),
-(17954, 17956, 3),
-(17954, 17957, 4),
-(17954, 17958, 5),
- -- Empowered Corruption
-(32381, 32381, 1),
-(32381, 32382, 2),
-(32381, 32383, 3),
- -- Empowered Fire
-(31656, 31656, 1),
-(31656, 31657, 2),
-(31656, 31658, 3),
- -- Empowered Frostbolt
-(31682, 31682, 1),
-(31682, 31683, 2),
- -- Empowered Healing
-(33158, 33158, 1),
-(33158, 33159, 2),
-(33158, 33160, 3),
-(33158, 33161, 4),
-(33158, 33162, 5),
- -- Empowered Imp
-(47220, 47220, 1),
-(47220, 47221, 2),
-(47220, 47223, 3),
- -- Empowered Rejuvenation
-(33886, 33886, 1),
-(33886, 33887, 2),
-(33886, 33888, 3),
-(33886, 33889, 4),
-(33886, 33890, 5),
- -- Empowered Renew
-(63534, 63534, 1),
-(63534, 63542, 2),
-(63534, 63543, 3),
- -- Empowered Touch
-(33879, 33879, 1),
-(33879, 33880, 2),
- -- Enchanting
-(7411, 7411, 1),
-(7411, 7412, 2),
-(7411, 7413, 3),
-(7411, 13920, 4),
-(7411, 28029, 5),
-(7411, 51313, 6),
- -- Endless Winter
-(49137, 49137, 1),
-(49137, 49657, 2),
- -- Endurance
-(13742, 13742, 1),
-(13742, 13872, 2),
- -- Endurance Training
-(19583, 19583, 1),
-(19583, 19584, 2),
-(19583, 19585, 3),
-(19583, 19586, 4),
-(19583, 19587, 5),
- -- Enduring Winter
-(44557, 44557, 1),
-(44557, 44560, 2),
-(44557, 44561, 3),
- -- Engineering
-(4036, 4036, 1),
-(4036, 4037, 2),
-(4036, 4038, 3),
-(4036, 12656, 4),
-(4036, 30350, 5),
-(4036, 51306, 6),
- -- Enhancing Totems
-(16259, 16259, 1),
-(16259, 16295, 2),
-(16259, 52456, 3),
- -- Enlightened Judgements
-(53556, 53556, 1),
-(53556, 53557, 2),
- -- Enlightenment
-(34908, 34908, 1),
-(34908, 34909, 2),
-(34908, 34910, 3),
- -- Enrage
-(12317, 12317, 1),
-(12317, 13045, 2),
-(12317, 13046, 3),
-(12317, 13047, 4),
-(12317, 13048, 5),
- -- Enslave Demon
-(1098, 1098, 1),
-(1098, 11725, 2),
-(1098, 11726, 3),
-(1098, 61191, 4),
- -- Entangling Roots
-(339, 339, 1),
-(339, 1062, 2),
-(339, 5195, 3),
-(339, 5196, 4),
-(339, 9852, 5),
-(339, 9853, 6),
-(339, 26989, 7),
-(339, 53308, 8),
- -- Entrapment
-(19184, 19184, 1),
-(19184, 19387, 2),
-(19184, 19388, 3),
- -- Enveloping Shadows
-(31211, 31211, 1),
-(31211, 31212, 2),
-(31211, 31213, 3),
- -- Envenom
-(32645, 32645, 1),
-(32645, 32684, 2),
-(32645, 57992, 3),
-(32645, 57993, 4),
- -- Epidemic
-(49036, 49036, 1),
-(49036, 49562, 2),
- -- Eradication
-(47195, 47195, 1),
-(47195, 47196, 2),
-(47195, 47197, 3),
- -- Evasion
-(5277, 5277, 1),
-(5277, 26669, 2),
- -- Everlasting Affliction
-(47201, 47201, 1),
-(47201, 47202, 2),
-(47201, 47203, 3),
-(47201, 47204, 4),
-(47201, 47205, 5),
- -- Eviscerate
-(2098, 2098, 1),
-(2098, 6760, 2),
-(2098, 6761, 3),
-(2098, 6762, 4),
-(2098, 8623, 5),
-(2098, 8624, 6),
-(2098, 11299, 7),
-(2098, 11300, 8),
-(2098, 31016, 9),
-(2098, 26865, 10),
-(2098, 48667, 11),
-(2098, 48668, 12),
- -- Execute
-(5308, 5308, 1),
-(5308, 20658, 2),
-(5308, 20660, 3),
-(5308, 20661, 4),
-(5308, 20662, 5),
-(5308, 25234, 6),
-(5308, 25236, 7),
-(5308, 47470, 8),
-(5308, 47471, 9),
- -- Exorcism
-(879, 879, 1),
-(879, 5614, 2),
-(879, 5615, 3),
-(879, 10312, 4),
-(879, 10313, 5),
-(879, 10314, 6),
-(879, 27138, 7),
-(879, 48800, 8),
-(879, 48801, 9),
- -- Explosive Shot
-(53301, 53301, 1),
-(53301, 60051, 2),
-(53301, 60052, 3),
-(53301, 60053, 4),
- -- Explosive Trap
-(13813, 13813, 1),
-(13813, 14316, 2),
-(13813, 14317, 3),
-(13813, 27025, 4),
-(13813, 49066, 5),
-(13813, 49067, 6),
- -- Explosive Trap Effect
-(13812, 13812, 1),
-(13812, 14314, 2),
-(13812, 14315, 3),
-(13812, 27026, 4),
-(13812, 49064, 5),
-(13812, 49065, 6),
- -- Expose Weakness
-(34500, 34500, 1),
-(34500, 34502, 2),
-(34500, 34503, 3),
- -- Eye of the Storm
-(29062, 29062, 1),
-(29062, 29064, 2),
-(29062, 29065, 3),
- -- Faerie Fire
-(13424, 13424, 1),
-(13424, 13752, 2),
- -- Fanaticism
-(31879, 31879, 1),
-(31879, 31880, 2),
-(31879, 31881, 3),
- -- Fear
-(5782, 5782, 1),
-(5782, 6213, 2),
-(5782, 6215, 3),
- -- Feeding Frenzy
-(60096, 60096, 1),
-(60096, 60097, 2),
- -- Feeding Frenzy
-(53511, 53511, 1),
-(53511, 53512, 2),
- -- Feint
-(1966, 1966, 1),
-(1966, 6768, 2),
-(1966, 8637, 3),
-(1966, 11303, 4),
-(1966, 25302, 5),
-(1966, 27448, 6),
-(1966, 48658, 7),
-(1966, 48659, 8),
- -- Fel Armor
-(28176, 28176, 1),
-(28176, 28189, 2),
-(28176, 47892, 3),
-(28176, 47893, 4),
- -- Fel Concentration
-(17783, 17783, 1),
-(17783, 17784, 2),
-(17783, 17785, 3),
- -- Fel Intelligence
-(54424, 54424, 1),
-(54424, 57564, 2),
-(54424, 57565, 3),
-(54424, 57566, 4),
-(54424, 57567, 5),
- -- Fel Synergy
-(47230, 47230, 1),
-(47230, 47231, 2),
- -- Fel Vitality
-(18731, 18731, 1),
-(18731, 18743, 2),
-(18731, 18744, 3),
- -- Feral Aggression
-(16858, 16858, 1),
-(16858, 16859, 2),
-(16858, 16860, 3),
-(16858, 16861, 4),
-(16858, 16862, 5),
- -- Feral Instinct
-(16947, 16947, 1),
-(16947, 16948, 2),
-(16947, 16949, 3),
- -- Ferocious Bite
-(22568, 22568, 1),
-(22568, 22827, 2),
-(22568, 22828, 3),
-(22568, 22829, 4),
-(22568, 31018, 5),
-(22568, 24248, 6),
-(22568, 48576, 7),
-(22568, 48577, 8),
- -- Ferocious Dead
-(49038, 49038, 1),
-(49038, 49595, 2),
-(49038, 49596, 3),
- -- Ferocious Inspiration
-(34455, 34455, 1),
-(34455, 34459, 2),
-(34455, 34460, 3),
- -- Ferocity
-(19598, 19598, 1),
-(19598, 19599, 2),
-(19598, 19600, 3),
-(19598, 19601, 4),
-(19598, 19602, 5),
- -- Ferocity
-(16934, 16934, 1),
-(16934, 16935, 2),
-(16934, 16936, 3),
-(16934, 16937, 4),
-(16934, 16938, 5),
- -- Filthy Tricks
-(58414, 58414, 1),
-(58414, 58415, 2),
- -- Find Weakness
-(31234, 31234, 1),
-(31234, 31235, 2),
-(31234, 31236, 3),
- -- Fingers of Frost
-(44543, 44543, 1),
-(44543, 44545, 2),
- -- Fire and Brimstone
-(47266, 47266, 1),
-(47266, 47267, 2),
-(47266, 47268, 3),
-(47266, 47269, 4),
-(47266, 47270, 5),
- -- Fire Blast
-(2141, 2141, 1),
-(2141, 2142, 2),
-(2141, 2143, 3),
-(2141, 8414, 4),
-(2141, 8415, 5),
-(2141, 10198, 6),
-(2141, 10200, 7),
-(2141, 27378, 8),
-(2141, 27379, 9),
- -- Fire Blast
-(2136, 2136, 1),
-(2136, 2137, 2),
-(2136, 2138, 3),
-(2136, 8412, 4),
-(2136, 8413, 5),
-(2136, 10197, 6),
-(2136, 10199, 7),
-(2136, 27078, 8),
-(2136, 27079, 9),
-(2136, 42872, 10),
-(2136, 42873, 11),
- -- Fire Breath
-(34889, 34889, 1),
-(34889, 35323, 2),
-(34889, 55482, 3),
-(34889, 55483, 4),
-(34889, 55484, 5),
-(34889, 55485, 6),
- -- Fire Power
-(11124, 11124, 1),
-(11124, 12378, 2),
-(11124, 12398, 3),
-(11124, 12399, 4),
-(11124, 12400, 5),
- -- Fire Resistance Aura
-(19891, 19891, 1),
-(19891, 19899, 2),
-(19891, 19900, 3),
-(19891, 27153, 4),
-(19891, 48947, 5),
- -- Fire Resistance Totem
-(8184, 8184, 1),
-(8184, 10537, 2),
-(8184, 10538, 3),
-(8184, 25563, 4),
-(8184, 58737, 5),
-(8184, 58739, 6),
- -- Fire Shield
-(2947, 2947, 1),
-(2947, 8316, 2),
-(2947, 8317, 3),
-(2947, 11770, 4),
-(2947, 11771, 5),
-(2947, 27269, 6),
-(2947, 47983, 7),
- -- Fire Shot
-(3011, 3011, 1),
-(3011, 6979, 2),
-(3011, 6980, 3),
- -- Fire Ward
-(1035, 1035, 1),
-(1035, 8459, 2),
-(1035, 8460, 3),
-(1035, 10224, 4),
-(1035, 10226, 5),
-(1035, 27395, 6),
- -- Fire Ward
-(543, 543, 1),
-(543, 8457, 2),
-(543, 8458, 3),
-(543, 10223, 4),
-(543, 10225, 5),
-(543, 27128, 6),
-(543, 43010, 7),
- -- Fireball
-(133, 133, 1),
-(133, 143, 2),
-(133, 145, 3),
-(133, 3140, 4),
-(133, 8400, 5),
-(133, 8401, 6),
-(133, 8402, 7),
-(133, 10148, 8),
-(133, 10149, 9),
-(133, 10150, 10),
-(133, 10151, 11),
-(133, 25306, 12),
-(133, 27070, 13),
-(133, 38692, 14),
-(133, 42832, 15),
-(133, 42833, 16),
- -- Firebolt
-(3110, 3110, 1),
-(3110, 7799, 2),
-(3110, 7800, 3),
-(3110, 7801, 4),
-(3110, 7802, 5),
-(3110, 11762, 6),
-(3110, 11763, 7),
-(3110, 27267, 8),
-(3110, 47964, 9),
- -- Firestarter
-(44442, 44442, 1),
-(44442, 44443, 2),
- -- First Aid
-(3273, 3273, 1),
-(3273, 3274, 2),
-(3273, 7924, 3),
-(3273, 10846, 4),
-(3273, 27028, 5),
-(3273, 45542, 6),
- -- Flame Shock
-(8050, 8050, 1),
-(8050, 8052, 2),
-(8050, 8053, 3),
-(8050, 10447, 4),
-(8050, 10448, 5),
-(8050, 29228, 6),
-(8050, 25457, 7),
-(8050, 49232, 8),
-(8050, 49233, 9),
- -- Flame Throwing
-(11100, 11100, 1),
-(11100, 12353, 2),
- -- Flamestrike
-(2120, 2120, 1),
-(2120, 2121, 2),
-(2120, 8422, 3),
-(2120, 8423, 4),
-(2120, 10215, 5),
-(2120, 10216, 6),
-(2120, 27086, 7),
-(2120, 42925, 8),
-(2120, 42926, 9),
- -- Flametongue Totem
-(52109, 52109, 1),
-(52109, 52110, 2),
-(52109, 52111, 3),
-(52109, 52112, 4),
-(52109, 52113, 5),
-(52109, 58651, 6),
-(52109, 58654, 7),
-(52109, 58655, 8),
- -- Flametongue Totem
-(8227, 8227, 1),
-(8227, 8249, 2),
-(8227, 10526, 3),
-(8227, 16387, 4),
-(8227, 25557, 5),
-(8227, 58649, 6),
-(8227, 58652, 7),
-(8227, 58656, 8),
- -- Flametongue Weapon
-(8024, 8024, 1),
-(8024, 8027, 2),
-(8024, 8030, 3),
-(8024, 16339, 4),
-(8024, 16341, 5),
-(8024, 16342, 6),
-(8024, 25489, 7),
-(8024, 58785, 8),
-(8024, 58789, 9),
-(8024, 58790, 10),
- -- Flametongue Weapon (Passive)
-(10400, 10400, 1),
-(10400, 15567, 2),
-(10400, 15568, 3),
-(10400, 15569, 4),
-(10400, 16311, 5),
-(10400, 16312, 6),
-(10400, 16313, 7),
-(10400, 58784, 8),
-(10400, 58791, 9),
-(10400, 58792, 10),
- -- Flametongue Weapon Proc
-(8026, 8026, 1),
-(8026, 8028, 2),
-(8026, 8029, 3),
-(8026, 10445, 4),
-(8026, 16343, 5),
-(8026, 16344, 6),
-(8026, 25488, 7),
-(8026, 58786, 8),
-(8026, 58787, 9),
-(8026, 58788, 10),
- -- Flash Heal
-(2061, 2061, 1),
-(2061, 9472, 2),
-(2061, 9473, 3),
-(2061, 9474, 4),
-(2061, 10915, 5),
-(2061, 10916, 6),
-(2061, 10917, 7),
-(2061, 25233, 8),
-(2061, 25235, 9),
-(2061, 48070, 10),
-(2061, 48071, 11),
- -- Flash of Light
-(19750, 19750, 1),
-(19750, 19939, 2),
-(19750, 19940, 3),
-(19750, 19941, 4),
-(19750, 19942, 5),
-(19750, 19943, 6),
-(19750, 27137, 7),
-(19750, 48784, 8),
-(19750, 48785, 9),
- -- Fleet Footed
-(31208, 31208, 1),
-(31208, 31209, 2),
- -- Flurry
-(16257, 16257, 1),
-(16257, 16277, 2),
-(16257, 16278, 3),
-(16257, 16279, 4),
-(16257, 16280, 5),
- -- Flurry
-(16256, 16256, 1),
-(16256, 16281, 2),
-(16256, 16282, 3),
-(16256, 16283, 4),
-(16256, 16284, 5),
- -- Focused Aim
-(53620, 53620, 1),
-(53620, 53621, 2),
-(53620, 53622, 3),
- -- Focused Attacks
-(51634, 51634, 1),
-(51634, 51635, 2),
-(51634, 51636, 3),
- -- Focused Casting
-(14743, 14743, 1),
-(14743, 27828, 2),
- -- Focused Fire
-(35060, 35060, 1),
-(35060, 35061, 2),
- -- Focused Fire
-(35029, 35029, 1),
-(35029, 35030, 2),
- -- Focused Mind
-(33213, 33213, 1),
-(33213, 33214, 2),
-(33213, 33215, 3),
- -- Focused Mind
-(30864, 30864, 1),
-(30864, 30865, 2),
-(30864, 30866, 3),
- -- Focused Power
-(33186, 33186, 1),
-(33186, 33190, 2),
- -- Focused Rage
-(29787, 29787, 1),
-(29787, 29790, 2),
-(29787, 29792, 3),
- -- Freezing Trap
-(1499, 1499, 1),
-(1499, 14310, 2),
-(1499, 14311, 3),
- -- Freezing Trap Effect
-(3355, 3355, 1),
-(3355, 14308, 2),
-(3355, 14309, 3),
- -- Frenzy
-(19621, 19621, 1),
-(19621, 19622, 2),
-(19621, 19623, 3),
-(19621, 19624, 4),
-(19621, 19625, 5),
- -- Frigid Dreadplate
-(49186, 49186, 1),
-(49186, 51108, 2),
-(49186, 51109, 3),
- -- Frost Armor
-(168, 168, 1),
-(168, 7300, 2),
-(168, 7301, 3),
- -- Frost Channeling
-(11160, 11160, 1),
-(11160, 12518, 2),
-(11160, 12519, 3),
- -- Frost Nova
-(122, 122, 1),
-(122, 865, 2),
-(122, 6131, 3),
-(122, 10230, 4),
-(122, 27088, 5),
-(122, 42917, 6),
- -- Frost Resistance Aura
-(19888, 19888, 1),
-(19888, 19897, 2),
-(19888, 19898, 3),
-(19888, 27152, 4),
-(19888, 48945, 5),
- -- Frost Resistance Totem
-(8181, 8181, 1),
-(8181, 10478, 2),
-(8181, 10479, 3),
-(8181, 25560, 4),
-(8181, 58741, 5),
-(8181, 58745, 6),
- -- Frost Shock
-(8056, 8056, 1),
-(8056, 8058, 2),
-(8056, 10472, 3),
-(8056, 10473, 4),
-(8056, 25464, 5),
-(8056, 49235, 6),
-(8056, 49236, 7),
- -- Frost Ward
-(6144, 6144, 1),
-(6144, 8463, 2),
-(6144, 8464, 3),
-(6144, 10178, 4),
-(6144, 27396, 5),
-(6144, 32797, 6),
- -- Frost Ward
-(6143, 6143, 1),
-(6143, 8461, 2),
-(6143, 8462, 3),
-(6143, 10177, 4),
-(6143, 28609, 5),
-(6143, 32796, 6),
-(6143, 43012, 7),
- -- Frost Warding
-(11189, 11189, 1),
-(11189, 28332, 2),
- -- Frostbite
-(11071, 11071, 1),
-(11071, 12496, 2),
-(11071, 12497, 3),
- -- Frostbolt
-(116, 116, 1),
-(116, 205, 2),
-(116, 837, 3),
-(116, 7322, 4),
-(116, 8406, 5),
-(116, 8407, 6),
-(116, 8408, 7),
-(116, 10179, 8),
-(116, 10180, 9),
-(116, 10181, 10),
-(116, 25304, 11),
-(116, 27071, 12),
-(116, 27072, 13),
-(116, 38697, 14),
-(116, 42841, 15),
-(116, 42842, 16),
- -- Frostbrand Weapon
-(8033, 8033, 1),
-(8033, 8038, 2),
-(8033, 10456, 3),
-(8033, 16355, 4),
-(8033, 16356, 5),
-(8033, 25500, 6),
-(8033, 58794, 7),
-(8033, 58795, 8),
-(8033, 58796, 9),
- -- Frostfire Bolt
-(44614, 44614, 1),
-(44614, 47610, 2),
- -- Froststorm Breath
-(54644, 54644, 1),
-(54644, 55488, 2),
-(54644, 55489, 3),
-(54644, 55490, 4),
-(54644, 55491, 5),
-(54644, 55492, 6),
- -- Frozen Core
-(31667, 31667, 1),
-(31667, 31668, 2),
-(31667, 31669, 3),
- -- Frozen Power
-(63373, 63373, 1),
-(63373, 63374, 2),
- -- Furious Attacks
-(46910, 46910, 1),
-(46910, 46911, 2),
- -- Furious Howl
-(24604, 24604, 1),
-(24604, 64491, 2),
-(24604, 64492, 3),
-(24604, 64493, 4),
-(24604, 64494, 5),
-(24604, 64495, 6),
- -- Furor
-(17056, 17056, 1),
-(17056, 17058, 2),
-(17056, 17059, 3),
-(17056, 17060, 4),
-(17056, 17061, 5),
- -- Gag Order
-(12311, 12311, 1),
-(12311, 12958, 2),
- -- Gale Winds
-(48488, 48488, 1),
-(48488, 48514, 2),
- -- Garrote
-(703, 703, 1),
-(703, 8631, 2),
-(703, 8632, 3),
-(703, 8633, 4),
-(703, 11289, 5),
-(703, 11290, 6),
-(703, 26839, 7),
-(703, 26884, 8),
-(703, 48675, 9),
-(703, 48676, 10),
- -- Genesis
-(57810, 57810, 1),
-(57810, 57811, 2),
-(57810, 57812, 3),
-(57810, 57813, 4),
-(57810, 57814, 5),
- -- Gift of Nature
-(17104, 17104, 1),
-(17104, 24943, 2),
-(17104, 24944, 3),
-(17104, 24945, 4),
-(17104, 24946, 5),
- -- Gift of the Earthmother
-(51179, 51179, 1),
-(51179, 51180, 2),
-(51179, 51181, 3),
-(51179, 51182, 4),
-(51179, 51183, 5),
- -- Gift of the Wild
-(21849, 21849, 1),
-(21849, 21850, 2),
-(21849, 26991, 3),
-(21849, 48470, 4),
- -- Glacier Rot
-(49471, 49471, 1),
-(49471, 49790, 2),
-(49471, 49791, 3),
- -- Go for the Throat
-(34952, 34952, 1),
-(34952, 34953, 2),
- -- Go for the Throat
-(34950, 34950, 1),
-(34950, 34954, 2),
- -- Gore
-(35299, 35299, 1),
-(35299, 35300, 2),
-(35299, 35302, 3),
-(35299, 35303, 4),
-(35299, 35304, 5),
-(35299, 35305, 6),
-(35299, 35306, 7),
-(35299, 35307, 8),
-(35299, 35308, 9),
- -- Gore
-(35290, 35290, 1),
-(35290, 35291, 2),
-(35290, 35292, 3),
-(35290, 35293, 4),
-(35290, 35294, 5),
-(35290, 35295, 6),
- -- Grace
-(47516, 47516, 1),
-(47516, 47517, 2),
- -- Grace of the Mantis
-(53450, 53450, 1),
-(53450, 53451, 2),
- -- Great Resistance
-(53427, 53427, 1),
-(53427, 53429, 2),
-(53427, 53430, 3),
- -- Great Stamina
-(4195, 4195, 1),
-(4195, 4196, 2),
-(4195, 4197, 3),
-(4195, 4198, 4),
-(4195, 4199, 5),
-(4195, 4200, 6),
-(4195, 4201, 7),
-(4195, 4202, 8),
-(4195, 5048, 9),
-(4195, 5049, 10),
-(4195, 27364, 11),
- -- Great Stamina
-(61686, 61686, 1),
-(61686, 61687, 2),
-(61686, 61688, 3),
- -- Greater Blessing of Might
-(25782, 25782, 1),
-(25782, 25916, 2),
-(25782, 27141, 3),
-(25782, 48933, 4),
-(25782, 48934, 5),
- -- Greater Blessing of Wisdom
-(25894, 25894, 1),
-(25894, 25918, 2),
-(25894, 27143, 3),
-(25894, 48937, 4),
-(25894, 48938, 5),
- -- Greater Heal
-(2060, 2060, 1),
-(2060, 10963, 2),
-(2060, 10964, 3),
-(2060, 10965, 4),
-(2060, 25314, 5),
-(2060, 25210, 6),
-(2060, 25213, 7),
-(2060, 48062, 8),
-(2060, 48063, 9),
- -- Grim Reach
-(18218, 18218, 1),
-(18218, 18219, 2),
- -- Growl
-(1853, 1853, 1),
-(1853, 14922, 2),
-(1853, 14923, 3),
-(1853, 14924, 4),
-(1853, 14925, 5),
-(1853, 14926, 6),
-(1853, 14927, 7),
-(1853, 27344, 8),
- -- Growl
-(2649, 2649, 1),
-(2649, 14916, 2),
-(2649, 14917, 3),
-(2649, 14918, 4),
-(2649, 14919, 5),
-(2649, 14920, 6),
-(2649, 14921, 7),
-(2649, 27047, 8),
-(2649, 61676, 9),
- -- Guard Dog
-(53178, 53178, 1),
-(53178, 53179, 2),
- -- Guarded by the Light
-(53583, 53583, 1),
-(53583, 53585, 2),
- -- Guardian Totems
-(16258, 16258, 1),
-(16258, 16293, 2),
- -- Guardian's Favor
-(20174, 20174, 1),
-(20174, 20175, 2),
- -- Guile of Gorefiend
-(50187, 50187, 1),
-(50187, 50190, 2),
-(50187, 50191, 3),
- -- Hack and Slash
-(13960, 13960, 1),
-(13960, 13961, 2),
-(13960, 13962, 3),
-(13960, 13963, 4),
-(13960, 13964, 5),
- -- Hammer of Justice
-(853, 853, 1),
-(853, 5588, 2),
-(853, 5589, 3),
-(853, 10308, 4),
- -- Hammer of Wrath
-(24275, 24275, 1),
-(24275, 24274, 2),
-(24275, 24239, 3),
-(24275, 27180, 4),
-(24275, 48805, 5),
-(24275, 48806, 6),
- -- Hand of Protection
-(1022, 1022, 1),
-(1022, 5599, 2),
-(1022, 10278, 3),
- -- Haunt
-(48181, 48181, 1),
-(48181, 59161, 2),
-(48181, 59163, 3),
-(48181, 59164, 4),
- -- Hawk Eye
-(19498, 19498, 1),
-(19498, 19499, 2),
-(19498, 19500, 3),
- -- Heal
-(2054, 2054, 1),
-(2054, 2055, 2),
-(2054, 6063, 3),
-(2054, 6064, 4),
- -- Healing Focus
-(14913, 14913, 1),
-(14913, 15012, 2),
- -- Healing Focus
-(16181, 16181, 1),
-(16181, 16230, 2),
-(16181, 16232, 3),
- -- Healing Grace
-(29187, 29187, 1),
-(29187, 29189, 2),
-(29187, 29191, 3),
- -- Healing Light
-(20237, 20237, 1),
-(20237, 20238, 2),
-(20237, 20239, 3),
- -- Healing Prayers
-(14911, 14911, 1),
-(14911, 15018, 2),
- -- Healing Stream Totem
-(5394, 5394, 1),
-(5394, 6375, 2),
-(5394, 6377, 3),
-(5394, 10462, 4),
-(5394, 10463, 5),
-(5394, 25567, 6),
-(5394, 58755, 7),
-(5394, 58756, 8),
-(5394, 58757, 9),
- -- Healing Touch
-(5185, 5185, 1),
-(5185, 5186, 2),
-(5185, 5187, 3),
-(5185, 5188, 4),
-(5185, 5189, 5),
-(5185, 6778, 6),
-(5185, 8903, 7),
-(5185, 9758, 8),
-(5185, 9888, 9),
-(5185, 9889, 10),
-(5185, 25297, 11),
-(5185, 26978, 12),
-(5185, 26979, 13),
-(5185, 48377, 14),
-(5185, 48378, 15),
- -- Healing Wave
-(331, 331, 1),
-(331, 332, 2),
-(331, 547, 3),
-(331, 913, 4),
-(331, 939, 5),
-(331, 959, 6),
-(331, 8005, 7),
-(331, 10395, 8),
-(331, 10396, 9),
-(331, 25357, 10),
-(331, 25391, 11),
-(331, 25396, 12),
-(331, 49272, 13),
-(331, 49273, 14),
- -- Healing Way
-(29206, 29206, 1),
-(29206, 29205, 2),
-(29206, 29202, 3),
- -- Health Funnel
-(755, 755, 1),
-(755, 3698, 2),
-(755, 3699, 3),
-(755, 3700, 4),
-(755, 11693, 5),
-(755, 11694, 6),
-(755, 11695, 7),
-(755, 27259, 8),
-(755, 47856, 9),
- -- Heart of the Crusader
-(21183, 21183, 1),
-(21183, 54498, 2),
-(21183, 54499, 3),
- -- Heart of the Crusader
-(20335, 20335, 1),
-(20335, 20336, 2),
-(20335, 20337, 3),
- -- Heart of the Wild
-(17003, 17003, 1),
-(17003, 17004, 2),
-(17003, 17005, 3),
-(17003, 17006, 4),
-(17003, 24894, 5),
- -- Heart Strike
-(55050, 55050, 1),
-(55050, 55258, 2),
-(55050, 55259, 3),
-(55050, 55260, 4),
-(55050, 55261, 5),
-(55050, 55262, 6),
- -- Heightened Senses
-(30894, 30894, 1),
-(30894, 30895, 2),
- -- Hellfire
-(1949, 1949, 1),
-(1949, 11683, 2),
-(1949, 11684, 3),
-(1949, 27213, 4),
-(1949, 47823, 5),
- -- Hellfire Effect
-(5857, 5857, 1),
-(5857, 11681, 2),
-(5857, 11682, 3),
-(5857, 27214, 4),
-(5857, 47822, 5),
- -- Hemorrhage
-(16511, 16511, 1),
-(16511, 17347, 2),
-(16511, 17348, 3),
-(16511, 26864, 4),
-(16511, 48660, 5),
- -- Herb Gathering
-(2366, 2366, 1),
-(2366, 2368, 2),
-(2366, 3570, 3),
-(2366, 11993, 4),
-(2366, 28695, 5),
-(2366, 50300, 6),
- -- Heroic Strike
-(78, 78, 1),
-(78, 284, 2),
-(78, 285, 3),
-(78, 1608, 4),
-(78, 11564, 5),
-(78, 11565, 6),
-(78, 11566, 7),
-(78, 11567, 8),
-(78, 25286, 9),
-(78, 29707, 10),
-(78, 30324, 11),
-(78, 47449, 12),
-(78, 47450, 13),
- -- Hibernate
-(2637, 2637, 1),
-(2637, 18657, 2),
-(2637, 18658, 3),
- -- Holy Concentration
-(34753, 34753, 1),
-(34753, 34859, 2),
-(34753, 34860, 3),
- -- Holy Fire
-(14914, 14914, 1),
-(14914, 15262, 2),
-(14914, 15263, 3),
-(14914, 15264, 4),
-(14914, 15265, 5),
-(14914, 15266, 6),
-(14914, 15267, 7),
-(14914, 15261, 8),
-(14914, 25384, 9),
-(14914, 48134, 10),
-(14914, 48135, 11),
- -- Holy Guidance
-(31837, 31837, 1),
-(31837, 31838, 2),
-(31837, 31839, 3),
-(31837, 31840, 4),
-(31837, 31841, 5),
- -- Holy Light
-(635, 635, 1),
-(635, 639, 2),
-(635, 647, 3),
-(635, 1026, 4),
-(635, 1042, 5),
-(635, 3472, 6),
-(635, 10328, 7),
-(635, 10329, 8),
-(635, 25292, 9),
-(635, 27135, 10),
-(635, 27136, 11),
-(635, 48781, 12),
-(635, 48782, 13),
- -- Holy Power
-(5923, 5923, 1),
-(5923, 5924, 2),
-(5923, 5925, 3),
-(5923, 5926, 4),
-(5923, 25829, 5),
- -- Holy Reach
-(27789, 27789, 1),
-(27789, 27790, 2),
- -- Holy Shield
-(20925, 20925, 1),
-(20925, 20927, 2),
-(20925, 20928, 3),
-(20925, 27179, 4),
-(20925, 48951, 5),
-(20925, 48952, 6),
- -- Holy Specialization
-(14889, 14889, 1),
-(14889, 15008, 2),
-(14889, 15009, 3),
-(14889, 15010, 4),
-(14889, 15011, 5),
- -- Holy Wrath
-(2812, 2812, 1),
-(2812, 10318, 2),
-(2812, 27139, 3),
-(2812, 48816, 4),
-(2812, 48817, 5),
- -- Honor Among Thieves
-(51698, 51698, 1),
-(51698, 51700, 2),
-(51698, 51701, 3),
- -- Horn of Winter
-(57330, 57330, 1),
-(57330, 57623, 2),
- -- Hot Streak
-(44445, 44445, 1),
-(44445, 44446, 2),
-(44445, 44448, 3),
- -- Howl of Terror
-(5484, 5484, 1),
-(5484, 17928, 2),
- -- Howling Blast
-(49184, 49184, 1),
-(49184, 51409, 2),
-(49184, 51410, 3),
-(49184, 51411, 4),
- -- Hunter vs. Wild
-(56339, 56339, 1),
-(56339, 56340, 2),
-(56339, 56341, 3),
- -- Hunter's Mark
-(1130, 1130, 1),
-(1130, 14323, 2),
-(1130, 14324, 3),
-(1130, 14325, 4),
-(1130, 53338, 5),
- -- Hunting Party
-(53290, 53290, 1),
-(53290, 53291, 2),
-(53290, 53292, 3),
- -- Ice Armor
-(1214, 1214, 1),
-(1214, 1228, 2),
-(1214, 10221, 3),
-(1214, 10222, 4),
-(1214, 27391, 5),
- -- Ice Armor
-(7302, 7302, 1),
-(7302, 7320, 2),
-(7302, 10219, 3),
-(7302, 10220, 4),
-(7302, 27124, 5),
-(7302, 43008, 6),
- -- Ice Barrier
-(11426, 11426, 1),
-(11426, 13031, 2),
-(11426, 13032, 3),
-(11426, 13033, 4),
-(11426, 27134, 5),
-(11426, 33405, 6),
-(11426, 43038, 7),
-(11426, 43039, 8),
- -- Ice Floes
-(31670, 31670, 1),
-(31670, 31672, 2),
-(31670, 55094, 3),
- -- Ice Lance
-(30455, 30455, 1),
-(30455, 42913, 2),
-(30455, 42914, 3),
- -- Ice Shards
-(11207, 11207, 1),
-(11207, 12672, 2),
-(11207, 15047, 3),
- -- Icy Reach
-(55061, 55061, 1),
-(55061, 55062, 2),
- -- Icy Talons
-(50880, 50880, 1),
-(50880, 50884, 2),
-(50880, 50885, 3),
-(50880, 50886, 4),
-(50880, 50887, 5),
- -- Ignite
-(11119, 11119, 1),
-(11119, 11120, 2),
-(11119, 12846, 3),
-(11119, 12847, 4),
-(11119, 12848, 5),
- -- Illumination
-(20210, 20210, 1),
-(20210, 20212, 2),
-(20210, 20213, 3),
-(20210, 20214, 4),
-(20210, 20215, 5),
- -- Immolate
-(348, 348, 1),
-(348, 707, 2),
-(348, 1094, 3),
-(348, 2941, 4),
-(348, 11665, 5),
-(348, 11667, 6),
-(348, 11668, 7),
-(348, 25309, 8),
-(348, 27215, 9),
-(348, 47810, 10),
-(348, 47811, 11),
- -- Impale
-(16493, 16493, 1),
-(16493, 16494, 2),
- -- Improved Ambush
-(14079, 14079, 1),
-(14079, 14080, 2),
- -- Improved Arcane Shot
-(19454, 19454, 1),
-(19454, 19455, 2),
-(19454, 19456, 3),
- -- Improved Aspect of the Hawk
-(19552, 19552, 1),
-(19552, 19553, 2),
-(19552, 19554, 3),
-(19552, 19555, 4),
-(19552, 19556, 5),
- -- Improved Aspect of the Monkey
-(19549, 19549, 1),
-(19549, 19550, 2),
-(19549, 19551, 3),
- -- Improved Barkskin
-(63410, 63410, 1),
-(63410, 63411, 2),
- -- Improved Barrage
-(35104, 35104, 1),
-(35104, 35110, 2),
-(35104, 35111, 3),
- -- Improved Berserker Rage
-(20500, 20500, 1),
-(20500, 20501, 2),
- -- Improved Berserker Stance
-(29759, 29759, 1),
-(29759, 29760, 2),
-(29759, 29761, 3),
-(29759, 29762, 4),
-(29759, 29763, 5),
- -- Improved Blessing of Might
-(20042, 20042, 1),
-(20042, 20045, 2),
- -- Improved Blessing of Salvation
-(20194, 20194, 1),
-(20194, 20195, 2),
- -- Improved Blessing of Wisdom
-(20244, 20244, 1),
-(20244, 20245, 2),
- -- Improved Blink
-(31569, 31569, 1),
-(31569, 31570, 2),
- -- Improved Blizzard
-(11185, 11185, 1),
-(11185, 12487, 2),
-(11185, 12488, 3),
- -- Improved Blood Presence
-(50365, 50365, 1),
-(50365, 50371, 2),
- -- Improved Bloodrage
-(12301, 12301, 1),
-(12301, 12818, 2),
- -- Improved Chain Heal
-(30872, 30872, 1),
-(30872, 30873, 2),
- -- Improved Challenging Shout
-(12327, 12327, 1),
-(12327, 12886, 2),
- -- Improved Charge
-(12285, 12285, 1),
-(12285, 12697, 2),
- -- Improved Cleave
-(12329, 12329, 1),
-(12329, 12950, 2),
-(12329, 20496, 3),
- -- Improved Concentration Aura
-(20254, 20254, 1),
-(20254, 20255, 2),
-(20254, 20256, 3),
- -- Improved Concussive Shot
-(19407, 19407, 1),
-(19407, 19412, 2),
- -- Improved Cone of Cold
-(11190, 11190, 1),
-(11190, 12489, 2),
-(11190, 12490, 3),
- -- Improved Corpse Explosion
-(49601, 49601, 1),
-(49601, 49602, 2),
- -- Improved Corruption
-(17810, 17810, 1),
-(17810, 17811, 2),
-(17810, 17812, 3),
-(17810, 17813, 4),
-(17810, 17814, 5),
- -- Improved Counterspell
-(11255, 11255, 1),
-(11255, 12598, 2),
- -- Improved Cower
-(53180, 53180, 1),
-(53180, 53181, 2),
- -- Improved Curse of Agony
-(18827, 18827, 1),
-(18827, 18829, 2),
- -- Improved Curse of Weakness
-(18179, 18179, 1),
-(18179, 18180, 2),
- -- Improved Death Coil
-(30049, 30049, 1),
-(30049, 30051, 2),
-(30049, 30052, 3),
- -- Improved Defensive Stance
-(29593, 29593, 1),
-(29593, 29594, 2),
- -- Improved Demonic Tactics
-(54347, 54347, 1),
-(54347, 54348, 2),
-(54347, 54349, 3),
- -- Improved Demoralizing Shout
-(12324, 12324, 1),
-(12324, 12876, 2),
-(12324, 12877, 3),
-(12324, 12878, 4),
-(12324, 12879, 5),
- -- Improved Devotion Aura
-(20138, 20138, 1),
-(20138, 20139, 2),
-(20138, 20140, 3),
- -- Improved Devouring Plague
-(63625, 63625, 1),
-(63625, 63626, 2),
-(63625, 63627, 3),
- -- Improved Disarm
-(12313, 12313, 1),
-(12313, 12804, 2),
- -- Improved Disciplines
-(12312, 12312, 1),
-(12312, 12803, 2),
- -- Improved Drain Soul
-(18213, 18213, 1),
-(18213, 18372, 2),
- -- Improved Earth Shield
-(51560, 51560, 1),
-(51560, 51561, 2),
- -- Improved Eviscerate
-(14162, 14162, 1),
-(14162, 14163, 2),
-(14162, 14164, 3),
- -- Improved Execute
-(20502, 20502, 1),
-(20502, 20503, 2),
- -- Improved Expose Armor
-(14168, 14168, 1),
-(14168, 14169, 2),
- -- Improved Eyes of the Beast
-(19557, 19557, 1),
-(19557, 19558, 2),
- -- Improved Faerie Fire
-(33600, 33600, 1),
-(33600, 33601, 2),
-(33600, 33602, 3),
- -- Improved Fear
-(53754, 53754, 1),
-(53754, 53759, 2),
- -- Improved Felhunter
-(54037, 54037, 1),
-(54037, 54038, 2),
- -- Improved Fire Blast
-(11078, 11078, 1),
-(11078, 11080, 2),
- -- Improved Fire Nova
-(16086, 16086, 1),
-(16086, 16544, 2),
- -- Improved Fireball
-(11069, 11069, 1),
-(11069, 12338, 2),
-(11069, 12339, 3),
-(11069, 12340, 4),
-(11069, 12341, 5),
- -- Improved Flash of Light
-(20249, 20249, 1),
-(20249, 20250, 2),
-(20249, 20251, 3),
- -- Improved Frost Presence
-(50384, 50384, 1),
-(50384, 50385, 2),
- -- Improved Frostbolt
-(11070, 11070, 1),
-(11070, 12473, 2),
-(11070, 16763, 3),
-(11070, 16765, 4),
-(11070, 16766, 5),
- -- Improved Ghost Wolf
-(16262, 16262, 1),
-(16262, 16287, 2),
- -- Improved Gouge
-(13741, 13741, 1),
-(13741, 13793, 2),
-(13741, 13792, 3),
- -- Improved Hammer of Justice
-(20487, 20487, 1),
-(20487, 20488, 2),
- -- Improved Hamstring
-(12289, 12289, 1),
-(12289, 12668, 2),
-(12289, 23695, 3),
- -- Improved Healing
-(14912, 14912, 1),
-(14912, 15013, 2),
-(14912, 15014, 3),
- -- Improved Healing Wave
-(16182, 16182, 1),
-(16182, 16226, 2),
-(16182, 16227, 3),
-(16182, 16228, 4),
-(16182, 16229, 5),
- -- Improved Health Funnel
-(18703, 18703, 1),
-(18703, 18704, 2),
- -- Improved Healthstone
-(18692, 18692, 1),
-(18692, 18693, 2),
- -- Improved Heroic Strike
-(12282, 12282, 1),
-(12282, 12663, 2),
-(12282, 12664, 3),
- -- Improved Howl of Terror
-(30054, 30054, 1),
-(30054, 30057, 2),
- -- Improved Hunter's Mark
-(19421, 19421, 1),
-(19421, 19422, 2),
-(19421, 19423, 3),
- -- Improved Icy Touch
-(49175, 49175, 1),
-(49175, 50031, 2),
-(49175, 51456, 3),
- -- Improved Immolate
-(17815, 17815, 1),
-(17815, 17833, 2),
-(17815, 17834, 3),
- -- Improved Imp
-(18694, 18694, 1),
-(18694, 18695, 2),
-(18694, 18696, 3),
- -- Improved Inner Fire
-(14747, 14747, 1),
-(14747, 14770, 2),
-(14747, 14771, 3),
- -- Improved Inner Rage
-(12325, 12325, 1),
-(12325, 12863, 2),
-(12325, 12864, 3),
-(12325, 12865, 4),
-(12325, 12866, 5),
- -- Improved Insect Swarm
-(57849, 57849, 1),
-(57849, 57850, 2),
-(57849, 57851, 3),
- -- Improved Intercept
-(29888, 29888, 1),
-(29888, 29889, 2),
- -- Improved Intimidating Shout
-(19870, 19870, 1),
-(19870, 19871, 2),
- -- Improved Judgements
-(25956, 25956, 1),
-(25956, 25957, 2),
- -- Improved Kick
-(13754, 13754, 1),
-(13754, 13867, 2),
- -- Improved Kidney Shot
-(14174, 14174, 1),
-(14174, 14175, 2),
-(14174, 14176, 3),
- -- Improved Lay on Hands
-(20234, 20234, 1),
-(20234, 20235, 2),
- -- Improved Leader of the Pack
-(34297, 34297, 1),
-(34297, 34300, 2),
- -- Improved Life Tap
-(18182, 18182, 1),
-(18182, 18183, 2),
- -- Improved Mana Burn
-(14750, 14750, 1),
-(14750, 14772, 2),
- -- Improved Mangle
-(48532, 48532, 1),
-(48532, 48489, 2),
-(48532, 48491, 3),
- -- Improved Mark of the Wild
-(17050, 17050, 1),
-(17050, 17051, 2),
- -- Improved Mind Blast
-(15273, 15273, 1),
-(15273, 15312, 2),
-(15273, 15313, 3),
-(15273, 15314, 4),
-(15273, 15316, 5),
- -- Improved Moonfire
-(16821, 16821, 1),
-(16821, 16822, 2),
- -- Improved Moonkin Form
-(50170, 50170, 1),
-(50170, 50171, 2),
-(50170, 50172, 3),
- -- Improved Moonkin Form
-(48384, 48384, 1),
-(48384, 48395, 2),
-(48384, 48396, 3),
- -- Improved Mortal Strike
-(35446, 35446, 1),
-(35446, 35448, 2),
-(35446, 35449, 3),
- -- Improved Overpower
-(12290, 12290, 1),
-(12290, 12963, 2),
- -- Improved Poisons
-(14113, 14113, 1),
-(14113, 14114, 2),
-(14113, 14115, 3),
-(14113, 14116, 4),
-(14113, 14117, 5),
- -- Improved Power Word: Fortitude
-(14749, 14749, 1),
-(14749, 14767, 2),
- -- Improved Power Word: Shield
-(14748, 14748, 1),
-(14748, 14768, 2),
-(14748, 14769, 3),
- -- Improved Psychic Scream
-(15392, 15392, 1),
-(15392, 15448, 2),
- -- Improved Reincarnation
-(16184, 16184, 1),
-(16184, 16209, 2),
- -- Improved Rejuvenation
-(17111, 17111, 1),
-(17111, 17112, 2),
-(17111, 17113, 3),
- -- Improved Rend
-(12286, 12286, 1),
-(12286, 12658, 2),
- -- Improved Renew
-(14908, 14908, 1),
-(14908, 15020, 2),
-(14908, 17191, 3),
- -- Improved Revenge
-(12797, 12797, 1),
-(12797, 12799, 2),
- -- Improved Revive Pet
-(24443, 24443, 1),
-(24443, 19575, 2),
- -- Improved Righteous Fury
-(20468, 20468, 1),
-(20468, 20469, 2),
-(20468, 20470, 3),
- -- Improved Rune Tap
-(48985, 48985, 1),
-(48985, 49488, 2),
-(48985, 49489, 3),
- -- Improved Scorch
-(11095, 11095, 1),
-(11095, 12872, 2),
-(11095, 12873, 3),
- -- Improved Scorpid Sting
-(19491, 19491, 1),
-(19491, 19493, 2),
-(19491, 19494, 3),
- -- Improved Searing Pain
-(17927, 17927, 1),
-(17927, 17929, 2),
-(17927, 17930, 3),
- -- Improved Shadow Bolt
-(17793, 17793, 1),
-(17793, 17796, 2),
-(17793, 17801, 3),
-(17793, 17802, 4),
-(17793, 17803, 5),
- -- Improved Shadow Word: Pain
-(15275, 15275, 1),
-(15275, 15317, 2),
- -- Improved Shadowform
-(47569, 47569, 1),
-(47569, 47570, 2),
- -- Improved Shields
-(16261, 16261, 1),
-(16261, 16290, 2),
-(16261, 51881, 3),
- -- Improved Sinister Strike
-(13732, 13732, 1),
-(13732, 13863, 2),
- -- Improved Slam
-(12862, 12862, 1),
-(12862, 12330, 2),
- -- Improved Slice and Dice
-(14165, 14165, 1),
-(14165, 14166, 2),
- -- Improved Soul Leech
-(54117, 54117, 1),
-(54117, 54118, 2),
- -- Improved Spell Reflection
-(59088, 59088, 1),
-(59088, 59089, 2),
- -- Improved Spirit Tap
-(49694, 49694, 1),
-(49694, 59000, 2),
- -- Improved Spirit Tap
-(15337, 15337, 1),
-(15337, 15338, 2),
- -- Improved Sprint
-(13743, 13743, 1),
-(13743, 13875, 2),
- -- Improved Steady Shot
-(53221, 53221, 1),
-(53221, 53222, 2),
-(53221, 53224, 3),
- -- Improved Stings
-(19464, 19464, 1),
-(19464, 19465, 2),
-(19464, 19466, 3),
- -- Improved Stormstrike
-(51521, 51521, 1),
-(51521, 51522, 2),
- -- Improved Succubus
-(18754, 18754, 1),
-(18754, 18755, 2),
-(18754, 18756, 3),
- -- Improved Thunder Clap
-(12287, 12287, 1),
-(12287, 12665, 2),
-(12287, 12666, 3),
- -- Improved Tracking
-(52783, 52783, 1),
-(52783, 52785, 2),
-(52783, 52786, 3),
-(52783, 52787, 4),
-(52783, 52788, 5),
- -- Improved Tranquility
-(17123, 17123, 1),
-(17123, 17124, 2),
- -- Improved Tree of Life
-(48535, 48535, 1),
-(48535, 48536, 2),
-(48535, 48537, 3),
- -- Improved Unholy Presence
-(50391, 50391, 1),
-(50391, 50392, 2),
- -- Improved Vampiric Embrace
-(27839, 27839, 1),
-(27839, 27840, 2),
- -- Improved Water Shield
-(16180, 16180, 1),
-(16180, 16196, 2),
-(16180, 16198, 3),
- -- Improved Whirlwind
-(29721, 29721, 1),
-(29721, 29776, 2),
- -- Improved Windfury Totem
-(29192, 29192, 1),
-(29192, 29193, 2),
- -- Impurity
-(49220, 49220, 1),
-(49220, 49633, 2),
-(49220, 49635, 3),
-(49220, 49636, 4),
-(49220, 49638, 5),
- -- Incanter's Absorption
-(44394, 44394, 1),
-(44394, 44395, 2),
-(44394, 44396, 3),
- -- Incinerate
-(29722, 29722, 1),
-(29722, 32231, 2),
-(29722, 47837, 3),
-(29722, 47838, 4),
- -- Incineration
-(18459, 18459, 1),
-(18459, 18460, 2),
-(18459, 54734, 3),
- -- Incite
-(50685, 50685, 1),
-(50685, 50686, 2),
-(50685, 50687, 3),
- -- Infected Wounds
-(48483, 48483, 1),
-(48483, 48484, 2),
-(48483, 48485, 3),
- -- Infectious Poisons
-(51630, 51630, 1),
-(51630, 51631, 2),
- -- Inner Fire
-(588, 588, 1),
-(588, 7128, 2),
-(588, 602, 3),
-(588, 1006, 4),
-(588, 10951, 5),
-(588, 10952, 6),
-(588, 25431, 7),
-(588, 48040, 8),
-(588, 48168, 9),
- -- Inscription
-(45357, 45357, 1),
-(45357, 45358, 2),
-(45357, 45359, 3),
-(45357, 45360, 4),
-(45357, 45361, 5),
-(45357, 45363, 6),
- -- Insect Swarm
-(5570, 5570, 1),
-(5570, 24974, 2),
-(5570, 24975, 3),
-(5570, 24976, 4),
-(5570, 24977, 5),
-(5570, 27013, 6),
-(5570, 48468, 7),
- -- Inspiration
-(14893, 14893, 1),
-(14893, 15357, 2),
-(14893, 15359, 3),
- -- Inspiration
-(14892, 14892, 1),
-(14892, 15362, 2),
-(14892, 15363, 3),
- -- Intensify Rage
-(46908, 46908, 1),
-(46908, 46909, 2),
-(46908, 56924, 3),
- -- Intensity
-(17080, 17080, 1),
-(17080, 35358, 2),
-(17080, 35359, 3),
- -- Intensity
-(17106, 17106, 1),
-(17106, 17107, 2),
-(17106, 17108, 3),
- -- Intensity
-(18135, 18135, 1),
-(18135, 18136, 2),
- -- Invigoration
-(53252, 53252, 1),
-(53252, 53253, 2),
- -- Iron Will
-(12300, 12300, 1),
-(12300, 12959, 2),
-(12300, 12960, 3),
- -- Jewelcrafting
-(25229, 25229, 1),
-(25229, 25230, 2),
-(25229, 28894, 3),
-(25229, 28895, 4),
-(25229, 28897, 5),
-(25229, 51311, 6),
- -- Judgements of the Just
-(53695, 53695, 1),
-(53695, 53696, 2),
- -- Judgements of the Wise
-(31876, 31876, 1),
-(31876, 31877, 2),
-(31876, 31878, 3),
- -- Khadgar's Unlocking
-(491, 491, 1),
-(491, 857, 2),
-(491, 10165, 3),
-(491, 10166, 4),
- -- Kidney Shot
-(408, 408, 1),
-(408, 8643, 2),
- -- Kill Shot
-(53351, 53351, 1),
-(53351, 61005, 2),
-(53351, 61006, 3),
- -- Killer Instinct
-(19370, 19370, 1),
-(19370, 19371, 2),
-(19370, 19373, 3),
- -- Killing Machine
-(51123, 51123, 1),
-(51123, 51127, 2),
-(51123, 51128, 3),
-(51123, 51129, 4),
-(51123, 51130, 5),
- -- Kindling Soul
-(47426, 47426, 1),
-(47426, 47427, 2),
- -- Kindling Soul
-(47261, 47261, 1),
-(47261, 47262, 2),
- -- Kindred Spirits
-(56314, 56314, 1),
-(56314, 56315, 2),
-(56314, 56316, 3),
-(56314, 56317, 4),
-(56314, 56318, 5),
- -- King of the Jungle
-(48492, 48492, 1),
-(48492, 48494, 2),
-(48492, 48495, 3),
- -- Lacerate
-(33745, 33745, 1),
-(33745, 48567, 2),
-(33745, 48568, 3),
- -- Lash of Pain
-(7814, 7814, 1),
-(7814, 7815, 2),
-(7814, 7816, 3),
-(7814, 11778, 4),
-(7814, 11779, 5),
-(7814, 11780, 6),
-(7814, 27274, 7),
-(7814, 47991, 8),
-(7814, 47992, 9),
- -- Lava Breath
-(58604, 58604, 1),
-(58604, 58607, 2),
-(58604, 58608, 3),
-(58604, 58609, 4),
-(58604, 58610, 5),
-(58604, 58611, 6),
- -- Lava Burst
-(51505, 51505, 1),
-(51505, 60043, 2),
- -- Lava Flows
-(51480, 51480, 1),
-(51480, 51481, 2),
-(51480, 51482, 3),
- -- Lay on Hands
-(633, 633, 1),
-(633, 2800, 2),
-(633, 10310, 3),
-(633, 27154, 4),
-(633, 48788, 5),
- -- Leatherworking
-(2108, 2108, 1),
-(2108, 3104, 2),
-(2108, 3811, 3),
-(2108, 10662, 4),
-(2108, 32549, 5),
-(2108, 51302, 6),
- -- Lesser Heal
-(2050, 2050, 1),
-(2050, 2052, 2),
-(2050, 2053, 3),
- -- Lesser Healing Wave
-(8004, 8004, 1),
-(8004, 8008, 2),
-(8004, 8010, 3),
-(8004, 10466, 4),
-(8004, 10467, 5),
-(8004, 10468, 6),
-(8004, 25420, 7),
-(8004, 49275, 8),
-(8004, 49276, 9),
- -- Lethal Shots
-(19426, 19426, 1),
-(19426, 19427, 2),
-(19426, 19429, 3),
-(19426, 19430, 4),
-(19426, 19431, 5),
- -- Lethality
-(14128, 14128, 1),
-(14128, 14132, 2),
-(14128, 14135, 3),
-(14128, 14136, 4),
-(14128, 14137, 5),
- -- Life Tap
-(1454, 1454, 1),
-(1454, 1455, 2),
-(1454, 1456, 3),
-(1454, 11687, 4),
-(1454, 11688, 5),
-(1454, 11689, 6),
-(1454, 27222, 7),
-(1454, 57946, 8),
- -- Lifeblood
-(55428, 55428, 1),
-(55428, 55480, 2),
-(55428, 55500, 3),
-(55428, 55501, 4),
-(55428, 55502, 5),
-(55428, 55503, 6),
- -- Lifebloom
-(33763, 33763, 1),
-(33763, 48450, 2),
-(33763, 48451, 3),
- -- Lightning Breath
-(24845, 24845, 1),
-(24845, 25013, 2),
-(24845, 25014, 3),
-(24845, 25015, 4),
-(24845, 25016, 5),
-(24845, 25017, 6),
- -- Lightning Breath
-(24844, 24844, 1),
-(24844, 25008, 2),
-(24844, 25009, 3),
-(24844, 25010, 4),
-(24844, 25011, 5),
-(24844, 25012, 6),
- -- Lightning Mastery
-(16578, 16578, 1),
-(16578, 16579, 2),
-(16578, 16580, 3),
-(16578, 16581, 4),
-(16578, 16582, 5),
- -- Lightning Overload
-(30675, 30675, 1),
-(30675, 30678, 2),
-(30675, 30679, 3),
- -- Lightning Reflexes
-(13712, 13712, 1),
-(13712, 13788, 2),
-(13712, 13789, 3),
- -- Lightning Reflexes
-(19168, 19168, 1),
-(19168, 19180, 2),
-(19168, 19181, 3),
-(19168, 24296, 4),
-(19168, 24297, 5),
- -- Light's Grace
-(31833, 31833, 1),
-(31833, 31835, 2),
-(31833, 31836, 3),
- -- Lightwell
-(724, 724, 1),
-(724, 27870, 2),
-(724, 27871, 3),
-(724, 28275, 4),
-(724, 48086, 5),
-(724, 48087, 6),
- -- Lightwell Renew
-(7001, 7001, 1),
-(7001, 27873, 2),
-(7001, 27874, 3),
-(7001, 28276, 4),
-(7001, 48084, 5),
-(7001, 48085, 6),
- -- Lionhearted
-(53409, 53409, 1),
-(53409, 53411, 2),
- -- Living Seed
-(48496, 48496, 1),
-(48496, 48499, 2),
-(48496, 48500, 3),
- -- Living Spirit
-(34151, 34151, 1),
-(34151, 34152, 2),
-(34151, 34153, 3),
- -- Lock and Load
-(56342, 56342, 1),
-(56342, 56343, 2),
-(56342, 56344, 3),
- -- Lockpicking
-(1809, 1809, 1),
-(1809, 1810, 2),
-(1809, 6460, 3),
- -- Longevity
-(53262, 53262, 1),
-(53262, 53263, 2),
-(53262, 53264, 3),
- -- Lunar Guidance
-(33589, 33589, 1),
-(33589, 33590, 2),
-(33589, 33591, 3),
- -- Mace Specialization
-(13709, 13709, 1),
-(13709, 13800, 2),
-(13709, 13801, 3),
-(13709, 13802, 4),
-(13709, 13803, 5),
- -- Maelstrom Weapon
-(51528, 51528, 1),
-(51528, 51529, 2),
-(51528, 51530, 3),
-(51528, 51531, 4),
-(51528, 51532, 5),
- -- Mage Armor
-(6121, 6121, 1),
-(6121, 22784, 2),
-(6121, 22785, 3),
-(6121, 27392, 4),
- -- Mage Armor
-(6117, 6117, 1),
-(6117, 22782, 2),
-(6117, 22783, 3),
-(6117, 27125, 4),
-(6117, 43023, 5),
-(6117, 43024, 6),
- -- Magic Absorption
-(29441, 29441, 1),
-(29441, 29444, 2),
- -- Magic Attunement
-(11247, 11247, 1),
-(11247, 12606, 2),
- -- Magic Suppression
-(49224, 49224, 1),
-(49224, 49610, 2),
-(49224, 49611, 3),
- -- Magma Totem
-(8187, 8187, 1),
-(8187, 10579, 2),
-(8187, 10580, 3),
-(8187, 10581, 4),
-(8187, 25550, 5),
-(8187, 58732, 6),
-(8187, 58735, 7),
- -- Magma Totem
-(8190, 8190, 1),
-(8190, 10585, 2),
-(8190, 10586, 3),
-(8190, 10587, 4),
-(8190, 25552, 5),
-(8190, 58731, 6),
-(8190, 58734, 7),
- -- Magma Totem Passive
-(8188, 8188, 1),
-(8188, 10582, 2),
-(8188, 10583, 3),
-(8188, 10584, 4),
-(8188, 25551, 5),
-(8188, 58733, 6),
-(8188, 58736, 7),
- -- Maim
-(22570, 22570, 1),
-(22570, 49802, 2),
- -- Malediction
-(32477, 32477, 1),
-(32477, 32483, 2),
-(32477, 32484, 3),
- -- Malice
-(14138, 14138, 1),
-(14138, 14139, 2),
-(14138, 14140, 3),
-(14138, 14141, 4),
-(14138, 14142, 5),
- -- Mana Shield
-(1481, 1481, 1),
-(1481, 8496, 2),
-(1481, 8497, 3),
-(1481, 10194, 4),
-(1481, 10195, 5),
-(1481, 10196, 6),
-(1481, 27398, 7),
- -- Mana Shield
-(1463, 1463, 1),
-(1463, 8494, 2),
-(1463, 8495, 3),
-(1463, 10191, 4),
-(1463, 10192, 5),
-(1463, 10193, 6),
-(1463, 27131, 7),
-(1463, 43019, 8),
-(1463, 43020, 9),
- -- Mana Spring
-(5677, 5677, 1),
-(5677, 10491, 2),
-(5677, 10493, 3),
-(5677, 10494, 4),
-(5677, 25569, 5),
-(5677, 58775, 6),
-(5677, 58776, 7),
-(5677, 58777, 8),
- -- Mana Spring Totem
-(5675, 5675, 1),
-(5675, 10495, 2),
-(5675, 10496, 3),
-(5675, 10497, 4),
-(5675, 25570, 5),
-(5675, 58771, 6),
-(5675, 58773, 7),
-(5675, 58774, 8),
- -- Mangle (Bear)
-(33878, 33878, 1),
-(33878, 33986, 2),
-(33878, 33987, 3),
-(33878, 48563, 4),
-(33878, 48564, 5),
- -- Mangle (Cat)
-(33876, 33876, 1),
-(33876, 33982, 2),
-(33876, 33983, 3),
-(33876, 48565, 4),
-(33876, 48566, 5),
- -- Mark of the Wild
-(1126, 1126, 1),
-(1126, 5232, 2),
-(1126, 6756, 3),
-(1126, 5234, 4),
-(1126, 8907, 5),
-(1126, 9884, 6),
-(1126, 9885, 7),
-(1126, 26990, 8),
-(1126, 48469, 9),
- -- Marked for Death
-(53241, 53241, 1),
-(53241, 53243, 2),
-(53241, 53244, 3),
-(53241, 53245, 4),
-(53241, 53246, 5),
- -- Martyrdom
-(14531, 14531, 1),
-(14531, 14774, 2),
- -- Master Conjuror
-(18767, 18767, 1),
-(18767, 18768, 2),
- -- Master Healer
-(14904, 14904, 1),
-(14904, 15024, 2),
-(14904, 15025, 3),
-(14904, 15026, 4),
-(14904, 15027, 5),
- -- Master Marksman
-(34485, 34485, 1),
-(34485, 34486, 2),
-(34485, 34487, 3),
-(34485, 34488, 4),
-(34485, 34489, 5),
- -- Master of Anatomy
-(53125, 53125, 1),
-(53125, 53662, 2),
-(53125, 53663, 3),
-(53125, 53664, 4),
-(53125, 53665, 5),
-(53125, 53666, 6),
- -- Master of Deception
-(13958, 13958, 1),
-(13958, 13970, 2),
-(13958, 13971, 3),
- -- Master of Elements
-(29074, 29074, 1),
-(29074, 29075, 2),
-(29074, 29076, 3),
- -- Master of Subtlety
-(31221, 31221, 1),
-(31221, 31222, 2),
-(31221, 31223, 3),
- -- Master Poisoner
-(31226, 31226, 1),
-(31226, 31227, 2),
-(31226, 58410, 3),
- -- Master Summoner
-(18709, 18709, 1),
-(18709, 18710, 2),
- -- Maul
-(6807, 6807, 1),
-(6807, 6808, 2),
-(6807, 6809, 3),
-(6807, 8972, 4),
-(6807, 9745, 5),
-(6807, 9880, 6),
-(6807, 9881, 7),
-(6807, 26996, 8),
-(6807, 48479, 9),
-(6807, 48480, 10),
- -- Meditation
-(14521, 14521, 1),
-(14521, 14776, 2),
-(14521, 14777, 3),
- -- Melee Specialization
-(19381, 19381, 1),
-(19381, 19382, 2),
-(19381, 19383, 3),
-(19381, 19384, 4),
-(19381, 19385, 5),
- -- Melted Mind
-(58378, 58378, 1),
-(58378, 58379, 2),
- -- Mend Pet
-(136, 136, 1),
-(136, 3111, 2),
-(136, 3661, 3),
-(136, 3662, 4),
-(136, 13542, 5),
-(136, 13543, 6),
-(136, 13544, 7),
-(136, 27046, 8),
-(136, 48989, 9),
-(136, 48990, 10),
- -- Mental Agility
-(14520, 14520, 1),
-(14520, 14780, 2),
-(14520, 14781, 3),
- -- Mental Dexterity
-(51883, 51883, 1),
-(51883, 51884, 2),
-(51883, 51885, 3),
- -- Mental Quickness
-(30812, 30812, 1),
-(30812, 30813, 2),
-(30812, 30814, 3),
- -- Mental Strength
-(18551, 18551, 1),
-(18551, 18552, 2),
-(18551, 18553, 3),
-(18551, 18554, 4),
-(18551, 18555, 5),
- -- Merciless Combat
-(49024, 49024, 1),
-(49024, 49538, 2),
- -- Might of Mograine
-(49023, 49023, 1),
-(49023, 49533, 2),
-(49023, 49534, 3),
- -- Mind Blast
-(8092, 8092, 1),
-(8092, 8102, 2),
-(8092, 8103, 3),
-(8092, 8104, 4),
-(8092, 8105, 5),
-(8092, 8106, 6),
-(8092, 10945, 7),
-(8092, 10946, 8),
-(8092, 10947, 9),
-(8092, 25372, 10),
-(8092, 25375, 11),
-(8092, 48126, 12),
-(8092, 48127, 13),
- -- Mind Flay
-(15407, 15407, 1),
-(15407, 17311, 2),
-(15407, 17312, 3),
-(15407, 17313, 4),
-(15407, 17314, 5),
-(15407, 18807, 6),
-(15407, 25387, 7),
-(15407, 48155, 8),
-(15407, 48156, 9),
- -- Mind Mastery
-(31584, 31584, 1),
-(31584, 31585, 2),
-(31584, 31586, 3),
-(31584, 31587, 4),
-(31584, 31588, 5),
- -- Mind Melt
-(14910, 14910, 1),
-(14910, 33371, 2),
- -- Mind Vision
-(2096, 2096, 1),
-(2096, 10909, 2),
- -- Mining
-(2575, 2575, 1),
-(2575, 2576, 2),
-(2575, 3564, 3),
-(2575, 10248, 4),
-(2575, 29354, 5),
-(2575, 50310, 6),
- -- Missile Barrage
-(44404, 44404, 1),
-(44404, 54486, 2),
-(44404, 54488, 3),
-(44404, 54489, 4),
-(44404, 54490, 5),
- -- Molten Core
-(47245, 47245, 1),
-(47245, 47246, 2),
-(47245, 47247, 3),
- -- Molten Fury
-(31679, 31679, 1),
-(31679, 31680, 2),
- -- Molten Shields
-(11094, 11094, 1),
-(11094, 13043, 2),
- -- Mongoose Bite
-(1495, 1495, 1),
-(1495, 14269, 2),
-(1495, 14270, 3),
-(1495, 14271, 4),
-(1495, 36916, 5),
-(1495, 53339, 6),
- -- Monstrous Bite
-(54680, 54680, 1),
-(54680, 55495, 2),
-(54680, 55496, 3),
-(54680, 55497, 4),
-(54680, 55498, 5),
-(54680, 55499, 6),
- -- Moonfire
-(8921, 8921, 1),
-(8921, 8924, 2),
-(8921, 8925, 3),
-(8921, 8926, 4),
-(8921, 8927, 5),
-(8921, 8928, 6),
-(8921, 8929, 7),
-(8921, 9833, 8),
-(8921, 9834, 9),
-(8921, 9835, 10),
-(8921, 26987, 11),
-(8921, 26988, 12),
-(8921, 48462, 13),
-(8921, 48463, 14),
- -- Moonfury
-(16896, 16896, 1),
-(16896, 16897, 2),
-(16896, 16899, 3),
- -- Moonglow
-(16845, 16845, 1),
-(16845, 16846, 2),
-(16845, 16847, 3),
- -- Morbidity
-(48963, 48963, 1),
-(48963, 49564, 2),
-(48963, 49565, 3),
- -- Mortal Shots
-(19485, 19485, 1),
-(19485, 19487, 2),
-(19485, 19488, 3),
-(19485, 19489, 4),
-(19485, 19490, 5),
- -- Mortal Strike
-(12294, 12294, 1),
-(12294, 21551, 2),
-(12294, 21552, 3),
-(12294, 21553, 4),
-(12294, 25248, 5),
-(12294, 30330, 6),
-(12294, 47485, 7),
-(12294, 47486, 8),
- -- Multi-Shot
-(2643, 2643, 1),
-(2643, 14288, 2),
-(2643, 14289, 3),
-(2643, 14290, 4),
-(2643, 25294, 5),
-(2643, 27021, 6),
-(2643, 49047, 7),
-(2643, 49048, 8),
- -- Murder
-(14158, 14158, 1),
-(14158, 14159, 2),
- -- Mutilate
-(1329, 1329, 1),
-(1329, 34411, 2),
-(1329, 34412, 3),
-(1329, 34413, 4),
-(1329, 48663, 5),
-(1329, 48666, 6),
- -- Natural Armor
-(24547, 24547, 1),
-(24547, 24556, 2),
-(24547, 24557, 3),
-(24547, 24558, 4),
-(24547, 24559, 5),
-(24547, 24560, 6),
-(24547, 24561, 7),
-(24547, 24562, 8),
-(24547, 24631, 9),
-(24547, 24632, 10),
-(24547, 27362, 11),
- -- Natural Armor
-(61689, 61689, 1),
-(61689, 61690, 2),
- -- Natural Perfection
-(45281, 45281, 1),
-(45281, 45282, 2),
-(45281, 45283, 3),
- -- Natural Perfection
-(33881, 33881, 1),
-(33881, 33882, 2),
-(33881, 33883, 3),
- -- Natural Reaction
-(57878, 57878, 1),
-(57878, 57880, 2),
-(57878, 57881, 3),
- -- Natural Shapeshifter
-(16833, 16833, 1),
-(16833, 16834, 2),
-(16833, 16835, 3),
- -- Naturalist
-(17069, 17069, 1),
-(17069, 17070, 2),
-(17069, 17071, 3),
-(17069, 17072, 4),
-(17069, 17073, 5),
- -- Nature Resistance Totem
-(10595, 10595, 1),
-(10595, 10600, 2),
-(10595, 10601, 3),
-(10595, 25574, 4),
-(10595, 58746, 5),
-(10595, 58749, 6),
- -- Nature's Blessing
-(30867, 30867, 1),
-(30867, 30868, 2),
-(30867, 30869, 3),
- -- Nature's Bounty
-(17074, 17074, 1),
-(17074, 17075, 2),
-(17074, 17076, 3),
-(17074, 17077, 4),
-(17074, 17078, 5),
- -- Nature's Focus
-(17063, 17063, 1),
-(17063, 17065, 2),
-(17063, 17066, 3),
- -- Nature's Grasp
-(16689, 16689, 1),
-(16689, 16810, 2),
-(16689, 16811, 3),
-(16689, 16812, 4),
-(16689, 16813, 5),
-(16689, 17329, 6),
-(16689, 27009, 7),
-(16689, 53312, 8),
- -- Nature's Guardian
-(30881, 30881, 1),
-(30881, 30883, 2),
-(30881, 30884, 3),
-(30881, 30885, 4),
-(30881, 30886, 5),
- -- Nature's Reach
-(16819, 16819, 1),
-(16819, 16820, 2),
- -- Necrosis
-(51459, 51459, 1),
-(51459, 51462, 2),
-(51459, 51463, 3),
-(51459, 51464, 4),
-(51459, 51465, 5),
- -- Nemesis
-(63117, 63117, 1),
-(63117, 63121, 2),
-(63117, 63123, 3),
- -- Nerves of Cold Steel
-(49226, 49226, 1),
-(49226, 50137, 2),
-(49226, 50138, 3),
- -- Nerves of Steel
-(31130, 31130, 1),
-(31130, 31131, 2),
- -- Nether Protection
-(30299, 30299, 1),
-(30299, 30301, 2),
-(30299, 30302, 3),
- -- Nether Shock
-(50479, 50479, 1),
-(50479, 53584, 2),
-(50479, 53586, 3),
-(50479, 53587, 4),
-(50479, 53588, 5),
-(50479, 53589, 6),
- -- Netherwind Presence
-(44400, 44400, 1),
-(44400, 44402, 2),
-(44400, 44403, 3),
- -- Night of the Dead
-(55620, 55620, 1),
-(55620, 55623, 2),
- -- Nightfall
-(18094, 18094, 1),
-(18094, 18095, 2),
- -- Noxious Stings
-(53295, 53295, 1),
-(53295, 53296, 2),
-(53295, 53297, 3),
- -- Nurturing Instinct
-(47179, 47179, 1),
-(47179, 47180, 2),
- -- Nurturing Instinct
-(33872, 33872, 1),
-(33872, 33873, 2),
- -- One-Handed Weapon Specialization
-(16538, 16538, 1),
-(16538, 16539, 2),
-(16538, 16540, 3),
-(16538, 16541, 4),
-(16538, 16542, 5),
- -- One-Handed Weapon Specialization
-(20196, 20196, 1),
-(20196, 20197, 2),
-(20196, 20198, 3),
- -- Opportunity
-(14057, 14057, 1),
-(14057, 14072, 2),
- -- Outbreak
-(49013, 49013, 1),
-(49013, 55236, 2),
-(49013, 55237, 3),
- -- Owlkin Frenzy
-(48389, 48389, 1),
-(48389, 48392, 2),
-(48389, 48393, 3),
- -- Owl's Focus
-(53514, 53514, 1),
-(53514, 53516, 2),
- -- Pain and Suffering
-(47580, 47580, 1),
-(47580, 47581, 2),
-(47580, 47582, 3),
- -- Pathfinding
-(19559, 19559, 1),
-(19559, 19560, 2),
- -- Permafrost
-(11175, 11175, 1),
-(11175, 12569, 2),
-(11175, 12571, 3),
- -- Pet Aggression
-(6311, 6311, 1),
-(6311, 6314, 2),
-(6311, 6315, 3),
-(6311, 6316, 4),
-(6311, 6317, 5),
- -- Pet Barding
-(53175, 53175, 1),
-(53175, 53176, 2),
- -- Pet Hardiness
-(6280, 6280, 1),
-(6280, 6281, 2),
-(6280, 6282, 3),
-(6280, 6283, 4),
-(6280, 6286, 5),
- -- Pet Recovery
-(6328, 6328, 1),
-(6328, 6331, 2),
-(6328, 6332, 3),
-(6328, 6333, 4),
-(6328, 6334, 5),
- -- Pet Resistance
-(6443, 6443, 1),
-(6443, 6444, 2),
-(6443, 6445, 3),
-(6443, 6446, 4),
-(6443, 6447, 5),
- -- Piercing Ice
-(11151, 11151, 1),
-(11151, 12952, 2),
-(11151, 12953, 3),
- -- Piercing Shots
-(53234, 53234, 1),
-(53234, 53237, 2),
-(53234, 53238, 3),
- -- Pin
-(50245, 50245, 1),
-(50245, 53544, 2),
-(50245, 53545, 3),
-(50245, 53546, 4),
-(50245, 53547, 5),
-(50245, 53548, 6),
- -- Playing with Fire
-(31638, 31638, 1),
-(31638, 31639, 2),
-(31638, 31640, 3),
- -- Point of No Escape
-(53298, 53298, 1),
-(53298, 53299, 2),
- -- Poison Spit
-(35388, 35388, 1),
-(35388, 35390, 2),
-(35388, 35391, 3),
- -- Poison Spit
-(35387, 35387, 1),
-(35387, 35389, 2),
-(35387, 35392, 3),
-(35387, 55555, 4),
-(35387, 55556, 5),
-(35387, 55557, 6),
- -- Poleaxe Specialization
-(12700, 12700, 1),
-(12700, 12781, 2),
-(12700, 12783, 3),
-(12700, 12784, 4),
-(12700, 12785, 5),
- -- Polymorph
-(118, 118, 1),
-(118, 12824, 2),
-(118, 12825, 3),
-(118, 12826, 4),
- -- Pounce
-(9005, 9005, 1),
-(9005, 9823, 2),
-(9005, 9827, 3),
-(9005, 27006, 4),
-(9005, 49803, 5),
- -- Pounce Bleed
-(9007, 9007, 1),
-(9007, 9824, 2),
-(9007, 9826, 3),
-(9007, 27007, 4),
-(9007, 49804, 5),
- -- Power Word: Fortitude
-(1243, 1243, 1),
-(1243, 1244, 2),
-(1243, 1245, 3),
-(1243, 2791, 4),
-(1243, 10937, 5),
-(1243, 10938, 6),
-(1243, 25389, 7),
-(1243, 48161, 8),
- -- Power Word: Shield
-(17, 17, 1),
-(17, 592, 2),
-(17, 600, 3),
-(17, 3747, 4),
-(17, 6065, 5),
-(17, 6066, 6),
-(17, 10898, 7),
-(17, 10899, 8),
-(17, 10900, 9),
-(17, 10901, 10),
-(17, 25217, 11),
-(17, 25218, 12),
-(17, 48065, 13),
-(17, 48066, 14),
- -- Prayer of Fortitude
-(21562, 21562, 1),
-(21562, 21564, 2),
-(21562, 25392, 3),
-(21562, 48162, 4),
- -- Prayer of Healing
-(596, 596, 1),
-(596, 996, 2),
-(596, 10960, 3),
-(596, 10961, 4),
-(596, 25316, 5),
-(596, 25308, 6),
-(596, 48072, 7),
- -- Prayer of Mending
-(41635, 41635, 1),
-(41635, 48110, 2),
-(41635, 48111, 3),
- -- Prayer of Mending
-(33076, 33076, 1),
-(33076, 48112, 2),
-(33076, 48113, 3),
- -- Prayer of Shadow Protection
-(27683, 27683, 1),
-(27683, 39374, 2),
-(27683, 48170, 3),
- -- Prayer of Spirit
-(27681, 27681, 1),
-(27681, 32999, 2),
-(27681, 48074, 3),
- -- Precision
-(29438, 29438, 1),
-(29438, 29439, 2),
-(29438, 29440, 3),
- -- Precision
-(13705, 13705, 1),
-(13705, 13832, 2),
-(13705, 13843, 3),
-(13705, 13844, 4),
-(13705, 13845, 5),
- -- Precision
-(29590, 29590, 1),
-(29590, 29591, 2),
-(29590, 29592, 3),
- -- Predatory Instincts
-(33859, 33859, 1),
-(33859, 33866, 2),
-(33859, 33867, 3),
- -- Predatory Strikes
-(16972, 16972, 1),
-(16972, 16974, 2),
-(16972, 16975, 3),
- -- Prey on the Weak
-(51685, 51685, 1),
-(51685, 51686, 2),
-(51685, 51687, 3),
-(51685, 51688, 4),
-(51685, 51689, 5),
- -- Primal Precision
-(48409, 48409, 1),
-(48409, 48410, 2),
- -- Primal Tenacity
-(33851, 33851, 1),
-(33851, 33852, 2),
-(33851, 33957, 3),
- -- Prismatic Cloak
-(31574, 31574, 1),
-(31574, 31575, 2),
-(31574, 54354, 3),
- -- Protector of the Pack
-(57873, 57873, 1),
-(57873, 57876, 2),
-(57873, 57877, 3),
- -- Prowl
-(24450, 24450, 1),
-(24450, 24452, 2),
-(24450, 24453, 3),
- -- Psychic Scream
-(8122, 8122, 1),
-(8122, 8124, 2),
-(8122, 10888, 3),
-(8122, 10890, 4),
- -- Pummel
-(13491, 13491, 1),
-(13491, 6554, 2),
-(13491, 6555, 3),
- -- Puncture
-(12308, 12308, 1),
-(12308, 12810, 2),
-(12308, 12811, 3),
- -- Puncturing Wounds
-(13733, 13733, 1),
-(13733, 13865, 2),
-(13733, 13866, 3),
- -- Pure of Heart
-(31822, 31822, 1),
-(31822, 31823, 2),
- -- Purge
-(370, 370, 1),
-(370, 8012, 2),
- -- Purification
-(16178, 16178, 1),
-(16178, 16210, 2),
-(16178, 16211, 3),
-(16178, 16212, 4),
-(16178, 16213, 5),
- -- Purifying Power
-(31825, 31825, 1),
-(31825, 31826, 2),
- -- Pursuit of Justice
-(26022, 26022, 1),
-(26022, 26023, 2),
- -- Pyroblast
-(11366, 11366, 1),
-(11366, 12505, 2),
-(11366, 12522, 3),
-(11366, 12523, 4),
-(11366, 12524, 5),
-(11366, 12525, 6),
-(11366, 12526, 7),
-(11366, 18809, 8),
-(11366, 27132, 9),
-(11366, 33938, 10),
-(11366, 42890, 11),
-(11366, 42891, 12),
- -- Pyroclasm
-(18096, 18096, 1),
-(18096, 18073, 2),
-(18096, 63245, 3),
- -- Pyromaniac
-(34293, 34293, 1),
-(34293, 34295, 2),
-(34293, 34296, 3),
- -- Quick Recovery
-(31244, 31244, 1),
-(31244, 31245, 2),
- -- Rage of Rivendare
-(50117, 50117, 1),
-(50117, 50118, 2),
-(50117, 50119, 3),
-(50117, 50120, 4),
-(50117, 50121, 5),
- -- Rake
-(1822, 1822, 1),
-(1822, 1823, 2),
-(1822, 1824, 3),
-(1822, 9904, 4),
-(1822, 27003, 5),
-(1822, 48573, 6),
-(1822, 48574, 7),
- -- Rake
-(59881, 59881, 1),
-(59881, 59882, 2),
-(59881, 59883, 3),
-(59881, 59884, 4),
-(59881, 59885, 5),
-(59881, 59886, 6),
- -- Ranged Weapon Specialization
-(19507, 19507, 1),
-(19507, 19508, 2),
-(19507, 19509, 3),
- -- Rapid Recuperation
-(53228, 53228, 1),
-(53228, 53232, 2),
- -- Raptor Strike
-(2973, 2973, 1),
-(2973, 14260, 2),
-(2973, 14261, 3),
-(2973, 14262, 4),
-(2973, 14263, 5),
-(2973, 14264, 6),
-(2973, 14265, 7),
-(2973, 14266, 8),
-(2973, 27014, 9),
-(2973, 48995, 10),
-(2973, 48996, 11),
- -- Rapture
-(47535, 47535, 1),
-(47535, 47536, 2),
-(47535, 47537, 3),
- -- Ravage
-(6785, 6785, 1),
-(6785, 6787, 2),
-(6785, 9866, 3),
-(6785, 9867, 4),
-(6785, 27005, 5),
-(6785, 48578, 6),
-(6785, 48579, 7),
- -- Ravage
-(50518, 50518, 1),
-(50518, 53558, 2),
-(50518, 53559, 3),
-(50518, 53560, 4),
-(50518, 53561, 5),
-(50518, 53562, 6),
- -- Ravenous Dead
-(48965, 48965, 1),
-(48965, 49571, 2),
-(48965, 49572, 3),
- -- Reaping
-(49208, 49208, 1),
-(49208, 56834, 2),
-(49208, 56835, 3),
- -- Rebirth
-(20484, 20484, 1),
-(20484, 20739, 2),
-(20484, 20742, 3),
-(20484, 20747, 4),
-(20484, 20748, 5),
-(20484, 26994, 6),
-(20484, 48477, 7),
- -- Reckoning
-(20177, 20177, 1),
-(20177, 20179, 2),
-(20177, 20181, 3),
-(20177, 20180, 4),
-(20177, 20182, 5),
- -- Redemption
-(7328, 7328, 1),
-(7328, 10322, 2),
-(7328, 10324, 3),
-(7328, 20772, 4),
-(7328, 20773, 5),
-(7328, 48949, 6),
-(7328, 48950, 7),
- -- Redoubt
-(20127, 20127, 1),
-(20127, 20130, 2),
-(20127, 20135, 3),
- -- Reflective Shield
-(33201, 33201, 1),
-(33201, 33202, 2),
- -- Regeneration
-(30799, 30799, 1),
-(30799, 30800, 2),
-(30799, 30801, 3),
- -- Regrowth
-(8936, 8936, 1),
-(8936, 8938, 2),
-(8936, 8939, 3),
-(8936, 8940, 4),
-(8936, 8941, 5),
-(8936, 9750, 6),
-(8936, 9856, 7),
-(8936, 9857, 8),
-(8936, 9858, 9),
-(8936, 26980, 10),
-(8936, 48442, 11),
-(8936, 48443, 12),
- -- Rejuvenation
-(774, 774, 1),
-(774, 1058, 2),
-(774, 1430, 3),
-(774, 2090, 4),
-(774, 2091, 5),
-(774, 3627, 6),
-(774, 8910, 7),
-(774, 9839, 8),
-(774, 9840, 9),
-(774, 9841, 10),
-(774, 25299, 11),
-(774, 26981, 12),
-(774, 26982, 13),
-(774, 48440, 14),
-(774, 48441, 15),
- -- Relentless Strikes
-(14179, 14179, 1),
-(14179, 58422, 2),
-(14179, 58423, 3),
-(14179, 58424, 4),
-(14179, 58425, 5),
- -- Remorseless
-(14143, 14143, 1),
-(14143, 14149, 2),
- -- Remorseless Attacks
-(14144, 14144, 1),
-(14144, 14148, 2),
- -- Rend
-(772, 772, 1),
-(772, 6546, 2),
-(772, 6547, 3),
-(772, 6548, 4),
-(772, 11572, 5),
-(772, 11573, 6),
-(772, 11574, 7),
-(772, 25208, 8),
-(772, 46845, 9),
-(772, 47465, 10),
- -- Rend and Tear
-(48432, 48432, 1),
-(48432, 48433, 2),
-(48432, 48434, 3),
-(48432, 51268, 4),
-(48432, 51269, 5),
- -- Renew
-(139, 139, 1),
-(139, 6074, 2),
-(139, 6075, 3),
-(139, 6076, 4),
-(139, 6077, 5),
-(139, 6078, 6),
-(139, 10927, 7),
-(139, 10928, 8),
-(139, 10929, 9),
-(139, 25315, 10),
-(139, 25221, 11),
-(139, 25222, 12),
-(139, 48067, 13),
-(139, 48068, 14),
- -- Renewed Hope
-(57470, 57470, 1),
-(57470, 57472, 2),
- -- Replenish Mana
-(5405, 5405, 1),
-(5405, 10052, 2),
-(5405, 10057, 3),
-(5405, 10058, 4),
-(5405, 27103, 5),
-(5405, 42987, 6),
-(5405, 42988, 7),
- -- Resourcefulness
-(34491, 34491, 1),
-(34491, 34492, 2),
-(34491, 34493, 3),
- -- Restorative Totems
-(16187, 16187, 1),
-(16187, 16205, 2),
-(16187, 16206, 3),
- -- Resurrection
-(2006, 2006, 1),
-(2006, 2010, 2),
-(2006, 10880, 3),
-(2006, 10881, 4),
-(2006, 20770, 5),
-(2006, 25435, 6),
-(2006, 48171, 7),
- -- Retribution Aura
-(7294, 7294, 1),
-(7294, 10298, 2),
-(7294, 10299, 3),
-(7294, 10300, 4),
-(7294, 10301, 5),
-(7294, 27150, 6),
-(7294, 54043, 7),
- -- Revenge
-(6572, 6572, 1),
-(6572, 6574, 2),
-(6572, 7379, 3),
-(6572, 11600, 4),
-(6572, 11601, 5),
-(6572, 25288, 6),
-(6572, 25269, 7),
-(6572, 30357, 8),
-(6572, 57823, 9),
- -- Reverberation
-(16040, 16040, 1),
-(16040, 16113, 2),
-(16040, 16114, 3),
-(16040, 16115, 4),
-(16040, 16116, 5),
- -- Revitalize
-(48539, 48539, 1),
-(48539, 48544, 2),
-(48539, 48545, 3),
- -- Revive
-(50769, 50769, 1),
-(50769, 50768, 2),
-(50769, 50767, 3),
-(50769, 50766, 4),
-(50769, 50765, 5),
-(50769, 50764, 6),
-(50769, 50763, 7),
- -- Righteous Vengeance
-(53380, 53380, 1),
-(53380, 53381, 2),
-(53380, 53382, 3),
- -- Rime
-(49188, 49188, 1),
-(49188, 56822, 2),
-(49188, 59057, 3),
- -- Rip
-(1079, 1079, 1),
-(1079, 9492, 2),
-(1079, 9493, 3),
-(1079, 9752, 4),
-(1079, 9894, 5),
-(1079, 9896, 6),
-(1079, 27008, 7),
-(1079, 49799, 8),
-(1079, 49800, 9),
- -- Riptide
-(61295, 61295, 1),
-(61295, 61299, 2),
-(61295, 61300, 3),
-(61295, 61301, 4),
- -- Ritual of Refreshment
-(43987, 43987, 1),
-(43987, 58659, 2),
- -- Ritual of Souls
-(29893, 29893, 1),
-(29893, 58887, 2),
- -- Rockbiter Weapon
-(8017, 8017, 1),
-(8017, 8018, 2),
-(8017, 8019, 3),
-(8017, 10399, 4),
- -- Ruin
-(17959, 17959, 1),
-(17959, 59738, 2),
-(17959, 59739, 3),
-(17959, 59740, 4),
-(17959, 59741, 5),
- -- Runic Power Mastery
-(49455, 49455, 1),
-(49455, 50147, 2),
- -- Rupture
-(1943, 1943, 1),
-(1943, 8639, 2),
-(1943, 8640, 3),
-(1943, 11273, 4),
-(1943, 11274, 5),
-(1943, 11275, 6),
-(1943, 26867, 7),
-(1943, 48671, 8),
-(1943, 48672, 9),
- -- Ruthlessness
-(14156, 14156, 1),
-(14156, 14160, 2),
-(14156, 14161, 3),
- -- Sacred Cleansing
-(53551, 53551, 1),
-(53551, 53552, 2),
-(53551, 53553, 3),
- -- Sacred Duty
-(31848, 31848, 1),
-(31848, 31849, 2),
- -- Sacrifice
-(7812, 7812, 1),
-(7812, 19438, 2),
-(7812, 19440, 3),
-(7812, 19441, 4),
-(7812, 19442, 5),
-(7812, 19443, 6),
-(7812, 27273, 7),
-(7812, 47985, 8),
-(7812, 47986, 9),
- -- Sanctified Light
-(20359, 20359, 1),
-(20359, 20360, 2),
-(20359, 20361, 3),
- -- Sanctified Wrath
-(53375, 53375, 1),
-(53375, 53376, 2),
- -- Sanctity of Battle
-(32043, 32043, 1),
-(32043, 35396, 2),
-(32043, 35397, 3),
- -- Sap
-(6770, 6770, 1),
-(6770, 2070, 2),
-(6770, 11297, 3),
-(6770, 51724, 4),
- -- Savage Combat
-(58684, 58684, 1),
-(58684, 58683, 2),
- -- Savage Combat
-(51682, 51682, 1),
-(51682, 58413, 2),
- -- Savage Fury
-(16998, 16998, 1),
-(16998, 16999, 2),
- -- Savage Strikes
-(19159, 19159, 1),
-(19159, 19160, 2),
- -- Scare Beast
-(1513, 1513, 1),
-(1513, 14326, 2),
-(1513, 14327, 3),
- -- Scent of Blood
-(49004, 49004, 1),
-(49004, 49508, 2),
-(49004, 49509, 3),
- -- Scorch
-(1811, 1811, 1),
-(1811, 8447, 2),
-(1811, 8448, 3),
-(1811, 8449, 4),
-(1811, 10208, 5),
-(1811, 10209, 6),
-(1811, 10210, 7),
-(1811, 27375, 8),
-(1811, 27376, 9),
- -- Scorch
-(2948, 2948, 1),
-(2948, 8444, 2),
-(2948, 8445, 3),
-(2948, 8446, 4),
-(2948, 10205, 5),
-(2948, 10206, 6),
-(2948, 10207, 7),
-(2948, 27073, 8),
-(2948, 27074, 9),
-(2948, 42858, 10),
-(2948, 42859, 11),
- -- Scorpid Poison
-(24641, 24641, 1),
-(24641, 24584, 2),
-(24641, 24588, 3),
-(24641, 24589, 4),
-(24641, 27361, 5),
- -- Scorpid Poison
-(24640, 24640, 1),
-(24640, 24583, 2),
-(24640, 24586, 3),
-(24640, 24587, 4),
-(24640, 27060, 5),
-(24640, 55728, 6),
- -- Scourge Strike
-(55090, 55090, 1),
-(55090, 55265, 2),
-(55090, 55270, 3),
-(55090, 55271, 4),
- -- Seal Fate
-(14186, 14186, 1),
-(14186, 14190, 2),
-(14186, 14193, 3),
-(14186, 14194, 4),
-(14186, 14195, 5),
- -- Seals of the Pure
-(20224, 20224, 1),
-(20224, 20225, 2),
-(20224, 20330, 3),
-(20224, 20331, 4),
-(20224, 20332, 5),
- -- Searing Light
-(14909, 14909, 1),
-(14909, 15017, 2),
- -- Searing Pain
-(5676, 5676, 1),
-(5676, 17919, 2),
-(5676, 17920, 3),
-(5676, 17921, 4),
-(5676, 17922, 5),
-(5676, 17923, 6),
-(5676, 27210, 7),
-(5676, 30459, 8),
-(5676, 47814, 9),
-(5676, 47815, 10),
- -- Searing Totem
-(2075, 2075, 1),
-(2075, 38116, 2),
- -- Searing Totem
-(3599, 3599, 1),
-(3599, 6363, 2),
-(3599, 6364, 3),
-(3599, 6365, 4),
-(3599, 10437, 5),
-(3599, 10438, 6),
-(3599, 25533, 7),
-(3599, 58699, 8),
-(3599, 58703, 9),
-(3599, 58704, 10),
- -- Seed of Corruption
-(43991, 43991, 1),
-(43991, 47831, 2),
-(43991, 47832, 3),
- -- Serendipity
-(63730, 63730, 1),
-(63730, 63733, 2),
-(63730, 63737, 3),
- -- Serenity Dust
-(50318, 50318, 1),
-(50318, 52012, 2),
-(50318, 52013, 3),
-(50318, 52014, 4),
-(50318, 52015, 5),
-(50318, 52016, 6),
- -- Serious Wound
-(5597, 5597, 1),
-(5597, 5598, 2),
- -- Serpent Sting
-(1978, 1978, 1),
-(1978, 13549, 2),
-(1978, 13550, 3),
-(1978, 13551, 4),
-(1978, 13552, 5),
-(1978, 13553, 6),
-(1978, 13554, 7),
-(1978, 13555, 8),
-(1978, 25295, 9),
-(1978, 27016, 10),
-(1978, 49000, 11),
-(1978, 49001, 12),
- -- Serpent's Swiftness
-(34466, 34466, 1),
-(34466, 34467, 2),
-(34466, 34468, 3),
-(34466, 34469, 4),
-(34466, 34470, 5),
- -- Serrated Blades
-(14171, 14171, 1),
-(14171, 14172, 2),
-(14171, 14173, 3),
- -- Setup
-(13983, 13983, 1),
-(13983, 14070, 2),
-(13983, 14071, 3),
- -- Shackle Undead
-(9484, 9484, 1),
-(9484, 9485, 2),
-(9484, 10955, 3),
- -- Shadow Affinity
-(15318, 15318, 1),
-(15318, 15272, 2),
-(15318, 15320, 3),
- -- Shadow and Flame
-(30288, 30288, 1),
-(30288, 30289, 2),
-(30288, 30290, 3),
-(30288, 30291, 4),
-(30288, 30292, 5),
- -- Shadow Bite
-(54049, 54049, 1),
-(54049, 54050, 2),
-(54049, 54051, 3),
-(54049, 54052, 4),
-(54049, 54053, 5),
- -- Shadow Bolt
-(686, 686, 1),
-(686, 695, 2),
-(686, 705, 3),
-(686, 1088, 4),
-(686, 1106, 5),
-(686, 7641, 6),
-(686, 11659, 7),
-(686, 11660, 8),
-(686, 11661, 9),
-(686, 25307, 10),
-(686, 27209, 11),
-(686, 47808, 12),
-(686, 47809, 13),
- -- Shadow Embrace
-(32385, 32385, 1),
-(32385, 32387, 2),
-(32385, 32392, 3),
-(32385, 32393, 4),
-(32385, 32394, 5),
- -- Shadow Focus
-(15260, 15260, 1),
-(15260, 15327, 2),
-(15260, 15328, 3),
- -- Shadow Mastery
-(18271, 18271, 1),
-(18271, 18272, 2),
-(18271, 18273, 3),
-(18271, 18274, 4),
-(18271, 18275, 5),
- -- Shadow Power
-(33221, 33221, 1),
-(33221, 33222, 2),
-(33221, 33223, 3),
-(33221, 33224, 4),
-(33221, 33225, 5),
- -- Shadow Protection
-(976, 976, 1),
-(976, 10957, 2),
-(976, 10958, 3),
-(976, 25433, 4),
-(976, 48169, 5),
- -- Shadow Reach
-(17322, 17322, 1),
-(17322, 17323, 2),
- -- Shadow Resistance Aura
-(19876, 19876, 1),
-(19876, 19895, 2),
-(19876, 19896, 3),
-(19876, 27151, 4),
-(19876, 48943, 5),
- -- Shadow Ward
-(6229, 6229, 1),
-(6229, 11739, 2),
-(6229, 11740, 3),
-(6229, 28610, 4),
-(6229, 47890, 5),
-(6229, 47891, 6),
- -- Shadow Weaving
-(15257, 15257, 1),
-(15257, 15331, 2),
-(15257, 15332, 3),
- -- Shadow Word: Death
-(32379, 32379, 1),
-(32379, 32996, 2),
-(32379, 48157, 3),
-(32379, 48158, 4),
- -- Shadow Word: Pain
-(589, 589, 1),
-(589, 594, 2),
-(589, 970, 3),
-(589, 992, 4),
-(589, 2767, 5),
-(589, 10892, 6),
-(589, 10893, 7),
-(589, 10894, 8),
-(589, 25367, 9),
-(589, 25368, 10),
-(589, 48124, 11),
-(589, 48125, 12),
- -- Shadowburn
-(17877, 17877, 1),
-(17877, 18867, 2),
-(17877, 18868, 3),
-(17877, 18869, 4),
-(17877, 18870, 5),
-(17877, 18871, 6),
-(17877, 27263, 7),
-(17877, 30546, 8),
-(17877, 47826, 9),
-(17877, 47827, 10),
- -- Shadowflame
-(47897, 47897, 1),
-(47897, 61290, 2),
- -- Shadowfury
-(30283, 30283, 1),
-(30283, 30413, 2),
-(30283, 30414, 3),
-(30283, 47846, 4),
-(30283, 47847, 5),
- -- Shamanism
-(62097, 62097, 1),
-(62097, 62098, 2),
-(62097, 62099, 3),
-(62097, 62100, 4),
-(62097, 62101, 5),
- -- Shark Attack
-(62759, 62759, 1),
-(62759, 62760, 2),
- -- Sharpened Claws
-(16942, 16942, 1),
-(16942, 16943, 2),
-(16942, 16944, 3),
- -- Shatter
-(11170, 11170, 1),
-(11170, 12982, 2),
-(11170, 12983, 3),
- -- Shattered Barrier
-(44745, 44745, 1),
-(44745, 54787, 2),
- -- Sheath of Light
-(53501, 53501, 1),
-(53501, 53502, 2),
-(53501, 53503, 3),
- -- Shield Mastery
-(29598, 29598, 1),
-(29598, 29599, 2),
- -- Shield of Righteousness
-(53600, 53600, 1),
-(53600, 61411, 2),
- -- Shield of the Templar
-(53709, 53709, 1),
-(53709, 53710, 2),
-(53709, 53711, 3),
- -- Shield Slam
-(23922, 23922, 1),
-(23922, 23923, 2),
-(23922, 23924, 3),
-(23922, 23925, 4),
-(23922, 25258, 5),
-(23922, 30356, 6),
-(23922, 47487, 7),
-(23922, 47488, 8),
- -- Shield Specialization
-(12298, 12298, 1),
-(12298, 12724, 2),
-(12298, 12725, 3),
-(12298, 12726, 4),
-(12298, 12727, 5),
- -- Shield Specialization
-(16253, 16253, 1),
-(16253, 16298, 2),
- -- Shock
-(2607, 2607, 1),
-(2607, 2606, 2),
-(2607, 2608, 3),
-(2607, 2609, 4),
-(2607, 2610, 5),
- -- Shred
-(5221, 5221, 1),
-(5221, 6800, 2),
-(5221, 8992, 3),
-(5221, 9829, 4),
-(5221, 9830, 5),
-(5221, 27001, 6),
-(5221, 27002, 7),
-(5221, 48571, 8),
-(5221, 48572, 9),
- -- Shredding Attacks
-(16966, 16966, 1),
-(16966, 16968, 2),
- -- Silenced - Improved Counterspell
-(18469, 18469, 1),
-(18469, 55021, 2),
- -- Silent Hunter
-(34472, 34472, 1),
-(34472, 34473, 2),
-(34472, 34474, 3),
- -- Silent Resolve
-(14523, 14523, 1),
-(14523, 14784, 2),
-(14523, 14785, 3),
- -- Silverback
-(62764, 62764, 1),
-(62764, 62765, 2),
- -- Sinister Calling
-(31216, 31216, 1),
-(31216, 31217, 2),
-(31216, 31218, 3),
-(31216, 31219, 4),
-(31216, 31220, 5),
- -- Sinister Strike
-(1752, 1752, 1),
-(1752, 1757, 2),
-(1752, 1758, 3),
-(1752, 1759, 4),
-(1752, 1760, 5),
-(1752, 8621, 6),
-(1752, 11293, 7),
-(1752, 11294, 8),
-(1752, 26861, 9),
-(1752, 26862, 10),
-(1752, 48637, 11),
-(1752, 48638, 12),
- -- Skinning
-(8613, 8613, 1),
-(8613, 8617, 2),
-(8613, 8618, 3),
-(8613, 10768, 4),
-(8613, 32678, 5),
-(8613, 50305, 6),
- -- Slam
-(1464, 1464, 1),
-(1464, 8820, 2),
-(1464, 11604, 3),
-(1464, 11605, 4),
-(1464, 25241, 5),
-(1464, 25242, 6),
-(1464, 47474, 7),
-(1464, 47475, 8),
- -- Slaughter from the Shadows
-(51708, 51708, 1),
-(51708, 51709, 2),
-(51708, 51710, 3),
-(51708, 51711, 4),
-(51708, 51712, 5),
- -- Sleep
-(700, 700, 1),
-(700, 1090, 2),
- -- Sleight of Hand
-(30892, 30892, 1),
-(30892, 30893, 2),
- -- Slice and Dice
-(5171, 5171, 1),
-(5171, 6774, 2),
- -- Slow
-(246, 246, 1),
-(246, 6146, 2),
- -- Smack
-(49966, 49966, 1),
-(49966, 49967, 2),
-(49966, 49968, 3),
-(49966, 49969, 4),
-(49966, 49970, 5),
-(49966, 49971, 6),
-(49966, 49972, 7),
-(49966, 49973, 8),
-(49966, 49974, 9),
-(49966, 52475, 10),
-(49966, 52476, 11),
- -- Smite
-(585, 585, 1),
-(585, 591, 2),
-(585, 598, 3),
-(585, 984, 4),
-(585, 1004, 5),
-(585, 6060, 6),
-(585, 10933, 7),
-(585, 10934, 8),
-(585, 25363, 9),
-(585, 25364, 10),
-(585, 48122, 11),
-(585, 48123, 12),
- -- Snatch
-(50541, 50541, 1),
-(50541, 53537, 2),
-(50541, 53538, 3),
-(50541, 53540, 4),
-(50541, 53542, 5),
-(50541, 53543, 6),
- -- Sniper Training
-(53302, 53302, 1),
-(53302, 53303, 2),
-(53302, 53304, 3),
- -- Sonic Blast
-(50519, 50519, 1),
-(50519, 53564, 2),
-(50519, 53565, 3),
-(50519, 53566, 4),
-(50519, 53567, 5),
-(50519, 53568, 6),
- -- Soothe Animal
-(2908, 2908, 1),
-(2908, 8955, 2),
-(2908, 9901, 3),
-(2908, 26995, 4),
- -- Soothing Kiss
-(6360, 6360, 1),
-(6360, 7813, 2),
-(6360, 11784, 3),
-(6360, 11785, 4),
-(6360, 27275, 5),
- -- Soul Fire
-(6353, 6353, 1),
-(6353, 17924, 2),
-(6353, 27211, 3),
-(6353, 30545, 4),
-(6353, 47824, 5),
-(6353, 47825, 6),
- -- Soul Leech
-(30293, 30293, 1),
-(30293, 30295, 2),
-(30293, 30296, 3),
- -- Soul Siphon
-(17804, 17804, 1),
-(17804, 17805, 2),
- -- Spark of Nature
-(48435, 48435, 1),
-(48435, 48436, 2),
-(48435, 48437, 3),
- -- Spell Deflection
-(49145, 49145, 1),
-(49145, 49495, 2),
-(49145, 49497, 3),
- -- Spell Impact
-(11242, 11242, 1),
-(11242, 12467, 2),
-(11242, 12469, 3),
- -- Spell Lock
-(19244, 19244, 1),
-(19244, 19647, 2),
- -- Spell Power
-(35578, 35578, 1),
-(35578, 35581, 2),
- -- Spell Warding
-(27900, 27900, 1),
-(27900, 27901, 2),
-(27900, 27902, 3),
-(27900, 27903, 4),
-(27900, 27904, 5),
- -- Spider's Bite
-(53203, 53203, 1),
-(53203, 53204, 2),
-(53203, 53205, 3),
- -- Spiked Collar
-(53182, 53182, 1),
-(53182, 53183, 2),
-(53182, 53184, 3),
- -- Spirit
-(8112, 8112, 1),
-(8112, 8113, 2),
-(8112, 8114, 3),
-(8112, 12177, 4),
-(8112, 33080, 5),
-(8112, 43197, 6),
-(8112, 48103, 7),
-(8112, 48104, 8),
- -- Spirit Strike
-(61193, 61193, 1),
-(61193, 61194, 2),
-(61193, 61195, 3),
-(61193, 61196, 4),
-(61193, 61197, 5),
-(61193, 61198, 6),
- -- Spirit Tap
-(15270, 15270, 1),
-(15270, 15335, 2),
-(15270, 15336, 3),
- -- Spiritual Attunement
-(31785, 31785, 1),
-(31785, 33776, 2),
- -- Spiritual Focus
-(20205, 20205, 1),
-(20205, 20206, 2),
-(20205, 20207, 3),
-(20205, 20209, 4),
-(20205, 20208, 5),
- -- Spiritual Guidance
-(14901, 14901, 1),
-(14901, 15028, 2),
-(14901, 15029, 3),
-(14901, 15030, 4),
-(14901, 15031, 5),
- -- Spiritual Healing
-(14898, 14898, 1),
-(14898, 15349, 2),
-(14898, 15354, 3),
-(14898, 15355, 4),
-(14898, 15356, 5),
- -- Spore Cloud
-(50274, 50274, 1),
-(50274, 53593, 2),
-(50274, 53594, 3),
-(50274, 53596, 4),
-(50274, 53597, 5),
-(50274, 53598, 6),
- -- Sprint
-(2983, 2983, 1),
-(2983, 8696, 2),
-(2983, 11305, 3),
- -- Stampede
-(57386, 57386, 1),
-(57386, 57389, 2),
-(57386, 57390, 3),
-(57386, 57391, 4),
-(57386, 57392, 5),
-(57386, 57393, 6),
- -- Starfall
-(48505, 48505, 1),
-(48505, 53199, 2),
-(48505, 53200, 3),
-(48505, 53201, 4),
- -- Starfire
-(2912, 2912, 1),
-(2912, 8949, 2),
-(2912, 8950, 3),
-(2912, 8951, 4),
-(2912, 9875, 5),
-(2912, 9876, 6),
-(2912, 25298, 7),
-(2912, 26986, 8),
-(2912, 48464, 9),
-(2912, 48465, 10),
- -- Starlight Wrath
-(16814, 16814, 1),
-(16814, 16815, 2),
-(16814, 16816, 3),
-(16814, 16817, 4),
-(16814, 16818, 5),
- -- Static Shock
-(51525, 51525, 1),
-(51525, 51526, 2),
-(51525, 51527, 3),
- -- Steady Shot
-(56641, 56641, 1),
-(56641, 34120, 2),
-(56641, 49051, 3),
-(56641, 49052, 4),
- -- Sting
-(56626, 56626, 1),
-(56626, 56627, 2),
-(56626, 56628, 3),
-(56626, 56629, 4),
-(56626, 56630, 5),
-(56626, 56631, 6),
- -- Stoicism
-(31844, 31844, 1),
-(31844, 31845, 2),
-(31844, 53519, 3),
- -- Stoneclaw Totem
-(5730, 5730, 1),
-(5730, 6390, 2),
-(5730, 6391, 3),
-(5730, 6392, 4),
-(5730, 10427, 5),
-(5730, 10428, 6),
-(5730, 25525, 7),
-(5730, 58580, 8),
-(5730, 58581, 9),
-(5730, 58582, 10),
- -- Stoneclaw Totem Passive
-(5728, 5728, 1),
-(5728, 6397, 2),
-(5728, 6398, 3),
-(5728, 6399, 4),
-(5728, 10425, 5),
-(5728, 10426, 6),
-(5728, 25513, 7),
-(5728, 58583, 8),
-(5728, 58584, 9),
-(5728, 58585, 10),
- -- Stoneskin Totem
-(8073, 8073, 1),
-(8073, 38115, 2),
- -- Stoneskin Totem
-(8071, 8071, 1),
-(8071, 8154, 2),
-(8071, 8155, 3),
-(8071, 10406, 4),
-(8071, 10407, 5),
-(8071, 10408, 6),
-(8071, 25508, 7),
-(8071, 25509, 8),
-(8071, 58751, 9),
-(8071, 58753, 10),
- -- Storm, Earth and Fire
-(51483, 51483, 1),
-(51483, 51485, 2),
-(51483, 51486, 3),
- -- Strength
-(8118, 8118, 1),
-(8118, 8119, 2),
-(8118, 8120, 3),
-(8118, 12179, 4),
-(8118, 33082, 5),
-(8118, 43199, 6),
-(8118, 58448, 7),
-(8118, 58449, 8),
- -- Strength of Arms
-(46865, 46865, 1),
-(46865, 46866, 2),
- -- Strength of Earth Totem
-(8075, 8075, 1),
-(8075, 8160, 2),
-(8075, 8161, 3),
-(8075, 10442, 4),
-(8075, 25361, 5),
-(8075, 25528, 6),
-(8075, 57622, 7),
-(8075, 58643, 8),
- -- Student of the Mind
-(44397, 44397, 1),
-(44397, 44398, 2),
-(44397, 44399, 3),
- -- Stunning Blast
-(5648, 5648, 1),
-(5648, 5649, 2),
- -- Stunning Blow
-(5726, 5726, 1),
-(5726, 5727, 2),
- -- Subtlety
-(17118, 17118, 1),
-(17118, 17119, 2),
-(17118, 17120, 3),
- -- Subversion
-(48997, 48997, 1),
-(48997, 49490, 2),
-(48997, 49491, 3),
- -- Sudden Death
-(29723, 29723, 1),
-(29723, 29725, 2),
-(29723, 29724, 3),
- -- Sudden Doom
-(49018, 49018, 1),
-(49018, 49529, 2),
-(49018, 49530, 3),
- -- Suffering
-(17735, 17735, 1),
-(17735, 17750, 2),
-(17735, 17751, 3),
-(17735, 17752, 4),
-(17735, 27271, 5),
-(17735, 33701, 6),
-(17735, 47989, 7),
-(17735, 47990, 8),
- -- Suppression
-(18174, 18174, 1),
-(18174, 18175, 2),
-(18174, 18176, 3),
- -- Surefooted
-(19290, 19290, 1),
-(19290, 19294, 2),
-(19290, 24283, 3),
- -- Survival Instincts
-(34494, 34494, 1),
-(34494, 34496, 2),
- -- Survival of the Fittest
-(33853, 33853, 1),
-(33853, 33855, 2),
-(33853, 33856, 3),
- -- Survival Tactics
-(19286, 19286, 1),
-(19286, 19287, 2),
- -- Survivalist
-(19255, 19255, 1),
-(19255, 19256, 2),
-(19255, 19257, 3),
-(19255, 19258, 4),
-(19255, 19259, 5),
- -- Swift Retribution
-(53379, 53379, 1),
-(53379, 53484, 2),
-(53379, 53648, 3),
- -- Swipe
-(50256, 50256, 1),
-(50256, 53526, 2),
-(50256, 53528, 3),
-(50256, 53529, 4),
-(50256, 53532, 5),
-(50256, 53533, 6),
- -- Swipe (Bear)
-(779, 779, 1),
-(779, 780, 2),
-(779, 769, 3),
-(779, 9754, 4),
-(779, 9908, 5),
-(779, 26997, 6),
-(779, 48561, 7),
-(779, 48562, 8),
- -- Sword and Board
-(46951, 46951, 1),
-(46951, 46952, 2),
-(46951, 46953, 3),
- -- Sword Specialization
-(12281, 12281, 1),
-(12281, 12812, 2),
-(12281, 12813, 3),
-(12281, 12814, 4),
-(12281, 12815, 5),
- -- T.N.T.
-(56333, 56333, 1),
-(56333, 56336, 2),
-(56333, 56337, 3),
- -- Tactical Mastery
-(12295, 12295, 1),
-(12295, 12676, 2),
-(12295, 12677, 3),
- -- Tailoring
-(3908, 3908, 1),
-(3908, 3909, 2),
-(3908, 3910, 3),
-(3908, 12180, 4),
-(3908, 26790, 5),
-(3908, 51309, 6),
- -- Taste for Blood
-(56636, 56636, 1),
-(56636, 56637, 2),
-(56636, 56638, 3),
- -- Tendon Rip
-(50271, 50271, 1),
-(50271, 53571, 2),
-(50271, 53572, 3),
-(50271, 53573, 4),
-(50271, 53574, 5),
-(50271, 53575, 6),
- -- Test of Faith
-(47558, 47558, 1),
-(47558, 47559, 2),
-(47558, 47560, 3),
- -- Thick Hide
-(19609, 19609, 1),
-(19609, 19610, 2),
-(19609, 19612, 3),
- -- Thick Hide
-(16929, 16929, 1),
-(16929, 16930, 2),
-(16929, 16931, 3),
- -- Thorns
-(467, 467, 1),
-(467, 782, 2),
-(467, 1075, 3),
-(467, 8914, 4),
-(467, 9756, 5),
-(467, 9910, 6),
-(467, 26992, 7),
-(467, 53307, 8),
- -- Threat of Thassarian
-(65661, 65661, 1),
-(65661, 66191, 2),
-(65661, 66192, 3),
- -- Thrill of the Hunt
-(34497, 34497, 1),
-(34497, 34498, 2),
-(34497, 34499, 3),
- -- Throwing Specialization
-(5952, 5952, 1),
-(5952, 51679, 2),
- -- Thunder Clap
-(6343, 6343, 1),
-(6343, 8198, 2),
-(6343, 8204, 3),
-(6343, 8205, 4),
-(6343, 11580, 5),
-(6343, 11581, 6),
-(6343, 25264, 7),
-(6343, 47501, 8),
-(6343, 47502, 9),
- -- Thundering Strikes
-(16255, 16255, 1),
-(16255, 16302, 2),
-(16255, 16303, 3),
-(16255, 16304, 4),
-(16255, 16305, 5),
- -- Thunderstorm
-(51490, 51490, 1),
-(51490, 59156, 2),
-(51490, 59158, 3),
-(51490, 59159, 4),
- -- Tidal Focus
-(16179, 16179, 1),
-(16179, 16214, 2),
-(16179, 16215, 3),
-(16179, 16216, 4),
-(16179, 16217, 5),
- -- Tidal Mastery
-(16194, 16194, 1),
-(16194, 16218, 2),
-(16194, 16219, 3),
-(16194, 16220, 4),
-(16194, 16221, 5),
- -- Tidal Waves
-(51562, 51562, 1),
-(51562, 51563, 2),
-(51562, 51564, 3),
-(51562, 51565, 4),
-(51562, 51566, 5),
- -- Tiger's Fury
-(5217, 5217, 1),
-(5217, 6793, 2),
-(5217, 9845, 3),
-(5217, 9846, 4),
-(5217, 50212, 5),
-(5217, 50213, 6),
- -- Torment
-(3716, 3716, 1),
-(3716, 7809, 2),
-(3716, 7810, 3),
-(3716, 7811, 4),
-(3716, 11774, 5),
-(3716, 11775, 6),
-(3716, 27270, 7),
-(3716, 47984, 8),
- -- Torment the Weak
-(29447, 29447, 1),
-(29447, 55339, 2),
-(29447, 55340, 3),
- -- Torture
-(47263, 47263, 1),
-(47263, 47264, 2),
-(47263, 47265, 3),
- -- Totem of Wrath
-(30706, 30706, 1),
-(30706, 57720, 2),
-(30706, 57721, 3),
-(30706, 57722, 4),
- -- Totemic Focus
-(16173, 16173, 1),
-(16173, 16222, 2),
-(16173, 16223, 3),
-(16173, 16224, 4),
-(16173, 16225, 5),
- -- Touched by the Light
-(53590, 53590, 1),
-(53590, 53591, 2),
-(53590, 53592, 3),
- -- Toughness
-(53120, 53120, 1),
-(53120, 53121, 2),
-(53120, 53122, 3),
-(53120, 53123, 4),
-(53120, 53124, 5),
-(53120, 53040, 6),
- -- Toughness
-(12299, 12299, 1),
-(12299, 12761, 2),
-(12299, 12762, 3),
-(12299, 12763, 4),
-(12299, 12764, 5),
- -- Toughness
-(20143, 20143, 1),
-(20143, 20144, 2),
-(20143, 20145, 3),
-(20143, 20146, 4),
-(20143, 20147, 5),
- -- Toughness
-(16252, 16252, 1),
-(16252, 16306, 2),
-(16252, 16307, 3),
-(16252, 16308, 4),
-(16252, 16309, 5),
- -- Toughness
-(49042, 49042, 1),
-(49042, 49786, 2),
-(49042, 49787, 3),
-(49042, 49788, 4),
-(49042, 49789, 5),
- -- Tranquil Spirit
-(24968, 24968, 1),
-(24968, 24969, 2),
-(24968, 24970, 3),
-(24968, 24971, 4),
-(24968, 24972, 5),
- -- Trap Mastery
-(19376, 19376, 1),
-(19376, 63457, 2),
-(19376, 63458, 3),
- -- Tundra Stalker
-(49202, 49202, 1),
-(49202, 50127, 2),
-(49202, 50128, 3),
-(49202, 50129, 4),
-(49202, 50130, 5),
- -- Turn the Tables
-(51627, 51627, 1),
-(51627, 51628, 2),
-(51627, 51629, 3),
- -- Twin Disciplines
-(47586, 47586, 1),
-(47586, 47587, 2),
-(47586, 47588, 3),
-(47586, 52802, 4),
-(47586, 52803, 5),
- -- Twisted Faith
-(47573, 47573, 1),
-(47573, 47577, 2),
-(47573, 47578, 3),
-(47573, 51166, 4),
-(47573, 51167, 5),
- -- Two-Handed Weapon Specialization
-(12163, 12163, 1),
-(12163, 12711, 2),
-(12163, 12712, 3),
- -- Two-Handed Weapon Specialization
-(20111, 20111, 1),
-(20111, 20112, 2),
-(20111, 20113, 3),
- -- Two-Handed Weapon Specialization
-(55107, 55107, 1),
-(55107, 55108, 2),
- -- Unbreakable Will
-(14522, 14522, 1),
-(14522, 14788, 2),
-(14522, 14789, 3),
-(14522, 14790, 4),
-(14522, 14791, 5),
- -- Unending Fury
-(56927, 56927, 1),
-(56927, 56929, 2),
-(56927, 56930, 3),
-(56927, 56931, 4),
-(56927, 56932, 5),
- -- Unholy Command
-(49588, 49588, 1),
-(49588, 49589, 2),
- -- Unholy Power
-(18769, 18769, 1),
-(18769, 18770, 2),
-(18769, 18771, 3),
-(18769, 18772, 4),
-(18769, 18773, 5),
- -- Unleashed Fury
-(19616, 19616, 1),
-(19616, 19617, 2),
-(19616, 19618, 3),
-(19616, 19619, 4),
-(19616, 19620, 5),
- -- Unrelenting Assault
-(46859, 46859, 1),
-(46859, 46860, 2),
- -- Unrelenting Storm
-(30664, 30664, 1),
-(30664, 30665, 2),
-(30664, 30666, 3),
- -- Unstable Affliction
-(30108, 30108, 1),
-(30108, 30404, 2),
-(30108, 30405, 3),
-(30108, 47841, 4),
-(30108, 47843, 5),
- -- Unyielding Faith
-(9453, 9453, 1),
-(9453, 25836, 2),
- -- Vampiric Touch
-(34914, 34914, 1),
-(34914, 34916, 2),
-(34914, 34917, 3),
-(34914, 48159, 4),
-(34914, 48160, 5),
- -- Vanish
-(1856, 1856, 1),
-(1856, 1857, 2),
-(1856, 26889, 3),
- -- Veiled Shadows
-(15274, 15274, 1),
-(15274, 15311, 2),
- -- Vendetta
-(49015, 49015, 1),
-(49015, 50154, 2),
-(49015, 55136, 3),
- -- Vengeance
-(20049, 20049, 1),
-(20049, 20056, 2),
-(20049, 20057, 3),
- -- Vengeance
-(16909, 16909, 1),
-(16909, 16910, 2),
-(16909, 16911, 3),
-(16909, 16912, 4),
-(16909, 16913, 5),
- -- Venom Web Spray
-(54706, 54706, 1),
-(54706, 55505, 2),
-(54706, 55506, 3),
-(54706, 55507, 4),
-(54706, 55508, 5),
-(54706, 55509, 6),
- -- Veteran of the Third War
-(49006, 49006, 1),
-(49006, 49526, 2),
-(49006, 50029, 3),
- -- Vicious Strikes
-(51745, 51745, 1),
-(51745, 51746, 2),
- -- Vile Poisons
-(16513, 16513, 1),
-(16513, 16514, 2),
-(16513, 16515, 3),
- -- Virulence
-(48962, 48962, 1),
-(48962, 49567, 2),
-(48962, 49568, 3),
- -- Vitality
-(31122, 31122, 1),
-(31122, 31123, 2),
-(31122, 61329, 3),
- -- Vitality
-(29140, 29140, 1),
-(29140, 29143, 2),
-(29140, 29144, 3),
- -- Wand Specialization
-(14524, 14524, 1),
-(14524, 14525, 2),
-(14524, 14526, 3),
-(14524, 14527, 4),
-(14524, 14528, 5),
- -- Wandering Plague
-(49217, 49217, 1),
-(49217, 49654, 2),
-(49217, 49655, 3),
- -- Water Shield
-(52127, 52127, 1),
-(52127, 52129, 2),
-(52127, 52131, 3),
-(52127, 52134, 4),
-(52127, 52136, 5),
-(52127, 52138, 6),
-(52127, 24398, 7),
-(52127, 33736, 8),
-(52127, 57960, 9),
- -- Waylay
-(51692, 51692, 1),
-(51692, 51696, 2),
- -- Weapon Expertise
-(30919, 30919, 1),
-(30919, 30920, 2),
- -- Weapon Mastery
-(20504, 20504, 1),
-(20504, 20505, 2),
- -- Weapon Mastery
-(29082, 29082, 1),
-(29082, 29084, 2),
-(29082, 29086, 3),
- -- Wild Growth
-(48438, 48438, 1),
-(48438, 53248, 2),
-(48438, 53249, 3),
-(48438, 53251, 4),
- -- Wild Hunt
-(62758, 62758, 1),
-(62758, 62762, 2),
- -- Wild Quiver
-(53215, 53215, 1),
-(53215, 53216, 2),
-(53215, 53217, 3),
- -- Windfury Weapon
-(8232, 8232, 1),
-(8232, 8235, 2),
-(8232, 10486, 3),
-(8232, 16362, 4),
-(8232, 25505, 5),
-(8232, 58801, 6),
-(8232, 58803, 7),
-(8232, 58804, 8),
- -- Winter's Chill
-(11180, 11180, 1),
-(11180, 28592, 2),
-(11180, 28593, 3),
- -- World in Flames
-(11108, 11108, 1),
-(11108, 12349, 2),
-(11108, 12350, 3),
- -- Wrath
-(5176, 5176, 1),
-(5176, 5177, 2),
-(5176, 5178, 3),
-(5176, 5179, 4),
-(5176, 5180, 5),
-(5176, 6780, 6),
-(5176, 8905, 7),
-(5176, 9912, 8),
-(5176, 26984, 9),
-(5176, 26985, 10),
-(5176, 48459, 11),
-(5176, 48461, 12),
- -- Wrath of Cenarius
-(33603, 33603, 1),
-(33603, 33604, 2),
-(33603, 33605, 3),
-(33603, 33606, 4),
-(33603, 33607, 5),
- -- Wrecking Crew
-(46867, 46867, 1),
-(46867, 56611, 2),
-(46867, 56612, 3),
-(46867, 56613, 4),
-(46867, 56614, 5),
- -- Arcane Brilliance
-(23030, 23030, 1),
-(23030, 27394, 2),
- -- Arcane Explosion
-(1467, 1467, 1),
-(1467, 8440, 2),
-(1467, 8441, 3),
-(1467, 8442, 4),
-(1467, 10203, 5),
-(1467, 10204, 6),
-(1467, 27380, 7),
-(1467, 27381, 8),
- -- Arcane Intellect
-(1472, 1472, 1),
-(1472, 1473, 2),
-(1472, 1474, 3),
-(1472, 1475, 4),
-(1472, 10158, 5),
-(1472, 27393, 6),
-(1472, 42999, 7),
- -- Arcane Missiles
-(5143, 5143, 1),
-(5143, 5144, 2),
-(5143, 5145, 3),
-(5143, 8416, 4),
-(5143, 8417, 5),
-(5143, 10211, 6),
-(5143, 10212, 7),
-(5143, 25345, 8),
-(5143, 27075, 9),
-(5143, 38699, 10),
-(5143, 38704, 11),
-(5143, 42843, 12),
-(5143, 42846, 13),
- -- Blessed Recovery
-(27811, 27811, 1),
-(27811, 27815, 2),
-(27811, 27816, 3),
- -- Blessed Recovery
-(27813, 27813, 1),
-(27813, 27817, 2),
-(27813, 27818, 3),
- -- Blessed Resilience
-(33142, 33142, 1),
-(33142, 33145, 2),
-(33142, 33146, 3),
- -- Blizzard
-(1196, 1196, 1),
-(1196, 6142, 2),
-(1196, 8428, 3),
-(1196, 10188, 4),
-(1196, 10189, 5),
-(1196, 10190, 6),
-(1196, 27384, 7),
- -- Blizzard
-(42208, 42208, 1),
-(42208, 42209, 2),
-(42208, 42210, 3),
-(42208, 42211, 4),
-(42208, 42212, 5),
-(42208, 42213, 6),
-(42208, 42198, 7),
-(42208, 42937, 8),
-(42208, 42938, 9),
- -- Blizzard
-(10, 10, 1),
-(10, 6141, 2),
-(10, 8427, 3),
-(10, 10185, 4),
-(10, 10186, 5),
-(10, 10187, 6),
-(10, 27085, 7),
-(10, 42939, 8),
-(10, 42940, 9),
- -- Chain Lightning
-(421, 421, 1),
-(421, 930, 2),
-(421, 2860, 3),
-(421, 10605, 4),
-(421, 25439, 5),
-(421, 25442, 6),
-(421, 49270, 7),
-(421, 49271, 8),
- -- Chain Lightning
-(45297, 45297, 1),
-(45297, 45298, 2),
-(45297, 45299, 3),
-(45297, 45300, 4),
-(45297, 45301, 5),
-(45297, 45302, 6),
-(45297, 49268, 7),
-(45297, 49269, 8),
- -- Charge
-(7370, 7370, 1),
-(7370, 26184, 2),
-(7370, 26185, 3),
-(7370, 26186, 4),
-(7370, 26202, 5),
-(7370, 28343, 6),
- -- Consume Shadows
-(17776, 17776, 1),
-(17776, 17855, 2),
-(17776, 17856, 3),
-(17776, 17857, 4),
-(17776, 17859, 5),
-(17776, 17860, 6),
- -- Consume Shadows
-(20387, 20387, 1),
-(20387, 20388, 2),
-(20387, 20389, 3),
-(20387, 20390, 4),
-(20387, 20391, 5),
-(20387, 20392, 6),
-(20387, 27491, 7),
-(20387, 48003, 8),
-(20387, 48004, 9),
- -- Cower
-(1747, 1747, 1),
-(1747, 1748, 2),
-(1747, 1749, 3),
-(1747, 1750, 4),
-(1747, 1751, 5),
-(1747, 16698, 6),
-(1747, 27346, 7),
- -- Echoes of Lordaeron
-(6966, 6966, 1),
-(6966, 30880, 2),
-(6966, 30683, 3),
-(6966, 30682, 4),
-(6966, 29520, 5),
- -- Echoes of Lordaeron
-(6964, 6964, 1),
-(6964, 11413, 2),
-(6964, 11414, 3),
-(6964, 11415, 4),
-(6964, 1386, 5),
- -- Eye for an Eye
-(9799, 9799, 1),
-(9799, 25988, 2),
- -- Fire Nova
-(1535, 1535, 1),
-(1535, 8498, 2),
-(1535, 8499, 3),
-(1535, 11314, 4),
-(1535, 11315, 5),
-(1535, 25546, 6),
-(1535, 25547, 7),
-(1535, 61649, 8),
-(1535, 61657, 9),
- -- Fire Nova
-(8349, 8349, 1),
-(8349, 8502, 2),
-(8349, 8503, 3),
-(8349, 11306, 4),
-(8349, 11307, 5),
-(8349, 25535, 6),
-(8349, 25537, 7),
-(8349, 61650, 8),
-(8349, 61654, 9),
- -- Fire Protection
-(7230, 7230, 1),
-(7230, 7231, 2),
-(7230, 7232, 3),
-(7230, 7233, 4),
-(7230, 7234, 5),
- -- Fire Resistance
-(24440, 24440, 1),
-(24440, 24441, 2),
-(24440, 24463, 3),
-(24440, 24464, 4),
-(24440, 27351, 5),
- -- Fire Resistance
-(8185, 8185, 1),
-(8185, 10534, 2),
-(8185, 10535, 3),
-(8185, 25562, 4),
-(8185, 58738, 5),
-(8185, 58740, 6),
- -- Fire Shield
-(2949, 2949, 1),
-(2949, 8318, 2),
-(2949, 8319, 3),
-(2949, 11772, 4),
-(2949, 11773, 5),
-(2949, 27486, 6),
- -- Fire Shield
-(20322, 20322, 1),
-(20322, 20323, 2),
-(20322, 20324, 3),
-(20322, 20326, 4),
-(20322, 20327, 5),
-(20322, 27489, 6),
-(20322, 47998, 7),
- -- Flameblade
-(7829, 7829, 1),
-(7829, 7874, 2),
-(7829, 7875, 3),
- -- Flameblade
-(7806, 7806, 1),
-(7806, 7807, 2),
-(7806, 7808, 3),
- -- Flurry
-(12319, 12319, 1),
-(12319, 12971, 2),
-(12319, 12972, 3),
-(12319, 12973, 4),
-(12319, 12974, 5),
- -- Flurry
-(12966, 12966, 1),
-(12966, 12967, 2),
-(12966, 12968, 3),
-(12966, 12969, 4),
-(12966, 12970, 5),
- -- Focused Will
-(45234, 45234, 1),
-(45234, 45243, 2),
-(45234, 45244, 3),
- -- Focused Will
-(45237, 45237, 1),
-(45237, 45241, 2),
-(45237, 45242, 3),
- -- Frost Nova
-(1194, 1194, 1),
-(1194, 1225, 2),
-(1194, 6132, 3),
-(1194, 10231, 4),
-(1194, 27387, 5),
- -- Frost Protection
-(7240, 7240, 1),
-(7240, 7236, 2),
-(7240, 7238, 3),
-(7240, 7237, 4),
-(7240, 7239, 5),
- -- Frost Resistance
-(24475, 24475, 1),
-(24475, 24476, 2),
-(24475, 24477, 3),
-(24475, 24478, 4),
-(24475, 27352, 5),
- -- Frost Resistance
-(8182, 8182, 1),
-(8182, 10476, 2),
-(8182, 10477, 3),
-(8182, 25559, 4),
-(8182, 58742, 5),
-(8182, 58744, 6),
- -- Frostbrand Attack
-(8034, 8034, 1),
-(8034, 8037, 2),
-(8034, 10458, 3),
-(8034, 16352, 4),
-(8034, 16353, 5),
-(8034, 25501, 6),
-(8034, 58797, 7),
-(8034, 58798, 8),
-(8034, 58799, 9),
- -- Healing Stream
-(5672, 5672, 1),
-(5672, 6371, 2),
-(5672, 6372, 3),
-(5672, 10460, 4),
-(5672, 10461, 5),
-(5672, 25566, 6),
-(5672, 58763, 7),
-(5672, 58764, 8),
-(5672, 58765, 9),
- -- Holy Nova
-(15237, 15237, 1),
-(15237, 15430, 2),
-(15237, 15431, 3),
-(15237, 27799, 4),
-(15237, 27800, 5),
-(15237, 27801, 6),
-(15237, 25331, 7),
-(15237, 48077, 8),
-(15237, 48078, 9),
- -- Holy Nova
-(23455, 23455, 1),
-(23455, 23458, 2),
-(23455, 23459, 3),
-(23455, 27803, 4),
-(23455, 27804, 5),
-(23455, 27805, 6),
-(23455, 25329, 7),
-(23455, 48075, 8),
-(23455, 48076, 9),
- -- Holy Protection
-(7245, 7245, 1),
-(7245, 7246, 2),
-(7245, 7247, 3),
-(7245, 7248, 4),
-(7245, 7249, 5),
-(7245, 17545, 6),
- -- Holy Shock
-(20473, 20473, 1),
-(20473, 20929, 2),
-(20473, 20930, 3),
-(20473, 27174, 4),
-(20473, 33072, 5),
-(20473, 48824, 6),
-(20473, 48825, 7),
- -- Holy Shock
-(25912, 25912, 1),
-(25912, 25911, 2),
-(25912, 25902, 3),
-(25912, 27176, 4),
-(25912, 33073, 5),
-(25912, 48822, 6),
-(25912, 48823, 7),
- -- Holy Shock
-(25914, 25914, 1),
-(25914, 25913, 2),
-(25914, 25903, 3),
-(25914, 27175, 4),
-(25914, 33074, 5),
-(25914, 48820, 6),
-(25914, 48821, 7),
- -- Hurricane
-(16914, 16914, 1),
-(16914, 17401, 2),
-(16914, 17402, 3),
-(16914, 27012, 4),
-(16914, 48467, 5),
- -- Hurricane
-(42231, 42231, 1),
-(42231, 42232, 2),
-(42231, 42233, 3),
-(42231, 42230, 4),
-(42231, 48466, 5),
- -- Immolation Trap
-(13795, 13795, 1),
-(13795, 14302, 2),
-(13795, 14303, 3),
-(13795, 14304, 4),
-(13795, 14305, 5),
-(13795, 27023, 6),
-(13795, 49055, 7),
-(13795, 49056, 8),
- -- Impact
-(11103, 11103, 1),
-(11103, 12357, 2),
-(11103, 12358, 3),
- -- Improved Mend Pet
-(19572, 19572, 1),
-(19572, 19573, 2),
- -- Infusion of Light
-(53569, 53569, 1),
-(53569, 53576, 2),
- -- Initiative
-(13976, 13976, 1),
-(13976, 13979, 2),
-(13976, 13980, 3),
- -- Intercept
-(30154, 30154, 1),
-(30154, 30199, 2),
-(30154, 30200, 3),
- -- Intercept
-(30153, 30153, 1),
-(30153, 30195, 2),
-(30153, 30197, 3),
-(30153, 47995, 4),
- -- Intercept
-(30151, 30151, 1),
-(30151, 30194, 2),
-(30151, 30198, 3),
-(30151, 47996, 4),
- -- Lash of Pain
-(7876, 7876, 1),
-(7876, 7877, 2),
-(7876, 7878, 3),
-(7876, 11781, 4),
-(7876, 11782, 5),
-(7876, 11783, 6),
- -- Lay on Hands
-(20233, 20233, 1),
-(20233, 20236, 2),
- -- Lay on Hands
-(17233, 17233, 1),
-(17233, 9257, 2),
- -- Lightning Bolt
-(403, 403, 1),
-(403, 529, 2),
-(403, 548, 3),
-(403, 915, 4),
-(403, 943, 5),
-(403, 6041, 6),
-(403, 10391, 7),
-(403, 10392, 8),
-(403, 15207, 9),
-(403, 15208, 10),
-(403, 25448, 11),
-(403, 25449, 12),
-(403, 49237, 13),
-(403, 49238, 14),
- -- Lightning Bolt
-(45284, 45284, 1),
-(45284, 45286, 2),
-(45284, 45287, 3),
-(45284, 45288, 4),
-(45284, 45289, 5),
-(45284, 45290, 6),
-(45284, 45291, 7),
-(45284, 45292, 8),
-(45284, 45293, 9),
-(45284, 45294, 10),
-(45284, 45295, 11),
-(45284, 45296, 12),
-(45284, 49239, 13),
-(45284, 49240, 14),
- -- Lightning Shield
-(324, 324, 1),
-(324, 325, 2),
-(324, 905, 3),
-(324, 945, 4),
-(324, 8134, 5),
-(324, 10431, 6),
-(324, 10432, 7),
-(324, 25469, 8),
-(324, 25472, 9),
-(324, 49280, 10),
-(324, 49281, 11),
- -- Lightning Shield
-(26364, 26364, 1),
-(26364, 26365, 2),
-(26364, 26366, 3),
-(26364, 26367, 4),
-(26364, 26369, 5),
-(26364, 26370, 6),
-(26364, 26363, 7),
-(26364, 26371, 8),
-(26364, 26372, 9),
-(26364, 49278, 10),
-(26364, 49279, 11),
- -- Living Bomb
-(44457, 44457, 1),
-(44457, 55359, 2),
-(44457, 55360, 3),
- -- Living Bomb
-(44461, 44461, 1),
-(44461, 55361, 2),
-(44461, 55362, 3),
- -- Mind Sear
-(48045, 48045, 1),
-(48045, 53023, 2),
- -- Mind Sear
-(49821, 49821, 1),
-(49821, 53022, 2),
- -- Molten Armor
-(34913, 34913, 1),
-(34913, 43043, 2),
-(34913, 43044, 3),
- -- Molten Armor
-(30482, 30482, 1),
-(30482, 43045, 2),
-(30482, 43046, 3),
- -- Nature Protection
-(7250, 7250, 1),
-(7250, 7251, 2),
-(7250, 7252, 3),
-(7250, 7253, 4),
-(7250, 7254, 5),
- -- Nature Resistance
-(24494, 24494, 1),
-(24494, 24511, 2),
-(24494, 24512, 3),
-(24494, 24513, 4),
-(24494, 27354, 5),
- -- Nature Resistance
-(10596, 10596, 1),
-(10596, 10598, 2),
-(10596, 10599, 3),
-(10596, 25573, 4),
-(10596, 58748, 5),
-(10596, 58750, 6),
- -- On a Pale Horse
-(49146, 49146, 1),
-(49146, 51267, 2),
- -- Penance
-(47540, 47540, 1),
-(47540, 53005, 2),
-(47540, 53006, 3),
-(47540, 53007, 4),
- -- Penance
-(47750, 47750, 1),
-(47750, 52983, 2),
-(47750, 52984, 3),
-(47750, 52985, 4),
- -- Penance
-(47666, 47666, 1),
-(47666, 52998, 2),
-(47666, 52999, 3),
-(47666, 53000, 4),
- -- Plague Strike
-(59133, 59133, 1),
-(59133, 66988, 2),
-(59133, 66989, 3),
-(59133, 66990, 4),
-(59133, 66991, 5),
-(59133, 66992, 6),
- -- Prowl
-(24451, 24451, 1),
-(24451, 24454, 2),
-(24451, 24455, 3),
- -- Rain of Fire
-(42223, 42223, 1),
-(42223, 42224, 2),
-(42223, 42225, 3),
-(42223, 42226, 4),
-(42223, 42218, 5),
-(42223, 47817, 6),
-(42223, 47818, 7),
- -- Rain of Fire
-(5740, 5740, 1),
-(5740, 6219, 2),
-(5740, 11677, 3),
-(5740, 11678, 4),
-(5740, 27212, 5),
-(5740, 47819, 6),
-(5740, 47820, 7),
- -- Sacrifice
-(7885, 7885, 1),
-(7885, 19439, 2),
-(7885, 19444, 3),
-(7885, 19445, 4),
-(7885, 19446, 5),
-(7885, 19447, 6),
- -- Sacrifice
-(20381, 20381, 1),
-(20381, 20382, 2),
-(20381, 20383, 3),
-(20381, 20384, 4),
-(20381, 20385, 5),
-(20381, 20386, 6),
-(20381, 27492, 7),
-(20381, 48001, 8),
-(20381, 48002, 9),
- -- Safeguard
-(46945, 46945, 1),
-(46945, 46949, 2),
- -- Safeguard
-(46946, 46946, 1),
-(46946, 46947, 2),
- -- Seed of Corruption
-(27285, 27285, 1),
-(27285, 47833, 2),
-(27285, 47834, 3),
- -- Seed of Corruption
-(27243, 27243, 1),
-(27243, 47835, 2),
-(27243, 47836, 3),
- -- Shadow Protection
-(7235, 7235, 1),
-(7235, 7241, 2),
-(7235, 7242, 3),
-(7235, 7243, 4),
-(7235, 7244, 5),
- -- Shadow Resistance
-(24490, 24490, 1),
-(24490, 24514, 2),
-(24490, 24515, 3),
-(24490, 24516, 4),
-(24490, 27353, 5),
- -- Soothing Kiss
-(6362, 6362, 1),
-(6362, 7879, 2),
-(6362, 11786, 3),
-(6362, 11787, 4),
- -- Soothing Kiss
-(20403, 20403, 1),
-(20403, 20404, 2),
-(20403, 20405, 3),
-(20403, 20406, 4),
-(20403, 27494, 5),
- -- Spell Lock
-(19648, 19648, 1),
-(19648, 19650, 2),
- -- Spell Lock
-(20433, 20433, 1),
-(20433, 20434, 2),
- -- Starfall
-(50286, 50286, 1),
-(50286, 53196, 2),
-(50286, 53197, 3),
-(50286, 53198, 4),
- -- Starfall
-(50294, 50294, 1),
-(50294, 53188, 2),
-(50294, 53189, 3),
-(50294, 53190, 4),
- -- Starfall
-(50288, 50288, 1),
-(50288, 53191, 2),
-(50288, 53194, 3),
-(50288, 53195, 4),
- -- Suffering
-(17736, 17736, 1),
-(17736, 17753, 2),
-(17736, 17754, 3),
-(17736, 17755, 4),
- -- Suffering
-(20393, 20393, 1),
-(20393, 20394, 2),
-(20393, 20395, 3),
-(20393, 20396, 4),
-(20393, 27500, 5),
-(20393, 33703, 6),
-(20393, 48005, 7),
-(20393, 48006, 8),
- -- Surge of Light
-(33150, 33150, 1),
-(33150, 33154, 2),
- -- Tainted Blood
-(19661, 19661, 1),
-(19661, 19662, 2),
-(19661, 19663, 3),
-(19661, 19664, 4),
- -- Tainted Blood
-(20429, 20429, 1),
-(20429, 20430, 2),
-(20429, 20431, 3),
-(20429, 20432, 4),
-(20429, 27497, 5),
- -- The Art of War
-(53486, 53486, 1),
-(53486, 53488, 2),
- -- Thick Skin
-(5364, 5364, 1),
-(5364, 5368, 2),
-(5364, 5369, 3),
-(5364, 5370, 4),
- -- Thick Skin
-(5363, 5363, 1),
-(5363, 5365, 2),
-(5363, 5366, 3),
-(5363, 5367, 4),
- -- Torment
-(7881, 7881, 1),
-(7881, 7882, 2),
-(7881, 7883, 3),
-(7881, 7884, 4),
-(7881, 11776, 5),
-(7881, 11777, 6),
- -- Tough Shell
-(4112, 4112, 1),
-(4112, 4113, 2),
-(4112, 4115, 3),
-(4112, 4114, 4),
- -- Tough Shell
-(4107, 4107, 1),
-(4107, 4108, 2),
-(4107, 4109, 3),
-(4107, 4111, 4),
- -- Tranquility
-(740, 740, 1),
-(740, 8918, 2),
-(740, 9862, 3),
-(740, 9863, 4),
-(740, 26983, 5),
-(740, 48446, 6),
-(740, 48447, 7),
- -- Tranquility
-(44203, 44203, 1),
-(44203, 44205, 2),
-(44203, 44206, 3),
-(44203, 44207, 4),
-(44203, 44208, 5),
-(44203, 48444, 6),
-(44203, 48445, 7),
- -- Typhoon
-(61391, 61391, 1),
-(61391, 61390, 2),
-(61391, 61388, 3),
-(61391, 61387, 4),
-(61391, 53227, 5),
- -- Typhoon
-(50516, 50516, 1),
-(50516, 53223, 2),
-(50516, 53225, 3),
-(50516, 53226, 4),
-(50516, 61384, 5),
- -- Unfair Advantage
-(51675, 51675, 1),
-(51675, 51677, 2),
- -- Unfair Advantage
-(51672, 51672, 1),
-(51672, 51674, 2),
- -- Unleashed Rage
-(30802, 30802, 1),
-(30802, 30808, 2),
-(30802, 30809, 3),
- -- Vindication
-(9452, 9452, 1),
-(9452, 26016, 2),
- -- Vindication
-(67, 67, 1),
-(67, 26017, 2),
- -- Volley
-(42243, 42243, 1),
-(42243, 42244, 2),
-(42243, 42245, 3),
-(42243, 42234, 4),
-(42243, 58432, 5),
-(42243, 58433, 6),
- -- Volley
-(1510, 1510, 1),
-(1510, 14294, 2),
-(1510, 14295, 3),
-(1510, 27022, 4),
-(1510, 58431, 5),
-(1510, 58434, 6),
- -- Will of the Necropolis
-(52284, 52284, 1),
-(52284, 52285, 2),
-(52284, 52286, 3),
- -- Will of the Necropolis
-(49189, 49189, 1),
-(49189, 50149, 2),
-(49189, 50150, 3),
- -- Wyvern Sting
-(19386, 19386, 1),
-(19386, 24132, 2),
-(19386, 24133, 3),
-(19386, 27068, 4),
-(19386, 49011, 5),
-(19386, 49012, 6),
- -- First Aid
-(746, 746, 1),
-(746, 1159, 2),
-(746, 3267, 3),
-(746, 3268, 4),
-(746, 7926, 5),
-(746, 7927, 6),
-(746, 10838, 7),
-(746, 10839, 8),
-(746, 18608, 9),
-(746, 18610, 10),
-(746, 27030, 11),
-(746, 27031, 12),
-(746, 45543, 13),
-(746, 51827, 14),
-(746, 45544, 15),
-(746, 51803, 16),
- -- Frost Strike
-(49143, 49143, 1),
-(49143, 51416, 2),
-(49143, 51417, 3),
-(49143, 51418, 4),
-(49143, 51419, 5),
-(49143, 55268, 6),
- -- Intercept
-(20253, 20253, 1),
-(20253, 20614, 2),
-(20253, 20615, 3),
-(20253, 25273, 4),
-(20253, 25274, 5),
- -- Misery
-(33191, 33191, 1),
-(33191, 33192, 2),
-(33191, 33193, 3),
- -- Misery
-(33196, 33196, 1),
-(33196, 33197, 2),
-(33196, 33198, 3),
- -- Obliterate
-(49020, 49020, 1),
-(49020, 51423, 2),
-(49020, 51424, 3),
-(49020, 51425, 4),
- -- Penance
-(47758, 47758, 1),
-(47758, 53001, 2),
-(47758, 53002, 3),
-(47758, 53003, 4),
- -- Penance
-(47757, 47757, 1),
-(47757, 52986, 2),
-(47757, 52987, 3),
-(47757, 52988, 4),
- -- Savage Rend
-(50498, 50498, 1),
-(50498, 53578, 2),
-(50498, 53579, 3),
-(50498, 53580, 4),
-(50498, 53581, 5),
-(50498, 53582, 6),
- -- Spirit Bond
-(19578, 19578, 1),
-(19578, 20895, 2),
- -- Spirit Bond
-(19579, 19579, 1),
-(19579, 24529, 2),
- -- Stoneskin
-(8072, 8072, 1),
-(8072, 8156, 2),
-(8072, 8157, 3),
-(8072, 10403, 4),
-(8072, 10404, 5),
-(8072, 10405, 6),
-(8072, 25506, 7),
-(8072, 25507, 8),
-(8072, 58752, 9),
-(8072, 58754, 10),
- -- Attack
-(3606, 3606, 1),
-(3606, 6350, 2),
-(3606, 6351, 3),
-(3606, 6352, 4),
-(3606, 10435, 5),
-(3606, 10436, 6),
-(3606, 25530, 7),
-(3606, 58700, 8),
-(3606, 58701, 9),
-(3606, 58702, 10),
- -- Blood Strike
-(45902, 45902, 1),
-(45902, 49926, 2),
-(45902, 49927, 3),
-(45902, 49928, 4),
-(45902, 49929, 5),
-(45902, 49930, 6),
- -- Elemental Devastation
-(30160, 30160, 1),
-(30160, 29179, 2),
-(30160, 29180, 3),
- -- Elemental Devastation
-(30165, 30165, 1),
-(30165, 29177, 2),
-(30165, 29178, 3),
- -- Fishing
-(7620, 7620, 1),
-(7620, 7731, 2),
-(7620, 7732, 3),
-(7620, 18248, 4),
-(7620, 33095, 5),
-(7620, 51294, 6),
- -- Icy Touch
-(45477, 45477, 1),
-(45477, 49896, 2),
-(45477, 49903, 3),
-(45477, 49904, 4),
-(45477, 49909, 5),
- -- Judgements of the Pure
-(53671, 53671, 1),
-(53671, 53673, 2),
-(53671, 54151, 3),
-(53671, 54154, 4),
-(53671, 54155, 5),
- -- Judgements of the Pure
-(53655, 53655, 1),
-(53655, 53656, 2),
-(53655, 53657, 3),
-(53655, 54152, 4),
-(53655, 54153, 5),
- -- Master Tactician
-(34506, 34506, 1),
-(34506, 34507, 2),
-(34506, 34508, 3),
-(34506, 34838, 4),
-(34506, 34839, 5),
- -- Master Tactician
-(34833, 34833, 1),
-(34833, 34834, 2),
-(34833, 34835, 3),
-(34833, 34836, 4),
-(34833, 34837, 5),
- -- Plague Strike
-(45462, 45462, 1),
-(45462, 49917, 2),
-(45462, 49918, 3),
-(45462, 49919, 4),
-(45462, 49920, 5),
-(45462, 49921, 6),
- -- Rapid Killing
-(34948, 34948, 1),
-(34948, 34949, 2),
- -- Rapid Killing
-(35098, 35098, 1),
-(35098, 35099, 2),
- -- Second Wind
-(29841, 29841, 1),
-(29841, 29842, 2),
- -- Second Wind
-(29834, 29834, 1),
-(29834, 29838, 2),
- -- Strength of Earth
-(8076, 8076, 1),
-(8076, 8162, 2),
-(8076, 8163, 3),
-(8076, 10441, 4),
-(8076, 25362, 5),
-(8076, 25527, 6),
-(8076, 57621, 7),
-(8076, 58646, 8),
- -- Trauma
-(46854, 46854, 1),
-(46854, 46855, 2),
- -- Trauma
-(46856, 46856, 1),
-(46856, 46857, 2),
- -- Unbridled Wrath
-(12322, 12322, 1),
-(12322, 12999, 2),
-(12322, 13000, 3),
-(12322, 13001, 4),
-(12322, 13002, 5),
- -- Vanish
-(11327, 11327, 1),
-(11327, 11329, 2),
-(11327, 26888, 3),
- -- Blood Gorged
-(50096, 50096, 1),
-(50096, 50108, 2),
-(50096, 50109, 3),
-(50096, 50110, 4),
-(50096, 50111, 5),
- -- Blood Gorged
-(61274, 61274, 1),
-(61274, 61275, 2),
-(61274, 61276, 3),
-(61274, 61277, 4),
-(61274, 61278, 5),
- -- Blood Gorged
-(61154, 61154, 1),
-(61154, 61155, 2),
-(61154, 61156, 3),
-(61154, 61157, 4),
-(61154, 61158, 5),
- -- Cone of Cold
-(1241, 1241, 1),
-(1241, 8493, 2),
-(1241, 10162, 3),
-(1241, 10163, 4),
-(1241, 10164, 5),
-(1241, 27386, 6),
- -- Flamestrike
-(2124, 2124, 1),
-(2124, 2125, 2),
-(2124, 8425, 3),
-(2124, 8426, 4),
-(2124, 10217, 5),
-(2124, 10218, 6),
-(2124, 27385, 7),
- -- Anesthetic Poison
-(26688, 26688, 1),
-(26688, 57981, 2),
- -- Anesthetic Poison
-(26785, 26785, 1),
-(26785, 57982, 2),
- -- Apprentice Riding
-(33388, 33388, 1),
-(33388, 33391, 2),
-(33388, 34090, 3),
-(33388, 34091, 4),
- -- Primal Fury
-(16958, 16958, 1),
-(16958, 16961, 2),
- -- Primal Fury
-(37116, 37116, 1),
-(37116, 37117, 2),
- -- Nature Resist
-(4548, 4548, 1),
-(4548, 24502, 2),
-(4548, 24503, 3),
-(4548, 24504, 4),
-(4548, 27055, 5),
- -- Instant Poison
-(8680, 8680, 1),
-(8680, 8685, 2),
-(8680, 8689, 3),
-(8680, 11335, 4),
-(8680, 11336, 5),
-(8680, 11337, 6),
-(8680, 26890, 7),
-(8680, 57964, 8),
-(8680, 57965, 9),
- -- Instant Poison
-(8679, 8679, 1),
-(8679, 8686, 2),
-(8679, 8688, 3),
-(8679, 11338, 4),
-(8679, 11339, 5),
-(8679, 11340, 6),
-(8679, 26891, 7),
-(8679, 57967, 8),
-(8679, 57968, 9),
- -- Claw
-(2980, 2980, 1),
-(2980, 2981, 2),
-(2980, 2982, 3),
-(2980, 3667, 4),
-(2980, 2975, 5),
-(2980, 2976, 6),
-(2980, 2977, 7),
-(2980, 3666, 8),
-(2980, 27347, 9),
- -- Mace Specialization
-(12284, 12284, 1),
-(12284, 12701, 2),
-(12284, 12702, 3),
-(12284, 12703, 4),
-(12284, 12704, 5),
- -- Deadly Toxin
-(11539, 11539, 1),
-(11539, 11471, 2),
-(11539, 11470, 3),
-(11539, 11469, 4),
- -- Deadly Poison
-(2818, 2818, 1),
-(2818, 2819, 2),
-(2818, 11353, 3),
-(2818, 11354, 4),
-(2818, 25349, 5),
-(2818, 26968, 6),
-(2818, 27187, 7),
-(2818, 57969, 8),
-(2818, 57970, 9),
- -- Deadly Poison
-(2823, 2823, 1),
-(2823, 2824, 2),
-(2823, 11355, 3),
-(2823, 11356, 4),
-(2823, 25351, 5),
-(2823, 26967, 6),
-(2823, 27186, 7),
-(2823, 57972, 8),
-(2823, 57973, 9),
- -- On a Pale Horse
-(51983, 51983, 1),
-(51983, 51986, 2),
- -- On a Pale Horse
-(51969, 51969, 1),
-(51969, 51970, 2),
- -- Wound Poison
-(13218, 13218, 1),
-(13218, 13222, 2),
-(13218, 13223, 3),
-(13218, 13224, 4),
-(13218, 27189, 5),
-(13218, 57974, 6),
-(13218, 57975, 7),
- -- Wound Poison
-(13219, 13219, 1),
-(13219, 13225, 2),
-(13219, 13226, 3),
-(13219, 13227, 4),
-(13219, 27188, 5),
-(13219, 57977, 6),
-(13219, 57978, 7),
- -- Thunderstomp
-(26094, 26094, 1),
-(26094, 26189, 2),
-(26094, 26190, 3),
-(26094, 27366, 4),
- -- Obliterate
-(66198, 66198, 1),
-(66198, 66972, 2),
-(66198, 66973, 3),
-(66198, 66974, 4),
- -- Frost Strike
-(66196, 66196, 1),
-(66196, 66958, 2),
-(66196, 66959, 3),
-(66196, 66960, 4),
-(66196, 66961, 5),
-(66196, 66962, 6),
- -- Death Strike
-(66188, 66188, 1),
-(66188, 66950, 2),
-(66188, 66951, 3),
-(66188, 66952, 4),
-(66188, 66953, 5),
- -- Fiery Payback
-(44440, 44440, 1),
-(44440, 44441, 2),
- -- Fiery Payback
-(64353, 64353, 1),
-(64353, 64357, 2),
- -- Improved Flash Heal
-(63504, 63504, 1),
-(63504, 63505, 2),
-(63504, 63506, 3),
- -- Elemental Fury
-(16089, 16089, 1),
-(16089, 60184, 2),
-(16089, 60185, 3),
-(16089, 60187, 4),
-(16089, 60188, 5),
- -- Feral Swiftness
-(17002, 17002, 1),
-(17002, 24866, 2),
- -- Master Shapeshifter
-(48411, 48411, 1),
-(48411, 48412, 2),
- -- Nature's Majesty
-(35363, 35363, 1),
-(35363, 35364, 2),
- -- Nature's Grace
-(16880, 16880, 1),
-(16880, 61345, 2),
-(16880, 61346, 3),
- -- Molten Skin
-(63349, 63349, 1),
-(63349, 63350, 2),
-(63349, 63351, 3),
- -- Master Demonologist
-(23785, 23785, 1),
-(23785, 23822, 2),
-(23785, 23823, 3),
-(23785, 23824, 4),
-(23785, 23825, 5),
- -- Death Rune Mastery
-(49467, 49467, 1),
-(49467, 50033, 2),
-(49467, 50034, 3),
- -- Improved Death Strike
-(62905, 62905, 1),
-(62905, 62908, 2),
- -- Desolation
-(66799, 66799, 1),
-(66799, 66814, 2),
-(66799, 66815, 3),
-(66799, 66816, 4),
-(66799, 66817, 5),
- -- Mobility
-(53483, 53483, 1),
-(53483, 53485, 2),
- -- Mobility
-(53554, 53554, 1),
-(53554, 53555, 2),
- -- Arcane Missiles
-(7268, 7268, 1),
-(7268, 7269, 2),
-(7268, 7270, 3),
-(7268, 8419, 4),
-(7268, 8418, 5),
-(7268, 10273, 6),
-(7268, 10274, 7),
-(7268, 25346, 8),
-(7268, 27076, 9),
-(7268, 38700, 10),
-(7268, 38703, 11),
-(7268, 42844, 12),
-(7268, 42845, 13),
- -- Entangling Roots
-(19975, 19975, 1),
-(19975, 19974, 2),
-(19975, 19973, 3),
-(19975, 19972, 4),
-(19975, 19971, 5),
-(19975, 19970, 6),
-(19975, 27010, 7),
-(19975, 53313, 8),
- -- Death Coil
-(47541, 47541, 1),
-(47541, 49892, 2),
-(47541, 49893, 3),
-(47541, 49894, 4),
-(47541, 49895, 5),
- -- Intellect
-(8096, 8096, 1),
-(8096, 8097, 2),
-(8096, 8098, 3),
-(8096, 12176, 4),
-(8096, 33078, 5),
-(8096, 43195, 6),
-(8096, 48099, 7),
-(8096, 48100, 8),
- -- Stamina
-(8099, 8099, 1),
-(8099, 8100, 2),
-(8099, 8101, 3),
-(8099, 12178, 4),
-(8099, 33081, 5),
-(8099, 48101, 6),
-(8099, 48102, 7),
-(8099, 43198, 8),
- -- Mutilate
-(5374, 5374, 1),
-(5374, 34414, 2),
-(5374, 34416, 3),
-(5374, 34419, 4),
-(5374, 48662, 5),
-(5374, 48665, 6),
- -- Mutilate
-(27576, 27576, 1),
-(27576, 34415, 2),
-(27576, 34417, 3),
-(27576, 34418, 4),
-(27576, 48661, 5),
-(27576, 48664, 6),
- -- Immolation trap
-(13797, 13797, 1),
-(13797, 14298, 2),
-(13797, 14299, 3),
-(13797, 14300, 4),
-(13797, 14301, 5),
-(13797, 27024, 6),
-(13797, 49053, 7),
-(13797, 49054, 8),
- -- Sniper Training
-(64418, 64418, 1),
-(64418, 64419, 2),
-(64418, 64420, 3),
- -- Blood Strike
-(66215, 66215, 1),
-(66215, 66975, 2),
-(66215, 66976, 3),
-(66215, 66977, 4),
-(66215, 66978, 5),
-(66215, 66979, 6),
- -- Stoneclaw Totem Effect
-(5729, 5729, 1),
-(5729, 6393, 2),
-(5729, 6394, 3),
-(5729, 6395, 4),
-(5729, 10423, 5),
-(5729, 10424, 6),
-(5729, 25512, 7),
-(5729, 58586, 8),
-(5729, 58587, 9),
-(5729, 58588, 10);
-/*!40000 ALTER TABLE `spell_ranks` ENABLE KEYS */;
-UNLOCK TABLES;
-
---
--- Dumping data for table `spell_target_position`
---
-
-DROP TABLE IF EXISTS `spell_target_position`;
-/*!40101 SET @saved_cs_client = @@character_set_client */;
-/*!40101 SET character_set_client = utf8 */;
-CREATE TABLE `spell_target_position` (
- `id` mediumint(8) unsigned NOT NULL DEFAULT '0' COMMENT 'Identifier',
- `target_map` smallint(5) unsigned NOT NULL DEFAULT '0',
- `target_position_x` float NOT NULL DEFAULT '0',
- `target_position_y` float NOT NULL DEFAULT '0',
- `target_position_z` float NOT NULL DEFAULT '0',
- `target_orientation` float NOT NULL DEFAULT '0',
- PRIMARY KEY (`id`)
-) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Spell System';
-/*!40101 SET character_set_client = @saved_cs_client */;
-
---
--- Dumping data for table `spell_target_position`
---
-
-LOCK TABLES `spell_target_position` WRITE;
-/*!40000 ALTER TABLE `spell_target_position` DISABLE KEYS */;
-/*!40000 ALTER TABLE `spell_target_position` ENABLE KEYS */;
-UNLOCK TABLES;
-
---
--- Table structure for table `spell_threat`
---
-
-DROP TABLE IF EXISTS `spell_threat`;
-/*!40101 SET @saved_cs_client = @@character_set_client */;
-/*!40101 SET character_set_client = utf8 */;
-CREATE TABLE `spell_threat` (
- `entry` mediumint(8) unsigned NOT NULL,
- `Threat` smallint(6) NOT NULL,
- PRIMARY KEY (`entry`)
-) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED;
-/*!40101 SET character_set_client = @saved_cs_client */;
-
---
--- Dumping data for table `spell_threat`
---
-
-LOCK TABLES `spell_threat` WRITE;
-/*!40000 ALTER TABLE `spell_threat` DISABLE KEYS */;
-INSERT INTO `spell_threat` VALUES
-(78,20),
-(284,39),
-(285,59),
-(770,108),
-(1608,78),
-(1672,180),
-(1715,61),
-(6572,155),
-(6574,195),
-(6809,89),
-(7372,101),
-(7373,141),
-(7379,235),
-(7386,100),
-(7405,140),
-(8380,180),
-(8972,118),
-(9745,148),
-(9880,178),
-(9881,207),
-(11556,43),
-(11564,98),
-(11565,118),
-(11566,137),
-(11567,145),
-(11596,220),
-(11597,261),
-(11600,275),
-(11601,315),
-(11775,395),
-(14921,415),
-(17735,200),
-(17750,300),
-(17751,450),
-(17752,600),
-(20736,100),
-(23922,160),
-(23923,190),
-(23924,220),
-(23925,250),
-(24394,580),
-(24583,5),
-(25286,175),
-(25288,355),
-(25289,60),
-(20243,101),
-(30016,101),
-(30022,101),
-(29707,196),
-(30324,220),
-(26996,176),
-(25258,286),
-(30356,323),
-(25269,400),
-(30357,483),
-(29704,230),
-(25225,300),
-(20569,100),
-(25231,130),
-(33745,285),
-(16857,108),
-(6343,17),
-(8198,40),
-(8204,64),
-(8205,96),
-(11580,143),
-(11581,180),
-(25264,215),
-(33878,129),
-(33986,180),
-(33987,232),
-(20925,20),
-(20927,30),
-(20928,40),
-(27179,54),
-(2139,300),
-(6673,1),
-(5242,12),
-(6192,22),
-(11549,32),
-(11550,42),
-(11551,52),
-(2048,69),
-(47436,78),
-(47519,175),
-(47520,225),
-(469,68),
-(47439,77),
-(47440,80),
-(25202,49),
-(25203,56),
-(47437,63),
-(47497,101),
-(47498,101),
-(47449,233),
-(47450,259),
-(57823,530),
-(12797,25),
-(12799,25),
-(72,36),
-(47487,546),
-(47488,770),
-(47467,345),
-(47501,457),
-(47502,555);
-/*!40000 ALTER TABLE `spell_threat` ENABLE KEYS */;
-UNLOCK TABLES;
-
---
--- Table structure for table `spell_difficulty_dbc`
---
-
-DROP TABLE IF EXISTS `spelldifficulty_dbc`;
-/*!40101 SET @saved_cs_client = @@character_set_client */;
-/*!40101 SET character_set_client = utf8 */;
-CREATE TABLE `spelldifficulty_dbc` (
- `id` int(11) unsigned NOT NULL DEFAULT '0',
- `spellid0` int(11) unsigned NOT NULL DEFAULT '0',
- `spellid1` int(11) unsigned NOT NULL DEFAULT '0',
- `spellid2` int(11) unsigned NOT NULL DEFAULT '0',
- `spellid3` int(11) unsigned NOT NULL DEFAULT '0',
- PRIMARY KEY (`id`)
-) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-/*!40101 SET character_set_client = @saved_cs_client */;
-
---
--- Dumping data for table `spell_difficulty_dbc`
---
-
-LOCK TABLES `spelldifficulty_dbc` WRITE;
-/*!40000 ALTER TABLE `spelldifficulty_dbc` DISABLE KEYS */;
-INSERT INTO `spelldifficulty_dbc` VALUES
-(3000, 47772, 56935, 0, 0), -- Magus Telestra - Ice Nova
-(3001, 47773, 56934, 0, 0), -- Magus Telestra - Fire Bomb
-(3002, 44189, 46164, 0, 0), -- SPELL_FIREBALL_NORMAL / SPELL_FIREBALL_HEROIC
-(3003, 44190, 46163, 0, 0), -- SPELL_FLAMESTRIKE1_NORMAL / SPELL_FLAMESTRIKE1_HEROIC
-(3004, 44174, 46192, 0, 0), -- SPELL_RENEW_NORMAL / SPELL_RENEW_HEROIC
-(3005, 14032, 15654, 0, 0), -- SPELL_SW_PAIN_NORMAL / SPELL_SW_PAIN_HEROIC
-(3006, 44318, 46380, 0, 0), -- SPELL_CHAIN_LIGHTNING / SPELL_H_CHAIN_LIGHTNING
-(3007, 44319, 46381, 0, 0), -- SPELL_ARCANE_SHOCK / SPELL_H_ARCANE_SHOCK
-(3008, 52771, 58830, 0, 0), -- SPELL_WOUNDING_STRIKE / H_SPELL_WOUNDING_STRIKE
-(3009, 52720, 58852, 0, 0), -- SPELL_CARRION_SWARM / H_SPELL_CARRION_SWARM
-(3010, 52722, 58850, 0, 0), -- SPELL_MIND_BLAST / H_SPELL_MIND_BLAST
-(3011, 52721, 58849, 0, 0), -- SPELL_SLEEP / H_SPELL_SLEEP
-(3012, 52666, 58824, 0, 0), -- SPELL_DISEASE_EXPULSION / H_SPELL_DISEASE_EXPULSION
-(3013, 52696, 58823, 0, 0), -- SPELL_CONSTRICTING_CHAINS / H_SPELL_CONSTRICTING_CHAINS
-(3014, 57725, 58827, 0, 0), -- SPELL_SHADOW_BOLT / H_SPELL_SHADOW_BOLT
-(3015, 52445, 58822, 0, 0), -- SPELL_EXORCISM_N / SPELL_EXORCISM_H
-(3016, 31473, 39049, 0, 0), -- SPELL_SAND_BREATH / H_SPELL_SAND_BREATH
-(3017, 31457, 38538, 0, 0), -- SPELL_ARCANE_BLAST / H_SPELL_ARCANE_BLAST
-(3018, 31472, 38539, 0, 0), -- SPELL_ARCANE_DISCHARGE / H_SPELL_ARCANE_DISCHARGE
-(3019, 31475, 38593, 0, 0), -- SPELL_WING_BUFFET / H_SPELL_WING_BUFFET
-(3020, 56130, 59467, 0, 0), -- SPELL_BROOD_PLAGUE / H_SPELL_BROOD_PLAGUE
-(3021, 57941, 59974, 0, 0), -- SPELL_MIND_FLAY / H_SPELL_MIND_FLAY
-(3022, 57942, 59975, 0, 0), -- SPELL_SHADOW_BOLT_VOLLEY / H_SPELL_SHADOW_BOLT_VOLLEY
-(3023, 57949, 59978, 0, 0), -- SPELL_SHIVER / H_SPELL_SHIVER
-(3024, 56855, 60030, 0, 0), -- SPELL_CYCLONE_STRIKE / SPELL_CYCLONE_STRIKE_H
-(3025, 55959, 59513, 0, 0), -- SPELL_EMBRACE_OF_THE_VAMPYR / H_SPELL_EMBRACE_OF_THE_VAMPYR
-(3026, 55926, 59508, 0, 0), -- SPELL_FLAME_SPHERE_PERIODIC / H_SPELL_FLAME_SPHERE_PERIODIC
-(3027, 53472, 59433, 0, 0), -- SPELL_POUND / H_SPELL_POUND
-(3028, 53400, 59419, 0, 0), -- SPELL_ACID_CLOUD / H_SPELL_ACID_CLOUD
-(3029, 53030, 59417, 0, 0), -- SPELL_LEECH_POISON / H_SPELL_LEECH_POISON
-(3030, 57731, 59421, 0, 0), -- SPELL_WEB_GRAB / H_SPELL_WEB_GRAB
-(3031, 52586, 59367, 0, 0), -- SPELL_MIND_FLAY / H_SPELL_MIND_FLAY
-(3032, 52592, 59368, 0, 0), -- SPELL_CURSE_OF_FATIGUE / H_SPELL_CURSE_OF_FATIGUE
-(3033, 52592, 59368, 0, 0), -- SPELL_CURSE_OF_FATIGUE / H_SPELL_CURSE_OF_FATIGUE
-(3034, 59363, 52446, 0, 0), -- SPELL_ACID_SPLASH / H_SPELL_ACID_SPLASH
-(3035, 52534, 59357, 0, 0), -- SPELL_SHADOW_BOLT / H_SPELL_SHADOW_BOLT
-(3036, 52535, 59358, 0, 0), -- SPELL_SHADOW_NOVA / H_SPELL_SHADOW_NOVA
-(3037, 52469, 59364, 0, 0), -- SPELL_INFECTED_BITE / H_SPELL_INFECTED_BITE
-(3038, 52469, 59364, 0, 0), -- SPELL_INFECTED_BITE / H_SPELL_INFECTED_BITE
-(3039, 52524, 59365, 0, 0), -- SPELL_BLINDING_WEBS / H_SPELL_BLINDING_WEBS
-(3040, 52469, 59364, 0, 0), -- SPELL_INFECTED_BITE / H_SPELL_INFECTED_BITE
-(3041, 52493, 59366, 0, 0), -- SPELL_POSION_SPRAY / H_SPELL_POSION_SPRAY
-(3042, 62796, 63815, 0, 0), -- SPELL_FIREBALL_10 / SPELL_FIREBALL_25
-(3043, 64709, 64734, 0, 0), -- SPELL_FLAME_GROUND_10 / SPELL_FLAME_GROUND_25
-(3044, 63317, 64021, 0, 0), -- SPELL_FLAMEBREATH_10 / SPELL_FLAMEBREATH_25
-(3045, 62680, 63472, 0, 0), -- SPELL_FLAME_JETS_10 / SPELL_FLAME_JETS_25
-(3046, 62546, 63474, 0, 0), -- SPELL_SCORCH_10 / SPELL_SCORCH_25
-(3047, 62717, 63477, 0, 0), -- SPELL_SLAG_POT_10 / SPELL_SLAG_POT_25
-(3048, 62836, 63536, 0, 0), -- SPELL_SLAG_IMBUED_10 / SPELL_SLAG_IMBUED_25
-(3049, 67881, 67718, 0, 0), -- SPELL_ICY_TOUCH / SPELL_ICY_TOUCH_H
-(3050, 67881, 67718, 0, 0), -- SPELL_ICY_TOUCH / SPELL_ICY_TOUCH_H
-(3051, 67883, 67725, 0, 0), -- SPELL_OBLITERATE / SPELL_OBLITERATE_H
-(3052, 67875, 67808, 0, 0), -- SPELL_DEATH_BITE / SPELL_DEATH_BITE_H
-(3053, 62548, 63476, 0, 0), -- SPELL_GROUND_10 / SPELL_GROUND_25
-(3054, 68783, 68784, 0, 0), -- SPELL_MORTAL_STRIKE / SPELL_MORTAL_STRIKE_H
-(3062, 65868, 67988, 0, 0), -- SPELL_SHOOT / SPELL_SHOOT_H
-(3064, 48849, 59422, 0, 0), -- SPELL_FEARSOME_ROAR / H_SPELL_FEARSOME_ROAR
-(3065, 49527, 59972, 0, 0), -- SPELL_CURSE_OF_LIFE / H_SPELL_CURSE_OF_LIFE
-(3066, 49528, 59973, 0, 0), -- SPELL_SHADOW_VOLLEY / H_SPELL_SHADOW_VOLLEY
-(3067, 49518, 59971, 0, 0), -- SPELL_RAIN_OF_FIRE / H_SPELL_RAIN_OF_FIRE
-(3068, 49537, 59963, 0, 0), -- SPELL_LIGHTNING_BREATH / H_SPELL_LIGHTNING_BREATH
-(3069, 49544, 59965, 0, 0), -- SPELL_EYE_BEAM / H_SPELL_EYE_BEAM
-(3070, 49548, 59969, 0, 0), -- SPELL_POISON_CLOUD / H_SPELL_POISON_CLOUD
-(3071, 59803, 49381, 0, 0), -- SPELL_CONSUME / H_SPELL_CONSUME
-(3072, 49555, 59807, 0, 0), -- SPELL_CORPSE_EXPLODE / H_SPELL_CORPSE_EXPLODE
-(3096, 55626, 58993, 0, 0), -- SPELL_MOJO_WAVE / H_SPELL_MOJO_WAVE
-(3097, 55627, 58994, 0, 0), -- SPELL_MOJO_PUDDLE / H_SPELL_MOJO_PUDDLE
-(3098, 55250, 59824, 0, 0), -- SPELL_WHIRLING_SLASH / H_SPELL_WHIRLING_SLASH
-(3099, 55276, 59826, 0, 0), -- SPELL_PUNCTURE / H_SPELL_PUNCTURE
-(3100, 55285, 59828, 0, 0), -- SPELL_ENRAGE / H_SPELL_ENRAGE
-(3101, 55292, 59829, 0, 0), -- SPELL_STOMP / H_SPELL_STOMP
-(3102, 54956, 59827, 0, 0), -- SPELL_IMPALING_CHARGE / H_SPELL_IMPALING_CHARGE
-(3103, 55102, 59444, 0, 0), -- SPELL_DETERMINED_GORE / H_SPELL_DETERMINED_GORE
-(3104, 55081, 59842, 0, 0), -- SPELL_POISON_NOVA / H_SPELL_POISON_NOVA
-(3105, 48287, 59840, 0, 0), -- SPELL_POWERFULL_BITE / H_SPELL_POWERFULL_BITE
-(3106, 54970, 59839, 0, 0), -- SPELL_VENOM_BOLT / H_SPELL_VENOM_BOLT
-(3107, 54987, 58996, 0, 0), -- SPELL_VENOMOUS_BITE / H_SPELL_VENOMOUS_BITE
-(3108, 47751, 57062, 0, 0), -- SPELL_SPARK / H_SPELL_SPARK
-(3109, 48096, 57091, 0, 0), -- SPELL_CRYSTALFIRE_BREATH / H_SPELL_CRYSTALFIRE_BREATH
-(3110, 48016, 57066, 0, 0), -- SPELL_TRAMPLE / H_SPELL_TRAMPLE
-(3111, 47944, 57067, 0, 0), -- SPELL_CRYSTALL_SPIKE_DAMAGE / H_SPELL_CRYSTALL_SPIKE_DAMAGE
-(3112, 50774, 59370, 0, 0), -- SPELL_THUNDERING_STOMP / SPELL_THUNDERING_STOMP_H
-(3113, 52774, 59160, 0, 0), -- SPELL_RENEW_STEEL_N / SPELL_RENEW_STEEL_H
-(3114, 52658, 59795, 0, 0), -- SPELL_STATIC_OVERLOAD / H_SPELL_STATIC_OVERLOAD
-(3115, 52780, 59800, 0, 0), -- SPELL_BALL_LIGHTNING / H_SPELL_BALL_LIGHTNING
-(3116, 52961, 59836, 0, 0), -- SPELL_PULSING_SHOCKWAVE_N / SPELL_PULSING_SHOCKWAVE_H
-(3117, 52960, 59835, 0, 0), -- SPELL_LIGHTNING_NOVA_N / SPELL_LIGHTNING_NOVA_H
-(3118, 52237, 59529, 0, 0), -- SPELL_SHATTERING_STOMP_N / SPELL_SHATTERING_STOMP_H
-(3119, 52433, 59530, 0, 0), -- SPELL_IMMOLATION_STRIKE_N / SPELL_IMMOLATION_STRIKE_H
-(3120, 50843, 59742, 0, 0), -- SPELL_BOULDER_TOSS / H_SPELL_BOULDER_TOSS
-(3121, 48131, 59744, 0, 0), -- SPELL_STOMP / H_SPELL_STOMP
-(3122, 50810, 61546, 0, 0), -- SPELL_SHATTER / H_SPELL_SHATTER
-(3123, 50752, 59772, 0, 0), -- SPELL_STORM_OF_GRIEF_N / SPELL_STORM_OF_GRIEF_H
-(3124, 50760, 59726, 0, 0), -- SPELL_SHOCK_OF_SORROW_N / SPELL_SHOCK_OF_SORROW_H
-(3125, 50761, 59727, 0, 0), -- SPELL_PILLAR_OF_WOE_N / SPELL_PILLAR_OF_WOE_H
-(3126, 50761, 59727, 0, 0), -- SPELL_PILLAR_OF_WOE_N / SPELL_PILLAR_OF_WOE_H
-(3127, 50830, 59844, 0, 0), -- SPELL_CHAIN_LIGHTING / H_SPELL_CHAIN_LIGHTING
-(3128, 50831, 59845, 0, 0), -- SPELL_LIGHTING_SHIELD / H_SPELL_LIGHTING_SHIELD
-(3129, 50834, 59846, 0, 0), -- SPELL_STATIC_CHARGE / H_SPELL_STATIC_CHARGE
-(3130, 51849, 59861, 0, 0), -- SPELL_LIGHTING_RING / H_SPELL_LIGHTING_RING
-(3131, 42730, 59735, 0, 0), -- SPELL_WOE_STRIKE / H_SPELL_WOE_STRIKE
-(3132, 42669, 59706, 0, 0), -- SPELL_SMASH / H_SPELL_SMASH
-(3133, 42705, 59707, 0, 0), -- SPELL_ENRAGE / H_SPELL_ENRAGE
-(3134, 42729, 59734, 0, 0), -- SPELL_DREADFUL_ROAR / H_SPELL_DREADFUL_ROAR
-(3135, 42708, 59708, 0, 0), -- SPELL_STAGGERING_ROAR / H_SPELL_STAGGERING_ROAR
-(3136, 42750, 59719, 0, 0), -- SPELL_SHADOW_AXE_DAMAGE / H_SPELL_SHADOW_AXE_DAMAGE
-(3137, 43649, 59575, 0, 0), -- SPELL_SHADOW_BOLT / H_SPELL_SHADOW_BOLT
-(3138, 48261, 59268, 0, 0), -- SPELL_IMPALE / H_SPELL_IMPALE
-(3139, 48256, 59267, 0, 0), -- SPELL_WITHERING_ROAR / H_SPELL_WITHERING_ROAR
-(3140, 48140, 59273, 0, 0), -- SPELL_CHAIN_LIGHTING / H_SPELL_CHAIN_LIGHTING
-(3141, 48137, 59265, 0, 0), -- SPELL_MORTAL_WOUND / H_SPELL_MORTAL_WOUND
-(3142, 48130, 59264, 0, 0), -- SPELL_GORE / H_SPELL_GORE
-(3143, 48105, 59263, 0, 0), -- SPELL_GRIEVOUS_WOUND / H_SPELL_GRIEVOUS_WOUND
-(3144, 48133, 59271, 0, 0), -- SPELL_POISON_BREATH / H_SPELL_POISON_BREATH
-(3145, 48133, 59271, 0, 0), -- SPELL_POISON_BREATH / H_SPELL_POISON_BREATH
-(3146, 50234, 59330, 0, 0), -- SPELL_CRUSH / H_SPELL_CRUSH
-(3147, 50225, 59331, 0, 0), -- SPELL_POISONED_SPEAR / H_SPELL_POISONED_SPEAR
-(3148, 15667, 59409, 0, 0), -- SPELL_SINSTER_STRIKE / H_SPELL_SINSTER_STRIKE
-(3149, 48294, 59301, 0, 0), -- SPELL_BANE / H_SPELL_BANE
-(3150, 48291, 59300, 0, 0), -- SPELL_FETID_ROT / H_SPELL_FETID_ROT
-(3151, 48423, 59304, 0, 0), -- SPELL_SPIRIT_STRIKE / H_SPELL_SPIRIT_STRIKE
-(3152, 48529, 59305, 0, 0), -- SPELL_SPIRIT_BURST / H_SPELL_SPIRIT_BURST
-(3153, 58693, 59369, 0, 0), -- SPELL_BLIZZARD / H_SPELL_BLIZZARD
-(3154, 58690, 59283, 0, 0), -- SPELL_TAIL_SWEEP / H_SPELL_TAIL_SWEEP
-(3155, 58688, 59281, 0, 0), -- SPELL_UNCONTROLLABLE_ENERGY / H_SPELL_UNCONTROLLABLE_ENERGY
-(3156, 54479, 59471, 0, 0), -- SPELL_EARTH_SHIELD / H_SPELL_EARTH_SHIELD
-(3157, 54479, 59471, 0, 0), -- SPELL_EARTH_SHIELD / H_SPELL_EARTH_SHIELD
-(3158, 54481, 59473, 0, 0), -- SPELL_CHAIN_HEAL / H_SPELL_CHAIN_HEAL
-(3159, 54312, 59522, 0, 0), -- SPELL_FRENZY / SPELL_FRENZY_H
-(3160, 54237, 59520, 0, 0), -- SPELL_WATER_BLAST / SPELL_WATER_BLAST_H
-(3161, 54241, 59521, 0, 0), -- SPELL_WATER_BOLT_VOLLEY / SPELL_WATER_BOLT_VOLLEY_H
-(3162, 54235, 59468, 0, 0), -- SPELL_FIREBOLT / H_SPELL_FIREBOLT
-(3163, 54282, 59469, 0, 0), -- SPELL_FLAME_BREATH / H_SPELL_FLAME_BREATH
-(3164, 54249, 59594, 0, 0), -- SPELL_LAVA_BURN / H_SPELL_LAVA_BURN
-(3165, 54202, 59483, 0, 0), -- SPELL_ARCANE_BARRAGE_VOLLEY / SPELL_ARCANE_BARRAGE_VOLLEY_H
-(3166, 54226, 59485, 0, 0), -- SPELL_ARCANE_BUFFET / SPELL_ARCANE_BUFFET_H
-(3167, 54160, 59474, 0, 0), -- SPELL_ARCANE_POWER / H_SPELL_ARCANE_POWER
-(3168, 54361, 59743, 0, 0), -- SPELL_VOID_SHIFT / H_SPELL_VOID_SHIFT
-(3169, 54524, 59745, 0, 0), -- SPELL_SHROUD_OF_DARKNESS / H_SPELL_SHROUD_OF_DARKNESS
-(3170, 54342, 59747, 0, 0), -- SPELL_ZURAMAT_ADD_2 / H_SPELL_ZURAMAT_ADD_2
-(3171, 32325, 38760, 0, 0), -- SPELL_VOID_BLAST / H_SPELL_VOID_BLAST
-(3172, 32358, 38759, 0, 0), -- SPELL_DARK_SHELL / H_SPELL_DARK_SHELL
-(3173, 38197, 40425, 0, 0), -- SPELL_ARCANE_EXPLOSION / H_SPELL_ARCANE_EXPLOSION
-(3174, 35059, 40424, 0, 0), -- SPELL_ARCANE_VOLLEY / H_SPELL_ARCANE_VOLLEY
-(3175, 38245, 43309, 0, 0), -- SPELL_POLYMORPH / H_SPELL_POLYMORPH
-(3176, 33617, 39363, 0, 0), -- SPELL_RAIN_OF_FIRE / H_SPELL_RAIN_OF_FIRE
-(3177, 34449, 37924, 0, 0), -- SPELL_WATER_BOLT_VOLLEY / H_SPELL_WATER_BOLT_VOLLEY
-(3178, 31532, 37936, 0, 0), -- SPELL_REPAIR / H_SPELL_REPAIR
-(3179, 33132, 37371, 0, 0), -- SPELL_FIRE_NOVA / H_SPELL_FIRE_NOVA
-(3180, 28599, 40070, 0, 0), -- SPELL_SHADOW_BOLT_VOLLEY / H_SPELL_SHADOW_BOLT_VOLLEY
-(3181, 49381, 59805, 0, 0), -- SPELL_CONSUME_AURA / H_SPELL_CONSUME_AURA
-(3182, 30695, 37566, 0, 0), -- SPELL_TREACHEROUS_AURA / H_SPELL_BANE_OF_TREACHERY
-(3183, 30686, 39297, 0, 0), -- SPELL_SHADOW_BOLT / H_SPELL_SHADOW_BOLT
-(3184, 30641, 36814, 0, 0), -- SPELL_MORTAL_WOUND / H_SPELL_MORTAL_WOUND
-(3185, 30495, 35953, 0, 0), -- SPELL_SHADOW_CLEAVE / H_SPELL_SHADOW_SLAM
-(3186, 30598, 36056, 0, 0), -- SPELL_BURNING_MAUL / H_SPELL_BURNING_MAUL
-(3187, 36924, 39017, 0, 0), -- SPELL_MIND_REND / H_SPELL_MIND_REND
-(3188, 36924, 39017, 0, 0), -- SPELL_MIND_REND / H_SPELL_MIND_REND
-(3189, 37162, 39019, 0, 0), -- SPELL_DOMINATION / H_SPELL_DOMINATION
-(3190, 37162, 39019, 0, 0), -- SPELL_DOMINATION / H_SPELL_DOMINATION
-(3191, 35322, 39193, 0, 0), -- SPELL_SHADOW_POWER / H_SPELL_SHADOW_POWER
-(3192, 35327, 39194, 0, 0), -- SPELL_JACKHAMMER / H_SPELL_JACKHAMMER
-(3193, 35275, 39084, 0, 0), -- SPELL_SUMMON_RAGIN_FLAMES / H_SPELL_SUMMON_RAGIN_FLAMES
-(3194, 35268, 39346, 0, 0); -- SPELL_INFERNO / H_SPELL_INFERNO
-/*!40000 ALTER TABLE `spelldifficulty_dbc` ENABLE KEYS */;
-UNLOCK TABLES;
-
---
--- Table structure for table `spell_script_names`
---
-
-DROP TABLE IF EXISTS `spell_script_names`;
-/*!40101 SET @saved_cs_client = @@character_set_client */;
-/*!40101 SET character_set_client = utf8 */;
-CREATE TABLE `spell_script_names` (
- `spell_id` mediumint(8) NOT NULL,
- `ScriptName` char(64) NOT NULL,
- UNIQUE (`spell_id`, `ScriptName`)
-) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-/*!40101 SET character_set_client = @saved_cs_client */;
-
---
--- Dumping data for table `spell_script_names`
---
-
-LOCK TABLES `spell_script_names` WRITE;
-/*!40000 ALTER TABLE `spell_script_names` DISABLE KEYS */;
-/*!40000 ALTER TABLE `spell_script_names` ENABLE KEYS */;
-UNLOCK TABLES;
-
---
--- Table structure for table `transports`
---
-
-DROP TABLE IF EXISTS `transports`;
-/*!40101 SET @saved_cs_client = @@character_set_client */;
-/*!40101 SET character_set_client = utf8 */;
-CREATE TABLE `transports` (
- `guid` int(10) unsigned NOT NULL AUTO_INCREMENT,
- `entry` mediumint(8) unsigned NOT NULL DEFAULT '0',
- `name` text,
- `period` mediumint(8) unsigned NOT NULL DEFAULT '0',
- `ScriptName` char(64) NOT NULL DEFAULT '',
- PRIMARY KEY (`guid`),
- UNIQUE INDEX `idx_entry` (`entry`)
-) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Transports';
-/*!40101 SET character_set_client = @saved_cs_client */;
-
---
--- Dumping data for table `transports`
---
-
-LOCK TABLES `transports` WRITE;
-/*!40000 ALTER TABLE `transports` DISABLE KEYS */;
-/*!40000 ALTER TABLE `transports` ENABLE KEYS */;
-UNLOCK TABLES;
-
---
--- Table structure for table `trinity_string`
---
-
-DROP TABLE IF EXISTS `trinity_string`;
-/*!40101 SET @saved_cs_client = @@character_set_client */;
-/*!40101 SET character_set_client = utf8 */;
-CREATE TABLE `trinity_string` (
- `entry` mediumint(8) unsigned NOT NULL DEFAULT '0',
- `content_default` text NOT NULL,
- `content_loc1` text,
- `content_loc2` text,
- `content_loc3` text,
- `content_loc4` text,
- `content_loc5` text,
- `content_loc6` text,
- `content_loc7` text,
- `content_loc8` text,
- PRIMARY KEY (`entry`)
-) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-/*!40101 SET character_set_client = @saved_cs_client */;
-
---
--- Dumping data for table `trinity_string`
---
-
-LOCK TABLES `trinity_string` WRITE;
-/*!40000 ALTER TABLE `trinity_string` DISABLE KEYS */;
-INSERT INTO `trinity_string` (`entry`,`content_default`,`content_loc1`,`content_loc2`,`content_loc3`,`content_loc4`,`content_loc5`,`content_loc6`,`content_loc7`,`content_loc8`) VALUES
-(1, 'You should select a character or a creature.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(2, 'You should select a creature.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(3, '[SERVER] %s', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(4, '|cffff0000[Event Message]: %s|r', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(5, 'There is no help for that command', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(6, 'There is no such command', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(7, 'There is no such subcommand', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(8, 'Command %s have subcommands:%s', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(9, 'Commands available to you:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(10, 'Incorrect syntax.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(11, 'Your account level is: %i', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(12, 'Active connections: %u (max: %u) Queued connections: %u (max: %u)', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(13, 'Server uptime: %s', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(14, 'Player saved.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(15, 'All players saved.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(16, 'There are the following active GMs on this server:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(17, 'There are no GMs currently logged in on this server.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(18, 'Cannot do that while flying.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(19, 'Cannot do that in Battlegrounds.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(20, 'Target is flying you can''t do that.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(21, '%s is flying command failed.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(22, 'You are not mounted so you can''t dismount.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(23, 'Cannot do that while fighting.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(24, 'You used it recently.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(25, 'Password not changed (unknown error)!', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(26, 'The password was changed', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(27, 'The old password is wrong', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(28, 'Your account is now locked.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(29, 'Your account is now unlocked.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(30, ', rank ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(31, ' [known]', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(32, ' [learn]', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(33, ' [passive]', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(34, ' [talent]', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(35, ' [active]', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(36, ' [complete]', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(37, ' (offline)', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(38, 'on', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(39, 'off', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(40, 'You are: %s', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(41, 'visible', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(42, 'invisible', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(43, 'done', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(44, 'You', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(45, ' <unknown> ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(46, '<error>', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(47, '<non-existing character>', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(48, 'UNKNOWN', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(49, 'You must be at least level %u to enter.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(50, 'You must be at least level %u and have item %s to enter.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(51, 'Hello! Ready for some training?', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(52, 'Invaid item count (%u) for item %u', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(53, 'Mail can''t have more %u item stacks', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(54, 'The new passwords do not match', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(55, 'Your password can''t be longer than 16 characters (client limit), password not changed!', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(56, 'Current Message of the day: \r\n%s', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(57, 'Using World DB: %s', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(58, 'Using script library: %s', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(59, 'Using creature EventAI: %s', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(60, 'Online players: %u (max: %u)', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(61, 'Up to %u expansion allowed now.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(62, 'One on more parameters have incorrect values', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(100, 'Global notify: ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(101, 'Map: %u (%s) Zone: %u (%s) Area: %u (%s) Phase: %u\nX: %f Y: %f Z: %f Orientation: %f\ngrid[%u,%u]cell[%u,%u] InstanceID: %u\n ZoneX: %f ZoneY: %f\nGroundZ: %f FloorZ: %f Have height data (Map: %u VMap: %u)', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(102, '%s is already being teleported.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(103, 'You can summon a player to your instance only if he is in your party with you as leader.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(104, 'You cannot go to the player''s instance because you are in a party now.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(105, 'You can go to the player''s instance while not being in his party only if your GM mode is on.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(106, 'You can not go to player %s from instance to instance.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(107, 'You can not summon player %s from instance to instance.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(108, 'You are summoning %s%s.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(109, 'You are being summoned by %s.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(110, 'You are teleporting %s%s to %s.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(111, 'You are being teleported by %s.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(112, 'Player (%s) does not exist.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(113, 'Appearing at %s''s location.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(114, '%s is appearing to your location.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(115, 'Incorrect values.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(116, 'No character selected.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(117, '%s is not in a group.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(118, 'You changed HP of %s to %i/%i.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(119, '%s changed your HP to %i/%i.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(120, 'You changed MANA of %s to %i/%i.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(121, '%s changed your MANA to %i/%i.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(122, 'You changed ENERGY of %s to %i/%i.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(123, '%s changed your ENERGY to %i/%i.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(124, 'Current energy: %u', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(125, 'You changed rage of %s to %i/%i.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(126, '%s changed your rage to %i/%i.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(127, 'You changed level of %s to %i.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(128, 'GUID %i, faction is %i, flags is %i, npcflag is %i, DY flag is %i', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(129, 'Wrong faction: %u (not found in factiontemplate.dbc).', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(130, 'You changed GUID=%i ''s Faction to %i, flags to %i, npcflag to %i, dyflag to %i.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(131, 'You changed the spellflatid=%i, val= %i, mark =%i to %s.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(132, '%s changed your spellflatid=%i, val= %i, mark =%i.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(133, '%s has access to all taxi nodes now (until logout).', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(134, '%s has no more access to all taxi nodes now (only visited accessible).', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(135, '%s has given you access to all taxi nodes (until logout).', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(136, '%s has removed access to all taxi nodes (only visited still accessible).', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(137, 'You set all speeds to %2.2f from normal of %s.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(138, '%s set all your speeds to %2.2f from normal.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(139, 'You set the speed to %2.2f from normal of %s.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(140, '%s set your speed to %2.2f from normal.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(141, 'You set the swim speed to %2.2f from normal of %s.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(142, '%s set your swim speed to %2.2f from normal.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(143, 'You set the backwards run speed to %2.2f from normal of %s.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(144, '%s set your backwards run speed to %2.2f from normal.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(145, 'You set the fly speed to %2.2f from normal of %s.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(146, '%s set your fly speed to %2.2f from normal.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(147, 'You set the size %2.2f of %s.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(148, '%s set your size to %2.2f.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(149, 'There is no such mount.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(150, 'You give a mount to %s.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(151, '%s gave you a mount.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(152, 'USER1: %i, ADD: %i, DIF: %i\n', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(153, 'You take all copper of %s.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(154, '%s took you all of your copper.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(155, 'You take %i copper from %s.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(156, '%s took %i copper from you.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(157, 'You give %i copper to %s.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(158, '%s gave you %i copper.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(159, 'You hear sound %u.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(160, 'USER2: %i, ADD: %i, RESULT: %i\n', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(161, 'Removed bit %i in field %i.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(162, 'Set bit %i in field %i.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(163, 'Teleport location table is empty!', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(164, 'Teleport location not found!', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(165, 'Requires search parameter.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(166, 'There are no teleport locations matching your request.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(168, 'Locations found are:\n%s', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(169, 'Mail sent to %s', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(170, 'You try to hear sound %u but it doesn''t exist.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(171, 'You can''t teleport self to self!', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(172, 'server console command', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(173, 'You changed runic power of %s to %i/%i.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(174, '%s changed your runic power to %i/%i.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(175, 'Liquid level: %f, ground: %f, type: %d, status: %d', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(200, 'No selection.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(201, 'Object GUID is: lowpart %u highpart %X', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(202, 'The name was too long by %i characters.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(203, 'Error, name can only contain characters A-Z and a-z.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(204, 'The subname was too long by %i characters.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(205, 'Not yet implemented', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(206, 'Item ''%i'' ''%s'' added to list with maxcount ''%i'' and incrtime ''%i'' and extendedcost ''%i''', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(207, 'Item ''%i'' not found in database.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(208, 'Item ''%i'' ''%s'' deleted from vendor list', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(209, 'Item ''%i'' not found in vendor list.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(210, 'Item ''%u'' (with extended cost %u) already in vendor list.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(211, 'Spells of %s reset.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(212, 'Spells of %s will reset at next login.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(213, 'Talents of %s reset.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(214, 'Talents of %s will reset at next login.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(215, 'Your spells have been reset.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(216, 'Your talents have been reset.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(217, 'Unknown case ''%s'' for .resetall command. Type full correct case name.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(218, 'Spells will reset for all players at login. Strongly recommend re-login!', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(219, 'Talents will reset for all players at login. Strongly recommend re-login!', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(220, 'Creature (GUID: %u) No waypoint found.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(221, 'Creature (GUID: %u) Last waypoint not found.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(222, 'Creature (GUID: %u) No waypoint found - used ''wpguid''. Now trying to find it by its position...', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(223, 'Creature (GUID: %u) No waypoints found - This is a MaNGOS db problem (single float).', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(224, 'Selected creature is ignored - provided GUID is used', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(225, 'Creature (GUID: %u) not found', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(226, 'You must select a visual waypoint.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(227, 'No visual waypoints found', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(228, 'Could not create visual waypoint with creatureID: %d', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(229, 'All visual waypoints removed', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(230, 'Could not create waypoint-creature with ID: %d', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(231, 'No GUID provided.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(232, 'No waypoint number provided.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(233, 'Argument required for ''%s''.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(234, 'Waypoint %i added to GUID: %d', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(235, 'Waypoint %d added.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(236, 'Waypoint changed.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(237, 'Waypoint %s modified.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(238, 'WP export successfull.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(239, 'No waypoints found inside the database.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(240, 'File imported.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(241, 'Waypoint removed.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(242, 'Warning: Could not delete WP from the world with ID: %d', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(243, 'This happens if the waypoint is too far away from your char.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(244, 'The WP is deleted from the database, but not from the world here.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(245, 'They will disappear after a server restart.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(246, 'Waypoint %d: Info for creature: %s, GUID: %d', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(247, 'Waittime: %d', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(248, 'Model %d: %d', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(249, 'Emote: %d', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(250, 'Spell: %d', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(251, 'Text%d (ID: %i): %s', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(252, 'AIScript: %s', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(253, 'Forced rename for player %s will be requested at next login.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(254, 'Forced rename for player %s (GUID #%u) will be requested at next login.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(255, 'Waypoint-Creature (GUID: %u) Not found', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(256, 'Could not find NPC...', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(257, 'Creature movement type set to ''%s'', waypoints removed (if any).', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(258, 'Creature movement type set to ''%s'', waypoints were not removed.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(259, 'Incorrect value, use on or off', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(260, 'Value saved.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(261, 'Value saved, you may need to rejoin or clean your client cache.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(262, 'Areatrigger ID %u not found!', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(263, 'Target map or coordinates is invalid (X: %f Y: %f MapId: %u)', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(264, 'Zone coordinates is invalid (X: %f Y: %f AreaId: %u)', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(265, 'Zone %u (%s) is part of instanceable map %u (%s)', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(266, 'Nothing found!', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(267, 'Object not found!', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(268, 'Creature not found!', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(269, 'Warning: Mob found more than once - you will be teleported to the first one found in DB.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(270, 'Creature Removed', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(271, 'Creature moved.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(272, 'Creature (GUID:%u) must be on the same map as player!', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(273, 'Game Object (GUID: %u) not found', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(274, 'Game Object (GUID: %u) has references in not found creature %u GO list, can''t be deleted.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(275, 'Game Object (GUID: %u) removed', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(276, 'Game Object |cffffffff|Hgameobject:%d|h[%s]|h|r (GUID: %u) turned', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(277, 'Game Object |cffffffff|Hgameobject:%d|h[%s]|h|r (GUID: %u) moved', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(278, 'You must select a vendor', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(279, 'You must send id for item', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(280, 'Vendor has too many items (max 128)', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(281, 'You can''t kick self, logout instead', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(282, 'Player %s kicked.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(283, 'You have disabled %s\'s chat for %u minutes, effective at the player\'s next login. Reason: %s.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(284, 'Accepting Whisper: %s', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(285, 'Accepting Whisper: ON', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(286, 'Accepting Whisper: OFF', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(287, 'Creature (GUID: %u) not found', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(288, 'Tickets count: %i show new tickets: %s\n', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(289, 'New ticket from %s', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(290, 'Ticket of %s (Last updated: %s):\n%s', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(291, 'New ticket show: ON', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(292, 'New ticket show: OFF', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(293, 'Ticket %i doesn''t exist', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(294, 'All tickets deleted.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(295, 'Character %s ticket deleted.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(296, 'Ticket deleted.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(297, 'Spawn distance changed to: %f', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(298, 'Spawn time changed to: %i', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(299, 'The honor of %s was set to %u!', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(300, 'Your chat has been disabled for %u minutes. Reason: %s.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(301, 'You have disabled %s''s chat for %u minutes. Reason: %s.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(302, 'Player''s chat is already enabled.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(303, 'Your chat has been enabled.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(304, 'You have enabled %s''s chat.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(305, 'Faction %s (%u) reputation of %s was set to %5d!', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(306, 'The arena points of %s was set to %u!', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(307, 'No faction found!', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(308, 'Faction %i unknown!', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(309, 'Invalid parameter %s', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(310, 'delta must be between 0 and %d (inclusive)', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(311, '%d - |cffffffff|Hfaction:%d|h[%s]|h|r', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(312, ' [visible]', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(313, ' [at war]', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(314, ' [peace forced]', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(315, ' [hidden]', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(316, ' [invisible forced]', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(317, ' [inactive]', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(318, 'Hated', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(319, 'Hostile', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(320, 'Unfriendly', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(321, 'Neutral', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(322, 'Friendly', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(323, 'Honored', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(324, 'Revered', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(325, 'Exalted', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(326, 'Faction %s (%u) can''nt have reputation.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(327, ' [no reputation]', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(328, 'Characters at account %s (Id: %u)', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(329, ' %s (GUID %u)', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(330, 'No players found!', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(331, 'Extended item cost %u not exist', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(332, 'GM mode is ON', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(333, 'GM mode is OFF', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(334, 'GM Chat Badge is ON', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(335, 'GM Chat Badge is OFF', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(336, 'You repair all %s''s items.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(337, 'All your items repaired by %s.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(338, 'You set waterwalk mode %s for %s.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(339, 'Your waterwalk mode %s by %s.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(340, '%s is now following you.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(341, '%s is not following you.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(342, '%s is now not following you.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(343, 'Creature (Entry: %u) cannot be tamed.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(344, 'You already have pet.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(345, 'Forced customize for player %s will be requested at next login.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(346, 'Forced customize for player %s (GUID #%u) will be requested at next login.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(347, 'TaxiNode ID %u not found!', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(348,'Game Object (Entry: %u) have invalid data and can''t be spawned',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
-(349,'%d (idx:%d) - |cffffffff|Htitle:%d|h[%s %s]|h|r %s %s ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
-(350,'%d (idx:%d) - [%s %s] %s %s ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
-(351,'No titles found!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
-(352,'Invalid title id: %u',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
-(353,'Title %u (%s) added to known titles list for player %s.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
-(354,'Title %u (%s) removed from known titles list for player %s.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
-(355,'Title %u (%s) set as current seelcted title for player %s.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
-(356,'Current selected title for player %s reset as not known now.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
-(400, '|cffff0000[System Message]:|rScripts reloaded', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(401, 'You change security level of account %s to %i.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(402, '%s changed your security level to %i.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(403, 'You have low security level for this.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(404, 'Creature movement disabled.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(405, 'Creature movement enabled.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(406, 'Weather can''t be changed for this zone.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(407, 'Weather system disabled at server.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(408, '%s is banned for %s. Reason: %s.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(409, '%s is banned permanently for %s.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(410, '%s %s not found', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(411, '%s unbanned.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(412, 'There was an error removing the ban on %s.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(413, 'Account not exist: %s', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(414, 'There is no such character.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(415, 'There is no such IP in banlist.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(416, 'Account %s has never been banned', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(417, 'Ban history for account %s:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(418, 'Ban Date: %s Bantime: %s Still active: %s Reason: %s Set by: %s', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(419, 'Inf.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(420, 'Never', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(421, 'Yes', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(422, 'No', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(423, 'IP: %s\nBan Date: %s\nUnban Date: %s\nRemaining: %s\nReason: %s\nSet by: %s', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(424, 'There is no matching IPban.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(425, 'There is no matching account.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(426, 'There is no banned account owning a character matching this part.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(427, 'The following IPs match your pattern:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(428, 'The following accounts match your query:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(429, 'You learned many spells/skills.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(430, 'You learned all spells for class.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(431, 'You learned all talents for class.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(432, 'You learned all languages.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(433, 'You learned all craft skills and recipes.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(434, 'Could not find ''%s''', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(435, 'Invalid item id: %u', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(436, 'No items found!', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(437, 'Invalid gameobject id: %u', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(438, 'Found items %u: %u ( inventory %u mail %u auction %u guild %u)', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(439, 'Found gameobjects %u: %u ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(440, 'Invalid creature id: %u', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(441, 'Found creatures %u: %u ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(442, 'No area found!', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(443, 'No item sets found!', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(444, 'No skills found!', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(445, 'No spells found!', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(446, 'No quests found!', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(447, 'No creatures found!', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(448, 'No gameobjects found!', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(449, 'Graveyard #%u doesn''t exist.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(450, 'Graveyard #%u already linked to zone #%u (current).', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(451, 'Graveyard #%u linked to zone #%u (current).', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(452, 'Graveyard #%u can''t be linked to subzone or not existed zone #%u (internal error).', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(454, 'No faction in Graveyard with id= #%u , fix your DB', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(455, 'invalid team, please fix database', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(456, 'any', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(457, 'alliance', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(458, 'horde', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(459, 'Graveyard #%u (faction: %s) is nearest from linked to zone #%u.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(460, 'Zone #%u doesn''t have linked graveyards.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(461, 'Zone #%u doesn''t have linked graveyards for faction: %s.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(462, 'Teleport location already exists!', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(463, 'Teleport location added.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(464, 'Teleport location NOT added: database error.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(465, 'Teleport location deleted.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(466, 'No taxinodes found!', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(467, 'Target unit has %d auras:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(468, 'id: %d %s effmask: %d charges: %d stack: %d slot %d duration: %d maxduration: %d %s %s caster: %s guid: %d', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(469, 'Target unit has %d auras of type %d:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(470, 'id: %d eff: %d amount: %d', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(471, 'Quest %u not found.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(472, 'Quest %u started from item. For correct work, please, add item to inventory and start quest in normal way: .additem %u', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(473, 'Quest removed.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(474, ' [rewarded]', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(475, ' [complete]', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(476, ' [active]', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(477, '%s''s Fly Mode %s', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(478, 'Opcode %u sent to %s', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(479, 'Character loaded successfully!', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(480, 'Failed to load the character!', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(481, 'Character dumped successfully!', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(482, 'Character dump failed!', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(483, 'Spell %u broken and not allowed to cast or learn!', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(484, 'Skill %u (%s) for player %s set to %u and current maximum set to %u (without permanent (talent) bonuses).', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(485, 'Player %s must have skill %u (%s) before using this command.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(486, 'Invalid skill id (%u)', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(487, 'You learned default GM spells/skills.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(488, 'You already know that spell.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(489, 'Target(%s) already know that spell.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(490, '%s doesn''t know that spell.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(491, 'You already forgot that spell.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(492, 'All spell cooldowns removed for %s.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(493, 'Spell %u cooldown removed for %s.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(494, 'Command : Additem, itemId = %i, amount = %i', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(495, 'Command : Additemset, itemsetId = %i', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(496, 'Removed itemID = %i, amount = %i from %s', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(497, 'Cannot create item ''%i'' (amount: %i)', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(498, 'You need to provide a guild name!', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(499, 'Player not found!', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(500, 'Player already has a guild!', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(501, 'Guild not created! (already exists?)', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(502, 'No items from itemset ''%u'' found.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(503, 'The distance is: (3D) %f (2D) %f (Exact 3D) %f (Exact 2D) %f yards.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(504, 'Item ''%i'' ''%s'' Item Slot %i', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(505, 'Item ''%i'' doesn''t exist.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(506, 'Item ''%i'' ''%s'' Added to Slot %i', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(507, 'Item save failed!', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(508, '%d - owner: %s (guid: %u account: %u ) %s', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(509, '%d - sender: %s (guid: %u account: %u ) receiver: %s (guid: %u account: %u ) %s', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(510, '%d - owner: %s (guid: %u account: %u ) %s', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(511, 'Wrong link type!', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(512, '%d - |cffffffff|Hitem:%d:0:0:0:0:0:0:0:0|h[%s]|h|r ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
-(513, '%d - |cffffffff|Hquest:%d:%d|h[%s]|h|r %s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
-(514, '%d - |cffffffff|Hcreature_entry:%d|h[%s]|h|r ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(515, '%d - |cffffffff|Hcreature:%d|h[%s X:%f Y:%f Z:%f MapId:%d]|h|r ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(516, '%d - |cffffffff|Hgameobject_entry:%d|h[%s]|h|r ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(517, '%d (Entry: %d) - |cffffffff|Hgameobject:%d|h[%s X:%f Y:%f Z:%f MapId:%d]|h|r ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(518, '%d - |cffffffff|Hitemset:%d|h[%s %s]|h|r ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(519, '|cffffffff|Htele:%s|h[%s]|h|r ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(520, '%d - |cffffffff|Hspell:%d|h[%s]|h|r ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(521, '%d - |cffffffff|Hskill:%d|h[%s %s]|h|r %s %s', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(522, 'Game Object (Entry: %u) not found', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(523, '>> Game Object %s (GUID: %u) at %f %f %f. Orientation %f.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(524, 'Selected object:\n|cffffffff|Hgameobject:%d|h[%s]|h|r GUID: %u ID: %u\nX: %f Y: %f Z: %f MapId: %u\nOrientation: %f\nPhasemask %u', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(525, '>> Add Game Object ''%i'' (%s) (GUID: %i) added at ''%f %f %f''.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(526, '%s (lowguid: %u) movement generators stack:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(527, ' Idle', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(528, ' Random', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(529, ' Waypoint', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(530, ' Animal random', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(531, ' Confused', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(532, ' Targeted to player %s (lowguid %u)', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(533, ' Targeted to creature %s (lowguid %u)', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(534, ' Targeted to <NULL>', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(535, ' Home movement to (X:%f Y:%f Z:%f)', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(536, ' Home movement used for player?!?', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(537, ' Taxi flight', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(538, ' Unknown movement generator (%u)', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(539, 'Player selected NPC\nDB GUID: %u, current GUID: %u.\nFaction: %u.\nnpcFlags: %u.\nEntry: %u.\nDisplayID: %u (Native: %u).', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(540, 'Level: %u.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(541, 'Health (base): %u. (max): %u. (current): %u.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(542, 'Field Flags: %u.\nDynamic Flags: %u.\nFaction Template: %u.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(543, 'Loot: %u Pickpocket: %u Skinning: %u', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(544, 'Position: %f %f %f.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(545, '*** Is a vendor!', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(546, '*** Is a trainer!', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(547, 'InstanceID: %u', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(548, 'Player%s %s (guid: %u) Account: %s (id: %u) Email: %s GMLevel: %u Last IP: %s Last login: %s Latency: %ums', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(549, 'Race: %s Class: %s Played time: %s Level: %u Money: %ug%us%uc', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(550, 'Mute time remaining: %s, Ban time remaining: %s', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(551, '%s has explored all zones now.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(552, '%s has no more explored zones.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(553, '%s has explored all zones for you.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(554, '%s has hidden all zones from you.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(555, 'Hover enabled', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(556, 'Hover disabled', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(557, '%s level up you to (%i)', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(558, '%s level down you to (%i)', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(559, '%s reset your level progress.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(560, 'The area has been set as explored.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(561, 'The area has been set as not explored.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(562, 'GUID=%i ''s updateIndex: %i, value: %i.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(563, 'You change GUID=%i ''s UpdateIndex: %i value to %i.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(564, 'The value index %u is too big to %u(count: %u).', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(565, 'Set %u uint32 Value:[OPCODE]:%u [VALUE]:%u', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(566, 'You Set %u Field:%u to uint32 Value: %u', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(567, 'Set %u float Value:[OPCODE]:%u [VALUE]:%f', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(568, 'You Set %u Field:%i to float Value: %f', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(569, 'Get %u uint32 Value:[OPCODE]:%u [VALUE]:%u', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(570, 'The uint32 value of %u in %u is: %u', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(571, 'Get %u float Value:[OPCODE]:%u [VALUE]:%f', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(572, 'The float of %u value in %u is: %f', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(573, '.Set32Bit:[OPCODE]:%u [VALUE]:%u', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(574, 'You set Bit of Field:%u to Value: %u', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(575, '.Mod32Value:[OPCODE]:%u [VALUE]:%i', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(576, 'You modified the value of Field:%u to Value: %u', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(577, 'You are now invisible.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(578, 'You are now visible.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(579, 'Selected player or creature not have victim.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(580, 'Player %s learned all default spells for race/class and completed quests rewarded spells.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(581, 'Found near gameobjects (distance %f): %u ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(582, 'SpawnTime: Full:%s Remain:%s', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(583, '%d - |cffffffff|Hgameevent:%d|h[%s]|h|r%s', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(584, 'No event found!', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(585, 'Event not exist!', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(586, 'Event %u: %s%s\nStart: %s End: %s Occurence: %s Length: %s\nNext state change: %s', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(587, 'Event %u already active!', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(588, 'Event %u not active!', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(589, ' Point movement to (X:%f Y:%f Z:%f)', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(590, ' Fear movement', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(591, ' Distract movement', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(592, 'You have learned all spells in craft: %s', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(593, 'Currently Banned Accounts:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(594, '| Account | BanDate | UnbanDate | Banned By | Ban Reason |', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(595, 'Currently Banned IPs:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(596, '| IP | BanDate | UnbanDate | Banned By | Ban Reason |', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(597, 'Current gamemasters:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(598, '| Account | GM |', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(599, 'No gamemasters.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(600, 'The Alliance wins!', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(601, 'The Horde wins!', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(602, 'The battle for Warsong Gulch begins in 1 minute.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(603, 'The battle for Warsong Gulch begins in 30 seconds. Prepare yourselves!', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(604, 'Let the battle for Warsong Gulch begin!', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(605, '$n captured the Horde flag!', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(606, '$n captured the Alliance flag!', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(607, 'The Horde flag was dropped by $n!', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(608, 'The Alliance Flag was dropped by $n!', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(609, 'The Alliance Flag was returned to its base by $n!', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(610, 'The Horde flag was returned to its base by $n!', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(611, 'The Horde flag was picked up by $n!', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(612, 'The Alliance Flag was picked up by $n!', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(613, 'The flags are now placed at their bases.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(614, 'The Alliance flag is now placed at its base.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(615, 'The Horde flag is now placed at its base.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(636, 'The Battle for Eye of the Storm begins in 1 minute.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(637, 'The Battle for Eye of the Storm begins in 30 seconds.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(638, 'The Battle for Eye of the Storm has begun!', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(650, 'Alliance', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(651, 'Horde', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(652, 'stables', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(653, 'blacksmith', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(654, 'farm', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(655, 'lumber mill', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(656, 'mine', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(657, 'The %s has taken the %s', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(658, '$n has defended the %s', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(659, '$n has assaulted the %s', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(660, '$n claims the %s! If left unchallenged, the %s will control it in 1 minute!', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(661, 'The Battle for Arathi Basin begins in 1 minute.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(662, 'The Battle for Arathi Basin begins in 30 seconds. Prepare yourselves!', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(663, 'The Battle for Arathi Basin has begun!', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(664, 'The Alliance has gathered $1776W resources, and is near victory!', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(665, 'The Horde has gathered $1777W resources, and is near victory!', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(666, 'After your recent battle in %s our best attempts to award you a Mark of Honor failed. Enclosed you will find the Mark of Honor we were not able to deliver to you at the time. Thanks for fighting in %s!', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(667, 'The Alliance has taken control of the Mage Tower!', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(668, 'The Horde has taken control of the Mage Tower!', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(669, 'The Alliance has taken control of the Draenei Ruins!', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(670, 'The Horde has taken control of the Draenei Ruins!', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(671, 'The Alliance has taken control of the Blood Elf Tower!', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(672, 'The Horde has taken control of the Blood Elf Tower!', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(673, 'The Alliance has taken control of the Fel Reaver Ruins!', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(674, 'The Horde has taken control of the Fel Reaver Ruins!', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(675, 'The Alliance has lost control of the Mage Tower!', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(676, 'The Horde has lost control of the Mage Tower!', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(677, 'The Alliance has lost control of the Draenei Ruins!', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(678, 'The Horde has lost control of the Draenei Ruins!', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(679, 'The Alliance has lost control of the Blood Elf Tower!', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(680, 'The Horde has lost control of the Blood Elf Tower!', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(681, 'The Alliance has lost control of the Fel Reaver Ruins!', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(682, 'The Horde has lost control of the Fel Reaver Ruins!', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(683, '%s has taken the flag!', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(684, 'The Alliance have captured the flag!', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(685, 'The Horde have captured the flag!', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(686, 'The flag has been dropped.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(687, 'The flag has been reset.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(700, 'You must be level %u to form an arena team', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(701, 'One minute until the Arena battle begins!', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(702, 'Thirty seconds until the Arena battle begins!', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(703, 'Fifteen seconds until the Arena battle begins!', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(704, 'The Arena battle has begun!', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(705, 'You must wait %s before speaking again.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(706, 'This item(s) have problems with equipping/storing in inventory.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(707, '%s wishes to not be disturbed and cannot receive whisper messages: %s', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(708, '%s is Away from Keyboard: %s', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(709, 'Do not Disturb', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(710, 'Away from Keyboard', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(711, 'Queue status for %s (Lvl: %u to %u)\nQueued alliances: %u (Need at least %u more)\nQueued hordes: %u (Need at least %u more)', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(712, '|cffff0000[BG Queue Announcer]:|r %s -- [%u-%u] A: %u/%u, H: %u/%u|r', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(713, 'You must be level %u to join an arena team!', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(715, 'You don''t meet Battleground level requirements', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(717, '|cffff0000[BG Queue Announcer]:|r %s -- [%u-%u] Started!|r', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(718, '|cffff0000[Arena Queue Announcer]:|r %s -- Joined : %ux%u : %u|r', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(719, '|cffff0000[Arena Queue Announcer]:|r %s -- Exited : %ux%u : %u|r', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(720, 'Your group is too large for this battleground. Please regroup to join.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(721, 'Your group is too large for this arena. Please regroup to join.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(722, 'Your group has members not in your arena team. Please regroup to join.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(723, 'Your group does not have enough players to join this match.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(724, 'The Gold Team wins!', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(725, 'The Green Team wins!', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(726, 'There aren''t enough players in this battleground. It will end soon unless some more players join to balance the fight.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(727, 'Your group has an offline member. Please remove him before joining.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(728, 'Your group has players from the opposing faction. You can''t join the battleground as a group.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(729, 'Your group has players from different battleground brakets. You can''t join as group.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(730, 'Someone in your party is already in this battleground queue. (S)he must leave it before joining as group.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(731, 'Someone in your party is Deserter. You can''t join as group.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(732, 'Someone in your party is already in three battleground queues. You cannot join as group.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(733, 'You cannot teleport to a battleground or arena map.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(734, 'You cannot summon players to a battleground or arena map.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(735, 'You must be in GM mode to teleport to a player in a battleground.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(736, 'You cannot teleport to a battleground from another battleground. Please leave the current battleground first.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(737, 'Arenas are set to 1v1 for debugging. So, don''t join as group.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(738, 'Arenas are set to normal playercount.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(739, 'Battlegrounds are set to 1v0 for debugging.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(740, 'Battlegrounds are set to normal playercount.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(741, 'Flushing Arena points based on team ratings, this may take a few minutes. Please stand by...', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(742, 'Distributing arena points to players...', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(743, 'Finished setting arena points for online players.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(744, 'Modifying played count, arena points etc. for loaded arena teams, sending updated stats to online players...', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(745, 'Modification done.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(746, 'Done flushing Arena points.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(747, 'This Battleground have been disabled. You can''t join the queue.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(748, 'Arenas have been disabled. You can''t join the queue.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(750, 'Not enough players. This game will close in %u mins.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(751, 'Not enough players. This game will close in %u seconds.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(753, 'The battle for Warsong Gulch begins in 2 minutes.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(754, 'The battle for Arathi Basin begins in 2 minutes.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(755, 'The battle for Eye of the Storm begins in 2 minutes.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(785, 'Arena testing turned %s', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(786, '|cffff0000[Automatic]:|r', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(787, '|cffffff00[|c1f40af20Announce by|r |cffff0000%s|cffffff00]:|r %s|r', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(800, 'Invalid name', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(801, 'You do not have enough gold', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(802, 'You do not have enough free slots', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(803, 'Your partner does not have enough free bag slots', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(804, 'You do not have permission to perform that function', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(805, 'Unknown language', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(806, 'You don''t know that language', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(807, 'Please provide character name', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(808, 'Player %s not found or offline', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(809, 'Account for character %s not found', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(810, '|Hplayer:$N|h[$N]|h has earned the achievement $a!', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(811, 'Guild Master', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(812, 'Officer', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(813, 'Veteran', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(814, 'Member', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(815, 'Initiate', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(816, 'Warning: You''ve entered a no-fly zone and are about to be dismounted!', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(817, 'Entry %u not found in creature_template table.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
-(818, 'Entry %u not found in sCreatureStorage. Possible new line in creature_template, but you can not add new creatures without restarting. Only modifing is allowed.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
-(1000, 'Exiting daemon...', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(1001, 'Account deleted: %s', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(1002, 'Account %s NOT deleted (probably sql file format was updated)', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(1003, 'Account %s NOT deleted (unknown error)', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(1004, 'Account created: %s', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(1005, 'Account name can''t be longer than 16 characters (client limit), account not created!', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(1006, 'Account with this name already exist!', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(1007, 'Account %s NOT created (probably sql file format was updated)', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(1008, 'Account %s NOT created (unknown error)', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(1009, 'Player %s (Guid: %u) Account %s (Id: %u) deleted.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(1010, '[ Account][ Character][ IP][GMLev][Expansion][Map][Zone]', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(1011, '|<Error> | %20s |<Error> |<Er>| <Error> |', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(1012, '==============================================================================', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(1013, '-[%16s][%12s][%15s][%5d][%9d][%3d][%4d]', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(1014, 'No online players.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(1015, '============================== Characters Online =============================', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(1016, '| GUID | Name | Account | Delete Date |', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(1017, '| %10u | %20s | %15s (%10u) | %19s |', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(1018, '==========================================================================================', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(1019, 'No characters found.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(1020, 'Restoring the following characters:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(1021, 'Deleting the following characters:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(1022, 'ERROR: You can only assign a new name if you have only selected a single character!', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(1023, 'Character ''%s'' (GUID: %u Account %u) can''t be restored: account not exist!', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(1024, 'Character ''%s'' (GUID: %u Account %u) can''t be restored: account character list full!', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(1025, 'Character ''%s'' (GUID: %u Account %u) can''t be restored: new name already used!', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(1026, 'GUID: %u Name: %s Account: %s (%u) Date: %s', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(1027, 'SQL driver query logging enabled.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(1028, 'SQL driver query logging disabled.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(1100, 'Account %s (Id: %u) have up to %u expansion allowed now.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(1101, 'Message of the day changed to:\r\n%s', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(1102, 'Message sent to %s: %s', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(1103, '%d - %s %s', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(1104, '%d - %s', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(1105, '%d - %s', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(1106, '%d - %s %s', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(1107, '%d - %s', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(1108, '%d - %s %s', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(1109, '%d - %s %s %s %s', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(1110, '%d - %s X:%f Y:%f Z:%f MapId:%d', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(1111, '%d - %s X:%f Y:%f Z:%f MapId:%d', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(1112, 'Failed to open file: %s', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(1113, 'Account %s (%u) have max amount allowed characters (client limit)', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(1114, 'Dump file have broken data!', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(1115, 'Invalid character name!', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(1116, 'Invalid character guid!', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(1117, 'Character guid %u in use!', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(1118, '%d - guild: %s (guid: %u) %s', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(1119, 'You must use male or female as gender.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(1120, 'You change gender of %s to %s.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(1121, 'Your gender changed to %s by %s.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(1122, '(%u/%u +perm %u +temp %u)', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(1123, 'Not pet found', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(1124, 'Wrong pet type', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(1125, 'Your pet learned all talents', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(1126, 'Your pet talents have been reset.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(1127, 'Talents of %s''s pet reset.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(1128, '%d - |cffffffff|Htaxinode:%u|h[%s %s]|h|r (Map:%u X:%f Y:%f Z:%f)', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(1129, '%d - %s %s (Map:%u X:%f Y:%f Z:%f)', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(1130, 'Can''t dump deleted characters, aborting.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(1131, 'The following characters match your query:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(1132, 'Currently Banned Characters:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(1133, '| Character | BanDate | UnbanDate | Banned By | Ban Reason |', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(1200, 'You try to view cinematic %u but it doesn''t exist.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(1201, 'You try to view movie %u but it doesn''t exist.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(1205, 'The battle will begin in two minutes.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(1206, 'The battle will begin in 1 minute.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(1208, 'The battle has begun!', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(1207, 'The battle will begin in 30 seconds!', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(1209, 'the alliance keep', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(1210, 'the horde keep', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(1211, '%s wins!', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(1212, 'The west gate of %s is destroyed!', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(1213, 'The east gate of %s is destroyed!', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(1214, 'The south gate of %s is destroyed!', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(1215, 'The north gate of %s is destroyed!', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(1216, '$n has assaulted the %s', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(1217, '$n has defended the %s', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(1218, '$n claims the %s! If left unchallenged, the %s will control it in 1 minute!', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(1219, 'The %s has taken the %s', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(1220, 'Workshop', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(1221, 'Docks', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(1222, 'Refinery', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(1223, 'Quarry', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(1224, 'Hangar', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(1300, 'Alliance', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(1301, 'Horde', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(1302, '%s was destroyed by the %s!', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(1303, 'The %s is under attack! If left unchecked, the %s will destroy it!', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(1304, 'The %s was taken by the %s!', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(1305, 'The %s was taken by the %s!', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(1306, 'The %s was taken by the %s!', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(1307, 'The %s is under attack! If left unchecked, the %s will capture it!', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(1308, 'The %s has taken the %s! Its supplies will now be used for reinforcements!', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(1309, 'Irondeep Mine', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(1310, 'Coldtooth Mine', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(1311, 'Stormpike Aid Station', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(1312, 'Dun Baldar South Bunker', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(1313, 'Dun Baldar North Bunker', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(1314, 'Stormpike Graveyard', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(1315, 'Icewing Bunker', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(1316, 'Stonehearth Graveyard', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(1317, 'Stonehearth Bunker', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(1318, 'Snowfall Graveyard', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(1319, 'Iceblood Tower', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(1320, 'Iceblood Graveyard', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(1321, 'Tower Point', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(1322, 'Frostwolf Graveyard', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(1323, 'East Frostwolf Tower', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(1324, 'West Frostwolf Tower', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(1325, 'Frostwolf Relief Hut', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(1326, 'The Battle for Alterac Valley begins in 1 minute.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(1327, 'The Battle for Alterac Valley begins in 30 seconds. Prepare yourselves!', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(1328, 'The Battle for Alterac Valley has begun!', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(1329, 'The Alliance Team is running out of reinforcements!', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(1330, 'The Horde Team is running out of reinforcements!', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(1331, 'The Frostwolf General is Dead!', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(1332, 'The Stormpike General is Dead!', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(1333, 'The Battle for Alterac Valley begins in 2 minutes.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(1134, 'Sending tickets is allowed.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(1135, 'Sending tickets is not allowed.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(2000, '|cff00ff00New ticket from|r|cffff00ff %s.|r |cff00ff00Ticket entry:|r|cffff00ff %d.|r', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(2001, '|cff00ff00Character|r|cffff00ff %s |r|cff00ff00edited his/her ticket:|r|cffff00ff %d.|r', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(2002, '|cff00ff00Character|r|cffff00ff %s |r|cff00ff00abandoned ticket entry:|r|cffff00ff %d.|r', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(2003, '|cff00ff00Closed by|r:|cff00ccff %s|r ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(2004, '|cff00ff00Deleted by|r:|cff00ccff %s|r ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(2005, 'Ticket not found.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(2006, 'Please close ticket before deleting it permanently.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(2007, 'Ticket %d is already assigned.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(2008, '%u Tickets succesfully reloaded from the database.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(2009, 'Showing list of open tickets.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(2010, 'Showing list of open tickets whose creator is online.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(2011, 'Showing list of closed tickets.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(2012, 'Invalid name specified. Name should be that of an online Gamemaster.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(2013, 'This ticket is already assigned to yourself. To unassign use .ticket unassign %d and then reassign.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(2014, 'Ticket %d is not assigned, you cannot unassign it.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(2015, 'You cannot unassign tickets from staffmembers with a higher security level than yourself.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(2016, 'Cannot close ticket %d, it is assigned to another GM.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(2017, '|cffaaffaaTicket|r:|cffaaccff %d.|r ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(2018, '|cff00ff00Created by|r:|cff00ccff %s|r ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(2019, '|cff00ff00Last change|r:|cff00ccff %s ago|r ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(2020, '|cff00ff00Assigned to|r:|cff00ccff %s|r ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(2021, '|cff00ff00Unassigned by|r:|cff00ccff %s|r ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(2022, '|cff00ff00Ticket Message|r: [%s]|r', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(2023, '|cff00ff00GM Comment|r: [%s]|r', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(2024, '|cff00ccff%s|r |cff00ff00Added comment|r: [%s]|r', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(2025, '|cff00ff00Created|r:|cff00ccff %s ago|r ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(5000, 'You froze player %s.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(5001, 'It might be amusing but no... you cant freeze yourself!', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(5002, 'Invalid input check the name of target.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(5003, 'You unfroze player %s.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(5004, 'There are no frozen players.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(5005, 'Following players are frozen on the server:', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(5006, '- %s', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(5007, 'You must be in a raid group to enter this instance.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(5008, 'This instance is closed.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(5009, 'Sound %u Played to server', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(5010, 'linkGUID: %u, Entry: %u (%s)', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(5011, 'You can''t teleport self to self!', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(5012, 'No maps found!', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(5013, '[Continent]', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(5014, '[Instance]', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(5015, '[Battleground]', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(5016, '[Arena]', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(5017, '[Raid reset time: %s]', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(5018, '[Heroic reset time: %s]', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(5019, '[Mountable]', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(5020, 'Phasemask: %u', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(5021, 'Armor: %u', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(5022, 'Granting ownership to first person that joins the channel \"%s\": Enabled.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(5023, 'Granting ownership to first person that joins the channel \"%s\": Disabled.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(5024, 'Entry: %u', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(5025, 'Type: %u', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(5026, 'DisplayID: %u', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(5027, 'Name: %s', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(5028, 'Lootid: %u', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(5029, 'Result limit reached (max results: %d)', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(6604, 'You cannot say, yell or emote until you become level %d.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(6605, 'You cannot whisper until you become level %d.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(6606, 'You cannot write to channels until you become level %d.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(6607, 'You cannot use auction until you become level %d.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(6608, 'You cannot write tickets until you become level %d.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(6609, 'You cannot trade until you become level %d.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(6610, 'You cannot trade with characters lower than level %d.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(6611, 'You cannot send mail until you become level %d.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(6612, 'You cannot send mail to characters lower than level %d.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(6613, '|cfff00000[GM Announcement]: %s|r', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(6614, 'Notification to GM''s - ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(6615, '|cffffff00[|c1f40af20GM Announce by|r |cffff0000%s|cffffff00]:|r %s|r', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(6616, 'Silence is ON for %s', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(7523, 'WORLD: Denying connections.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(7524, 'WORLD: Accepting connections.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(10001, 'The Horde has taken The Overlook!', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(10002, 'The Alliance has taken The Overlook!', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(10003, 'The Horde has taken The Stadium!', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(10004, 'The Alliance has taken The Stadium!', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(10005, 'The Horde has taken Broken Hill!', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(10006, 'The Alliance has taken Broken Hill!', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(10007, 'The Horde lost The Overlook!', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(10008, 'The Alliance lost The Overlook!', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(10009, 'The Horde lost The Stadium!', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(10010, 'The Alliance lost The Stadium!', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(10011, 'The Horde lost Broken Hill!', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(10012, 'The Alliance lost Broken Hill!', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(10013, 'The Horde has taken the West Beacon!', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(10014, 'The Alliance has taken the West Beacon!', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(10015, 'The Horde has taken the East Beacon!', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(10016, 'The Alliance has taken the East Beacon!', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(10017, 'The Horde has captured the Twin Spire Graveyard!', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(10018, 'The Alliance has captured the Twin Spire Graveyard!', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(10019, 'The Horde lost the West Beacon!', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(10020, 'The Alliance lost the West Beacon!', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(10021, 'The Horde lost the East Beacon!', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(10022, 'The Alliance lost the East Beacon!', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(10023, 'The Horde lost the Twin Spire Graveyard!', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(10024, 'The Alliance lost the Twin Spire Graveyard!', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(10025, 'The Horde has captured Halaa!', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(10026, 'The Alliance has captured Halaa!', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(10027, 'The Horde lost Halaa!', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(10028, 'The Alliance lost Halaa!', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(10029, 'The Horde has taken a Spirit Tower!', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(10030, 'The Alliance has taken a Spirit Tower!', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(10031, 'The Horde lost a Spirit Tower!', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(10032, 'The Alliance lost a Spirit Tower!', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(10033, 'The Horde has taken the Northpass Tower!', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(10034, 'The Alliance has taken the Northpass Tower!', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(10035, 'The Horde has taken the Eastwall Tower!', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(10036, 'The Alliance has taken the Eastwall Tower!', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(10037, 'The Horde has taken the Crown Guard Tower!', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(10038, 'The Alliance has taken the Crown Guard Tower!', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(10039, 'The Horde has taken the Plaguewood Tower!', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(10040, 'The Alliance has taken the Plaguewood Tower!', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(10041, 'The Horde lost the Northpass Tower!', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(10042, 'The Alliance lost the Northpass Tower!', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(10043, 'The Horde lost the Eastwall Tower!', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(10044, 'The Alliance lost the Eastwall Tower!', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(10045, 'The Horde lost the Crown Guard Tower!', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(10046, 'The Alliance lost the Crown Guard Tower!', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(10047, 'The Horde lost the Plaguewood Tower!', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(10048, 'The Alliance lost the Plaguewood Tower!', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(10049, 'The Horde has collected 200 silithyst!', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(10050, 'The Alliance has collected 200 silithyst!', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(10051, 'Take me to Northpass Tower.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(10052, 'Take me to Eastwall Tower.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(10053, 'Take me to Crown Guard Tower.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(10054, 'Give me the flag, I''ll take it to the central beacon for the glory of the Alliance!', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(10055, 'Give me the flag, I''ll take it to the central beacon for the glory of the Horde!', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(10056,'The battle for Strand of the Ancients begins in 2 minutes.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
-(10057,'The battle for Strand of the Ancients begins in 1 minute.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
-(10058,'The battle for Strand of the Ancients begins in 30 seconds. Prepare yourselves!.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
-(10059,'Let the battle for Strand of the Ancients begin!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
-(10060,'The %s is under attack!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
-(10061,'The %s was destroyed!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
-(10062,'Round 1 - finished!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
-(10063,'The Alliance captured the titan portal!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
-(10064,'The Horde captured the titan portal!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
-(10065,'Round 2 of the Battle for the Strand of the Ancients begins in 1 minute.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
-(10066,'Round 2 begins in 30 seconds. Prepare yourselves!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
-(10067,'The chamber has been breached! The titan relic is vulnerable!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
-(10068,'The Alliance captured the South Graveyard!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
-(10069,'The Alliance captured the West Graveyard!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
-(10070,'The Alliance captured the East Graveyard!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
-(10071,'The Horde captured the South Graveyard!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
-(10072,'The Horde captured the West Graveyard!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
-(10073,'The Horde captured the East Graveyard!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
-(11000, '|cffffff00[|c00077766Autobroadcast|cffffff00]: |cFFF222FF%s|r', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-(11001, 'You have not chosen -1 or the current realmID that you are on.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
-/*!40000 ALTER TABLE `trinity_string` ENABLE KEYS */;
-UNLOCK TABLES;
-
---
--- Table structure for table `vehicle_template_accessory`
---
-
-DROP TABLE IF EXISTS `vehicle_template_accessory`;
-/*!40101 SET @saved_cs_client = @@character_set_client */;
-/*!40101 SET character_set_client = utf8 */;
-CREATE TABLE `vehicle_template_accessory` (
- `entry` MEDIUMINT(8) UNSIGNED NOT NULL DEFAULT 0,
- `accessory_entry` MEDIUMINT(8) UNSIGNED NOT NULL DEFAULT 0,
- `seat_id` TINYINT(1) SIGNED NOT NULL DEFAULT 0,
- `minion` TINYINT(1) UNSIGNED NOT NULL DEFAULT 0,
- `description` TEXT NOT NULL,
- PRIMARY KEY (`entry`, `seat_id`)
-)
-COLLATE=utf8_general_ci
-ENGINE=MyISAM
-ROW_FORMAT=FIXED
-AVG_ROW_LENGTH=0;
-/*!40101 SET character_set_client = @saved_cs_client */;
-
---
--- Dumping data for table `vehicle_template_accessory`
---
-
-LOCK TABLES `vehicle_template_accessory` WRITE;
-/*!40000 ALTER TABLE `vehicle_template_accessory` DISABLE KEYS */;
-INSERT INTO `vehicle_template_accessory` VALUES
-(36476,36477,0,0, 'Krick and Ick'),
-(36661,36658,0,0, 'Scourgelord Tyrannus and Rimefang'),
-(36891,31260,0,0, 'Ymirjar Skycaller on Drake'),
-(36678,38309,0,1, 'Professor Putricide - trigger'),
-(36678,38308,1,1, 'Professor Putricide - trigger');
-/*!40000 ALTER TABLE `vehicle_template_accessory` ENABLE KEYS */;
-UNLOCK TABLES;
-
---
--- Table structure for table `vehicle_accessory`
---
-
-DROP TABLE IF EXISTS `vehicle_accessory`;
-/*!40101 SET @saved_cs_client = @@character_set_client */;
-/*!40101 SET character_set_client = utf8 */;
-CREATE TABLE `vehicle_accessory` (
- `guid` MEDIUMINT(8) UNSIGNED NOT NULL DEFAULT 0,
- `accessory_entry` MEDIUMINT(8) UNSIGNED NOT NULL DEFAULT 0,
- `seat_id` TINYINT(1) SIGNED NOT NULL DEFAULT 0,
- `minion` TINYINT(1) UNSIGNED NOT NULL DEFAULT 0,
- `description` TEXT NOT NULL,
- PRIMARY KEY (`accessory_entry`, `seat_id`)
-)
-COLLATE=utf8_general_ci
-ENGINE=MyISAM
-ROW_FORMAT=FIXED
-AVG_ROW_LENGTH=0;
-/*!40101 SET character_set_client = @saved_cs_client */;
-
---
--- Dumping data for table `vehicle_accessory`
---
-
-LOCK TABLES `vehicle_accessory` WRITE;
-/*!40000 ALTER TABLE `vehicle_accessory` DISABLE KEYS */;
-/*!40000 ALTER TABLE `vehicle_accessory` ENABLE KEYS */;
-UNLOCK TABLES;
-
---
--- Table structure for table `version`
---
-
-DROP TABLE IF EXISTS `version`;
-/*!40101 SET @saved_cs_client = @@character_set_client */;
-/*!40101 SET character_set_client = utf8 */;
-CREATE TABLE `version` (
- `core_version` varchar(120) DEFAULT NULL COMMENT 'Core revision dumped at startup.',
- `core_revision` varchar(120) DEFAULT NULL,
- `db_version` varchar(120) DEFAULT NULL COMMENT 'Version of world DB.',
- `script_version` varchar(120) DEFAULT NULL COMMENT 'Version of scripts DB.',
- `cache_id` int(10) DEFAULT '0'
-) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Version Notes';
-/*!40101 SET character_set_client = @saved_cs_client */;
-
---
--- Dumping data for table `version`
---
-
-LOCK TABLES `version` WRITE;
-/*!40000 ALTER TABLE `version` DISABLE KEYS */;
-/*!40000 ALTER TABLE `version` ENABLE KEYS */;
-UNLOCK TABLES;
-
---
--- Table structure for table `waypoints`
---
-
-DROP TABLE IF EXISTS `waypoints`;
-/*!40101 SET @saved_cs_client = @@character_set_client */;
-/*!40101 SET character_set_client = utf8 */;
-CREATE TABLE `waypoints` (
- `entry` mediumint(8) unsigned NOT NULL DEFAULT '0',
- `pointid` mediumint(8) unsigned NOT NULL DEFAULT '0',
- `position_x` float NOT NULL DEFAULT '0',
- `position_y` float NOT NULL DEFAULT '0',
- `position_z` float NOT NULL DEFAULT '0',
- `point_comment` text,
- PRIMARY KEY (`entry`,`pointid`)
-) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Creature waypoints';
-/*!40101 SET character_set_client = @saved_cs_client */;
-
---
--- Dumping data for table `waypoints`
---
-
-LOCK TABLES `waypoints` WRITE;
-/*!40000 ALTER TABLE `waypoints` DISABLE KEYS */;
-/*!40000 ALTER TABLE `waypoints` ENABLE KEYS */;
-UNLOCK TABLES;
-
---
--- Table structure for table `waypoint_data`
---
-
-DROP TABLE IF EXISTS `waypoint_data`;
-/*!40101 SET @saved_cs_client = @@character_set_client */;
-/*!40101 SET character_set_client = utf8 */;
-CREATE TABLE `waypoint_data` (
- `id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Creature GUID',
- `point` mediumint(8) unsigned NOT NULL DEFAULT '0',
- `position_x` float NOT NULL DEFAULT '0',
- `position_y` float NOT NULL DEFAULT '0',
- `position_z` float NOT NULL DEFAULT '0',
- `delay` int(10) unsigned NOT NULL DEFAULT '0',
- `move_flag` tinyint(1) NOT NULL DEFAULT '0',
- `action` int(11) NOT NULL DEFAULT '0',
- `action_chance` smallint(3) NOT NULL DEFAULT '100',
- `wpguid` int(11) NOT NULL DEFAULT '0'
-) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-/*!40101 SET character_set_client = @saved_cs_client */;
-
---
--- Dumping data for table `waypoint_data`
---
-
-LOCK TABLES `waypoint_data` WRITE;
-/*!40000 ALTER TABLE `waypoint_data` DISABLE KEYS */;
-/*!40000 ALTER TABLE `waypoint_data` ENABLE KEYS */;
-UNLOCK TABLES;
-
---
--- Table structure for table `waypoint_scripts`
---
-
-DROP TABLE IF EXISTS `waypoint_scripts`;
-/*!40101 SET @saved_cs_client = @@character_set_client */;
-/*!40101 SET character_set_client = utf8 */;
-CREATE TABLE `waypoint_scripts` (
- `id` int(11) unsigned NOT NULL DEFAULT '0',
- `delay` int(11) unsigned NOT NULL DEFAULT '0',
- `command` int(11) unsigned NOT NULL DEFAULT '0',
- `datalong` int(11) unsigned NOT NULL DEFAULT '0',
- `datalong2` int(11) unsigned NOT NULL DEFAULT '0',
- `dataint` int(11) unsigned NOT NULL DEFAULT '0',
- `x` float NOT NULL DEFAULT '0',
- `y` float NOT NULL DEFAULT '0',
- `z` float NOT NULL DEFAULT '0',
- `o` float NOT NULL DEFAULT '0',
- `guid` int(11) NOT NULL DEFAULT '0',
- PRIMARY KEY (`guid`)
-) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-/*!40101 SET character_set_client = @saved_cs_client */;
-
---
--- Dumping data for table `waypoint_scripts`
---
-
-LOCK TABLES `waypoint_scripts` WRITE;
-/*!40000 ALTER TABLE `waypoint_scripts` DISABLE KEYS */;
-/*!40000 ALTER TABLE `waypoint_scripts` ENABLE KEYS */;
-UNLOCK TABLES;
-/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
-
-/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
-/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
-/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
-/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
-/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
-/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
-/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
-
--- Dump completed on 2009-12-18 17:18:11
diff --git a/sql/scripts/world_script_texts.sql b/sql/scripts/world_script_texts.sql
deleted file mode 100644
index ae8a46e0607..00000000000
--- a/sql/scripts/world_script_texts.sql
+++ /dev/null
@@ -1,3234 +0,0 @@
--- Up to TC 11181
---
--- trinityscript_script_texts.sql Contains data for table `script_texts` mainly used in C++ parts.
--- valid entries for table are between -1000000 and -1999999
---
-
--- ALTER TABLE `script_texts` ADD COLUMN `npc_entry` mediumint(8) NOT NULL DEFAULT 0 COMMENT 'creature_template entry' FIRST;
-/*
-DROP TABLE IF EXISTS `script_texts`;
-CREATE TABLE `script_texts` (
- `npc_entry` mediumint(8) NOT NULL default '0' COMMENT 'creature_template entry',
- `entry` mediumint(8) NOT NULL,
- `content_default` text NOT NULL,
- `content_loc1` text,
- `content_loc2` text,
- `content_loc3` text,
- `content_loc4` text,
- `content_loc5` text,
- `content_loc6` text,
- `content_loc7` text,
- `content_loc8` text,
- `sound` mediumint(8) unsigned NOT NULL default '0',
- `type` tinyint(3) unsigned NOT NULL default '0',
- `language` tinyint(3) unsigned NOT NULL default '0',
- `emote` smallint(5) unsigned NOT NULL default '0',
- `comment` text,
- PRIMARY KEY (`npc_entry`,`entry`)
-) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Script Texts';
-*/
---
--- -1 000 000 First 100 entries are reserved for special use, do not add regular text here.
---
-DELETE FROM `script_texts` WHERE entry BETWEEN -1999925 AND -1000000;
-INSERT INTO `script_texts` (`npc_entry`,`entry`,`content_default`,`content_loc1`,`content_loc2`,`content_loc3`,`content_loc4`,`content_loc5`,`content_loc6`,`content_loc7`,`content_loc8`,`sound`,`type`,`language`,`emote`,`comment`) VALUES
- (0,-1000000,'<TrinityScript Text Entry Missing!>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'DEFAULT_TEXT'),
- (0,-1000001,'%s goes into a killing frenzy!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,2,0,0,'EMOTE_GENERIC_FRENZY_KILL'),
- (0,-1000002,'%s goes into a frenzy!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,2,0,0,'EMOTE_GENERIC_FRENZY'),
- (0,-1000003,'%s becomes enraged!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,2,0,0,'EMOTE_GENERIC_ENRAGED'),
- (0,-1000004,'%s goes into a berserker rage!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,2,0,0,'EMOTE_GENERIC_BERSERK'),
- (0,-1000005,'%s goes into a berserker rage!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,3,0,0,'EMOTE_GENERIC_BERSERK_RAID'),
-
---
--- Normal text entries. Say/Yell/Whisper/Emote for any regular world object.
---
-
--- -1 000 100 GENERAL MAPS (not typical instance maps)
- (6109,-1000100,'Come, little ones. Face me!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,0,0,'azuregos SAY_TELEPORT'),
- (467,-1000101,'Follow me, $N. I''ll take you to the Defias hideout. But you better protect me or I am as good as dead.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,7,0,'defias traitor SAY_START'),
- (467,-1000102,'The entrance is hidden here in Moonbrook. Keep your eyes peeled for thieves. They want me dead.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,7,0,'defias traitor SAY_PROGRESS'),
- (467,-1000103,'You can go tell Stoutmantle this is where the Defias Gang is holed up, $N.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,7,0,'defias traitor SAY_END'),
- (467,-1000104,'%s coming in fast! Prepare to fight!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,7,0,'defias traitor SAY_AGGRO_1'),
- (467,-1000105,'Help!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,7,0,'defias traitor SAY_AGGRO_2'),
- (12858,-1000106,'Everyone ready?',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,1,0,'torek SAY_READY'),
- (12858,-1000107,'Ok, Lets move out!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,1,0,'torek SAY_MOVE'),
- (12858,-1000108,'Prepare yourselves. Silverwing is just around the bend.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,1,0,'torek SAY_PREPARE'),
- (12858,-1000109,'Silverwing is ours!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,1,0,'torek SAY_WIN'),
- (12858,-1000110,'Go report that the outpost is taken. We will remain here.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,1,0,'torek SAY_END'),
- (17312,-1000111,'Our house is this way, through the thicket.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,7,0,'magwin SAY_START'),
- (17312,-1000112,'Help me!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,7,0,'magwin SAY_AGGRO'),
- (17312,-1000113,'My poor family. Everything has been destroyed.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,7,0,'magwin SAY_PROGRESS'),
- (17312,-1000114,'Father! Father! You''re alive!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,7,0,'magwin SAY_END1'),
- (17312,-1000115,'You can thank $N for getting me back here safely, father.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,7,0,'magwin SAY_END2'),
- (17312,-1000116,'hugs her father.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,2,7,0,'magwin EMOTE_HUG'),
- (16993,-1000117,'Thank you for agreeing to help. Now, let''s get out of here $N.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,1,0,'wounded elf SAY_ELF_START'),
- (16993,-1000118,'Over there! They''re following us!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,1,0,'wounded elf SAY_ELF_SUMMON1'),
- (16993,-1000119,'Allow me a moment to rest. The journey taxes what little strength I have.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,1,16,'wounded elf SAY_ELF_RESTING'),
- (16993,-1000120,'Did you hear something?',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,1,0,'wounded elf SAY_ELF_SUMMON2'),
- (16993,-1000121,'Falcon Watch, at last! Now, where''s my... Oh no! My pack, it''s missing! Where has -',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,1,0,'wounded elf SAY_ELF_COMPLETE'),
- (16993,-1000122,'You won''t keep me from getting to Falcon Watch!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,1,0,'wounded elf SAY_ELF_AGGRO'),
- (0,-1000123,'Ready when you are, $c.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,15,'big will SAY_BIG_WILL_READY'),
- (0,-1000124,'The Affray has begun. $n, get ready to fight!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'twiggy SAY_TWIGGY_BEGIN'),
- (0,-1000125,'You! Enter the fray!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'twiggy SAY_TWIGGY_FRAY'),
- (0,-1000126,'Challenger is down!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'twiggy SAY_TWIGGY_DOWN'),
- (0,-1000127,'The Affray is over.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'twiggy SAY_TWIGGY_OVER'),
- (19831,-1000128,'We need you to send reinforcements to Manaforge Duro, Ardonis. This is not a request, it''s an order.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'dawnforge SAY_COMMANDER_DAWNFORGE_1'),
- (19831,-1000129,'You cannot be serious! We are severely understaffed and can barely keep this manaforge functional!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'dawnforge SAY_ARCANIST_ARDONIS_1'),
- (19831,-1000130,'You will do as ordered. Manaforge Duro has come under heavy attack by mana creatures and the situation is out of control. Failure to comply will not be tolerated!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'dawnforge SAY_COMMANDER_DAWNFORGE_2'),
- (19831,-1000131,'Indeed, it is not a request.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'dawnforge SAY_PATHALEON_CULATOR_IMAGE_1'),
- (19831,-1000132,'My lord!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'dawnforge SAY_COMMANDER_DAWNFORGE_3'),
- (19831,-1000133,'Duro will be reinforced! Ultris was a complete disaster. I will NOT have that mistake repeated!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'dawnforge PATHALEON_CULATOR_IMAGE_2'),
- (19831,-1000134,'We''ve had too many setbacks along the way: Hellfire Citadel, Fallen Sky Ridge, Firewing Point... Prince Kael''thas will tolerate no further delays. I will tolerate nothing other than complete success!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'dawnforge PATHALEON_CULATOR_IMAGE_2_1'),
- (19831,-1000135,'I am returning to Tempest Keep. See to it that I do not have reason to return!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'dawnforge PATHALEON_CULATOR_IMAGE_2_2'),
- (19831,-1000136,'Yes, my lord.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'dawnforge COMMANDER_DAWNFORGE_4 SAY_ARCANIST_ARDONIS_2'),
- (19831,-1000137,'See to it, Ardonis!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'dawnforge COMMANDER_DAWNFORGE_5'),
- (17085,-1000138,'Avruu''s magic... it still controls me. You must fight me, mortal. It''s the only way to break the spell!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'aeranas SAY_SUMMON'),
- (17085,-1000139,'Avruu''s magic is broken! I''m free once again!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'aeranas SAY_FREE'),
- (16295,-1000140,'Let''s go.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,1,0,'lilatha SAY_START'),
- (16295,-1000141,'$N, let''s use the antechamber to the right.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,1,0,'lilatha SAY_PROGRESS1'),
- (16295,-1000142,'I can see the light at the end of the tunnel!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,1,0,'lilatha SAY_PROGRESS2'),
- (16295,-1000143,'There''s Farstrider Enclave now, $C. Not far to go... Look out! Troll ambush!!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,1,0,'lilatha SAY_PROGRESS3'),
- (16295,-1000144,'Thank you for saving my life and bringing me back to safety, $N',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,1,0,'lilatha SAY_END1'),
- (16295,-1000145,'Captain Helios, I''ve been rescued from the Amani Catacombs. Reporting for duty, sir!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,1,0,'lilatha SAY_END2'),
- (16295,-1000146,'Liatha, get someone to look at those injuries. Thank you for bringing her back safely.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,1,0,'lilatha CAPTAIN_ANSWER'),
- (12429,-1000168,'Who dares awaken Aquementas?',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,0,0,'aquementas AGGRO_YELL_AQUE'),
- (12429,-1000169,'Muahahahaha! You fool! You''ve released me from my banishment in the interstices between space and time!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,0,0,'nether_drake SAY_NIHIL_1'),
- (12429,-1000170,'All of Draenor shall quick beneath my feet! I will destroy this world and reshape it in my image!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,0,0,'nether_drake SAY_NIHIL_2'),
- (12429,-1000171,'Where shall I begin? I cannot bother myself with a worm such as yourself. There is a world to be conquered!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,0,0,'nether_drake SAY_NIHIL_3'),
- (12429,-1000172,'No doubt the fools that banished me are long dead. I shall take wing survey my demense. Pray to whatever gods you hold dear that we do not meet again.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,0,0,'nether_drake SAY_NIHIL_4'),
- (12429,-1000173,'NOOOOooooooo!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,0,0,'nether_drake SAY_NIHIL_INTERRUPT'),
- (21469,-1000174,'Good $N, you are under the spell''s influence. I must analyze it quickly, then we can talk.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,7,0,'daranelle SAY_SPELL_INFLUENCE'),
- (0,-1000175,'Thank you, mortal.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,11,0,' SAY_JUST_EATEN'),
- (0,-1000176,'The last thing I remember is the ship falling and us getting into the pods. I''ll go see how I can help. Thank you!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,7,0,'draenei_survivor SAY_HEAL1'),
- (0,-1000177,'$C, Where am I? Who are you? Oh no! What happened to the ship?',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,7,0,'draenei_survivor SAY_HEAL2'),
- (0,-1000178,'$C You saved me! I owe you a debt that I can never repay. I''ll go see if I can help the others.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,7,0,'draenei_survivor SAY_HEAL3'),
- (0,-1000179,'Ugh... what is this place? Is that all that''s left of the ship over there?',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,7,0,'draenei_survivor SAY_HEAL4'),
- (0,-1000180,'Oh, the pain...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,7,0,'draenei_survivor SAY_HELP1'),
- (0,-1000181,'Everything hurts, Please make it stop...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,7,0,'draenei_survivor SAY_HELP2'),
- (0,-1000182,'Ughhh... I hurt. Can you help me?',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,7,0,'draenei_survivor SAY_HELP3'),
- (0,-1000183,'I don''t know if I can make it, please help me...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,7,0,'draenei_survivor SAY_HELP4'),
- (0,-1000184,'Yes Master, all goes along as planned.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,7,0,'engineer_spark SAY_TEXT'),
- (0,-1000185,'%s puts the shell to his ear.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,2,7,0,'engineer_spark EMOTE_SHELL'),
- (0,-1000186,'Now I cut you!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,7,0,'engineer_spark SAY_ATTACK'),
- (0,-1000188,'Deployment sucessful. Trespassers will be neutralized.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'converted_sentry SAY_CONVERTED_1'),
- (0,-1000189,'Objective acquired. Initiating security routines.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'converted_sentry SAY_CONVERTED_2'),
- (0,-1000190,'In Nagrand, food hunt ogre!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,' SAY_LUMP_0'),
- (0,-1000191,'You taste good with maybe a little salt and pepper.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,' SAY_LUMP_1'),
- (0,-1000192,'OK, OK! Lump give up!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,' SAY_LUMP_DEFEAT'),
- (0,-1000193,'Thank you, dear $C, you just saved my life.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,1,0,'stillblade SAY_HEAL'),
- (0,-1000194,'I give up! Please don''t kill me!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'unkor SAY_SUBMIT'),
- (0,-1000195,'I choose the third option: KILLING YOU!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'floon SAY_FLOON_ATTACK'),
- (0,-1000196,'Belore...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,1,0,'lady_sylvanas SAY_LAMENT_END'),
- (0,-1000197,'%s kneels down and pick up the amulet.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,2,1,0,'lady_sylvanas EMOTE_LAMENT_END'),
- (0,-1000198,'Taste blade, mongrel!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'SAY_GUARD_SIL_AGGRO1'),
- (0,-1000199,'Please tell me that you didn''t just do what I think you just did. Please tell me that I''m not going to have to hurt you...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'SAY_GUARD_SIL_AGGRO2'),
- (9623,-1000200,'As if we don''t have enough problems, you go and create more!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'SAY_GUARD_SIL_AGGRO3'),
- (9623,-1000201,'I''m saved! Thank you, doctor!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'injured_patient SAY_DOC1'),
- (9623,-1000202,'HOORAY! I AM SAVED!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'injured_patient SAY_DOC2'),
- (9623,-1000203,'Sweet, sweet embrace... take me...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'injured_patient SAY_DOC3'),
- (9623,-1000204,'%s looks up at you quizzically. Maybe you should inspect it?',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,2,0,0,'cluck EMOTE_A_HELLO'),
- (9623,-1000205,'%s looks at you unexpectadly.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,2,0,0,'cluck EMOTE_H_HELLO'),
- (23139,-1000206,'%s starts pecking at the feed.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,2,0,0,'cluck EMOTE_CLUCK_TEXT2'),
- (23139,-1000207,'You have my blessing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'ashyen_and_keleth SAY_REWARD_BLESS'),
- (28315,-1000208,'Frenzyheart kill you if you come back. You no welcome here no more!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'vekjik SAY_TEXTID_VEKJIK1'),
- (15420,-1000209,'Very well. Let''s see what you have to show me, $N.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,1,0,'anvilward SAY_ANVIL1'),
- (15420,-1000210,'What manner of trick is this, $R? If you seek to ambush me, I warn you I will not go down quietly!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,1,0,'anvilward SAY_ANVIL2'),
- (23139,-1000211,'Warning! %s emergency shutdown process initiated by $N. Shutdown will complete in two minutes.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,2,0,0,'manaforge_control EMOTE_START'),
- (23139,-1000212,'Emergency shutdown will complete in one minute.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,2,0,0,'manaforge_control EMOTE_60'),
- (23139,-1000213,'Emergency shutdown will complete in thirty seconds.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,2,0,0,'manaforge_control EMOTE_30'),
- (22083,-1000214,'Emergency shutdown will complete in ten seconds.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,2,0,0,'manaforge_control EMOTE_10'),
- (22083,-1000215,'Emergency shutdown complete.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,2,0,0,'manaforge_control EMOTE_COMPLETE'),
- (22083,-1000216,'Emergency shutdown aborted.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,2,0,0,'manaforge_control EMOTE_ABORT'),
- (22083,-1000217,'Greetings, $N. I will guide you through the cavern. Please try and keep up.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,3,0,0,'WHISPER_CUSTODIAN_1'),
- (22083,-1000218,'We do not know if the Caverns of Time have always been accessible to mortals. Truly, it is impossible to tell as the Timeless One is in perpetual motion, changing our timeways as he sees fit. What you see now may very well not exist tomorrow. You may wake up and have no memory of this place.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,3,0,0,'WHISPER_CUSTODIAN_2'),
- (22083,-1000219,'It is strange, I know... Most mortals cannot actually comprehend what they see here, as often, what they see is not anchored within their own perception of reality.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,3,0,0,'WHISPER_CUSTODIAN_3'),
- (22083,-1000220,'Follow me, please.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,3,0,0,'WHISPER_CUSTODIAN_4'),
- (23141,-1000221,'There are only two truths to be found here: First, that time is chaotic, always in flux, and completely malleable and second, perception does not dictate reality.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,3,0,0,'WHISPER_CUSTODIAN_5'),
- (21648,-1000222,'As custodians of time, we watch over and care for Nozdormu''s realm. The master is away at the moment, which means that attempts are being made to dramatically alter time. The master never meddles in the affairs of mortals but instead corrects the alterations made to time by others. He is reactionary in this regard.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,3,0,0,'WHISPER_CUSTODIAN_6'),
- (0,-1000223,'For normal maintenance of time, the Keepers of Time are sufficient caretakers. We are able to deal with most ordinary disturbances. I speak of little things, such as rogue mages changing something in the past to elevate their status or wealth in the present.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,3,0,0,'WHISPER_CUSTODIAN_7'),
- (0,-1000224,'These tunnels that you see are called timeways. They are infinite in number. The ones that currently exist in your reality are what the master has deemed as ''trouble spots.'' These trouble spots may differ completely in theme but they always share a cause. That is, their existence is a result of the same temporal disturbance. Remember that should you venture inside one...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,3,0,0,'WHISPER_CUSTODIAN_8'),
- (0,-1000225,'This timeway is in great disarray! We have agents inside right now attempting to restore order. What information I have indicates that Thrall''s freedom is in jeopardy. A malevolent organization known as the Infinite Dragonflight is trying to prevent his escape. I fear without outside assistance, all will be lost.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,3,0,0,'WHISPER_CUSTODIAN_9'),
- (0,-1000226,'We have very little information on this timeway. Sa''at has been dispatched and is currently inside. The data we have gathered from his correspondence is that the Infinite Dragonflight are once again attempting to alter time. Could it be that the opening of the Dark Portal is being targeted for sabotage? Let us hope not...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,3,0,0,'WHISPER_CUSTODIAN_10'),
- (0,-1000227,'This timeway is currently collapsing. What that may hold for the past, present and future is currently unknown...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,3,0,0,'WHISPER_CUSTODIAN_11'),
- (0,-1000228,'The timeways are currently ranked in order from least catastrophic to most catastrophic. Note that they are all classified as catastrophic, meaning that any single one of these timeways collapsing would mean that your world would end. We only classify them in such a way so that the heroes and adventurers that are sent here know which timeway best suits their abilities.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,3,0,0,'WHISPER_CUSTODIAN_12'),
- (0,-1000229,'All we know of this timeway is that it leads to Mount Hyjal. The Infinite Dragonflight have gone to great lengths to prevent our involvement. We know next to nothing, mortal. Soridormi is currently attempting to break through the timeway''s defenses but has thus far been unsuccessful. You might be our only hope of breaking through and resolving the conflict.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,3,0,0,'WHISPER_CUSTODIAN_13'),
- (0,-1000230,'Our time is at an end $N. I would wish you luck, if such a thing existed.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,3,0,0,'WHISPER_CUSTODIAN_14'),
- (0,-1000231,'Ah, $GPriest:Priestess; you came along just in time. I appreciate it.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,20,'garments SAY_COMMON_HEALED'),
- (0,-1000232,'Thank you! Thank you, $GPriest:Priestess;. Now I can take on those gnolls with your power to back me!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,1,4,'garments SAY_DG_KEL_THANKS'),
- (0,-1000233,'Farewell to you, and may shadow always protect you!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,1,3,'garments SAY_DG_KEL_GOODBYE'),
- (0,-1000234,'Follow me, stranger. This won''t take long.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'SAY_KHAD_SERV_0'),
- (2768,-1000235,'Shattrath was once the draenei capital of this world. Its name means "dwelling of light."',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,4,0,0,'SAY_KHAD_SERV_1'),
- (2768,-1000236,'When the Burning Legion turned the orcs against the draenei, the fiercest battle was fought here. The draenei fought tooth and nail, but in the end the city fell.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,4,0,0,'SAY_KHAD_SERV_2'),
- (2768,-1000237,'The city was left in ruins and darkness... until the Sha''tar arrived.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,4,0,0,'SAY_KHAD_SERV_3'),
- (2768,-1000238,'Let us go into the Lower City. I will warn you that as one of the only safe havens in Outland, Shattrath has attracted droves of refugees from all wars, current and past.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,4,0,0,'SAY_KHAD_SERV_4'),
- (2768,-1000239,'The Sha''tar, or "born from light" are the naaru that came to Outland to fight the demons of the Burning Legion.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,4,0,0,'SAY_KHAD_SERV_5'),
- (2768,-1000240,'They were drawn to the ruins of Shattrath City where a small remnant of the draenei priesthood conducted its rites inside a ruined temple on this very spot.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,4,0,0,'SAY_KHAD_SERV_6'),
- (2768,-1000241,'The priesthood, known as the Aldor, quickly regained its strength as word spread that the naaru had returned and reconstruction soon began. The ruined temple is now used as an infirmary for injured refugees.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,4,0,0,'SAY_KHAD_SERV_7'),
- (2768,-1000242,'It wouldn''t be long, however, before the city came under attack once again. This time, the attack came from Illidan''s armies. A large regiment of blood elves had been sent by Illidan''s ally, Kael''thas Sunstrider, to lay waste to the city.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,4,0,0,'SAY_KHAD_SERV_8'),
- (2768,-1000243,'As the regiment of blood elves crossed this very bridge, the Aldor''s exarchs and vindicators lined up to defend the Terrace of Light. But then the unexpected happened.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,4,0,0,'SAY_KHAD_SERV_9'),
- (2768,-1000244,'The blood elves laid down their weapons in front of the city''s defenders; their leader, a blood elf elder known as Voren''thal, stormed into the Terrace of Light and demanded to speak to A''dal.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,4,0,0,'SAY_KHAD_SERV_10'),
- (23002,-1000245,'As the naaru approached him, Voren''thal kneeled before him and uttered the following words: "I''ve seen you in a vision, naaru. My race''s only hope for survival lies with you. My followers and I are here to serve you."',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,4,0,0,'SAY_KHAD_SERV_11'),
- (23002,-1000246,'The defection of Voren''thal and his followers was the largest loss ever incurred by Kael''s forces. And these weren''t just any blood elves. Many of the best and brightest amongst Kael''s scholars and magisters had been swayed by Voren''thal''s influence.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,4,0,0,'SAY_KHAD_SERV_12'),
- (23002,-1000247,'The naaru accepted the defectors, who would become known as the Scryers; their dwelling lies in the platform above. Only those initiated with the Scryers are allowed there.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,4,0,0,'SAY_KHAD_SERV_13'),
- (16483,-1000248,'The Aldor are followers of the Light and forgiveness and redemption are values they understand. However, they found hard to forget the deeds of the blood elves while under Kael''s command.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,4,0,0,'SAY_KHAD_SERV_14'),
- (16483,-1000249,'Many of the priesthood had been slain by the same magisters who now vowed to serve the naaru. They were not happy to share the city with their former enemies.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,4,0,0,'SAY_KHAD_SERV_15'),
- (16483,-1000250,'The Aldor''s most holy temple and its surrounding dwellings lie on the terrace above. As a holy site, only the initiated are welcome inside.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,4,0,0,'SAY_KHAD_SERV_16'),
- (16483,-1000251,'The attacks against Shattrath continued, but the city did not fall, as you can see. On the contrary, the naaru known as Xi''ri led a successful incursion into Shadowmoon Valley - Illidan''s doorstep.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,4,0,0,'SAY_KHAD_SERV_17'),
- (16483,-1000252,'There he continues to wage war on Illidan with the assistance of the Aldor and the Scryers. The two factions have not given up on their old feuds, though.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,4,0,0,'SAY_KHAD_SERV_18'),
- (16483,-1000253,'Such is their animosity that they vie for the honor of being sent to assist the naaru there. Each day, that decision is made here by A''dal. The armies gather here to receive A''dal''s blessing before heading to Shadowmoon.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,4,0,0,'SAY_KHAD_SERV_19'),
- (16483,-1000254,'Khadgar should be ready to see you again. Just remember that to serve the Sha''tar you will most likely have to ally with the Aldor or the Scryers. And seeking the favor of one group will cause the others'' dislike.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,4,0,0,'SAY_KHAD_SERV_20'),
- (16483,-1000255,'Good luck stranger, and welcome to Shattrath City.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,4,0,0,'SAY_KHAD_SERV_21'),
- (17243,-1000256,'Thank you! Thank you, $GPriest:Priestess;. Now I can take on those murlocs with the Light on my side!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,7,4,'garments SAY_ROBERTS_THANKS'),
- (17243,-1000257,'Farewell to you, and may the Light be with you always.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,7,3,'garments SAY_ROBERTS_GOODBYE'),
- (17243,-1000258,'Thank you! Thank you, $GPriest:Priestess;. Now I can take on those humans with your power to back me!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,1,4,'garments SAY_KORJA_THANKS'),
- (17318,-1000259,'Farewell to you, and may our ancestors be with you always!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,1,3,'garments SAY_KORJA_GOODBYE'),
- (17318,-1000260,'Thank you! Thank you, $GPriest:Priestess;. Now I can take on those wendigo with the Light on my side!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,7,4,'garments SAY_DOLF_THANKS'),
- (17318,-1000261,'Farewell to you, and may the Light be with you always.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,7,3,'garments SAY_DOLF_GOODBYE'),
- (17318,-1000262,'Thank you! Thank you, $GPriest:Priestess;. Now I can take on those corrupt timberlings with Elune''s power behind me!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,2,4,'garments SAY_SHAYA_THANKS'),
- (17318,-1000263,'Farewell to you, and may Elune be with you always.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,2,3,'garments SAY_SHAYA_GOODBYE'),
- (17318,-1000264,'Ok, $N. Follow me to the cave where I''ll attempt to harness the power of the rune stone into these goggles.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,1,'phizzlethorpe SAY_PROGRESS_1'),
- (17318,-1000265,'I discovered this cave on our first day here. I believe the energy in the stone can be used to our advantage.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,1,'phizzlethorpe SAY_PROGRESS_2'),
- (17318,-1000266,'I''ll begin drawing energy from the stone. Your job, $N, is to defend me. This place is cursed... trust me.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,1,'phizzlethorpe SAY_PROGRESS_3'),
- (6248,-1000267,'%s begins tinkering with the goggles before the stone.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,2,0,0,'phizzlethorpe EMOTE_PROGRESS_4'),
- (6248,-1000268,'Help!!! Get these things off me so I can get my work done!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'phizzlethorpe SAY_AGGRO'),
- (6248,-1000269,'Almost done! Just a little longer!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,1,'phizzlethorpe SAY_PROGRESS_5'),
- (6248,-1000270,'I''ve done it! I have harnessed the power of the stone into the goggles! Let''s get out of here!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,1,'phizzlethorpe SAY_PROGRESS_6'),
- (6248,-1000271,'Phew! Glad to be back from that creepy cave.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,1,'phizzlethorpe SAY_PROGRESS_7'),
- (3439,-1000272,'%s hands one glowing goggles over to Doctor Draxlegauge.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,2,0,0,'phizzlethorpe EMOTE_PROGRESS_8'),
- (3439,-1000273,'Doctor Draxlegauge will give you further instructions, $N. Many thanks for your help!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,1,'phizzlethorpe SAY_PROGRESS_9'),
- (3439,-1000274,'Time to teach you a lesson in manners, little $Gboy:girl;!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'larry SAY_START'),
- (3439,-1000275,'Now I''m gonna give you to the count of ''3'' to get out of here before I sick the dogs on you.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'larry SAY_COUNT'),
- (3439,-1000276,'1...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'larry SAY_COUNT_1'),
- (3439,-1000277,'2...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'larry SAY_COUNT_2'),
- (3439,-1000278,'Time to meet your maker!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'larry SAY_ATTACK_5'),
- (3439,-1000279,'Alright, we give up! Don''t hurt us!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'larry SAY_GIVEUP'),
- (6172,-1000280,'A shadowy, sinister presence has invaded the Emerald Dream. Its power is poised to spill over into our world, $N. We must oppose it! That''s why I cannot accompany you in person.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,1,'clintar SAY_START'),
- (15420,-1000281,'The Emerald Dream will never be yours!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'clintar SAY_AGGRO_1'),
- (15420,-1000282,'Begone from this place!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'clintar SAY_AGGRO_2'),
- (0,-1000283,'That''s the first relic, but there are still two more. Follow me, $N.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'clintar SAY_RELIC1'),
- (24981,-1000284,'I''ve recovered the second relic. Take a moment to rest, and then we''ll continue to the last reliquary.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'clintar SAY_RELIC2'),
- (0,-1000285,'We have all three of the relics, but my energy is rapidly fading. We must make our way back to Dreamwarden Lurosa! He will let you know what to do next.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'clintar SAY_RELIC3'),
- (22916,-1000286,'Lurosa, I am entrusting the Relics of Aviana to $N, who will take them to Morthis Whisperwing. I must return completely to the Emerald Dream now. Do not let $N fail!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,1,'clintar SAY_END'),
- (7806,-1000287,'Emergency power activated! Initializing ambulanory motor! CLUCK!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'oox SAY_OOX_START'),
- (7806,-1000288,'Physical threat detected! Evasive action! CLUCK!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'oox SAY_OOX_AGGRO1'),
- (7806,-1000289,'Thread analyzed! Activating combat plan beta! CLUCK!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'oox SAY_OOX_AGGRO2'),
- (7806,-1000290,'CLUCK! Sensors detect spatial anomaly - danger imminent! CLUCK!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'oox SAY_OOX_AMBUSH'),
- (7806,-1000291,'No one challanges the Wastewander nomads - not even robotic chickens! ATTACK!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'oox SAY_OOX17_AMBUSH_REPLY'),
- (0,-1000292,'Cloaking systems online! CLUCK! Engaging cloak for transport to Booty Bay!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'oox SAY_OOX_END'),
- (18351,-1000293,'To the house! Stay close to me, no matter what! I have my gun and ammo there!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,7,0,'stilwell SAY_DS_START'),
- (18351,-1000294,'We showed that one!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,7,0,'stilwell SAY_DS_DOWN_1'),
- (18351,-1000295,'One more down!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,7,0,'stilwell SAY_DS_DOWN_2'),
- (20209,-1000296,'We''ve done it! We won!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,7,0,'stilwell SAY_DS_DOWN_3'),
- (20209,-1000297,'Meet me down by the orchard-- I just need to put my gun away.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,7,0,'stilwell SAY_DS_PROLOGUE'),
- (20209,-1000298,'Alright, alright I think I can figure out how to operate this thing...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,393,'wizzlecrank SAY_START'),
- (20209,-1000299,'Arrrgh! This isn''t right!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'wizzlecrank SAY_STARTUP1'),
- (20209,-1000300,'Okay, I think I''ve got it, now. Follow me, $n!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,1,'wizzlecrank SAY_STARTUP2'),
- (20209,-1000301,'There''s the stolen shredder! Stop it or Lugwizzle will have our hides!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,0,0,'wizzlecrank SAY_MERCENARY'),
- (20907,-1000302,'Looks like we''re out of woods, eh? Wonder what this does...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'wizzlecrank SAY_PROGRESS_1'),
- (18879,-1000303,'Come on, don''t break down on me now!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,393,'wizzlecrank SAY_PROGRESS_2'),
- (20415,-1000304,'That was a close one! Well, let''s get going, it''s still a ways to Ratchet!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'wizzlecrank SAY_PROGRESS_3'),
- (20415,-1000305,'Hmm... I don''t think this blinking red light is a good thing...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'wizzlecrank SAY_END'),
- (19685,-1000306,'Let''s get to the others, and keep an eye open for those wolves cutside...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,1,0,'erland SAY_START_1'),
- (19685,-1000307,'Be careful, $N. Those wolves like to hide among the trees.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,1,0,'erland SAY_START_2'),
- (19685,-1000308,'A $C attacks!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,1,0,'erland SAY_AGGRO_1'),
- (19685,-1000309,'Beware! I am under attack!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,1,0,'erland SAY_AGGRO_2'),
- (19685,-1000310,'Oh no! A $C is upon us!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,1,0,'erland SAY_AGGRO_3'),
- (19685,-1000311,'We''re almost there!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,1,0,'erland SAY_PROGRESS'),
- (19685,-1000312,'We made it! Thanks, $N. I couldn''t have gotten without you.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,1,0,'erland SAY_END'),
- (19685,-1000313,'It''s good to see you again, Erland. What is your report?',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,33,1,'erland SAY_RANE'),
- (19685,-1000314,'Masses of wolves are to the east, and whoever lived at Malden''s Orchard is gone.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,1,1,'erland SAY_RANE_REPLY'),
- (19685,-1000315,'If I am excused, then I''d like to check on Quinn...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,1,1,'erland SAY_CHECK_NEXT'),
- (19685,-1000316,'Hello, Quinn. How are you faring?',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,1,1,'erland SAY_QUINN'),
- (19685,-1000317,'I''ve been better. Ivar the Foul got the better of me...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,33,1,'erland SAY_QUINN_REPLY'),
- (19685,-1000318,'Try to take better care of yourself, Quinn. You were lucky this time.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,1,1,'erland SAY_BYE'),
- (19685,-1000319,'Let the trial begin, Bloodwrath, attack!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,'kelerun SayId1'),
- (19685,-1000320,'Champion Lightrend, make me proud!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,'kelerun SayId2'),
- (19685,-1000321,'Show this upstart how a real Blood Knight fights, Swiftblade!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,'kelerun SayId3'),
- (19685,-1000322,'Show $n the meaning of pain, Sunstriker!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,'kelerun SayId4'),
- (19685,-1000323,'Mist! I feared I would never see you again! Yes, I am well, do not worry for me. You must rest and recover your health.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,7,0,'mist SAY_AT_HOME'),
- (19685,-1000324,'%s growls in acknowledgement before straightening and making her way off into the forest.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,2,0,0,'mist EMOTE_AT_HOME'),
- (19685,-1000325,'"Threshwackonator First Mate unit prepared to follow"',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,2,0,0,'threshwackonator EMOTE_START'),
- (19685,-1000326,'YARRR! Swabie, what have ye done?! He''s gone mad! Baton him down the hatches! Hoist the mast! ARRRR! Every man for hi''self!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,7,0,'threshwackonator SAY_AT_CLOSE'),
- (19685,-1000327,'Ok, $n, let''s go find where I left that mysterious fossil. Follow me!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,7,0,'remtravel SAY_REM_START'),
- (19720,-1000328,'Now where did I put that mysterious fossil? Ah, maybe up there...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,7,0,'remtravel SAY_REM_RAMP1_1'),
- (19720,-1000329,'Hrm, nothing up here.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,7,0,'remtravel SAY_REM_RAMP1_2'),
- (19720,-1000330,'No mysterious fossil here... Ah, but my copy of Green Hills of Stranglethorn. What a good book!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,7,0,'remtravel SAY_REM_BOOK'),
- (19720,-1000331,'I bet you I left it in the tent!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,7,0,'remtravel SAY_REM_TENT1_1'),
- (19720,-1000332,'Oh wait, that''s Hollee''s tent... and it''s empty.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,7,0,'remtravel SAY_REM_TENT1_2'),
- (19720,-1000333,'Interesting... I hadn''t noticed this earlier...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,7,0,'remtravel SAY_REM_MOSS'),
- (17768,-1000334,'%s inspects the ancient, mossy stone.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,2,7,0,'remtravel EMOTE_REM_MOSS'),
- (1978,-1000335,'Oh wait! I''m supposed to be looking for that mysterious fossil!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,7,0,'remtravel SAY_REM_MOSS_PROGRESS'),
- (1978,-1000336,'Nope. didn''t leave the fossil back here!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,7,0,'remtravel SAY_REM_PROGRESS'),
- (1978,-1000337,'Ah. I remember now! I gave the mysterious fossil to Hollee! Check with her.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,7,0,'remtravel SAY_REM_REMEMBER'),
- (1978,-1000338,'%s goes back to work, oblivious to everything around him.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,2,7,0,'remtravel EMOTE_REM_END'),
- (1978,-1000339,'Something tells me this $r wants the mysterious fossil too. Help!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,7,0,'remtravel SAY_REM_AGGRO'),
- (1978,-1000340,'%s howls in delight at the sight of his lunch!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,2,0,0,'kyle EMOTE_SEE_LUNCH'),
- (1978,-1000341,'%s eats his lunch.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,2,0,0,'kyle EMOTE_EAT_LUNCH'),
- (1978,-1000342,'%s thanks you with a special dance.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,2,0,0,'kyle EMOTE_DANCE'),
- (1978,-1000343,'Is the way clear? Let''s get out while we can, $N.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'kayra SAY_START'),
- (1978,-1000344,'Looks like we won''t get away so easy. Get ready!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'kayra SAY_AMBUSH1'),
- (1978,-1000345,'Let''s keep moving. We''re not safe here!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'kayra SAY_PROGRESS'),
- (1978,-1000346,'Look out, $N! Enemies ahead!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'kayra SAY_AMBUSH2'),
- (11856,-1000347,'We''re almost to the refuge! Let''s go.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'kayra SAY_END'),
- (11856,-1000348,'Ah...the wondrous sound of kodos. I love the way they make the ground shake... inspect the beast for me.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'kodo round SAY_SMEED_HOME_1'),
- (11856,-1000349,'Hey, look out with that kodo! You had better inspect that beast before I give you credit!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'kodo round SAY_SMEED_HOME_2'),
- (9453,-1000350,'That kodo sure is a beauty. Wait a minute, where are my bifocals? Perhaps you should inspect the beast for me.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'kodo round SAY_SMEED_HOME_3'),
- (18262,-1000351,'You, there! Hand over that moonstone and nobody gets hurt!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,0,0,'sprysprocket SAY_START'),
- (18588,-1000352,'%s takes the Southfury moonstone and escapes into the river. Follow her!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,3,0,0,'sprysprocket EMOTE_START'),
- (18760,-1000353,'Just chill!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,4,0,0,'sprysprocket SAY_WHISPER_CHILL'),
- (18760,-1000354,'Stupid grenade picked a fine time to backfire! So much for high quality goblin engineering!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,0,0,'sprysprocket SAY_GRENADE_FAIL'),
- (18760,-1000355,'All right, you win! I surrender! Just don''t hurt me!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,0,0,'sprysprocket SAY_END'),
- (18760,-1000356,'Okay, okay... gimme a minute to rest now. You gone and beat me up good.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,1,14,'calvin SAY_COMPLETE'),
- (10181,-1000357,'Let''s go before they find out I''m free!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,1,'KAYA_SAY_START'),
- (10181,-1000358,'Look out! We''re under attack!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'KAYA_AMBUSH'),
- (17900,-1000359,'Thank you for helping me. I know my way back from here.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'KAYA_END'),
- (17969,-1000362,'Let''s go $N. I am ready to reach Whitereach Post.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,1,0,'paoka SAY_START'),
- (17969,-1000363,'Now this looks familiar. If we keep heading east, I think we can... Ahh, Wyvern on the attack!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,1,0,'paoka SAY_WYVERN'),
- (17969,-1000364,'Thanks a bunch... I can find my way back to Whitereach Post from here. Be sure to talk with Motega Firemane; perhaps you can keep him from sending me home.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,1,0,'paoka SAY_COMPLETE'),
- (10646,-1000365,'Be on guard... Arnak has some strange power over the Grimtotem... they will not be happy to see me escape.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,1,0,'lakota SAY_LAKO_START'),
- (10646,-1000366,'Look out, the Grimtotem are upon us!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,1,0,'lakota SAY_LAKO_LOOK_OUT'),
- (10646,-1000367,'Here they come.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,1,0,'lakota SAY_LAKO_HERE_COME'),
- (10646,-1000368,'More Grimtotems are coming this way!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,1,0,'lakota SAY_LAKO_MORE'),
- (10646,-1000369,'Finally, free at last... I must be going now, thanks for helping me escape. I can get back to Freewind Post by myself.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,1,0,'lakota SAY_LAKO_END'),
- (3465,-1000370,'Stay close, $n. I''ll need all the help I can get to break out of here. Let''s go!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,1,1,'gilthares SAY_GIL_START'),
- (3465,-1000371,'At last! Free from Northwatch Hold! I need a moment to catch my breath...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,1,5,'gilthares SAY_GIL_AT_LAST'),
- (3465,-1000372,'Now I feel better. Let''s get back to Ratchet. Come on, $n.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,1,23,'gilthares SAY_GIL_PROCEED'),
- (3465,-1000373,'Looks like the Southsea Freeboters are heavily entrenched on the coast. This could get rough.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,1,25,'gilthares SAY_GIL_FREEBOOTERS'),
- (3465,-1000374,'Help! $C attacking!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,1,0,'gilthares SAY_GIL_AGGRO_1'),
- (3465,-1000375,'$C heading this way fast! Time for revenge!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,1,0,'gilthares SAY_GIL_AGGRO_2'),
- (3465,-1000376,'$C coming right at us!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,1,0,'gilthares SAY_GIL_AGGRO_3'),
- (3465,-1000377,'Get this $C off of me!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,1,0,'gilthares SAY_GIL_AGGRO_4'),
- (3465,-1000378,'Almost back to Ratchet! Let''s keep up the pace...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,1,0,'gilthares SAY_GIL_ALMOST'),
- (3465,-1000379,'Ah, the sweet salt air of Ratchet.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,1,0,'gilthares SAY_GIL_SWEET'),
- (3465,-1000380,'Captain Brightsun, $N here has freed me! $N, I am certain the Captain will reward your bravery.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,1,66,'gilthares SAY_GIL_FREED'),
- (21027,-1000381,'I sense the tortured spirits, $n. They are this way, come quickly!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,1,'wilda SAY_WIL_START'),
- (21027,-1000382,'Watch out!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'wilda SAY_WIL_AGGRO1'),
- (21027,-1000383,'Naga attackers! Defend yourself!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'wilda SAY_WIL_AGGRO2'),
- (21027,-1000384,'Grant me protection $n, I must break trough their foul magic!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'wilda SAY_WIL_PROGRESS1'),
- (21027,-1000385,'The naga of Coilskar are exceptionally cruel to their prisoners. It is a miracle that I survived inside that watery prison for as long as I did. Earthmother be praised.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'wilda SAY_WIL_PROGRESS2'),
- (21027,-1000386,'Now we must find the exit.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'wilda SAY_WIL_FIND_EXIT'),
- (21027,-1000387,'Lady Vashj must answer for these atrocities. She must be brought to justice!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'wilda SAY_WIL_PROGRESS4'),
- (21027,-1000388,'The tumultuous nature of the great waterways of Azeroth and Draenor are a direct result of tormented water spirits.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'wilda SAY_WIL_PROGRESS5'),
- (21027,-1000389,'It shouldn''t be much further, $n. The exit is just up ahead.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'wilda SAY_WIL_JUST_AHEAD'),
- (21027,-1000390,'Thank you, $n. Please return to my brethren at the Altar of Damnation, near the Hand of Gul''dan, and tell them that Wilda is safe. May the Earthmother watch over you...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'wilda SAY_WIL_END'),
- (5955,-1000391,'I''m Thirsty.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'tooga SAY_TOOG_THIRST'),
- (5955,-1000392,'Torta must be so worried.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'tooga SAY_TOOG_WORRIED'),
- (5955,-1000393,'Torta, my love! I have returned at long last.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'tooga SAY_TOOG_POST_1'),
- (5955,-1000394,'You have any idea how long I''ve been waiting here? And where''s dinner? All that time gone and nothing to show for it?',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'tooga SAY_TORT_POST_2'),
- (5955,-1000395,'My dearest Torta. I have been gone for so long. Finally we are reunited. At long last our love can blossom again.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'tooga SAY_TOOG_POST_3'),
- (5955,-1000396,'Enough with the rambling. I am starving! Now, get your dusty shell into that ocean and bring momma some grub.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'tooga SAY_TORT_POST_4'),
- (5955,-1000397,'Yes Torta. Whatever your heart desires...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'tooga SAY_TOOG_POST_5'),
- (5955,-1000398,'And try not to get lost this time...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'tooga SAY_TORT_POST_6'),
- (20021,-1000399,'Peace is but a fleeting dream! Let the NIGHTMARE reign!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,0,0,'taerar SAY_AGGRO'),
- (20021,-1000400,'Children of Madness - I release you upon this world!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,0,0,'taerar SAY_SUMMONSHADE'),
- (14889,-1000401,'Hope is a DISEASE of the soul! This land shall wither and die!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,0,0,'emeriss SAY_AGGRO'),
- (6182,-1000402,'Taste your world''s corruption!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,0,0,'emeriss SAY_CASTCORRUPTION'),
- (6182,-1000403,'Rin''ji is free!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'SAY_RIN_FREE'),
- (6182,-1000404,'Attack my sisters! The troll must not escape!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'SAY_RIN_BY_OUTRUNNER'),
- (6182,-1000405,'Rin''ji needs help!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,1,0,'SAY_RIN_HELP_1'),
- (6182,-1000406,'Rin''ji is being attacked!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,1,0,'SAY_RIN_HELP_2'),
- (7780,-1000407,'Rin''ji can see road now, $n. Rin''ji knows the way home.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,1,0,'SAY_RIN_COMPLETE'),
- (7780,-1000408,'Rin''ji will tell you secret now... $n, should go to the Overlook Cliffs. Rin''ji hid something on island there',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,1,0,'SAY_RIN_PROGRESS_1'),
- (7780,-1000409,'You find it, you keep it! Don''t tell no one that Rin''ji talked to you!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,1,0,'SAY_RIN_PROGRESS_2'),
- (10638,-1000410,'Here they come! Defend yourself!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,1,5,'kanati SAY_KAN_START'),
- (3568,-1000411,'Why don''t we deal with you now, Hendel? Lady Proudmoore will speak for you back in the tower.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,7,0,'hendel SAY_PROGRESS_1_TER'),
- (3568,-1000412,'Please... please... Miss Proudmore. I didn''t mean to...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,7,0,'hendel SAY_PROGRESS_2_HEN'),
- (4966,-1000413,'I apologize for taking so long to get here. I wanted Lady Proudmoore to be present also.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,7,0,'hendel SAY_PROGRESS_3_TER'),
- (4966,-1000414,'We can only stay a few moments before returning to the tower. If you wish to speak to us more you may find us there.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,7,0,'hendel SAY_PROGRESS_4_TER'),
- (4966,-1000415,'%s, too injured, gives up the chase.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,2,0,0,'hendel EMOTE_SURRENDER'),
- (9999,-1000416,'Well, I''m not sure how far I''ll make it in this state... I''m feeling kind of faint...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'ringo SAY_RIN_START_1'),
- (9999,-1000417,'Remember, if I faint again, the water that Spraggle gave you will revive me.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'ringo SAY_RIN_START_2'),
- (9999,-1000418,'The heat... I can''t take it...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'ringo SAY_FAINT_1'),
- (9999,-1000419,'Maybe... you could carry me?',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'ringo SAY_FAINT_2'),
- (9999,-1000420,'Uuuuuuggggghhhhh....',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'ringo SAY_FAINT_3'),
- (9999,-1000421,'I''m not feeling so well...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'ringo SAY_FAINT_4'),
- (9999,-1000422,'Where... Where am I?',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'ringo SAY_WAKE_1'),
- (9999,-1000423,'I am feeling a little better now, thank you.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'ringo SAY_WAKE_2'),
- (9999,-1000424,'Yes, I must go on.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'ringo SAY_WAKE_3'),
- (9999,-1000425,'How am I feeling? Quite soaked, thank you.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'ringo SAY_WAKE_4'),
- (9999,-1000426,'Spraggle! I didn''t think I''d make it back!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'ringo SAY_RIN_END_1'),
- (9999,-1000427,'Ringo! You''re okay!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'ringo SAY_SPR_END_2'),
- (9999,-1000428,'Oh... I''m feeling faint...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'ringo SAY_RIN_END_3'),
- (9999,-1000429,'%s collapses onto the ground.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,2,0,0,'ringo EMOTE_RIN_END_4'),
- (9999,-1000430,'%s stands up after a short pause.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,2,0,0,'ringo EMOTE_RIN_END_5'),
- (6784,-1000431,'Ugh.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'ringo SAY_RIN_END_6'),
- (9999,-1000432,'Ringo? Wake up! Don''t worry, I''ll take care of you.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'ringo SAY_SPR_END_7'),
- (9999,-1000433,'%s fades away after a long pause.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,2,0,0,'ringo EMOTE_RIN_END_8'),
- (11218,-1000434,'Liladris has been waiting for me at Maestra''s Post, so we should make haste, $N.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'kerlonian SAY_KER_START'),
- (11218,-1000435,'%s looks very sleepy...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,2,0,0,'kerlonian EMOTE_KER_SLEEP_1'),
- (11218,-1000436,'%s suddenly falls asleep',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,2,0,0,'kerlonian EMOTE_KER_SLEEP_2'),
- (11218,-1000437,'%s begins to drift off...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,2,0,0,'kerlonian EMOTE_KER_SLEEP_3'),
- (11218,-1000438,'This looks like the perfect place for a nap...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'kerlonian SAY_KER_SLEEP_1'),
- (11218,-1000439,'Yaaaaawwwwwnnnn...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'kerlonian SAY_KER_SLEEP_2'),
- (11218,-1000440,'Oh, I am so tired...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'kerlonian SAY_KER_SLEEP_3'),
- (11218,-1000441,'You don''t mind if I stop here for a moment, do you?',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'kerlonian SAY_KER_SLEEP_4'),
- (11218,-1000442,'Be on the alert! The Blackwood furbolgs are numerous in the area...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'kerlonian SAY_KER_ALERT_1'),
- (11218,-1000443,'It''s quiet... Too quiet...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'kerlonian SAY_KER_ALERT_2'),
- (11218,-1000444,'Oh, I can see Liladris from here... Tell her I''m here, won''t you?',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'kerlonian SAY_KER_END'),
- (11218,-1000445,'%s wakes up!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,2,0,0,'kerlonian EMOTE_KER_AWAKEN'),
- (7766,-1000450,'Wait here. Spybot will make Lescovar come out as soon as possible. Be ready! Attack only after you''ve overheard their conversation.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,''),
- (8856,-1000451,'Good day to you both. I would speak to Lord Lescovar.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,''),
- (1756,-1000452,'Of course. He awaits you in the library.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,''),
- (8856,-1000453,'Thank you. The Light be with you both.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,''),
- (8856,-1000454,'Milord, your guest has arrived. He awaits your presence.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,''),
- (1754,-1000455,'Ah, thank you kindly. I will leave you to the library while I tend to this small matter.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,''),
- (8856,-1000456,'I shall use the time wisely, milord. Thank you.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,''),
- (1754,-1000457,'It''s time for my meditation, leave me.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,''),
- (1756,-1000458,'Yes, sir!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,''),
- (1754,-1000459,'There you are. What news from Westfall?',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,''),
- (1755,-1000460,'VanCleef sends word that the plans are underway. But he''s hear rumors about someone snooping about.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,''),
- (1754,-1000461,'Hmm, it could be that meddle Shaw. I will see what I can discover. Be off with you. I''ll contact you again soon.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,''),
- (7766,-1000462,'That''s it! That''s what you were waiting for! KILL THEM!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,0,0,''),
- (1755,-1000463,'The Defias shall succeed! No meek adventurer will stop us!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,''),
- (349,-1000464,'My wounds are grave. Forgive my slow pace but my injuries won''t allow me to walk any faster.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,''),
- (349,-1000465,'Ah, fresh air, at last! I need a moment to reset.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,''),
- (349,-1000466,'The Blackrock infestation is thick in these parts. I will do my best to keep the pace. Let''s go!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,''),
- (349,-1000467,'Marshal Marris, sir. Corporal Keeshan of the 12th Sabre Regiment returned from battle and reporting for duty!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,''),
- (349,-1000468,'Brave adventurer, thank you for rescuing me! I am sure Marshal Marris will reward your kind deed.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,''),
- (23861,-1000469,'It is too late for us, living one. Take yourself and your friend away from here before you both are... claimed...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,''),
- (23861,-1000470,'Go away, whoever you are! Witch Hill is mine... mine!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,''),
- (23861,-1000471,'It was... terrible... the demon...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,''),
- (23864,-1000472,'This land was mine long before your wretched kind set foot here.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,0,0,''),
- (23864,-1000473,'All who venture here belong to me, including you!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,0,0,''),
- (17375,-1000474,'[Fulborg] The Stillpine furbolgs will not soon forget your bravery!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'Stillpine Capitive free say text 1'),
- (17375,-1000475,'[Fulborg] Thank you, $N',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'Stillpine Capitive free say text 2'),
- (17375,-1000476,'[Fulborg] Those remaining at Stillpine Hold will welcome you as a hero!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'Stillpine Capitive free say text 3'),
- (18210,-1000482,'Look out!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'maghar captive SAY_MAG_START'),
- (18210,-1000483,'Don''t let them escape! Kill the strong one first!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'maghar captive SAY_MAG_NO_ESCAPE'),
- (18210,-1000484,'More of them coming! Watch out!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'maghar captive SAY_MAG_MORE'),
- (18210,-1000485,'Where do you think you''re going? Kill them all!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'maghar captive SAY_MAG_MORE_REPLY'),
- (18210,-1000486,'Ride the lightning, filth!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'maghar captive SAY_MAG_LIGHTNING'),
- (18210,-1000487,'FROST SHOCK!!!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'maghar captive SAY_MAG_SHOCK'),
- (18210,-1000488,'It is best that we split up now, in case they send more after us. Hopefully one of us will make it back to Garrosh. Farewell stranger.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'maghar captive SAY_MAG_COMPLETE'),
- (17077,-1000496,'%s lifts its head into the air, as if listening for something.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,2,0,0,'ancestral wolf EMOTE_WOLF_LIFT_HEAD'),
- (17077,-1000497,'%s lets out a howl that rings across the mountains to the north and motions for you to follow.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,2,0,0,'ancestral wolf EMOTE_WOLF_HOWL'),
- (17077,-1000498,'Welcome, kind spirit. What has brought you to us?',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'ancestral wolf SAY_WOLF_WELCOME'),
- (8856,-1000499,'By your command!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,''),
- (5391,-1000500,'Help! Please, You must help me!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'Galen - periodic say'),
- (5391,-1000501,'Let us leave this place.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'Galen - quest accepted'),
- (5391,-1000502,'Look out! The $c attacks!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'Galen - aggro 1'),
- (5391,-1000503,'Help! I''m under attack!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'Galen - aggro 2'),
- (5391,-1000504,'Thank you $N. I will remember you always. You can find my strongbox in my camp, north of Stonard.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'Galen - quest complete'),
- (5391,-1000505,'%s whispers to $N the secret to opening his strongbox.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,2,0,0,'Galen - emote whisper'),
- (5391,-1000506,'%s disappears into the swamp.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,2,0,0,'Galen - emote disappear'),
- (4880,-1000507,'Ok, let''s get started.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'stinky - quest accepted'),
- (4880,-1000508,'Now let''s look for the herb.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'stinky - say1'),
- (4880,-1000509,'Nope, not here...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'stinky - say2'),
- (4880,-1000510,'There must be one around here somewhere...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'stinky - say3'),
- (4880,-1000511,'Ah, there''s one! ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'stinky - say4'),
- (4880,-1000512,'Come, $N! Let''s go over there and collect it!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'stinky - say5'),
- (4880,-1000513,'Ok, now let''s get out of here! ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'stinky - say6'),
- (4880,-1000514,'I can make it from here. Thanks, $N! And talk to my employer about a reward!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'stinky - quest complete'),
- (4880,-1000515,'Help! The beast is on me!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'stinky - aggro'),
- (4880,-1000516,'%s disappears back into the swamp.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,2,0,0,'stinky - emote disapper'),
- (0,-1000517,'A-Me good. Good, A-Me. Follow... follow A-Me. Home. A-Me go home.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'npc_ame - SAY_READY'),
- (0,-1000518,'$c, no hurt A-Me. A-Me good.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'npc_ame - SAY_AGGRO1'),
- (0,-1000519,'Good... good, A-Me. A-Me good. Home. Find home.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'npc_ame - SAY_SEARCH'),
- (0,-1000520,'Danger. Danger! $c try hurt A-Me.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'npc_ame - SAY_AGGRO2'),
- (0,-1000521,'Bad, $c. $c, bad!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'npc_ame - SAY_AGGRO3'),
- (0,-1000522,'A-Me home! A-Me good! Good A-Me. Home. Home. Home.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'npc_ame - SAY_FINISH'),
- (0,-1000523,'Saeed is currently engaged or awaiting orders to engage. You may check directly east of me and see if Saeed is ready for you. If he is not present then he is off fighting another battle. I recommend that you wait for him to return before attacking Dimensius.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,4,0,0,'npc_professor_dabiri - WHISPER_DABIRI'),
- (0,-1000524,'Bessy, is that you?',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'npc_bessy - SAY_THADELL_1'),
- (0,-1000525,'Thank you for bringing back my Bessy, $N. I couldn''t live without her!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'npc_bessy - SAY_THADELL_2'),
- (0,-1000571,'Ok let''s get out of here!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'npc_isla_starmane - SAY_PROGRESS_1'),
- (0,-1000572,'You sure you''re ready? Take a moment.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'npc_isla_starmane - SAY_PROGRESS_2'),
- (0,-1000573,'Alright, let''s do this!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'npc_isla_starmane - SAY_PROGRESS_3'),
- (0,-1000574,'Ok, I think I can make it on my own from here. Thank you so much for breaking me out of there!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'npc_isla_starmane - SAY_PROGRESS_4'),
- (19589,-1000575,'All systems on-line. Prepare yourself, we leave shortly.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'max_a_million SAY_START'),
- (19589,-1000576,'Be careful in there and come back in one piece!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'bot-specialist_alley SAY_ALLEY_FAREWELL'),
- (19589,-1000577,'Proceed.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'max_a_million SAY_CONTINUE'),
- (19589,-1000578,'You are back! Were you able to get all of the machines?',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'bot-specialist_alley SAY_ALLEY_FINISH'),
- (0,-1000600,'Ow! OK, I''ll get back to work, $N!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,1,'npc_lazy_peon - SAY_WP_0'),
- (0,-1000606,'Come, $N. Lord Stormrage awaits.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,1,'OVERLORD_SAY_1'),
- (0,-1000607,'Lord Illidan will be here shortly.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,1,'OVERLORD_SAY_2'),
- (0,-1000609,'But... My lord, I do not understand. $N... He is the orc that has...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,1,'OVERLORD_SAY_4'),
- (0,-1000610,'It will be done, my lord.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,1,'OVERLORD_SAY_5'),
- (0,-1000611,'So you thought to make a fool of Mor''ghor, eh? Before you are delivered to Lord Illidan, you will feel pain that you could not know to exist. I will take pleasure in exacting my own vengeance.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,25,'OVERLORD_SAY_6'),
- (0,-1000612,'Warriors of Dragonmaw, gather ''round! One among you has attained the rank of highlord! Bow your heads in reverence! Show your respect and allegiance to Highlord $N!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,0,22,'OVERLORD_YELL_1'),
- (0,-1000613,'All hail Lord Illidan!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,0,66,'OVERLORD_YELL_2'),
- (0,-1000614,'What is the meaning of this, Mor''ghor?',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,1,'LORD_ILLIDAN_SAY_1'),
- (0,-1000615,'SILENCE!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,22,'LORD_ILLIDAN_SAY_2'),
- (0,-1000616,'Blathering idiot. You incomprehensibly incompetent buffoon...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,1,'LORD_ILLIDAN_SAY_3'),
- (0,-1000617,'THIS is your hero?',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,6,'LORD_ILLIDAN_SAY_4'),
- (0,-1000618,'You have been deceived, imbecile.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,1,'LORD_ILLIDAN_SAY_5'),
- (0,-1000619,'This... whole... operation... HAS BEEN COMPROMISED!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,22,'LORD_ILLIDAN_SAY_6'),
- (0,-1000620,'I expect to see this insect''s carcass in pieces in my lair within the hour. Fail and you will suffer a fate so much worse than death.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,1,'LORD_ILLIDAN_SAY_7'),
- (0,-1000621,'You will not harm the boy, Mor''ghor! Quickly, $N, climb on my back!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,22,'YARZILL_THE_MERC_SAY'),
- (0,-1000629,'What''s the big idea, Spark?',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'geezle - GEEZLE_SAY_1'),
- (0,-1000630,'What''s the big idea? You nearly blew my cover, idiot! I told you to put the compass and navigation maps somewhere safe - not out in the open for any fool to discover.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,4,'geezle - SPARK_SAY_2'),
- (0,-1000631,'The Master has gone to great lengths to secure information about the whereabouts of the Exodar. You could have blown the entire operation, including the cover of our spy on the inside.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'geezle - SPARK_SAY_3'),
- (0,-1000632,'Relax, Spark! I have it all under control. We''ll strip mine the Exodar right out from under ''em - making both you and I very, very rich in the process.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,4,'geezle - GEEZLE_SAY_4'),
- (0,-1000633,'Relax? Do you know what Kael''thas does to those that fail him, Geezle? Eternal suffering and pain... Do NOT screw this up, fool.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'geezle - SPARK_SAY_5'),
- (0,-1000634,'Our Bloodmyst scouts have located our contact. The fool, Velen, will soon leave himself open and defenseless -- long enough for us to strike! Now get out of my sight before I vaporize you...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'geezle - SPARK_SAY_6'),
- (0,-1000635,'Yes, sir. It won''t happen again...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'geezle - GEEZLE_SAY_7'),
- (0,-1000636,'picks up the naga flag.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,2,0,0,'geezle - EMOTE_SPARK'),
- (17807,-1000637,'Let the trial begin, Bloodwrath, attack!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'npc_second_trial_controller TEXT_SECOND_TRIAL_1'),
- (17807,-1000638,'Champion Lightrend, make me proud!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'npc_second_trial_controller TEXT_SECOND_TRIAL_2'),
- (17807,-1000639,'Show this upstart how a real Blood Knight fights, Swiftblade!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'npc_second_trial_controller TEXT_SECOND_TRIAL_3'),
- (17807,-1000640,'Show $n the meaning of pain, Sunstriker!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'npc_second_trial_controller TEXT_SECOND_TRIAL_4'),
- (4979,-1000641,'Hey, thanks.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0, 'Theramore Guard - SAY_QUEST1'),
- (4979,-1000642,'...receive 50 percent off deserter undergarments? What is this garbage?',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'Theramore Guard - SAY_QUEST2'),
- (4979,-1000643,'...to establish a fund for the purchase of hair gel? I like my hair the way it is, thanks!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'Theramore Guard - SAY_QUEST3'),
- (4979,-1000644,'...the deserters seek a Theramore where citizens will be free to juggle at all hours of the day? What is this nonsense?',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'Theramore Guard - SAY_QUEST4'),
- (4979,-1000645,'...to establish the chicken as the official symbol of Theramore?! These guys are nuts!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'Theramore Guard - SAY_QUEST5'),
- (4979,-1000646,'...as a deserter, you\'ll enjoy activities like tethered swimming and dog grooming? How ridiculous!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'Theramore Guard - SAY_QUEST6'),
- (4979,-1000647,'This... this is a joke, right?',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'Theramore Guard - SAY_QUEST7'),
- (4979,-1000648,'I\'d never join anything like this. Better keep this, though. It\'ll come in handy in the privy...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'Theramore Guard - SAY_QUEST8'),
- (4979,-1000649,'What a bunch of lunatics! You actually believe this stuff?',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'Theramore Guard - SAY_QUEST9'),
-
- (26588,-1800001,'Um... I think one of those wolves is back...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'12027'),
- (26588,-1800002,'He''s going for Mr. Floppy! ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'12027'),
- (26588,-1800003,'Oh, no! Look, it''s another wolf, and it''s a biiiiiig one!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'12027'),
- (26588,-1800004,'He''s gonna eat Mr. Floppy! You gotta help Mr. Floppy! You just gotta!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'12027'),
- (26588,-1800005,'There''s a big meanie attacking Mr. Floppy! Help! ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'12027'),
- (26588,-1800006,'Let''s get out of here before more wolves find us!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'12027'),
- (26588,-1800007,'Don''t go toward the light, Mr. Floppy!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'12027'),
- (26588,-1800008,'Mr. Floppy, you''re ok! Thank you so much for saving Mr. Floppy!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'12027'),
- (26588,-1800009,'I think I see the camp! We''re almost home, Mr. Floppy! Let''s go!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'12027'),
- (26588,-1800010,'Mr. Floppy revives',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,4,0,0,'12027'),
- (26588,-1800011,'The Ravenous Worg chomps down on Mr. Floppy',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,4,0,0,'12027'),
- (26588,-1800012,'Are you ready, Mr. Floppy? Stay close to me and watch out for those wolves!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'12027'),
- (26588,-1800013,'Thank you for helping me get back to the camp. Go tell Walter that I''m safe now!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'12027'),
- (27316,-1800014,'Stand back, $N, the beast might lash out and harm you. ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,NULL),
- (27316,-1800015,'GODFREY! Hear me, fiend! Hear me, for I am the Light, here to deliver you from evil! ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,NULL),
- (27316,-1800016,'Good, I have your attention, then, Godfrey? ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,NULL),
- (27316,-1800017,'We can do this in one of two ways, Godfrey. First,I will simply ask you to tell me what the unholy markings etched upon the pages of this tome mean. What say you? ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,NULL),
- (27577,-1800018,'Tell you nothing, preacher. ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,NULL),
- (27577,-1800019,'What can you do to me that Kel''Thuzad has not? That the Lich King will not? ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,NULL),
- (27577,-1800020,'The book is your salvation, yes... but nothing will you know. NOTHING I SAY! NOTHING! ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,NULL),
- (27316,-1800021,'Then it is option two. ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,NULL),
- (27316,-1800022,'I say a prayer for you now,lost soul. May the Light take you gracefully. ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,NULL),
- (27316,-1800023,'Let the sermon begin.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,NULL),
- (27316,-1800024,'LET THE LIGHT IN,GODFREY GODDARD! ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,NULL),
- (27577,-1800025,'IT BURNSSSSS! ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,NULL),
- (27316,-1800026,'May the power of Light compel you! ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,NULL),
- (27316,-1800027,'LET THE LIGHT IN,GODFREY GODDARD! ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,NULL),
- (27577,-1800028,'Never felt hurt like this! ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,NULL),
- (27316,-1800029,'LIGHT TAKE YOU, BEAST! ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,NULL),
- (27316,-1800030,'The power of the Lich King pales in comparison to the glory of the Light! ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,NULL),
- (27316,-1800031,'I thought you would see the Light, Godfrey... Now speak quickly,fiend. What does it say? ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,NULL),
- (27577,-1800032,'It tells of the coming apocalypse. How this world will burn and be reborn from death. ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,NULL),
- (27316,-1800033,'RUBBISH! Godfrey do you take me for a fool? Do not spew your Scourge propaganda at a man of the Light,heathen! Speak now or I will have the peasants craft a holy water bath and dip you into it like a dog with fleas! ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,NULL),
- (27577,-1800034,'NOOOO!!! I tell you! I tell you everything! ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,NULL),
- (27577,-1800035,'Humans... Beneath the earth of Wintergarde Village you built a mausoleum! Why do you think Naxxramas attacked that spot? Thel''zan hides deep in your own crypt and sends a thousand-thousand corpses at you! Perish you will... ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,NULL),
- (27316,-1800036,'What? There is a mausoleum beneath the old village? What fools we are to not have noticed. We will find and strike down your master now,Godfrey. We will end this nightmare. ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,NULL),
- (27577,-1800037,'How? Humans truly are stupid, yes? Thel''zan the Duskbringer! Thel''zan the Lich! He who is born of human flesh and bone,sacrificed all power, protected by the Lich King! ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,NULL),
- (27577,-1800038,'You cannot stop Thel''zan! He bears the dark gift, bestowed upon him by the Lich King himself! ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,NULL),
- (27316,-1800039,'You let us worry about how we kill the bastard, Godfrey. ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,NULL),
- (27316,-1800040,'Return to Halford with the information the good mayor was kind enough to submit, $N, I will finish here and squeeze whatever else this wretch might know about Thel''zan. Now, I will show Godfrey the rarely shown "option three." ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,NULL),
- (27316,-1800041,'Let''s you and I have a chat about some things, Godfrey.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,NULL),
- (29434,-1800042,'Let me know when you''re ready. I''d prefer sooner than later... what with the slowly dying from poison and all.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'injured goblin SAY_QUEST_START'),
- (29434,-1800043,'I''m going to bring the venom sack to Ricket... and then... you know... collapse. Thank you for helping me!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'injured goblin SAY_END_WP_REACHED'),
- (27463,-1800044,'Ahh..better..',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'RANDOM_SAY_1'),
- (27463,-1800045,'Whoa.. i nearly died there. Thank you, $Race!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'RANDOM_SAY_2'),
- (27463,-1800046,'Thank you. $Class!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'RANDOM_SAY_3'),
- (28787,-1800047,'Let''s get the hell out of here',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,NULL),
- (28787,-1800048,'Listen up, Venture Company goons! Rule #1: Never keep the prisoner near the explosives.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,NULL),
- (28787,-1800049,'Or THIS is what you get. ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,NULL),
- (28787,-1800050,'It''s getting a little hot over here. Shall we move on? ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,NULL),
- (28787,-1800051,'Oh, look, it''s another cartload of explosives! Let''s help them dispose of it. ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,NULL),
- (28787,-1800052,'You really shouldn''t play with this stuff. Someone could get hurt.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,NULL),
- (28787,-1800053,'We made it! Thank you for getting me out of that hell hole. Tell Hemet to expect me! ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,NULL),
- (12717,-1800054,'Are you sure that you are ready? If we do not have a group of your allies to aid us, we will surely fail.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,1,0,'muglash SAY_MUG_START1'),
- (12717,-1800055,'This will be a though fight, $N. Follow me closely.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,1,0,'muglash SAY_MUG_START2'),
- (12717,-1800056,'This is the brazier, $N. Put it out. Vorsha is a beast, worthy of praise from no one!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,1,0,'muglash SAY_MUG_BRAZIER'),
- (12717,-1800057,'Now we must wait. It won''t be long before the naga realize what we have done.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,1,0,'muglash SAY_MUG_BRAZIER_WAIT'),
- (12717,-1800058,'Be on your guard, $N!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,1,0,'muglash SAY_MUG_ON_GUARD'),
- (12717,-1800059,'Perhaps we will get a moment to rest. But I will not give up until we have faced off against Vorsha!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,1,0,'muglash SAY_MUG_REST'),
- (12717,-1800060,'We have done it!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,1,0,'muglash SAY_MUG_DONE'),
- (12717,-1800061,'You have my deepest gratitude. I thank you.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,1,0,'muglash SAY_MUG_GRATITUDE'),
- (12717,-1800062,'I am going to patrol the area for a while longer and ensure that things are truly safe.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,1,0,'muglash SAY_MUG_PATROL'),
- (12717,-1800063,'Please return to Zoram''gar and report our success to the Warsong runner.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,1,0,'muglash SAY_MUG_RETURN'),
- (0,-1800064,'Beware! We are attacked!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,11,1,'npc_anchorite_truuen - SAY_WP_0'),
- (0,-1800065,'It must be the purity of the Mark of the Lightbringer that is drawing forth the Scourge to attack us. We must proceed with caution lest we be overwhelmed!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,11,1,'npc_anchorite_truuen - SAY_WP_1'),
- (0,-1800066,'This land truly needs to be cleansed by the Light! Let us continue on to the tomb. It isn''t far now...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,11,1,'npc_anchorite_truuen - SAY_WP_2'),
- (0,-1800067,'Be welcome, friends!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,11,1,'npc_anchorite_truuen - SAY_WP_3'),
- (0,-1800068,'Thank you for coming here in remembrance of me. Your efforts in recovering that symbol, while unnecessary, are certainly touching to an old man''s heart. ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,11,1,'npc_anchorite_truuen - SAY_WP_4'),
- (0,-1800069,'Please, rise my friend. Keep the Blessing as a symbol of the strength of the Light and how heroes long gone might once again rise in each of us to inspire. ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,11,1,'npc_anchorite_truuen - SAY_WP_5'),
- (0,-1800070,'Thank you my friend for making this possible. This is a day that I shall never forget! I think I will stay a while. Please return to High Priestess MacDonnell at the camp. I know that she''ll be keenly interested to know of what has transpired here.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,11,1,'npc_anchorite_truuen - SAY_WP_6'),
- (18445,-1800071,'Thanks, $C! I''m sure my dad will reward you greatly! Bye!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,NULL),
- (20812,-1800072,'This is the last time I get caught!I promise! Bye!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,NULL),
- (18369,-1800073,'Thank you for saving me again!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,NULL),
- (17682,-1800074,'Go to the west',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,NULL),
-
--- -1 033 000 SHADOWFANG KEEP
- (0,-1033000,'Follow me and I''ll open the courtyard door for you.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,7,1,'prisoner ashcrombe SAY_FREE_AS'),
- (0,-1033001,'I have just the spell to get this door open. Too bad the cell doors weren''t locked so haphazardly.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,7,1,'prisoner ashcrombe SAY_OPEN_DOOR_AS'),
- (0,-1033002,'There it is! Wide open. Good luck to you conquering what lies beyond. I must report back to the Kirin Tor at once!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,7,1,'prisoner ashcrombe SAY_POST_DOOR_AS'),
- (0,-1033003,'Free from this wretched cell at last! Let me show you to the courtyard....',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,1,1,'prisoner adamant SAY_FREE_AD'),
- (0,-1033004,'You are indeed courageous for wanting to brave the horrors that lie beyond this door.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,1,1,'prisoner adamant SAY_OPEN_DOOR_AD'),
- (0,-1033005,'There we go!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,1,1,'prisoner adamant SAY_POST1_DOOR_AD'),
- (0,-1033006,'Good luck with Arugal. I must hurry back to Hadrec now.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,1,1,'prisoner adamant SAY_POST2_DOOR_AD'),
- (3849,-1033007,'About time someone killed the wretch.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,1,1,'prisoner adamant SAY_BOSS_DIE_AD'),
- (3850,-1033008,'For once I agree with you... scum.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,7,1,'prisoner ashcrombe SAY_BOSS_DIE_AS'),
- (4275,-1033009,'Who dares interfere with the Sons of Arugal?',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,0,0,''),
-
--- -1 034 000 STOCKADES
--- -1 036 000 DEADMINES
- (0,-1036000,'You there, check out that noise!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,5775,1,7,0,'smite INST_SAY_ALARM1'),
- (0,-1036001,'We''re under attack! A vast, ye swabs! Repel the invaders!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,5777,1,7,0,'smite INST_SAY_ALARM2'),
-
--- -1 043 000 WAILING CAVERNS
- (3678,-1043000,'At last! Naralex can be awakened! Come aid me, brave adventurers!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,0,0,'Disciple SAY_AT_LAST'),
- (3678,-1043001,'I must make the necessary preparations before the awakening ritual can begin. You must protect me!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'Disciple SAY_MAKE_PREPARATIONS'),
- (3678,-1043002,'These caverns were once a temple of promise for regrowth in the Barrens. Now, they are the halls of nightmares.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'Disciple SAY_TEMPLE_OF_PROMISE'),
- (3678,-1043003,'Come. We must continue. There is much to be done before we can pull Naralex from his nightmare.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'Disciple SAY_MUST_CONTINUE'),
- (3678,-1043004,'Within this circle of fire I must cast the spell to banish the spirits of the slain Fanglords.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'Disciple SAY_BANISH_THE_SPIRITS'),
- (3678,-1043005,'The caverns have been purified. To Naralex''s chamber we go!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'Disciple SAY_CAVERNS_PURIFIED'),
- (3678,-1043006,'Beyond this corridor, Naralex lies in fitful sleep. Let us go awaken him before it is too late.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'Disciple SAY_BEYOND_THIS_CORRIDOR'),
- (3678,-1043007,'Protect me brave souls as I delve into this Emerald Dream to rescue Naralex and put an end to this corruption!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'Disciple SAY_EMERALD_DREAM'),
- (3678,-1043008,'%s begins to perform the awakening ritual on Naralex.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,2,0,0,'Disciple EMOTE_AWAKENING_RITUAL'),
- (3678,-1043009,'%s tosses fitfully in troubled sleep.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,2,0,0,'Naralex EMOTE_TROUBLED_SLEEP'),
- (3678,-1043010,'%s writhes in agony. The Disciple seems to be breaking through.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,2,0,0,'Naralex EMOTE_WRITHE_IN_AGONY'),
- (3678,-1043011,'%s dreams up a horrendous vision. Something stirs beneath the murky waters.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,2,0,0,'Naralex EMOTE_HORRENDOUS_VISION'),
- (3678,-1043012,'This Mutanus the Devourer is a minion from Naralex''s nightmare no doubt!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'Disciple SAY_MUTANUS_THE_DEVOURER'),
- (3678,-1043013,'I AM AWAKE, AT LAST!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,0,0,'Naralex SAY_I_AM_AWAKE'),
- (3678,-1043014,'At last! Naralex awakes from the nightmare.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'Disciple SAY_NARALEX_AWAKES'),
- (3678,-1043015,'Ah, to be pulled from the dreaded nightmare! I thank you, my loyal Disciple, along with your brave companions.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'Naralex SAY_THANK_YOU'),
- (3678,-1043016,'We must go and gather with the other Disciples. There is much work to be done before I can make another attempt to restore the Barrens. Farewell, brave souls!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'Naralex SAY_FAREWELL'),
- (3678,-1043017,'Attacked! Help get this $N off of me!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'Disciple SAY_ATTACKED'),
-
--- -1 047 000 RAZORFEN KRAUL
- (4508,-1047000,'Phew! Finally, out here. However, it will not become easy. Detain your eyes after annoyance.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'Willix'),
- (4508,-1047001,'There on top resides Charlga Razorflank. The damned old Crone.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'Willix'),
- (4508,-1047002,'Help! Get this Raging Agam''ar from me!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'Willix'),
- (4508,-1047003,'In this ditch there are Blueleaf Tuber! As if the gold waited only to be dug out, I say it you!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'Willix'),
- (4508,-1047004,'Danger is behind every corner.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'Willix'),
- (4508,-1047005,'I do not understand how these disgusting animals can live at such a place.... puh as this stinks!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'Willix'),
- (4508,-1047006,'I think, I see a way how we come out of this damned thorn tangle.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'Willix'),
- (4508,-1047007,'I am glad that we are out again from this damned ditch. However, up here it is not much better!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'Willix'),
- (4508,-1047008,'Finally! I am glad that I come, finally out here.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'Willix'),
- (4508,-1047009,'I will rather rest a moment and come again to breath, before I return to Ratchet.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'Willix'),
- (4508,-1047010,'Many thanks for your help.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'Willix'),
-
--- -1 048 000 BLACKFATHOM DEEPS
- (4832,-1048000,'Just...Dust...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,5803,1,0,0,''), (4832,-1048001,'Sleep...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,5804,1,0,0,''),
- (4832,-1048002,'Who dares disturb my meditation!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,5805,1,0,0,''),
- (6729,-1048003,'Aku''mai is dead! At last, I can leave this wretched place.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,0,0,''),
- (6729,-1048004,'Speak with me to hear my tale',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,''),
-
--- -1 060 000 863_world_scripts.sql
- (0,-1060005,'REUSE',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'REUSE'),
- (0,-1060004,'REUSE',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'REUSE'),
- (0,-1060003,'REUSE',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'REUSE'),
- (0,-1060002,'REUSE',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'REUSE'),
- (0,-1060001,'REUSE',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'REUSE'),
- (0,-1060000,'REUSE',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'REUSE'),
-
--- -1 070 000 ULDAMAN
- (7228,-1070000,'None may steal the secrets of the makers!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,5851,1,0,0,'ironaya SAY_AGGRO'),
- (0,-1070001,'Taste blade, mongrel!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'SAY_GUARD_SIL_AGGRO1'),
- (0,-1070002,'Please tell me that you didn''t just do what I think you just did. Please tell me that I''m not going to have to hurt you...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'SAY_GUARD_SIL_AGGRO2'),
- (0,-1070003,'As if we don''t have enough problems, you go and create more!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'SAY_GUARD_SIL_AGGRO3'),
- (620,-1070004,'looks up at you quizzically. Maybe you should inspect it?',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,2,0,0,'cluck EMOTE_A_HELLO'),
- (0,-1070005,'looks at you unexpectadly.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,2,0,0,'cluck EMOTE_H_HELLO'),
- (620,-1070006,'starts pecking at the feed.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,2,0,0,'cluck EMOTE_CLUCK_TEXT2'),
-
--- -1 090 000 GNOMEREGAN
- (7998,-1090000,'With your help, I can evaluate these tunnels.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,''),
- (7998,-1090001,'Let''s see if we can find out where these Troggs are coming from... and put a stop to the invasion!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,''),
- (7998,-1090002,'Such devastation... what horrible mess...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,''),
- (7998,-1090003,'It''s quiet here...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,''),
- (7998,-1090004,'...too quiet.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,''),
- (7998,-1090005,'Look! Over there at the tunnel wall!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,''),
- (7998,-1090006,'Trogg incrusion! Defend me while i blast the hole closed!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,''),
- (7998,-1090007,'The charges are set. Get back before they blow!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,''),
- (7998,-1090008,'Incoming blast in 10 seconds!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,0,0,''),
- (7998,-1090009,'Incoming blast in 5 seconds. Clear the tunnel!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,0,0,''),
- (7998,-1090010,'FIRE IN THE HOLE',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,0,0,''),
- (7998,-1090011,'Well done! Without your help I would have never been able to thwart that wave of troggs.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,''),
- (7998,-1090012,'Did you hear something?',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,''),
- (7998,-1090013,'I heard something over there.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,''),
- (7998,-1090014,'More troggs! Ward them off as I prepare the explosives!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,''),
- (7998,-1090015,'The final charge is set. Stand back!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,0,0,''),
- (7998,-1090016,'The final charge is set. Stand back!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,''),
- (7998,-1090017,'Incoming blast in 10 seconds!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,0,0,''),
- (7998,-1090018,'Incoming blast in 5 seconds. Clear the tunnel!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,0,0,''),
- (7998,-1090019,'I don''t think one charge is going to cut it. Keep fending them off!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,''),
- (7998,-1090020,'FIRE IN THE HOLE',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,0,0,''),
- (7998,-1090021,'Well done! Without your help I would have never been able to thwart that wave of troggs.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,''),
- (7998,-1090022,'Did you hear something?',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,''),
- (7998,-1090023,'I heard something over there.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,''),
- (7998,-1090024,'More troggs! Ward them off as I prepare the explosives!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,''),
- (7998,-1090025,'The final charge is set. Stand back!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,''),
- (7998,-1090026,'10 seconds to blast! Stand back!!!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,0,0,''),
- (7998,-1090027,'5 seconds until detonation!!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,0,0,''),
- (7361,-1090028,'We come from below! You can never stop us!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,0,0,''),
-
--- -1 109 000 SUNKEN TEMPLE
-
--- -1 129 000 RAZORFEN DOWNS
- (7358,-1129000,'You''ll never leave this place... alive.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,5825,1,0,0,'amnennar SAY_AGGRO'),
- (7358,-1129001,'To me, my servants!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,5828,1,0,0,'amnennar SAY_SUMMON60'),
- (7358,-1129002,'Come, spirits, attend your master!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,5829,1,0,0,'amnennar SAY_SUMMON30'),
- (7358,-1129003,'I am the hand of the Lich King!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,5827,1,0,0,'amnennar SAY_HP'),
- (7358,-1129004,'Too...easy!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,5826,1,0,0,'amnennar SAY_KILL'),
-
--- -1 189 000 SCARLET MONASTERY
- (3975,-1189000,'Ah, I have been waiting for a real challenge!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,5830,1,0,0,'herod SAY_AGGRO'),
- (3975,-1189001,'Blades of Light!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,5832,1,0,0,'herod SAY_WHIRLWIND'),
- (3975,-1189002,'Light, give me strength!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,5833,1,0,0,'herod SAY_ENRAGE'),
- (3975,-1189003,'Hah, is that all?',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,5831,1,0,0,'herod SAY_KILL'),
- (3975,-1189004,'%s becomes enraged!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,2,0,0,'herod EMOTE_ENRAGE'),
- (3976,-1189005,'Infidels! They must be purified!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,5835,1,0,0,'mograine SAY_MO_AGGRO'),
- (3976,-1189006,'Unworthy!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,5836,1,0,0,'mograine SAY_MO_KILL'),
- (3976,-1189007,'At your side, milady!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,5837,1,0,0,'mograine SAY_MO_RESSURECTED'),
- (3977,-1189008,'What, Mograine has fallen? You shall pay for this treachery!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,5838,1,0,0,'whitemane SAY_WH_INTRO'),
- (3977,-1189009,'The Light has spoken!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,5839,1,0,0,'whitemane SAY_WH_KILL'),
- (3977,-1189010,'Arise, my champion!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,5840,1,0,0,'whitemane SAY_WH_RESSURECT'),
- (3983,-1189011,'Tell me... tell me everything!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,5847,1,0,0,'vishas SAY_AGGRO'),
- (3983,-1189012,'Naughty secrets!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,5849,1,0,0,'vishas SAY_HEALTH1'),
- (3983,-1189013,'I''ll rip the secrets from your flesh!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,5850,1,0,0,'vishas SAY_HEALTH2'),
- (3983,-1189014,'Purged by pain!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,5848,1,0,0,'vishas SAY_KILL'),
- (3983,-1189015,'The monster got what he deserved.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,1,0,'vishas SAY_TRIGGER_VORREL'),
- (4543,-1189016,'We hunger for vengeance.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,5844,1,0,0,'thalnos SAY_AGGRO'),
- (4543,-1189017,'No rest, for the angry dead.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,5846,1,0,0,'thalnos SAY_HEALTH'),
- (4543,-1189018,'More... More souls.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,5845,1,0,0,'thalnos SAY_KILL'),
- (6487,-1189019,'You will not defile these mysteries!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,5842,1,0,0,'doan SAY_AGGRO'),
- (6487,-1189020,'Burn in righteous fire!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,5843,1,0,0,'doan SAY_SPECIALAE'),
- (3974,-1189021,'Release the hounds!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,5841,1,0,0,'loksey SAY_AGGRO'),
-
--- -1 209 000 ZUL'FARRAK
- (7607,-1209000,'Oh no! Here they come!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,1,0,'Weegli Blastfuse SAY_WEEGLI_OHNO'),
- (7607,-1209001,'OK. Here I go.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,1,0,'Weegli Blastfuse SAY_WEEGLI_OK_I_GO'),
- (7604,-1209002,'Placeholder 1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,1,0,'Sergeant Bly SAY_1'),
- (7604,-1209003,'Placeholder 2',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,1,0,'Sergeant Bly SAY_2'),
-
--- -1 229 000 BLACKROCK SPIRE
-
--- -1 230 000 BLACKROCK DEPTHS
- (9503,-1230000,'Ah, hits the spot!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'rocknot SAY_GOT_BEER'),
- (9019,-1230001,'Come to aid the Throne!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,0,0,'dagran SAY_AGGRO'),
- (9019,-1230002,'Hail to the king, baby!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,0,0,'dagran SAY_SLAY'),
- (10096,-1230003,'You have been sentenced to death for crimes against the Dark Iron nation!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,0,0,'npc_grimstone SCRIPT_TEXT1'),
- (10096,-1230004,'The Sons of Thaurissan shall watch you perish in the Ring of the Law!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,0,0,'npc_grimstone SCRIPT_TEXT2'),
- (10096,-1230005,'Unleash the fury and let it be done!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,0,0,'npc_grimstone SCRIPT_TEXT3'),
- (10096,-1230006,'Haha! I bet you thought you were done!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,0,0,'npc_grimstone SCRIPT_TEXT4'),
- (10096,-1230007,'But your real punishment lies ahead.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,0,0,'npc_grimstone SCRIPT_TEXT5'),
- (10096,-1230008,'Good riddance!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,0,0,'npc_grimstone SCRIPT_TEXT6'),
-
--- -1 249 000 ONYXIA'S LAIR
- (10184,-1249000,'How fortuitous. Usually, I must leave my lair to feed.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,0,0,'onyxia SAY_AGGRO'),
- (10184,-1249001,'Learn your place mortal!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,0,0,'onyxia SAY_KILL'),
- (10184,-1249002,'This meaningless exertion bores me. I''ll incinerate you all from above!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,0,254,'onyxia SAY_PHASE_2_TRANS'),
- (10184,-1249003,'It seems you''ll need another lesson, mortals!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,0,293,'onyxia SAY_PHASE_3_TRANS'),
- (10184,-1249004,'%s takes in a deep breath...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,3,0,0,'onyxia EMOTE_BREATH'),
-
--- -1 269 000 OPENING OF THE DARK PORTAL (BLACK MORASS)
- (17880,-1269000,'Why do you persist? Surely you can see the futility of it all. It is not too late! You may still leave with your lives ...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10442,1,0,0,'temporus SAY_ENTER'),
- (17880,-1269001,'So be it ... you have been warned.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10444,1,0,0,'temporus SAY_AGGRO'),
- (17880,-1269002,'Time... sands of time is run out for you.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10443,1,0,0,'temporus SAY_BANISH'),
- (17880,-1269003,'You should have left when you had the chance.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10445,1,0,0,'temporus SAY_SLAY1'),
- (17880,-1269004,'Your days are done.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10446,1,0,0,'temporus SAY_SLAY2'),
- (17880,-1269005,'My death means ... little.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10447,1,0,0,'temporus SAY_DEATH'),
- (17879,-1269006,'Why do you aid the Magus? Just think of how many lives could be saved if the portal is never opened, if the resulting wars could be erased ...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10412,1,0,0,'chrono_lord_deja SAY_ENTER'),
- (17879,-1269007,'If you will not cease this foolish quest, then you will die!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10414,1,0,0,'chrono_lord_deja SAY_AGGRO'),
- (17879,-1269008,'You have outstayed your welcome, Timekeeper. Begone!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10413,1,0,0,'chrono_lord_deja SAY_BANISH'),
- (17879,-1269009,'I told you it was a fool''s quest!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10415,1,0,0,'chrono_lord_deja SAY_SLAY1'),
- (17879,-1269010,'Leaving so soon?',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10416,1,0,0,'chrono_lord_deja SAY_SLAY2'),
- (17879,-1269011,'Time ... is on our side.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10417,1,0,0,'chrono_lord_deja SAY_DEATH'),
- (17881,-1269012,'The time has come to shatter this clockwork universe forever! Let us no longer be slaves of the hourglass! I warn you: those who do not embrace the greater path shall become victims of its passing!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10400,1,0,0,'aeonus SAY_ENTER'),
- (17881,-1269013,'Let us see what fate lays in store...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10402,1,0,0,'aeonus SAY_AGGRO'),
- (17881,-1269014,'Your time is up, slave of the past!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10401,1,0,0,'aeonus SAY_BANISH'),
- (17881,-1269015,'One less obstacle in our way!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10403,1,0,0,'aeonus SAY_SLAY1'),
- (17881,-1269016,'No one can stop us! No one!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10404,1,0,0,'aeonus SAY_SLAY2'),
- (17881,-1269017,'It is only a matter...of time.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10405,1,0,0,'aeonus SAY_DEATH'),
- (17881,-1269018,'goes into a frenzy!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,2,0,0,'aeonus EMOTE_FRENZY'),
- (20201,-1269019,'Stop! Do not go further, mortals. You are ill-prepared to face the forces of the Infinite Dragonflight. Come, let me help you.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'saat SAY_SAAT_WELCOME'),
- (15608,-1269020,'The time has come! Gul''dan, order your warlocks to double their efforts! Moments from now the gateway will open, and your Horde will be released upon this ripe, unsuspecting world!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10435,1,0,0,'medivh SAY_ENTER'),
- (15608,-1269021,'What is this? Champions, coming to my aid? I sense the hand of the dark one in this. Truly this sacred event bears his blessing?',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10436,1,0,0,'medivh SAY_INTRO'),
- (15608,-1269022,'Champions, my shield grows weak!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10437,1,0,0,'medivh SAY_WEAK75'),
- (15608,-1269023,'My powers must be concentrated on the portal! I do not have time to hold the shield!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10438,1,0,0,'medivh SAY_WEAK50'),
- (15608,-1269024,'The shield is nearly gone! All that I have worked for is in danger!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10439,1,0,0,'medivh SAY_WEAK25'),
- (15608,-1269025,'No... damn this feeble mortal coil...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10441,1,0,0,'medivh SAY_DEATH'),
- (15608,-1269026,'I am grateful for your aid, champions. Now, Gul''dan''s Horde will sweep across this world, like a locust swarm, and all my designs, all my carefully laid plans will at last fall into place.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10440,1,0,0,'medivh SAY_WIN'),
- (15608,-1269027,'Orcs of the Horde! This portalis the gateway to your new destiny! Azeroth lies before you, ripe for the taking!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,0,0,'medivh SAY_ORCS_ENTER'),
- (15608,-1269028,'Gul''dan speaks the truth! We should return at once to tell our brothers of the news! Retreat back trought the portal!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,0,0,'medivh SAY_ORCS_ANSWER'),
-
--- -1 289 000 SCHOLOMANCE
-
--- -1 309 000 ZUL'GURUB
- (14507,-1309000,'Let the coils of hate unfurl!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,8421,1,0,0,'venoxis SAY_TRANSFORM'),
- (14507,-1309001,'Ssserenity..at lassst!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,0,0,'venoxis SAY_DEATH'),
- (14517,-1309002,'Lord Hir''eek, grant me wings of vengance!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,8417,1,0,0,'jeklik SAY_AGGRO'),
- (14517,-1309003,'I command you to rain fire down upon these invaders!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,0,0,'jeklik SAY_RAIN_FIRE'),
- (14517,-1309004,'Finally ...death. Curse you Hakkar! Curse you!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,8422,1,0,0,'jeklik SAY_DEATH'),
- (14510,-1309005,'Draw me to your web mistress Shadra. Unleash your venom!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,8418,1,0,0,'marli SAY_AGGRO'),
- (14510,-1309006,'Shadra, make of me your avatar!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,0,0,'marli SAY_TRANSFORM'),
- (14510,-1309007,'Aid me my brood!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,0,0,'marli SAY_SPIDER_SPAWN'),
- (14510,-1309008,'Bless you mortal for this release. Hakkar controls me no longer...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,8423,1,0,0,'marli SAY_DEATH'),
- (14509,-1309009,'Shirvallah, fill me with your RAGE!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,8419,1,0,0,'thekal SAY_AGGRO'),
- (14509,-1309010,'Hakkar binds me no more! Peace at last!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,8424,1,0,0,'thekal SAY_DEATH'),
- (14515,-1309011,'Bethekk, your priestess calls upon your might!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,8416,1,0,0,'arlokk SAY_AGGRO'),
- (14515,-1309012,'Feast on $n, my pretties!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,0,0,'arlokk SAY_FEAST_PANTHER'),
- (14515,-1309013,'At last, I am free of the Soulflayer!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,8412,1,0,0,'arlokk SAY_DEATH'),
- (11380,-1309014,'Welcome to da great show friends! Step right up to die!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,8425,1,0,0,'jindo SAY_AGGRO'),
- (11382,-1309015,'I''ll feed your souls to Hakkar himself!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,8413,1,0,0,'mandokir SAY_AGGRO'),
- (11382,-1309016,'DING!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,0,0,'mandokir SAY_DING_KILL'),
- (11382,-1309017,'GRATS!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,0,0,'mandokir SAY_GRATS_JINDO'),
- (11382,-1309018,'I''m keeping my eye on you, $N!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,0,0,'mandokir SAY_WATCH'),
- (11382,-1309019,'Don''t make me angry. You won''t like it when I''m angry.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,0,0,'mandokir SAY_WATCH_WHISPER'),
- (14834,-1309020,'PRIDE HERALDS THE END OF YOUR WORLD. COME, MORTALS! FACE THE WRATH OF THE SOULFLAYER!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,8414,1,0,0,'hakkar SAY_AGGRO'),
- (14834,-1309021,'Fleeing will do you no good, mortals!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,0,0,'hakkar SAY_FLEEING'),
- (14834,-1309022,'You dare set foot upon Hakkari holy ground? Minions of Hakkar, destroy the infidels!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,0,0,'hakkar SAY_MINION_DESTROY'),
- (14834,-1309023,'Minions of Hakkar, hear your God. The sanctity of this temple has been compromised. Invaders encroach upon holy ground! The Altar of Blood must be protected. Kill them all!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,0,0,'hakkar SAY_PROTECT_ALTAR'),
-
--- -1 329 000 STRATHOLME
- (11136,-1329000,'Thanks to Egan',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'freed_soul SAY_ZAPPED0'),
- (11136,-1329001,'Rivendare must die',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'freed_soul SAY_ZAPPED1'),
- (11136,-1329002,'Who you gonna call?',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'freed_soul SAY_ZAPPED2'),
- (11136,-1329003,'Don''t cross those beams!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'freed_soul SAY_ZAPPED3'),
-
--- -1 349 000 MARAUDON
-
--- -1 350 000 Gates of Ahn'Qiraj Opening
- (15381,-1350000,'We must act quickly or all shall be lost!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,1,'ANACHRONOS_SAY_1'),
- (15381,-1350001,'NOW, STAGHELM! WE GO NOW! Prepare your magic!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,81,'ANACHRONOS_SAY_2'),
- (15381,-1350002,'Stay close...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,1,'ANACHRONOS_SAY_3'),
- (15381,-1350003,'The sands of time will halt, but only for a moment! I will now conjure the barrier.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,1,'ANACHRONOS_SAY_4'),
- (15381,-1350004,'FINISH THE SPELL STAGHELM! I CANNOT HOLD THE GLYPHS OF WARDING IN PLACE MUCH LONGER! CALL FORTH THE ROOTS!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,53,'ANACHRONOS_SAY_5'),
- (15381,-1350005,'It... It is over, Lord Staghelm. We are victorious. Albeit the cost for this victory was great.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,1,'ANACHRONOS_SAY_6'),
- (15381,-1350006,'There is but one duty that remains...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,1,'ANACHRONOS_SAY_7'),
- (15381,-1350007,'Before I leave this place, I make one final offreing to you, Lord Staghelm. Should a time arise in which you must gain entry to this accursed fortress, use the Scepter of the Shifting Sands on the sacred gong. The magic holding the barrier together will dissipate and the horrors of Ahn''Qiraj will be unleashed upon the world once more.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,1,'ANACHRONOS_SAY_8'),
- (15381,-1350008,'Lord Staghelm, where are you going? You would shatter our bond for the sake of pride?',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,1,'ANACHRONOS_SAY_9'),
- (15381,-1350009,'And now you know all that there is to know, mortal...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,1,'ANACHRONOS_SAY_10'),
- (15381,-1350010,'hands the Scepter of the Shifting Sands to Fandral Staghelm.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,2,0,1,'ANACHRONOS_EMOTE_1'),
- (15381,-1350011,'shakes his head in dissapointment.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,2,0,274,'ANACHRONOS_EMOTE_2'),
- (15381,-1350012,'kneels down to pick up the fragments of the shattered scepter.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,2,0,87,'ANACHRONOS_EMOTE_3'),
- (15382,-1350013,'My forces cannot overcome the Qiraji defenses. We will not be able to get close enough to place your precious barrier, dragon.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,1,'FANDRAL_SAY_1'),
- (15382,-1350014,'It is done dragon. Lead the way...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,1,'FANDRAL_SAY_2'),
- (15382,-1350015,'Ancient ones guide my hand... Wake from your slumber! WAKE AND SEAL THIS CURSED PLACE!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,1,'FANDRAL_SAY_3'),
- (15382,-1350016,'After the savagery that my people have witnessed and felt, you expect me to accept another burden, dragon? Surely you are mad.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,25,'FANDRAL_SAY_4'),
- (15382,-1350017,'I want nothing to do with Silithus, the Qiraji and least of all, any damned dragons!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,1,'FANDRAL_SAY_5'),
- (15382,-1350018,'My son''s soul will find no comfort in this hollow victory, dragon. I will have him back.Thought it takes a millennia, I WILL have my son back!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,254,'FANDRAL_SAY_6'),
- (15382,-1350019,'falls to one knee - exhausted.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,2,0,16,'FANDRAL_EMOTE_1'),
- (15382,-1350020,'hurls the Scepter of the Shifting Sands into the barrier, shattering it.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,2,0,0,'FANDRAL_EMOTE_2'),
- (15379,-1350021,'Aye, Fandral, remember these words: Let not your grief guide your faith. These thoughts you hold... dark places you go, night elf. Absolution cannot be had through misguided vengeance.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,1,'CAELESTRASZ_SAY_1'),
- (15379,-1350022,'Do not forget the sacrifices made on this day, night elf. We have all suffered immensely at the hands of these beasts.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,1,'CAELESTRASZ_SAY_2'),
- (15379,-1350023,'Alexstrasza grant me the resolve to drive our enemies back!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,0,53,'CAELESTRASZ_YELL_1'),
- (15380,-1350024,'This distraction will give you and the young druid time enough to seal the gate. Do not falter. Now, let us see how they deal with chaotic magic.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,1,'ARYGOS_SAY_1'),
- (15380,-1350025,'Let them feel the wrath of the Blue Flight! May Malygos protect me!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,0,53,'ARYGOS_YELL_1'),
- (15380,-1350026,'nods knowingly.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,2,0,273,'ARYGOS_EMOTE_1'),
- (15378,-1350027,'There is a way...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,1,'MERITHRA_SAY_1'),
- (15378,-1350028,'We will push them back, Anachronos. This I vow. Uphold the end of this task. Let not your hands falter as you seal our fates behind the barrier.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,1,'MERITHRA_SAY_2'),
- (15378,-1350029,'Succumb to the endless dream, little ones. Let it consume you!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,0,53,'MERITHRA_YELL_1'),
- (15378,-1350030,'glances at her compatriots.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,2,0,2,'MERITHRA_EMOTE_1'),
-
--- -1 389 000 RAGEFIRE CHASM
-
--- -1 409 000 MOLTEN CORE
- (12056,-1409000,'%s performs one last service for Ragnaros.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,2,0,0,'geddon EMOTE_SERVICE'),
- (11982,-1409001,'%s goes into a killing frenzy!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,2,0,0,'magmadar EMOTE_FRENZY'),
- (11988,-1409002,'%s refuses to die while its master is in trouble.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,2,0,0,'core rager EMOTE_LOWHP'),
- (12018,-1409003,'Reckless mortals, none may challenge the sons of the living flame!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,8035,1,0,0,'majordomo SAY_AGGRO'),
- (12018,-1409004,'The runes of warding have been destroyed! Hunt down the infedels my bretheren.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,8039,1,0,0,'majordomo SAY_SPAWN'),
- (12018,-1409005,'Ashes to Ashes!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,8037,1,0,0,'majordomo SAY_SLAY'),
- (12018,-1409006,'Burn mortals! Burn for this transgression!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,8036,1,0,0,'majordomo SAY_SPECIAL'),
- (12018,-1409007,'Impossible! Stay your attack mortals! I submitt! I submitt! Brashly you have come to rest the secrets of the living flame. You will soon regret the recklessness of your quest. I go now to summon the lord whos house this is. Should you seek an audiance with him your paltry lives will surly be forfit. Nevertheless seek out his lair if you dare!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,8038,1,0,0,'majordomo SAY_DEFEAT'),
- (12018,-1409008,'Behold Ragnaros, the Firelord! He who was ancient when this world was young! Bow before him, mortals! Bow before your ending!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,8040,1,0,0,'ragnaros SAY_SUMMON_MAJ'),
- (12018,-1409009,'TOO SOON! YOU HAVE AWAKENED ME TOO SOON, EXECUTUS! WHAT IS THE MEANING OF THIS INTRUSION?',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,8043,1,0,0,'ragnaros SAY_ARRIVAL1_RAG'),
- (12018,-1409010,'These mortal infidels, my lord! They have invaded your sanctum, and seek to steal your secrets!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,8041,1,0,0,'ragnaros SAY_ARRIVAL2_MAJ'),
- (12018,-1409011,'FOOL! YOU ALLOWED THESE INSECTS TO RUN RAMPANT THROUGH THE HALLOWED CORE, AND NOW YOU LEAD THEM TO MY VERY LAIR? YOU HAVE FAILED ME, EXECUTUS! JUSTICE SHALL BE MET, INDEED!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,8044,1,0,0,'ragnaros SAY_ARRIVAL3_RAG'),
- (12018,-1409012,'NOW FOR YOU, INSECTS. BOLDLY YOU SAUGHT THE POWER OF RAGNAROS NOW YOU SHALL SEE IT FIRST HAND.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,8045,1,0,0,'ragnaros SAY_ARRIVAL5_RAG'),
- (11502,-1409013,'COME FORTH, MY SERVANTS! DEFEND YOUR MASTER!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,8049,1,0,0,'ragnaros SAY_REINFORCEMENTS1'),
- (11502,-1409014,'YOU CANNOT DEFEAT THE LIVING FLAME! COME YOU MINIONS OF FIRE! COME FORTH YOU CREATURES OF HATE! YOUR MASTER CALLS!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,8050,1,0,0,'ragnaros SAY_REINFORCEMENTS2'),
- (11502,-1409015,'BY FIRE BE PURGED!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,8046,1,0,0,'ragnaros SAY_HAND'),
- (11502,-1409016,'TASTE THE FLAMES OF SULFURON!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,8047,1,0,0,'ragnaros SAY_WRATH'),
- (11502,-1409017,'DIE INSECT!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,8051,1,0,0,'ragnaros SAY_KILL'),
- (11502,-1409018,'MY PATIENCE IS DWINDLING! COME NATS TO YOUR DEATH!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,8048,1,0,0,'ragnaros SAY_MAGMABURST'),
-
--- -1 429 000 DIRE MAUL
-
--- -1 469 000 BLACKWING LAIR
- (12017,-1469000,'None of your kind should be here! You''ve doomed only yourselves!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,8286,1,0,0,'broodlord SAY_AGGRO'),
- (12017,-1469001,'Clever Mortals but I am not so easily lured away from my sanctum!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,8287,1,0,0,'broodlord SAY_LEASH'),
- (14020,-1469002,'goes into a killing frenzy!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,2,0,0,'chromaggus EMOTE_FRENZY'),
- (14020,-1469003,'flinches as its skin shimmers.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,2,0,0,'chromaggus EMOTE_SHIMMER'),
- (10162,-1469004,'In this world where time is your enemy, it is my greatest ally. This grand game of life that you think you play in fact plays you. To that I say...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'victor_nefarius SAY_GAMESBEGIN_1'),
- (10162,-1469005,'Let the games begin!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,8280,1,0,0,'victor_nefarius SAY_GAMESBEGIN_2'),
- (10162,-1469006,'Ah, the heroes. You are persistent, aren''t you. Your allied attempted to match his power against mine, and had to pay the price. Now he shall serve me, by slaughtering you. Get up little red wyrm and destroy them!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,8279,1,0,0,'victor_nefarius SAY_VAEL_INTRO'),
- (11583,-1469007,'Well done, my minions. The mortals'' courage begins to wane! Now, let''s see how they contend with the true Lord of Blackrock Spire!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,8288,1,0,0,'nefarian SAY_AGGRO'),
- (11583,-1469008,'Enough! Now you vermin shall feel the force of my birthright, the fury of the earth itself.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,8289,1,0,0,'nefarian SAY_XHEALTH'),
- (11583,-1469009,'Burn, you wretches! Burn!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,8290,1,0,0,'nefarian SAY_SHADOWFLAME'),
- (11583,-1469010,'Impossible! Rise my minions! Serve your master once more!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,8291,1,0,0,'nefarian SAY_RAISE_SKELETONS'),
- (11583,-1469011,'Worthless $N! Your friends will join you soon enough!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,8293,1,0,0,'nefarian SAY_SLAY'),
- (11583,-1469012,'This cannot be! I am the Master here! You mortals are nothing to my kind! DO YOU HEAR? NOTHING!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,8292,1,0,0,'nefarian SAY_DEATH'),
- (11583,-1469013,'Mages too? You should be more careful when you play with magic...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,0,0,'nefarian SAY_MAGE'),
- (11583,-1469014,'Warriors, I know you can hit harder than that! Let''s see it!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,0,0,'nefarian SAY_WARRIOR'),
- (11583,-1469015,'Druids and your silly shapeshifting. Let''s see it in action!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,0,0,'nefarian SAY_DRUID'),
- (11583,-1469016,'Priests! If you''re going to keep healing like that, we might as well make it a little more interesting!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,0,0,'nefarian SAY_PRIEST'),
- (11583,-1469017,'Paladins, I''ve heard you have many lives. Show me.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,0,0,'nefarian SAY_PALADIN'),
- (11583,-1469018,'Shamans, show me what your totems can do!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,0,0,'nefarian SAY_SHAMAN'),
- (11583,-1469019,'Warlocks, you shouldn''t be playing with magic you don''t understand. See what happens?',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,0,0,'nefarian SAY_WARLOCK'),
- (11583,-1469020,'Hunters and your annoying pea-shooters!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,0,0,'nefarian SAY_HUNTER'),
- (11583,-1469021,'Rogues? Stop hiding and face me!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,0,0,'nefarian SAY_ROGUE'),
- (12435,-1469022,'You''ll pay for forcing me to do this.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,8275,1,0,0,'razorgore SAY_EGGS_BROKEN1'),
- (12435,-1469023,'Fools! These eggs are more precious than you know.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,8276,1,0,0,'razorgore SAY_EGGS_BROKEN2'),
- (12435,-1469024,'No! Not another one! I''ll have your heads for this atrocity.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,8277,1,0,0,'razorgore SAY_EGGS_BROKEN3'),
- (12435,-1469025,'If I fall into the abyss I''ll take all of you mortals with me...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,8278,1,0,0,'razorgore SAY_DEATH'),
- (13020,-1469026,'Too late...friends. Nefarius'' corruption has taken hold. I cannot...control myself.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,8281,1,0,0,'vaelastrasz SAY_LINE1'),
- (13020,-1469027,'I beg you Mortals, flee! Flee before I lose all control. The Black Fire rages within my heart. I must release it!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,8282,1,0,0,'vaelastrasz SAY_LINE2'),
- (13020,-1469028,'FLAME! DEATH! DESTRUCTION! COWER MORTALS BEFORE THE WRATH OF LORD....NO! I MUST FIGHT THIS!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,8283,1,0,0,'vaelastrasz SAY_LINE3'),
- (13020,-1469029,'Nefarius'' hate has made me stronger than ever before. You should have fled, while you could, mortals! The fury of Blackrock courses through my veins!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,8285,1,0,0,'vaelastrasz SAY_HALFLIFE'),
- (13020,-1469030,'Forgive me $N, your death only adds to my failure.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,8284,1,0,0,'vaelastrasz SAY_KILLTARGET'),
- (11981,-1469031,'goes into a frenzy!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,2,0,0,'flamegor EMOTE_FRENZY'),
-
-/* Ruins of Ahn'qiraj have not assigned scripts or missing scripts */
--- -1 509 000 RUINS OF AHN'QIRAJ
- (0,-1509000,'senses your fear.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,2,0,0,'moam EMOTE_AGGRO'),
- (0,-1509001,'bristles with energy!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,2,0,0,'moan EMOTE_MANA_FULL'),
- (0,-1509002,'sets eyes on $N!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,2,0,0,'buru EMOTE_TARGET'),
- (0,-1509003,'They come now. Try not to get yourself killed, young blood.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,0,0,'andorov SAY_ANDOROV_INTRO'),
- (0,-1509004,'Remember, Rajaxx, when I said I''d kill you last? I lied...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,0,0,'andorov SAY_ANDOROV_ATTACK'),
- (0,-1509005,'The time of our retribution is at hand! Let darkness reign in the hearts of our enemies!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,8612,1,0,0,'rajaxx SAY_WAVE3'),
- (0,-1509006,'No longer will we wait behind barred doors and walls of stone! No longer will our vengeance be denied! The dragons themselves will tremble before our wrath!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,8610,1,0,0,'rajaxx SAY_WAVE4'),
- (0,-1509007,'Fear is for the enemy! Fear and death!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,8608,1,0,0,'rajaxx SAY_WAVE5'),
- (0,-1509008,'Staghelm will whimper and beg for his life, just as his whelp of a son did! One thousand years of injustice will end this day!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,8611,1,0,0,'rajaxx SAY_WAVE6'),
- (0,-1509009,'Fandral! Your time has come! Go and hide in the Emerald Dream and pray we never find you!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,8607,1,0,0,'rajaxx SAY_WAVE7'),
- (0,-1509010,'Impudent fool! I will kill you myself!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,8609,1,0,0,'rajaxx SAY_INTRO'),
- (0,-1509011,'Attack and make them pay dearly!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,8603,1,0,0,'rajaxx SAY_UNK1'),
- (0,-1509012,'Crush them! Drive them out!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,8605,1,0,0,'rajaxx SAY_UNK2'),
- (0,-1509013,'Do not hesitate! Destroy them!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,8606,1,0,0,'rajaxx SAY_UNK3'),
- (0,-1509014,'Warriors! Captains! Continue the fight!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,8613,1,0,0,'rajaxx SAY_UNK4'),
- (0,-1509015,'You are not worth my time $N!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,8614,1,0,0,'rajaxx SAY_DEAGGRO'),
- (0,-1509016,'Breath your last!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,8604,1,0,0,'rajaxx SAY_KILLS_ANDOROV'),
- (0,-1509017,'Soon you will know the price of your meddling, mortals... The master is nearly whole... And when he rises, your world will be cease!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,0,0,'rajaxx SAY_COMPLETE_QUEST'),
- (0,-1509018,'I am rejuvinated!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,8593,1,0,0,'ossirian SAY_SURPREME1'),
- (0,-1509019,'My powers are renewed!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,8595,1,0,0,'ossirian SAY_SURPREME2'),
- (0,-1509020,'My powers return!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,8596,1,0,0,'ossirian SAY_SURPREME3'),
- (0,-1509021,'Protect the city at all costs!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,8597,1,0,0,'ossirian SAY_RAND_INTRO1'),
- (0,-1509022,'The walls have been breached!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,8599,1,0,0,'ossirian SAY_RAND_INTRO2'),
- (0,-1509023,'To your posts. Defend the city.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,8600,1,0,0,'ossirian SAY_RAND_INTRO3'),
- (0,-1509024,'Tresspassers will be terminated.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,8601,1,0,0,'ossirian SAY_RAND_INTRO4'),
- (0,-1509025,'Sands of the desert rise and block out the sun!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,8598,1,0,0,'ossirian SAY_AGGRO'),
- (0,-1509026,'You are terminated.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,8602,1,0,0,'ossirian SAY_SLAY'),
- (0,-1509027,'I...have...failed.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,8594,1,0,0,'ossirian SAY_DEATH'),
-
--- -1 531 000 TEMPLE OF AHN'QIRAJ
- (15263,-1531000,'Are you so eager to die? I would be happy to accomodate you.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,8615,1,0,0,'skeram SAY_AGGRO1'),
- (15263,-1531001,'Cower mortals! The age of darkness is at hand.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,8616,1,0,0,'skeram SAY_AGGRO2'),
- (15263,-1531002,'Tremble! The end is upon you.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,8621,1,0,0,'skeram SAY_AGGRO3'),
- (15263,-1531003,'Let your death serve as an example!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,8617,1,0,0,'skeram SAY_SLAY1'),
- (15263,-1531004,'Spineless wretches! You will drown in rivers of blood!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,8619,1,0,0,'skeram SAY_SLAY2'),
- (15263,-1531005,'The screams of the dying will fill the air. A symphony of terror is about to begin!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,8620,1,0,0,'skeram SAY_SLAY3'),
- (15263,-1531006,'Prepare for the return of the ancient ones!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,8618,1,0,0,'skeram SAY_SPLIT'),
- (15263,-1531007,'You only delay... the inevetable.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,8622,1,0,0,'skeram SAY_DEATH'),
- (15516,-1531008,'You will be judged for defiling these sacred grounds! The laws of the Ancients will not be challenged! Trespassers will be annihilated!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,8646,1,0,0,'sartura SAY_AGGRO'),
- (15516,-1531009,'I sentence you to death!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,8647,1,0,0,'sartura SAY_SLAY'),
- (15516,-1531010,'I serve to the last!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,8648,1,0,0,'sartura SAY_DEATH'),
- (15727,-1531011,'is weakened!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,2,0,0,'cthun EMOTE_WEAKENED'),
-
--- -1 532 000 KARAZHAN
- (16151,-1532000,'Well done Midnight!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,9173,1,0,0,'attumen SAY_MIDNIGHT_KILL'),
- (16151,-1532001,'Cowards! Wretches!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,9167,1,0,0,'attumen SAY_APPEAR1'),
- (16151,-1532002,'Who dares attack the steed of the Huntsman?',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,9298,1,0,0,'attumen SAY_APPEAR2'),
- (16151,-1532003,'Perhaps you would rather test yourselves against a more formidable opponent?!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,9299,1,0,0,'attumen SAY_APPEAR3'),
- (16151,-1532004,'Come, Midnight, let''s disperse this petty rabble!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,9168,1,0,0,'attumen SAY_MOUNT'),
- (15550,-1532005,'It was... inevitable.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,9169,1,0,0,'attumen SAY_KILL1'),
- (15550,-1532006,'Another trophy to add to my collection!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,9300,1,0,0,'attumen SAY_KILL2'),
- (15550,-1532007,'Weapons are merely a convenience for a warrior of my skill!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,9166,1,0,0,'attumen SAY_DISARMED'),
- (15550,-1532008,'I always knew... someday I would become... the hunted.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,9165,1,0,0,'attumen SAY_DEATH'),
- (15550,-1532009,'Such easy sport.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,9170,1,0,0,'attumen SAY_RANDOM1'),
- (15550,-1532010,'Amateurs! Do not think you can best me! I kill for a living.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,9304,1,0,0,'attumen SAY_RANDOM2'),
- (15687,-1532011,'Hmm, unannounced visitors? Preparations must be made.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,9211,1,0,0,'moroes SAY_AGGRO'),
- (15687,-1532012,'Now, where was I? Oh yes...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,9215,1,0,0,'moroes SAY_SPECIAL_1'),
- (15687,-1532013,'You rang?',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,9316,1,0,0,'moroes SAY_SPECIAL_2'),
- (15687,-1532014,'One more for dinner this evening.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,9214,1,0,0,'moroes SAY_KILL_1'),
- (15687,-1532015,'Time... Never enough time.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,9314,1,0,0,'moroes SAY_KILL_2'),
- (15687,-1532016,'I''ve gone and made a mess.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,9315,1,0,0,'moroes SAY_KILL_3'),
- (15687,-1532017,'How terribly clumsy of me...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,9213,1,0,0,'moroes SAY_DEATH'),
- (16457,-1532018,'Your behavior will not be tolerated!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,9204,1,0,0,'maiden SAY_AGGRO'),
- (16457,-1532019,'Ah ah ah...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,9207,1,0,0,'maiden SAY_SLAY1'),
- (16457,-1532020,'This is for the best.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,9312,1,0,0,'maiden SAY_SLAY2'),
- (16457,-1532021,'Impure thoughts lead to profane actions.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,9311,1,0,0,'maiden SAY_SLAY3'),
- (16457,-1532022,'Cast out your corrupt thoughts.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,9313,1,0,0,'maiden SAY_REPENTANCE1'),
- (16457,-1532023,'Your impurity must be cleansed.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,9208,1,0,0,'maiden SAY_REPENTANCE2'),
- (16457,-1532024,'Death comes. Will your conscience be clear?',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,9206,1,0,0,'maiden SAY_DEATH'),
- (17535,-1532025,'Oh at last, at last. I can go home.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,9190,1,0,0,'dorothee SAY_DOROTHEE_DEATH'),
- (17535,-1532026,'Don''t let them hurt us, Tito! Oh, you won''t, will you?',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,9191,1,0,0,'dorothee SAY_DOROTHEE_SUMMON'),
- (17535,-1532027,'Tito, oh Tito, no!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,9192,1,0,0,'dorothee SAY_DOROTHEE_TITO_DEATH'),
- (17535,-1532028,'Oh dear, we simply must find a way home! The old wizard could be our only hope! Strawman, Roar, Tinhead, will you... wait! Oh golly, look! We have visitors!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,9195,1,0,0,'dorothee SAY_DOROTHEE_AGGRO'),
- (17546,-1532029,'Wanna fight? Huh? Do ya? C''mon, I''ll fight you with both claws behind my back!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,9227,1,0,0,'roar SAY_ROAR_AGGRO'),
- (17546,-1532030,'You didn''t have to go and do that.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,9229,1,0,0,'roar SAY_ROAR_DEATH'),
- (17546,-1532031,'I think I''m going to go take fourty winks.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,9230,1,0,0,'roar SAY_ROAR_SLAY'),
- (17543,-1532032,'Now what should I do with you? I simply can''t make up my mind.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,9254,1,0,0,'strawman SAY_STRAWMAN_AGGRO'),
- (17543,-1532033,'Don''t let them make a mattress... out of me.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,9256,1,0,0,'strawman SAY_STRAWMAN_DEATH'),
- (17543,-1532034,'I guess I''m not a failure after all.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,9257,1,0,0,'strawman SAY_STRAWMAN_SLAY'),
- (17547,-1532035,'I could really use a heart. Say, can I have yours?',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,9268,1,0,0,'tinhead SAY_TINHEAD_AGGRO'),
- (17547,-1532036,'Back to being an old rustbucket.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,9270,1,0,0,'tinhead SAY_TINHEAD_DEATH'),
- (17547,-1532037,'Guess I''m not so rusty, after all.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,9271,1,0,0,'tinhead SAY_TINHEAD_SLAY'),
- (17547,-1532038,'begins to rust.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,2,0,0,'tinhead EMOTE_RUST'),
- (18168,-1532039,'Woe to each and every one of you my pretties! <cackles>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,9179,1,0,0,'crone SAY_CRONE_AGGRO'),
- (18168,-1532040,'It will all be over soon! <cackles>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,9307,1,0,0,'crone SAY_CRONE_AGGRO2'),
- (18168,-1532041,'How could you? What a cruel, cruel world!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,9178,1,0,0,'crone SAY_CRONE_DEATH'),
- (18168,-1532042,'Fixed you, didn''t I? <cackles>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,9180,1,0,0,'crone SAY_CRONE_SLAY'),
- (17521,-1532043,'All the better to own you with!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,9276,1,0,0,'wolf SAY_WOLF_AGGRO'),
- (17521,-1532044,'Mmmm... delicious.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,9277,1,0,0,'wolf SAY_WOLF_SLAY'),
- (17521,-1532045,'Run away little girl, run away!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,9278,1,0,0,'wolf SAY_WOLF_HOOD'),
- (17534,-1532046,'What devil art thou, that dost torment me thus?',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,9196,1,0,0,'julianne SAY_JULIANNE_AGGRO'),
- (17534,-1532047,'Where is my lord? Where is my Romulo?',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,9199,1,0,0,'julianne SAY_JULIANNE_ENTER'),
- (17534,-1532048,'Romulo, I come! Oh... this do I drink to thee!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,9198,1,0,0,'julianne SAY_JULIANNE_DEATH01'),
- (17534,-1532049,'Where is my Lord? Where is my Romulo? Ohh, happy dagger! This is thy sheath! There rust, and let me die!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,9310,1,0,0,'julianne SAY_JULIANNE_DEATH02'),
- (17534,-1532050,'Come, gentle night; and give me back my Romulo!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,9200,1,0,0,'julianne SAY_JULIANNE_RESURRECT'),
- (17534,-1532051,'Parting is such sweet sorrow.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,9201,1,0,0,'julianne SAY_JULIANNE_SLAY'),
- (17533,-1532052,'Wilt thou provoke me? Then have at thee, boy!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,9233,1,0,0,'romulo SAY_ROMULO_AGGRO'),
- (17533,-1532053,'Thou smilest... upon the stroke that... murders me.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,9235,1,0,0,'romulo SAY_ROMULO_DEATH'),
- (17533,-1532054,'This day''s black fate on more days doth depend. This but begins the woe. Others must end.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,9236,1,0,0,'romulo SAY_ROMULO_ENTER'),
- (17533,-1532055,'Thou detestable maw, thou womb of death; I enforce thy rotten jaws to open!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,9237,1,0,0,'romulo SAY_ROMULO_RESURRECT'),
- (17533,-1532056,'How well my comfort is revived by this!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,9238,1,0,0,'romulo SAY_ROMULO_SLAY'),
- (15691,-1532057,'The Menagerie is for guests only.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,9183,1,0,0,'curator SAY_AGGRO'),
- (15691,-1532058,'Gallery rules will be strictly enforced.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,9188,1,0,0,'curator SAY_SUMMON1'),
- (15691,-1532059,'This curator is equipped for gallery protection.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,9309,1,0,0,'curator SAY_SUMMON2'),
- (15691,-1532060,'Your request cannot be processed.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,9186,1,0,0,'curator SAY_EVOCATE'),
- (15691,-1532061,'Failure to comply will result in offensive action.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,9185,1,0,0,'curator SAY_ENRAGE'),
- (15691,-1532062,'Do not touch the displays.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,9187,1,0,0,'curator SAY_KILL1'),
- (15691,-1532063,'You are not a guest.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,9308,1,0,0,'curator SAY_KILL2'),
- (15691,-1532064,'This Curator is no longer op... er... ation... al.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,9184,1,0,0,'curator SAY_DEATH'),
- (15688,-1532065,'Your blood will anoint my circle.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,9264,1,0,0,'terestian SAY_SLAY1'),
- (15688,-1532066,'The great one will be pleased.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,9329,1,0,0,'terestian SAY_SLAY2'),
- (15688,-1532067,'My life, is yours. Oh great one.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,9262,1,0,0,'terestian SAY_DEATH'),
- (15688,-1532068,'Ah, you''re just in time. The rituals are about to begin.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,9260,1,0,0,'terestian SAY_AGGRO'),
- (15688,-1532069,'Please, accept this humble offering, oh great one.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,9263,1,0,0,'terestian SAY_SACRIFICE1'),
- (15688,-1532070,'Let the sacrifice serve his testament to my fealty.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,9330,1,0,0,'terestian SAY_SACRIFICE2'),
- (15688,-1532071,'Come, you dwellers in the dark. Rally to my call!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,9265,1,0,0,'terestian SAY_SUMMON1'),
- (15688,-1532072,'Gather, my pets. There is plenty for all.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,9331,1,0,0,'terestian SAY_SUMMON2'),
- (16524,-1532073,'Please, no more. My son... he''s gone mad!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,9241,1,0,0,'aran SAY_AGGRO1'),
- (16524,-1532074,'I''ll not be tortured again!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,9323,1,0,0,'aran SAY_AGGRO2'),
- (16524,-1532075,'Who are you? What do you want? Stay away from me!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,9324,1,0,0,'aran SAY_AGGRO3'),
- (16524,-1532076,'I''ll show you this beaten dog still has some teeth!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,9245,1,0,0,'aran SAY_FLAMEWREATH1'),
- (16524,-1532077,'Burn you hellish fiends!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,9326,1,0,0,'aran SAY_FLAMEWREATH2'),
- (16524,-1532078,'I''ll freeze you all!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,9246,1,0,0,'aran SAY_BLIZZARD1'),
- (16524,-1532079,'Back to the cold dark with you!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,9327,1,0,0,'aran SAY_BLIZZARD2'),
- (16524,-1532080,'Yes, yes, my son is quite powerful... but I have powers of my own!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,9242,1,0,0,'aran SAY_EXPLOSION1'),
- (16524,-1532081,'I am not some simple jester! I am Nielas Aran!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,9325,1,0,0,'aran SAY_EXPLOSION2'),
- (16524,-1532082,'Surely you would not deny an old man a replenishing drink? No, no I thought not.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,9248,1,0,0,'aran SAY_DRINK'),
- (16524,-1532083,'I''m not finished yet! No, I have a few more tricks up me sleeve.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,9251,1,0,0,'aran SAY_ELEMENTALS'),
- (16524,-1532084,'I want this nightmare to be over!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,9250,1,0,0,'aran SAY_KILL1'),
- (16524,-1532085,'Torment me no more!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,9328,1,0,0,'aran SAY_KILL2'),
- (16524,-1532086,'You''ve wasted enough of my time. Let these games be finished!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,9247,1,0,0,'aran SAY_TIMEOVER'),
- (16524,-1532087,'At last... The nightmare is.. over...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,9244,1,0,0,'aran SAY_DEATH'),
- (16524,-1532088,'Where did you get that?! Did HE send you?!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,9249,1,0,0,'aran SAY_ATIESH'),
- (15689,-1532089,'cries out in withdrawal, opening gates to the warp.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,2,0,0,'netherspite EMOTE_PHASE_PORTAL'),
- (15689,-1532090,'goes into a nether-fed rage!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,2,0,0,'netherspite EMOTE_PHASE_BANISH'),
- (15690,-1532091,'Madness has brought you here to me. I shall be your undoing!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,9218,1,0,0,'malchezaar SAY_AGGRO'),
- (15690,-1532092,'Simple fools! Time is the fire in which you''ll burn!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,9220,1,0,0,'malchezaar SAY_AXE_TOSS1'),
- (15690,-1532093,'I see the subtlety of conception is beyond primitives such as you.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,9317,1,0,0,'malchezaar SAY_AXE_TOSS2'),
- (15690,-1532094,'Who knows what secrets hide in the dark.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,9223,1,0,0,'malchezaar SAY_SPECIAL1'),
- (15690,-1532095,'The cerestial forces are mine to manipulate.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,9320,1,0,0,'malchezaar SAY_SPECIAL2'),
- (15690,-1532096,'How can you hope to withstand against such overwhelming power?',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,9321,1,0,0,'malchezaar SAY_SPECIAL3'),
- (15690,-1532097,'Surely you did not think you could win.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,9222,1,0,0,'malchezaar SAY_SLAY1'),
- (15690,-1532098,'Your greed, your foolishness has brought you to this end.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,9318,1,0,0,'malchezaar SAY_SLAY2'),
- (15690,-1532099,'You are, but a plaything, unfit even to amuse.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,9319,1,0,0,'malchezaar SAY_SLAY3'),
- (15690,-1532100,'All realities, all dimensions are open to me!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,9224,1,0,0,'malchezaar SAY_SUMMON1'),
- (15690,-1532101,'You face not Malchezaar alone, but the legions I command!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,9322,1,0,0,'malchezaar SAY_SUMMON2'),
- (15690,-1532102,'I refuse to concede defeat. I am a prince of the Eredar! I am...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,9221,1,0,0,'malchezaar SAY_DEATH'),
- (16812,-1532103,'Welcome Ladies and Gentlemen, to this evening''s presentation!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,9174,1,0,0,'barnes OZ1'),
- (16812,-1532104,'Tonight we plumb the depths of the human soul as we join a lost, lonely girl trying desperately -- with the help of her loyal companions -- to find her way home!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,9338,1,0,0,'barnes OZ2'),
- (16812,-1532105,'But she is pursued... by a wicked malevolent crone!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,9339,1,0,0,'barnes OZ3'),
- (16812,-1532106,'Will she survive? Will she prevail? Only time will tell. And now ... on with the show!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,9340,1,0,0,'barnes OZ4'),
- (16812,-1532107,'Good evening, Ladies and Gentlemen! Welcome to this evening''s presentation!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,9175,1,0,0,'barnes HOOD1'),
- (16812,-1532108,'Tonight, things are not what they seem. For tonight, your eyes may not be trusted',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,9335,1,0,0,'barnes HOOD2'),
- (16812,-1532109,'Take for instance, this quiet, elderly woman, waiting for a visit from her granddaughter. Surely there is nothing to fear from this sweet, grey-haired, old lady.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,9336,1,0,0,'barnes HOOD3'),
- (16812,-1532110,'But don''t let me pull the wool over your eyes. See for yourself what lies beneath those covers! And now... on with the show!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,9337,1,0,0,'barnes HOOD4'),
- (16812,-1532111,'Welcome, Ladies and Gentlemen, to this evening''s presentation!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,9176,1,0,0,'barnes RAJ1'),
- (16812,-1532112,'Tonight, we explore a tale of forbidden love!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,9341,1,0,0,'barnes RAJ2'),
- (16812,-1532113,'But beware, for not all love stories end happily, as you may find out. Sometimes, love pricks like a thorn.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,9342,1,0,0,'barnes RAJ3'),
- (16812,-1532114,'But don''t take it from me, see for yourself what tragedy lies ahead when the paths of star-crossed lovers meet. And now...on with the show!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,9343,1,0,0,'barnes RAJ4'),
-
--- -1 533 000 NAXXRAMAS
- (15956,-1533000,'Ahh... welcome to my parlor.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,8788,1,0,0,'anubrekhan SAY_GREET'),
- (15956,-1533001,'Just a little taste...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,8785,1,0,0,'anubrekhan SAY_AGGRO1'),
- (15956,-1533002,'There is no way out.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,8786,1,0,0,'anubrekhan SAY_AGGRO2'),
- (15956,-1533003,'Yes, Run! It makes the blood pump faster!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,8787,1,0,0,'anubrekhan SAY_AGGRO3'),
- (15956,-1533004,'I hear little hearts beating. Yesss... beating faster now. Soon the beating will stop.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,8790,1,0,0,'anubrekhan SAY_TAUNT1'),
- (15956,-1533005,'Where to go? What to do? So many choices that all end in pain, end in death.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,8791,1,0,0,'anubrekhan SAY_TAUNT2'),
- (15956,-1533006,'Which one shall I eat first? So difficult to choose... the all smell so delicious.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,8792,1,0,0,'anubrekhan SAY_TAUNT3'),
- (15956,-1533007,'Closer now... tasty morsels. I''ve been too long without food. Without blood to drink.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,8793,1,0,0,'anubrekhan SAY_TAUNT4'),
- (15956,-1533008,'Shh... it will all be over soon.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,8789,1,0,0,'anubrekhan SAY_SLAY'),
- (15953,-1533009,'Your old lives, your mortal desires, mean nothing. You are acolytes of the master now, and you will serve the cause without question! The greatest glory is to die in the master''s service!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,8799,1,0,0,'faerlina SAY_GREET'),
- (15953,-1533010,'Slay them in the master''s name!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,8794,1,0,0,'faerlina SAY_AGGRO1'),
- (15953,-1533011,'You cannot hide from me!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,8795,1,0,0,'faerlina SAY_AGGRO2'),
- (15953,-1533012,'Kneel before me, worm!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,8796,1,0,0,'faerlina SAY_AGGRO3'),
- (15953,-1533013,'Run while you still can!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,8797,1,0,0,'faerlina SAY_AGGRO4'),
- (15953,-1533014,'You have failed!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,8800,1,0,0,'faerlina SAY_SLAY1'),
- (15953,-1533015,'Pathetic wretch!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,8801,1,0,0,'faerlina SAY_SLAY2'),
- (15953,-1533016,'The master... will avenge me!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,8798,1,0,0,'faerlina SAY_DEATH'),
- (16028,-1533017,'Patchwerk want to play!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,8909,1,0,0,'patchwerk SAY_AGGRO1'),
- (16028,-1533018,'Kel''Thuzad make Patchwerk his Avatar of War!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,8910,1,0,0,'patchwerk SAY_AGGRO2'),
- (16028,-1533019,'No more play?',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,8912,1,0,0,'patchwerk SAY_SLAY'),
- (16028,-1533020,'What happened to... Patch...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,8911,1,0,0,'patchwerk SAY_DEATH'),
- (16028,-1533021,'goes into a berserker rage!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,2,0,0,'patchwerk EMOTE_BERSERK'),
- (16028,-1533022,'%s becomes enraged!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,2,0,0,'patchwerk EMOTE_ENRAGE'),
- (0,-1533023,'Stalagg crush you!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,8864,1,0,0,'stalagg SAY_STAL_AGGRO'),
- (0,-1533024,'Stalagg kill!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,8866,1,0,0,'stalagg SAY_STAL_SLAY'),
- (0,-1533025,'Master save me...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,8865,1,0,0,'stalagg SAY_STAL_DEATH'),
- (0,-1533026,'Feed you to master!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,8802,1,0,0,'feugen SAY_FEUG_AGGRO'),
- (0,-1533027,'Feugen make master happy!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,8804,1,0,0,'feugen SAY_FEUG_SLAY'),
- (0,-1533028,'No... more... Feugen...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,8803,1,0,0,'feugen SAY_FEUG_DEATH'),
- (0,-1533029,'You are too late... I... must... OBEY!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,8872,1,0,0,'thaddius SAY_GREET'),
- (15928,-1533030,'KILL!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,8867,1,0,0,'thaddius SAY_AGGRO1'),
- (15928,-1533031,'EAT YOUR BONES!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,8868,1,0,0,'thaddius SAY_AGGRO2'),
- (15928,-1533032,'BREAK YOU!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,8869,1,0,0,'thaddius SAY_AGGRO3'),
- (15928,-1533033,'You die now!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,8877,1,0,0,'thaddius SAY_SLAY'),
- (0,-1533034,'Now YOU feel pain!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,8871,1,0,0,'thaddius SAY_ELECT'),
- (15928,-1533035,'Thank... you...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,8870,1,0,0,'thaddius SAY_DEATH'),
- (0,-1533036,'Pleeease!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,8873,1,0,0,'thaddius SAY_SCREAM1'),
- (0,-1533037,'Stop, make it stop!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,8874,1,0,0,'thaddius SAY_SCREAM2'),
- (0,-1533038,'Help me! Save me!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,8875,1,0,0,'thaddius SAY_SCREAM3'),
- (0,-1533039,'Please, nooo!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,8876,1,0,0,'thaddius SAY_SCREAM4'),
- (16060,-1533040,'Foolishly you have sought your own demise. Brazenly you have disregarded powers beyond your understanding. You have fought hard to invade the realm of the harvester. Now there is only one way out - to walk the lonely path of the damned.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,8807,1,0,0,'gothik SAY_SPEECH'),
- (16060,-1533041,'Death is the only escape.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,8806,1,0,0,'gothik SAY_KILL'),
- (16060,-1533042,'I... am... undone!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,8805,1,0,0,'gothik SAY_DEATH'),
- (16060,-1533043,'I have waited long enough! Now, you face the harvester of souls!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,8808,1,0,0,'gothik SAY_TELEPORT'),
- (16063,-1533044,'Defend youself!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,8892,1,0,0,'blaumeux SAY_BLAU_AGGRO'),
- (16063,-1533045,'Come, Zeliek, do not drive them out. Not before we''ve had our fun.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,8896,1,0,0,'blaumeux SAY_BLAU_TAUNT1'),
- (16063,-1533046,'I do hope they stay alive long enough for me to... introduce myself.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,8897,1,0,0,'blaumeux SAY_BLAU_TAUNT2'),
- (16063,-1533047,'The first kill goes to me! Anyone care to wager?',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,8898,1,0,0,'blaumeux SAY_BLAU_TAUNT3'),
- (16063,-1533048,'Your life is mine!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,8895,1,0,0,'blaumeux SAY_BLAU_SPECIAL'),
- (16063,-1533049,'Who''s next?',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,8894,1,0,0,'blaumeux SAY_BLAU_SLAY'),
- (16063,-1533050,'Tou... che!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,8893,1,0,0,'blaumeux SAY_BLAU_DEATH'),
- (16063,-1533051,'Come out and fight, ye wee ninny!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,8899,1,0,0,'korthazz SAY_KORT_AGGRO'),
- (16063,-1533052,'To arms, ye roustabouts! We''ve got company!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,8903,1,0,0,'korthazz SAY_KORT_TAUNT1'),
- (16063,-1533053,'I heard about enough of yer sniveling. Shut yer fly trap ''afore I shut it for ye!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,8904,1,0,0,'korthazz SAY_KORT_TAUNT2'),
- (16063,-1533054,'I''m gonna enjoy killin'' these slack-jawed daffodils!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,8905,1,0,0,'korthazz SAY_KORT_TAUNT3'),
- (16063,-1533055,'I like my meat extra crispy!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,8902,1,0,0,'korthazz SAY_KORT_SPECIAl'),
- (16063,-1533056,'Next time, bring more friends!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,8901,1,0,0,'korthazz SAY_KORT_SLAY'),
- (16063,-1533057,'What a bloody waste this is!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,8900,1,0,0,'korthazz SAY_KORT_DEATH'),
- (16063,-1533058,'Flee, before it''s too late!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,8913,1,0,0,'zeliek SAY_ZELI_AGGRO'),
- (16063,-1533059,'Invaders, cease this foolish venture at once! Turn away while you still can!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,8917,1,0,0,'zeliek SAY_ZELI_TAUNT1'),
- (16063,-1533060,'Perhaps they will come to their senses, and run away as fast as they can!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,8918,1,0,0,'zeliek SAY_ZELI_TAUNT2'),
- (16063,-1533061,'Do not continue! Turn back while there''s still time!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,8919,1,0,0,'zeliek SAY_ZELI_TAUNT3'),
- (16063,-1533062,'I- I have no choice but to obey!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,8916,1,0,0,'zeliek SAY_ZELI_SPECIAL'),
- (16063,-1533063,'Forgive me!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,8915,1,0,0,'zeliek SAY_ZELI_SLAY'),
- (16063,-1533064,'It is... as it should be.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,8914,1,0,0,'zeliek SAY_ZELI_DEATH'),
- (16063,-1533065,'You seek death?',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14571,1,0,0,'rivendare_naxx SAY_RIVE_AGGRO1'),
- (16063,-1533066,'None shall pass!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14572,1,0,0,'rivendare_naxx SAY_RIVE_AGGRO2'),
- (16063,-1533067,'Be still!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14573,1,0,0,'rivendare_naxx SAY_RIVE_AGGRO3'),
- (16063,-1533068,'You will find no peace in death.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14574,1,0,0,'rivendare_naxx SAY_RIVE_SLAY1'),
- (16063,-1533069,'The master''s will is done.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14575,1,0,0,'rivendare_naxx SAY_RIVE_SLAY2'),
- (16063,-1533070,'Bow to the might of the scourge!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14576,1,0,0,'rivendare_naxx SAY_RIVE_SPECIAL'),
- (16063,-1533071,'Enough prattling. Let them come! We shall grind their bones to dust.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14577,1,0,0,'rivendare_naxx SAY_RIVE_TAUNT1'),
- (16063,-1533072,'Conserve your anger! Harness your rage! You will all have outlets for your frustration soon enough.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14578,1,0,0,'rivendare_naxx SAY_RIVE_TAUNT2'),
- (16063,-1533073,'Life is meaningless. It is in death that we are truly tested.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14579,1,0,0,'rivendare_naxx SAY_RIVE_TAUNT3'),
- (16063,-1533074,'Death... will not stop me...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14580,1,0,0,'rivendare_naxx SAY_RIVE_DEATH'),
- (15954,-1533075,'Glory to the master!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,8845,1,0,0,'noth SAY_AGGRO1'),
- (15954,-1533076,'Your life is forfeit!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,8846,1,0,0,'noth SAY_AGGRO2'),
- (15954,-1533077,'Die, trespasser!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,8847,1,0,0,'noth SAY_AGGRO3'),
- (15954,-1533078,'Rise, my soldiers! Rise and fight once more!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,8851,1,0,0,'noth SAY_SUMMON'),
- (15954,-1533079,'My task is done!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,8849,1,0,0,'noth SAY_SLAY1'),
- (15954,-1533080,'Breathe no more!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,8850,1,0,0,'noth SAY_SLAY2'),
- (15954,-1533081,'I will serve the master... in... death!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,8848,1,0,0,'noth SAY_DEATH'),
- (15989,-1533082,'takes in a deep breath...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,2,0,0,'sapphiron EMOTE_BREATH'),
- (15989,-1533083,'%s enrages!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,2,0,0,'sapphiron EMOTE_ENRAGE'),
- (0,-1533084,'Our preparations continue as planned, master.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14467,1,0,0,'kelthuzad SAY_SAPP_DIALOG1'),
- (0,-1533085,'It is good that you serve me so faithfully. Soon, all will serve the Lich King and in the end, you shall be rewarded...so long as you do not falter.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,8881,1,0,0,'kelthuzad SAY_SAPP_DIALOG2_LICH'),
- (0,-1533086,'I see no complications... Wait... What is this?',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14468,1,0,0,'kelthuzad SAY_SAPP_DIALOG3'),
- (0,-1533087,'Your security measures have failed! See to this interruption immediately!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,8882,1,0,0,'kelthuzad SAY_SAPP_DIALOG4_LICH'),
- (0,-1533088,'Yes, master!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14469,1,0,0,'kelthuzad SAY_SAPP_DIALOG5'),
- (0,-1533089,'No!!! A curse upon you, interlopers! The armies of the Lich King will hunt you down. You will not escape your fate...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14484,1,0,0,'kelthuzad SAY_CAT_DIED'),
- (0,-1533090,'Who dares violate the sanctity of my domain? Be warned, all who trespass here are doomed.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14463,1,0,0,'kelthuzad SAY_TAUNT1'),
- (0,-1533091,'Fools, you think yourselves triumphant? You have only taken one step closer to the abyss! ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14464,1,0,0,'kelthuzad SAY_TAUNT2'),
- (0,-1533092,'I grow tired of these games. Proceed, and I will banish your souls to oblivion!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14465,1,0,0,'kelthuzad SAY_TAUNT3'),
- (0,-1533093,'You have no idea what horrors lie ahead. You have seen nothing! The frozen heart of Naxxramas awaits you!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14466,1,0,0,'kelthuzad SAY_TAUNT4'),
- (15990,-1533094,'Pray for mercy!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14475,1,0,0,'kelthuzad SAY_AGGRO1'),
- (15990,-1533095,'Scream your dying breath!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14476,1,0,0,'kelthuzad SAY_AGGRO2'),
- (15990,-1533096,'The end is upon you!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14477,1,0,0,'kelthuzad SAY_AGGRO3'),
- (15990,-1533097,'The dark void awaits you!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14478,1,0,0,'kelthuzad SAY_SLAY1'),
- (15990,-1533098,'<Kel''Thuzad cackles maniacally!>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14479,1,0,0,'kelthuzad SAY_SLAY2'),
- (15990,-1533099,'AAAAGHHH!... Do not rejoice... your victory is a hollow one... for I shall return with powers beyond your imagining!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14480,1,0,0,'kelthuzad SAY_DEATH'),
- (15990,-1533100,'Your soul, is bound to me now!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14472,1,0,0,'kelthuzad SAY_CHAIN1'),
- (15990,-1533101,'There will be no escape!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14473,1,0,0,'kelthuzad SAY_CHAIN2'),
- (15990,-1533102,'I will freeze the blood in your veins!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14474,1,0,0,'kelthuzad SAY_FROST_BLAST'),
- (15990,-1533103,'Master! I require aid! ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14470,1,0,0,'kelthuzad SAY_REQUEST_AID'),
- (15990,-1533104,'Very well... warriors of the frozen wastes, rise up! I command you to fight, kill, and die for your master. Let none survive...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,0,0,'kelthuzad SAY_ANSWER_REQUEST'),
- (0,-1533105,'Minions, servants, soldiers of the cold dark, obey the call of Kel''Thuzad!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14471,1,0,0,'kelthuzad SAY_SUMMON_MINIONS'),
- (15990,-1533106,'Your petty magics are no challenge to the might of the Scourge! ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14481,1,0,0,'kelthuzad SAY_SPECIAL1_MANA_DET'),
- (15990,-1533107,'Enough! I grow tired of these distractions! ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14483,1,0,0,'kelthuzad SAY_SPECIAL3_MANA_DET'),
- (15990,-1533108,'Fools, you have spread your powers too thin. Be free, my minions!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14482,1,0,0,'kelthuzad SAY_SPECIAL2_DISPELL'),
- (15936,-1533109,'You are mine now!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,8825,1,0,0,'heigan SAY_AGGRO1'),
- (15936,-1533110,'I see you!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,8826,1,0,0,'heigan SAY_AGGRO2'),
- (15936,-1533111,'You...are next!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,8827,1,0,0,'heigan SAY_AGGRO3'),
- (15936,-1533112,'Close your eyes... sleep!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,8829,1,0,0,'heigan SAY_SLAY'),
- (15936,-1533113,'The races of the world will perish. It is only a matter of time.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,8830,1,0,0,'heigan SAY_TAUNT1'),
- (15936,-1533114,'I see endless suffering, I see torment, I see rage. I see... everything!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,8831,1,0,0,'heigan SAY_TAUNT2'),
- (15936,-1533115,'Soon... the world will tremble!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,8832,1,0,0,'heigan SAY_TAUNT3'),
- (15936,-1533116,'The end is upon you.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,8833,1,0,0,'heigan SAY_TAUNT4'),
- (15936,-1533117,'Hungry worms will feast on your rotten flesh!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,8834,1,0,0,'heigan SAY_TAUNT5'),
- (15936,-1533118,'Noo... o...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,8828,1,0,0,'heigan SAY_DEATH'),
-
--- -1 534 000 THE BATTLE OF MT. HYJAL
- (17772,-1534000,'I''m in jeopardy, help me if you can!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11007,1,0,0,'jaina hyjal ATTACKED 1'),
- (17772,-1534001,'They''ve broken through!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11049,1,0,0,'jaina hyjal ATTACKED 2'),
- (17772,-1534002,'Stay alert! Another wave approaches.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11008,1,0,0,'jaina hyjal INCOMING'),
- (17772,-1534003,'Don''t give up! We must prevail!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11006,1,0,0,'jaina hyjal BEGIN'),
- (17772,-1534004,'Hold them back as long as possible.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11050,1,0,0,'jaina hyjal RALLY 1'),
- (17772,-1534005,'We must hold strong!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11051,1,0,0,'jaina hyjal RALLY 2'),
- (17772,-1534006,'We are lost. Fall back!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11009,1,0,0,'jaina hyjal FAILURE'),
- (17772,-1534007,'We have won valuable time. Now we must pull back!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11011,1,0,0,'jaina hyjal SUCCESS'),
- (17772,-1534008,'I did... my best.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11010,1,0,0,'jaina hyjal DEATH'),
- (17852,-1534009,'I will lie down for no one!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11031,1,0,0,'thrall hyjal ATTACKED 1'),
- (17852,-1534010,'Bring the fight to me and pay with your lives!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11061,1,0,0,'thrall hyjal ATTACKED 2'),
- (17852,-1534011,'Make ready for another wave! LOK-TAR OGAR!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11032,1,0,0,'thrall hyjal INCOMING'),
- (17852,-1534012,'Hold them back! Do not falter!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11030,1,0,0,'thrall hyjal BEGIN'),
- (17852,-1534013,'Victory or death!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11059,1,0,0,'thrall hyjal RALLY 1'),
- (17852,-1534014,'Do not give an inch of ground!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11060,1,0,0,'thrall hyjal RALLY 2'),
- (17852,-1534015,'It is over. Withdraw! We have failed.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11033,1,0,0,'thrall hyjal FAILURE'),
- (17852,-1534016,'We have played our part and done well. It is up to the others now.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11035,1,0,0,'thrall hyjal SUCCESS'),
- (17852,-1534017,'Uraaa...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11034,1,0,0,'thrall hyjal DEATH'),
- (0,-1534018,'All of your efforts have been in vain, for the draining of the World Tree has already begun. Soon the heart of your world will beat no more.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10986,1,0,0,'archimonde SAY_PRE_EVENTS_COMPLETE'),
- (17968,-1534019,'Your resistance is insignificant.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10987,1,0,0,'archimonde SAY_AGGRO'),
- (17968,-1534020,'This world will burn!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10990,1,0,0,'archimonde SAY_DOOMFIRE1'),
- (17968,-1534021,'Manach sheek-thrish!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11041,1,0,0,'archimonde SAY_DOOMFIRE2'),
- (17968,-1534022,'A-kreesh!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10989,1,0,0,'archimonde SAY_AIR_BURST1'),
- (17968,-1534023,'Away vermin!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11043,1,0,0,'archimonde SAY_AIR_BURST2'),
- (17968,-1534024,'All creation will be devoured!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11044,1,0,0,'archimonde SAY_SLAY1'),
- (17968,-1534025,'Your soul will languish for eternity.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10991,1,0,0,'archimonde SAY_SLAY2'),
- (17968,-1534026,'I am the coming of the end!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11045,1,0,0,'archimonde SAY_SLAY3'),
- (17968,-1534027,'At last it is here. Mourn and lament the passing of all you have ever known and all that would have been! Akmin-kurai!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10993,1,0,0,'archimonde SAY_ENRAGE'),
- (17968,-1534028,'No, it cannot be! Nooo!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10992,1,0,0,'archimonde SAY_DEATH'),
- (17968,-1534029,'You are mine now.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10988,1,0,0,'archimonde SAY_SOUL_CHARGE1'),
- (17968,-1534030,'Bow to my will.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11042,1,0,0,'archimonde SAY_SOUL_CHARGE2'),
-
--- -1 540 000 SHATTERED HALLS
- (16807,-1540000,'You wish to fight us all at once? This should be amusing!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10262,1,0,0,'nethekurse SAY_INTRO'),
- (16807,-1540001,'You can have that one. I no longer need him.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10263,1,0,0,'nethekurse PEON_ATTACK_1'),
- (16807,-1540002,'Yes, beat him mercilessly. His skull is a thick as an ogres.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10264,1,0,0,'nethekurse PEON_ATTACK_2'),
- (16807,-1540003,'Don''t waste your time on that one. He''s weak!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10265,1,0,0,'nethekurse PEON_ATTACK_3'),
- (16807,-1540004,'You want him? Very well, take him!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10266,1,0,0,'nethekurse PEON_ATTACK_4'),
- (16807,-1540005,'One pitiful wretch down. Go on, take another one.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10267,1,0,0,'nethekurse PEON_DIE_1'),
- (16807,-1540006,'Ahh, what a waste... Next!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10268,1,0,0,'nethekurse PEON_DIE_2'),
- (16807,-1540007,'I was going to kill him anyway!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10269,1,0,0,'nethekurse PEON_DIE_3'),
- (16807,-1540008,'Thank you for saving me the trouble! Now it''s my turn to have some fun...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10270,1,0,0,'nethekurse PEON_DIE_4'),
- (16807,-1540009,'Beg for your pittyfull life!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10259,1,0,0,'nethekurse SAY_TAUNT_1'),
- (16807,-1540010,'Run covad, ruun!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10260,1,0,0,'nethekurse SAY_TAUNT_2'),
- (16807,-1540011,'Your pain amuses me.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10261,1,0,0,'nethekurse SAY_TAUNT_3'),
- (16807,-1540012,'I''m already bored.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10271,1,0,0,'nethekurse SAY_AGGRO_1'),
- (16807,-1540013,'Come on! ... Show me a real fight.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10272,1,0,0,'nethekurse SAY_AGGRO_2'),
- (16807,-1540014,'I had more fun torturing the peons.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10273,1,0,0,'nethekurse SAY_AGGRO_3'),
- (16807,-1540015,'You Lose.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10274,1,0,0,'nethekurse SAY_SLAY_1'),
- (16807,-1540016,'Ohh! Just die.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10275,1,0,0,'nethekurse SAY_SLAY_2'),
- (16807,-1540017,'What a ... a shame.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10276,1,0,0,'nethekurse SAY_DIE'),
- (16809,-1540018,'Smash!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10306,1,0,0,'omrogg GoCombat_1'),
- (16809,-1540019,'If you nice me let you live.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10308,1,0,0,'omrogg GoCombat_2'),
- (16809,-1540020,'Me hungry!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10309,1,0,0,'omrogg GoCombat_3'),
- (16809,-1540021,'Why don''t you let me do the talking?',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10317,1,0,0,'omrogg GoCombatDelay_1'),
- (16809,-1540022,'No, we will NOT let you live!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10318,1,0,0,'omrogg GoCombatDelay_2'),
- (16809,-1540023,'You always hungry. That why we so fat!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10319,1,0,0,'omrogg GoCombatDelay_3'),
- (16809,-1540024,'You stay here. Me go kill someone else!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10303,1,0,0,'omrogg Threat_1'),
- (16809,-1540025,'What are you doing!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10315,1,0,0,'omrogg Threat_2'),
- (16809,-1540026,'Me kill someone else...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10302,1,0,0,'omrogg Threat_3'),
- (16809,-1540027,'Me not like this one...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10300,1,0,0,'omrogg Threat_4'),
- (16809,-1540028,'That''s not funny!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10314,1,0,0,'omrogg ThreatDelay1_1'),
- (16809,-1540029,'Me get bored...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10305,1,0,0,'omrogg ThreatDelay1_2'),
- (16809,-1540030,'I''m not done yet, idiot!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10313,1,0,0,'omrogg ThreatDelay1_3'),
- (16809,-1540031,'Hey you numbskull!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10312,1,0,0,'omrogg ThreatDelay1_4'),
- (16809,-1540032,'Ha ha ha.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10304,1,0,0,'omrogg ThreatDelay2_1'),
- (16809,-1540033,'Whhy! He almost dead!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10316,1,0,0,'omrogg ThreatDelay2_2'),
- (16809,-1540034,'H''ey...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10307,1,0,0,'omrogg ThreatDelay2_3'),
- (16809,-1540035,'We kill his friend!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10301,1,0,0,'omrogg ThreatDelay2_4'),
- (16809,-1540036,'This one die easy!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10310,1,0,0,'omrogg Killing_1'),
- (16809,-1540037,'I''m tired. You kill next one!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10320,1,0,0,'omrogg Killing_2'),
- (16809,-1540038,'That''s because I do all the hard work!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10321,1,0,0,'omrogg KillingDelay_1'),
- (16809,-1540039,'This all...your fault!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10311,1,0,0,'omrogg YELL_DIE_L'),
- (16809,-1540040,'I...hate...you...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10322,1,0,0,'omrogg YELL_DIE_R'),
- (16809,-1540041,'%s enrages',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,2,0,0,'omrogg EMOTE_ENRAGE'),
- (16808,-1540042,'Ours is the true Horde! The only Horde!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10323,1,0,0,'kargath SAY_AGGRO1'),
- (16808,-1540043,'I''ll carve the meat from your bones!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10324,1,0,0,'kargath SAY_AGGRO2'),
- (16808,-1540044,'I am called Bladefist for a reason, as you will see!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10325,1,0,0,'kargath SAY_AGGRO3'),
- (16808,-1540045,'For the real Horde!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10326,1,0,0,'kargath SAY_SLAY1'),
- (16808,-1540046,'I am the only Warchief!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10327,1,0,0,'kargath SAY_SLAY2'),
- (16808,-1540047,'The true Horde... will.. prevail...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10328,1,0,0,'kargath SAY_DEATH'),
-
--- -1 542 000 BLOOD FURNACE
- (17377,-1542000,'Who dares interrupt... What is this? What have you done? You ruin everything!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10164,1,0,0,'kelidan SAY_WAKE'),
- (17377,-1542001,'You mustn''t let him loose!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10166,1,0,0,'kelidan SAY_ADD_AGGRO_1'),
- (17377,-1542002,'Ignorant whelps!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10167,1,0,0,'kelidan SAY_ADD_AGGRO_2'),
- (17377,-1542003,'You fools! He''ll kill us all!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10168,1,0,0,'kelidan SAY_ADD_AGGRO_3'),
- (17377,-1542004,'Just as you deserve!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10169,1,0,0,'kelidan SAY_KILL_1'),
- (17377,-1542005,'Your friends will soon be joining you.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10170,1,0,0,'kelidan SAY_KILL_2'),
- (17377,-1542006,'Closer... Come closer.. and burn!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10165,1,0,0,'kelidan SAY_NOVA'),
- (17377,-1542007,'Good luck... you''ll need it..',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10171,1,0,0,'kelidan SAY_DIE'),
- (17380,-1542008,'Come intruders....',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,0,0,'broggok SAY_AGGRO'),
- (17381,-1542009,'My work must not be interrupted.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10286,1,0,0,'the_maker SAY_AGGRO_1'),
- (17381,-1542010,'Perhaps I can find a use for you.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10287,1,0,0,'the_maker SAY_AGGRO_2'),
- (17381,-1542011,'Anger... Hate... These are tools I can use.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10288,1,0,0,'the_maker SAY_AGGRO_3'),
- (17381,-1542012,'Let''s see what I can make of you.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10289,1,0,0,'the_maker SAY_KILL_1'),
- (17381,-1542013,'It is pointless to resist.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10290,1,0,0,'the_maker SAY_KILL_2'),
- (17381,-1542014,'Stay away from... me.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10291,1,0,0,'the_maker SAY_DIE'),
-
--- -1 543 000 HELLFIRE RAMPARTS
- (17306,-1543000,'Do you smell that? Fresh meat has somehow breached our citadel. Be wary of any intruders.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,0,0,'gargolmar SAY_TAUNT'),
- (17306,-1543001,'Heal me! QUICKLY!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10329,1,0,0,'gargolmar SAY_HEAL'),
- (17306,-1543002,'Back off, pup!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10330,1,0,0,'gargolmar SAY_SURGE'),
- (17306,-1543003,'What have we here...?',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10331,1,0,0,'gargolmar SAY_AGGRO_1'),
- (17306,-1543004,'Heh... this may hurt a little.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10332,1,0,0,'gargolmar SAY_AGGRO_2'),
- (17306,-1543005,'I''m gonna enjoy this.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10333,1,0,0,'gargolmar SAY_AGGRO_3'),
- (17306,-1543006,'Say farewell!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10334,1,0,0,'gargolmar SAY_KILL_1'),
- (17306,-1543007,'Much too easy...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10335,1,0,0,'gargolmar SAY_KILL_2'),
- (17306,-1543008,'Hahah.. <cough> ..argh!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10336,1,0,0,'gargolmar SAY_DIE'),
- (17308,-1543009,'You dare stand against me?!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10280,1,0,0,'omor SAY_AGGRO_1'),
- (17308,-1543010,'I will not be defeated!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10279,1,0,0,'omor SAY_AGGRO_2'),
- (17308,-1543011,'Your insolence will be your death.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10281,1,0,0,'omor SAY_AGGRO_3'),
- (17308,-1543012,'Achor-she-ki! Feast my pet! Eat your fill!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10277,1,0,0,'omor SAY_SUMMON'),
- (17308,-1543013,'A-Kreesh!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10278,1,0,0,'omor SAY_CURSE'),
- (17308,-1543014,'Die, weakling!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10282,1,0,0,'omor SAY_KILL_1'),
- (17308,-1543015,'It is... not over.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10284,1,0,0,'omor SAY_DIE'),
- (17308,-1543016,'I am victorious!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10283,1,0,0,'omor SAY_WIPE'),
-
- (17307,-1543017,'You have faced many challenges, pity they were all in vain. Soon your people will kneel to my lord!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10292,1,0,0,'vazruden SAY_INTRO'),
- (17537,-1543018,'Is there no one left to test me?',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10293,1,0,0,'vazruden SAY_WIPE'),
- (17537,-1543019,'Your time is running out!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10294,1,0,0,'vazruden SAY_AGGRO_1'),
- (17537,-1543020,'You are nothing, I answer a higher call!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10295,1,0,0,'vazruden SAY_AGGRO_2'),
- (17537,-1543021,'The Dark Lord laughs at you!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10296,1,0,0,'vazruden SAY_AGGRO_3'),
- (17537,-1543022,'It is over. Finished!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10297,1,0,0,'vazruden SAY_KILL_1'),
- (17537,-1543023,'Your days are done!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10298,1,0,0,'vazruden SAY_KILL_2'),
- (17537,-1543024,'My lord will be the end you all...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10299,1,0,0,'vazruden SAY_DIE'),
- (17537,-1543025,'descends from the sky',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,3,0,0,'vazruden EMOTE'),
-
--- -1 544 000 MAGTHERIDON'S LAIR
- (17257,-1544000,'Wretched, meddling insects. Release me and perhaps I will grant you a merciful death!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10247,1,0,0,'magtheridon SAY_TAUNT1'),
- (17257,-1544001,'Vermin! Leeches! Take my blood and choke on it!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10248,1,0,0,'magtheridon SAY_TAUNT2'),
- (17257,-1544002,'Illidan is an arrogant fool. I will crush him and reclaim Outland as my own.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10249,1,0,0,'magtheridon SAY_TAUNT3'),
- (17257,-1544003,'Away, you mindless parasites. My blood is my own!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10250,1,0,0,'magtheridon SAY_TAUNT4'),
- (17257,-1544004,'How long do you believe your pathetic sorcery can hold me?',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10251,1,0,0,'magtheridon SAY_TAUNT5'),
- (17257,-1544005,'My blood will be the end of you!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10252,1,0,0,'magtheridon SAY_TAUNT6'),
- (17257,-1544006,'I...am...UNLEASHED!!!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10253,1,0,0,'magtheridon SAY_FREED'),
- (17257,-1544007,'Thank you for releasing me. Now...die!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10254,1,0,0,'magtheridon SAY_AGGRO'),
- (17257,-1544008,'Not again...NOT AGAIN!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10256,1,0,0,'magtheridon SAY_BANISH'),
- (17257,-1544009,'I will not be taken so easily. Let the walls of this prison tremble...and FALL!!!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10257,1,0,0,'magtheridon SAY_CHAMBER_DESTROY'),
- (17257,-1544010,'Did you think me weak? Soft? Who is the weak one now?!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10255,1,0,0,'magtheridon SAY_PLAYER_KILLED'),
- (17257,-1544011,'The Legion...will consume you...all...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10258,1,0,0,'magtheridon SAY_DEATH'),
- (17257,-1544012,'%s becomes enraged!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,2,0,0,'magtheridon EMOTE_BERSERK'),
- (17257,-1544013,'begins to cast Blast Nova!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,3,0,0,'magtheridon EMOTE_BLASTNOVA'),
- (17257,-1544014,'bonds begin to weaken!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,2,0,0,'magtheridon EMOTE_BEGIN'),
- (0,-1544015,'breaks free!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,2,0,0,'magtheridon EMOTE_FREED'),
-
--- -1 545 000 THE STEAMVAULT
- (17797,-1545000,'Surge forth my pets!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10360,1,0,0,'thespia SAY_SUMMON'),
- (17797,-1545001,'The depths will consume you!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10361,1,0,0,'thespia SAY_AGGRO_1'),
- (17797,-1545002,'Meet your doom, surface dwellers!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10362,1,0,0,'thespia SAY_AGGRO_2'),
- (17797,-1545003,'You will drown in blood!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10363,1,0,0,'thespia SAY_AGGRO_3'),
- (17797,-1545004,'To the depths of oblivion with you!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10364,1,0,0,'thespia SAY_SLAY_1'),
- (17797,-1545005,'For my lady and master!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10365,1,0,0,'thespia SAY_SLAY_2'),
- (17797,-1545006,'Our matron will be.. the end of.. you..',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10366,1,0,0,'thespia SAY_DEAD'),
- (17796,-1545007,'I''m bringin'' the pain!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10367,1,0,0,'mekgineer SAY_MECHANICS'),
- (17796,-1545008,'You''re in for a world of hurt!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10368,1,0,0,'mekgineer SAY_AGGRO_1'),
- (17796,-1545009,'Eat hot metal, scumbag!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10369,1,0,0,'mekgineer SAY_AGGRO_2'),
- (17796,-1545010,'I''ll come over there!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10370,1,0,0,'mekgineer SAY_AGGRO_3'),
- (17796,-1545011,'I''m bringin'' the pain!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10371,1,0,0,'mekgineer SAY_AGGRO_4'),
- (17796,-1545012,'You just got served, punk!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10372,1,0,0,'mekgineer SOUND_SLAY_1'),
- (17796,-1545013,'I own you!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10373,1,0,0,'mekgineer SOUND_SLAY_2'),
- (17796,-1545014,'Have fun dyin'', cupcake!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10374,1,0,0,'mekgineer SOUND_SLAY_3'),
- (17796,-1545015,'Mommy!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10375,1,0,0,'mekgineer SAY_DEATH'),
- (17798,-1545016,'You deem yourselves worthy simply because you bested my guards? Our work here will not be compromised!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10390,1,0,0,'kalithresh SAY_INTRO'),
- (17798,-1545017,'This is not nearly over...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10391,1,0,0,'kalithresh SAY_REGEN'),
- (17798,-1545018,'Your head will roll!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10392,1,0,0,'kalithresh SAY_AGGRO1'),
- (17798,-1545019,'I despise all of your kind!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10393,1,0,0,'kalithresh SAY_AGGRO2'),
- (17798,-1545020,'Ba''ahntha sol''dorei!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10394,1,0,0,'kalithresh SAY_AGGRO3'),
- (17798,-1545021,'Scram, surface filth!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10395,1,0,0,'kalithresh SAY_SLAY1'),
- (17798,-1545022,'Ah ha ha ha ha ha ha!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10396,1,0,0,'kalithresh SAY_SLAY2'),
- (17798,-1545023,'For her Excellency... for... Vashj!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10397,1,0,0,'kalithresh SAY_DEATH'),
-
--- -1 546 000 THE UNDERBOG
-
--- -1 547 000 THE SLAVE PENS
-
--- -1 548 000 SERPENTSHRINE CAVERN
- (21216,-1548000,'I cannot allow you to interfere!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11289,1,0,0,'hydross SAY_AGGRO'),
- (21216,-1548001,'Better, much better.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11290,1,0,0,'hydross SAY_SWITCH_TO_CLEAN'),
- (21216,-1548002,'They have forced me to this...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11291,1,0,0,'hydross SAY_CLEAN_SLAY1'),
- (21216,-1548003,'I have no choice.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11292,1,0,0,'hydross SAY_CLEAN_SLAY2'),
- (21216,-1548004,'I am... released...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11293,1,0,0,'hydross SAY_CLEAN_DEATH'),
- (21216,-1548005,'Aaghh, the poison...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11297,1,0,0,'hydross SAY_SWITCH_TO_CORRUPT'),
- (21216,-1548006,'I will purge you from this place.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11298,1,0,0,'hydross SAY_CORRUPT_SLAY1'),
- (21216,-1548007,'You are no better than they!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11299,1,0,0,'hydross SAY_CORRUPT_SLAY2'),
- (21216,-1548008,'You are the disease, not I',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11300,1,0,0,'hydross SAY_CORRUPT_DEATH'),
- (21215,-1548009,'Finally, my banishment ends!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11312,1,0,0,'leotheras SAY_AGGRO'),
- (21215,-1548010,'Be gone, trifling elf. I am in control now!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11304,1,0,0,'leotheras SAY_SWITCH_TO_DEMON'),
- (21215,-1548011,'We all have our demons...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11305,1,0,0,'leotheras SAY_INNER_DEMONS'),
- (21215,-1548012,'I have no equal.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11306,1,0,0,'leotheras SAY_DEMON_SLAY1'),
- (21215,-1548013,'Perish, mortal.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11307,1,0,0,'leotheras SAY_DEMON_SLAY2'),
- (21215,-1548014,'Yes, YES! Ahahah!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11308,1,0,0,'leotheras SAY_DEMON_SLAY3'),
- (21215,-1548015,'Kill! KILL!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11314,1,0,0,'leotheras SAY_NIGHTELF_SLAY1'),
- (21215,-1548016,'That''s right! Yes!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11315,1,0,0,'leotheras SAY_NIGHTELF_SLAY2'),
- (21215,-1548017,'Who''s the master now?',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11316,1,0,0,'leotheras SAY_NIGHTELF_SLAY3'),
- (21215,-1548018,'No... no! What have you done? I am the master! Do you hear me? I am... aaggh! Can''t... contain him...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11313,1,0,0,'leotheras SAY_FINAL_FORM'),
- (21215,-1548019,'At last I am liberated. It has been too long since I have tasted true freedom!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11309,1,0,0,'leotheras SAY_FREE'),
- (21215,-1548020,'You cannot kill me! Fools, I''ll be back! I''ll... aarghh...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11317,1,0,0,'leotheras SAY_DEATH'),
- (21214,-1548021,'Guards, attention! We have visitors...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11277,1,0,0,'karathress SAY_AGGRO'),
- (21214,-1548022,'Your overconfidence will be your undoing! Guards, lend me your strength!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11278,1,0,0,'karathress SAY_GAIN_BLESSING'),
- (21214,-1548023,'Go on, kill them! I''ll be the better for it!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11279,1,0,0,'karathress SAY_GAIN_ABILITY1'),
- (21214,-1548024,'I am more powerful than ever!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11280,1,0,0,'karathress SAY_GAIN_ABILITY2'),
- (21214,-1548025,'More knowledge, more power!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11281,1,0,0,'karathress SAY_GAIN_ABILITY3'),
- (21214,-1548026,'Land-dwelling scum!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11282,1,0,0,'karathress SAY_SLAY1'),
- (21214,-1548027,'Alana be''lendor!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11283,1,0,0,'karathress SAY_SLAY2'),
- (21214,-1548028,'I am rid of you.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11284,1,0,0,'karathress SAY_SLAY3'),
- (21214,-1548029,'Her ... excellency ... awaits!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11285,1,0,0,'karathress SAY_DEATH'),
- (21213,-1548030,'Flood of the deep, take you!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11321,1,0,0,'morogrim SAY_AGGRO'),
- (21213,-1548031,'By the Tides, kill them at once!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11322,1,0,0,'morogrim SAY_SUMMON1'),
- (21213,-1548032,'Destroy them my subjects!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11323,1,0,0,'morogrim SAY_SUMMON2'),
- (21213,-1548033,'There is nowhere to hide!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11324,1,0,0,'morogrim SAY_SUMMON_BUBL1'),
- (21213,-1548034,'Soon it will be finished!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11325,1,0,0,'morogrim SAY_SUMMON_BUBL2'),
- (21213,-1548035,'It is done!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11326,1,0,0,'morogrim SAY_SLAY1'),
- (21213,-1548036,'Strugging only makes it worse.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11327,1,0,0,'morogrim SAY_SLAY2'),
- (21213,-1548037,'Only the strong survive.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11328,1,0,0,'morogrim SAY_SLAY3'),
- (21213,-1548038,'Great... currents of... Ageon.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11329,1,0,0,'morogrim SAY_DEATH'),
- (21213,-1548039,'sends his enemies to their watery graves!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,2,0,0,'morogrim EMOTE_WATERY_GRAVE'),
- (21213,-1548040,'The violent earthquake has alerted nearby murlocs!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,3,0,0,'morogrim EMOTE_EARTHQUAKE'),
- (21213,-1548041,'summons Watery Globules!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,2,0,0,'morogrim EMOTE_WATERY_GLOBULES'),
- (21212,-1548042,'Water is life. It has become a rare commodity here in Outland. A commodity that we alone shall control. We are the Highborne, and the time has come at last for us to retake our rightful place in the world!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11531,1,0,0,'vashj SAY_INTRO'),
- (21212,-1548043,'I''ll split you from stem to stern!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11532,1,0,0,'vashj SAY_AGGRO1'),
- (21212,-1548044,'Victory to Lord Illidan!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11533,1,0,0,'vashj SAY_AGGRO2'),
- (21212,-1548045,'I spit on you, surface filth!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11534,1,0,0,'vashj SAY_AGGRO3'),
- (21212,-1548046,'Death to the outsiders!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11535,1,0,0,'vashj SAY_AGGRO4'),
- (21212,-1548047,'I did not wish to lower myself by engaging your kind, but you leave me little choice!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11538,1,0,0,'vashj SAY_PHASE1'),
- (21212,-1548048,'The time is now! Leave none standing!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11539,1,0,0,'vashj SAY_PHASE2'),
- (21212,-1548049,'You may want to take cover.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11540,1,0,0,'vashj SAY_PHASE3'),
- (21212,-1548050,'Straight to the heart!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11536,1,0,0,'vashj SAY_BOWSHOT1'),
- (21212,-1548051,'Seek your mark!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11537,1,0,0,'vashj SAY_BOWSHOT2'),
- (21212,-1548052,'Your time ends now!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11541,1,0,0,'vashj SAY_SLAY1'),
- (21212,-1548053,'You have failed!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11542,1,0,0,'vashj SAY_SLAY2'),
- (21212,-1548054,'Be''lamere an''delay',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11543,1,0,0,'vashj SAY_SLAY3'),
- (21212,-1548055,'Lord Illidan, I... I am... sorry.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11544,1,0,0,'vashj SAY_DEATH'),
-
--- -1 550 000 THE EYE
- (19516,-1550000,'Alert, you are marked for extermination!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11213,1,0,0,'voidreaver SAY_AGGRO'),
- (19516,-1550001,'Extermination, successful.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11215,1,0,0,'voidreaver SAY_SLAY1'),
- (19516,-1550002,'Imbecile life form, no longer functional.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11216,1,0,0,'voidreaver SAY_SLAY2'),
- (19516,-1550003,'Threat neutralized.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11217,1,0,0,'voidreaver SAY_SLAY3'),
- (19516,-1550004,'Systems... shutting... down...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11214,1,0,0,'voidreaver SAY_DEATH'),
- (19516,-1550005,'Alternative measure commencing...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11218,1,0,0,'voidreaver SAY_POUNDING1'),
- (19516,-1550006,'Calculating force parameters...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11219,1,0,0,'voidreaver SAY_POUNDING2'),
- (18805,-1550007,'Tal anu''men no Sin''dorei!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11134,1,0,0,'solarian SAY_AGGRO'),
- (18805,-1550008,'Ha ha ha! You are hopelessly outmatched!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11139,1,0,0,'solarian SAY_SUMMON1'),
- (18805,-1550009,'I will crush your delusions of grandeur!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11140,1,0,0,'solarian SAY_SUMMON2'),
- (18805,-1550010,'Your soul belongs to the Abyss!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11136,1,0,0,'solarian SAY_KILL1'),
- (18805,-1550011,'By the blood of the Highborne!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11137,1,0,0,'solarian SAY_KILL2'),
- (18805,-1550012,'For the Sunwell!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11138,1,0,0,'solarian SAY_KILL3'),
- (18805,-1550013,'The warmth of the sun... awaits.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11135,1,0,0,'solarian SAY_DEATH'),
- (18805,-1550014,'Enough of this! Now I call upon the fury of the cosmos itself.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,0,0,'solarian SAY_VOIDA'),
- (18805,-1550015,'I become ONE... with the VOID!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,0,0,'solarian SAY_VOIDB'),
- (19622,-1550016,'Energy. Power. My people are addicted to it... a dependence made manifest after the Sunwell was destroyed. Welcome... to the future. A pity you are too late to stop it. No one can stop me now! Selama ashal''anore!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11256,1,0,0,'kaelthas SAY_INTRO'),
- (19622,-1550017,'Capernian will see to it that your stay here is a short one.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11257,1,0,0,'kaelthas SAY_INTRO_CAPERNIAN'),
- (19622,-1550018,'Well done, you have proven worthy to test your skills against my master engineer, Telonicus.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11258,1,0,0,'kaelthas SAY_INTRO_TELONICUS'),
- (19622,-1550019,'Let us see how your nerves hold up against the Darkener, Thaladred.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11259,1,0,0,'kaelthas SAY_INTRO_THALADRED'),
- (19622,-1550020,'You have persevered against some of my best advisors... but none can withstand the might of the Blood Hammer. Behold, Lord Sanguinar!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11260,1,0,0,'kaelthas SAY_INTRO_SANGUINAR'),
- (19622,-1550021,'As you see, I have many weapons in my arsenal...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11261,1,0,0,'kaelthas SAY_PHASE2_WEAPON'),
- (19622,-1550022,'Perhaps I underestimated you. It would be unfair to make you fight all four advisors at once, but... fair treatment was never shown to my people. I''m just returning the favor.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11262,1,0,0,'kaelthas SAY_PHASE3_ADVANCE'),
- (19622,-1550023,'Alas, sometimes one must take matters into one''s own hands. Balamore shanal!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11263,1,0,0,'kaelthas SAY_PHASE4_INTRO2'),
- (19622,-1550024,'I have not come this far to be stopped! The future I have planned will not be jeopardized! Now you will taste true power!!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11273,1,0,0,'kaelthas SAY_PHASE5_NUTS'),
- (19622,-1550025,'You will not prevail.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11270,1,0,0,'kaelthas SAY_SLAY1'),
- (19622,-1550026,'You gambled...and lost.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11271,1,0,0,'kaelthas SAY_SLAY2'),
- (19622,-1550027,'This was Child''s play.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11272,1,0,0,'kaelthas SAY_SLAY3'),
- (19622,-1550028,'Obey me.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11268,1,0,0,'kaelthas SAY_MINDCONTROL1'),
- (19622,-1550029,'Bow to my will.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11269,1,0,0,'kaelthas SAY_MINDCONTROL2'),
- (19622,-1550030,'Let us see how you fare when your world is turned upside down.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11264,1,0,0,'kaelthas SAY_GRAVITYLAPSE1'),
- (19622,-1550031,'Having trouble staying grounded?',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11265,1,0,0,'kaelthas SAY_GRAVITYLAPSE2'),
- (19622,-1550032,'Anara''nel belore!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11267,1,0,0,'kaelthas SAY_SUMMON_PHOENIX1'),
- (19622,-1550033,'By the power of the sun!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11266,1,0,0,'kaelthas SAY_SUMMON_PHOENIX2'),
- (19622,-1550034,'For...Quel...thalas!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11274,1,0,0,'kaelthas SAY_DEATH'),
- (20064,-1550035,'Prepare yourselves!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11203,1,0,0,'thaladred SAY_THALADRED_AGGRO'),
- (20064,-1550036,'Forgive me, my prince! I have... failed.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11204,1,0,0,'thaladred SAY_THALADRED_DEATH'),
- (20064,-1550037,'sets his gaze on $N!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,2,0,0,'thaladred EMOTE_THALADRED_GAZE'),
- (20060,-1550038,'Blood for blood!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11152,1,0,0,'sanguinar SAY_SANGUINAR_AGGRO'),
- (20060,-1550039,'NO! I ...will... not...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11153,1,0,0,'sanguinar SAY_SANGUINAR_DEATH'),
- (20062,-1550040,'The sin''dore reign supreme!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11117,1,0,0,'capernian SAY_CAPERNIAN_AGGRO'),
- (20062,-1550041,'This is not over!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11118,1,0,0,'capernian SAY_CAPERNIAN_DEATH'),
- (20063,-1550042,'Anar''alah belore!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11157,1,0,0,'telonicus SAY_TELONICUS_AGGRO'),
- (20063,-1550043,'More perils... await',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11158,1,0,0,'telonicus SAY_TELONICUS_DEATH'),
-
--- -1 552 000 THE ARCATRAZ
- (20912,-1552000,'It is a small matter to control the mind of the weak... for I bear allegiance to powers untouched by time, unmoved by fate. No force on this world or beyond harbors the strength to bend our knee... not even the mighty Legion!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11122,1,0,0,'skyriss SAY_INTRO'),
- (20912,-1552001,'Bear witness to the agent of your demise!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11123,1,0,0,'skyriss SAY_AGGRO'),
- (20912,-1552002,'Your fate is written!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11124,1,0,0,'skyriss SAY_KILL_1'),
- (20912,-1552003,'The chaos I have sown here is but a taste...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11125,1,0,0,'skyriss SAY_KILL_2'),
- (20912,-1552004,'You will do my bidding, weakling.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11127,1,0,0,'skyriss SAY_MIND_1'),
- (20912,-1552005,'Your will is no longer your own.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11128,1,0,0,'skyriss SAY_MIND_2'),
- (20912,-1552006,'Flee in terror!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11129,1,0,0,'skyriss SAY_FEAR_1'),
- (20912,-1552007,'I will show you horrors undreamed of!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11130,1,0,0,'skyriss SAY_FEAR_2'),
- (20912,-1552008,'We span the universe, as countless as the stars!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11131,1,0,0,'skyriss SAY_IMAGE'),
- (20912,-1552009,'I am merely one of... infinite multitudes.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11126,1,0,0,'skyriss SAY_DEATH'),
- (20977,-1552010,'Where in Bonzo''s brass buttons am I? And who are-- yaaghh, that''s one mother of a headache!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11171,1,0,0,'millhouse SAY_INTRO_1'),
- (20977,-1552011,'"Lowly"? I don''t care who you are friend, no one refers to the mighty Millhouse Manastorm as "Lowly"! I have no idea what goes on here, but I will gladly join your fight against this impudent imbecile! Prepare to defend yourself, cretin!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11172,1,0,0,'millhouse SAY_INTRO_2'),
- (20977,-1552012,'I just need to get some things ready first. You guys go ahead and get started. I need to summon up some water...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11173,1,0,0,'millhouse SAY_WATER'),
- (20977,-1552013,'Fantastic! Next, some protective spells. Yes! Now we''re cookin''',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11174,1,0,0,'millhouse SAY_BUFFS'),
- (20977,-1552014,'And of course i''ll need some mana. You guys are gonna love this, just wait.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11175,1,0,0,'millhouse SAY_DRINK'),
- (20977,-1552015,'Aaalllriiiight!! Who ordered up an extra large can of whoop-ass?',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11176,1,0,0,'millhouse SAY_READY'),
- (20977,-1552016,'I didn''t even break a sweat on that one.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11177,1,0,0,'millhouse SAY_KILL_1'),
- (20977,-1552017,'You guys, feel free to jump in anytime.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11178,1,0,0,'millhouse SAY_KILL_2'),
- (20977,-1552018,'I''m gonna light you up, sweet cheeks!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11179,1,0,0,'millhouse SAY_PYRO'),
- (20977,-1552019,'Ice, ice, baby!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11180,1,0,0,'millhouse SAY_ICEBLOCK'),
- (20977,-1552020,'Heal me! Oh, for the love of all that is holy, HEAL me! I''m dying!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11181,1,0,0,'millhouse SAY_LOWHP'),
- (20977,-1552021,'You''ll be hearing from my lawyer...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11182,1,0,0,'millhouse SAY_DEATH'),
- (20977,-1552022,'Who''s bad? Who''s bad? That''s right: we bad!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11183,1,0,0,'millhouse SAY_COMPLETE'),
- (20904,-1552023,'I knew the prince would be angry but, I... I have not been myself. I had to let them out! The great one speaks to me, you see. Wait--outsiders. Kael''thas did not send you! Good... I''ll just tell the prince you released the prisoners!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11222,1,0,0,'mellichar YELL_INTRO1'),
- (20904,-1552024,'The naaru kept some of the most dangerous beings in existence here in these cells. Let me introduce you to another...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11223,1,0,0,'mellichar YELL_INTRO2'),
- (20904,-1552025,'Yes, yes... another! Your will is mine!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11224,1,0,0,'mellichar YELL_RELEASE1'),
- (20904,-1552026,'Behold another terrifying creature of incomprehensible power!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11225,1,0,0,'mellichar YELL_RELEASE2A'),
- (20904,-1552027,'What is this? A lowly gnome? I will do better, O''great one.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11226,1,0,0,'mellichar YELL_RELEASE2B'),
- (20904,-1552028,'Anarchy! Bedlam! Oh, you are so wise! Yes, I see it now, of course!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11227,1,0,0,'mellichar YELL_RELEASE3'),
- (20904,-1552029,'One final cell remains. Yes, O''great one, right away!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11228,1,0,0,'mellichar YELL_RELEASE4'),
- (20904,-1552030,'Welcome, O''great one. I am your humble servant.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11229,1,0,0,'mellichar YELL_WELCOME'),
-
--- -1 553 000 THE BOTANICA
- (17975,-1553000,'What are you doing? These specimens are very delicate!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11144,1,0,0,'freywinn SAY_AGGRO'),
- (17975,-1553001,'Your life cycle is now concluded!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11145,1,0,0,'freywinn SAY_KILL_1'),
- (17975,-1553002,'You will feed the worms.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11146,1,0,0,'freywinn SAY_KILL_2'),
- (17975,-1553003,'Endorel aluminor!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11147,1,0,0,'freywinn SAY_TREE_1'),
- (17975,-1553004,'Nature bends to my will!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11148,1,0,0,'freywinn SAY_TREE_2'),
- (17975,-1553005,'The specimens...must be preserved.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11149,1,0,0,'freywinn SAY_DEATH'),
- (17980,-1553006,'emits a strange noise.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,2,0,0,'laj EMOTE_SUMMON'),
- (17977,-1553007,'Who disturbs this sanctuary?',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11230,1,0,0,'warp SAY_AGGRO'),
- (17977,-1553008,'You must die! But wait: this does not-- No, no... you must die!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11231,1,0,0,'warp SAY_SLAY_1'),
- (17977,-1553009,'What am I doing? Why do I...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11232,1,0,0,'warp SAY_SLAY_2'),
- (17977,-1553010,'Children, come to me!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11233,1,0,0,'warp SAY_SUMMON_1'),
- (17977,-1553011,'Maybe this is not-- No, we fight! Come to my aid.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11234,1,0,0,'warp SAY_SUMMON_2'),
- (17977,-1553012,'So... confused. Do not... belong here!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11235,1,0,0,'warp SAY_DEATH'),
-
--- -1 554 000 THE MECHANAR
- (0,-1554000,'I predict a painful death.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11101,1,0,0,'gyro SAY_AGGRO'),
- (0,-1554001,'Measure twice; cut once!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11104,1,0,0,'gyro SAY_SAW_ATTACK1'),
- (0,-1554002,'If my division is correct, you should be quite dead.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11105,1,0,0,'gyro SAY_SAW_ATTACK2'),
- (0,-1554003,'Your strategy was flawed!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11102,1,0,0,'gyro SAY_SLAY1'),
- (0,-1554004,'Yes, the only logical outcome.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11103,1,0,0,'gyro SAY_SLAY2'),
- (0,-1554005,'An unforseen... contingency',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11106,1,0,0,'gyro SAY_DEATH'),
- (19710,-1554006,'You have approximately five seconds to live.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11109,1,0,0,'ironhand SAY_AGGRO_1'),
- (19710,-1554007,'With the precise angle and velocity...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11112,1,0,0,'ironhand SAY_HAMMER_1'),
- (19710,-1554008,'Low tech yet quiet effective!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11113,1,0,0,'ironhand SAY_HAMMER_2'),
- (19710,-1554009,'A foregone conclusion.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11110,1,0,0,'ironhand SAY_SLAY_1'),
- (19710,-1554010,'The processing will continue a schedule!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11111,1,0,0,'ironhand SAY_SLAY_2'),
- (19710,-1554011,'My calculations did not...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11114,1,0,0,'ironhand SAY_DEATH_1'),
- (19710,-1554012,'raises his hammer menacingly...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,3,0,0,'ironhand EMOTE_HAMMER'),
- (19221,-1554013,'Don''t value your life very much, do you?',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11186,1,0,0,'sepethrea SAY_AGGRO'),
- (19221,-1554014,'I am not alone.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11191,1,0,0,'sepethrea SAY_SUMMON'),
- (19221,-1554015,'Think you can take the heat?',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11189,1,0,0,'sepethrea SAY_DRAGONS_BREATH_1'),
- (19221,-1554016,'Anar''endal dracon!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11190,1,0,0,'sepethrea SAY_DRAGONS_BREATH_2'),
- (19221,-1554017,'And don''t come back!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11187,1,0,0,'sepethrea SAY_SLAY1'),
- (19221,-1554018,'En''dala finel el''dal',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11188,1,0,0,'sepethrea SAY_SLAY2'),
- (19221,-1554019,'Anu... bala belore...alon.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11192,1,0,0,'sepethrea SAY_DEATH'),
- (19220,-1554020,'We are on a strict timetable. You will not interfere!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11193,1,0,0,'pathaleon SAY_AGGRO'),
- (19220,-1554021,'I''m looking for a team player...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11197,1,0,0,'pathaleon SAY_DOMINATION_1'),
- (19220,-1554022,'You work for me now!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11198,1,0,0,'pathaleon SAY_DOMINATION_2'),
- (19220,-1554023,'Time to supplement my work force.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11196,1,0,0,'pathaleon SAY_SUMMON'),
- (19220,-1554024,'I prefeer to be hands-on...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11199,1,0,0,'pathaleon SAY_ENRAGE'),
- (19220,-1554025,'A minor inconvenience.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11194,1,0,0,'pathaleon SAY_SLAY_1'),
- (19220,-1554026,'Looks like you lose.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11195,1,0,0,'pathaleon SAY_SLAY_2'),
- (19220,-1554027,'The project will... continue.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11200,1,0,0,'pathaleon SAY_DEATH'),
-
--- -1 555 000 SHADOW LABYRINTH
- (18731,-1555000,'Infidels have invaded the sanctuary! Sniveling pests...You have yet to learn the true meaning of agony!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10473,1,0,0,'hellmaw SAY_INTRO'),
- (18731,-1555001,'Pathetic mortals! You will pay dearly!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10475,1,0,0,'hellmaw SAY_AGGRO1'),
- (18731,-1555002,'I will break you!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10476,1,0,0,'hellmaw SAY_AGGRO2'),
- (18731,-1555003,'Finally! Something to relieve the tedium!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10477,1,0,0,'hellmaw SAY_AGGRO3'),
- (18731,-1555004,'Aid me, you fools, before it''s too late!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10474,1,0,0,'hellmaw SAY_HELP'),
- (18731,-1555005,'Do you fear death?',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10478,1,0,0,'hellmaw SAY_SLAY1'),
- (18731,-1555006,'This is the part I enjoy most.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10479,1,0,0,'hellmaw SAY_SLAY2'),
- (18731,-1555007,'Do not...grow...overconfident, mortal.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10480,1,0,0,'hellmaw SAY_DEATH'),
- (0,-1555008,'All flesh must burn.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10482,1,0,0,'blackhearth SAY_INTRO1'),
- (0,-1555009,'All creation must be unmade!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10483,1,0,0,'blackhearth SAY_INTRO2'),
- (0,-1555010,'Power will be yours!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10484,1,0,0,'blackhearth SAY_INTRO3'),
- (18667,-1555011,'You''ll be sorry!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10486,1,0,0,'blackhearth SAY_AGGRO1'),
- (18667,-1555012,'Time for fun!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10487,1,0,0,'blackhearth SAY_AGGRO2'),
- (18667,-1555013,'I see dead people!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10488,1,0,0,'blackhearth SAY_AGGRO3'),
- (18667,-1555014,'No comin'' back for you!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10489,1,0,0,'blackhearth SAY_SLAY1'),
- (18667,-1555015,'Nice try!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10490,1,0,0,'blackhearth SAY_SLAY2'),
- (0,-1555016,'Help us, hurry!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10485,1,0,0,'blackhearth SAY_HELP'),
- (18667,-1555017,'This... no... good...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10491,1,0,0,'blackhearth SAY_DEATH'),
- (0,-1555018,'Be ready for Dark One''s return.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10492,1,0,0,'blackhearth SAY2_INTRO1'),
- (0,-1555019,'So we have place in new universe.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10493,1,0,0,'blackhearth SAY2_INTRO2'),
- (0,-1555020,'Dark one promise!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10494,1,0,0,'blackhearth SAY2_INTRO3'),
- (0,-1555021,'You''ll be sorry!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10496,1,0,0,'blackhearth SAY2_AGGRO1'),
- (0,-1555022,'Time to kill!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10497,1,0,0,'blackhearth SAY2_AGGRO2'),
- (0,-1555023,'You be dead people!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10498,1,0,0,'blackhearth SAY2_AGGRO3'),
- (0,-1555024,'Now you gone for good.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10499,1,0,0,'blackhearth SAY2_SLAY1'),
- (0,-1555025,'You failed, haha haha',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10500,1,0,0,'blackhearth SAY2_SLAY2'),
- (0,-1555026,'Help us, hurry!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10495,1,0,0,'blackhearth SAY2_HELP'),
- (0,-1555027,'Arrgh, aah...ahhh',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10501,1,0,0,'blackhearth SAY2_DEATH'),
- (18732,-1555028,'Keep your minds focused for the days of reckoning are close at hand. Soon, the destroyer of worlds will return to make good on his promise. Soon the destruction of all that is will begin!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10522,1,0,0,'vorpil SAY_INTRO'),
- (18732,-1555029,'I''ll make an offering of your blood!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10524,1,0,0,'vorpil SAY_AGGRO1'),
- (18732,-1555030,'You''ll be a fine example, for the others.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10525,1,0,0,'vorpil SAY_AGGRO2'),
- (18732,-1555031,'Good, a worthy sacrifice.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10526,1,0,0,'vorpil SAY_AGGRO3'),
- (18732,-1555032,'Come to my aid, heed your master now!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10523,1,0,0,'vorpil SAY_HELP'),
- (18732,-1555033,'I serve with pride.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10527,1,0,0,'vorpil SAY_SLAY1'),
- (18732,-1555034,'Your death is for the greater cause!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10528,1,0,0,'vorpil SAY_SLAY2'),
- (18732,-1555035,'I give my life... Gladly.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10529,1,0,0,'vorpil SAY_DEATH'),
- (18708,-1555036,'draws energy from the air.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,2,0,0,'murmur EMOTE_SONIC_BOOM'),
-
--- -1 556 000 SETHEKK HALLS
- (18472,-1556000,'I have pets..<squawk>..of my own!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10502,1,0,0,'syth SAY_SUMMON'),
- (18472,-1556001,'Hrrmm.. Time to.. hrrm.. make my move.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10503,1,0,0,'syth SAY_AGGRO_1'),
- (18472,-1556002,'Nice pets..hrm.. Yes! <squawking>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10504,1,0,0,'syth SAY_AGGRO_2'),
- (18472,-1556003,'Nice pets have.. weapons. Not so..<squawk>..nice.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10505,1,0,0,'syth SAY_AGGRO_3'),
- (18472,-1556004,'Death.. meeting life is.. <squawking>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10506,1,0,0,'syth SAY_SLAY_1'),
- (18472,-1556005,'Uhn.. Be free..<squawk>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10507,1,0,0,'syth SAY_SLAY_2'),
- (18472,-1556006,'No more life..hrm. No more pain. <squawks weakly>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10508,1,0,0,'syth SAY_DEATH'),
- (18473,-1556007,'<squawk>..Trinkets yes pretty Trinkets..<squawk>..power, great power. <squawk>..power in Trinkets..<squawk>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10557,1,0,0,'ikiss SAY_INTRO'),
- (18473,-1556008,'You make war on Ikiss?..<squawk>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10554,1,0,0,'ikiss SAY_AGGRO_1'),
- (18473,-1556009,'Ikiss cut you pretty..<squawk>..slice you. Yes!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10555,1,0,0,'ikiss SAY_AGGRO_2'),
- (18473,-1556010,'No escape for..<squawk>..for you',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10556,1,0,0,'ikiss SAY_AGGRO_3'),
- (18473,-1556011,'You die..<squawk>..stay away from Trinkets',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10558,1,0,0,'ikiss SAY_SLAY_1'),
- (18473,-1556012,'<squawk>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10559,1,0,0,'ikiss SAY_SLAY_2'),
- (18473,-1556013,'Ikiss will not..<squawk>..die',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10560,1,0,0,'ikiss SAY_DEATH'),
- (18473,-1556015,'begins to channel arcane energy...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,3,0,0,'ikiss EMOTE_ARCANE_EXP'),
-
--- -1 557 000 MANA TOMBS
- (18344,-1557000,'What is this? You must forgive me, but I was not expecting company. As you can see, we are somewhat preoccupied right now. But no matter. As I am a gracious host, I will tend to you... personally.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10539,1,0,0,'shaffar SAY_INTRO'),
- (18344,-1557001,'We have not yet been properly introduced.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10541,1,0,0,'shaffar SAY_AGGRO_1'),
- (18344,-1557002,'An epic battle. How exciting!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10542,1,0,0,'shaffar SAY_AGGRO_2'),
- (18344,-1557003,'I have longed for a good adventure.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10543,1,0,0,'shaffar SAY_AGGRO_3'),
- (18344,-1557004,'It has been... entertaining.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10544,1,0,0,'shaffar SAY_SLAY_1'),
- (18344,-1557005,'And now we part company.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10545,1,0,0,'shaffar SAY_SLAY_2'),
- (18344,-1557006,'I have such fascinating things to show you.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10540,1,0,0,'shaffar SAY_SUMMON'),
- (18344,-1557007,'I must bid you... farewell.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10546,1,0,0,'shaffar SAY_DEAD'),
- (18341,-1557008,'I will feed on your soul.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10561,1,0,0,'pandemonius SAY_AGGRO_1'),
- (18341,-1557009,'So... full of life!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10562,1,0,0,'pandemonius SAY_AGGRO_2'),
- (18341,-1557010,'Do not... resist.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10563,1,0,0,'pandemonius SAY_AGGRO_3'),
- (18341,-1557011,'Yes! I am... empowered!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10564,1,0,0,'pandemonius SAY_KILL_1'),
- (18341,-1557012,'More... I must have more!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10565,1,0,0,'pandemonius SAY_KILL_2'),
- (18341,-1557013,'To the void... once... more..',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10566,1,0,0,'pandemonius SAY_DEATH'),
- (18341,-1557014,'shifts into the void...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,3,0,0,'pandemonius EMOTE_DARK_SHELL'),
-
--- -1 558 000 AUCHENAI CRYPTS
- (18373,-1558000,'You have defiled the resting place of our ancestors. For this offense, there can be but one punishment. It is fitting that you have come to a place of the dead... for you will soon be joining them.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10509,1,0,0,'maladaar SAY_INTRO'),
- (18373,-1558001,'Rise my fallen brothers. Take form and fight!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10512,1,0,0,'maladaar SAY_SUMMON'),
- (18373,-1558002,'You will pay with your life!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10513,1,0,0,'maladaar SAY_AGGRO_1'),
- (18373,-1558003,'There''s no turning back now!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10514,1,0,0,'maladaar SAY_AGGRO_2'),
- (18373,-1558004,'Serve your penitence!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10515,1,0,0,'maladaar SAY_AGGRO_3'),
- (18373,-1558005,'Let your mind be clouded.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10510,1,0,0,'maladaar SAY_ROAR'),
- (18373,-1558006,'Stare into the darkness of your soul.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10511,1,0,0,'maladaar SAY_SOUL_CLEAVE'),
- (18373,-1558007,'These walls will be your doom.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10516,1,0,0,'maladaar SAY_SLAY_1'),
- (18373,-1558008,'<laugh> Now, you''ll stay for eternity!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10517,1,0,0,'maladaar SAY_SLAY_2'),
- (18373,-1558009,'This is... where.. I belong...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10518,1,0,0,'maladaar SAY_DEATH'),
-
--- -1 560 000 ESCAPE FROM DURNHOLDE (OLD HILLSBRAD)
- (17862,-1560000,'Thrall! You didn''t really think you would escape did you? You and your allies shall answer to Blackmoore - after I''ve had my fun!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10406,1,0,0,'skarloc SAY_ENTER'),
- (17862,-1560001,'You''re a slave. That''s all you''ll ever be.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10407,1,0,0,'skarloc SAY_TAUNT1'),
- (17862,-1560002,'I don''t know what Blackmoore sees in you. For my money, you''re just another ignorant savage!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10408,1,0,0,'skarloc SAY_TAUNT2'),
- (17862,-1560003,'Thrall will never be free!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10409,1,0,0,'skarloc SAY_SLAY1'),
- (17862,-1560004,'Did you really think you would leave here alive?',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10410,1,0,0,'skarloc SAY_SLAY2'),
- (17862,-1560005,'Guards! Urgh..Guards..!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10411,1,0,0,'skarloc SAY_DEATH'),
- (17848,-1560006,'You there, fetch water quickly! Get these flames out before they spread to the rest of the keep! Hurry, damn you!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10428,1,0,0,'lieutenant_drake SAY_ENTER'),
- (17848,-1560007,'I know what you''re up to, and I mean to put an end to it, permanently!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10429,1,0,0,'lieutenant_drake SAY_AGGRO'),
- (17848,-1560008,'No more middling for you.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10432,1,0,0,'lieutenant_drake SAY_SLAY1'),
- (17848,-1560009,'You will not interfere!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10433,1,0,0,'lieutenant_drake SAY_SLAY2'),
- (17848,-1560010,'Time to bleed!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10430,1,0,0,'lieutenant_drake SAY_MORTAL'),
- (17848,-1560011,'Run, you blasted cowards!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10431,1,0,0,'lieutenant_drake SAY_SHOUT'),
- (17848,-1560012,'Thrall... must not... go free.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10434,1,0,0,'lieutenant_drake SAY_DEATH'),
- (18096,-1560013,'Thrall! Come outside and face your fate!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10418,1,0,0,'epoch_hunter SAY_ENTER1'),
- (18096,-1560014,'Taretha''s life hangs in the balance. Surely you care for her. Surely you wish to save her...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10419,1,0,0,'epoch_hunter SAY_ENTER2'),
- (18096,-1560015,'Ah, there you are. I had hoped to accomplish this with a bit of subtlety, but I suppose direct confrontation was inevitable. Your future, Thrall, must not come to pass and so...you and your troublesome friends must die!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10420,1,0,0,'epoch_hunter SAY_ENTER3'),
- (18096,-1560016,'Enough! I will erase your very existence!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10421,1,0,0,'epoch_hunter SAY_AGGRO1'),
- (18096,-1560017,'You cannot fight fate!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10422,1,0,0,'epoch_hunter SAY_AGGRO2'),
- (18096,-1560018,'You are...irrelevant.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10425,1,0,0,'epoch_hunter SAY_SLAY1'),
- (18096,-1560019,'Thrall will remain a slave. Taretha will die. You have failed.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10426,1,0,0,'epoch_hunter SAY_SLAY2'),
- (18096,-1560020,'Not so fast!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10423,1,0,0,'epoch_hunter SAY_BREATH1'),
- (18096,-1560021,'Struggle as much as you like!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10424,1,0,0,'epoch_hunter SAY_BREATH2'),
- (18096,-1560022,'No!...The master... will not... be pleased.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10427,1,0,0,'epoch_hunter SAY_DEATH'),
- (17876,-1560023,'Very well then. Let''s go!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10465,1,0,0,'thrall hillsbrad SAY_TH_START_EVENT_PART1'),
- (17876,-1560024,'As long as we''re going with a new plan, I may aswell pick up a weapon and some armor.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'thrall hillsbrad SAY_TH_ARMORY'),
- (17876,-1560025,'A rider approaches!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10466,0,0,0,'thrall hillsbrad SAY_TH_SKARLOC_MEET'),
- (17876,-1560026,'I''ll never be chained again!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10467,1,0,0,'thrall hillsbrad SAY_TH_SKARLOC_TAUNT'),
- (17876,-1560027,'Very well. Tarren Mill lies just west of here. Since time is of the essence...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10468,1,0,0,'thrall hillsbrad SAY_TH_START_EVENT_PART2'),
- (17876,-1560028,'Let''s ride!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10469,0,0,1,'thrall hillsbrad SAY_TH_MOUNTS_UP'),
- (17876,-1560029,'Taretha must be in the inn. Let''s go.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'thrall hillsbrad SAY_TH_CHURCH_END'),
- (17876,-1560030,'Taretha! What foul magic is this?',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'thrall hillsbrad SAY_TH_MEET_TARETHA'),
- (17876,-1560031,'Who or what was that?',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10470,1,0,1,'thrall hillsbrad SAY_TH_EPOCH_WONDER'),
- (17876,-1560032,'No!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10471,1,0,5,'thrall hillsbrad SAY_TH_EPOCH_KILL_TARETHA'),
- (17876,-1560033,'Goodbye, Taretha. I will never forget your kindness.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10472,1,0,0,'thrall hillsbrad SAY_TH_EVENT_COMPLETE'),
- (17876,-1560034,'Things are looking grim...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10458,1,0,0,'thrall hillsbrad SAY_TH_RANDOM_LOW_HP1'),
- (17876,-1560035,'I will fight to the last!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10459,1,0,0,'thrall hillsbrad SAY_TH_RANDOM_LOW_HP2'),
- (17876,-1560036,'Taretha...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10460,1,0,0,'thrall hillsbrad SAY_TH_RANDOM_DIE1'),
- (17876,-1560037,'A good day...to die...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10461,1,0,0,'thrall hillsbrad SAY_TH_RANDOM_DIE2'),
- (17876,-1560038,'I have earned my freedom!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10448,1,0,0,'thrall hillsbrad SAY_TH_RANDOM_AGGRO1'),
- (17876,-1560039,'This day is long overdue. Out of my way!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10449,1,0,0,'thrall hillsbrad SAY_TH_RANDOM_AGGRO2'),
- (17876,-1560040,'I am a slave no longer!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10450,1,0,0,'thrall hillsbrad SAY_TH_RANDOM_AGGRO3'),
- (17876,-1560041,'Blackmoore has much to answer for!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10451,1,0,0,'thrall hillsbrad SAY_TH_RANDOM_AGGRO4'),
- (17876,-1560042,'You have forced my hand!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10452,1,0,0,'thrall hillsbrad SAY_TH_RANDOM_KILL1'),
- (17876,-1560043,'It should not have come to this!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10453,1,0,0,'thrall hillsbrad SAY_TH_RANDOM_KILL2'),
- (17876,-1560044,'I did not ask for this!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10454,1,0,0,'thrall hillsbrad SAY_TH_RANDOM_KILL3'),
- (17876,-1560045,'I am truly in your debt, strangers.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10455,1,0,0,'thrall hillsbrad SAY_TH_LEAVE_COMBAT1'),
- (17876,-1560046,'Thank you, strangers. You have given me hope.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10456,1,0,0,'thrall hillsbrad SAY_TH_LEAVE_COMBAT2'),
- (17876,-1560047,'I will not waste this chance. I will seek out my destiny.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10457,1,0,0,'thrall hillsbrad SAY_TH_LEAVE_COMBAT3'),
- (18887,-1560048,'I''m free! Thank you all!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'taretha SAY_TA_FREE'),
- (18887,-1560049,'Thrall, you escaped!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'taretha SAY_TA_ESCAPED'),
-
--- -1 564 000 BLACK TEMPLE
- (22887,-1564000,'You will die in the name of Lady Vashj!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11450,1,0,0,'SAY_AGGRO'),
- (22887,-1564001,'Stick around!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11451,1,0,0,'SAY_NEEDLE1'),
- (22887,-1564002,'I''ll deal with you later!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11452,1,0,0,'SAY_NEEDLE2'),
- (22887,-1564003,'Your success was short lived!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11455,1,0,0,'SAY_SLAY1'),
- (22887,-1564004,'Time for you to go!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11456,1,0,0,'SAY_SLAY2'),
- (22887,-1564005,'Bel''anen dal''lorei!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11453,1,0,0,'SAY_SPECIAL1'),
- (22887,-1564006,'Blood will flow!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11454,1,0,0,'SAY_SPECIAL2'),
- (22887,-1564007,'Bal''amer ch''itah!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11457,1,0,0,'SAY_ENRAGE1'),
- (22887,-1564008,'My patience has ran out! Die, DIE!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11458,1,0,0,'SAY_ENRAGE2'),
- (22887,-1564009,'Lord Illidan will... crush you.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11459,1,0,0,'SAY_DEATH'),
- (22898,-1564010,'%s acquires a new target!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,3,0,0,'supremus EMOTE_NEW_TARGET'),
- (22898,-1564011,'%s punches the ground in anger!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,3,0,0,'supremus EMOTE_PUNCH_GROUND'),
- (22898,-1564012,'The ground begins to crack open!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,3,0,0,'supremus EMOTE_GROUND_CRACK'),
- (22990,-1564013,'No! Not yet...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11385,1,0,0,'akama shade SAY_LOW_HEALTH'),
- (22990,-1564014,'I will not last much longer...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11386,1,0,0,'akama shade SAY_DEATH'),
- (22990,-1564015,'Come out from the shadows! I''ve returned to lead you against our true enemy! Shed your chains and raise your weapons against your Illidari masters!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,0,0,'akama shade SAY_FREE'),
- (22990,-1564016,'Hail our leader! Hail Akama!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,0,0,'akama shade broken SAY_BROKEN_FREE_01'),
- (22990,-1564017,'Hail Akama!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,0,0,'akama shade broken SAY_BROKEN_FREE_02'),
- (22947,-1564018,'You play, you pay.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11501,1,0,0,'shahraz SAY_TAUNT1'),
- (22947,-1564019,'I''m not impressed.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11502,1,0,0,'shahraz SAY_TAUNT2'),
- (22947,-1564020,'Enjoying yourselves?',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11503,1,0,0,'shahraz SAY_TAUNT3'),
- (22947,-1564021,'So... business or pleasure?',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11504,1,0,0,'shahraz SAY_AGGRO'),
- (22947,-1564022,'You seem a little tense.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11505,1,0,0,'shahraz SAY_SPELL1'),
- (22947,-1564023,'Don''t be shy.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11506,1,0,0,'shahraz SAY_SPELL2'),
- (22947,-1564024,'I''m all... yours.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11507,1,0,0,'shahraz SAY_SPELL3'),
- (22947,-1564025,'Easy come, easy go.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11508,1,0,0,'shahraz SAY_SLAY1'),
- (22947,-1564026,'So much for a happy ending.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11509,1,0,0,'shahraz SAY_SLAY2'),
- (22947,-1564027,'Stop toying with my emotions!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11510,1,0,0,'shahraz SAY_ENRAGE'),
- (22947,-1564028,'I wasn''t... finished.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11511,1,0,0,'shahraz SAY_DEATH'),
- (22948,-1564029,'Horde will... crush you.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11432,1,0,0,'bloodboil SOUND_AGGRO'),
- (22948,-1564030,'Time to feast!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11433,1,0,0,'bloodboil SAY_SLAY1'),
- (22948,-1564031,'More! I want more!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11434,1,0,0,'bloodboil SAY_SLAY2'),
- (22948,-1564032,'Drink your blood! Eat your flesh!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11435,1,0,0,'bloodboil SAY_SPECIAL1'),
- (22948,-1564033,'I hunger!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11436,1,0,0,'bloodboil SAY_SPECIAL2'),
- (22948,-1564034,'<babbling>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11437,1,0,0,'bloodboil SAY_ENRAGE1'),
- (22948,-1564035,'I''ll rip the meat from your bones!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11438,1,0,0,'bloodboil SAY_ENRAGE2'),
- (22948,-1564036,'Aaaahrg...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11439,1,0,0,'bloodboil SAY_DEATH'),
- (22871,-1564037,'I was the first, you know. For me, the wheel of death has spun many times. <laughs> So much time has passed. I have a lot of catching up to do...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11512,1,0,0,'teron SAY_INTRO'),
- (22871,-1564038,'Vengeance is mine!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11513,1,0,0,'teron SAY_AGGRO'),
- (22871,-1564039,'I have use for you!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11514,1,0,0,'teron SAY_SLAY1'),
- (22871,-1564040,'It gets worse...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11515,1,0,0,'teron SAY_SLAY2'),
- (22871,-1564041,'What are you afraid of?',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11517,1,0,0,'teron SAY_SPELL1'),
- (22871,-1564042,'Death... really isn''t so bad.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11516,1,0,0,'teron SAY_SPELL2'),
- (22871,-1564043,'Give in!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11518,1,0,0,'teron SAY_SPECIAL1'),
- (22871,-1564044,'I have something for you...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11519,1,0,0,'teron SAY_SPECIAL2'),
- (22871,-1564045,'YOU WILL SHOW THE PROPER RESPECT!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11520,1,0,0,'teron SAY_ENRAGE'),
- (22871,-1564046,'The wheel...spins...again....',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11521,1,0,0,'teron SAY_DEATH'),
- (23418,-1564047,'Pain and suffering are all that await you!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11415,1,0,0,'essence SUFF_SAY_FREED'),
- (23418,-1564048,'Don''t leave me alone!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11416,1,0,0,'essence SUFF_SAY_AGGRO'),
- (23418,-1564049,'Look at what you make me do!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11417,1,0,0,'essence SUFF_SAY_SLAY1'),
- (23418,-1564050,'I didn''t ask for this!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11418,1,0,0,'essence SUFF_SAY_SLAY2'),
- (23418,-1564051,'The pain is only beginning!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11419,1,0,0,'essence SUFF_SAY_SLAY3'),
- (23418,-1564052,'I don''t want to go back!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11420,1,0,0,'essence SUFF_SAY_RECAP'),
- (23418,-1564053,'Now what do I do?',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11421,1,0,0,'essence SUFF_SAY_AFTER'),
- (23418,-1564054,'%s becomes enraged!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,3,0,0,'essence SUFF_EMOTE_ENRAGE'),
- (23419,-1564055,'You can have anything you desire... for a price.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11408,1,0,0,'essence DESI_SAY_FREED'),
- (23419,-1564056,'Fulfilment is at hand!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11409,1,0,0,'essence DESI_SAY_SLAY1'),
- (23419,-1564057,'Yes... you''ll stay with us now...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11410,1,0,0,'essence DESI_SAY_SLAY2'),
- (23419,-1564058,'Your reach exceeds your grasp.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11412,1,0,0,'essence DESI_SAY_SLAY3'),
- (23419,-1564059,'Be careful what you wish for...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11411,1,0,0,'essence DESI_SAY_SPEC'),
- (23419,-1564060,'I''ll be waiting...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11413,1,0,0,'essence DESI_SAY_RECAP'),
- (23419,-1564061,'I won''t be far...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11414,1,0,0,'essence DESI_SAY_AFTER'),
- (23420,-1564062,'Beware: I live!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11399,1,0,0,'essence ANGER_SAY_FREED'),
- (23420,-1564063,'So... foolish.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11400,1,0,0,'essence ANGER_SAY_FREED2'),
- (23420,-1564064,'<maniacal cackle>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11401,1,0,0,'essence ANGER_SAY_SLAY1'),
- (23420,-1564065,'Enough. No more.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11402,1,0,0,'essence ANGER_SAY_SLAY2'),
- (23420,-1564066,'On your knees!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11403,1,0,0,'essence ANGER_SAY_SPEC'),
- (23420,-1564067,'Beware, coward.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11405,1,0,0,'essence ANGER_SAY_BEFORE'),
- (23420,-1564068,'I won''t... be... ignored.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11404,1,0,0,'essence ANGER_SAY_DEATH'),
- (0,-1564069,'You wish to test me?',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11524,1,0,0,'council vera AGGRO'),
- (0,-1564070,'I have better things to do...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11422,1,0,0,'council gath AGGRO'),
- (0,-1564071,'Flee or die!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11482,1,0,0,'council mala AGGRO'),
- (0,-1564072,'Common... such a crude language. Bandal!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11440,1,0,0,'council zere AGGRO'),
- (0,-1564073,'Enough games!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11428,1,0,0,'council gath ENRAGE'),
- (0,-1564074,'You wish to kill me? Hahaha, you first!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11530,1,0,0,'council vera ENRAGE'),
- (0,-1564075,'For Quel''Thalas! For the Sunwell!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11488,1,0,0,'council mala ENRAGE'),
- (0,-1564076,'Sha''amoor sine menoor!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11446,1,0,0,'council zere ENRAGE'),
- (22949,-1564077,'Enjoy your final moments!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11426,1,0,0,'council gath SPECIAL1'),
- (22952,-1564078,'You''re not caught up for this!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11528,1,0,0,'council vera SPECIAL1'),
- (22951,-1564079,'No second chances!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11486,1,0,0,'council mala SPECIAL1'),
- (22950,-1564080,'Diel fin''al',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11444,1,0,0,'council zere SPECIAL1'),
- (22949,-1564081,'You are mine!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11427,1,0,0,'council gath SPECIAL2'),
- (22952,-1564082,'Anar''alah belore!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11529,1,0,0,'council vera SPECIAL2'),
- (22951,-1564083,'I''m full of surprises!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11487,1,0,0,'council mala SPECIAL2'),
- (22950,-1564084,'Sha''amoor ara mashal?',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11445,1,0,0,'council zere SPECIAL2'),
- (22949,-1564085,'Selama am''oronor!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11423,1,0,0,'council gath SLAY'),
- (22952,-1564086,'Valiant effort!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11525,1,0,0,'council vera SLAY'),
- (22951,-1564087,'My work is done.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11483,1,0,0,'council mala SLAY'),
- (22950,-1564088,'Shorel''aran.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11441,1,0,0,'council zere SLAY'),
- (22949,-1564089,'Well done!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11424,1,0,0,'council gath SLAY_COMT'),
- (22951,-1564090,'A glorious kill!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11526,1,0,0,'council vera SLAY_COMT'),
- (22950,-1564091,'As it should be!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11484,1,0,0,'council mala SLAY_COMT'),
- (0,-1564092,'Belesa menoor!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11442,1,0,0,'council zere SLAY_COMT'),
- (22949,-1564093,'Lord Illidan... I...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11425,1,0,0,'council gath DEATH'),
- (22952,-1564094,'You got lucky!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11527,1,0,0,'council vera DEATH'),
- (22951,-1564095,'Destiny... awaits.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11485,1,0,0,'council mala DEATH'),
- (22950,-1564096,'Diel ma''ahn... oreindel''o',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11443,1,0,0,'council zere DEATH'),
-
--- -1 565 000 GRUUL'S LAIR
- (18831,-1565000,'Gronn are the real power in outland.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11367,1,0,0,'maulgar SAY_AGGRO'),
- (18831,-1565001,'You will not defeat the hand of Gruul!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11368,1,0,0,'maulgar SAY_ENRAGE'),
- (18831,-1565002,'You won''t kill next one so easy!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11369,1,0,0,'maulgar SAY_OGRE_DEATH1'),
- (18831,-1565003,'Pah! Does not prove anything!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11370,1,0,0,'maulgar SAY_OGRE_DEATH2'),
- (18831,-1565004,'I''m not afraid of you.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11371,1,0,0,'maulgar SAY_OGRE_DEATH3'),
- (18831,-1565005,'Good, now you fight me!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11372,1,0,0,'maulgar SAY_OGRE_DEATH4'),
- (18831,-1565006,'You not so tough afterall!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11373,1,0,0,'maulgar SAY_SLAY1'),
- (18831,-1565007,'Aha-ha ha ha!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11374,1,0,0,'maulgar SAY_SLAY2'),
- (18831,-1565008,'Mulgar is king!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11375,1,0,0,'maulgar SAY_SLAY3'),
- (18831,-1565009,'Gruul... will crush you...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11376,1,0,0,'maulgar SAY_DEATH'),
- (19044,-1565010,'Come... and die.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11355,1,0,0,'gruul SAY_AGGRO'),
- (19044,-1565011,'Scurry',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11356,1,0,0,'gruul SAY_SLAM1'),
- (19044,-1565012,'No escape',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11357,1,0,0,'gruul SAY_SLAM2'),
- (19044,-1565013,'Stay',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11358,1,0,0,'gruul SAY_SHATTER1'),
- (19044,-1565014,'Beg... for life',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11359,1,0,0,'gruul SAY_SHATTER2'),
- (19044,-1565015,'No more',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11360,1,0,0,'gruul SAY_SLAY1'),
- (19044,-1565016,'Unworthy',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11361,1,0,0,'gruul SAY_SLAY2'),
- (19044,-1565017,'Die',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11362,1,0,0,'gruul SAY_SLAY3'),
- (19044,-1565018,'Aaargh...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11363,1,0,0,'gruul SAY_DEATH'),
- (19044,-1565019,'%s grows in size!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,2,0,0,'gruul EMOTE_GROW'),
-
--- -1 568 000 ZUL'AMAN
- (23578,-1568000,'Spirits of da wind be your doom!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,12031,1,0,0,'janalai SAY_AGGRO'),
- (23578,-1568001,'I burn ya now!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,12032,1,0,0,'janalai SAY_FIRE_BOMBS'),
- (23578,-1568002,'Where ma hatcha? Get to work on dem eggs!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,12033,1,0,0,'janalai SAY_SUMMON_HATCHER'),
- (23578,-1568003,'I show you strength... in numbers.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,12034,1,0,0,'janalai SAY_ALL_EGGS'),
- (23578,-1568004,'You done run outta time!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,12035,1,0,0,'janalai SAY_BERSERK'),
- (23578,-1568005,'It all be over now, mon!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,12036,1,0,0,'janalai SAY_SLAY_1'),
- (23578,-1568006,'Tazaga-choo!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,12037,1,0,0,'janalai SAY_SLAY_2'),
- (23578,-1568007,'Zul''jin... got a surprise for you...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,12038,1,0,0,'janalai SAY_DEATH'),
- (23578,-1568008,'Come, strangers. The spirit of the dragonhawk hot be hungry for worthy souls.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,12039,1,0,0,'janalai SAY_EVENT_STRANGERS'),
- (23578,-1568009,'Come, friends. Your bodies gonna feed ma hatchlings, and your souls are going to feed me with power!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,12040,1,0,0,'janalai SAY_EVENT_FRIENDS'),
- (0,-1568010,'Get da move on, guards! It be killin'' time!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,12066,1,0,0,'nalorakk SAY_WAVE1_AGGRO'),
- (0,-1568011,'Guards, go already! Who you more afraid of, dem... or me?',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,12067,1,0,0,'nalorakk SAY_WAVE2_STAIR1'),
- (0,-1568012,'Ride now! Ride out dere and bring me back some heads!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,12068,1,0,0,'nalorakk SAY_WAVE3_STAIR2'),
- (0,-1568013,'I be losin'' me patience! Go on: make dem wish dey was never born!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,12069,1,0,0,'nalorakk SAY_WAVE4_PLATFORM'),
- (0,-1568014,'What could be better than servin'' da bear spirit for eternity? Come closer now. Bring your souls to me!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,12078,1,0,0,'nalorakk SAY_EVENT1_SACRIFICE'),
- (0,-1568015,'Don''t be delayin'' your fate. Come to me now. I make your sacrifice quick.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,12079,1,0,0,'nalorakk SAY_EVENT2_SACRIFICE'),
- (0,-1568016,'You be dead soon enough!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,12070,1,0,0,'nalorakk SAY_AGGRO'),
- (0,-1568017,'I bring da pain!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,12071,1,0,0,'nalorakk SAY_SURGE'),
- (0,-1568018,'You call on da beast, you gonna get more dan you bargain for!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,12072,1,0,0,'nalorakk SAY_TOBEAR'),
- (0,-1568019,'Make way for Nalorakk!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,12073,1,0,0,'nalorakk SAY_TOTROLL'),
- (0,-1568020,'You had your chance, now it be too late!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,12074,1,0,0,'nalorakk SAY_BERSERK'),
- (0,-1568021,'Mua-ha-ha! Now whatchoo got to say?',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,12075,1,0,0,'nalorakk SAY_SLAY1'),
- (0,-1568022,'Da Amani gonna rule again!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,12076,1,0,0,'nalorakk SAY_SLAY2'),
- (0,-1568023,'I... be waitin'' on da udda side....',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,12077,1,0,0,'nalorakk SAY_DEATH'),
-
--- -1 571 000 NORTHREND
- (28217,-1571000,'You save me! We thank you. We going to go back to village now. You come too... you can stay with us! Puppy-men kind of mean anyway. ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'npc_injured_rainspeaker_oracle SAY_END_IRO'),
- (28217,-1571001,'Let me know when you ready to go, okay?',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'npc_injured_rainspeaker_oracle SAY_QUEST_ACCEPT_IRO '),
- (28217,-1571002,'Home time!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'npc_injured_rainspeaker_oracle SAY_START_IRO'),
- (30154,-1571003,'I''m not afraid of anything -- bring it on!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'aggro_Agnetta'),
- (25301,-1571004,'My liege, the infiltration and control of the Alliance power structure by our cultists is well underway.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,''),
- (26203,-1571005,'Your progress in this region has been impressive, Blood Prince. I am pleased...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,''),
- (26203,-1571006,'The power you''ve bestowed upon me has allowed me great mental influence over human minds. I bear these offerings as proof of my progress.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,''),
- (26170,-1571007,'Leryssa!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,0,0,''),
- (26170,-1571008,'What have you done to my sister, you motherless elf scum!?',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,0,0,''),
- (26203,-1571009,'Now this is a surprise, Thassarian. I hadn''t heard from Mograine or the other death knights for months. You''ve come to rejoin the Scourge, I take it?',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,''),
- (26170,-1571010,'I would sooner slit my own throat. You will pay for what you did to your own men, Arthas... for what you did to me! I swear it.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,''),
- (25301,-1571011,'Allow me to take care of the intruders, lord. I will feed their entrails to the maggots.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,''),
- (26203,-1571012,'Do not fail me, San''layn. Return to Icecrown with this fool''s head or do not bother to return.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,''),
- (25301,-1571013,'Yes, my lord!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,''),
- (25250,-1571014,'What... what happened to me?',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,''),
- (25250,-1571015,'Ugh! My head won''t stop spinning...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,''),
- (25251,-1571016,'Thassarian, you''re alive!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,0,0,''),
- (26170,-1571017,'Leryssa... you... you''re all right!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,''),
- (25251,-1571018,'I thought... I thought you were... dead.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,''),
- (26170,-1571019,'I cannot return home with you just yet, Leryssa. I am not quite done with the Scourge.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,''),
- (25251,-1571020,'Don''t leave me again! You want to fight for your country, but they don''t even want you! They sent you here to die!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,''),
- (26170,-1571021,'You might be right, sister. My obligations to my land and King have been fulfilled. But there is still something that I owe to myself.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,''),
- (26170,-1571022,'I know that look in your eye... I''m not going to be able to talk you out of this. If you die on me again...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,''),
- (26170,-1571023,'Do not worry, Leryssa. I will come back to you when I''m done. Nothing in the world will stop me from coming home to the only family that I have left.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,''),
- (25478,-1571024,'Pathetic fool! A servant of malygos would sooner die than aid an emeny...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,''),
- (25478,-1571025,'Aargh! Do your worst, $C ! I''ll tell you NOTHING!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,''),
- (25478,-1571026,'Aahhhh! Release me! I am of no use to you. I swear it!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,''),
- (25478,-1571027,'Stop! I beg you, please stop. Please...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,''),
- (25478,-1571028,'Alright! I am beaten. Your previous archmage is held in a prison, elevated and sealed. Even if you manage to reach her, Salrand herself holds the key. Your mission is folly!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,''),
- (25478,-1571029,'I''ve given you the information, $C ! You''re wasting your time....',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,''),
- (25478,-1571030,'Noooo! This tortue is inhumane! You have what you want... why don''t you just kill me?',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,''),
- (30007,-1571031,'This battle must be seen to be believed! Once a mild-mannered tuskarr fisherman, our next fighter turned to the life of a soulless mercenary when his entire family was wiped out by a vicious pack of lion seals and III-tempered penguins! Now he''s just In It for the gold! Ladies and gentlemen, ORINOKO TUSKBREAKER!!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,13363,1,0,0,''),
- (30020,-1571032,'Whisker! Where are you? Assist me!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,0,0,''),
- (30007,-1571033,'The champion of the Winterax trolls has challenged you, Treeofdoom! I hope you''re ready!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,''),
- (30007,-1571034,'Hailling from the distant mountains of Alterac, one of the fiercest competitors this arena has ever seen: KORRAK THE BLOODRAGER!!!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,13363,1,0,0,''),
- (30007,-1571035,'The battle is about to begin! Am I reading this card right It... It''s the nefarious magnataur lord, STINKBEARD! Yes, folks, STINKBEARD! Chitchat dosen''t stand a chance!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,13363,1,0,0,''),
- (28090,-1571036,'We''ll cleanse this place! Arthas beware!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'crusade recruit RECRUIT_SAY1'),
- (28090,-1571037,'Your''re right! We can do this!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'crusade recruit RECRUIT_SAY2'),
- (28090,-1571038,'Your''re right! What was I thinking? Bring on the Scourge!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'crusade recruit RECRUIT_SAY3'),
- (30014,-1571039,'Yggdras emerges!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,3,0,0,''),
- (30017,-1571040,'Stinkbeard comin'' for you, little ones!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,0,0,''),
- (30007,-1571041,'Do you fell that folks? The air is cracking with energy! Than can only mean one thing...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,0,0,''),
- (28604,-1571042,'Ouch! Watch where you''re tugging!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'adventurous dwarf SAY_DWARF_OUCH'),
- (28604,-1571043,'Glad I could help!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'adventurous dwarf SAY_DWARF_HELP'),
- (25248,-1571044,'Well...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'npc_hidden_cultist SAY_HIDDEN_CULTIST_1'),
- (25828,-1571045,'Finally! This charade is over... Arthas give me strength!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'npc_hidden_cultist SAY_HIDDEN_CULTIST_2'),
- (25827,-1571046,'You don''t know who you''re messing with! Death beckons!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'npc_hidden_cultist SAY_HIDDEN_CULTIST_3'),
- (25248,-1571047,'I suppose this is it, then? I won''t go down quietly!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'npc_hidden_cultist SAY_HIDDEN_CULTIST_4'),
-
--- -1 574 000 UTGARDE KEEP
- (23953,-1574000,'Your blood is mine!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,13221,1,0,0,'keleseth SAY_AGGRO'),
- (23953,-1574001,'Not so fast.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,13222,1,0,0,'keleseth SAY_FROST_TOMB'),
- (23953,-1574002,'Aranal, lidel! Their fate shall be yours!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,13224,1,0,0,'keleseth SAY_SKELETONS'),
- (23953,-1574003,'Darkness waits',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,13223,1,0,0,'keleseth SAY_KILL'),
- (23953,-1574004,'I join... the night.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,13225,1,0,0,'keleseth SAY_DEATH'),
- (23954,-1574005,'I''ll paint my face with your blood!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,13207,1,0,0,'ingvar SAY_AGGRO_FIRST'),
- (23954,-1574006,'I return! A second chance to carve out your skull!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,13209,1,0,0,'ingvar SAY_AGGRO_SECOND'),
- (23954,-1574007,'My life for the... death god!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,13213,1,0,0,'ingvar SAY_DEATH_FIRST'),
- (23954,-1574008,'No! I can do... better! I can...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,13211,1,0,0,'ingvar SAY_DEATH_SECOND'),
- (23954,-1574009,'Mjul orm agn gjor!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,13212,1,0,0,'ingvar SAY_KILL_FIRST'),
- (23954,-1574010,'I am a warrior born!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,13214,1,0,0,'ingvar SAY_KILL_SECOND'),
- (24200,-1574011,'Dalronn! See if you can muster the nerve to join my attack!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,13229,1,0,0,'skarvald YELL_SKARVALD_AGGRO'),
- (24200,-1574012,'Not... over... yet.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,13230,1,0,0,'skarvald YELL_SKARVALD_DAL_DIED'),
- (24200,-1574013,'A warrior''s death.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,13231,1,0,0,'skarvald YELL_SKARVALD_SKA_DIEDFIRST'),
- (24200,-1574014,'???',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,13232,1,0,0,'skarvald YELL_SKARVALD_KILL'),
- (24200,-1574015,'Pagh! What sort of necromancer lets death stop him? I knew you were worthless!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,13233,1,0,0,'skarvald YELL_SKARVALD_DAL_DIEDFIRST'),
- (24201,-1574016,'By all means, don''t assess the situation, you halfwit! Just jump into the fray!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,13199,1,0,0,'dalronn YELL_DALRONN_AGGRO'),
- (24201,-1574017,'See... you... soon.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,13200,1,0,0,'dalronn YELL_DALRONN_SKA_DIED'),
- (24201,-1574018,'There''s no... greater... glory.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,13201,1,0,0,'dalronn YELL_DALRONN_DAL_DIEDFIRST'),
- (24201,-1574019,'You may serve me yet.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,13202,1,0,0,'dalronn YELL_DALRONN_KILL'),
- (24201,-1574020,'Skarvald, you incompetent slug! Return and make yourself useful!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,13203,1,0,0,'dalronn YELL_DALRONN_SKA_DIEDFIRST'),
-
--- -1 575 000 UTGARDE PINNACLE
- (26687,-1575000,'What this place? I will destroy you!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'Gortok Palehoof SAY_AGGRO'),
- (26687,-1575001,'You die! That what master wants!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'Gortok Palehoof SAY_SLAY_1'),
- (26687,-1575002,'An easy task!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'Gortok Palehoof SAY_SLAY_2'),
- (26693,-1575004,'What mongrels dare intrude here? Look alive, my brothers! A feast for the one that brings me their heads!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,13497,1,0,0,'Skadi - SAY_AGGRO'),
- (26693,-1575005,'Not so brash now, are you?',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,13504,1,0,0,'Skadi - SAY_KILL_1'),
- (26693,-1575006,'I''ll mount your skull from the highest tower!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,13505,1,0,0,'Skadi - SAY_KILL_2'),
- (26693,-1575007,'%s in within range of the harpoon launchers!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,3,0,0,'Skadi - EMOTE_RANGE'),
- (26693,-1575008,'ARGH! You call that... an attack? I''ll... show... aghhhh...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,13506,1,0,0,'Skadi - SAY_DEATH'),
- (26693,-1575009,'%s in within range of the harpoon launchers!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,3,0,0,'Skadi - EMOTE_RANGE'),
- (26693,-1575010,'You motherless knaves! Your corpses will make fine morsels for my new drake!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,13507,1,0,0,'Skadi - SAY_DRAKE_DEATH'),
- (26693,-1575011,'Sear them to the bone!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,13498,1,0,0,'Skadi - SAY_DRAKE_BREATH_1'),
- (26693,-1575012,'Go now! Leave nothing but ash in your wake!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,13499,1,0,0,'Skadi - SAY_DRAKE_BREATH_2'),
- (26693,-1575013,'Cleanse our sacred halls with flame!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,13500,1,0,0,'Skadi - SAY_DRAKE_BREATH_3'),
- (29281,-1575015,'My liege! I have done as you asked, and now beseech you for your blessing!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'Svala Sorrowgrave SAY_DIALOG_WITH_ARTHAS_1'),
- (29281,-1575016,'The sensation is... beyond my imagining. I am yours to command, my king.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'Svala Sorrowgrave SAY_DIALOG_WITH_ARTHAS_2'),
- (29281,-1575017,'I will be happy to slaughter them in your name! Come, enemies of the Scourge! I will show you the might of the Lich King!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'Svala Sorrowgrave SAY_DIALOG_WITH_ARTHAS_3'),
- (26668,-1575018,'I will vanquish your soul!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'Svala Sorrowgrave SAY_AGGRO'),
- (26668,-1575019,'You were a fool to challenge the power of the Lich King!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'Svala Sorrowgrave SAY_SLAY_1'),
- (26668,-1575020,'Your will is done, my king.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'Svala Sorrowgrave SAY_SLAY_2'),
- (26668,-1575021,'Another soul for my master.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'Svala Sorrowgrave SAY_SLAY_3'),
- (26668,-1575022,'Nooo! I did not come this far... to...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'Svala Sorrowgrave SAY_DEATH'),
- (26668,-1575023,'Your death approaches.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,13850,1,0,0,'svala SAY_SACRIFICE_1'),
- (26668,-1575024,'Go now to my master.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,13851,1,0,0,'svala SAY_SACRIFICE_2'),
- (26668,-1575025,'Your end is inevitable.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,13852,1,0,0,'svala SAY_SACRIFICE_3'),
- (26668,-1575026,'Yor-guul mak!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,13853,1,0,0,'svala SAY_SACRIFICE_4'),
- (26668,-1575027,'Any last words?',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,13854,1,0,0,'svala SAY_SACRIFICE_5'),
- (26861,-1575028,'You invade my home and then dare to challenge me? I will tear the hearts from your chests and offer them as gifts to the death god! Rualg nja gaborr!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,13609,1,0,0,'King Ymirom - SAY_AGGRO'),
- (26861,-1575029,'Your death is only the beginning!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,13614,1,0,0,'King Ymirom - SAY_SLAY_1'),
- (26861,-1575030,'You have failed your people!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,13615,1,0,0,'King Ymirom - SAY_SLAY_2'),
- (26861,-1575031,'There is a reason I am king!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,13616,1,0,0,'King Ymirom - SAY_SLAY_3'),
- (26861,-1575032,'Bleed no more!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,13617,1,0,0,'King Ymirom - SAY_SLAY_4'),
- (26861,-1575033,'What... awaits me... now?',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,13618,1,0,0,'King Ymirom - SAY_DEATH'),
- (26861,-1575034,'Bjorn of the Black Storm! Honor me now with your presence!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,13610,1,0,0,'King Ymirom - SAY_SUMMON_BJORN'),
- (26861,-1575035,'Haldor of the Rocky Cliffs, grant me your strength!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,13611,1,0,0,'King Ymirom - SAY_SUMMON_HALDOR'),
- (26861,-1575036,'Ranulf of the Screaming Abyss, snuff these maggots with darkest night! ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,13612,1,0,0,'King Ymirom - SAY_SUMMON_RANULF'),
- (26861,-1575037,'Tor of the Brutal Siege! Bestow your might upon me!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,13613,1,0,0,'King Ymirom - SAY_SUMMON_TORGYN'),
-
--- -1 576 000 THE NEXUS: THE NEXUS
- (26731,-1576000,'You know what they say about curiosity.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,13319,1,0,0,'grand magus telestra SAY_AGGRO'),
- (26731,-1576001,'Death becomes you!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,13324,1,0,0,'grand magus telestra SAY_KILL'),
- (26731,-1576002,'Damn the... luck.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,13320,1,0,0,'grand magus telestra SAY_DEATH'),
- (26731,-1576003,'Now to finish the job!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,13323,1,0,0,'grand magus telestra SAY_MERGE'),
- (26731,-1576004,'There''s plenty of me to go around.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,13321,1,0,0,'grand magus telestra SAY_SPLIT_1'),
- (26731,-1576005,'I''ll give you more than you can handle.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,13322,1,0,0,'grand magus telestra SAY_SPLIT_2'),
- (26763,-1576010,'Chaos beckons.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,13186,1,0,0,'anomalus SAY_AGGRO'),
- (26763,-1576011,'Of course.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,13187,1,0,0,'anomalus SAY_DEATH'),
- (26763,-1576012,'Reality... unwoven.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,13188,1,0,0,'anomalus SAY_RIFT'),
- (26763,-1576013,'Indestructible.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,13189,1,0,0,'anomalus SAY_SHIELD'),
- (26794,-1576020,'Noo!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,13328,1,0,0,'ormorok SAY_AGGRO'),
- (26794,-1576021,'Aaggh!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,13330,1,0,0,'ormorok SAY_DEATH'),
- (26794,-1576022,'Back!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,13331,1,0,0,'ormorok SAY_REFLECT'),
- (26794,-1576023,'Bleed!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,13332,1,0,0,'ormorok SAY_CRYSTAL_SPIKES'),
- (26794,-1576024,'Aaggh! Kill!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,13329,1,0,0,'ormorok SAY_KILL'),
- (26723,-1576040,'Preserve? Why? There''s no truth in it. No no no... only in the taking! I see that now!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,13450,1,0,0,'keristrasza SAY_AGGRO'),
- (26723,-1576041,'Now we''ve come to the truth!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,13453,1,0,0,'keristrasza SAY_SLAY'),
- (26723,-1576042,'Finish it! FINISH IT! Kill me, or I swear by the Dragonqueen you''ll never see daylight again!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,13452,1,0,0,'keristrasza SAY_ENRAGE'),
- (26723,-1576043,'Dragonqueen... Life-Binder... preserve... me.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,13454,1,0,0,'keristrasza SAY_DEATH'),
- (26723,-1576044,'Stay. Enjoy your final moments.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,13451,1,0,0,'keristrasza SAY_CRYSTAL_NOVA'),
-
--- -1 578 000 THE NEXUS: OCULUS
- (27655,-1578000,'What do we have here... those that would defy the Spell-Weaver? Those without foresight our understanding. How can i make you see? Malygos is saving the world from itself! Bah! You are hardly worth my time!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,0,0,''),
- (27655,-1578001,'Clearly my pets failed. Perhaps another demonstration is in order.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,0,0,''),
- (27655,-1578002,'Still you fight. Still you cling to misguided principles. If you survive, you''ll find me in the center ring.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,0,0,''),
- (27655,-1578003,'Poor blind fools!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,0,0,''),
- (27655,-1578004,'A taste... just a small taste... of the Spell-Weaver''s power!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,0,0,''),
-
--- -1 580 000 SUNWELL PLATEAU
- (24850,-1580000,'Aggh! No longer will I be a slave to Malygos! Challenge me and you will be destroyed!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,12422,1,0,0,'kalecgos SAY_EVIL_AGGRO'),
- (24850,-1580001,'I will purge you!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,12423,1,0,0,'kalecgos SAY_EVIL_SPELL1'),
- (24850,-1580002,'Your pain has only begun!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,12424,1,0,0,'kalecgos SAY_EVIL_SPELL2'),
- (24850,-1580003,'In the name of Kil''jaeden!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,12425,1,0,0,'kalecgos SAY_EVIL_SLAY1'),
- (24850,-1580004,'You were warned!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,12426,1,0,0,'kalecgos SAY_EVIL_SLAY2'),
- (24850,-1580005,'My awakening is complete! You shall all perish!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,12427,1,0,0,'kalecgos SAY_EVIL_ENRAGE'),
- (24891,-1580006,'I need... your help... Cannot... resist him... much longer...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,12428,1,0,0,'kalecgos humanoid SAY_GOOD_AGGRO'),
- (24891,-1580007,'Aaahhh! Help me, before I lose my mind!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,12429,1,0,0,'kalecgos humanoid SAY_GOOD_NEAR_DEATH'),
- (24891,-1580008,'Hurry! There is not much of me left!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,12430,1,0,0,'kalecgos humanoid SAY_GOOD_NEAR_DEATH2'),
- (24891,-1580009,'I am forever in your debt. Once we have triumphed over Kil''jaeden, this entire world will be in your debt as well.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,12431,1,0,0,'kalecgos humanoid SAY_GOOD_PLRWIN'),
- (24892,-1580010,'There will be no reprieve. My work here is nearly finished.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,12451,1,0,0,'sathrovarr SAY_SATH_AGGRO'),
- (24892,-1580011,'I''m... never on... the losing... side...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,12452,1,0,0,'sathrovarr SAY_SATH_DEATH'),
- (24892,-1580012,'Your misery is my delight!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,12453,1,0,0,'sathrovarr SAY_SATH_SPELL1'),
- (24892,-1580013,'I will watch you bleed!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,12454,1,0,0,'sathrovarr SAY_SATH_SPELL2'),
- (24892,-1580014,'Pitious mortal!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,12455,1,0,0,'sathrovarr SAY_SATH_SLAY1'),
- (24892,-1580015,'Haven''t you heard? I always win!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,12456,1,0,0,'sathrovarr SAY_SATH_SLAY2'),
- (24892,-1580016,'I have toyed with you long enough!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,12457,1,0,0,'sathrovarr SAY_SATH_ENRAGE'),
- (24882,-1580017,'Puny lizard! Death is the only answer you''ll find here!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,12458,1,0,0,'brutallus YELL_INTRO'),
- (24882,-1580018,'Grah! Your magic is weak!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,12459,1,0,0,'brutallus YELL_INTRO_BREAK_ICE'),
- (24882,-1580019,'I will crush you!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,12460,1,0,0,'brutallus YELL_INTRO_CHARGE'),
- (24882,-1580020,'That was fun.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,12461,1,0,0,'brutallus YELL_INTRO_KILL_MADRIGOSA'),
- (24882,-1580021,'Come, try your luck!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,12462,1,0,0,'brutallus YELL_INTRO_TAUNT'),
- (24882,-1580022,'Ahh! More lambs to the slaughter!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,12463,1,0,0,'brutallus YELL_AGGRO'),
- (24882,-1580023,'Perish, insect!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,12464,1,0,0,'brutallus YELL_KILL1'),
- (24882,-1580024,'You are meat!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,12465,1,0,0,'brutallus YELL_KILL2'),
- (24882,-1580025,'Too easy!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,12466,1,0,0,'brutallus YELL_KILL3'),
- (24882,-1580026,'Bring the fight to me!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,12467,1,0,0,'brutallus YELL_LOVE1'),
- (24882,-1580027,'Another day, another glorious battle!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,12468,1,0,0,'brutallus YELL_LOVE2'),
- (24882,-1580028,'I live for this!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,12469,1,0,0,'brutallus YELL_LOVE3'),
- (24882,-1580029,'So much for a real challenge... Die!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,12470,1,0,0,'brutallus YELL_BERSERK'),
- (24882,-1580030,'Gah! Well done... Now... this gets... interesting...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,12471,1,0,0,'brutallus YELL_DEATH'),
- (24882,-1580031,'Hold, friends! There is information to be had before this devil meets his fate!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,12472,1,0,0,'madrigosa YELL_MADR_ICE_BARRIER'),
- (24882,-1580032,'Where is Anveena, demon? What has become of Kalec?',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,12473,1,0,0,'madrigosa YELL_MADR_INTRO'),
- (24882,-1580033,'You will tell me where they are!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,12474,1,0,0,'madrigosa YELL_MADR_ICE_BLOCK'),
- (24882,-1580034,'Speak, I grow weary of asking!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,12475,1,0,0,'madrigosa YELL_MADR_TRAP'),
- (24882,-1580035,'Malygos, my lord! I did my best!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,12476,1,0,0,'madrigosa YELL_MADR_DEATH'),
- (25038,-1580036,'Glory to Kil''jaeden! Death to all who oppose!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,12477,1,0,0,'felmyst - YELL_BIRTH'),
- (25038,-1580037,'I kill for the master!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,12480,1,0,0,'felmyst - YELL_KILL1'),
- (25038,-1580038,'The end has come!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,12481,1,0,0,'felmyst - YELL_KILL2'),
- (25038,-1580039,'Choke on your final breath!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,12478,1,0,0,'felmyst - YELL_BREATH'),
- (25038,-1580040,'I am stronger than ever before!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,12479,1,0,0,'felmyst- YELL_TAKEOFF'),
- (25038,-1580041,'No more hesitation! Your fates are written!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,12482,1,0,0,'felmyst - YELL_BERSERK'),
- (25038,-1580042,'Kil''jaeden... will... prevail...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,12483,1,0,0,'felmyst - YELL_DEATH'),
- (25038,-1580043,'Madrigosa deserved a far better fate. You did what had to be done, but this battle is far from over.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,12439,1,0,0,'felmyst - YELL_KALECGOS'),
- (25166,-1580044,'Fire to the aid of shadow!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,12489,1,0,0,'eredar - YELL_CANFLAGRATION'),
- (25166,-1580045,'Sacrolash!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,12492,1,0,0,'eredar - YELL_SISTER_SACROLASH_DEAD'),
- (25166,-1580046,'Fire consume.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,12490,1,0,0,'eredar - YELL_ALY_KILL_1'),
- (25166,-1580047,'Ed-ir Halach!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,12491,1,0,0,'eredar - YELL_ALY_KILL_2'),
- (25166,-1580048,'De-ek Anur!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,12494,1,0,0,'eredar - YELL_ALY_DEAD'),
- (25166,-1580049,'Your luck has run its curse!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,12493,1,0,0,'eredar - YELL_BERSERK'),
- (25165,-1580050,'Shadow to the aid of fire!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,12485,1,0,0,'eredar - YELL_SHADOW_NOVA'),
- (25165,-1580051,'Alythess! Your fire burns within me!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,12488,1,0,0,'eredar - YELL_SISTER_ALYTHESS_DEAD'),
- (25165,-1580052,'Shadow engulf.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,12486,1,0,0,'eredar - YELL_SAC_KILL_1'),
- (25165,-1580053,'Ee-nok Kryul!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,12487,1,0,0,'eredar - YELL_SAC_KILL_2'),
- (25165,-1580054,'I... fade.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,0,0,'eredar - YELL_SAC_DEAD'),
- (25165,-1580055,'Time is a luxury you no longer possess!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,0,0,'eredar - YELL_ENRAGE'),
- (25166,-1580056,'Misery...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,12484,1,0,0,'eredar - YELL_INTRO_SAC_1'),
- (25166,-1580057,'Depravity...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,0,0,'eredar - YELL_INTRO_ALY_2'),
- (25166,-1580058,'Confusion...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,0,0,'eredar - YELL_INTRO_SAC_3'),
- (25166,-1580059,'Hatred...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,0,0,'eredar - YELL_INTRO_ALY_4'),
- (25166,-1580060,'Mistrust...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,0,0,'eredar - YELL_INTRO_SAC_5'),
- (25166,-1580061,'Chaos...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,0,0,'eredar - YELL_INTRO_ALY_6'),
- (25166,-1580062,'These are the hallmarks...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,0,0,'eredar - YELL_INTRO_SAC_7'),
- (25166,-1580063,'These are the pillars...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,0,0,'eredar - YELL_INTRO_ALY_8'),
- (25165,-1580064,'%s directs Shadow Nova at $N',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,3,0,0,'eredar - emote shadow nova'),
- (25166,-1580065,'%s directs Conflagration at $N',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,3,0,0,'eredar - emote conflagration'),
- (25608,-1580066,'All my plans have led to this!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,12495,1,0,0,'KJ - SAY_KJ_OFFCOMBAT1'),
- (25608,-1580067,'Stay on task! Do not waste time!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,12496,1,0,0,'KJ - SAY_KJ_OFFCOMBAT2'),
- (25608,-1580068,'I have waited long enough!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,12497,1,0,0,'KJ - SAY_KJ_OFFCOMBAT3'),
- (25608,-1580069,'Fail me and suffer for eternity!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,12498,1,0,0,'KJ - SAY_KJ_OFFCOMBAT4'),
- (25608,-1580070,'Drain the girl! Drain her power until there is nothing but a vacant shell!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,12499,1,0,0,'KJ - SAY_KJ_OFFCOMBAT5'),
- (25315,-1580071,'The expendible have perished... So be it! Now I shall succeed where Sargeras could not! I will bleed this wretched world and secure my place as the true master of the Burning Legion. The end has come! Let the unraveling of this world commence!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,12500,1,0,0,'KJ - SAY_KJ_EMERGE'),
- (25315,-1580072,'Another step towards destruction!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,12501,1,0,0,'KJ - SAY_KJ_SLAY1'),
- (25315,-1580073,'Anak-ky''ri!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,12502,1,0,0,'KJ - SAY_KJ_SLAY2'),
- (25315,-1580074,'Who can you trust?',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,12503,1,0,0,'KJ - SAY_KJ_REFLECTION1'),
- (25315,-1580075,'The enemy is among you.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,12504,1,0,0,'KJ - SAY_KJ_REFLECTION2'),
- (25315,-1580076,'Chaos!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,12505,1,0,0,'KJ - SAY_KJ_DARKNESS1'),
- (25315,-1580077,'Destruction!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,12506,1,0,0,'KJ - SAY_KJ_DARKNESS2'),
- (25315,-1580078,'Oblivion!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,12507,1,0,0,'KJ - SAY_KJ_DARKNESS3'),
- (25315,-1580079,'I will not be denied! This world shall fall!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,12508,1,0,0,'KJ - SAY_KJ_PHASE3'),
- (25315,-1580080,'Do not harbor false hope. You cannot win!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,12509,1,0,0,'KJ - SAY_KJ_PHASE4'),
- (25315,-1580081,'Aggghh! The powers of the Sunwell... turned... against me! What have you done? WHAT HAVE YOU DONE?',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,12510,1,0,0,'KJ - SAY_KJ_PHASE5'),
- (25315,-1580082,'Anveena, you must awaken, this world needs you!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,12445,1,0,0,'KJ - SAY_KALECGOS_AWAKEN'),
- (25315,-1580083,'I serve only the Master now.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,12511,1,0,0,'KJ - SAY_ANVEENA_IMPRISONED'),
- (25315,-1580084,'You must let go! You must become what you were always meant to be! The time is now, Anveena!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,12446,1,0,0,'KJ - SAY_KALECGOS_LETGO'),
- (25315,-1580085,'But I''m... lost... I cannot find my way back!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,12512,1,0,0,'KJ - SAY_ANVEENA_LOST'),
- (25315,-1580086,'Anveena, I love you! Focus on my voice, come back for me now! Only you can cleanse the Sunwell!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,12447,1,0,0,'KJ - SAY_KALECGOS_FOCUS'),
- (25315,-1580087,'Kalec... Kalec?',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,12513,1,0,0,'KJ - SAY_ANVEENA_KALEC'),
- (25315,-1580088,'Yes, Anveena! Let fate embrace you now!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,12448,1,0,0,'KJ - SAY_KALECGOS_FATE'),
- (25315,-1580089,'The nightmare is over, the spell is broken! Goodbye, Kalec, my love!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,12514,1,0,0,'KJ - SAY_ANVEENA_GOODBYE'),
- (25315,-1580090,'Goodbye, Anveena, my love. Few will remember your name, yet this day you change the course of destiny. What was once corrupt is now pure. Heroes, do not let her sacrifice be in vain.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,12450,1,0,0,'KJ - SAY_KALECGOS_GOODBYE'),
- (25315,-1580091,'Strike now, heroes, while he is weakened! Vanquish the Deceiver!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,12449,1,0,0,'KJ - SAY_KALECGOS_ENCOURAGE'),
- (25319,-1580092,'You are not alone. The Blue Dragonflight shall help you vanquish the Deceiver.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,12438,1,0,0,'KJ - SAY_KALECGOS_JOIN'),
- (25315,-1580093,'Nooooooooooooo!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,12527,1,0,0,'KJ - SAY_KJ_DEATH'),
- (25315,-1580094,'%s begins to channel dark energy',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,3,0,0,'KJ - EMOTE_KJ_DARKNESS'),
- (25319,-1580095,'I will channel my power into the orbs, be ready!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,12440,1,0,0,'KJ - SAY_KALEC_ORB_READY1'),
- (25319,-1580096,'I have empowered another orb! Use it quickly!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,12441,1,0,0,'KJ - SAY_KALEC_ORB_READY2'),
- (25319,-1580097,'Another orb is ready! Make haste!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,12442,1,0,0,'KJ - SAY_KALEC_ORB_READY3'),
- (25319,-1580098,'I have channeled all I can! The power is in your hands!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,12443,1,0,0,'KJ - SAY_KALEC_ORB_READY4'),
- (0,-1580099,'Mortal heroes, your victory here today was foretold long ago. My brother''s anguished cry of defeat will echo across the universe, bringing renewed hope to all those who still stand against the Burning Crusade.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,12515,0,0,0,'prophet velen - SAY1'),
- (0,-1580100,'As the Legion''s final defeat draws ever-nearer, stand proud in the knowledge that you have saved worlds without number from the flame. Just as this day marks an ending, so too does it herald a new beginning...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,12516,0,0,0,'prophet velen - SAY2'),
- (0,-1580101,'The creature Entropius, whom you were forced to destroy, was once the noble naaru, M''uru. In life, M''uru channeled vast energies of LIGHT and HOPE. For a time, a misguided few sought to steal those energies...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,12518,0,0,0,'prophet velen - SAY3'),
- (0,-1580102,'Then fortunate it is, that I have reclaimed the noble naaru''s spark from where it fell! Where faith dwells, hope is never lost, young blood elf.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,12519,0,0,0,'prophet velen - SAY4'),
- (0,-1580103,'Gaze now, mortals - upon the HEART OF M''URU! Unblemished. Bathed by the light of Creation - just as it was at the Dawn.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,12520,0,0,0,'prophet velen - SAY5'),
- (0,-1580104,'In time, the light and hope held within - will rebirth more than this mere fount of power... Mayhap, they will rebirth the soul of a nation.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,12521,0,0,0,'prophet velen - SAY6'),
- (0,-1580105,'Salvation, young one. It waits for us all.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,12522,0,0,0,'prophet velen - SAY7'),
- (0,-1580106,'Farewell...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,12523,0,0,0,'prophet velen - SAY8'),
- (0,-1580107,'Our arrogance was unpardonable. We damned one of the most noble beings of all. We may never atone for this sin.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,12524,0,0,0,'lady liadrinn - SAY1'),
- (0,-1580108,'Can it be?',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,12525,0,0,0,'lady liadrinn - SAY2'),
- (0,-1580109,'Blessed ancestors! I feel it... so much love... so much grace... there are... no words... impossible to describe...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,12525,0,0,0,'lady liadrinn - SAY3'),
-
--- -1 585 000 MAGISTER'S TERRACE
- (24723,-1585000,'You only waste my time!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,12378,1,0,0,'selin SAY_AGGRO'),
- (24723,-1585001,'My hunger knows no bounds!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,12381,1,0,0,'selin SAY_ENERGY'),
- (24723,-1585002,'Yes! I am a god!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,12382,1,0,0,'selin SAY_EMPOWERED'),
- (24723,-1585003,'Enough distractions!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,12388,1,0,0,'selin SAY_KILL_1'),
- (24723,-1585004,'I am invincible!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,12385,1,0,0,'selin SAY_KILL_2'),
- (24723,-1585005,'No! More... I must have more!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,12383,1,0,0,'selin SAY_DEATH'),
- (24723,-1585006,'%s begins to channel from the nearby Fel Crystal...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,3,0,0,'selin EMOTE_CRYSTAL'),
- (24744,-1585007,'Drain...life!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,12389,1,0,0,'vexallus SAY_AGGRO'),
- (24744,-1585008,'Un...con...tainable.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,12392,1,0,0,'vexallus SAY_ENERGY'),
- (24744,-1585009,'Un...leash...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,12390,1,0,0,'vexallus SAY_OVERLOAD'),
- (24744,-1585010,'Con...sume.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,12393,1,0,0,'vexallus SAY_KILL'),
- (24744,-1585011,'discharges pure energy!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,3,0,0,'vexallus EMOTE_DISCHARGE_ENERGY'),
- (24560,-1585012,'Annihilate them!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,12395,1,0,0,'delrissa SAY_AGGRO'),
- (24560,-1585013,'Oh, the horror.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,12398,1,0,0,'delrissa LackeyDeath1'),
- (24560,-1585014,'Well, aren''t you lucky?',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,12400,1,0,0,'delrissa LackeyDeath2'),
- (24560,-1585015,'Now I''m getting annoyed.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,12401,1,0,0,'delrissa LackeyDeath3'),
- (24560,-1585016,'Lackies be damned! I''ll finish you myself!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,12403,1,0,0,'delrissa LackeyDeath4'),
- (24560,-1585017,'I call that a good start.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,12405,1,0,0,'delrissa PlayerDeath1'),
- (24560,-1585018,'I could have sworn there were more of you.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,12407,1,0,0,'delrissa PlayerDeath2'),
- (24560,-1585019,'Not really much of a group, anymore, is it?',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,12409,1,0,0,'delrissa PlayerDeath3'),
- (24560,-1585020,'One is such a lonely number.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,12410,1,0,0,'delrissa PlayerDeath4'),
- (24560,-1585021,'It''s been a kick, really.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,12411,1,0,0,'delrissa PlayerDeath5'),
- (24560,-1585022,'Not what I had... planned...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,12397,1,0,0,'delrissa SAY_DEATH'),
- (24664,-1585023,'Don''t look so smug! I know what you''re thinking, but Tempest Keep was merely a set back. Did you honestly believe I would trust the future to some blind, half-night elf mongrel? Oh no, he was merely an instrument, a stepping stone to a much larger plan! It has all led to this, and this time, you will not interfere!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,12413,1,0,0,'kaelthas MT SAY_AGGRO'),
- (24664,-1585024,'Vengeance burns!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,12415,1,0,0,'kaelthas MT SAY_PHOENIX'),
- (24664,-1585025,'Felomin ashal!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,12417,1,0,0,'kaelthas MT SAY_FLAMESTRIKE'),
- (24664,-1585026,'I''ll turn your world... upside... down...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,12418,1,0,0,'kaelthas MT SAY_GRAVITY_LAPSE'),
- (24664,-1585027,'Master... grant me strength.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,12419,1,0,0,'kaelthas MT SAY_TIRED'),
- (24664,-1585028,'Do not... get too comfortable.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,12420,1,0,0,'kaelthas MT SAY_RECAST_GRAVITY'),
- (24664,-1585029,'My demise accomplishes nothing! The Master will have you! You will drown in your own blood! This world shall burn! Aaaghh!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,12421,1,0,0,'kaelthas MT SAY_DEATH'),
-
--- -1 590 000 VAULT OF ARCHAVON
- (33993,-1590000,'Emalon the Storm Watcher overcharges a Tempest Minion!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,3,0,0,'emalon EMOTE_OVERCHARGE_TEMPEST_MINION'),
- (33993,-1590001,'A Tempest Minion appears to defend Emalon!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,3,0,0,'emalon EMOTE_MINION_RESPAWN'),
- (33993,-1590002,'Archavon the Stone Watcher goes into a berserker rage!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,2,0,0,'archavon EMOTE_BERSERK'),
-
--- -1 595 000 CAVERNS OF TIME: CULLING OF STRATHOLME
--- Chrono Lord Epoch
- (26532,-1595000,'Prince Arthas Menethil, on this day, a powerful darkness has taken hold of your soul. The death you are destined to visit upon others will this day be your own.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,13408,1,0,0,'epoch SAY_INTRO | culling SAY_PHASE314'),
- (26532,-1595001,'We''ll see about that, young prince.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,13409,1,0,0,'epoch SAY_AGGRO'),
- (26532,-1595002,'Tick tock, tick tock...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,13410,1,0,0,'epoch SAY_TIME_WARP_1'),
- (26532,-1595003,'Not quick enough!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,13411,1,0,0,'epoch SAY_TIME_WARP_2'),
- (26532,-1595004,'Let''s get this over with. ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,13412,1,0,0,'epoch SAY_TIME_WARP_3'),
- (26532,-1595005,'There is no future for you.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,13413,1,0,0,'epoch SAY_SLAY_1'),
- (26532,-1595006,'This is the hour of our greatest triumph!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,13414,1,0,0,'epoch SAY_SLAY_2'),
- (26532,-1595007,'You were destined to fail.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,13415,1,0,0,'epoch SAY_SLAY_3'),
- (26532,-1595008,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,13416,0,0,0,'epoch SAY_DEATH'),
--- Mal'Ganis
- (26533,-1595009,'Yes, this is the beginning. I''ve been waiting for you, young prince. I am Mal''Ganis.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14410,0,0,1,'mal_ganis SAY_INTRO_1 | culling SAY_PHASE206'),
- (26533,-1595010,'As you can see, your people are now mine. I will now turn this city household by household, until the flame of life has been snuffed out... forever.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14411,0,0,1,'mal_ganis SAY_INTRO_2 | culling SAY_PHASE207'),
- (26533,-1595011,'This will be a fine test...Prince Arthas...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14413,1,0,0,'mal_ganis SAY_AGGRO'),
- (26533,-1595012,'All too easy...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14416,1,0,0,'mal_ganis SAY_KILL_1'),
- (26533,-1595013,'The dark lord is displeased with your interference...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14417,1,0,0,'mal_ganis SAY_KILL_2'),
- (26533,-1595014,'It is Prince Arthas I want... not you...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14418,1,0,0,'mal_ganis SAY_KILL_3'),
- (26533,-1595015,'Anak''Keri...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14422,1,0,0,'mal_ganis SAY_SLAY_1'),
- (26533,-1595016,'My onslaught will wash over the Lich King''s forces...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14423,1,0,0,'mal_ganis SAY_SLAY_2'),
- (26533,-1595017,'Your death is in vain, tiny mortal...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14424,1,0,0,'mal_ganis SAY_SLAY_3'),
- (26533,-1595018,'Your time has come to an end!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14425,1,0,0,'mal_ganis SAY_SLAY_4'),
- (26533,-1595019,'Time out...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14414,1,0,0,'mal_ganis SAY_SLEEP_1'),
- (26533,-1595020,'You seem...tired...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14415,1,0,0,'mal_ganis SAY_SLEEP_2'),
- (26533,-1595021,'I spent too much time in that weak little shell...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14426,1,0,0,'mal_ganis SAY_30HEALTH'),
- (26533,-1595022,'(Eredun) I AM MAL''GANIS! I AM ETERNAL!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14427,1,0,0,'mal_ganis SAY_15HEALTH'),
- (26533,-1595023,'ENOUGH! I waste my time here...I must gather my strength on the home world...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14428,1,0,0,'mal_ganis SAY_ESCAPE_SPEECH_1'),
- (26533,-1595024,'You''ll never defeat the Lich King without my forces! I''ll have my revenge...on him, AND you...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14429,1,0,0,'mal_ganis SAY_ESCAPE_SPEECH_2'),
- (26533,-1595025,'Your journey has just begun, young prince. Gather your forces and meet me in the artic land of Northrend. It is there that we shall settle the score between us. It is there that your true destiny will unfold.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14412,1,0,1,'mal_ganis SAY_OUTRO'),
--- Meathook
- (26529,-1595026,'Play time!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,13428,1,0,0,'meathook SAY_AGGRO'),
- (26529,-1595027,'Boring...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,13430,1,0,0,'meathook SAY_SLAY_1'),
- (26529,-1595028,'Why you stop moving?',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,13431,1,0,0,'meathook SAY_SLAY_2'),
- (26529,-1595029,'Get up! Me not done!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,13432,1,0,0,'meathook SAY_SLAY_3'),
- (26529,-1595030,'New toys!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,13429,1,0,0,'meathook SAY_SPAWN'),
- (26529,-1595031,'This... not fun...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,13433,1,0,0,'meathook SAY_DEATH'),
--- Salramm the Fleshcrafter
- (26530,-1595032,'Ah, the entertainment has arrived!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,13472,1,0,0,'salramm SAY_AGGRO'),
- (26530,-1595033,'You are too late, champion of Lordaeron. The dead shall have their day.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,13471,1,0,0,'salramm SAY_SPAWN'),
- (26530,-1595034,'The fun is just beginning!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,13473,1,0,0,'salramm SAY_SLAY_1'),
- (26530,-1595035,'Aah, quality materials!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,13474,1,0,0,'salramm SAY_SLAY_2'),
- (26530,-1595036,'Don''t worry, I''ll make good use of you.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,13475,1,0,0,'salramm SAY_SLAY_3'),
- (26530,-1595037,'You only advance... the master''s plan...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,13483,1,0,0,'salramm SAY_DEATH'),
- (26530,-1595038,'BOOM! Hahahahah...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,13478,1,0,0,'salramm SAY_EXPLODE_GHOUL_1'),
- (26530,-1595039,'Blood... destruction... EXHILARATING!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,13479,1,0,0,'salramm SAY_EXPLODE_GHOUL_2'),
- (26530,-1595040,'I want a sample...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,13480,1,0,0,'salramm SAY_STEAL_FLESH_1'),
- (26530,-1595041,'Such strength... it must be mine!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,13481,1,0,0,'salramm SAY_STEAL_FLESH_2'),
- (26530,-1595042,'Your flesh betrays you.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,13482,1,0,0,'salramm SAY_STEAL_FLESH_3'),
- (26530,-1595043,'Say hello to some friends of mine.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,13476,1,0,0,'salramm SAY_SUMMON_GHOULS_1'),
- (26530,-1595044,'Come, citizen of Stratholme! Meet your saviors.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,13477,1,0,0,'salramm SAY_SUMMON_GHOULS_2'),
--- The Infinite Corruptor
- (32273,-1595045,'How dare you interfere with our work here!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,0,0,'infinite SAY_AGGRO'),
- (32273,-1595046,'My work here is finished!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,0,0,'infinite SAY_FAIL'),
- (32273,-1595047,'My time... has run out...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,0,0,'infinite SAY_DEATH'),
--- First Act - Uther and Jaina Dialog
--- Outside the city, Arthas, Uther and Jaina dialog
- (26499,-1595070,'Glad you could make it, Uther.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,12828,0,0,1,'culling SAY_PHASE101'),
- (26528,-1595071,'Watch your tone with me, boy. You may be the prince, but I''m still your superior as a paladin!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,12839,0,0,25,'culling SAY_PHASE102'),
- (26499,-1595072,'As if I could forget. Listen, Uther, there''s something about the plague you should know... ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,12829,0,0,0,'culling SAY_PHASE103'),
- (26499,-1595073,'Oh, no. We''re too late. These people have all been infected! They may look fine now, but it''s just a matter of time before they turn into the undead!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,12830,0,0,1,'culling SAY_PHASE104'),
- (26528,-1595074,'What?',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,12840,0,0,5,'culling SAY_PHASE105'),
- (26499,-1595075,'This entire city must be purged.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,12831,0,0,1,'culling SAY_PHASE106'),
- (26528,-1595076,'How can you even consider that? There''s got to be some other way.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,12841,0,0,1,'culling SAY_PHASE107'),
- (26499,-1595077,'Damn it, Uther! As your future king, I order you to purge this city!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,12832,1,0,5,'culling SAY_PHASE108'),
- (26528,-1595078,'You are not my king yet, boy! Nor would I obey that command even if you were!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,12842,1,0,22,'culling SAY_PHASE109'),
- (26499,-1595079,'Then I must consider this an act of treason.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,12833,0,0,0,'culling SAY_PHASE110'),
- (26528,-1595080,'Treason? Have you lost your mind, Arthas?',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,12843,0,0,5,'culling SAY_PHASE111'),
- (26499,-1595081,'Have I? Lord Uther, by my right of succession and the sovereignty of my crown, I hereby relieve you of your command and suspend your paladins from service.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,12834,0,0,1,'culling SAY_PHASE112'),
- (26497,-1595082,'Arthas! You can''t just--',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,12837,0,0,1,'culling SAY_PHASE113'),
- (26499,-1595083,'It''s done! Those of you who have the will to save this land, follow me! The rest of you... get out of my sight!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,12835,0,0,0,'culling SAY_PHASE114'),
- (26528,-1595084,'You''ve just crossed a terrible threshold, Arthas.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,12844,0,0,25,'culling SAY_PHASE115'),
- (26499,-1595085,'Jaina?',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,12836,0,0,1,'culling SAY_PHASE116'),
- (26497,-1595086,'I''m sorry, Arthas. I can''t watch you do this.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,12838,0,0,1,'culling SAY_PHASE117'),
- (26499,-1595087,'Take position here, and I will lead a small force inside Stratholme to begin the culling. We must contain and purge the infected for the sake of all Lordaeron!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14327,0,0,1,'culling SAY_PHASE118'),
--- Second Act - City Streets
--- Arthas enters the city and dialog with Mal'Ganis
--- After defeating 2 bosses he runs to Town Hall
- (26499,-1595088,'Everyone looks ready. Remember, these people are all infected with the plague and will die soon. We must purge Stratholme to protect the remainder of Lordaeron from the Scourge. Let''s go.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14293,0,0,1,'culling SAY_PHASE201'),
- (0,-1595089,'Prince Arthas, may the light be praised! Many people in the town have begun to fall seriously ill, can you help us?',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,1,'culling SAY_PHASE202'),
- (26499,-1595090,'I can only help you with a clean death.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14294,0,0,0,'culling SAY_PHASE203'),
- (0,-1595091,'What? This can''t be!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'culling SAY_PHASE204'),
- (26499,-1595092,'That was just the beginning.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14295,0,0,1,'culling SAY_PHASE205'),
- (26499,-1595093,'I won''t allow it, Mal''Ganis! Better that these people die by my hand than serve as your slaves in death!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14296,0,0,5,'culling SAY_PHASE208'),
- (26499,-1595094,'Mal''ganis will send out some of his Scourge minions to interfere with us. Those of you with the strongest steel and magic shall go forth and destroy them. I will lead the rest of my forces in purging Stratholme of the infected.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14885,0,0,1,'culling SAY_PHASE209'),
- (26499,-1595095,'Champions, meet me at town hall at once! We must take the fight to Mal''Ganis.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14297,0,0,1,'culling SAY_PHASE210'),
--- Third Act - Town Hall
- (26499,-1595096,'Follow me. I know the way trought.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14298,0,0,1,'culling SAY_PHASE301'),
- (0,-1595097,'Ah, you''ve finally arrived Prince Arthas. You''re just in the nick of time.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,1,'culling SAY_PHASE302'),
- (26499,-1595098,'Yes, I''m glad i could get you before the plague.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14299,0,0,1,'culling SAY_PHASE303'),
- (26499,-1595099,'What is this sorcery?',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14300,0,0,0,'culling SAY_PHASE304'),
- (0,-1595100,'There''s no need for you to understand, Arthas. All you need to do is die!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'culling SAY_PHASE305'),
- (26499,-1595101,'Mal''Ganis appears to have more than scourge in his arsenal. We should make haste.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14301,0,0,0,'culling SAY_PHASE306'),
- (26499,-1595102,'More vile sorcery! Be ready for anything.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14302,0,0,0,'culling SAY_PHASE307'),
- (26499,-1595103,'Let''s move on.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14303,0,0,0,'culling SAY_PHASE308'),
- (26499,-1595104,'Watch your backs... they have us surrounded in this hall.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14304,0,0,0,'culling SAY_PHASE309'),
- (26499,-1595105,'One less obstacle to deal with.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'culling SAY_PHASE310'),
- (26499,-1595106,'Mal''Ganis is not making this easy...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14305,0,0,0,'culling SAY_PHASE311'),
- (26499,-1595107,'They''re very persistent.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14306,0,0,0,'culling SAY_PHASE312'),
- (26499,-1595108,'What else can be put in my way?',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14307,0,0,0,'culling SAY_PHASE313'),
- (26499,-1595109,'I do what i must for Lordaeron. And neither your words nor your actions will stop me.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14309,0,0,5,'culling SAY_PHASE315'),
--- Fourth Act - Fire Corridor
- (26499,-1595110,'The quickest path to Mal''Ganis lays behind that bookshelf ahead.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14308,0,0,0,'culling SAY_PHASE401'),
- (26499,-1595111,'This will only take a moment.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14310,0,0,0,'culling SAY_PHASE402'),
- (26499,-1595112,'I believe that secret passage still works!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14311,0,0,0,'culling SAY_PHASE403'),
- (26499,-1595113,'Let''s move trought here as quickly as possible. If the undead don''t kill us the fires might.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14312,0,0,0,'culling SAY_PHASE404'),
- (26499,-1595114,'Rest a moment and clear your lungs. But we must move again soon.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14313,0,0,0,'culling SAY_PHASE405'),
- (26499,-1595115,'That''s enough, we must move again. Mal''Ganis awaits.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14314,0,0,0,'culling SAY_PHASE406'),
- (26499,-1595116,'At last some good luck, Market Row has not caught fire yet. Mal''Ganis is supposed to be on Crusader Square which is just ahead. Tell me when you''re ready to move forth.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14315,0,0,0,'culling SAY_PHASE407'),
--- Fifth Act - Mal'Ganis Fight
- (26499,-1595117,'Justice will be done!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14316,0,0,0,'culling SAY_PHASE501'),
- (26499,-1595118,'We''re going to finish this right now Mal''Ganis... just you and me!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14317,0,0,0,'culling SAY_PHASE502'),
- (26499,-1595119,'I''ll hunt you to the ends of the earth if I have to! Do you hear me? To the ends of the earth!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14318,1,0,5,'culling SAY_PHASE503'),
- (26499,-1595120,'You performed well this day. Anything that Mal''Ganis has left behind is yours. Take it as your reward. I must now begin plans for an expedition to Northrend.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14319,0,0,5,'culling SAY_PHASE504'),
-
--- -1 599 000 HALLS OF STONE
-/* Maiden of Grief */
- (27975,-1599000,'You shouldn''t have come...now you will die!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,13487,1,0,0,'maiden of grief SAY_AGGRO'),
- (27975,-1599001,'Why must it be this way?',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,13488,1,0,0,'maiden of grief SAY_SLAY_1'),
- (27975,-1599002,'You had it coming!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,13489,1,0,0,'maiden of grief SAY_SLAY_2'),
- (27975,-1599003,'My burden grows heavier.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,13490,1,0,0,'maiden of grief SAY_SLAY_3'),
- (27975,-1599004,'This is your own fault!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,13491,1,0,0,'maiden of grief SAY_SLAY_4'),
- (27975,-1599005,'I hope you all rot! I never...wanted...this.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,13493,1,0,0,'maiden of grief SAY_DEATH'),
- (27975,-1599006,'So much lost time... that you''ll never get back!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,13492,1,0,0,'maiden of grief SAY_STUN'),
-/* Krystallus */
- (27977,-1599007,'Crush....',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14176,1,0,0,'krystallus SAY_AGGRO'),
- (27977,-1599008,'Ha...ha...ha...ha...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14177,1,0,0,'krystallus SAY_KILL'),
- (27977,-1599009,'Uuuuhhhhhhhhhh......',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14179,1,0,0,'krystallus SAY_DEATH'),
- (27977,-1599010,'Break.... you....',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14178,1,0,0,'krystallus SAY_SHATTER'),
-/* Sjonnir */
- (27978,-1599011,'Soft, vulnerable shells. Brief, fragile lives. You can not escape the curse of flesh!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14180,1,0,0,'Sjonnir SAY_AGGRO'),
- (27978,-1599012,'Flesh is no match for iron!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14182,1,0,0,'Sjonnir SAY_SLAY_1'),
- (27978,-1599013,'Armies of iron will smother the world!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14183,1,0,0,'Sjonnir SAY_SLAY_2'),
- (27978,-1599014,'Folvynn buul hrom onn!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'Sjonnir The Ironshaper SAY_SLAY_3'),
- (27978,-1599015,'Loken will not rest, until the forge is retaken. You changed nothing!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14184,1,0,0,'Sjonnir SAY_DEATH'),
-/* Brann and Tribunal Event */
- (28070,-1599016,'Now that''s owning your supper!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14244,1,0,0,'brann SAY_KILL_1'),
- (28070,-1599017,'Press on, that''s the way!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14245,1,0,0,'brann SAY_KILL_2'),
- (28070,-1599018,'Keep it up now. Plenty of death-dealing for everyone!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14246,1,0,0,'brann SAY_KILL_3'),
- (28070,-1599019,'I''m all kinds of busted up. Might not... make it...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14257,1,0,0,'brann SAY_LOW_HEALTH'),
- (28070,-1599020,'Not yet, not... yet-',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14258,1,0,0,'brann SAY_DEATH'),
- (28070,-1599021,'I''m doing everything I can!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14260,1,0,0,'brann SAY_PLAYER_DEATH_1'),
- (28070,-1599022,'Light preserve you!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14261,1,0,0,'brann SAY_PLAYER_DEATH_2'),
- (28070,-1599023,'I hope this is all worth it!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14262,1,0,0,'brann SAY_PLAYER_DEATH_3'),
- (28070,-1599024,'Time to get some answers! Let''s get this show on the road!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14259,1,0,0,'brann SAY_ESCORT_START'),
- (28070,-1599025,'Don''t worry. Old Brann has got your back. Keep that metal monstrosity busy and I''ll see if I can sweet talk this machine into helping you.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14274,1,0,0,'brann SAY_SPAWN_DWARF'),
- (28070,-1599026,'This is a wee bit trickier that before... Oh, bloody--incomin''!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14275,1,0,0,'brann SAY_SPAWN_TROGG'),
- (28070,-1599027,'What in the name o'' Madoran did THAT do? Oh! Wait: I just about got it...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14276,1,0,0,'brann SAY_SPAWN_OOZE'),
- (28070,-1599028,'Ha, that did it. Help''s a-coming. Take this you glow-eying brute!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14277,1,0,0,'brann SAY_SPAWN_EARTHEN'),
- (28070,-1599029,'Take a moment and relish this with me! Soon all will be revealed! Okay then, let''s do this!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14247,1,0,0,'brann SAY_EVENT_INTRO_1'),
- (28070,-1599030,'Now keep an eye out! I''ll have this licked in two shakes of a--',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14248,1,0,0,'brann SAY_EVENT_INTRO_2'),
- (28070,-1599031,'Warning! Life form pattern not recognized. Archival processing terminated. Continued interference will result in targeted response.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,13765,1,0,0,'brann SAY_EVENT_INTRO_3_ABED'),
- (28070,-1599032,'Oh, that doesn''t sound good. We might have a complication or two...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14249,1,0,0,'brann SAY_EVENT_A_1'),
- (28070,-1599033,'Security breach in progress. Analysis of historical archives transferred to lower priority queue. Countermeasures engaged.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,13756,1,0,0,'brann SAY_EVENT_A_2_KADD'),
- (28070,-1599034,'Ah, you want to play hardball, eh? That''s just my game!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14250,1,0,0,'brann SAY_EVENT_A_3'),
- (28070,-1599035,'Couple more minutes and I''ll--',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14251,1,0,0,'brann SAY_EVENT_B_1'),
- (28070,-1599036,'Threat index threshold exceeded. Celestial archive aborted. Security level heightened.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,13761,1,0,0,'brann SAY_EVENT_B_2_MARN'),
- (28070,-1599037,'Heightened? What''s the good news?',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14252,1,0,0,'brann SAY_EVENT_B_3'),
- (28070,-1599038,'So that was the problem? Now I''m makin'' progress...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14253,1,0,0,'brann SAY_EVENT_C_1'),
- (28070,-1599039,'Critical threat index. Void analysis diverted. Initiating sanitization protocol.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,13767,1,0,0,'brann SAY_EVENT_C_2_ABED'),
- (28070,-1599040,'Hang on! Nobody''s gonna'' be sanitized as long as I have a say in it!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14254,1,0,0,'brann SAY_EVENT_C_3'),
- (28070,-1599041,'Ha! The old magic fingers finally won through! Now let''s get down to-',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14255,1,0,0,'brann SAY_EVENT_D_1'),
- (28070,-1599042,'Alert! Security fail safes deactivated. Beginning memory purge...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,13768,1,0,0,'brann SAY_EVENT_D_2_ABED'),
- (28070,-1599043,'Purge? No no no no no! Where did I-- Aha, this should do the trick...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14256,1,0,0,'brann SAY_EVENT_D_3'),
- (28070,-1599044,'System online. Life form pattern recognized. Welcome Branbronzan. Query?',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,13769,1,0,0,'brann SAY_EVENT_D_4_ABED'),
- (28070,-1599045,'Query? What do you think I''m here for? Tea and biscuits? Spill the beans already!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14263,1,0,0,'brann SAY_EVENT_END_01'),
- (28070,-1599046,'Tell me how that dwarfs came to be! And start at the beginning!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14264,1,0,0,'brann SAY_EVENT_END_02'),
- (28070,-1599047,'Accessing prehistoric data. Retrieved. In the beginning Earthen were created to-',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,13770,1,0,0,'brann SAY_EVENT_END_03_ABED'),
- (28070,-1599048,'Right, right! I know that the Earthen were made of stone to shape the deep reaches of the world but what about the anomalies? Matrix non-stabilizing and whatnot.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14265,1,0,0,'brann SAY_EVENT_END_04'),
- (28070,-1599049,'Accessing. In the early stages of its development cycle Azeroth suffered infection by parasitic, necrophotic symbiotes.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,13771,1,0,0,'brann SAY_EVENT_END_05_ABED'),
- (28070,-1599050,'Necro-what? Speak bloody common will ya?',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14266,1,0,0,'brann SAY_EVENT_END_06'),
- (28070,-1599051,'Designation: Old Gods. Old Gods rendered all systems, including Earthen defenseless in order to facilitate assimilation. This matrix destabilization has been termed the Curse of Flesh. Effects of destabilization increased over time.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,13772,1,0,0,'brann SAY_EVENT_END_07_ABED'),
- (28070,-1599052,'Old Gods eh? So they zapped the Earthen with this Curse of Flesh. And then what?',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14267,1,0,0,'brann SAY_EVENT_END_08'),
- (28070,-1599053,'Accessing. Creators arrived to extirpate symbiotic infection. Assessment revealed that Old God infestation had grown malignant. Excising parasites would result in loss of host.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,13757,1,0,0,'brann SAY_EVENT_END_09_KADD'),
- (28070,-1599054,'If they killed the Old Gods Azeroth would have been destroyed.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14268,1,0,0,'brann SAY_EVENT_END_10'),
- (28070,-1599055,'Correct. Creators neutralized parasitic threat and contained it within the host. Forge of Wills and other systems were instituted to create new Earthen. Safeguards were implemented and protectors were appointed.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,13758,1,0,0,'brann SAY_EVENT_END_11_KADD'),
- (28070,-1599056,'What protectors?',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14269,1,0,0,'brann SAY_EVENT_END_12'),
- (28070,-1599057,'Designations: Aesir and Vanir or in common nomenclator Storm and Earth Giants. Sentinel Loken designated supreme. Dragon Aspects appointed to monitor evolution of Azeroth.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,13759,1,0,0,'brann SAY_EVENT_END_13_KADD'),
- (28070,-1599058,'Aesir and Vanir. Okay. So the Forge of Wills started to make new Earthen. But what happened to the old ones?',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14270,1,0,0,'brann SAY_EVENT_END_14'),
- (28070,-1599059,'Additional background is relevant to your query. Following global combat between-',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,13762,1,0,0,'brann SAY_EVENT_END_15_MARN'),
- (28070,-1599060,'Hold everything! The Aesir and Vanir went to war? Why?',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14271,1,0,0,'brann SAY_EVENT_END_16'),
- (28070,-1599061,'Unknown. Data suggests that impetus for global combat originated with prime designate Loken who neutralized all remaining Aesir and Vanir affecting termination of conflict. Prime designate Loken then initiated stasis of several seed races including Earthen, Giant and Vrykul at designated holding facilities.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,13763,1,0,0,'brann SAY_EVENT_END_17_MARN'),
- (28070,-1599062,'This Loken sounds like a nasty character. Glad we don''t have to worry about the likes of him anymore. So if I''m understanding you lads the original Earthen eventually woke up from this statis. And by that time this destabily-whatever had turned them into our brother dwarfs. Or at least dwarf ancestors. Hm?',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14272,1,0,0,'brann SAY_EVENT_END_18'),
- (28070,-1599063,'Essentially that is correct.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,13764,1,0,0,'brann SAY_EVENT_END_19_MARN'),
- (28070,-1599064,'Well now. That''s a lot to digest. I''m gonna need some time to take all of this in. Thank you!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14273,1,0,0,'brann SAY_EVENT_END_20'),
- (28070,-1599065,'Acknowledged Branbronzan. Session terminated.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,13773,1,0,0,'brann SAY_EVENT_END_21_ABED'),
- (28070,-1599066,'Loken?! That''s downright bothersome... We might''ve neutralized the iron dwarves, but I''d lay odds there''s another machine somewhere else churnin'' out a whole mess o'' these iron vrykul!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14278,1,0,0,'brann SAY_VICTORY_SJONNIR_1'),
- (28070,-1599067,'I''ll use the forge to make badtches o'' earthen to stand guard... But our greatest challenge still remains: find and stop Loken!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14279,1,0,0,'brann SAY_VICTORY_SJONNIR_2'),
- (28070,-1599068,'I think it''s time to see what''s behind the door near the entrance. I''m going to sneak over there, nice and quiet. Meet me at the door and I''ll get us in.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,0,0,'brann SAY_ENTRANCE_MEET'),
-
--- -1 600 000 DRAK'THARON KEEP
- (26631,-1600000,'The chill that you feel is the herald of your doom!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,13173,1,0,0,'novos SAY_AGGRO'),
- (26631,-1600001,'Such is the fate of all who oppose the Lich King.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,13175,1,0,0,'novos SAY_KILL'),
- (26631,-1600002,'Your efforts... are in vain.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,13174,1,0,0,'novos SAY_DEATH'),
- (26631,-1600003,'Bolster my defenses! Hurry, curse you!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,13176,1,0,0,'novos SAY_NECRO_ADD'),
- (26631,-1600004,'Surely you can see the futility of it all!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,13177,1,0,0,'novos SAY_REUBBLE_1'),
- (26631,-1600005,'Just give up and die already!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,13178,1,0,0,'novos SAY_REUBBLE_2'),
- (26630,-1600006,'More grunts, more glands, more FOOD!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,13181,1,0,0,'trollgore SAY_AGGRO'),
- (26630,-1600007,'You have gone, me gonna eat you!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,13185,1,0,0,'trollgore SAY_KILL'),
- (26630,-1600008,'So hungry! Must feed!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,13182,1,0,0,'trollgore SAY_CONSUME'),
- (26630,-1600009,'Corpse go boom!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,13184,1,0,0,'trollgore SAY_EXPLODE'),
- (26630,-1600010,'Aaaargh...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,13183,1,0,0,'trollgore SAY_DEATH'),
- (26632,-1600011,'Tharon''ja sees all! The work of mortals shall not end the eternal dynasty!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,13862,1,0,0,'tharon''ja SAY_AGGRO'),
- (26632,-1600012,'As Tharon''ja predicted.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,13863,1,0,0,'tharon''ja SAY_KILL_1'),
- (26632,-1600013,'As it was written.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,13864,1,0,0,'tharon''ja SAY_KILL_2'),
- (26632,-1600014,'Your flesh serves Tharon''ja now!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,13865,1,0,0,'tharon''ja SAY_FLESH_1'),
- (26632,-1600015,'Tharon''ja has a use for your mortal shell!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,13866,1,0,0,'tharon''ja SAY_FLESH_2'),
- (26632,-1600016,'No! A taste... all too brief!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,13867,1,0,0,'tharon''ja SAY_SKELETON_1'),
- (26632,-1600017,'Tharon''ja will have more!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,13868,1,0,0,'tharon''ja SAY_SKELETON_2'),
- (26632,-1600018,'I''m... impossible! Tharon''ja is eternal! Tharon''ja... is...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,13869,1,0,0,'tharon''ja SAY_DEATH'),
-
--- -1 601 000 AZJOL-NERUB
- (29120,-1601000,'Eternal aggony awaits you!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14054,1,0,0,''),
- (29120,-1601001,'Soon, the Master''s voice will call to you.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14057,1,0,0,''),
- (29120,-1601002,'You have made your choice.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14056,1,0,0,''),
- (29120,-1601003,'You shall experience my torment, first-hand!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14055,1,0,0,''),
- (29120,-1601004,'Ahhh... RAAAAAGH! Never thought... I would be free of him...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14069,1,0,0,''),
- (29120,-1601005,'Your armor is useless againts my locusts.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14060,1,0,0,''),
- (29120,-1601006,'Uunak-hissss tik-k-k-k-k!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14067,1,0,0,''),
- (29120,-1601007,'The pestilence upon you!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14068,1,0,0,''),
- (29120,-1601008,'Auum na-l ak-k-k-k, isshhh.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14058,1,0,0,''),
- (29120,-1601009,'Come forth my brethren! Feast on their flesh.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14059,1,0,0,''),
- (29120,-1601010,'I was king of this empire once\, long ago. In life I stood as champion. In death I returned as conqueror. Now I protect the kingdom once more. Ironic\, yes? ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14053,1,0,0,''),
- (28684,-1601011,'This kingdom belongs to the Scourge! Only the dead may enter.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14075,1,0,0,''),
- (28684,-1601012,'You were foolish to come.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14077,1,0,0,''),
- (28684,-1601013,'As Anub''Arak commands!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14078,1,0,0,''),
- (28684,-1601014,'I should be grateful. But I long ago lost the capacity.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14087,1,0,0,''),
- (28684,-1601015,'They hunger.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14085,1,0,0,''),
- (28684,-1601016,'Dinner time\, my pets.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14086,1,0,0,''),
- (28684,-1601017,'Keep an eye on the tunnel. We must not let anyone through!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14082,1,0,0,''),
- (28684,-1601018,'I hear footsteps. Be on your guard.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14083,1,0,0,''),
- (28684,-1601019,'I sense the living. Be ready.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14084,1,0,0,''),
- (28684,-1601020,'We are besieged. Strike out and bring back their corpses!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14079,1,0,0,''),
- (28684,-1601021,'We must hold the gate. Attack! Tear them limb from limb!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14080,1,0,0,''),
- (28684,-1601022,'The gate must be protected at all costs. Rip them to shreds!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14081,1,0,0,''),
-
--- -1 602 000 HALLS OF LIGHTNING
-/* Bjarngrim */
- (28586,-1602000,'I am the greatest of my father''s sons! Your end has come!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14149,1,0,0,'bjarngrim SAY_AGGRO'),
- (28586,-1602001,'So ends your curse!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14153,1,0,0,'bjarngrim SAY_SLAY_1'),
- (28586,-1602002,'Flesh... is... weak!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14154,1,0,0,'bjarngrim SAY_SLAY_2'),
- (28586,-1602003,'...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14155,1,0,0,'bjarngrim SAY_SLAY_3'),
- (28586,-1602004,'How can it be...? Flesh is not... stronger!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14156,1,0,0,'bjarngrim SAY_DEATH'),
- (28586,-1602005,'Defend yourself, for all the good it will do!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14151,1,0,0,'bjarngrim SAY_BATTLE_STANCE'),
- (28586,-1602006,'%s switches to Battle Stance!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,3,0,0,'bjarngrim EMOTE_BATTLE_STANCE'),
- (28586,-1602007,'GRAAAAAH! Behold the fury of iron and steel!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14152,1,0,0,'bjarngrim SAY_BERSEKER_STANCE'),
- (28586,-1602008,'%s switches to Berserker Stance!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,3,0,0,'bjarngrim EMOTE_BERSEKER_STANCE'),
- (28586,-1602009,'Give me your worst!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14150,1,0,0,'bjarngrim SAY_DEFENSIVE_STANCE'),
- (28586,-1602010,'%s switches to Defensive Stance!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,3,0,0,'bjarngrim EMOTE_DEFENSIVE_STANCE'),
- (28546,-1602011,'You wish to confront the master? You must weather the storm!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14453,1,0,0,'ionar SAY_AGGRO'),
- (28546,-1602012,'Shocking ... I know!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14456,1,0,0,'ionar SAY_SLAY_1'),
- (28546,-1602013,'You atempt the unpossible.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14457,1,0,0,'ionar SAY_SLAY_2'),
- (28546,-1602014,'Your spark of light is ... extinguish.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14458,1,0,0,'ionar SAY_SLAY_3'),
- (28546,-1602015,'Master... you have guests.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14459,1,0,0,'ionar SAY_DEATH'),
- (28546,-1602016,'The slightest spark shall be your undoing.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14454,1,0,0,'ionar SAY_SPLIT_1'),
- (28546,-1602017,'No one is safe!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14455,1,0,0,'ionar SAY_SPLIT_2'),
- (28923,-1602018,'What hope is there for you? None!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14162,1,0,0,'loken SAY_AGGRO0'),
- (28923,-1602019,'I have witnessed the rise and fall of empires. The birth and extinction of entire species. Over countless millennia the foolishness of mortals has remained beyond a constant. Your presence here confirms this.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14160,1,0,0,'loken SAY_INTRO_1'),
- (28923,-1602020,'My master has shown me the future, and you have no place in it. Azeroth will be reborn in darkness. Yogg-Saron shall be released! The Pantheon shall fall!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14162,1,0,0,'loken SAY_INTRO_2'),
- (28923,-1602021,'Only mortal...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14166,1,0,0,'loken SAY_SLAY_1'),
- (28923,-1602022,'I... am... FOREVER!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14167,1,0,0,'loken SAY_SLAY_2'),
- (28923,-1602023,'What little time you had, you wasted!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14168,1,0,0,'loken SAY_SLAY_3'),
- (28923,-1602024,'My death... heralds the end of this world.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14172,1,0,0,'loken SAY_DEATH'),
- (28923,-1602025,'You cannot hide from fate!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14163,1,0,0,'loken SAY_NOVA_1'),
- (28923,-1602026,'Come closer. I will make it quick.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14164,1,0,0,'loken SAY_NOVA_2'),
- (28923,-1602027,'Your flesh cannot hold out for long.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14165,1,0,0,'loken SAY_NOVA_3'),
- (28923,-1602028,'You stare blindly into the abyss!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14169,1,0,0,'loken SAY_75HEALTH'),
- (28923,-1602029,'Your ignorance is profound. Can you not see where this path leads?',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14170,1,0,0,'loken SAY_50HEALTH'),
- (28923,-1602030,'You cross the precipice of oblivion!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14171,1,0,0,'loken SAY_25HEALTH'),
- (28923,-1602031,'%s begins to cast Lightning Nova!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,3,0,0,'loken EMOTE_NOVA'),
- (28587,-1602032,'It is you who have destroyed my children? You... shall... pay!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,13960,1,0,0,'volkhan SAY_AGGRO'),
- (28587,-1602033,'The armies of iron will conquer all!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,13965,1,0,0,'volkhan SAY_SLAY_1'),
- (28587,-1602034,'Ha, pathetic!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,13966,1,0,0,'volkhan SAY_SLAY_2'),
- (28587,-1602035,'You have cost me too much work!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,13967,1,0,0,'volkhan SAY_SLAY_3'),
- (28587,-1602036,'The master was right... to be concerned.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,13968,1,0,0,'volkhan SAY_DEATH'),
- (28587,-1602037,'I will crush you beneath my boots!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,13963,1,0,0,'volkhan SAY_STOMP_1'),
- (28587,-1602038,'All my work... undone!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,13964,1,0,0,'volkhan SAY_STOMP_2'),
- (28587,-1602039,'Life from the lifelessness... death for you.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,13961,1,0,0,'volkhan SAY_FORGE_1'),
- (28587,-1602040,'Nothing is wasted in the process. You will see....',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,13962,1,0,0,'volkhan SAY_FORGE_2'),
- (28587,-1602041,'%s runs to his anvil!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,3,0,0,'volkhan EMOTE_TO_ANVIL'),
- (28587,-1602042,'%s prepares to shatter his Brittle Golems!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,3,0,0,'volkhan EMOTE_SHATTER'),
-
--- -1 603 000 ULDUAR
--- Algalon
- (32871,-1603000,'Your actions are illogical. All possible results for this encounter have been calculated. The Pantheon will receive the Observer''s message regardless of outcome.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,15386,1,0,0,'algalon SAY_AGGRO'),
- (32871,-1603001,'Loss of life, unavoidable.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,15387,1,0,0,'algalon SAY_SLAY_1'),
- (32871,-1603002,'I do what I must.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,15388,1,0,0,'algalon SAY_SLAY_2'),
- (32871,-1603003,'See your world through my eyes: A universe so vast as to be immeasurable - incomprehensible even to your greatest minds.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,15390,1,0,0,'algalon SAY_ENGADED_FOR_FIRTS_TIME'),
- (32871,-1603004,'Beware!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,15391,1,0,0,'algalon SAY_PHASE_2'),
- (32871,-1603005,'The stars come to my aid.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,15392,1,0,0,'algalon SAY_SUMMON_COLLAPSING_STAR'),
- (32871,-1603006,'I have seen worlds bathed in the Makers'' flames. Their denizens fading without so much as a whimper. Entire planetary systems born and raised in the time that it takes your mortal hearts to beat once. Yet all throughout, my own heart, devoid of emotion... of empathy. I... have... felt... NOTHING! A million, million lives wasted. Had they all held within them your tenacity? Had they all loved life as you do?',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,15393,1,0,0,'algalon SAY_DEATH_1'),
- (32871,-1603007,'Perhaps it is your imperfection that which grants you free will. That allows you to persevere against cosmically calculated odds. You prevailed where the Titans'' own perfect creations have failed.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,15401,1,0,0,'algalon SAY_DEATH_2'),
- (32871,-1603008,'I''ve rearranged the reply code. Your planet will be spared. I cannot be certain of my own calculations anymore.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,15402,1,0,0,'algalon SAY_DEATH_3'),
- (32871,-1603009,'I lack the strength to transmit the signal. You must hurry. Find a place of power close to the skies.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,15403,1,0,0,'algalon SAY_DEATH_4'),
- (32871,-1603010,'Do not worry about my fate $N. If the signal is not transmitted in time re-origination will proceed regardless. Save. Your. World.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,15404,1,0,0,'algalon SAY_DEATH_5'),
- (32871,-1603011,'You are... out of time.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,15394,1,0,0,'algalon SAY_BERSERK'),
- (32871,-1603012,'Witness the fury of cosmos!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,15396,1,0,0,'algalon SAY_BIGBANG_1'),
- (32871,-1603013,'Behold the tools of creation!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,15397,1,0,0,'algalon SAY_BIGBANG_2'),
- (32871,-1603014,'Analysis complete. There is partial corruption in the planet''s life-support systems as well as complete corruption in most of the planet''s defense mechanisms.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,15398,1,0,0,'algalon SAY_TIMER_1'),
- (32871,-1603015,'Begin uplink: Reply Code: ''Omega''. Planetary re-origination requested.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,15399,1,0,0,'algalon SAY_TIMER_2'),
- (32871,-1603016,'Farewell, mortals. Your bravery is admirable, for such flawed creatures.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,15400,1,0,0,'algalon SAY_TIMER_3'),
- (32871,-1603017,'Trans-location complete. Commencing planetary analysis of Azeroth.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,15405,1,0,0,'algalon SAY_SUMMON_1'),
- (32871,-1603018,'Stand back, mortals. I am not here to fight you.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,15406,1,0,0,'algalon SAY_SUMMON_2'),
- (32871,-1603019,'It is in the universe''s best interest to re-originate this planet should my analysis find systemic corruption. Do not interfere.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,15407,1,0,0,'algalon SAY_SUMMON_3'),
-
--- Assembly of Iron - Stellbreaker
- (32867,-1603020,'You will not defeat the Assembly of Iron so easily, invaders!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,15674,1,0,0,'steelbreaker SAY_AGGRO'),
- (32867,-1603021,'So fragile and weak!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,15675,1,0,0,'steelbreaker SAY_SLAY_1'),
- (32867,-1603022,'Flesh... such a hindrance.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,15676,1,0,0,'steelbreaker SAY_SLAY_2'),
- (32867,-1603023,'You seek the secrets of Ulduar? Then take them!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,15677,1,0,0,'steelbreaker SAY_POWER'),
- (32867,-1603024,'My death only serves to hasten your demise.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,15678,1,0,0,'steelbreaker SAY_DEATH_1'),
- (32867,-1603025,'Impossible!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,15679,1,0,0,'steelbreaker SAY_DEATH_2'),
- (32867,-1603026,'This meeting of the Assembly of Iron is adjourned!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,15680,1,0,0,'steelbreaker SAY_BERSERK'),
-
--- Assembly of Iron - Runemaster Molgeim
- (32927,-1603030,'Nothing short of total decimation will suffice.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,15657,1,0,0,'Molgeim SAY_AGGRO'),
- (32927,-1603031,'The world suffers yet another insignificant loss.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,15658,1,0,0,'Molgeim SAY_SLAY_1'),
- (32927,-1603032,'Death is the price of your arrogance.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,15659,1,0,0,'Molgeim SAY_SLAY_2'),
- (32927,-1603033,'Decipher this!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,15660,1,0,0,'Molgeim SAY_RUNE_DEATH'),
- (32927,-1603034,'Face the lightning surge!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,15661,1,0,0,'Molgeim SAY_SUMMON'),
- (32927,-1603035,'The legacy of storms shall not be undone.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,15662,1,0,0,'Molgeim SAY_DEATH_1'),
- (32927,-1603036,'What have you gained from my defeat? You are no less doomed, mortals!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,15663,1,0,0,'Molgeim SAY_DEATH_2'),
- (32927,-1603037,'This meeting of the Assembly of Iron is adjourned!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,15664,1,0,0,'Molgeim SAY_BERSERK'),
-
--- Assembly of Iron - Stormcaller Brundir
- (32857,-1603040,'Whether the world''s greatest gnats or the world''s greatest heroes, you''re still only mortal!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,15684,1,0,0,'Brundir SAY_AGGRO'),
- (32857,-1603041,'A merciful kill!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,15685,1,0,0,'Brundir SAY_SLAY_1'),
- (32857,-1603042,'HAH!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,15686,1,0,0,'Brundir SAY_SLAY_2'),
- (32857,-1603043,'Stand still and stare into the light!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,15687,1,0,0,'Brundir SAY_SPECIAL'),
- (32857,-1603044,'Let the storm clouds rise and rain down death from above!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,15688,1,0,0,'Brundir SAY_FLIGHT'),
- (32857,-1603045,'The power of the storm lives on...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,15689,1,0,0,'Brundir SAY_DEATH_1'),
- (32857,-1603046,'You rush headlong into the maw of madness!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,15690,1,0,0,'Brundir SAY_DEATH_2'),
- (32857,-1603047,'This meeting of the Assembly of Iron is adjourned!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,15691,1,0,0,'Brundir SAY_BERSERK'),
-
--- Auriaya
- (33515,-1603050,'Some things are better left alone!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,15473,1,0,0,'Auriaya SAY_AGGRO'),
- (33515,-1603051,'The secret dies with you!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,15474,1,0,0,'Auriaya SAY_SLAY_1'),
- (33515,-1603052,'There is no escape!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,15475,1,0,0,'Auriaya SAY_SLAY_2'),
- (33515,-1603053,'Auriaya screams in agony.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,6,0,15476,'Auriaya SAY_DEATH'),
- (33515,-1603054,'You waste my time!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,15477,1,0,0,'Auriaya SAY_BERSERK'),
- (33515,-1603055,'Auriaya begins to cast Terrifying Screech.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,3,0,0,'Auriaya - EMOTE_FEAR'),
- (33515,-1603056,'Auriaya begins to activate the Feral Defender!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,3,0,0,'Auriaya - EMOTE_DEFENDER'),
-
--- Flame Leviathan
- (33113,-1603060,'Hostile entities detected. Threat assessment protocol active. Primary target engaged. Time minus thirty seconds to re-evaluation.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,15506,1,0,0,'Flame Leviathan SAY_AGGRO'),
- (33113,-1603061,'Threat assessment routine modified. Current target threat level: zero. Acquiring new target.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,15521,1,0,0,'Flame Leviathan SAY_SLAY'),
- (33113,-1603062,'Total systems failure. Defense protocols breached. Leviathan Unit shutting down.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,15520,1,0,0,'Flame Leviathan SAY_DEATH'),
- (33113,-1603063,'Threat re-evaluated. Target assessment complete. Changing course.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,15507,1,0,0,'Flame Leviathan SAY_TARGET_1'),
- (33113,-1603064,'Pursuit objective modified. Changing course.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,15508,1,0,0,'Flame Leviathan SAY_TARGET_2'),
- (33113,-1603065,'Hostile entity stratagem predicted. Rerouting battle function. Changing course.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,15509,1,0,0,'Flame Leviathan SAY_TARGET_3'),
- (33113,-1603066,'Orbital countermeasures enabled.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,15510,1,0,0,'Flame Leviathan SAY_HARDMODE'),
- (33113,-1603067,'Alert! Static defense system failure. Orbital countermeasures disabled.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,15511,1,0,0,'Flame Leviathan SAY_TOWER_NONE'),
- (33113,-1603068,'''Hodir''s Fury'' online. Acquiring target.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,15512,1,0,0,'Flame Leviathan SAY_TOWER_FROST'),
- (33113,-1603069,'''Mimiron''s Inferno'' online. Acquiring target.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,15513,1,0,0,'Flame Leviathan SAY_TOWER_FLAME'),
- (33113,-1603070,'''Freya''s Ward'' online. Acquiring target.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,15514,1,0,0,'Flame Leviathan SAY_TOWER_NATURE'),
- (33113,-1603071,'''Thorim''s Hammer'' online. Acquiring target.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,15515,1,0,0,'Flame Leviathan SAY_TOWER_STORM'),
- (33113,-1603072,'Unauthorized entity attempting circuit overload. Activating anti-personnel countermeasures.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,15516,1,0,0,'Flame Leviathan SAY_PLAYER_RIDING'),
- (33113,-1603073,'System malfunction. Diverting power to support systems.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,15517,1,0,0,'Flame Leviathan SAY_OVERLOAD_1'),
- (33113,-1603074,'Combat matrix overload. Powering do-o-o-own...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,15518,1,0,0,'Flame Leviathan SAY_OVERLOAD_2'),
- (33113,-1603075,'System restart required. Deactivating weapon systems.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,15519,1,0,0,'Flame Leviathan SAY_OVERLOAD_3'),
- -- reserve 1603076-1603179 to implement other texts related to flame leviathan encounter
-
--- Freya
- (32906,-1603180,'The Conservatory must be protected!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,15526,1,0,0,'Freya SAY_AGGRO'),
- (32906,-1603181,'Elders, grant me your strength!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,15527,1,0,0,'Freya SAY_AGGRO_WITH_ELDER'),
- (32906,-1603182,'Forgive me.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,15529,1,0,0,'Freya SAY_SLAY_1'),
- (32906,-1603183,'From your death springs life anew!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,15530,1,0,0,'Freya SAY_SLAY_2'),
- (32906,-1603184,'His hold on me dissipates. I can see clearly once more. Thank you, heroes.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,15531,1,0,0,'Freya SAY_DEATH'),
- (32906,-1603185,'You have strayed too far, wasted too much time!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,15532,1,0,0,'Freya SAY_BERSERK'),
- (32906,-1603186,'Eonar, your servant requires aid!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,15528,1,0,0,'Freya SAY_SUMMON_CONSERVATOR'),
- (32906,-1603187,'Children, assist me!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,15533,1,0,0,'Freya SAY_SUMMON_TRIO'),
- (32906,-1603188,'The swarm of the elements shall overtake you!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,15534,1,0,0,'Freya SAY_SUMMON_LASHERS'),
- (32906,-1603189,'Eonar, your servant calls for your blessing!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,15535,1,0,0,'Freya SAY_YS_HELP'),
-
--- Elder Brightleaf
- (32915,-1603190,'Matron, the Conservatory has been breached!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,15483,1,0,0,'Elder Brightleaf SAY_AGGRO'),
- (32915,-1603191,'Fertilizer.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,15485,1,0,0,'Elder Brightleaf SAY_SLAY_1'),
- (32915,-1603192,'Your corpse will nourish the soil!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,15486,1,0,0,'Elder Brightleaf SAY_SLAY_2'),
- (32915,-1603193,'Matron, one has fallen!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,15487,1,0,0,'Elder Brightleaf SAY_DEATH'),
-
--- Elder Ironbranch
- (32913,-1603194,'Mortals have no place here!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,15493,1,0,0,'Elder Ironbranch SAY_AGGRO'),
- (32913,-1603195,'I return you whence you came!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,15494,1,0,0,'Elder Ironbranch SAY_SLAY_1'),
- (32913,-1603196,'BEGONE!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,15495,1,0,0,'Elder Ironbranch SAY_SLAY_2'),
- (32913,-1603197,'Freya! They come for you.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,15496,1,0,0,'Elder Ironbranch SAY_DEATH'),
-
--- Elder Stonebark
- (32914,-1603198,'This place will serve as your graveyard.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,15500,1,0,0,'Elder Stonebark SAY_AGGRO'),
- (32914,-1603199,'<Angry roar>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,15501,1,0,0,'Elder Stonebark SAY_SLAY_1'),
- (32914,-1603200,'Such a waste.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,15502,1,0,0,'Elder Stonebark SAY_SLAY_2'),
- (32914,-1603201,'Matron, flee! They are ruthless....',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,15503,1,0,0,'Elder Stonebark SAY_DEATH'),
-
--- Hodir
- (32845,-1603209,'Hodir begins to cast Flash Freeze!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,3,0,0,'Hodir - EMOTE_FREEZE'),
- (32845,-1603210,'You will suffer for this trespass!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,15552,1,0,0,'Hodir SAY_AGGRO'),
- (32845,-1603211,'Tragic. To come so far, only to fail.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,15553,1,0,0,'Hodir SAY_SLAY_1'),
- (32845,-1603212,'Welcome to the endless winter.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,15554,1,0,0,'Hodir SAY_SLAY_2'),
- (32845,-1603213,'Winds of the north consume you!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,15555,1,0,0,'Hodir SAY_FLASH_FREEZE'),
- (32845,-1603214,'Hodir roars furious.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,15556,6,0,0,'Hodir SAY_STALACTITE'),
- (32845,-1603215,'I... I am released from his grasp... at last.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,15557,1,0,0,'Hodir SAY_DEATH'),
- (32845,-1603216,'Enough! This ends now!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,15558,1,0,0,'Hodir SAY_BERSERK'),
- (32845,-1603217,'The veil of winter will protect you, champions!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,15559,1,0,0,'Hodir SAY_YS_HELP'),
- (32845,-1603218,'Hodir shatters the Rare Cache of Hodir!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,6,0,0,'Hodir SAY_HARD_MODE_MISSED'),
- (32845,-1603219,'Hodir gains Frozen Blows!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,3,0,0,'Hodir - EMOTE_BLOW'),
-
--- Ignis
- (33118,-1603220,'Insolent whelps! Your blood will temper the weapons used to reclaim this world!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,15564,1,0,0,'Ignis SAY_AGGRO'),
- (33118,-1603221,'More scraps for the scrapheap!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,15569,1,0,0,'Ignis SAY_SLAY_1'),
- (33118,-1603222,'Your bones will serve as kindling!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,15570,1,0,0,'Ignis SAY_SLAY_2'),
- (33118,-1603223,'I. Have. Failed.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,15572,1,0,0,'Ignis SAY_DEATH'),
- (33118,-1603224,'Arise, soldiers of the Iron Crucible! The Makers'' will be done!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,15565,1,0,0,'Ignis SAY_SUMMON'),
- (33118,-1603225,'I will burn away your impurities!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,15566,1,0,0,'Ignis SAY_SLAG_POT'),
- (33118,-1603226,'Let the inferno consume you!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,15567,1,0,0,'Ignis SAY_SCORCH_1'),
- (33118,-1603227,'BURN! Burn in the makers fire!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,15568,1,0,0,'Ignis SAY_SCORCH_2'),
- (33118,-1603228,'Let it be finished!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,15571,1,0,0,'Ignis SAY_BERSERK'),
- (33118,-1603229,'Ignis the Furnace Master begins to cast Flame Jets!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,3,0,0,'IGNIS EMOTE_JETS'),
-
--- Kologarn
- (32930,-1603230,'None shall pass!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,15586,1,0,0,'Kologarn SAY_AGGRO'),
- (32930,-1603231,'KOL-THARISH!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,15587,1,0,0,'Kologarn SAY_SLAY_1'),
- (32930,-1603232,'YOU FAIL!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,15588,1,0,0,'Kologarn SAY_SLAY_2'),
- (32930,-1603233,'Just a scratch!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,15589,1,0,0,'Kologarn SAY_LEFT_ARM_GONE'),
- (32930,-1603234,'Only a flesh wound!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,15590,1,0,0,'Kologarn SAY_RIGHT_ARM_GONE'),
- (32930,-1603235,'OBLIVION!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,15591,1,0,0,'Kologarn SAY_SHOCKWAVE'),
- (32930,-1603236,'I will squeeze the life from you!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,15592,1,0,0,'Kologarn SAY_GRAB_PLAYER'),
- (32930,-1603237,'Master, they come...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,15593,1,0,0,'Kologarn SAY_DEATH'),
- (32930,-1603238,'I am invincible!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,15594,1,0,0,'Kologarn SAY_BERSERK'),
-
--- Mimiron
- (33350,-1603240,'Oh, my! I wasn''t expecting company! The workshop is such a mess! How embarrassing!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,15611,1,0,0,'Mimiron SAY_AGGRO'),
- (33350,-1603241,'Now why would you go and do something like that? Didn''t you see the sign that said ''DO NOT PUSH THIS BUTTON!''? How will we finish testing with the self-destruct mechanism active?',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,15629,1,0,0,'Mimiron SAY_HARDMODE_ON'),
- (33350,-1603242,'We haven''t much time, friends! You''re going to help me test out my latest and greatest creation. Now, before you change your minds, remember, that you kind of owe it to me after the mess you made with the XT-002.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,15612,1,0,0,'Mimiron SAY_MKII_ACTIVATE'),
- (33350,-1603243,'MEDIC!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,15613,1,0,0,'Mimiron SAY_MKII_SLAY_1'),
- (33350,-1603244,'I can fix that... or, maybe not! Sheesh, what a mess...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,15614,1,0,0,'Mimiron SAY_MKII_SLAY_2'),
- (33350,-1603245,'WONDERFUL! Positively marvelous results! Hull integrity at 98.9 percent! Barely a dent! Moving right along.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,15615,1,0,0,'Mimiron SAY_MKII_DEATH'),
- (33350,-1603246,'Behold the VX-001 Anti-personnel Assault Cannon! You might want to take cover.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,15616,1,0,0,'Mimiron SAY_VX001_ACTIVATE'),
- (33350,-1603247,'Fascinating. I think they call that a "clean kill".',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,15617,1,0,0,'Mimiron SAY_VX001_SLAY_1'),
- (33350,-1603248,'Note to self: Cannon highly effective against flesh.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,15618,1,0,0,'Mimiron SAY_VX001_SLAY_2'),
- (33350,-1603249,'Thank you, friends! Your efforts have yielded some fantastic data! Now, where did I put-- oh, there it is!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,15619,1,0,0,'Mimiron SAY_VX001_DEATH'),
- (33350,-1603250,'Isn''t it beautiful? I call it the magnificent aerial command unit!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,15620,1,0,0,'Mimiron SAY_AERIAL_ACTIVATE'),
- (33350,-1603251,'Outplayed!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,15621,1,0,0,'Mimiron SAY_AERIAL_SLAY_1'),
- (33350,-1603252,'You can do better than that!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,15622,1,0,0,'Mimiron SAY_AERIAL_SLAY_2'),
- (33350,-1603253,'Preliminary testing phase complete. Now comes the true test!!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,15623,1,0,0,'Mimiron SAY_AERIAL_DEATH'),
- (33350,-1603254,'Gaze upon its magnificence! Bask in its glorious, um, glory! I present you... V-07-TR-0N!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,15624,1,0,0,'Mimiron SAY_V07TRON_ACTIVATE'),
- (33350,-1603255,'Prognosis: Negative!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,15625,1,0,0,'Mimiron SAY_V07TRON_SLAY_1'),
- (33350,-1603256,'You''re not going to get up from that one, friend.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,15626,1,0,0,'Mimiron SAY_V07TRON_SLAY_2'),
- (33350,-1603257,'It would appear that I''ve made a slight miscalculation. I allowed my mind to be corrupted by the fiend in the prison, overriding my primary directive. All systems seem to be functional now. Clear.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,15627,1,0,0,'Mimiron SAY_V07TRON_DEATH'),
- (33350,-1603258,'Oh, my! It would seem that we are out of time, my friends!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,15628,1,0,0,'Mimiron SAY_BERSERK'),
- (33350,-1603259,'Combat matrix enhanced. Behold wonderous rapidity!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,15630,1,0,0,'Mimiron SAY_YS_HELP'),
-
--- Razorscale encounter
-
- (33186,-1603268, 'Razorscale grounded permanently!', NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,2,0,0, 'EMOTE_PERMA'),
- (33186,-1603267, 'Razorscale takes a deep breath...', NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,2,0,0, 'EMOTE_BREATH'),
- (33287,-1603266, 'Harpoon Turret is ready for use!', NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,2,0,0, 'EMOTE_HARPOON'),
- (33287,-1603265, 'Fires out! Let''s rebuild those turrets!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,0,0, 'SAY_TURRETS'),
- (33287,-1603264, 'Ready to move out, keep those dwarves off of our backs!', NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,0,0, 'SAY_AGGRO_3'),
- (33287,-1603263, 'Be on the lookout! Mole machines will be surfacing soon with those nasty Iron dwarves aboard!', NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,0,0, 'SAY_AGGRO_2'),
- (33287,-1603262, 'Give us a moment to prepare to build the turrets.', NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,0,0, 'SAY_AGGRO_1'),
- (33210,-1603260, 'Welcome, champions! All of our attempts at grounding her have failed. We could use a hand in bring her down with these harpoon guns.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,15647,0,0,0,'Exp. Commander SAY_INTRO'),
- (33210,-1603261, 'Move! Quickly! She won''t remain grounded for long.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,15648,1,0,0,'Exp. Commander SAY_GROUND'),
-
--- Thorim
- (33413,-1603270,'Interlopers! You mortals who dare to interfere with my sport will pay... Wait--you...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,15733,1,0,0,'Thorim SAY_AGGRO_1'),
- (33413,-1603271,'I remember you... In the mountains... But you... what is this? Where am--',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,15734,1,0,0,'Thorim SAY_AGGRO_2'),
- (33413,-1603272,'Behold the power of the storms and despair!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,15735,1,0,0,'Thorim SAY_SPECIAL_1'),
- (33413,-1603273,'Do not hold back! Destroy them!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,15736,1,0,0,'Thorim SAY_SPECIAL_2'),
- (33413,-1603274,'Have you begun to regret your intrusion?',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,15737,1,0,0,'Thorim SAY_SPECIAL_3'),
- (33413,-1603275,'Impertinent whelps! You dare challenge me atop my pedestal! I will crush you myself!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,15738,1,0,0,'Thorim SAY_JUMPDOWN'),
- (33413,-1603276,'Can''t you at least put up a fight!?',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,15739,1,0,0,'Thorim SAY_SLAY_1'),
- (33413,-1603277,'Pathetic!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,15740,1,0,0,'Thorim SAY_SLAY_2'),
- (33413,-1603278,'My patience has reached its limit!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,15741,1,0,0,'Thorim SAY_BERSERK'),
- (33413,-1603279,'Failures! Weaklings!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,15742,1,0,0,'Thorim SAY_WIPE'),
- (33413,-1603280,'Stay your arms! I yield!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,15743,1,0,0,'Thorim SAY_DEATH'),
- (33413,-1603281,'I feel as though I am awakening from a nightmare, but the shadows in this place yet linger.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,15744,1,0,0,'Thorim SAY_END_NORMAL_1'),
- (33413,-1603282,'Sif... was Sif here? Impossible--she died by my brother''s hand. A dark nightmare indeed....',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,15745,1,0,0,'Thorim SAY_END_NORMAL_2'),
- (33413,-1603283,'I need time to reflect.... I will aid your cause if you should require it. I owe you at least that much. Farewell.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,15746,1,0,0,'Thorim SAY_END_NORMAL_3'),
- (33413,-1603284,'You! Fiend! You are not my beloved! Be gone!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,15747,1,0,0,'Thorim SAY_END_HARD_1'),
- (33413,-1603285,'Behold the hand behind all the evil that has befallen Ulduar! Left my kingdom in ruins, corrupted my brother and slain my wife!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,15748,1,0,0,'Thorim SAY_END_HARD_2'),
- (33413,-1603286,'And now it falls to you, champions, to avenge us all! The task before you is great, but I will lend you my aid as I am able. You must prevail!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,15749,1,0,0,'Thorim SAY_END_HARD_3'),
- (33413,-1603287,'Golganneth, lend me your strengh! Grant my mortal allies the power of thunder!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,15750,1,0,0,'Thorim SAY_YS_HELP'),
-
--- General Vezax
- (33271,-1603289,'A cloud of saronite vapors coalesces nearby!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,3,0,0,'General Vezax - Emote1'),
- (33271,-1603290,'Your destruction will herald a new age of suffering!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,15542,1,0,0,'Vezax SAY_AGGRO'),
- (33271,-1603291,'You thought to stand before the legions of death... and survive?',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,15543,1,0,0,'Vezax SAY_SLAY_1'),
- (33271,-1603292,'Defiance... a flaw of mortality.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,15544,1,0,0,'Vezax SAY_SLAY_2'),
- (33271,-1603293,'The black blood of Yogg-Saron courses through me! I. AM. UNSTOPPABLE!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,15545,1,0,0,'Vezax SAY_SURGE_DARKNESS'),
- (33271,-1603294,'Oh, what horrors await....',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,15546,1,0,0,'Vezax SAY_DEATH'),
- (33271,-1603295,'Your defeat was inevitable!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,15547,1,0,0,'Vezax SAY_BERSERK'),
- (33271,-1603296,'Behold, now! Terror, absolute!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,15548,1,0,0,'Vezax SAY_HARDMODE_ON'),
- (33271,-1603297,'The saronite vapors mass and swirl violently, merging into a monstrous form!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,3,0,0,'General Vezax - Emote2'),
- (33271,-1603298,'A saronite barrier appears around General Vezax!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,3,0,0,'General Vezax - Emote3'),
- (33271,-1603299,'General Vezax roars and surges with dark might!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,3,0,0,'General Vezax - Emote4'),
-
--- XT002
- (33293,-1603300,'New toys? For me? I promise I won''t break them this time!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,15724,1,0,0,'XT002 SAY_AGGRO'),
- (33293,-1603301,'So tired. I will rest for just a moment!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,15725,1,0,0,'XT002 SAY_HEART_OPENED'),
- (33293,-1603302,'I''m ready to play!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,15726,1,0,0,'XT002 SAY_HEART_CLOSED'),
- (33293,-1603303,'NO! NO! NO! NO! NO!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,15727,1,0,0,'XT002 SAY_TYMPANIC_TANTRUM'),
- (33293,-1603304,'I... I think I broke it.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,15728,1,0,0,'XT002 SAY_SLAY_1'),
- (33293,-1603305,'I guess it doesn''t bend that way.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,15729,1,0,0,'XT002 SAY_SLAY_2'),
- (33293,-1603306,'I''m tired of these toys. I don''t want to play anymore!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,15730,1,0,0,'XT002 SAY_BERSERK'),
- (33293,-1603307,'You are bad... Toys... Very... Baaaaad!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,15731,1,0,0,'XT002 SAY_DEATH'),
- (33293,-1603308,'Time for a new game! My old toys will fight my new toys!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,15732,1,0,0,'XT002 SAY_SUMMON'),
-
--- Sara (YS)
- (33134,-1603310,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,15771,1,0,0,'Sara SAY_PREFIGHT_1'),
- (33134,-1603311,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,15772,1,0,0,'Sara SAY_PREFIGHT_2'),
- (33134,-1603312,'The time to strike at the head of the beast will soon be upon us! Focus your anger and hatred on his minions!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,15775,1,0,0,'Sara SAY_AGGRO_1'),
- (33134,-1603313,'Yes! YES! Show them no mercy! Give no pause to your attacks!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,15773,1,0,0,'Sara SAY_AGGRO_2'),
- (33134,-1603314,'Let hatred and rage guide your blows!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,15774,1,0,0,'Sara SAY_AGGRO_3'),
- (33134,-1603315,'Powerless to act...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,15778,1,0,0,'Sara SAY_SLAY_1'),
- (33134,-1603316,'Could they have been saved?',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,15779,1,0,0,'Sara SAY_SLAY_2'),
- (33134,-1603317,'Weak-minded fools!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,15780,5,0,0,'Sara WHISP_INSANITY'),
- (33134,-1603318,'Suffocate upon your own hate!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,15776,1,0,0,'Sara SAY_PHASE2_1'),
- (33134,-1603319,'Tremble, mortals, before the coming of the end!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,15777,1,0,0,'Sara SAY_PHASE2_2'),
-
--- YoggSaron
- (33288,-1603330,'I am the lucid dream.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,15754,1,0,0,'YoggSaron SAY_PHASE2_1'), -- sound 15754 contains the 5 texts
- (33288,-1603331,'The monster in your nightmares.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,0,0,'YoggSaron SAY_PHASE2_2'),
- (33288,-1603332,'The fiend of a thousand faces.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,0,0,'YoggSaron SAY_PHASE2_3'),
- (33288,-1603333,'Cower before my true form.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,0,0,'YoggSaron SAY_PHASE2_4'),
- (33288,-1603334,'BOW DOWN BEFORE THE GOD OF DEATH!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,0,0,'YoggSaron SAY_PHASE2_5'),
- (33288,-1603335,'Look upon the true face of death and know that your end comes soon!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,15755,1,0,0,'YoggSaron SAY_PHASE3'),
- (33288,-1603336,'MADNESS WILL CONSUME YOU!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,15756,1,0,0,'YoggSaron SAY_VISION'),
- (33288,-1603337,'Hoohehehahahaha... AHAHAHAHAHAHA!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,15757,1,0,0,'YoggSaron SAY_SLAY_1'),
- (33288,-1603338,'Eternal suffering awaits!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,15758,1,0,0,'YoggSaron SAY_SLAY_2'),
- (33288,-1603339,'Your will is no longer you own...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,15759,5,0,0,'YoggSaron WHISP_INSANITY_1'),
- (33288,-1603340,'Destroy them minion, your master commands it!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,15760,5,0,0,'YoggSaron WHISP_INSANITY_2'),
- (33288,-1603341,'Your fate is sealed. The end of days is finally upon you and ALL who inhabit this miserable little seedling. Uulwi ifis halahs gag erh''ongg w''ssh.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,15761,1,0,0,'YoggSaron SAY_DEATH'),
-
--- Quest Smoke Em Out
- (27570,-1603535,'We\'re all gonna die!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'Smoke \'Em Out - Say1'),
- (27570,-1603536,'Gotta get out of here!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'Smoke \'Em Out - Say2'),
- (27570,-1603537,'No way I\'m stickin\' around!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'Smoke \'Em Out - Say3'),
- (27570,-1603538,'Forget this! I\'m going home!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'Smoke \'Em Out - Say4'),
- (27570,-1603539,'I didn\'t sign up for this!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'Smoke \'Em Out - Say5'),
-
--- -1 604 000 GUNDRAK
-/* Moorabi */
- (29305,-1604010,'We fought back da Scourge. What chance joo be thinkin'' JOO got?',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,0,0,'SAY_AGGRO boss_moorabi'),
- (29305,-1604012,'Who gonna stop me; you? ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,0,0,'SAY_SLAY_2 boss_moorabi'),
- (29305,-1604013,'Not so tough now.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,0,0,'SAY_SLAY_3 boss_moorabi'),
- (29305,-1604014,'If our gods can die... den so can we... ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,0,0,'SAY_DEATH boss_moorabi'),
- (29305,-1604015,'Get ready for somethin''... much... BIGGAH! ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,0,0,'SAY_TRANSFORM boss_moorabi'),
- (29305,-1604016,'Da ground gonna swallow you up',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,0,0,'SAY_QUAKE boss_moorabi'),
- (29305,-1604017,'%s begins to transform!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,3,0,0,'EMOTE_TRANSFORM boss_moorabi'),
-
-/* Slad'ran */
- (29304,-1604018,'Ye not breathin''! Good.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'Slad''ran SAY_SLAY_1'),
- (29304,-1604019,'You ssscared now?',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'Slad''ran SAY_SLAY_2'),
- (29304,-1604020,'I''ll eat you next, mon!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'Slad''ran SAY_SLAY_3'),
- (29304,-1604021,'I sssee now... Ssscourge wasss not... our greatessst enemy...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'Slad''ran SAY_DEATH'),
- (29304,-1604022,'Minionsss of the scale, heed my call!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'Slad''ran SAY_SUMMON_SNAKES'),
- (29304,-1604023,'A thousssand fangs gonna rend your flesh!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'Slad''ran SAY_SUMMON_CONSTRICTORS'),
-
-/* Gal'darah */
- (29306,-1604000,'I''m gonna spill your guts, mon!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'Gal''darah SAY_AGGRO'),
- (29306,-1604001,'What a rush!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'Gal''darah SAY_SLAY_1'),
- (29306,-1604002,'Who needs gods, when WE ARE GODS!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'Gal''darah SAY_SLAY_2'),
- (29306,-1604003,'I told ya so!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'Gal''darah SAY_SLAY_3'),
- (29306,-1604004,'Even the mighty... can fall.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'Gal''darah SAY_DEATH'),
- (29306,-1604005,'Gut them! Impale them!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'Gal''darah SAY_SUMMON_RHINO_1'),
- (29306,-1604006,'KILL THEM ALL!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'Gal''darah SAY_SUMMON_RHINO_2'),
- (29306,-1604007,'Say hello to my BIG friend!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'Gal''darah SAY_SUMMON_RHINO_3'),
- (29306,-1604008,'Ain''t gonna be nottin'' left after this!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'Gal''darah SAY_TRANSFORM_1'),
- (29306,-1604009,'You wanna see power? I''m gonna show you power!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'Gal''darah SAY_TRANSFORM_2'),
-
--- -1 608 000 VIOLET HOLD
-/* Cyanigosa */
- (31134,-1608000,'We finish this now, champions of Kirin Tor!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,13947,1,0,0,'cyanigosa SAY_AGGRO'),
- (31134,-1608001,'I will end the Kirin Tor!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,13952,1,0,0,'cyanigosa SAY_SLAY_1'),
- (31134,-1608002,'Dalaran will fall!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,13953,1,0,0,'cyanigosa SAY_SLAY_2'),
- (31134,-1608003,'So ends your defiance of the Spell-Weaver!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,13954,1,0,0,'cyanigosa SAY_SLAY_3'),
- (31134,-1608004,'Perhaps... we have... underestimated... you.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,13955,1,0,0,'cyanigosa SAY_DEATH'),
- (31134,-1608005,'A valiant defense, but this city must be razed. I will fulfill Malygos''s wishes myself!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,13946,1,0,0,'cyanigosa SAY_SPAWN'),
- (31134,-1608006,'Am I interrupting?',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,13951,1,0,0,'cyanigosa SAY_DISRUPTION'),
- (31134,-1608007,'Shiver and die!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,13948,1,0,0,'cyanigosa SAY_BREATH_ATTACK'),
- (31134,-1608008,'The world has forgotten what true magic is! Let this be a reminder!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,13949,1,0,0,'cyanigosa SAY_SPECIAL_ATTACK_1'),
- (31134,-1608009,'Who among you can withstand my power?',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,13950,1,0,0,'cyanigosa SAY_SPECIAL_ATTACK_2'),
-
-/* Erekem */
- (29315,-1608010,'Not--caww--get in way of--rrak-rrak--flee!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14219,1,0,0,'erekem SAY_AGGRO'),
- (29315,-1608011,'Ya ya ya yaaaa',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14222,1,0,0,'erekem SAY_SLAY_1'),
- (29315,-1608012,'Preeciouuss life---Ra-aak---Wasted!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14223,1,0,0,'erekem SAY_SLAY_2'),
- (29315,-1608013,'Only the strong---Ra-aak---Survive!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14224,1,0,0,'erekem SAY_SLAY_3'),
- (29315,-1608014,'No--kaw, kaw--flee...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14225,1,0,0,'erekem SAY_DEATH'),
- (29315,-1608015,'Free to--mm--fly now. Ra-aak... Not find us--ekh-ekh! Escape!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14218,1,0,0,'erekem SAY_SPAWN'),
- (29315,-1608016,'My---raaak--favorite! Awk awk awk! Raa-kaa!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14220,1,0,0,'erekem SAY_ADD_KILLED'),
- (29315,-1608017,'Nasty little...A-ak, kaw! Kill! Yes, kill you!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14221,1,0,0,'erekem SAY_BOTH_ADDS_KILLED'),
-
-/* Ichoron */
- (29313,-1608018,'Stand aside, mortals!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14230,1,0,0,'ichoron SAY_AGGRO'),
- (29313,-1608019,'I am a force of nature!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14234,1,0,0,'ichoron SAY_SLAY_1'),
- (29313,-1608020,'I shall pass!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14235,1,0,0,'ichoron SAY_SLAY_2'),
- (29313,-1608021,'You can not stop the tide!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14236,1,0,0,'ichoron SAY_SLAY_3'),
- (29313,-1608022,'I... recede.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14237,1,0,0,'ichoron SAY_DEATH'),
- (29313,-1608023,'I... am fury... unrestrained!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14229,1,0,0,'ichoron SAY_SPAWN'),
- (29313,-1608024,'I shall consume, decimate, devastate, and destroy! Yield now to the wrath of the pounding sea!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14231,1,0,0,'ichoron SAY_ENRAGE'),
- (29313,-1608025,'I will not be contained! Ngyah!!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14233,1,0,0,'ichoron SAY_SHATTER'),
- (29313,-1608026,'Water can hold any form, take any shape... overcome any obstacle.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14232,1,0,0,'ichoron SAY_BUBBLE'),
-
-/* Xevozz */
- (29266,-1608027,'It seems my freedom must be bought with blood...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14498,1,0,0,'Xevozz SAY_AGGRO'),
- (29266,-1608028,'Nothing personal.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14504,1,0,0,'Xevozz SAY_SLAY_1'),
- (29266,-1608029,'Business concluded.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14505,1,0,0,'Xevozz SAY_SLAY_2'),
- (29266,-1608030,'Profit!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14506,1,0,0,'Xevozz SAY_SLAY_3'),
- (29266,-1608031,'This is an... unrecoverable... loss.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14507,1,0,0,'Xevozz SAY_DEATH'),
- (29266,-1608032,'Back in business! Now to execute an exit strategy.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14498,1,0,0,'Xevozz SAY_SPAWN'),
- (29266,-1608033,'It would seem that a renegotiation is in order.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14503,1,0,0,'Xevozz SAY_CHARGED'),
- (29266,-1608034,'The air teems with latent energy... quite the harvest!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14501,1,0,0,'Xevozz SAY_REPEAT_SUMMON_1'),
- (29266,-1608035,'Plentiful, exploitable resources... primed for acquisition!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14502,1,0,0,'Xevozz SAY_REPEAT_SUMMON_2'),
- (29266,-1608036,'Intriguing... a high quantity of arcane energy is near. Time for some prospecting...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14500,1,0,0,'Xevozz SAY_SUMMON_ENERGY'),
-
-/* Zuramat */
- (29314,-1608037,'Eradicate.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,13996,1,0,0,'zuramat SAY_AGGRO'),
- (29314,-1608038,'More... energy.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,13999,1,0,0,'zuramat SAY_SLAY_1'),
- (29314,-1608039,'Relinquish.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14000,1,0,0,'zuramat SAY_SLAY_2'),
- (29314,-1608040,'Fall... to shadow.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14001,1,0,0,'zuramat SAY_SLAY_3'),
- (29314,-1608041,'Disperse.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14002,1,0,0,'zuramat SAY_DEATH'),
- (29314,-1608042,'I am... renewed.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,13995,1,0,0,'zuramat SAY_SPAWN'),
- (29314,-1608043,'Know... my... pain.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,13997,1,0,0,'zuramat SAY_SHIELD'),
- (29314,-1608044,'Gaze... into the void.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,13998,1,0,0,'zuramat SAY_WHISPER'),
-
-/* Sinclari */
- (30658,-1608045,'Prison guards, we are leaving! These adventurers are taking over! Go go go',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,0,0,'sinclari SAY_SINCLARI_1'),
-
--- -1 615 000 OBSIDIAN SANCTUM
- (30451,-1615000,'I fear nothing! Least of all you!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14111,1,0,0,'shadron SAY_SHADRON_AGGRO'),
- (30451,-1615001,'You are insignificant!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14112,1,0,0,'shadron SAY_SHADRON_SLAY_1'),
- (30451,-1615002,'Such mediocre resistance!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14113,1,0,0,'shadron SAY_SHADRON_SLAY_2'),
- (30451,-1615003,'We...are superior! How could this...be...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14118,1,0,0,'shadron SAY_SHADRON_DEATH'),
- (30451,-1615004,'You are easily bested! ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14114,1,0,0,'shadron SAY_SHADRON_BREATH'),
- (30451,-1615005,'I will take pity on you Sartharion, just this once.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14117,1,0,0,'shadron SAY_SHADRON_RESPOND'),
- (30451,-1615006,'Father tought me well!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14115,1,0,0,'shadron SAY_SHADRON_SPECIAL_1'),
- (30451,-1615007,'On your knees!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14116,1,0,0,'shadron SAY_SHADRON_SPECIAL_2'),
- (28860,-1615008,'A Shadron Disciple appears in the Twilight!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,5,0,0,'shadron WHISPER_SHADRON_DICIPLE'),
- (30452,-1615009,'You have no place here. Your place is among the departed.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14122,1,0,0,'tenebron SAY_TENEBRON_AGGRO'),
- (30452,-1615010,'No contest.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14123,1,0,0,'tenebron SAY_TENEBRON_SLAY_1'),
- (30452,-1615011,'Typical... Just as I was having fun.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14124,1,0,0,'tenebron SAY_TENEBRON_SLAY_2'),
- (30452,-1615012,'I should not... have held back...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14129,1,0,0,'tenebron SAY_TENEBRON_DEATH'),
- (30452,-1615013,'To darkness I condemn you...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14125,1,0,0,'tenebron SAY_TENEBRON_BREATH'),
- (30452,-1615014,'It is amusing to watch you struggle. Very well, witness how it is done.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14128,1,0,0,'tenebron SAY_TENEBRON_RESPOND'),
- (30452,-1615015,'Arrogant little creatures! To challenge powers you do not yet understand...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14126,1,0,0,'tenebron SAY_TENEBRON_SPECIAL_1'),
- (30452,-1615016,'I am no mere dragon! You will find I am much, much, more...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14127,1,0,0,'tenebron SAY_TENEBRON_SPECIAL_2'),
- (28860,-1615017,'%s begins to hatch eggs in the twilight!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,5,0,0,'tenebron WHISPER_HATCH_EGGS'),
- (28860,-1615018,'It is my charge to watch over these eggs. I will see you burn before any harm comes to them!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14093,1,0,0,'sartharion SAY_SARTHARION_AGGRO'),
- (28860,-1615019,'This pathetic siege ends NOW!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14103,1,0,0,'sartharion SAY_SARTHARION_BERSERK'),
- (28860,-1615020,'Burn, you miserable wretches!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14098,1,0,0,'sartharion SAY_SARTHARION_BREATH'),
- (28860,-1615021,'Shadron! Come to me, all is at risk!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14105,1,0,0,'sartharion SARTHARION_CALL_SHADRON'),
- (28860,-1615022,'Tenebron! The eggs are yours to protect as well!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14106,1,0,0,'sartharion SAY_SARTHARION_CALL_TENEBRON'),
- (28860,-1615023,'Vesperon! The clutch is in danger! Assist me!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14104,1,0,0,'sartharion SAY_SARTHARION_CALL_VESPERON'),
- (28860,-1615024,'Such is the price... of failure...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14107,1,0,0,'sartharion SAY_SARTHARION_DEATH'),
- (28860,-1615025,'Such flammable little insects....',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14099,1,0,0,'sartharion SAY_SARTHARION_SPECIAL_1'),
- (28860,-1615026,'Your charred bones will litter the floor!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14100,1,0,0,'sartharion SAY_SARTHARION_SPECIAL_2'),
- (28860,-1615027,'How much heat can you take?',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14101,1,0,0,'sartharion SAY_SARTHARION_SPECIAL_3'),
- (28860,-1615028,'All will be reduced to ash!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14102,1,0,0,'sartharion SAY_SARTHARION_SPECIAL_4'),
- (28860,-1615029,'You will make a fine meal for the hatchlings.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14094,1,0,0,'sartharion SAY_SARTHARION_SLAY_1'),
- (28860,-1615030,'You are the grave disadvantage.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14096,1,0,0,'sartharion SAY_SARTHARION_SLAY_2'),
- (28860,-1615031,'This is why we call you lesser beeings.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14097,1,0,0,'sartharion SAY_SARTHARION_SLAY_3'),
- (28860,-1615032,'The lava surrounding %s churns!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,5,0,0,'sartharion WHISPER_LAVA_CHURN'),
- (30449,-1615033,'You pose no threat, lesser beings...give me your worst!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14133,1,0,0,'vesperon SAY_VESPERON_AGGRO'),
- (30449,-1615034,'The least you could do is put up a fight...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14134,1,0,0,'vesperon SAY_VESPERON_SLAY_1'),
- (30449,-1615035,'Was that the best you can do?',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14135,1,0,0,'vesperon SAY_VESPERON_SLAY_2'),
- (30449,-1615036,'I still have some...fight..in...me...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14140,1,0,0,'vesperon SAY_VESPERON_DEATH'),
- (30449,-1615037,'I will pick my teeth with your bones!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14136,1,0,0,'vesperon SAY_VESPERON_BREATH'),
- (30449,-1615038,'Father was right about you, Sartharion...You are a weakling!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14139,1,0,0,'vesperon SAY_VESPERON_RESPOND'),
- (30449,-1615039,'Aren''t you tricky...I have a few tricks of my own...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14137,1,0,0,'vesperon SAY_VESPERON_SPECIAL_1'),
- (30449,-1615040,'Unlike, I have many talents.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14138,1,0,0,'vesperon SAY_VESPERON_SPECIAL_2'),
- (28860,-1615041,'A Vesperon Disciple appears in the Twilight!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,5,0,0,'shadron WHISPER_VESPERON_DICIPLE'),
- (28860,-1615042,'%s begins to open a Twilight Portal!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,5,0,0,'sartharion drake WHISPER_OPEN_PORTAL'),
-
--- -1 619 000 AHN'KAHET: THE OLD KINGDOM
- (29310,-1619000,'These are sacred halls! Your intrusion will be met with death.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'Jedoga Shadowseeker SAY_AGGRO'),
- (29310,-1619001,'Who among you is devoted?',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'Jedoga Shadowseeker SAY_SACRIFICE_1_1'),
- (29310,-1619002,'You there! Step forward!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'Jedoga Shadowseeker SAY_SACRIFICE_1_2'),
- (29310,-1619003,'Yogg-Saron, grant me your power!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'Jedoga Shadowseeker SAY_SACRIFICE_2_1'),
- (29310,-1619004,'Master, a gift for you!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'Jedoga Shadowseeker SAY_SACRIFICE_2_2'),
- (29310,-1619005,'Glory to Yogg-Saron!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'Jedoga Shadowseeker SAY_SLAY_1'),
- (29310,-1619006,'You are unworthy!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'Jedoga Shadowseeker SAY_SLAY_2'),
- (29310,-1619007,'Get up! You haven''t suffered enough.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'Jedoga Shadowseeker SAY_SLAY_3'),
- (29310,-1619008,'Do not expect your sacrilege... to go unpunished.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'Jedoga Shadowseeker SAY_DEATH'),
- (29310,-1619009,'The elements themselves will rise up against the civilized world! Only the faithful will be spared!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'Jedoga Shadowseeker SAY_PREACHING_1'),
- (29310,-1619010,'Immortality can be yours. But only if you pledge yourself fully to Yogg-Saron!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'Jedoga Shadowseeker SAY_PREACHING_2'),
- (29310,-1619011,'Here on the very borders of his domain. You will experience powers you would never have imagined!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'Jedoga Shadowseeker SAY_PREACHING_3'),
- (29310,-1619012,'You have traveled long and risked much to be here. Your devotion shall be rewarded.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'Jedoga Shadowseeker SAY_PREACHING_4'),
- (29310,-1619013,'The faithful shall be exalted! But there is more work to be done. We will press on until all of Azeroth lies beneath his shadow!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'Jedoga Shadowseeker SAY_PREACHING_5'),
- (29309,-1619015,'Sleep now, in the cold dark.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'Elder Nadox SAY_SLAY_1'),
- (29309,-1619016,'For the Lich King!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'Elder Nadox SAY_SLAY_2'),
- (29309,-1619017,'Perhaps we will be allies soon.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'Elder Nadox SAY_SLAY_3'),
- (29309,-1619018,'Master, is my service complete?',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'Elder Nadox SAY_DEATH'),
- (29309,-1619019,'The young must not grow hungry...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'Elder Nadox SAY_EGG_SAC_1'),
- (29309,-1619020,'Shhhad ak kereeesshh chak-k-k!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'Elder Nadox SAY_EGG_SAC_2'),
- (29308,-1619021,'I will feast on your remains.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'prince taldaram SAY_AGGRO'),
- (29308,-1619022,'I will drink no blood before it''s time.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'prince taldaram SAY_SLAY_1'),
- (29308,-1619023,'One final embrace.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'prince taldaram SAY_SLAY_2'),
- (29308,-1619024,'Still I hunger, still I thirst.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'prince taldaram SAY_DEATH'),
- (29308,-1619025,'So appetizing.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'prince taldaram SAY_FEED1'),
- (29308,-1619026,'Fresh, warm blood. It has been too long.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'prince taldaram SAY_FEED2'),
- (29308,-1619027,'Your heartbeat is music to my ears.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'prince taldaram SAY_VANISH1'),
- (29308,-1619028,'I am nowhere. I am everywhere. I am the watcher, unseen.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'prince taldaram SAY_VANISH2'),
- (29311,-1619030,'Shgla''yos plahf mh''naus.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'Herald Volazj SAY_AGGRO'),
- (29311,-1619031,'Ywaq puul skshgn: on''ma yeh''glu zuq.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'Herald Volazj SAY_SLAY_1'),
- (29311,-1619032,'Ywaq ma phgwa''cul hnakf.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'Herald Volazj SAY_SLAY_2'),
- (29311,-1619033,'Ywaq maq oou; ywaq maq ssaggh. Ywaq ma shg''fhn.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'Herald Volazj SAY_SLAY_3'),
- (29311,-1619034,'Iilth vwah, uhn''agth fhssh za.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'Herald Volazj SAY_DEATH_1'),
-
--- -1 632 000 ICECROWN CITADEL: FROZEN HALLS: FORGE OF SOULS
--- Bronjham
- (36497,-1632001,'Finally...a captive audience!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16595,1,0,0,'Bronjham SAY_AGGRO'),
- (36497,-1632002,'Fodder for the engine!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16596,1,0,0,'Bronjham SAY_SLAY_1'),
- (36497,-1632003,'Another soul to strengthen the host!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16597,1,0,0,'Bronjham SAY_SLAY_2'),
- (36497,-1632004,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16598,1,0,0,'Bronjham SAY_DEATH'),
- (36497,-1632005,'The vortex of the harvested calls to you!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16599,1,0,0,'Bronjham SAY_SOUL_STORM'),
- (36497,-1632006,'I will sever the soul from your body!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16600,1,0,0,'Bronjham SAY_CORRUPT_SOUL'),
-
--- Devourer of Souls
- (36502,-1632010,'You dare look upon the host of souls? I SHALL DEVOUR YOU WHOLE!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16884,1,0,0,'Devoureur SAY_FACE_ANGER_AGGRO'),
- (36502,-1632011,'You dare look upon the host of souls? I SHALL DEVOUR YOU WHOLE!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16890,1,0,0,'Devoureur SAY_FACE_DESIRE_AGGRO'),
- (36502,-1632012,'Damnation!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16885,1,0,0,'Devoureur SAY_FACE_ANGER_SLAY_1'),
- (36502,-1632013,'Damnation!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16896,1,0,0,'Devoureur SAY_FACE_SORROW_SLAY_1'),
- (36502,-1632014,'Damnation!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16891,1,0,0,'Devoureur SAY_FACE_DESIRE_SLAY_1'),
- (36502,-1632015,'Doomed for eternity!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16886,1,0,0,'Devoureur SAY_FACE_ANGER_SLAY_2'),
- (36502,-1632016,'Doomed for eternity!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16897,1,0,0,'Devoureur SAY_FACE_SORROW_SLAY_2'),
- (36502,-1632017,'Doomed for eternity!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16892,1,0,0,'Devoureur SAY_FACE_DESIRE_SLAY_2'),
- (36502,-1632018,'The swell of souls will not be abated! You only delay the inevitable!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16887,1,0,0,'Devoureur SAY_FACE_ANGER_DEATH'),
- (36502,-1632019,'The swell of souls will not be abated! You only delay the inevitable!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16898,1,0,0,'Devoureur SAY_FACE_SORROW_DEATH'),
- (36502,-1632020,'The swell of souls will not be abated! You only delay the inevitable!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16893,1,0,0,'Devoureur SAY_FACE_DESIRE_DEATH'),
- (36502,-1632021,'Devourer of Souls begins to cast Mirrored Soul!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,3,0,0,'Devoureur EMOTE_MIRRORED_SOUL'),
- (36502,-1632022,'Devourer of Souls begins to Unleash Souls!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,3,0,0,'Devoureur EMOTE_UNLEASH_SOUL'),
- (36502,-1632023,'SUFFERING! ANGUISH! CHAOS! RISE AND FEED!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16888,1,0,0,'Devoureur SAY_FACE_ANGER_UNLEASH_SOUL'),
- (36502,-1632024,'SUFFERING! ANGUISH! CHAOS! RISE AND FEED!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16899,1,0,0,'Devoureur SAY_FACE_SORROW_UNLEASH_SOUL'),
- (36502,-1632025,'SUFFERING! ANGUISH! CHAOS! RISE AND FEED!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16894,1,0,0,'Devoureur SAY_FACE_DESIRE_UNLEASH_SOUL'),
- (36502,-1632026,'Devourer of Souls begins to cast Wailing Souls!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,3,0,0,'Devoureur EMOTE_WAILING_SOUL'),
- (36502,-1632027,'Stare into the abyss, and see your end!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16889,1,0,0,'Devoureur SAY_FACE_ANGER_WAILING_SOUL'),
- (36502,-1632028,'Stare into the abyss, and see your end!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16895,1,0,0,'Devoureur SAY_FACE_DESIRE_WAILING_SOUL'),
- (38160,-1632029,'Excellent work, champions! We shall set up our base camp in these chambers. My mages will get the Scourge transport device working shortly. Step inside it when you''re ready for your next mission. I will meet you on the other side.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16625,1,0,0,'Jaina SAY_JAINA_OUTRO'),
- (38161,-1632030,'Excellent work, champions! We shall set up our base camp in these chambers. My mages will get the Scourge transport device working shortly. Step inside when you are ready for your next mission. I will meet you on the other side.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,17044,1,0,0,'Sylvanas SAY_SYLVANAS_OUTRO'),
-
--- Jaina
- (37597,-1632040,'Thank the light for seeing you here safely. We have much work to do if we are to defeat the Lich King and put an end to the Scourge.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16617,0,0,0,'Jaina SAY_INTRO_1'),
- (37597,-1632041,'Our allies within the Argent Crusade and the Knights of the Ebon Blade have broken through the front gate of Icecrown and are attempting to establish a foothold within the Citadel.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16618,0,0,0,'Jaina SAY_INTRO_2'),
- (37597,-1632042,'Their success hinges upon what we discover in these cursed halls. Although our mission is a wrought with peril, we must persevere!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16619,0,0,0,'Jaina SAY_INTRO_3'),
- (37597,-1632043,'With the attention of the Lich King drawn toward the front gate, we will be working our way through the side in search of information that will enable us to defeat the Scourge - once and for all.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16620,0,0,0,'Jaina SAY_INTRO_4'),
- (37597,-1632044,'King Varian''s SI7 agents have gathered information about a private sanctum of the Lich King''s deep within a place called the Halls of Reflection.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16621,0,0,0,'Jaina SAY_INTRO_5'),
- (37597,-1632045,'We will carve a path through this wretched place and find a way to enter the Halls of Reflection. I sense powerful magic hidden away within those walls... Magic that could be the key to destroy the Scourge.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16622,0,0,0,'Jaina SAY_INTRO_6'),
- (37597,-1632046,'Your first mission is to destroy the machines of death within this malevolent engine of souls, and clear a path for our soldiers.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16623,0,0,0,'Jaina SAY_INTRO_7'),
- (37597,-1632047,'Make haste, champions! I will prepare the troops to fall in behind you.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16624,0,0,0,'Jaina SAY_INTRO_8'),
-
--- Sylvanas
- (37596,-1632050,'The Argent Crusade and the Knights of the Ebon Blade have assaulted the gates of Icecrown Citadel and are preparing for a massive attack upon the Scourge. Our missition is a bit more subtle, but equally as important.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,17038,0,0,0,'Sylvanas SAY_INTRO_1'),
- (37596,-1632051,'With the attention of the Lich King turned towards the front gate, we''ll be working our way through the side in search of information that will enable us to defeat the Lich King - once and for all.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,17039,0,0,0,'Sylvanas SAY_INTRO_2'),
- (37596,-1632052,'Our scouts have reported that the Lich King has a private chamber, outside of the Frozen Throne, deep within a place called the Halls of Reflection. That is our target, champions.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,17040,0,0,0,'Sylvanas SAY_INTRO_3'),
- (37596,-1632053,'We will cut a swath of destruction through this cursed place and find a way to enter the Halls of Reflection. If there is anything of value to be found here, it will be found in the Halls.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,17041,0,0,0,'Sylvanas SAY_INTRO_4'),
- (37596,-1632054,'Your first mission is to destroy the machines of death within this wretched engine of souls, and clear a path for our soldiers.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,17042,0,0,0,'Sylvanas SAY_INTRO_5'),
- (37596,-1632055,'The Dark Lady watches over you. Make haste!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,17043,0,0,0,'Sylvanas SAY_INTRO_6'),
-
--- -1 658 000 ICECROWN CITADEL: FROZEN HALLS: PIT OF SARON
--- Garfrost
- (36494,-1658001,'Tiny creatures under feet, you bring Garfrost something good to eat!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16912,1,0,0,'garfrost SAY_AGGRO'),
- (36494,-1658002,'Will save for snack. For later.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16913,1,0,0,'garfrost SAY_SLAY_1'),
- (36494,-1658003,'That one maybe not so good to eat now. Stupid Garfrost! BAD! BAD!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16914,1,0,0,'garfrost SAY_SLAY_2'),
- (36494,-1658004,'Garfrost hope giant underpants clean. Save boss great shame. For later.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16915,1,0,0,'garfrost SAY_DEATH'),
- (36494,-1658005,'Axe too weak. Garfrost make better and CRUSH YOU!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16916,1,0,0,'garfrost SAY_PHASE2'),
- (36494,-1658006,'Garfrost tired of puny mortals. Now your bones will freeze!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16917,1,0,0,'garfrost SAY_PHASE3'),
- (36658,-1658007,'Another shall take his place. You waste your time.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16752,1,0,0,'Tyrannus SAY_TYRANNUS_DEATH'),
-
--- Krick
- (36477,-1658010,'Our work must not be interrupted! Ick! Take care of them!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16926,1,0,0,'Krick SAY_AGGRO'),
- (36477,-1658011,'Ooh...We could probably use these parts!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16927,1,0,0,'Krick SAY_SLAY_1'),
- (36477,-1658012,'Arms and legs are in short supply...Thanks for your contribution!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16928,1,0,0,'Krick SAY_SLAY_2'),
- (36477,-1658013,'Enough moving around! Hold still while I blow them all up!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16929,1,0,0,'Krick SAY_BARRAGE_1'),
- (36477,-1658014,'Krick begins rapidly conjuring explosive mines!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,3,0,0,'Krick SAY_BARRAGE_2'),
- (36477,-1658015,'Quickly! Poison them all while they''re still close!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16930,1,0,0,'Krick SAY_POISON_NOVA'),
- (36477,-1658016,'No! That one! That one! Get that one!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16931,1,0,0,'Krick SAY_CHASE_1'),
- (36477,-1658017,'I''ve changed my mind...go get that one instead!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16932,1,0,0,'Krick SAY_CHASE_2'),
- (36477,-1658018,'What are you attacking him for? The dangerous one is over there,fool!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16933,1,0,0,'Krick SAY_CHASE_3'),
-
--- Ick
- (36476,-1658020,'Ick begins to unleash a toxic poison cloud!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,3,0,0,'Ick SAY_ICK_POISON_NOVA'),
- (36476,-1658021,'Ick is chasing you!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,3,0,0,'Ick SAY_ICK_CHASE_1'),
-
--- Krick OUTRO
- (36477,-1658030,'Wait! Stop! Don''t kill me, please! I''ll tell you everything!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16934,1,0,0,'Krick SAY_KRICK_OUTRO_1'),
- (36993,-1658031,'I''m not so naive as to believe your appeal for clemency, but I will listen.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16611,1,0,0,'Jaina SAY_JAINA_OUTRO_2'),
- (36990,-1658032,'Why should the Banshee Queen spare your miserable life?',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,17033,1,0,0,'Sylvanas SAY_SYLVANAS_OUTRO_2'),
- (36477,-1658033,'What you seek is in the master''s lair, but you must destroy Tyrannus to gain entry. Within the Halls of Reflection you will find Frostmourne. It... it holds the truth.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16935,1,0,0,'Krick SAY_KRICK_OUTRO_3'),
- (36993,-1658034,'Frostmourne lies unguarded? Impossible!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16612,1,0,0,'Jaina SAY_JAINA_OUTRO_4'),
- (36990,-1658035,'Frostmourne? The Lich King is never without his blade! If you are lying to me...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,17034,1,0,0,'Sylvanas SAY_SYLVANAS_OUTRO_4'),
- (36477,-1658036,'I swear it is true! Please, don''t kill me!!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16936,1,0,0,'Krick SAY_KRICK_OUTRO_5'),
- (36658,-1658037,'Worthless gnat! Death is all that awaits you!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16753,1,0,0,'Tyrannus SAY_TYRANNUS_OUTRO_7'),
- (36477,-1658038,'Urg... no!!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16937,1,0,0,'Krick SAY_KRICK_OUTRO_8'),
- (36658,-1658039,'Do not think that I shall permit you entry into my master''s sanctum so easily. Pursue me if you dare.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16754,1,0,0,'Tyrannus SAY_TYRANNUS_OUTRO_9'),
- (36993,-1658040,'What a cruel end. Come, heroes. We must see if the gnome''s story is true. If we can separate Arthas from Frostmourne, we might have a chance at stopping him.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16613,1,0,0,'Jaina SAY_JAINA_OUTRO_10'),
- (36990,-1658041,'A fitting end for a traitor. Come, we must free the slaves and see what is within the Lich King''s chamber for ourselves.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,17035,1,0,0,'Sylvanas SAY_SYLVANAS_OUTRO_10'),
-
--- Tyrannus
- (36658,-1658050,'Your pursuit shall be in vain, adventurers, for the Lich King has placed an army of undead at my command! Behold!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16755,1,0,0,'Tyrannus SAY_AMBUSH_1'),
- (36658,-1658051,'Persistent whelps! You will not reach the entrance of my lord''s lair! Soldiers, destroy them!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16756,1,0,0,'Tyrannus SAY_AMBUSH_2'),
- (36658,-1658052,'Rimefang! Trap them within the tunnel! Bury them alive!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16757,1,0,0,'Tyrannus SAY_GAUNTLET_START'),
- (36658,-1658053,'Alas, brave, brave adventurers, your meddling has reached its end. Do you hear the clatter of bone and steel coming up the tunnel behind you? That is the sound of your impending demise.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16758,1,0,0,'Tyrannus SAY_TYRANNUS_INTRO_1'),
- (36658,-1658055,'Ha, such an amusing gesture from the rabble. When I have finished with you, my master''s blade will feast upon your souls. Die!', NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16759,1,0,0,'Tyrannus SAY_TYRANNUS_INTRO_3'),
- (36658,-1658056,'I shall not fail The Lich King! Come and meet your end!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16760,1, 0,0,'Tyrannus SAY_AGGRO'),
- (36658,-1658057,'Such a shameful display... You are better off dead!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16761,1,0,0,'Tyrannus SAY_SLAY_1'),
- (36658,-1658058,'Perhaps you should have stayed in the mountains!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16762,1,0,0,'Tyrannus SAY_SLAY_2'),
- (36658,-1658059,'Impossible! Rimefang... Warn...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16763,1,0,0,'Tyrannus SAY_DEATH'),
- (36658,-1658060,'Rimefang, destroy this fool!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16764,1,0,0,'Tyrannus SAY_MARK_RIMEFANG_1'),
- (36658,-1658061,'The frostwyrm Rimefang gazes at $N and readies an icy attack!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,3, 0,0,'Tyrannus SAY_MARK_RIMEFANG_2'),
- (36658,-1658062,'Power... overwhelming!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16765,1,0,0,'Tyrannus SAY_DARK_MIGHT_1'),
- (36658,-1658063,'Scourgelord Tyrannus roars and swells with dark might!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,3, 0,0,'Tyrannus SAY_DARK_MIGHT_2'),
- (37592,-1658064,'Brave champions, we owe you our lives, our freedom... Though it be a tiny gesture in the face of this enormous debt, I pledge that from this day forth, all will know of your deeds, and the blazing path of light you cut through the shadow of this dark citadel.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1, 0,0,'Gorkun SAY_GORKUN_OUTRO_1'),
- (37592,-1658065,'This day will stand as a testament not only to your valor, but to the fact that no foe, not even the Lich King himself, can stand when Alliance and Horde set aside their differences and ---',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1, 0,0,'Gorkun SAY_GORKUN_OUTRO_2'),
- (36993,-1658066,'Heroes, to me!', NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16614,1,0,0,'Jaina SAY_JAYNA_OUTRO_3'),
- (36990,-1658067,'Take cover behind me! Quickly!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,17037,1,0,0,'Sylvanas SAY_SYLVANAS_OUTRO_3'),
- (36993,-1658068,'The Frost Queen is gone. We must keep moving - our objective is near.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16615, 0,0,0,'Jaina SAY_JAYNA_OUTRO_4'),
- (36990,-1658069,'I thought he''d never shut up. At last, Sindragosa silenced that long-winded fool. To the Halls of Reflection, champions! Our objective is near... I can sense it.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,17036, 0,0,0,'Sylvanas SAY_SYLVANAS_OUTRO_4'),
- (36993,-1658070,'I... I could not save them... Damn you, Arthas! DAMN YOU!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16616, 0,0,0,'Jaina SAY_JAYNA_OUTRO_5'),
-
--- -1 658 000 ICECROWN CITADEL: FROZEN HALLS: HALLS OF REFLECTION
--- INTRO
- (37221,-1668001,'The chill of this place... Brr... I can feel my blood freezing.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16631,1,0,0,'Jaina SAY_JAINA_INTRO_1'),
- (37221,-1668002,'What is that? Up ahead! Could it be... ? Heroes at my side!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16632,1,0,0,'Jaina SAY_JAINA_INTRO_2'),
- (37221,-1668003,'Frostmourne! The blade that destroyed our kingdom...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16633,1,0,0,'Jaina SAY_JAINA_INTRO_3'),
- (37221,-1668004,'Stand back! Touch that blade and your soul will be scarred for all eternity! I must attempt to commune with the spirits locked away within Frostmourne. Give me space, back up please!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16634,1,0,0,'Jaina SAY_JAINA_INTRO_4'),
- (37225,-1668005,'Jaina! Could it truly be you?',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16666,1,0,0,'Uther SAY_UTHER_INTRO_A2_1'),
- (37221,-1668006,'Uther! Dear Uther! ... I... I''m so sorry.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16635,0,0,0,'Jaina SAY_JAINA_INTRO_5'),
- (37225,-1668007,'Jaina you haven''t much time. The Lich King sees what the sword sees. He will be here shortly!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16667,0,0,0,'Uther SAY_UTHER_INTRO_A2_2'),
- (37221,-1668008,'Arthas is here? Maybe I...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16636,0,0,0,'Jaina SAY_JAINA_INTRO_6'),
- (37225,-1668009,'No, girl. Arthas is not here. Arthas is merely a presence within the Lich King''s mind. A dwindling presence...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16668,0,0,0,'Uther SAY_UTHER_INTRO_A2_3'),
- (37221,-1668010,'But Uther, if there''s any hope of reaching Arthas. I... I must try.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16637,0,0,0,'Jaina SAY_JAINA_INTRO_7'),
- (37225,-1668011,'Jaina, listen to me. You must destroy the Lich King. You cannot reason with him. He will kill you and your allies and raise you all as powerful soldiers of the Scourge.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16669,0,0,0,'Uther SAY_UTHER_INTRO_A2_4'),
- (37221,-1668012,'Tell me how, Uther? How do I destroy my prince? My...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16638,0,0,0,'Jaina SAY_JAINA_INTRO_8'),
- (37225,-1668013,'Snap out of it, girl. You must destroy the Lich King at the place where he merged with Ner''zhul - atop the spire, at the Frozen Throne. It is the only way.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16670,0,0,0,'Uther SAY_UTHER_INTRO_A2_5'),
- (37221,-1668014,'You''re right, Uther. Forgive me. I... I don''t know what got a hold of me. We will deliver this information to the King and the knights that battle the Scourge within Icecrown Citadel.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16639,0,0,0,'Jaina SAY_JAINA_INTRO_9'),
- (37225,-1668015,'There is... something else that you should know about the Lich King. Control over the Scourge must never be lost. Even if you were to strike down the Lich King, another would have to take his place. For without the control of its master, the Scourge would run rampant across the world - destroying all living things.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16671,0,0,0,'Uther SAY_UTHER_INTRO_A2_6'),
- (37225,-1668016,'A grand sacrifice by a noble soul...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16672,0,0,0,'Uther SAY_UTHER_INTRO_A2_7'),
- (37221,-1668017,'Who could bear such a burden?',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16640,0,0,0,'Jaina SAY_JAINA_INTRO_10'),
- (37225,-1668018,'I do not know, Jaina. I suspect that the piece of Arthas that might be left inside the Lich King is all that holds the Scourge from annihilating Azeroth.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16673,0,0,0,'Uther SAY_UTHER_INTRO_A2_8'),
- (37221,-1668019,'Then maybe there is still hope...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16641,0,0,0,'Jaina SAY_JAINA_INTRO_11'),
- (37225,-1668020,'No, Jaina! Aargh! He... He is coming! You... You must...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16674,0,0,0,'Uther SAY_UTHER_INTRO_A2_9'),
- (37223,-1668021,'I... I don''t believe it! Frostmourne stands before us, unguarded! Just as the Gnome claimed. Come, heroes!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,17049,1,0,0,'Sylvanas SAY_SYLVANAS_INTRO_1'),
- (37223,-1668022,'Standing this close to the blade that ended my life... The pain... It is renewed.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,17050,1,0,0,'Sylvanas SAY_SYLVANAS_INTRO_2'),
- (37223,-1668023,'I dare not touch it. Stand back! Stand back as I attempt to commune with the blade! Perhaps our salvation lies within...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,17051,1,0,0,'Sylvanas SAY_SYLVANAS_INTRO_3'),
- (37225,-1668024,'Careful, girl. I''ve heard talk of that cursed blade saving us before. Look around you and see what has been born of Frostmourne.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16659,0,0,0,'Uther SAY_UTHER_INTRO_H2_1'),
- (37223,-1668025,'Uther...Uther the Lightbringer. How...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,17052,0,0,0,'Sylvanas SAY_SYLVANAS_INTRO_4'),
- (37225,-1668026,'You haven''t much time. The Lich King sees what the sword sees. He will be here shortly.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16660,0,0,0,'Uther SAY_UTHER_INTRO_H2_2'),
- (37223,-1668027,'The Lich King is here? Then my destiny shall be fulfilled today!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,17053,0,0,0,'Sylvanas SAY_SYLVANAS_INTRO_5'),
- (37225,-1668028,'You cannot defeat the Lich King. Not here. You would be a fool to try. He will kill those who follow you and raise them as powerful servants of the Scourge. But for you, Sylvanas, his reward for you would be worse than the last.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16661,0,0,0,'Uther SAY_UTHER_INTRO_H2_3'),
- (37223,-1668029,'There must be a way... ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,17054,0,0,0,'Sylvanas SAY_SYLVANAS_INTRO_6'),
- (37225,-1668030,'Perhaps, but know this: there must always be a Lich King. Even if you were to strike down Arthas, another would have to take his place, for without the control of the Lich King, the Scourge would wash over this world like locusts, destroying all that they touched.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16662,0,0,0,'Uther SAY_UTHER_INTRO_H2_4'),
- (37223,-1668031,'Who could bear such a burden?',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,17055,0,0,0,'Sylvanas SAY_SYLVANAS_INTRO_7'),
- (37225,-1668032,'I do not know, Banshee Queen. I suspect that the piece of Arthas that might be left inside the Lich King is all that holds the Scourge from annihilating Azeroth.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16663,0,0,0,'Uther SAY_UTHER_INTRO_H2_5'),
- (37225,-1668033,'Alas, the only way to defeat the Lich King is to destroy him at the place he was created.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16664,0,0,0,'Uther SAY_UTHER_INTRO_H2_6'),
- (37223,-1668034,'The Frozen Throne...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,17056,0,0,0,'Sylvanas SAY_SYLVANAS_INTRO_8'),
- (37225,-1668035,'I... Aargh... He... He is coming... You... You must...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16665,0,0,0,'Uther SAY_UTHER_INTRO_H2_7'),
- (37226,-1668036,'SILENCE, PALADIN!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,17225,1,0,0,'Lich King SAY_LK_INTRO_1'),
- (37226,-1668037,'So you wish to commune with the dead? You shall have your wish.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,17226,1,0,0,'Lich King SAY_LK_INTRO_2'),
- (37226,-1668038,'Falric. Marwyn. Bring their corpses to my chamber when you are through.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,17227,1,0,0,'Lich King SAY_LK_INTRO_3'),
- (38112,-1668039,'As you wish, my lord.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16717,1,0,0,'Falric SAY_FALRIC_INTRO_1'),
- (38113,-1668040,'As you wish, my lord.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16741,1,0,0,'Marwyn SAY_MARWYN_INTRO_1'),
- (38112,-1668041,'Soldiers of Lordaeron, rise to meet your master''s call!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16714,1,0,0,'Falric SAY_FALRIC_INTRO_2'),
- (37221,-1668042,'You won''t deny me this Arthas! I must know! I must find out!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16642,1,0,0,'Jaina SAY_JAINA_INTRO_END'),
- (37223,-1668043,'You will not escape me that easily, Arthas! I will have my vengeance!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,17057,1,0,0,'Sylvanas SAY_SYLVANAS_INTRO_END'),
--- Falric
- (38112,-1668050,'Men, women and children... None were spared the master''s wrath. Your death will be no different.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16710,1,0,0,'Falric SAY_AGGRO'),
- (38112,-1668051,'Sniveling maggot!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16711,1,0,0,'Falric SAY_SLAY_1'),
- (38112,-1668052,'The children of Stratholme fought with more ferocity!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16712,1,0,0,'Falric SAY_SLAY_2'),
- (38112,-1668053,'Marwyn, finish them...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16713,1,0,0,'Falric SAY_DEATH'),
- (38112,-1668054,'Despair... so delicious...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16715,1,0,0,'Falric SAY_IMPENDING_DESPAIR'),
- (38112,-1668055,'Fear... so exhilarating...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16716,1,0,0,'Falric SAY_DEFILING_HORROR'),
--- Marwyn
- (38113,-1668060,'Death is all that you will find here!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16734,1,0,0,'Marwyn SAY_AGGRO'),
- (38113,-1668061,'I saw the same look in his eyes when he died. Terenas could hardly believe it. Hahahaha!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16735,1,0,0,'Marwyn SAY_SLAY_1'),
- (38113,-1668062,'Choke on your suffering!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16736,1,0,0,'Marwyn SAY_SLAY_2'),
- (38113,-1668063,'Yes... Run... Run to meet your destiny... Its bitter, cold embrace, awaits you.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16737,1,0,0,'Marwyn SAY_DEATH'),
- (38113,-1668064,'Your flesh has decayed before your very eyes!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16739,1,0,0,'Marwyn SAY_CORRUPTED_FLESH_1'),
- (38113,-1668065,'Waste away into nothingness!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16740,1,0,0,'Marwyn SAY_CORRUPTED_FLESH_2'),
-
--- -1 999 900+ - RANDOM
- (0,-1999900,'Let the games begin.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,8280,1,0,0,'example_creature SAY_AGGRO'),
- (0,-1999901,'I see endless suffering. I see torment. I see rage. I see everything.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,8831,1,0,0,'example_creature SAY_RANDOM_0'),
- (0,-1999902,'Muahahahaha',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,8818,1,0,0,'example_creature SAY_RANDOM_1'),
- (0,-1999903,'These mortal infedels my lord, they have invaded your sanctum and seek to steal your secrets.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,8041,1,0,0,'example_creature SAY_RANDOM_2'),
- (0,-1999904,'You are already dead.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,8581,1,0,0,'example_creature SAY_RANDOM_3'),
- (0,-1999905,'Where to go? What to do? So many choices that all end in pain, end in death.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,8791,1,0,0,'example_creature SAY_RANDOM_4'),
- (0,-1999906,'$N, I sentance you to death!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,8588,1,0,0,'example_creature SAY_BESERK'),
- (0,-1999907,'The suffering has just begun!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,0,0,'example_creature SAY_PHASE'),
- (0,-1999908,'I always thought I was a good dancer.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'example_creature SAY_DANCE'),
- (0,-1999909,'Move out Soldier!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'example_creature SAY_SALUTE'),
- (0,-1999910,'Help $N! I''m under attack!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'example_escort SAY_AGGRO1'),
- (0,-1999911,'Die scum!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'example_escort SAY_AGGRO2'),
- (0,-1999912,'Hmm a nice day for a walk alright',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'example_escort SAY_WP_1'),
- (0,-1999913,'Wild Felboar attack!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'example_escort SAY_WP_2'),
- (0,-1999914,'Time for me to go! See ya around $N!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,3,'example_escort SAY_WP_3'),
- (0,-1999915,'Bye Bye!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,3,'example_escort SAY_WP_4'),
- (0,-1999916,'How dare you leave me like that! I hate you! =*(',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,3,0,0,'example_escort SAY_DEATH_1'),
- (0,-1999917,'...no...how could you let me die $N',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'example_escort SAY_DEATH_2'),
- (0,-1999918,'ugh...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'example_escort SAY_DEATH_3'),
- (0,-1999919,'Taste death!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'example_escort SAY_SPELL'),
- (0,-1999920,'Fireworks!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'example_escort SAY_RAND_1'),
- (0,-1999921,'Hmm, I think I could use a buff.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'example_escort SAY_RAND_2'),
- (0,-1999922,'Normal select, guess you''re not interested.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'example_gossip_codebox SAY_NOT_INTERESTED'),
- (0,-1999923,'Wrong!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'example_gossip_codebox SAY_WRONG'),
- (0,-1999924,'You''re right, you are allowed to see my inner secrets.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'example_gossip_codebox SAY_CORRECT'),
- (0,-1999925,'Hi!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'example_areatrigger SAY_HI'),
-
--- -1 609 000 - THE SCARLET ENCLAVE
- (29519,-1609000,'You have made a grave error, fiend!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'unworthy_initiate SAY_EVENT_START_1'),
- (29519,-1609001,'I was a soldier of the Light once... Look at what I have become... ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'unworthy_initiate SAY_EVENT_START_2'),
- (29519,-1609002,'You are hopelessly outmatched\, $R.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'unworthy_initiate SAY_EVENT_START_3'),
- (29519,-1609003,'They brand me unworthy? I will show them unmorthy!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'unworthy_initiate SAY_EVENT_START_4'),
- (29519,-1609004,'You will allow me a weapon and armor, yes?',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'unworthy_initiate SAY_EVENT_START_5'),
- (29519,-1609005,'I will win my freedom and leave this cursed place!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'unworthy_initiate SAY_EVENT_START_6'),
- (29519,-1609006,'I will dismantle this festering hellhole!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'unworthy_initiate SAY_EVENT_START_7'),
- (29519,-1609007,'There can be only one survivor!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'unworthy_initiate SAY_EVENT_START_8'),
- (29519,-1609008,'To battle!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'unworthy_initiate SAY_EVENT_ATTACK_1'),
- (29519,-1609009,'Let your fears consume you!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'unworthy_initiate SAY_EVENT_ATTACK_2'),
- (29519,-1609010,'HAH! You can barely hold a blade! Yours will be a quick death.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'unworthy_initiate SAY_EVENT_ATTACK_3'),
- (29519,-1609011,'And now you die',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'unworthy_initiate SAY_EVENT_ATTACK_4'),
- (29519,-1609012,'To battle!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'unworthy_initiate SAY_EVENT_ATTACK_5'),
- (29519,-1609013,'There is no hope for our future...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'unworthy_initiate SAY_EVENT_ATTACK_6'),
- (29519,-1609014,'Sate your hunger on cold steel\, $R',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'unworthy_initiate SAY_EVENT_ATTACK_7'),
- (29519,-1609015,'It ends here!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'unworthy_initiate SAY_EVENT_ATTACK_8'),
- (29519,-1609016,'Death is the only cure!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'unworthy_initiate SAY_EVENT_ATTACK_9'),
- (29032,-1609025,'Come to finish the job, have you?',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,1,'special_surprise SAY_EXEC_START_1'),
- (29032,-1609026,'Come to finish the job, have ye?',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,1,'special_surprise SAY_EXEC_START_2'),
- (29032,-1609027,'Come ta finish da job, mon?',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,1,'special_surprise SAY_EXEC_START_3'),
- (29032,-1609028,'You''ll look me in the eyes when...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,25,'special_surprise SAY_EXEC_PROG_1'),
- (29032,-1609029,'Well this son o'' Ironforge would like...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,25,'special_surprise SAY_EXEC_PROG_2'),
- (29032,-1609030,'Ironic, isn''t it? To be killed...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,25,'special_surprise SAY_EXEC_PROG_3'),
- (29032,-1609031,'If you''d allow me just one...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,25,'special_surprise SAY_EXEC_PROG_4'),
- (29032,-1609032,'I''d like to stand for...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,25,'special_surprise SAY_EXEC_PROG_5'),
- (29032,-1609033,'I want to die like an orc...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,25,'special_surprise SAY_EXEC_PROG_6'),
- (29032,-1609034,'Dis troll gonna stand for da...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,25,'special_surprise SAY_EXEC_PROG_7'),
- (29032,-1609035,'$N?',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,1,'special_surprise SAY_EXEC_NAME_1'),
- (29032,-1609036,'$N? Mon?',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,1,'special_surprise SAY_EXEC_NAME_2'),
- (29032,-1609037,'$N, I''d recognize that face anywhere... What... What have they done to you, $N?',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,1,'special_surprise SAY_EXEC_RECOG_1'),
- (29032,-1609038,'$N, I''d recognize those face tentacles anywhere... What... What have they done to you, $N?',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,1,'special_surprise SAY_EXEC_RECOG_2'),
- (29032,-1609039,'$N, I''d recognize that face anywhere... What... What have they done to ye, $Glad:lass;?',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,1,'special_surprise SAY_EXEC_RECOG_3'),
- (29032,-1609040,'$N, I''d recognize that decay anywhere... What... What have they done to you, $N?',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,1,'special_surprise SAY_EXEC_RECOG_4'),
- (29032,-1609041,'$N, I''d recognize those horns anywhere... What have they done to you, $N?',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,1,'special_surprise SAY_EXEC_RECOG_5'),
- (29032,-1609042,'$N, I''d recognize dem tusks anywhere... What... What have dey done ta you, mon?',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,1,'special_surprise SAY_EXEC_RECOG_6'),
- (29032,-1609043,'You don''t remember me, do you? Blasted Scourge... They''ve tried to drain you of everything that made you a righteous force of reckoning. Every last ounce of good... Everything that made you a draenei!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,1,'special_surprise SAY_EXEC_NOREM_1'),
- (29032,-1609044,'Ye don''t remember me, do ye? Blasted Scourge... They''ve tried to drain ye o'' everything that made ye a righteous force o'' reckoning. Every last ounce o'' good... Everything that made you a $Gson:daughter; of Ironforge!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,1,'special_surprise SAY_EXEC_NOREM_2'),
- (29032,-1609045,'You don''t remember me, do you? We were humans once - long, long ago - until Lordaeron fell to the Scourge. Your transformation to a Scourge zombie came shortly after my own. Not long after that, our minds were freed by the Dark Lady.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,1,'special_surprise SAY_EXEC_NOREM_3'),
- (29032,-1609046,'You don''t remember me, do you? Blasted Scourge... They''ve tried to drain you of everything that made you a pint-sized force of reckoning. Every last ounce of good... Everything that made you a gnome!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,1,'special_surprise SAY_EXEC_NOREM_4'),
- (29032,-1609047,'You don''t remember me, do you? Blasted Scourge...They''ve tried to drain of everything that made you a righteous force of reckoning. Every last ounce of good...Everything that made you a human!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,1,'special_surprise SAY_EXEC_NOREM_5'),
- (29032,-1609048,'You don''t remember me? When you were a child your mother would leave you in my care while she served at the Temple of the Moon. I held you in my arms and fed you with honey and sheep''s milk to calm you until she would return. You were my little angel. Blasted Scourge... What have they done to you, $N?',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,1,'special_surprise SAY_EXEC_NOREM_6'),
- (29032,-1609049,'You don''t recognize me, do you? Blasted Scourge... They''ve tried to drain you of everything that made you a righteous force of reckoning. Every last ounce of good... Everything that made you an orc!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,1,'special_surprise SAY_EXEC_NOREM_7'),
- (29032,-1609050,'You don''t remember me, do you? Blasted Scourge... They''ve tried to drain you of everything that made you a righteous force of reckoning. Every last ounce of good... Everything that made you a tauren!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,1,'special_surprise SAY_EXEC_NOREM_8'),
- (29032,-1609051,'You don''t remember me, mon? Damn da Scourge! Dey gone ta drain you of everytin dat made ya a mojo masta. Every last ounce of good... Everytin'' dat made ya a troll hero, mon!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,1,'special_surprise SAY_EXEC_NOREM_9'),
- (29032,-1609052,'A pact was made, $Gbrother:sister;! We vowed vengeance against the Lich King! For what he had done to us! We battled the Scourge as Forsaken, pushing them back into the plaguelands and freeing Tirisfal! You and I were champions of the Forsaken!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,1,'special_surprise SAY_EXEC_THINK_1'),
- (29032,-1609053,'You must remember the splendor of life, $Gbrother:sister;. You were a champion of the Kaldorei once! This isn''t you!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,1,'special_surprise SAY_EXEC_THINK_2'),
- (29032,-1609054,'Think, $N. Think back. Try and remember the majestic halls of Silvermoon City, where you were born. Remember the splendor of life, $Gbrother:sister;. You were a champion of the sin''dorei once! This isn''t you.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,6,'special_surprise SAY_EXEC_THINK_3'),
- (29032,-1609055,'Think, $N. Think back. Try and remember the proud mountains of Argus, where you were born. Remember the splendor of life, $Gbrother:sister;. You were a champion of the draenei once! This isn''t you.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,6,'special_surprise SAY_EXEC_THINK_4'),
- (29032,-1609056,'Think, $N. Think back. Try and remember the snow capped mountains o'' Dun Morogh! Ye were born there, $Glad:lass;. Remember the splendor o'' life, $N! Ye were a champion o'' the dwarves once! This isn''t ye!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,6,'special_surprise SAY_EXEC_THINK_5'),
- (29032,-1609057,'Think, $N. Think back. Try and remember Gnomeregan before those damned troggs! Remember the feel of an [arclight spanner] $Gbrother:sister;. You were a champion of gnome-kind once! This isn''t you.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,6,'special_surprise SAY_EXEC_THINK_6'),
- (29032,-1609058,'Think, $N. Think back. Try and remember the hills and valleys of Elwynn, where you were born. Remember the splendor of life, $Gbrother:sister;. You were a champion of the Alliance once! This isn''t you.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,6,'special_surprise SAY_EXEC_THINK_7'),
- (29032,-1609059,'Think, $N. Think back. Try and remember Durotar, $Gbrother:sister;! Remember the sacrifices our heroes made so that we could be free of the blood curse. Harken back to the Valley of Trials, where we were reborn into a world without demonic influence. We found the splendor of life, $N. Together! This isn''t you. You were a champion of the Horde once!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,6,'special_surprise SAY_EXEC_THINK_8'),
- (29032,-1609060,'Think, $N. Think back. Try and remember the rolling plains of Mulgore, where you were born. Remember the splendor of life, $Gbrother:sister;. You were a champion of the tauren once! This isn''t you.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,6,'special_surprise SAY_EXEC_THINK_9'),
- (29032,-1609061,'TINK $N. Tink back, mon! We be Darkspear, mon! Bruddas and sistas! Remember when we fought the Zalazane and done took he head and freed da Echo Isles? MON! TINK! You was a champion of da Darkspear trolls!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,6,'special_surprise SAY_EXEC_THINK_10'),
- (29032,-1609062,'Listen to me, $N. You must fight against the Lich King''s control. He is a monster that wants to see this world - our world - in ruin. Don''t let him use you to accomplish his goals. You were once a hero and you can be again. Fight, damn you! Fight his control!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,5,'special_surprise SAY_EXEC_LISTEN_1'),
- (29032,-1609063,'Listen to me, $N Ye must fight against the Lich King''s control. He''s a monster that wants to see this world - our world - in ruin. Don''t let him use ye to accomplish his goals. Ye were once a hero and ye can be again. Fight, damn ye! Fight his control!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,5,'special_surprise SAY_EXEC_LISTEN_2'),
- (29032,-1609064,'Listen to me, $N. You must fight against the Lich King''s control. He is a monster that wants to see this world - our world - in ruin. Don''t let him use you to accomplish his goals AGAIN. You were once a hero and you can be again. Fight, damn you! Fight his control!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,5,'special_surprise SAY_EXEC_LISTEN_3'),
- (29032,-1609065,'Listen ta me, $Gbrudda:sista;. You must fight against da Lich King''s control. He be a monstar dat want ta see dis world - our world - be ruined. Don''t let he use you ta accomplish he goals. You be a hero once and you be a hero again! Fight it, mon! Fight he control!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,5,'special_surprise SAY_EXEC_LISTEN_4'),
- (29032,-1609066,'What''s going on in there? What''s taking so long, $N?',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,0,0,'special_surprise SAY_PLAGUEFIST'),
- (29032,-1609067,'There... There''s no more time for me. I''m done for. Finish me off, $N. Do it or they''ll kill us both. $N... Remember Silvermoon. This world is worth saving!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,18,'special_surprise SAY_EXEC_TIME_1'),
- (29032,-1609068,'There... There''s no more time for me. I''m done for. Finish me off, $N. Do it or they''ll kill us both. $N... Remember Argus. Don''t let that happen to this world.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,18,'special_surprise SAY_EXEC_TIME_2'),
- (29032,-1609069,'There... There''s no more time for me. I''m done for. Finish me off, $N. Do it or they''ll kill us both $N... For KHAAAAAAAAZZZ MODAAAAAANNNNNN!!!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,18,'special_surprise SAY_EXEC_TIME_3'),
- (29032,-1609070,'There... There''s no more time for me. I''m done for. Finish me off, $N. Do it or they''ll kill us both. $N... Remember Tirisfal! This world is worth saving!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,18,'special_surprise SAY_EXEC_TIME_4'),
- (29032,-1609071,'There... There''s no more time for me. I''m done for. Finish me off, $N. Do it or they''ll kill us both. $N... Remember Gnomeregan! This world is worth saving.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,18,'special_surprise SAY_EXEC_TIME_5'),
- (29032,-1609072,'There... There''s no more time for me. I''m done for. FInish me off, $N. Do it or they''ll kill us both. $N...Remember Elwynn. This world is worth saving.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,18,'special_surprise SAY_EXEC_TIME_6'),
- (29032,-1609073,'There... There''s no more time for me. I''m done for. Finish me off, $N. Do it or they''ll kill us both. $N... Remember Teldrassil, our beloved home. This world is worth saving.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,18,'special_surprise SAY_EXEC_TIME_7'),
- (29032,-1609074,'There... There''s no more time for me. I''m done for. Finish me off, $N. Do it or they''ll kill us both. $N... For the Horde! This world is worth saving.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,18,'special_surprise SAY_EXEC_TIME_8'),
- (29032,-1609075,'There... There''s no more time for me. I''m done for. Finish me off, $N. Do it or they''ll kill us both. $N... Remember Mulgore. This world is worth saving.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,18,'special_surprise SAY_EXEC_TIME_9'),
- (29032,-1609076,'Der... Der''s no more time for me. I be done for. Finish me off $N. Do it or they''ll kill us both. $N... Remember Sen''jin Village, mon! Dis world be worth saving!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,18,'special_surprise SAY_EXEC_TIME_10'),
- (29032,-1609077,'Do it, $N! Put me out of my misery!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,1,'special_surprise SAY_EXEC_WAITING'),
- (29032,-1609078,'%s dies from his wounds.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,2,0,0,'special_surprise EMOTE_DIES'),
- (28406,-1609080,'No potions!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'dk_initiate SAY_DUEL_A'),
- (28406,-1609081,'Remember this day, $n, for it is the day that you will be thoroughly owned.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'dk_initiate SAY_DUEL_B'),
- (28406,-1609082,'I''m going to tear your heart out, cupcake!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'dk_initiate SAY_DUEL_C'),
- (28406,-1609083,'Don''t make me laugh.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'dk_initiate SAY_DUEL_D'),
- (28406,-1609084,'Here come the tears...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'dk_initiate SAY_DUEL_E'),
- (28406,-1609085,'You have challenged death itself!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'dk_initiate SAY_DUEL_F'),
- (28406,-1609086,'The Lich King will see his true champion on this day!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'dk_initiate SAY_DUEL_G'),
- (28406,-1609087,'You''re going down!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'dk_initiate SAY_DUEL_H'),
- (28406,-1609088,'You don''t stand a chance, $n',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'dk_initiate SAY_DUEL_I'),
- (0,-1609089,'I''ll need to get my runeblade and armor... Just need a little more time.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,399,'koltira SAY_BREAKOUT1'),
- (0,-1609090,'I''m still weak, but I think I can get an anti-magic barrier up. Stay inside it or you''ll be destroyed by their spells.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'koltira SAY_BREAKOUT2'),
- (0,-1609091,'Maintaining this barrier will require all of my concentration. Kill them all!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,16,'koltira SAY_BREAKOUT3'),
- (0,-1609092,'There are more coming. Defend yourself! Don''t fall out of the anti-magic field! They''ll tear you apart without its protection!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'koltira SAY_BREAKOUT4'),
- (0,-1609093,'I can''t keep barrier up much longer... Where is that coward?',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'koltira SAY_BREAKOUT5'),
- (0,-1609094,'The High Inquisitor comes! Be ready, death knight! Do not let him draw you out of the protective bounds of my anti-magic field! Kill him and take his head!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'koltira SAY_BREAKOUT6'),
- (0,-1609095,'Stay in the anti-magic field! Make them come to you!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'koltira SAY_BREAKOUT7'),
- (0,-1609096,'The death of the High Inquisitor of New Avalon will not go unnoticed. You need to get out of here at once! Go, before more of them show up. I''ll be fine on my own.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'koltira SAY_BREAKOUT8'),
- (0,-1609097,'I''ll draw their fire, you make your escape behind me.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'koltira SAY_BREAKOUT9'),
- (0,-1609098,'Your High Inquisitor is nothing more than a pile of meat, Crusaders! There are none beyond the grasp of the Scourge!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,0,0,'koltira SAY_BREAKOUT10'),
-
-
--- How To Win Friends And Influence Enemies
- (28939,-1609501,'I''ll tear the secrets from your soul! Tell me about the "Crimson Dawn" and your life may be spared!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'player SAY_PERSUADE1'),
- (28939,-1609502,'Tell me what you know about "Crimson Dawn" or the beatings will continue!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'player SAY_PERSUADE2'),
- (28939,-1609503,'I''m through being courteous with your kind, human! What is the "Crimson Dawn?"',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'player SAY_PERSUADE3'),
- (28939,-1609504,'Is your life worth so little? Just tell me what I need to know about "Crimson Dawn" and I''ll end your suffering quickly.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'player SAY_PERSUADE4'),
- (28939,-1609505,'I can keep this up for a very long time, Scarlet dog! Tell me about the "Crimson Dawn!"',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'player SAY_PERSUADE5'),
- (28939,-1609506,'What is the "Crimson Dawn?"',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'player SAY_PERSUADE6'),
- (28939,-1609507,'"Crimson Dawn!" What is it! Speak!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'player SAY_PERSUADE7'),
- (28939,-1609508,'You''ll be hanging in the gallows shortly, Scourge fiend!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'crusader SAY_CRUSADER1'),
- (28939,-1609509,'You''ll have to kill me, monster! I will tell you NOTHING!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'crusader SAY_CRUSADER2'),
- (28939,-1609510,'You hit like a girl. Honestly. Is that the best you can do?',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'crusader SAY_CRUSADER3'),
- (28939,-1609511,'ARGH! You burned my last good tabard!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'crusader SAY_CRUSADER4'),
- (28939,-1609512,'Argh... The pain... The pain is almost as unbearable as the lashings I received in grammar school when I was but a child.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'crusader SAY_CRUSADER5'),
- (28939,-1609513,'I used to work for Grand Inquisitor Isillien! Your idea of pain is a normal mid-afternoon for me!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'crusader SAY_CRUSADER6'),
- (28939,-1609514,'I''ll tell you everything! STOP! PLEASE!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,20,'break crusader SAY_PERSUADED1'),
- (28939,-1609515,'We... We have only been told that the "Crimson Dawn" is an awakening. You see, the Light speaks to the High General. It is the Light...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,20,'break crusader SAY_PERSUADED2'),
- (28939,-1609516,'The Light that guides us. The movement was set in motion before you came... We... We do as we are told. It is what must be done.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,20,'break crusader SAY_PERSUADED3'),
- (28939,-1609517,'I know very little else... The High General chooses who may go and who must stay behind. There''s nothing else... You must believe me!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,20,'break crusader SAY_PERSUADED4'),
- (28939,-1609518,'LIES! The pain you are about to endure will be talked about for years to come!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'break crusader SAY_PERSUADED5'),
- (28939,-1609519,'NO! PLEASE! There is one more thing that I forgot to mention... A courier comes soon... From Hearthglen. It...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,20,'break crusader SAY_PERSUADED6'),
--- Ambush At The Overlook
- (29076,-1609531,'Hrm, what a strange tree. I must investigate.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'Scarlet Courier SAY_TREE1'),
- (29076,-1609532,'What''s this!? This isn''t a tree at all! Guards! Guards!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'Scarlet Courier SAY_TREE2'),
--- Bloody Breakout
- (28912,-1609561,'I''ll need to get my runeblade and armor... Just need a little more time.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,399,'Koltira Deathweaver SAY_BREAKOUT1'),
- (28912,-1609562,'I''m still weak, but I think I can get an anti-magic barrier up. Stay inside it or you''ll be destroyed by their spells.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'Koltira Deathweaver SAY_BREAKOUT2'),
- (28912,-1609563,'Maintaining this barrier will require all of my concentration. Kill them all!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,16,'Koltira Deathweaver SAY_BREAKOUT3'),
- (28912,-1609564,'There are more coming. Defend yourself! Don''t fall out of the anti-magic field! They''ll tear you apart without its protection!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'Koltira Deathweaver SAY_BREAKOUT4'),
- (28912,-1609565,'I can''t keep barrier up much longer... Where is that coward?',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'Koltira Deathweaver SAY_BREAKOUT5'),
- (28912,-1609566,'The High Inquisitor comes! Be ready, death knight! Do not let him draw you out of the protective bounds of my anti-magic field! Kill him and take his head!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'Koltira Deathweaver SAY_BREAKOUT6'),
- (28912,-1609567,'Stay in the anti-magic field! Make them come to you!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'Koltira Deathweaver SAY_BREAKOUT7'),
- (28912,-1609568,'The death of the High Inquisitor of New Avalon will not go unnoticed. You need to get out of here at once! Go, before more of them show up. I''ll be fine on my own.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'Koltira Deathweaver SAY_BREAKOUT8'),
- (28912,-1609569,'I''ll draw their fire, you make your escape behind me.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'Koltira Deathweaver SAY_BREAKOUT9'),
- (28912,-1609570,'Your High Inquisitor is nothing more than a pile of meat, Crusaders! There are none beyond the grasp of the Scourge!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,0,0,'Koltira Deathweaver SAY_BREAKOUT10'),
- (29001,-1609581,'The Crusade will purge your kind from this world!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,0,0,'High Inquisitor Valroth start'),
- (29001,-1609582,'It seems that I''ll need to deal with you myself. The High Inquisitor comes for you, Scourge!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,0,0,'High Inquisitor Valroth aggro'),
- (29001,-1609583,'You have come seeking deliverance? I have come to deliver!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'High Inquisitor Valroth yell'),
- (29001,-1609584,'LIGHT PURGE YOU!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'High Inquisitor Valroth yell'),
- (29001,-1609585,'Coward!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'High Inquisitor Valroth yell'),
- (29001,-1609586,'High Inquisitor Valroth''s remains fall to the ground.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,2,0,0,'High Inquisitor Valroth death'),
-
-
--- The Light of Dawn
--- pre text
- (29173,-1609201,'Soldiers of the Scourge, stand ready! You will soon be able to unleash your fury upon the Argent Dawn!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14677,1,0,0,'Highlord Darion Mograine'),
- (29173,-1609202,'The sky weeps at the devastation of sister earth! Soon, tears of blood will rain down upon us!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14678,1,0,0,'Highlord Darion Mograine'),
- (29173,-1609203,'Death knights of Acherus, the death march begins!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14681,1,0,0,'Highlord Darion Mograine'),
--- intro
- (29173,-1609204,'Soldiers of the Scourge, death knights of Acherus, minions of the darkness: hear the call of the Highlord!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14679,1,0,22,'Highlord Darion Mograine'),
- (29173,-1609205,'RISE!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14680,1,0,15,'Highlord Darion Mograine'),
- (29173,-1609206,'The skies turn red with the blood of the fallen! The Lich King watches over us, minions! Onward! Leave only ashes and misery in your destructive wake!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14682,1,0,25,'Highlord Darion Mograine'),
--- During the fight
- (29173,-1609207,'Scourge armies approach!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,0,0,'Korfax, Champion of the Light'),
- (29173,-1609208,'Stand fast, brothers and sisters! The Light will prevail!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14487,1,0,0,'Lord Maxwell Tyrosus'),
- (29173,-1609209,'Kneel before the Highlord!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14683,0,0,0,'Highlord Darion Mograine'),
- (29173,-1609210,'You stand no chance!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14684,0,0,0,'Highlord Darion Mograine'),
- (29173,-1609211,'The Scourge will destroy this place!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14685,0,0,0,'Highlord Darion Mograine'),
- (29173,-1609212,'Your life is forfeit.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14686,0,0,0,'Highlord Darion Mograine'),
- (29173,-1609213,'Life is meaningless without suffering.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14687,0,0,0,'Highlord Darion Mograine'),
- (29173,-1609214,'How much longer will your forces hold out?',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14688,0,0,0,'Highlord Darion Mograine'),
- (29173,-1609215,'The Argent Dawn is finished!"',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14689,0,0,0,'Highlord Darion Mograine'),
- (29173,-1609216,'Spare no one!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14690,0,0,0,'Highlord Darion Mograine'),
- (29173,-1609217,'What is this?! My... I cannot strike...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14691,0,0,0,'Highlord Darion Mograine'),
- (29173,-1609218,'Obey me, blade!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14692,1,0,0,'Highlord Darion Mograine'),
- (29173,-1609219,'You will do as I command! I am in control here!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14693,0,0,0,'Highlord Darion Mograine'),
- (29173,-1609220,'I can not... the blade fights me.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14694,0,0,0,'Highlord Darion Mograine'),
- (29173,-1609221,'What is happening to me?',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14695,0,0,0,'Highlord Darion Mograine'),
- (29173,-1609222,'Power...wanes...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14696,0,0,0,'Highlord Darion Mograine'),
- (29173,-1609223,'Ashbringer defies me...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14697,0,0,0,'Highlord Darion Mograine'),
- (29173,-1609224,'Minions, come to my aid!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14698,0,0,0,'Highlord Darion Mograine'),
--- After the fight
- (29173,-1609225,'You cannot win, Darion!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14584,1,0,0,'Highlord Tirion Fordring'),
- (29173,-1609226,'Bring them before the chapel!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14585,1,0,0,'Highlord Tirion Fordring'),
- (29173,-1609227,'Stand down, death knights. We have lost... The Light... This place... No hope...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14699,0,0,68,'Highlord Darion Mograine'),
- (29173,-1609228,'Have you learned nothing, boy? You have become all that your father fought against! Like that coward, Arthas, you allowed yourself to be consumed by the darkness...the hate... Feeding upon the misery of those you tortured and killed!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14586,0,0,378,'Highlord Tirion Fordring'),
- (29173,-1609229,'Your master knows what lies beneath the chapel. It is why he dares not show his face! He''s sent you and your death knights to meet their doom, Darion.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14587,0,0,25,'Highlord Tirion Fordring'),
- (29173,-1609230,'What you are feeling right now is the anguish of a thousand lost souls! Souls that you and your master brought here! The Light will tear you apart, Darion!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14588,0,0,1,'Highlord Tirion Fordring'),
- (29173,-1609231,'Save your breath, old man. It might be the last you ever draw.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14700,0,0,25,'Highlord Darion Mograine'),
- (29173,-1609232,'My son! My dear, beautiful boy!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14493,0,0,0,'Highlord Alexandros Mograine'),
- (29173,-1609233,'Father!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14701,0,0,5,'Highlord Darion Mograine'),
- (29173,-1609234,'Argh...what...is...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14702,0,0,68,'Highlord Darion Mograine'),
- (29173,-1609235,'Father, you have returned!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14703,0,0,0,'Darion Mograine'),
- (29173,-1609236,'You have been gone a long time, father. I thought...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14704,0,0,0,'Darion Mograine'),
- (29173,-1609237,'Nothing could have kept me away from here, Darion. Not from my home and family.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14494,0,0,1,'Highlord Alexandros Mograine'),
- (29173,-1609238,'Father, I wish to join you in the war against the undead. I want to fight! I can sit idle no longer!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14705,0,0,6,'Darion Mograine'),
- (29173,-1609239,'Darion Mograine, you are barely of age to hold a sword, let alone battle the undead hordes of Lordaeron! I couldn''t bear losing you. Even the thought...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14495,0,0,1,'Highlord Alexandros Mograine'),
- (29173,-1609240,'If I die, father, I would rather it be on my feet, standing in defiance against the undead legions! If I die, father, I die with you!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14706,0,0,6,'Darion Mograine'),
- (29173,-1609241,'My son, there will come a day when you will command the Ashbringer and, with it, mete justice across this land. I have no doubt that when that day finally comes, you will bring pride to our people and that Lordaeron will be a better place because of you. But, my son, that day is not today.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14496,0,0,1,'Highlord Alexandros Mograine'),
- (29173,-1609242,'Do not forget...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14497,0,0,6,'Highlord Alexandros Mograine'),
- (29173,-1609243,'Touching...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14803,1,0,0,'The Lich King'),
- (29173,-1609244,'You have''ve betrayed me! You betrayed us all you monster! Face the might of Mograine!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14707,1,0,0,'Highlord Darion Mograine'),
- (29173,-1609245,'He''s mine now...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14805,0,0,0,'The Lich King'),
- (29173,-1609246,'Pathetic...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14804,0,0,0,'The Lich King'),
- (29173,-1609247,'You''re a damned monster, Arthas!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14589,0,0,25,'Highlord Tirion Fordring'),
- (29173,-1609248,'You were right, Fordring. I did send them in to die. Their lives are meaningless, but yours...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14806,0,0,1,'The Lich King'),
- (29173,-1609249,'How simple it was to draw the great Tirion Fordring out of hiding. You''ve left yourself exposed, paladin. Nothing will save you...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14807,0,0,1,'The Lich King'),
- (29173,-1609250,'ATTACK!!!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14488,1,0,0,'Lord Maxwell Tyrosus'),
- (29173,-1609251,'APOCALYPSE!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14808,1,0,0,'The Lich King'),
- (29173,-1609252,'That day is not today...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14708,0,0,0,'Highlord Darion Mograine'),
- (29173,-1609253,'Tirion!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14709,1,0,0,'Highlord Darion Mograine'),
- (29173,-1609254,'ARTHAS!!!!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14591,1,0,0,'Highlord Tirion Fordring'),
- (29173,-1609255,'What is this?',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14809,1,0,0,'The Lich King'),
- (29173,-1609256,'Your end.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14592,1,0,0,'Highlord Tirion Fordring'),
- (29173,-1609257,'Impossible...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14810,1,0,0,'The Lich King'),
- (29173,-1609258,'This... isn''t... over...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14811,1,0,25,'The Lich King'),
- (29173,-1609259,'When next we meet it won''t be on holy ground, paladin.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14812,1,0,1,'The Lich King'),
- (29173,-1609260,'Rise, Darion, and listen...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14593,0,0,0,'Highlord Tirion Fordring'),
- (29173,-1609261,'We have all been witness to a terrible tragedy. The blood of good men has been shed upon this soil! Honorable knights, slain defending their lives - our lives!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14594,0,0,0,'Highlord Tirion Fordring'),
- (29173,-1609262,'And while such things can never be forgotten, we must remain vigilant in our cause!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14595,0,0,0,'Highlord Tirion Fordring'),
- (29173,-1609263,'The Lich King must answer for what he has done and must not be allowed to cause further destruction to our world.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14596,0,0,0,'Highlord Tirion Fordring'),
- (29173,-1609264,'I make a promise to you now, brothers and sisters: The Lich King will be defeated! On this day, I call for a union.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14597,0,0,0,'Highlord Tirion Fordring'),
- (29173,-1609265,'The Argent Dawn and the Order of the Silver Hand will come together as one! We will succeed where so many before us have failed!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14598,0,0,0,'Highlord Tirion Fordring'),
- (29173,-1609266,'We will take the fight to Arthas and tear down the walls of Icecrown!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14599,0,0,15,'Highlord Tirion Fordring'),
- (29173,-1609267,'The Argent Crusade comes for you, Arthas!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14600,1,0,15,'Highlord Tirion Fordring'),
- (29173,-1609268,'So too do the Knights of the Ebon Blade... While our kind has no place in your world, we will fight to bring an end to the Lich King. This I vow!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14710,0,0,1,'Highlord Darion Mograine'),
--- Emotes
- (29173,-1609269,'Thousands of Scourge rise up at the Highlord''s command.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,2,0,0,''),
- (29173,-1609270,'The army marches towards Light''s Hope Chapel.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,2,0,0,''),
- (29173,-1609271,'After over a hundred Defenders of the Light fall, Highlord Tirion Fordring arrives.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,2,0,0,''),
- (29173,-1609272,'%s flee',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,2,0,0,'Orbaz'),
- (29173,-1609273,'%s kneels in defeat before Tirion Fordring.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,2,0,0,'Highlord Darion Mograine'),
- (29173,-1609274,'%s arrives.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,2,0,0,'Highlord Alexandros Mograine'),
- (29173,-1609275,'%s becomes a shade of his past, and walks up to his father.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,2,0,0,'Highlord Darion Mograine'),
- (29173,-1609276,'%s hugs his father.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,2,0,0,'Darion Mograine'),
- (29173,-1609277,'%s disappears, and the Lich King appears.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,2,0,0,'Alexandros'),
- (29173,-1609278,'%s becomes himself again...and is now angry.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,2,0,0,'Highlord Darion Mograine'),
- (29173,-1609279,'%s casts a spell on Tirion.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,2,0,0,'The Lich King'),
- (29173,-1609280,'%s gasps for air.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,2,0,0,'Highlord Tirion Fordring'),
- (29173,-1609281,'%s casts a powerful spell, killing the Defenders and knocking back the others.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,2,0,0,'The Lich King'),
- (29173,-1609282,'%s throws the Corrupted Ashbringer to Tirion, who catches it. Tirion becomes awash with Light, and the Ashbringer is cleansed.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,2,0,0,'Highlord Darion Mograine'),
- (29173,-1609283,'%s collapses.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,2,0,0,'Highlord Darion Mograine'),
- (29173,-1609284,'%s charges towards the Lich King, Ashbringer in hand and strikes the Lich King.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,2,0,0,'Highlord Tirion Fordring'),
- (29173,-1609285,'%s disappears. Tirion walks over to where Darion lay',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,2,0,0,'The Lich King'),
- (29173,-1609286,'Light washes over the chapel ? the Light of Dawn is uncovered.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,2,0,0,''),
- (25504,-1750040,'My father''s aura is quite strong, he cannot be far. Could you be a doll and fight off the monsters wandering throught the mist?',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'npc_mootoo_the_younger'),
- (25504,-1750041,'Watch out for the monsters!Which way should we go first? Let''s try this way...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'npc_mootoo_the_younger'),
- (25504,-1750042,'What could this be?',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'npc_mootoo_the_younger'),
- (25504,-1750043,'There''s no sign of it ending! Where could my father be?',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'npc_mootoo_the_younger'),
- (25504,-1750044,'Father! You''re safe!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'npc_mootoo_the_younger'),
- (25589,-1700003,'I''ll make you a deal: If you get me out of here alive, you''ll get a reward larger than you can imagine!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'npc_bonker_togglevolt'),
- (25589,-1700002,'I AM NOT AN APPETIZER!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'npc_bonker_togglevolt'),
- (25589,-1700001,'Right then, no time to waste. Lets get outa here!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,'npc_bonker_togglevolt');
-
--- moved from world_spells_full.sql
-UPDATE `script_texts` SET `type`=3 WHERE `entry` IN (-1532089,-1532090);
diff --git a/sql/scripts/world_script_waypoints.sql b/sql/scripts/world_script_waypoints.sql
deleted file mode 100644
index da727e4056e..00000000000
--- a/sql/scripts/world_script_waypoints.sql
+++ /dev/null
@@ -1,2375 +0,0 @@
--- Up to TC 11181
-
--- This file contains all waypoints used by escortAI scripts
-/*
-DROP TABLE IF EXISTS script_waypoint;
-CREATE TABLE `script_waypoint` (
- `entry` mediumint(8) unsigned NOT NULL DEFAULT '0' COMMENT 'creature_template `entry`',
- pointid mediumint(8) unsigned NOT NULL DEFAULT '0',
- location_x float NOT NULL DEFAULT '0',
- location_y float NOT NULL DEFAULT '0',
- location_z float NOT NULL DEFAULT '0',
- waittime int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'waittime in millisecs',
- point_comment text,
- PRIMARY KEY (entry, pointid)
-) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Script Creature waypoints';
-*/
-
-DELETE FROM `script_waypoint` WHERE `entry`=26170;
-INSERT INTO `script_waypoint` VALUES
- (26170,1,3700.08,3574.54,473.322,0, ''),
- (26170,2,3705.94,3573.63,476.841,0, ''),
- (26170,3,3714.32,3572.3,477.442,0, ''),
- (26170,4,3720.19,3563.44,477.441,0, ''),
- (26170,5,3721.24,3561.95,477.44,0, '');
-
-DELETE FROM `script_waypoint` WHERE `entry`=24156;
-INSERT INTO `script_waypoint` VALUES
- (24156,1,1859.74,-6178.15,24.3033,0, ''),
- (24156,2,1866.06,-6172.81,23.9216,0, ''),
- (24156,3,1876.43,-6167.42,23.7332,0, ''),
- (24156,4,1903.37,-6167.9,23.312,0, ''),
- (24156,5,1934.43,-6168.46,23.7148,0, ''),
- (24156,6,1942.38,-6168.21,23.7133,0, ''),
- (24156,7,1953.48,-6172.4,24.2785,0, ''),
- (24156,8,1969.21,-6179.69,23.8501,0, ''),
- (24156,9,1992.18,-6177.24,21.3992,0, ''),
- (24156,10,2015.73,-6174.73,15.3766,0, ''),
- (24156,11,2016.99,-6156.39,12.5927,0, ''),
- (24156,12,2018.14,-6130.62,6.31995,0, ''),
- (24156,13,2043.73,-6119.18,5.17474,0, ''),
- (24156,14,2080.99,-6100.03,7.72235,0, ''),
- (24156,15,2115.47,-6096.21,5.36958,0, ''),
- (24156,16,2130.36,-6151.59,1.24893,0, ''),
- (24156,17,2160.5,-6098.78,3.14191,0, ''),
- (24156,18,2161.26,-6101.38,2.81571,0, ''),
- (24156,19,2172.54,-6108.54,2.26422,0, ''),
- (24156,20,2206.69,-6110.46,0.787735,0, ''),
- (24156,21,2228.23,-6090.02,1.17018,0, ''),
- (24156,22,2262.76,-6056.79,1.82852,0, ''),
- (24156,23,2285.54,-6046.96,1.6305,0, ''),
- (24156,24,2298.05,-6041.56,2.01465,0, ''),
- (24156,25,2307.53,-6031.23,2.93796,0, ''),
- (24156,26,2309.46,-6024.45,3.65369,5000, '');
-
-DELETE FROM `script_waypoint` WHERE `entry`=20415;
-INSERT INTO `script_waypoint` VALUES
- (20415 ,0,2488.77,2184.89,104.64,0, ''),
- (20415 ,1,2478.72,2184.77,98.58,0, ''),
- (20415 ,2,2473.52,2184.71,99.00,0, ''),
- (20415 ,3,2453.15,2184.96,97.09,4000, ''),
- (20415 ,4,2424.18,2184.15,94.11,0, ''),
- (20415 ,5,2413.18,2184.15,93.42,0, ''),
- (20415 ,6,2402.02,2183.90,87.59,0, ''),
- (20415 ,7,2333.31,2181.63,90.03,4000, ''),
- (20415 ,8,2308.73,2184.34,92.04,0, ''),
- (20415 ,9,2303.10,2196.89,94.94,0, ''),
- (20415 ,10,2304.58,2272.23,96.67,0, ''),
- (20415 ,11,2297.09,2271.40,95.16,0, ''),
- (20415 ,12,2297.68,2266.79,95.07,4000, ''),
- (20415 ,13,2297.67,2266.76,95.07,4000, '');
-
-DELETE FROM `script_waypoint` WHERE `entry`=18760;
-INSERT INTO `script_waypoint` VALUES
- (18760 ,0,-2265.21,3091.14,13.91,0, ''),
- (18760 ,1,-2266.80,3091.33,13.82,1000, ''),
- (18760 ,2,-2268.20,3091.14,13.82,7000, 'progress1'),
- (18760 ,3,-2278.32,3098.98,13.82,0, ''),
- (18760 ,4,-2294.82,3110.59,13.82,0, ''),
- (18760 ,5,-2300.71,3114.60,13.82,20000, 'progress2'),
- (18760 ,6,-2300.71,3114.60,13.82,3000, 'progress3'),
- (18760 ,7,-2307.36,3122.76,13.79,0, ''),
- (18760 ,8,-2312.83,3130.55,12.04,0, ''),
- (18760 ,9,-2345.02,3151.00,8.38,0, ''),
- (18760 ,10,-2351.97,3157.61,6.27,0, ''),
- (18760 ,11,-2360.35,3171.48,3.31,0, ''),
- (18760 ,12,-2371.44,3185.41,0.89,0, ''),
- (18760 ,13,-2371.21,3197.92,-0.96,0, ''),
- (18760 ,14,-2380.35,3210.45,-1.08,0, ''),
- (18760 ,15,-2384.74,3221.25,-1.17,0, ''),
- (18760 ,16,-2386.15,3233.39,-1.29,0, ''),
- (18760 ,17,-2383.45,3247.79,-1.32,0, ''),
- (18760 ,18,-2367.50,3265.64,-1.33,0, ''),
- (18760 ,19,-2354.90,3273.30,-1.50,0, ''),
- (18760 ,20,-2348.88,3280.58,-0.09,0, ''),
- (18760 ,21,-2349.06,3295.86,-0.95,0, ''),
- (18760 ,22,-2350.43,3328.27,-2.10,0, ''),
- (18760 ,23,-2346.76,3356.27,-2.82,0, ''),
- (18760 ,24,-2340.56,3370.68,-4.02,0, ''),
- (18760 ,25,-2318.84,3384.60,-7.61,0, ''),
- (18760 ,26,-2313.99,3398.61,-10.40,0, ''),
- (18760 ,27,-2320.85,3414.49,-11.49,0, ''),
- (18760 ,28,-2338.26,3426.06,-11.46,0, ''),
- (18760 ,29,-2342.67,3439.44,-11.32,12000, 'progress4'),
- (18760 ,30,-2342.67,3439.44,-11.32,7000, 'emote bye'),
- (18760 ,31,-2342.67,3439.44,-11.32,5000, 'cat form'),
- (18760 ,32,-2344.60,3461.27,-10.44,0, ''),
- (18760 ,33,-2396.81,3517.17,-3.55,0, ''),
- (18760 ,34,-2439.23,3523.00,-1.05,0, '');
-
-DELETE FROM `script_waypoint` WHERE `entry`=9623;
-INSERT INTO `script_waypoint` VALUES
- (9623 ,1,-6380.38,-1965.14,-258.292,5000, ''),
- (9623 ,2,-6383.06,-1962.9,-258.936,0, ''),
- (9623 ,3,-6391.09,-1956.13,-260.291,0, ''),
- (9623 ,4,-6395.29,-1933.58,-262.949,0, ''),
- (9623 ,5,-6396.58,-1919.93,-263.838,0, ''),
- (9623 ,6,-6389.01,-1912.64,-260.689,0, ''),
- (9623 ,7,-6369.19,-1892.87,-255.924,0, ''),
- (9623 ,8,-6373.77,-1879.36,-259.268,0, ''),
- (9623 ,9,-6377.55,-1869.56,-260.503,0, ''),
- (9623 ,10,-6376.58,-1860.79,-260.026,0, ''),
- (9623 ,11,-6373.13,-1847.22,-259.249,0, ''),
- (9623 ,12,-6370.54,-1837.04,-260.007,0, ''),
- (9623 ,13,-6372.52,-1829.16,-260.071,0, ''),
- (9623 ,14,-6377.13,-1815.94,-262.632,0, ''),
- (9623 ,15,-6380.27,-1806.95,-265.53,0, ''),
- (9623 ,16,-6386.04,-1790.43,-268.546,0, ''),
- (9623 ,17,-6386.72,-1776.29,-269.851,0, ''),
- (9623 ,18,-6385.92,-1762.31,-271.494,0, ''),
- (9623 ,19,-6384.69,-1744.86,-272.196,0, ''),
- (9623 ,20,-6383.8,-1732.66,-272.222,0, ''),
- (9623 ,21,-6382.66,-1716.96,-272.235,0, ''),
- (9623 ,22,-6381.5,-1703.01,-272.964,0, ''),
- (9623 ,23,-6379.96,-1685.58,-272.842,0, ''),
- (9623 ,24,-6379.34,-1678.61,-272.34,0, ''),
- (9623 ,25,-6364.45,-1636.27,-271.065,0, ''),
- (9623 ,26,-6371.85,-1626.36,-272.188,0, ''),
- (9623 ,27,-6383.5,-1629.01,-272.206,0, ''),
- (9623 ,28,-6388.09,-1635.37,-272.105,5000, ''),
- (9623 ,29,-6375.42,-1637.33,-272.193,0, ''),
- (9623 ,30,-6365.46,-1617.25,-272.141,0, ''),
- (9623 ,31,-6353.79,-1603.48,-271.932,0, ''),
- (9623 ,32,-6340.24,-1592.41,-269.435,0, ''),
- (9623 ,33,-6329.45,-1566.89,-269.895,0, ''),
- (9623 ,34,-6312.2,-1499.06,-269.507,0, ''),
- (9623 ,35,-6304.55,-1468.5,-269.431,0, ''),
- (9623 ,36,-6310.36,-1440.94,-268.427,0, ''),
- (9623 ,37,-6321,-1418.91,-266.525,0, ''),
- (9623 ,38,-6358.76,-1389.97,-267.522,0, ''),
- (9623 ,39,-6378.65,-1375.67,-271.749,0, ''),
- (9623 ,40,-6387.22,-1360.95,-272.109,0, ''),
- (9623 ,41,-6406.95,-1323.87,-271.586,0, ''),
- (9623 ,42,-6405,-1311.92,-271.906,0, ''),
- (9623 ,43,-6395.56,-1303.62,-271.902,0, ''),
- (9623 ,44,-6375.97,-1296.08,-271.865,0, ''),
- (9623 ,45,-6364.39,-1281.23,-269.012,0, ''),
- (9623 ,46,-6353.71,-1263.19,-267.95,0, ''),
- (9623 ,47,-6340.09,-1248.65,-267.441,0, ''),
- (9623 ,48,-6338.21,-1237.11,-267.844,0, ''),
- (9623 ,49,-6336.6,-1219.69,-269.196,0, ''),
- (9623 ,50,-6334.44,-1202.33,-271.527,0, ''),
- (9623 ,51,-6329.56,-1189.82,-270.947,0, ''),
- (9623 ,52,-6324.66,-1179.46,-270.103,0, ''),
- (9623 ,53,-6315.08,-1176.74,-269.735,0, ''),
- (9623 ,54,-6308.49,-1179.12,-269.57,0, ''),
- (9623 ,55,-6302.43,-1181.32,-269.328,5000, ''),
- (9623 ,56,-6298.87,-1185.79,-269.278,0, '');
-
-DELETE FROM `script_waypoint` WHERE `entry`=4508;
-INSERT INTO `script_waypoint` VALUES
- (4508 ,0,2194.38,1791.65,65.48,5000, ''),
- (4508 ,1,2188.56,1805.87,64.45,0, ''),
- (4508 ,2,2187,1843.49,59.33,0, ''),
- (4508 ,3,2163.27,1851.67,56.73,5000, ''),
- (4508 ,4,2137.66,1843.98,48.08,5000, ''),
- (4508 ,5,2140.22,1845.02,48.32,0, ''),
- (4508 ,6,2131.5,1804.29,46.85,0, ''),
- (4508 ,7,2096.18,1789.03,51.13,0, ''),
- (4508 ,8,2074.46,1780.09,55.64,3000, ''),
- (4508 ,9,2055.12,1768.67,58.46,5000, ''),
- (4508 ,10,2037.83,1748.62,60.27,0, ''),
- (4508 ,11,2037.51,1728.94,60.85,0, ''),
- (4508 ,12,2044.7,1711.71,59.71,0, ''),
- (4508 ,13,2067.66,1701.84,57.77,3000, ''),
- (4508 ,14,2078.91,1704.54,56.77,3000, ''),
- (4508 ,15,2097.65,1715.24,54.74,0, ''),
- (4508 ,16,2106.44,1720.98,54.41,0, ''),
- (4508 ,17,2123.96,1732.56,52.27,0, ''),
- (4508 ,18,2153.82,1728.73,51.92,0, ''),
- (4508 ,19,2163.49,1706.33,54.42,0, ''),
- (4508 ,20,2158.75,1695.98,55.70,0, ''),
- (4508 ,21,2142.6,1680.72,58.24,0, ''),
- (4508 ,22,2118.31,1671.54,59.21,0, ''),
- (4508 ,23,2086.02,1672.04,61.24,0, ''),
- (4508 ,24,2068.81,1658.93,61.24,0, ''),
- (4508 ,25,2062.82,1633.31,64.35,3000, ''),
- (4508 ,26,2063.05,1589.16,63.26,0, ''),
- (4508 ,27,2063.67,1577.22,65.89,0, ''),
- (4508 ,28,2057.94,1560.68,68.40,0, ''),
- (4508 ,29,2052.56,1548.05,73.35,0, ''),
- (4508 ,30,2045.22,1543.4,76.65,0, ''),
- (4508 ,31,2034.35,1543.01,79.70,0, ''),
- (4508 ,32,2029.95,1542.94,80.79,0, ''),
- (4508 ,33,2021.34,1538.67,80.8,0, ''),
- (4508 ,34,2012.45,1549.48,79.93,0, ''),
- (4508 ,35,2008.05,1554.92,80.44,0, ''),
- (4508 ,36,2006.54,1562.72,81.11,0, ''),
- (4508 ,37,2003.8,1576.43,81.57,0, ''),
- (4508 ,38,2000.57,1590.06,80.62,0, ''),
- (4508 ,39,1998.96,1596.87,80.22,0, ''),
- (4508 ,40,1991.19,1600.82,79.39,0, ''),
- (4508 ,41,1980.71,1601.44,79.77,3000, ''),
- (4508 ,42,1967.22,1600.18,80.62,3000, ''),
- (4508 ,43,1956.43,1596.97,81.75,3000, ''),
- (4508 ,44,1954.87,1592.02,82.18,0, ''),
- (4508 ,45,1948.35,1571.35,80.96,30000, ''),
- (4508 ,46,1947.02,1566.42,81.80,30000, '');
-
-DELETE FROM `script_waypoint` WHERE `entry`=7784;
-INSERT INTO `script_waypoint` VALUES
- (7784 ,0,-8843.73,-4374.44,43.71,0, ''),
- (7784 ,1,-8834.68,-4373.88,45.71,0, ''),
- (7784 ,2,-8832.93,-4373.85,45.67,0, ''),
- (7784 ,3,-8829.21,-4373.72,44.14,0, ''),
- (7784 ,4,-8825.10,-4373.56,41.44,0, ''),
- (7784 ,5,-8818.88,-4372.75,36.43,0, ''),
- (7784 ,6,-8803.37,-4369.68,30.06,0, ''),
- (7784 ,7,-8786.68,-4366.18,23.91,0, ''),
- (7784 ,8,-8764.97,-4366.94,25.23,0, ''),
- (7784 ,9,-8745.49,-4363.16,22.80,0, ''),
- (7784 ,10,-8724.13,-4353.55,20.72,0, ''),
- (7784 ,11,-8706.77,-4346.14,16.12,0, ''),
- (7784 ,12,-8688.27,-4372.85,13.64,0, ''),
- (7784 ,13,-8668.76,-4380.38,11.69,0, ''),
- (7784 ,14,-8645.19,-4388.62,12.56,0, ''),
- (7784 ,15,-8614.73,-4398.60,9.86,0, ''),
- (7784 ,16,-8560.33,-4411.27,13.17,0, ''),
- (7784 ,17,-8536.45,-4416.49,11.84,0, ''),
- (7784 ,18,-8503.48,-4423.70,13.59,0, ''),
- (7784 ,19,-8471.91,-4430.60,9.56,0, ''),
- (7784 ,20,-8441.36,-4435.31,9.40,0, ''),
- (7784 ,21,-8403.41,-4441.16,11.83,0, ''),
- (7784 ,22,-8371.24,-4446.13,9.47,0, ''),
- (7784 ,23,-8353.96,-4448.79,10.10,0, 'Scorpid'),
- (7784 ,24,-8336.40,-4446.39,8.98,0, ''),
- (7784 ,25,-8303.78,-4441.96,11.89,0, ''),
- (7784 ,26,-8272.20,-4433.31,9.60,0, ''),
- (7784 ,27,-8224.76,-4419.39,13.03,0, ''),
- (7784 ,28,-8193.31,-4406.04,10.17,0, ''),
- (7784 ,29,-8155.65,-4397.74,8.99,0, ''),
- (7784 ,30,-8129.25,-4394.57,10.92,0, ''),
- (7784 ,31,-8104.86,-4399.03,8.93,0, ''),
- (7784 ,32,-8063.15,-4423.40,10.07,0, ''),
- (7784 ,33,-8032.15,-4443.47,9.97,0, ''),
- (7784 ,34,-8015.39,-4454.33,9.39,0, ''),
- (7784 ,35,-7981.64,-4482.44,10.32,0, ''),
- (7784 ,36,-7958.83,-4503.98,9.69,0, ''),
- (7784 ,37,-7932.45,-4528.91,10.08,0, ''),
- (7784 ,38,-7904.09,-4566.67,12.59,0, ''),
- (7784 ,39,-7883.33,-4593.91,12.15,0, ''),
- (7784 ,40,-7862.83,-4624.53,10.21,0, ''),
- (7784 ,41,-7840.79,-4654.26,9.45,0, ''),
- (7784 ,42,-7826.17,-4673.99,10.61,0, ''),
- (7784 ,43,-7807.86,-4698.69,11.24,0, ''),
- (7784 ,44,-7793.88,-4717.55,10.48,0, ''),
- (7784 ,45,-7778.68,-4738.05,8.89,0, ''),
- (7784 ,46,-7746.42,-4780.39,9.84,0, ''),
- (7784 ,47,-7724.11,-4772.75,10.28,0, ''),
- (7784 ,48,-7697.98,-4763.80,9.52,0, ''),
- (7784 ,49,-7665.33,-4752.62,10.56,0, ''),
- (7784 ,50,-7641.47,-4750.33,8.94,0, ''),
- (7784 ,51,-7620.08,-4753.96,8.93,0, ''),
- (7784 ,52,-7603.15,-4757.53,9.06,0, ''),
- (7784 ,53,-7579.43,-4767.07,8.93,0, ''),
- (7784 ,54,-7558.51,-4779.01,9.64,0, ''),
- (7784 ,55,-7536.40,-4789.32,8.92,0, ''),
- (7784 ,56,-7512.07,-4793.50,9.35,0, 'Wastewander'),
- (7784 ,57,-7490.79,-4788.80,10.53,0, ''),
- (7784 ,58,-7469.10,-4785.11,10.42,0, ''),
- (7784 ,59,-7453.18,-4782.41,9.15,0, ''),
- (7784 ,60,-7426.27,-4777.83,9.54,0, ''),
- (7784 ,61,-7393.84,-4770.19,12.57,0, ''),
- (7784 ,62,-7367.25,-4764.17,11.92,0, ''),
- (7784 ,63,-7341.00,-4752.11,10.17,0, ''),
- (7784 ,64,-7321.62,-4744.97,11.58,0, ''),
- (7784 ,65,-7302.35,-4744.35,11.97,0, ''),
- (7784 ,66,-7281.00,-4743.66,11.21,0, ''),
- (7784 ,67,-7258.33,-4742.93,9.64,0, ''),
- (7784 ,68,-7236.70,-4742.24,10.16,0, ''),
- (7784 ,69,-7217.52,-4743.87,10.79,0, ''),
- (7784 ,70,-7201.86,-4746.32,9.58,0, ''),
- (7784 ,71,-7182.01,-4749.41,9.09,0, ''),
- (7784 ,72,-7159.61,-4752.90,9.52,0, ''),
- (7784 ,73,-7139.58,-4756.02,9.53,0, ''),
- (7784 ,74,-7122.60,-4754.91,9.66,0, ''),
- (7784 ,75,-7101.06,-4753.87,8.92,0, ''),
- (7784 ,76,-7082.79,-4752.99,9.97,0, ''),
- (7784 ,77,-7061.81,-4751.98,9.26,0, ''),
- (7784 ,78,-7035.12,-4754.39,9.19,0, ''),
- (7784 ,79,-7013.90,-4758.64,10.28,0, ''),
- (7784 ,80,-7001.71,-4769.73,10.59,0, ''),
- (7784 ,81,-6984.95,-4788.61,9.30,0, ''),
- (7784 ,82,-6970.41,-4788.77,9.42,0, ''),
- (7784 ,83,-6957.16,-4788.92,6.26,0, ''),
- (7784 ,84,-6951.29,-4802.73,4.45,0, ''),
- (7784 ,85,-6944.81,-4816.58,1.60,0, ''),
- (7784 ,86,-6942.06,-4839.40,0.66,5000, '');
-
-DELETE FROM `script_waypoint` WHERE `entry`=1978;
-INSERT INTO `script_waypoint` VALUES
- (1978,0,1406.32,1083.10,52.55,0, ''),
- (1978,1,1400.49,1080.42,52.50,0, 'first say'),
- (1978,2,1388.48,1083.10,52.52,0, ''),
- (1978,3,1370.16,1084.02,52.30,0, ''),
- (1978,4,1359.02,1080.85,52.46,0, ''),
- (1978,5,1341.43,1087.39,52.69,0, ''),
- (1978,6,1321.93,1090.51,50.66,0, ''),
- (1978,7,1312.98,1095.91,47.49,0, ''),
- (1978,8,1301.09,1102.94,47.76,0, ''),
- (1978,9,1297.73,1106.35,50.18,0, ''),
- (1978,10,1295.49,1124.32,50.49,0, ''),
- (1978,11,1294.84,1137.25,51.75,0, ''),
- (1978,12,1292.89,1158.99,52.65,0, ''),
- (1978,13,1290.75,1168.67,52.56,1000, 'complete quest and say last'),
- (1978,14,1287.12,1203.49,52.66,5000, ''),
- (1978,15,1287.12,1203.49,52.66,4000, ''),
- (1978,16,1287.12,1203.49,52.66,5000, ''),
- (1978,17,1287.12,1203.49,52.66,4000, ''),
- (1978,18,1290.72,1207.44,52.69,0, ''),
- (1978,19,1297.50,1207.18,53.74,0, ''),
- (1978,20,1301.32,1220.90,53.74,0, ''),
- (1978,21,1298.55,1220.43,53.74,0, ''),
- (1978,22,1297.59,1211.23,58.47,0, ''),
- (1978,23,1305.01,1206.10,58.51,0, ''),
- (1978,24,1310.51,1207.36,58.51,5000, ''),
- (1978,25,1310.51,1207.36,58.51,5000, ''),
- (1978,26,1310.51,1207.36,58.51,2000, '');
-
-DELETE FROM `script_waypoint` WHERE `entry`=3439;
-INSERT INTO `script_waypoint` VALUES
- (3439,0,1105.090332,-3101.254150,82.706,1000, 'SAY_STARTUP1'),
- (3439,1,1103.204468,-3104.345215,83.113,1000, ''),
- (3439,2,1107.815186,-3106.495361,82.739,1000, ''),
- (3439,3,1104.733276,-3100.830811,82.747,1000, ''),
- (3439,4,1103.242554,-3106.270020,83.133,1000, ''),
- (3439,5,1112.807373,-3106.285400,82.320,1000, ''),
- (3439,6,1112.826782,-3108.908691,82.377,1000, ''),
- (3439,7,1108.053955,-3115.156738,82.894,0, ''),
- (3439,8,1108.355591,-3104.365234,82.377,5000, ''),
- (3439,9,1100.306763,-3097.539063,83.150,0, 'SAY_STARTUP2'),
- (3439,10,1100.562378,-3082.721924,82.768,0, ''),
- (3439,11,1097.512939,-3069.226563,82.206,0, ''),
- (3439,12,1092.964966,-3053.114746,82.351,0, ''),
- (3439,13,1094.010986,-3036.958496,82.888,0, ''),
- (3439,14,1095.623901,-3025.760254,83.392,0, ''),
- (3439,15,1107.656494,-3013.530518,85.653,0, ''),
- (3439,16,1119.647705,-3006.928223,87.019,0, ''),
- (3439,17,1129.991211,-3002.410645,91.232,7000, 'SAY_MERCENARY'),
- (3439,18,1133.328735,-2997.710693,91.675,1000, 'SAY_PROGRESS_1'),
- (3439,19,1131.799316,-2987.948242,91.976,1000, ''),
- (3439,20,1122.028687,-2993.397461,91.536,0, ''),
- (3439,21,1116.614868,-2981.916748,92.103,0, ''),
- (3439,22,1102.239136,-2994.245117,92.074,0, ''),
- (3439,23,1096.366211,-2978.306885,91.873,0, ''),
- (3439,24,1091.971558,-2985.919189,91.730,40000, 'SAY_PROGRESS_2');
-
-DELETE FROM `script_waypoint` WHERE `entry`=7806;
-INSERT INTO `script_waypoint` VALUES
- (7806,0,495.404358,-3478.350830,114.837,0, ''),
- (7806,1,492.704742,-3486.112549,108.627,0, ''),
- (7806,2,487.249756,-3485.764404,107.890,0, ''),
- (7806,3,476.851959,-3489.875977,99.985,0, ''),
- (7806,4,467.212402,-3493.355469,99.819,0, ''),
- (7806,5,460.017029,-3496.984375,104.481,0, ''),
- (7806,6,439.619446,-3500.730225,110.534,0, ''),
- (7806,7,428.326385,-3495.874756,118.662,0, ''),
- (7806,8,424.664032,-3489.381592,121.999,0, ''),
- (7806,9,424.137299,-3470.952637,124.333,0, ''),
- (7806,10,421.791107,-3449.242676,119.126,0, ''),
- (7806,11,404.247070,-3429.376953,117.644,0, ''),
- (7806,12,335.465271,-3430.717773,116.456,0, ''),
- (7806,13,317.160126,-3426.708984,116.226,0, ''),
- (7806,14,331.180115,-3464.002197,117.143,0, ''),
- (7806,15,336.393616,-3501.877441,118.201,0, ''),
- (7806,16,337.251312,-3544.764648,117.284,0, ''),
- (7806,17,337.748932,-3565.415527,116.797,0, ''),
- (7806,18,336.010925,-3597.363037,118.225,0, ''),
- (7806,19,324.619141,-3622.884033,119.811,0, ''),
- (7806,20,308.027466,-3648.600098,123.047,0, ''),
- (7806,21,276.325409,-3685.738525,128.356,0, ''),
- (7806,22,239.981064,-3717.330811,131.874,0, ''),
- (7806,23,224.950974,-3730.169678,132.125,0, ''),
- (7806,24,198.707870,-3768.292725,129.420,0, ''),
- (7806,25,183.758316,-3791.068848,128.045,0, ''),
- (7806,26,178.110657,-3801.575439,128.370,3000, 'SAY_OOX_DANGER'),
- (7806,27,162.215225,-3827.014160,129.424,0, ''),
- (7806,28,141.664734,-3864.519287,131.419,0, ''),
- (7806,29,135.301697,-3880.089111,132.120,0, ''),
- (7806,30,122.461151,-3910.071533,135.605,0, ''),
- (7806,31,103.376175,-3937.725098,137.342,0, ''),
- (7806,32,81.414474,-3958.614258,138.469,0, ''),
- (7806,33,55.378139,-3982.004639,136.520,0, ''),
- (7806,34,13.983131,-4013.952881,126.903,0, ''),
- (7806,35,-21.658007,-4048.713623,118.068,0, ''),
- (7806,36,-52.443058,-4081.209717,117.477,0, ''),
- (7806,37,-102.710854,-4116.760742,118.666,0, ''),
- (7806,38,-92.996193,-4135.847168,119.310,0, ''),
- (7806,39,-86.391273,-4153.331055,122.502,0, ''),
- (7806,40,-85.746086,-4163.600586,121.892,0, ''),
- (7806,41,-90.544006,-4183.577637,117.587,0, ''),
- (7806,42,-110.223564,-4205.861328,121.878,0, ''),
- (7806,43,-115.257607,-4211.962402,121.878,3000, 'SAY_OOX_DANGER'),
- (7806,44,-128.594650,-4233.343750,117.766,0, ''),
- (7806,45,-135.358917,-4258.120117,117.562,0, ''),
- (7806,46,-156.832428,-4258.961914,120.059,0, ''),
- (7806,47,-167.119873,-4274.102539,117.062,0, ''),
- (7806,48,-176.291016,-4287.594727,118.721,0, ''),
- (7806,49,-196.992981,-4315.815430,117.588,0, ''),
- (7806,50,-209.329300,-4331.671387,115.142,0, ''),
- (7806,51,-232.292236,-4356.015625,108.543,0, ''),
- (7806,52,-232.159683,-4370.904297,102.815,0, ''),
- (7806,53,-210.271133,-4389.896973,84.167,0, ''),
- (7806,54,-187.940186,-4407.532715,70.987,0, ''),
- (7806,55,-181.353577,-4418.771973,64.778,0, ''),
- (7806,56,-170.529861,-4440.438965,58.943,0, ''),
- (7806,57,-141.428543,-4465.323242,45.963,0, ''),
- (7806,58,-120.993629,-4487.088379,32.075,0, ''),
- (7806,59,-104.134621,-4501.837402,25.051,0, ''),
- (7806,60,-84.154663,-4529.436523,11.952,0, ''),
- (7806,61,-88.698898,-4544.626465,9.055,0, ''),
- (7806,62,-100.603447,-4575.034180,11.388,0, ''),
- (7806,63,-106.908669,-4600.407715,11.046,0, ''),
- (7806,64,-106.831703,-4620.503418,11.057,3000, 'SAY_OOX_COMPLETE');
-
-DELETE FROM `script_waypoint` WHERE `entry`=4962;
-INSERT INTO `script_waypoint` VALUES
- (4962,0,-3804.438965,-828.048035,10.093068,0, ''),
- (4962,1,-3803.934326,-835.772400,10.077722,0, ''),
- (4962,2,-3792.629150,-835.670898, 9.655657,0, ''),
- (4962,3,-3772.433838,-835.345947,10.868981,0, ''),
- (4962,4,-3765.937256,-840.128601,10.885593,0, ''),
- (4962,5,-3738.633789,-830.997498,11.057384,0, ''),
- (4962,6,-3690.224121,-862.261597, 9.960449,0, '');
-
-DELETE FROM `script_waypoint` WHERE `entry`=10638;
-INSERT INTO `script_waypoint` VALUES
- (10638,0,-4903.521973,-1368.339844,-52.611,5000, 'SAY_KAN_START'),
- (10638,1,-4906.004395,-1367.048096,-52.611,0, '');
-
-DELETE FROM `script_waypoint` WHERE `entry`=7780;
-INSERT INTO `script_waypoint` VALUES
- (7780,0,261.058868,-2757.876221,122.553,0, ''),
- (7780,1,259.812195,-2758.249023,122.555,0, 'SAY_RIN_FREE'),
- (7780,2,253.823441,-2758.619141,122.562,0, ''),
- (7780,3,241.394791,-2769.754883,123.309,0, ''),
- (7780,4,218.915588,-2783.397461,123.355,0, ''),
- (7780,5,209.088196,-2789.676270,122.001,0, ''),
- (7780,6,204.453568,-2792.205811,120.620,0, ''),
- (7780,7,182.012604,-2809.995361,113.887,0, 'summon'),
- (7780,8,164.411591,-2825.162842,107.779,0, ''),
- (7780,9,149.727600,-2833.704346,106.224,0, ''),
- (7780,10,142.448074,-2838.807373,109.665,0, ''),
- (7780,11,133.274963,-2845.135254,112.606,0, ''),
- (7780,12,111.247459,-2861.065674,116.305,0, ''),
- (7780,13,96.104073,-2874.886230,114.397,0, 'summon'),
- (7780,14,73.369942,-2881.184570,117.666,0, ''),
- (7780,15,58.579178,-2889.151611,116.253,0, ''),
- (7780,16,33.214249,-2906.343994,115.083,0, ''),
- (7780,17,19.586519,-2908.712402,117.276,7500, 'SAY_RIN_COMPLETE'),
- (7780,18,10.282522,-2911.607422,118.394,0, ''),
- (7780,19,-37.580383,-2942.730225,117.145,0, ''),
- (7780,20,-68.599411,-2953.694824,116.685,0, ''),
- (7780,21,-102.054253,-2956.965576,116.677,0, ''),
- (7780,22,-135.993637,-2955.743652,115.788,0, ''),
- (7780,23,-171.561600,-2951.417480,115.451,0, '');
-
-DELETE FROM `script_waypoint` WHERE `entry`=18731;
-INSERT INTO `script_waypoint` VALUES
- (18731,0,-157.366,2.177,8.073,0, ''),
- (18731,1,-172.266,-18.280,8.073,0, ''),
- (18731,2,-171.051,-38.748,8.073,0, ''),
- (18731,3,-170.718,-59.436,8.073,0, ''),
- (18731,4,-156.659,-72.118,8.073,0, ''),
- (18731,5,-142.292,-59.423,8.073,0, ''),
- (18731,6,-141.779,-38.972,8.073,0, ''),
- (18731,7,-142.922,-18.950,8.073,0, ''),
- (18731,8,-157.366,2.177,8.073,0, '');
-
-DELETE FROM `script_waypoint` WHERE `entry`=21027;
-INSERT INTO `script_waypoint` VALUES
- (21027,0,-2714.697266,1326.879395,34.306953,0, ''),
- (21027,1,-2666.364990,1348.222656,34.445557,0, ''),
- (21027,2,-2693.789307,1336.964966,34.445557,0, ''),
- (21027,3,-2715.495361,1328.054443,34.106014,0, ''),
- (21027,4,-2742.530762,1314.138550,33.606144,0, ''),
- (21027,5,-2745.077148,1311.108765,33.630898,0, ''),
- (21027,6,-2749.855225,1302.737915,33.475632,0, ''),
- (21027,7,-2753.639648,1294.059448,33.314930,0, ''),
- (21027,8,-2756.796387,1285.122192,33.391262,0, ''),
- (21027,9,-2750.042969,1273.661987,33.188259,0, ''),
- (21027,10,-2740.378418,1258.846680,33.212521,0, ''),
- (21027,11,-2733.629395,1248.259766,33.640598,0, ''),
- (21027,12,-2727.212646,1238.606445,33.520847,0, ''),
- (21027,13,-2726.377197,1237.264526,33.461823,3000, 'SAY_WIL_PROGRESS1'),
- (21027,14,-2746.383301,1266.390625,33.191952,2000, ''),
- (21027,15,-2746.383301,1266.390625,33.191952,4000, 'SAY_WIL_FIND_EXIT'),
- (21027,16,-2758.927734,1285.134155,33.341728,0, ''),
- (21027,17,-2761.845703,1292.313599,33.209042,0, ''),
- (21027,18,-2758.871826,1300.677612,33.285332,0, ''),
- (21027,19,-2753.928955,1307.755859,33.452457,0, ''),
- (21027,20,-2738.612061,1316.191284,33.482975,0, ''),
- (21027,21,-2727.897461,1320.013916,33.381111,0, ''),
- (21027,22,-2709.458740,1315.739990,33.301838,0, ''),
- (21027,23,-2704.658936,1301.620361,32.463303,0, ''),
- (21027,24,-2704.120117,1298.922607,32.768162,0, ''),
- (21027,25,-2691.798340,1292.846436,33.852642,0, ''),
- (21027,26,-2682.879639,1288.853882,32.995399,0, ''),
- (21027,27,-2661.869141,1279.682495,26.686783,0, ''),
- (21027,28,-2648.943604,1270.272827,24.147522,0, ''),
- (21027,29,-2642.506836,1262.938721,23.512444,0, ''),
- (21027,30,-2636.984863,1252.429077,20.418257,0, ''),
- (21027,31,-2648.113037,1224.984863,8.691818,0, ''),
- (21027,32,-2658.393311,1200.136719,5.492243,0, ''),
- (21027,33,-2668.504395,1190.450562,3.127407,0, ''),
- (21027,34,-2685.930420,1174.360840,5.163924,0, ''),
- (21027,35,-2701.613770,1160.026367,5.611311,0, ''),
- (21027,36,-2714.659668,1149.980347,4.342373,0, ''),
- (21027,37,-2721.443359,1145.002808,1.913474,0, ''),
- (21027,38,-2733.962158,1143.436279,2.620415,0, ''),
- (21027,39,-2757.876709,1146.937500,6.184002,2000, 'SAY_WIL_JUST_AHEAD'),
- (21027,40,-2772.300537,1166.052734,6.331811,0, ''),
- (21027,41,-2790.265381,1189.941650,5.207958,0, ''),
- (21027,42,-2805.448975,1208.663940,5.557623,0, ''),
- (21027,43,-2820.617676,1225.870239,6.266103,0, ''),
- (21027,44,-2831.926758,1237.725830,5.808506,0, ''),
- (21027,45,-2842.578369,1252.869629,6.807481,0, ''),
- (21027,46,-2846.344971,1258.727295,7.386168,0, ''),
- (21027,47,-2847.556396,1266.771729,8.208790,0, ''),
- (21027,48,-2841.654541,1285.809204,7.933223,0, ''),
- (21027,49,-2841.754883,1289.832520,6.990304,0, ''),
- (21027,50,-2871.398438,1302.348145,6.807335,7500, 'SAY_WIL_END');
-
-DELETE FROM `script_waypoint` WHERE `entry`=3465;
-INSERT INTO `script_waypoint` VALUES
- (3465,0,-2095.840820,-3650.001221,61.716,0, ''),
- (3465,1,-2100.193604,-3613.949219,61.604,0, ''),
- (3465,2,-2098.549561,-3601.557129,59.154,0, ''),
- (3465,3,-2093.796387,-3595.234375,56.658,0, ''),
- (3465,4,-2072.575928,-3578.827637,48.844,0, ''),
- (3465,5,-2023.858398,-3568.146240,24.636,0, ''),
- (3465,6,-2013.576416,-3571.499756,22.203,0, ''),
- (3465,7,-2009.813721,-3580.547852,21.791,0, ''),
- (3465,8,-2015.296021,-3597.387695,21.760,0, ''),
- (3465,9,-2020.677368,-3610.296143,21.759,0, ''),
- (3465,10,-2019.990845,-3640.155273,21.759,0, ''),
- (3465,11,-2016.110596,-3664.133301,21.758,0, ''),
- (3465,12,-1999.397095,-3679.435059,21.316,0, ''),
- (3465,13,-1987.455811,-3688.309326,18.495,0, ''),
- (3465,14,-1973.966553,-3687.666748,14.996,0, ''),
- (3465,15,-1949.163940,-3678.054932,11.293,0, ''),
- (3465,16,-1934.091187,-3682.859619,9.897,30000, 'SAY_GIL_AT_LAST'),
- (3465,17,-1935.383911,-3682.322021,10.029,1500, 'SAY_GIL_PROCEED'),
- (3465,18,-1879.039185,-3699.498047,6.582,7500, 'SAY_GIL_FREEBOOTERS'),
- (3465,19,-1852.728149,-3703.778809,6.875,0, ''),
- (3465,20,-1812.989990,-3718.500732,10.572,0, ''),
- (3465,21,-1788.171265,-3722.867188,9.663,0, ''),
- (3465,22,-1767.206665,-3739.923096,10.082,0, ''),
- (3465,23,-1750.194580,-3747.392090,10.390,0, ''),
- (3465,24,-1729.335571,-3776.665527,11.779,0, ''),
- (3465,25,-1715.997925,-3802.404541,12.618,0, ''),
- (3465,26,-1690.711548,-3829.262451,13.905,0, ''),
- (3465,27,-1674.700684,-3842.398682,13.872,0, ''),
- (3465,28,-1632.726318,-3846.109619,14.401,0, ''),
- (3465,29,-1592.734497,-3842.225342,14.981,0, ''),
- (3465,30,-1561.614746,-3839.320801,19.118,0, ''),
- (3465,31,-1544.567627,-3834.393311,18.761,0, ''),
- (3465,32,-1512.514404,-3831.715820,22.914,0, ''),
- (3465,33,-1486.889771,-3836.639893,23.964,0, ''),
- (3465,34,-1434.193604,-3852.702881,18.843,0, ''),
- (3465,35,-1405.794678,-3854.488037,17.276,0, ''),
- (3465,36,-1366.592041,-3852.383789,19.273,0, ''),
- (3465,37,-1337.360962,-3837.827148,17.352,2000, 'SAY_GIL_ALMOST'),
- (3465,38,-1299.744507,-3810.691406,20.801,0, ''),
- (3465,39,-1277.144409,-3782.785156,25.918,0, ''),
- (3465,40,-1263.686768,-3781.251953,26.447,0, ''),
- (3465,41,-1243.674438,-3786.328125,25.281,0, ''),
- (3465,42,-1221.875488,-3784.124512,24.051,0, ''),
- (3465,43,-1204.011230,-3775.943848,24.437,0, ''),
- (3465,44,-1181.706787,-3768.934082,23.368,0, ''),
- (3465,45,-1156.913818,-3751.559326,21.074,0, ''),
- (3465,46,-1138.830688,-3741.809326,17.843,0, ''),
- (3465,47,-1080.101196,-3738.780029,19.805,0, 'SAY_GIL_SWEET'),
- (3465,48,-1069.065186,-3735.006348,19.302,0, ''),
- (3465,49,-1061.941040,-3724.062256,21.086,0, ''),
- (3465,50,-1053.593262,-3697.608643,27.320,0, ''),
- (3465,51,-1044.110474,-3690.133301,24.856,0, ''),
- (3465,52,-1040.260986,-3690.739014,25.342,0, ''),
- (3465,53,-1028.146606,-3688.718750,23.843,7500, 'SAY_GIL_FREED');
-
-DELETE FROM `script_waypoint` WHERE `entry`=10646;
-INSERT INTO `script_waypoint` VALUES
- (10646,0,-4792.401855,-2137.775146,82.423,0, ''),
- (10646,1,-4813.508301,-2141.543457,80.774,0, ''),
- (10646,2,-4828.630859,-2154.309814,82.074,0, ''),
- (10646,3,-4833.772949,-2149.182617,81.676,0, ''),
- (10646,4,-4846.418945,-2136.045410,77.871,0, ''),
- (10646,5,-4865.076660,-2116.549561,76.483,0, ''),
- (10646,6,-4888.434570,-2090.729248,80.907,0, ''),
- (10646,7,-4893.068359,-2085.468994,82.094,0, ''),
- (10646,8,-4907.256836,-2074.929932,84.437,5000, 'SAY_LAKO_LOOK_OUT'),
- (10646,9,-4899.899902,-2062.143555,83.780,0, ''),
- (10646,10,-4897.762207,-2056.520020,84.184,0, ''),
- (10646,11,-4888.331543,-2033.182495,83.654,0, ''),
- (10646,12,-4876.343750,-2003.916138,90.887,0, ''),
- (10646,13,-4872.227051,-1994.173340,91.513,0, ''),
- (10646,14,-4879.569336,-1976.985229,92.185,5000, 'SAY_LAKO_HERE_COME'),
- (10646,15,-4879.049316,-1964.349609,92.001,0, ''),
- (10646,16,-4874.720215,-1956.939819,90.737,0, ''),
- (10646,17,-4869.474609,-1952.612671,89.206,0, ''),
- (10646,18,-4842.466797,-1929.000732,84.147,0, ''),
- (10646,19,-4804.444824,-1897.302734,89.362,0, ''),
- (10646,20,-4798.072754,-1892.383545,89.368,0, ''),
- (10646,21,-4779.447754,-1882.759155,90.169,5000, 'SAY_LAKO_MORE'),
- (10646,22,-4762.081055,-1866.530640,89.481,0, ''),
- (10646,23,-4766.267090,-1861.867798,87.847,0, ''),
- (10646,24,-4782.929688,-1852.174683,78.354,0, ''),
- (10646,25,-4793.605469,-1850.961182,77.658,0, ''),
- (10646,26,-4803.323730,-1855.102661,78.958,0, ''),
- (10646,27,-4807.971680,-1854.501221,77.743,0, ''),
- (10646,28,-4837.212891,-1848.493408,64.488,0, ''),
- (10646,29,-4884.619629,-1840.401123,56.219,0, ''),
- (10646,30,-4889.705566,-1839.623291,54.417,0, ''),
- (10646,31,-4893.904297,-1843.685791,53.012,0, ''),
- (10646,32,-4903.142090,-1872.383545,32.266,0, ''),
- (10646,33,-4910.940918,-1879.864868,29.940,0, ''),
- (10646,34,-4920.047363,-1880.940796,30.597,0, ''),
- (10646,35,-4924.457031,-1881.447144,29.292,0, ''),
- (10646,36,-4966.120117,-1886.033081,10.977,0, ''),
- (10646,37,-4999.369629,-1890.847290,4.430,0, ''),
- (10646,38,-5007.271484,-1891.669678,2.771,0, ''),
- (10646,39,-5013.334473,-1879.588257,-1.947,0, ''),
- (10646,40,-5023.328613,-1855.959961,-17.103,0, ''),
- (10646,41,-5038.513184,-1825.986694,-35.821,0, ''),
- (10646,42,-5048.733887,-1809.798218,-46.457,0, ''),
- (10646,43,-5053.188965,-1791.682983,-57.186,0, ''),
- (10646,44,-5062.093750,-1794.399780,-56.515,0, ''),
- (10646,45,-5052.657227,-1797.044800,-54.734,5000, 'SAY_LAKO_END');
-
-DELETE FROM `script_waypoint` WHERE `entry`=10427;
-INSERT INTO `script_waypoint` VALUES
- (10427,0,-5185.463,-1185.927,45.951,0, ''),
- (10427,1,-5184.880,-1154.210,45.035,0, ''),
- (10427,2,-5175.880,-1126.526,43.701,0, ''),
- (10427,3,-5138.651,-1111.874,44.024,0, ''),
- (10427,4,-5134.728,-1104.796,47.365,0, ''),
- (10427,5,-5129.681,-1097.878,49.449,2500, ''),
- (10427,6,-5125.303,-1080.572,47.033,0, ''),
- (10427,7,-5146.668,-1053.694,28.415,0, ''),
- (10427,8,-5147.463,-1027.539,13.818,0, ''),
- (10427,9,-5139.238,-1018.889,8.220,0, ''),
- (10427,10,-5121.168,-1013.126,-0.619,0, ''),
- (10427,11,-5091.919,-1014.205,-4.902,0, ''),
- (10427,12,-5069.240,-994.299,-4.631,0, ''),
- (10427,13,-5059.975,-944.112,-5.377,0, ''),
- (10427,14,-5013.546,-906.184,-5.490,0, ''),
- (10427,15,-4992.461,-920.983,-4.980,5000, 'SAY_WYVERN'),
- (10427,16,-4976.355,-1002.997,-5.380,0, ''),
- (10427,17,-4958.478,-1033.185,-5.433,0, ''),
- (10427,18,-4953.353,-1052.211,-10.836,0, ''),
- (10427,19,-4937.447,-1056.351,-22.139,0, ''),
- (10427,20,-4908.455,-1050.433,-33.458,0, ''),
- (10427,21,-4905.530,-1056.885,-33.722,0, ''),
- (10427,22,-4920.830,-1073.284,-45.515,0, ''),
- (10427,23,-4933.368,-1082.700,-50.186,0, ''),
- (10427,24,-4935.313,-1092.353,-52.785,0, ''),
- (10427,25,-4929.553,-1101.268,-50.637,0, ''),
- (10427,26,-4920.679,-1100.028,-51.944,10000, 'SAY_COMPLETE'),
- (10427,27,-4920.679,-1100.028,-51.944,0, 'quest complete');
-
-DELETE FROM `script_waypoint` WHERE `entry`=16812;
-INSERT INTO `script_waypoint` VALUES
- (16812,0,-10868.260,-1779.836,90.476,2500, 'Open door,begin walking'),
- (16812,1,-10875.585,-1779.581,90.478,0, ''),
- (16812,2,-10887.447,-1779.258,90.476,0, ''),
- (16812,3,-10894.592,-1780.668,90.476,0, ''),
- (16812,4,-10895.015,-1782.036,90.476,2500, 'Begin Speech after this'),
- (16812,5,-10894.592,-1780.668,90.476,0, 'Resume walking (back to spawn point now) after speech'),
- (16812,6,-10887.447,-1779.258,90.476,0, ''),
- (16812,7,-10875.585,-1779.581,90.478,0, ''),
- (16812,8,-10868.260,-1779.836,90.476,5000, 'close door'),
- (16812,9,-10866.799,-1780.958,90.470,2000, 'Summon mobs,open curtains');
-
-DELETE FROM `script_waypoint` WHERE `entry`=28912;
-INSERT INTO `script_waypoint` VALUES
- (28912,0,1653.518,-6038.374,127.585,0, 'Jump off'),
- (28912,1,1653.978,-6034.614,127.585,5000, 'To Box'),
- (28912,2,1653.854,-6034.726,127.585,500, 'Equip'),
- (28912,3,1652.297,-6035.671,127.585,3000, 'Recover'),
- (28912,4,1639.762,-6046.343,127.948,0, 'Escape'),
- (28912,5,1640.963,-6028.119,134.740,0, ''),
- (28912,6,1625.805,-6029.197,134.740,0, ''),
- (28912,7,1626.845,-6015.085,134.740,0, ''),
- (28912,8,1649.150,-6016.975,133.240,0, ''),
- (28912,9,1653.063,-5974.844,132.652,5000, 'Mount'),
- (28912,10,1654.747,-5926.424,121.191,0, 'Disappear');
-
-DELETE FROM `script_waypoint` WHERE `entry`=11856;
-INSERT INTO `script_waypoint` VALUES
- (11856,0,113.91,-350.13,4.55,0, ''),
- (11856,1,109.54,-350.08,3.74,0, ''),
- (11856,2,106.95,-353.40,3.60,0, ''),
- (11856,3,100.28,-338.89,2.97,0, ''),
- (11856,4,110.11,-320.26,3.47,0, ''),
- (11856,5,109.78,-287.80,5.30,0, ''),
- (11856,6,105.02,-269.71,4.71,0, ''),
- (11856,7,86.71,-251.81,5.34,0, ''),
- (11856,8,64.10,-246.38,5.91,0, ''),
- (11856,9,-2.55,-243.58,6.3,0, ''),
- (11856,10,-27.78,-267.53,-1.08,0, ''),
- (11856,11,-31.27,-283.54,-4.36,0, ''),
- (11856,12,-28.96,-322.44,-9.19,0, ''),
- (11856,13,-35.63,-360.03,-16.59,0, ''),
- (11856,14,-58.30,-412.26,-30.60,0, ''),
- (11856,15,-58.88,-474.17,-44.54,0, ''),
- (11856,16,-45.92,-496.57,-46.26,5000, 'AMBUSH'),
- (11856,17,-40.25,-510.07,-46.05,0, ''),
- (11856,18,-38.88,-520.72,-46.06,5000, 'END');
-
-/* Harrison Jones Zul'Aman - Bad sd2 merge leftover
-DELETE FROM `script_waypoint` WHERE `entry`=24358;
-INSERT INTO `script_waypoint` VALUES
- (24358,0,121.193970,1645.619385,42.021,0, ''),
- (24358,1,132.051468,1642.176025,42.021,5000, 'SAY_AT_GONG'),
- (24358,2,120.670631,1636.346802,42.415,0, ''),
- (24358,3,120.536003,1611.654663,43.473,10000, 'SAY_OPEN_ENTRANCE'),
- (24358,4,120.536003,1611.654663,43.473,0, '');*/
-
-DELETE FROM `script_waypoint` WHERE `entry`=16295;
-INSERT INTO `script_waypoint` VALUES
- (16295,0,7545.070000,-7359.870000,162.354000,4000, 'SAY_START'),
- (16295,1,7550.048340,-7362.237793,162.235657,0, ''),
- (16295,2,7566.976074,-7364.315430,161.738770,0, ''),
- (16295,3,7578.830566,-7361.677734,161.738770,0, ''),
- (16295,4,7590.969238,-7359.053711,162.257660,0, ''),
- (16295,5,7598.354004,-7362.815430,162.256683,4000, 'SAY_PROGRESS_1'),
- (16295,6,7605.861328,-7380.424316,161.937073,0, ''),
- (16295,7,7605.295410,-7387.382813,157.253998,0, ''),
- (16295,8,7606.131836,-7393.893555,156.941925,0, ''),
- (16295,9,7615.207520,-7400.187012,157.142639,0, ''),
- (16295,10,7618.956543,-7402.652832,158.202042,0, ''),
- (16295,11,7636.850586,-7401.756836,162.144791,0, 'SAY_PROGRESS_2'),
- (16295,12,7637.058105,-7404.944824,162.206970,4000, ''),
- (16295,13,7636.910645,-7412.585449,162.366425,0, ''),
- (16295,14,7637.607910,-7425.591797,162.630661,0, ''),
- (16295,15,7637.816895,-7459.057129,163.302704,0, ''),
- (16295,16,7638.859863,-7470.902344,162.517059,0, ''),
- (16295,17,7641.395996,-7488.217285,157.381287,0, ''),
- (16295,18,7634.455566,-7505.451660,154.682159,0, 'SAY_PROGRESS_3'),
- (16295,19,7631.906738,-7516.948730,153.597382,0, ''),
- (16295,20,7622.231445,-7537.037598,151.587112,0, ''),
- (16295,21,7610.921875,-7550.670410,149.639374,0, ''),
- (16295,22,7598.229004,-7562.551758,145.953888,0, ''),
- (16295,23,7588.509277,-7577.755371,148.294479,0, ''),
- (16295,24,7567.339355,-7608.456055,146.006485,0, ''),
- (16295,25,7562.547852,-7617.417969,148.097504,0, ''),
- (16295,26,7561.508789,-7645.064453,151.245163,0, ''),
- (16295,27,7563.337402,-7654.652344,151.227158,0, ''),
- (16295,28,7565.533691,-7658.296387,151.248886,0, ''),
- (16295,39,7571.155762,-7659.118652,151.244568,0, ''),
- (16295,30,7579.119629,-7662.213867,151.651505,0, 'quest complete'),
- (16295,31,7603.768066,-7667.000488,153.997726,0, ''),
- (16295,32,7603.768066,-7667.000488,153.997726,4000, 'SAY_END_1'),
- (16295,33,7603.768066,-7667.000488,153.997726,8000, 'SAY_END_2'),
- (16295,34,7603.768066,-7667.000488,153.997726,0, '');
-
-DELETE FROM `script_waypoint` WHERE `entry`=17969;
-INSERT INTO `script_waypoint` VALUES
- (17969,0,-930.048950,5288.080078,23.848402,0, ''),
- (17969,1,-925.677917,5296.482910,18.183748,0, ''),
- (17969,2,-924.297180,5299.016113,17.710915,0, ''),
- (17969,3,-928.390076,5317.022949,18.208593,0, ''),
- (17969,4,-930.620972,5329.915039,18.773422,0, 'SAY_AMBUSH1'),
- (17969,5,-931.490295,5357.654785,18.027155,0, 'SAY_PROGRESS'),
- (17969,6,-934.777771,5369.341797,22.278048,0, ''),
- (17969,7,-934.521851,5373.407227,22.834690,0, ''),
- (17969,8,-937.008545,5382.980469,22.699078,0, ''),
- (17969,9,-941.948059,5404.141602,22.669743,0, ''),
- (17969,10,-931.244263,5415.846680,23.063961,0, 'at crossroad'),
- (17969,11,-901.497925,5420.315430,24.213270,0, ''),
- (17969,12,-860.311707,5415.617676,23.671139,0, ''),
- (17969,13,-777.988953,5391.982422,23.001669,0, ''),
- (17969,14,-750.362000,5385.786621,22.765791,0, ''),
- (17969,15,-731.339417,5382.449707,22.517065,0, ''),
- (17969,16,-681.235901,5381.377930,22.050159,2500, 'end bridge SAY_AMBUSH2'),
- (17969,17,-637.944458,5384.338379,22.205647,0, 'SAY_END'),
- (17969,18,-608.954407,5408.715332,21.630386,0, ''),
- (17969,19,-598.134277,5413.608398,21.412275,0, ''),
- (17969,20,-571.268982,5420.771973,21.184925,0, ''),
- (17969,21,-553.099915,5424.616211,21.193716,0, ''),
- (17969,22,-524.745483,5443.945313,20.977013,0, ''),
- (17969,23,-502.984985,5446.283691,22.149435,0, ''),
- (17969,24,-472.463959,5449.546875,22.561453,0, ''),
- (17969,25,-454.533264,5461.302246,22.602837,30000, 'quest complete');
-
-DELETE FROM `script_waypoint` WHERE `entry`=467;
-INSERT INTO `script_waypoint` VALUES
- (467,0,-10508.40,1068.00,55.21,0, ''),
- (467,1,-10518.30,1074.84,53.96,0, ''),
- (467,2,-10534.82,1081.92,49.88,0, ''),
- (467,3,-10546.51,1084.88,50.13,0, ''),
- (467,4,-10555.29,1084.45,45.75,0, ''),
- (467,5,-10566.57,1083.53,42.10,0, ''),
- (467,6,-10575.83,1082.34,39.46,0, ''),
- (467,7,-10585.67,1081.08,37.77,0, ''),
- (467,8,-10600.08,1078.19,36.23,0, ''),
- (467,9,-10608.69,1076.08,35.88,0, ''),
- (467,10,-10621.26,1073.00,35.40,0, ''),
- (467,11,-10638.12,1060.18,33.61,0, ''),
- (467,12,-10655.87,1038.99,33.48,0, ''),
- (467,13,-10664.68,1030.54,32.70,0, ''),
- (467,14,-10708.68,1033.86,33.32,0, ''),
- (467,15,-10754.43,1017.93,32.79,0, ''),
- (467,16,-10802.26,1018.01,32.16,0, ''),
- (467,17,-10832.60,1009.04,32.71,0, ''),
- (467,18,-10866.56,1006.51,31.71,0, ''),
- (467,19,-10879.98,1005.10,32.84,0, ''),
- (467,20,-10892.45,1001.32,34.46,0, ''),
- (467,21,-10906.14,997.11,36.15,0, ''),
- (467,22,-10922.26,1002.23,35.74,0, ''),
- (467,23,-10936.32,1023.38,36.52,0, ''),
- (467,24,-10933.35,1052.61,35.85,0, ''),
- (467,25,-10940.25,1077.66,36.49,0, ''),
- (467,26,-10957.09,1099.33,36.83,0, ''),
- (467,27,-10956.53,1119.90,36.73,0, ''),
- (467,28,-10939.30,1150.75,37.42,0, ''),
- (467,29,-10915.14,1202.09,36.55,0, ''),
- (467,30,-10892.59,1257.03,33.37,0, ''),
- (467,31,-10891.93,1306.66,35.45,0, ''),
- (467,32,-10896.17,1327.86,37.77,0, ''),
- (467,33,-10906.03,1368.05,40.91,0, ''),
- (467,34,-10910.18,1389.33,42.62,0, ''),
- (467,35,-10915.42,1417.72,42.93,0, ''),
- (467,36,-10926.37,1421.18,43.04,0, 'walk here and say'),
- (467,37,-10952.31,1421.74,43.40,0, ''),
- (467,38,-10980.04,1411.38,42.79,0, ''),
- (467,39,-11006.06,1420.47,43.26,0, ''),
- (467,40,-11021.98,1450.59,43.09,0, ''),
- (467,41,-11025.36,1491.59,43.15,0, ''),
- (467,42,-11036.09,1508.32,43.28,0, ''),
- (467,43,-11060.68,1526.72,43.19,0, ''),
- (467,44,-11072.75,1527.77,43.20,5000, 'say and quest credit');
-
-DELETE FROM `script_waypoint` WHERE `entry`=2768;
-INSERT INTO `script_waypoint` VALUES
- (2768,0,-2077.73,-2091.17,9.49,0, ''),
- (2768,1,-2077.99,-2105.33,13.24,0, ''),
- (2768,2,-2074.60,-2109.67,14.24,0, ''),
- (2768,3,-2076.60,-2117.46,16.67,0, ''),
- (2768,4,-2073.51,-2123.46,18.42,2000, ''),
- (2768,5,-2073.51,-2123.46,18.42,4000, ''),
- (2768,6,-2066.60,-2131.85,21.56,0, ''),
- (2768,7,-2053.85,-2143.19,20.31,0, ''),
- (2768,8,-2043.49,-2153.73,20.20,10000, ''),
- (2768,9,-2043.49,-2153.73,20.20,20000, ''),
- (2768,10,-2043.49,-2153.73,20.20,10000, ''),
- (2768,11,-2043.49,-2153.73,20.20,2000, ''),
- (2768,12,-2053.85,-2143.19,20.31,0, ''),
- (2768,13,-2066.60,-2131.85,21.56,0, ''),
- (2768,14,-2073.51,-2123.46,18.42,0, ''),
- (2768,15,-2076.60,-2117.46,16.67,0, ''),
- (2768,16,-2074.60,-2109.67,14.24,0, ''),
- (2768,17,-2077.99,-2105.33,13.24,0, ''),
- (2768,18,-2077.73,-2091.17,9.49,0, ''),
- (2768,19,-2066.41,-2086.21,8.97,6000, ''),
- (2768,20,-2066.41,-2086.21,8.97,2000, '');
-
-DELETE FROM `script_waypoint` WHERE `entry`=12818;
-INSERT INTO `script_waypoint` VALUES
- (12818,0,3347.250089,-694.700989,159.925995,0, ''),
- (12818,1,3341.527039,-694.725891,161.124542,4000, ''),
- (12818,2,3338.351074,-686.088138,163.444000,0, ''),
- (12818,3,3352.744873,-677.721741,162.316269,0, ''),
- (12818,4,3370.291016,-669.366943,160.751358,0, ''),
- (12818,5,3381.479492,-659.449097,162.545303,0, ''),
- (12818,6,3389.554199,-648.500000,163.651825,0, ''),
- (12818,7,3396.645020,-641.508911,164.216019,0, ''),
- (12818,8,3410.498535,-634.299622,165.773453,0, ''),
- (12818,9,3418.461426,-631.791992,166.477615,0, ''),
- (12818,10,3429.500000,-631.588745,166.921265,0, ''),
- (12818,11,3434.950195,-629.245483,168.333969,0, ''),
- (12818,12,3438.927979,-618.503235,171.503143,0, ''),
- (12818,13,3444.217529,-609.293640,173.077972,1000, 'Ambush 1'),
- (12818,14,3460.505127,-593.794189,174.342255,0, ''),
- (12818,15,3480.283203,-578.210327,176.652313,0, ''),
- (12818,16,3492.912842,-562.335449,181.396301,0, ''),
- (12818,17,3495.230957,-550.977600,184.652267,0, ''),
- (12818,18,3496.247070,-529.194214,188.172028,0, ''),
- (12818,19,3497.619385,-510.411499,188.345322,1000, 'Ambush 2'),
- (12818,20,3498.498047,-497.787506,185.806274,0, ''),
- (12818,21,3484.218750,-489.717529,182.389862,4000, '');
-
-DELETE FROM `script_waypoint` WHERE `entry`=12858;
-INSERT INTO `script_waypoint` VALUES
- (12858,0,1782.63,-2241.11,109.73,5000, ''),
- (12858,1,1788.88,-2240.17,111.71,0, ''),
- (12858,2,1797.49,-2238.11,112.31,0, ''),
- (12858,3,1803.83,-2232.77,111.22,0, ''),
- (12858,4,1806.65,-2217.83,107.36,0, ''),
- (12858,5,1811.81,-2208.01,107.45,0, ''),
- (12858,6,1820.85,-2190.82,100.49,0, ''),
- (12858,7,1829.60,-2177.49,96.44,0, ''),
- (12858,8,1837.98,-2164.19,96.71,0, 'prepare'),
- (12858,9,1839.99,-2149.29,96.78,0, ''),
- (12858,10,1835.14,-2134.98,96.80,0, ''),
- (12858,11,1823.57,-2118.27,97.43,0, ''),
- (12858,12,1814.99,-2110.35,98.38,0, ''),
- (12858,13,1806.60,-2103.09,99.19,0, ''),
- (12858,14,1798.27,-2095.77,100.04,0, ''),
- (12858,15,1783.59,-2079.92,100.81,0, ''),
- (12858,16,1776.79,-2069.48,101.77,0, ''),
- (12858,17,1776.82,-2054.59,109.82,0, ''),
- (12858,18,1776.88,-2047.56,109.83,0, ''),
- (12858,19,1776.86,-2036.55,109.83,0, ''),
- (12858,20,1776.90,-2024.56,109.83,0, 'win'),
- (12858,21,1776.87,-2028.31,109.83,60000, 'stay'),
- (12858,22,1776.90,-2028.30,109.83,0, '');
-
-DELETE FROM `script_waypoint` WHERE `entry`=15420;
-INSERT INTO `script_waypoint` VALUES
- (15420,0,9294.78,-6682.51,22.42,0, ''),
- (15420,1,9298.27,-6667.99,22.42,0, ''),
- (15420,2,9309.63,-6658.84,22.43,0, ''),
- (15420,3,9304.43,-6649.31,26.46,0, ''),
- (15420,4,9298.83,-6648.00,28.61,0, ''),
- (15420,5,9291.06,-6653.46,31.83,2500, ''),
- (15420,6,9289.08,-6660.17,31.85,5000, ''),
- (15420,7,9291.06,-6653.46,31.83,0, '');
-
-DELETE FROM `script_waypoint` WHERE `entry`=16993;
-INSERT INTO `script_waypoint` VALUES
- (16993,0,-1137.72,4272.10,14.04,5000, ''),
- (16993,1,-1141.34,4232.42,14.63,0, ''),
- (16993,2,-1133.47,4220.88,11.78,0, ''),
- (16993,3,-1126.18,4213.26,13.51,0, ''),
- (16993,4,-1100.12,4204.32,16.41,0, ''),
- (16993,5,-1063.68,4197.92,15.51,0, ''),
- (16993,6,-1027.28,4194.36,15.52,0, ''),
- (16993,7,-995.68,4189.59,19.84,0, ''),
- (16993,8,-970.90,4188.60,24.61,0, ''),
- (16993,9,-961.93,4193.34,26.11,15000, 'Summon 1'),
- (16993,10,-935.52,4210.99,31.98,0, ''),
- (16993,11,-913.42,4218.27,37.29,0, ''),
- (16993,12,-896.53,4207.73,43.23,0, ''),
- (16993,13,-868.49,4194.77,46.75,30000, 'Kneel and Rest Here'),
- (16993,14,-852.83,4198.29,47.28,15000, 'Summon 2'),
- (16993,15,-819.85,4200.50,46.37,0, ''),
- (16993,16,-791.92,4201.96,44.19,0, ''),
- (16993,17,-774.42,4202.46,47.41,0, ''),
- (16993,18,-762.90,4202.17,48.81,0, ''),
- (16993,19,-728.25,4195.35,50.68,0, ''),
- (16993,20,-713.58,4192.07,53.98,0, ''),
- (16993,21,-703.09,4189.74,56.96,0, ''),
- (16993,22,-693.70,4185.43,57.06,0, ''),
- (16993,23,-686.38,4159.81,60.26,0, ''),
- (16993,24,-679.88,4147.04,64.20,0, ''),
- (16993,25,-656.74,4147.72,64.11,0, ''),
- (16993,26,-652.22,4137.50,64.58,0, ''),
- (16993,27,-649.99,4136.38,64.63,30000, 'Quest Credit');
-
-DELETE FROM `script_waypoint` WHERE `entry`=17312;
-INSERT INTO `script_waypoint` VALUES
- (17312,0,-4784.532227,-11051.060547,3.484263,0, ''),
- (17312,1,-4805.509277,-11037.293945,3.043942,0, ''),
- (17312,2,-4827.826172,-11034.398438,1.741959,0, ''),
- (17312,3,-4852.630859,-11033.695313,2.208656,0, ''),
- (17312,4,-4876.791992,-11034.517578,3.175228,0, ''),
- (17312,5,-4895.486816,-11038.306641,9.390890,0, ''),
- (17312,6,-4915.464844,-11048.402344,12.369793,0, ''),
- (17312,7,-4937.288086,-11067.041992,13.857983,0, ''),
- (17312,8,-4966.577637,-11067.507813,15.754786,0, ''),
- (17312,9,-4993.799805,-11056.544922,19.175295,0, ''),
- (17312,10,-5017.836426,-11052.569336,22.476587,0, ''),
- (17312,11,-5039.706543,-11058.459961,25.831593,0, ''),
- (17312,12,-5057.289063,-11045.474609,26.972496,0, ''),
- (17312,13,-5078.828125,-11037.601563,29.053417,0, ''),
- (17312,14,-5104.158691,-11039.195313,29.440195,0, ''),
- (17312,15,-5120.780273,-11039.518555,30.142139,0, ''),
- (17312,16,-5140.833008,-11039.810547,28.788074,0, ''),
- (17312,17,-5161.201660,-11040.050781,27.879545,4000, ''),
- (17312,18,-5171.842285,-11046.803711,27.183821,0, ''),
- (17312,19,-5185.995117,-11056.359375,20.234867,0, ''),
- (17312,20,-5198.485840,-11065.065430,18.872593,0, ''),
- (17312,21,-5214.062500,-11074.653320,19.215731,0, ''),
- (17312,22,-5220.157227,-11088.377930,19.818476,0, ''),
- (17312,23,-5233.652832,-11098.846680,18.349432,0, ''),
- (17312,24,-5250.163086,-11111.653320,16.438959,0, ''),
- (17312,25,-5268.194336,-11125.639648,12.668313,0, ''),
- (17312,26,-5286.270508,-11130.669922,6.912246,0, ''),
- (17312,27,-5317.449707,-11137.392578,4.963446,0, ''),
- (17312,28,-5334.854492,-11154.384766,6.742664,0, ''),
- (17312,29,-5353.874512,-11171.595703,6.903912,20000, ''),
- (17312,30,-5354.240000,-11171.940000,6.890000,0, '');
-
-DELETE FROM `script_waypoint` WHERE `entry`=19685;
-INSERT INTO `script_waypoint` VALUES
- (19685,0,-1863.369019,5419.517090,-10.463668,5000, ''),
- (19685,1,-1861.749023,5416.465332,-10.508068,0, ''),
- (19685,2,-1857.036133,5410.966309,-12.428039,0, ''),
- (19685,3,-1831.539185,5365.472168,-12.428039,0, ''),
- (19685,4,-1813.416504,5333.776855,-12.428039,0, ''),
- (19685,5,-1800.354370,5313.290039,-12.428039,0, ''),
- (19685,6,-1775.624878,5268.786133,-38.809181,0, ''),
- (19685,7,-1770.147339,5259.268066,-38.829231,0, ''),
- (19685,8,-1762.814209,5261.098145,-38.848995,0, ''),
- (19685,9,-1740.110474,5268.858398,-40.208965,0, ''),
- (19685,10,-1725.837402,5270.936035,-40.208965,0, ''),
- (19685,11,-1701.580322,5290.323242,-40.209187,0, ''),
- (19685,12,-1682.877808,5291.406738,-34.429646,0, ''),
- (19685,13,-1670.101685,5291.201172,-32.786007,0, ''),
- (19685,14,-1656.666870,5294.333496,-37.862648,0, ''),
- (19685,15,-1652.035767,5295.413086,-40.245499,0, ''),
- (19685,16,-1620.860596,5300.133301,-40.208992,0, ''),
- (19685,17,-1607.630981,5293.983398,-38.577045,5000, ''),
- (19685,18,-1607.630981,5293.983398,-38.577045,5000, ''),
- (19685,19,-1607.630981,5293.983398,-38.577045,5000, ''),
- (19685,20,-1622.140869,5301.955566,-40.208897,0, ''),
- (19685,21,-1621.131836,5333.112793,-40.208897,0, ''),
- (19685,22,-1637.598999,5342.134277,-40.208790,0, ''),
- (19685,23,-1648.521606,5352.309570,-47.496170,0, ''),
- (19685,24,-1654.606934,5357.419434,-45.870892,0, ''),
- (19685,25,-1633.670044,5422.067871,-42.835541,0, ''),
- (19685,26,-1656.567505,5426.236328,-40.405815,0, ''),
- (19685,27,-1664.932373,5425.686523,-38.846405,0, ''),
- (19685,28,-1681.406006,5425.871094,-38.810928,0, ''),
- (19685,29,-1730.875977,5427.413574,-12.427910,0, ''),
- (19685,30,-1743.509521,5369.599121,-12.427910,0, ''),
- (19685,31,-1877.217041,5303.710449,-12.427989,0, ''),
- (19685,32,-1890.371216,5289.273438,-12.428268,0, ''),
- (19685,33,-1905.505737,5266.534668,2.630672,0, ''),
- (19685,34,-1909.381348,5273.008301,1.663714,10000, ''),
- (19685,35,-1909.381348,5273.008301,1.663714,12000, ''),
- (19685,36,-1909.381348,5273.008301,1.663714,8000, ''),
- (19685,37,-1909.381348,5273.008301,1.663714,15000, ''),
- (19685,38,-1927.561401,5275.324707,1.984987,0, ''),
- (19685,39,-1927.385498,5300.879883,-12.427236,0, ''),
- (19685,40,-1921.063965,5314.318359,-12.427236,0, ''),
- (19685,41,-1965.425415,5379.298828,-12.427236,0, ''),
- (19685,42,-1981.233154,5450.743652,-12.427236,0, ''),
- (19685,43,-1958.022461,5455.904297,0.487659,0, ''),
- (19685,44,-1951.991455,5463.580566,0.874490,10000, ''),
- (19685,45,-1951.991455,5463.580566,0.874490,12000, ''),
- (19685,46,-1968.730225,5481.752930,-12.427846,0, ''),
- (19685,47,-1881.839844,5554.040039,-12.427846,0, ''),
- (19685,48,-1841.566650,5545.965332,-12.427846,0, ''),
- (19685,49,-1837.658325,5523.780273,0.558756,0, ''),
- (19685,50,-1831.321777,5534.821777,1.221819,6000, ''),
- (19685,51,-1831.321777,5534.821777,1.221819,8000, ''),
- (19685,52,-1831.321777,5534.821777,1.221819,5000, ''),
- (19685,53,-1850.060669,5472.610840,0.857320,6000, ''),
- (19685,54,-1850.060669,5472.610840,0.857320,8000, ''),
- (19685,55,-1850.060669,5472.610840,0.857320,9000, ''),
- (19685,56,-1850.060669,5472.610840,0.857320,9000, ''),
- (19685,57,-1850.060669,5472.610840,0.857320,4000, '');
-
-DELETE FROM `script_waypoint` WHERE `entry`=20129;
-INSERT INTO `script_waypoint` VALUES
- (20129,0,-8374.93,-4250.21,-204.38,5000, ''),
- (20129,1,-8374.93,-4250.21,-204.38,16000, ''),
- (20129,2,-8374.93,-4250.21,-204.38,10000, ''),
- (20129,3,-8374.93,-4250.21,-204.38,2000, ''),
- (20129,4,-8439.40,-4180.05,-209.25,0, ''),
- (20129,5,-8437.82,-4120.84,-208.59,10000, ''),
- (20129,6,-8437.82,-4120.84,-208.59,16000, ''),
- (20129,7,-8437.82,-4120.84,-208.59,13000, ''),
- (20129,8,-8437.82,-4120.84,-208.59,18000, ''),
- (20129,9,-8437.82,-4120.84,-208.59,15000, ''),
- (20129,10,-8437.82,-4120.84,-208.59,2000, ''),
- (20129,11,-8467.26,-4198.63,-214.21,0, ''),
- (20129,12,-8667.76,-4252.13,-209.56,0, ''),
- (20129,13,-8703.71,-4234.58,-209.5,14000, ''),
- (20129,14,-8703.71,-4234.58,-209.5,2000, ''),
- (20129,15,-8642.81,-4304.37,-209.57,0, ''),
- (20129,16,-8649.06,-4394.36,-208.46,6000, ''),
- (20129,17,-8649.06,-4394.36,-208.46,18000, ''),
- (20129,18,-8649.06,-4394.36,-208.46,2000, ''),
- (20129,19,-8468.72,-4437.67,-215.45,0, ''),
- (20129,20,-8427.54,-4426,-211.13,0, ''),
- (20129,21,-8364.83,-4393.32,-205.91,0, ''),
- (20129,22,-8304.54,-4357.2,-208.2,18000, ''),
- (20129,23,-8304.54,-4357.2,-208.2,2000, ''),
- (20129,24,-8375.42,-4250.41,-205.14,5000, ''),
- (20129,25,-8375.42,-4250.41,-205.14,5000, '');
-
-DELETE FROM `script_waypoint` WHERE `entry`=6575;
-INSERT INTO `script_waypoint` VALUES
- (6575,0,1945.81,-431.54,16.36,0, ''),
- (6575,1,1946.21,-436.41,16.36,0, ''),
- (6575,2,1950.01,-444.11,14.63,0, ''),
- (6575,3,1956.08,-449.34,13.12,0, ''),
- (6575,4,1966.59,-450.55,11.27,0, ''),
- (6575,5,1976.09,-447.51,11.27,0, ''),
- (6575,6,1983.42,-435.85,11.27,0, ''),
- (6575,7,1978.17,-428.81,11.27,0, ''),
- (6575,8,1973.97,-422.08,9.04,0, ''),
- (6575,9,1963.84,-418.90,6.17,0, ''),
- (6575,10,1961.22,-422.74,6.17,0, ''),
- (6575,11,1964.80,-431.26,6.17,300000, '');
-
-DELETE FROM `script_waypoint` WHERE `entry`=3849;
-INSERT INTO `script_waypoint` VALUES
- (3849,0,-252.92,2126.82,81.17,0, ''),
- (3849,1,-253.88,2131.11,81.21,0, ''),
- (3849,2,-249.66,2142.45,87.01,0, ''),
- (3849,3,-248.08,2143.68,87.01,0, ''),
- (3849,4,-238.87,2139.93,87.01,0, ''),
- (3849,5,-235.47,2149.18,90.59,0, ''),
- (3849,6,-239.89,2156.06,90.62,20000, 'SAY_FREE');
-
-DELETE FROM `script_waypoint` WHERE `entry`=3850;
-INSERT INTO `script_waypoint` VALUES
- (3850,0,-255.33,2117.99,81.17,0, ''),
- (3850,1,-253.88,2131.11,81.21,0, ''),
- (3850,2,-249.66,2142.45,87.01,0, ''),
- (3850,3,-248.08,2143.68,87.01,0, ''),
- (3850,4,-238.87,2139.93,87.01,0, ''),
- (3850,5,-235.47,2149.18,90.59,0, ''),
- (3850,6,-239.89,2156.06,90.62,20000, 'SAY_FREE');
-
-DELETE FROM `script_waypoint` WHERE `entry`=3849;
-INSERT INTO `script_waypoint` VALUES
- (3849,0,-250.923431,2116.264160,81.179,0, 'SAY_FREE_AD'),
- (3849,1,-255.048538,2119.392578,81.179,0, ''),
- (3849,2,-254.129105,2123.454346,81.179,0, ''),
- (3849,3,-253.897552,2130.873535,81.179,0, ''),
- (3849,4,-249.889435,2142.307861,86.972,0, ''),
- (3849,5,-248.204926,2144.017090,87.013,0, ''),
- (3849,6,-240.552826,2140.552734,87.012,0, ''),
- (3849,7,-237.513916,2142.066650,87.012,0, ''),
- (3849,8,-235.638138,2149.231689,90.587,0, ''),
- (3849,9,-237.188019,2151.946045,90.624,0, ''),
- (3849,10,-241.162064,2153.649658,90.624,0, 'SAY_OPEN_DOOR_AD'),
- (3849,11,-241.129700,2154.562988,90.624,5000, ''),
- (3849,12,-241.129700,2154.562988,90.624,5000, 'SAY_POST1_DOOR_AD'),
- (3849,13,-241.129700,2154.562988,90.624,25000, 'SAY_POST2_DOOR_AD');
-
-DELETE FROM `script_waypoint` WHERE `entry`=3850;
-INSERT INTO `script_waypoint` VALUES
- (3850,0,-241.816895,2122.904053,81.179,0, 'SAY_FREE_AS'),
- (3850,1,-247.139297,2124.886475,81.179,0, ''),
- (3850,2,-253.179184,2127.406738,81.179,0, ''),
- (3850,3,-253.897552,2130.873535,81.179,0, ''),
- (3850,4,-249.889435,2142.307861,86.972,0, ''),
- (3850,5,-248.204926,2144.017090,87.013,0, ''),
- (3850,6,-240.552826,2140.552734,87.012,0, ''),
- (3850,7,-237.513916,2142.066650,87.012,0, ''),
- (3850,8,-235.638138,2149.231689,90.587,0, ''),
- (3850,9,-237.188019,2151.946045,90.624,0, ''),
- (3850,10,-241.162064,2153.649658,90.624,0, 'SAY_OPEN_DOOR_AS'),
- (3850,11,-241.129700,2154.562988,90.624,5000, 'cast'),
- (3850,12,-241.129700,2154.562988,90.624,5000, 'SAY_POST_DOOR_AS'),
- (3850,13,-241.129700,2154.562988,90.624,25000, '');
-
-DELETE FROM `script_waypoint` WHERE `entry`=17876;
-INSERT INTO `script_waypoint` VALUES
- (17876,0,2230.91,118.765,82.2947,5000, ''),
- (17876,1,2230.33,114.980,82.2946,0, ''),
- (17876,2,2233.36,111.057,82.2996,0, ''),
- (17876,3,2231.17,108.486,82.6624,0, ''),
- (17876,4,2220.22,114.605,89.4264,0, ''),
- (17876,5,2215.23,115.990,89.4549,0, ''),
- (17876,6,2210.00,106.849,89.4549,0, ''),
- (17876,7,2205.66,105.234,89.4549,0, ''),
- (17876,8,2192.26,112.618,89.4549,0, 'spawn armorer'),
- (17876,9,2181.28,118.612,89.4549,8000, 'get weapon'),
- (17876,10,2181.62,120.385,89.4549,5000, 'get armor'),
- (17876,11,2189.44,113.922,89.4549,0, ''),
- (17876,12,2195.63,110.584,89.4549,0, ''),
- (17876,13,2201.09,115.115,89.4549,0, ''),
- (17876,14,2204.34,121.036,89.4355,0, ''),
- (17876,15,2208.66,129.127,87.9560,0, 'first ambush'),
- (17876,16,2193.09,137.940,88.2164,0, ''),
- (17876,17,2173.39,149.064,87.9227,0, ''),
- (17876,18,2164.25,137.965,85.0595,0, ''),
- (17876,19,2149.31,125.645,77.0858,0, ''),
- (17876,20,2142.78,127.173,75.5954,0, ''),
- (17876,21,2139.28,133.952,73.6386,0, 'second ambush'),
- (17876,22,2139.54,155.235,67.1269,0, ''),
- (17876,23,2145.38,167.551,64.8974,0, ''),
- (17876,24,2134.28,175.304,67.9446,0, ''),
- (17876,25,2118.08,187.387,68.8141,0, ''),
- (17876,26,2105.88,195.461,65.1854,0, 'third ambush'),
- (17876,27,2096.77,196.939,65.2117,0, ''),
- (17876,28,2083.90,209.395,64.8736,0, ''),
- (17876,29,2067.84,224.376,64.8022,30000, 'meeting scarloc'),
- (17876,30,2055.40,242.90,63.3418,0, 'after skarloc'),
- (17876,31,2039.20,266.460,63.0182,10000, 'mount up'),
- (17876,32,2011.77,278.478,65.3388,0, ''),
- (17876,33,2005.08,289.676,66.1179,0, ''),
- (17876,34,2033.11,337.450,66.0948,0, ''),
- (17876,35,2070.30,416.208,66.0893,0, ''),
- (17876,36,2086.76,469.768,65.9182,0, ''),
- (17876,37,2101.70,497.955,61.7881,0, 'road ambush'),
- (17876,38,2133.39,530.933,55.3700,5000, ''),
- (17876,39,2157.91,559.635,48.5157,0, ''),
- (17876,40,2167.34,586.191,42.4394,0, ''),
- (17876,41,2174.17,637.643,33.9002,0, ''),
- (17876,42,2179.31,656.053,34.723,0, ''),
- (17876,43,2183.65,670.941,34.0318,0, ''),
- (17876,44,2201.50,668.616,36.1236,0, ''),
- (17876,45,2221.56,652.747,36.6153,0, ''),
- (17876,46,2238.97,640.125,37.2214,0, ''),
- (17876,47,2251.17,620.574,40.1473,0, ''),
- (17876,48,2261.98,595.303,41.4117,0, ''),
- (17876,49,2278.67,560.172,38.9090,0, ''),
- (17876,50,2336.72,528.327,40.9369,0, ''),
- (17876,51,2381.04,519.612,37.7312,0, ''),
- (17876,52,2412.20,515.425,39.2068,0, ''),
- (17876,53,2452.39,516.174,42.9387,0, ''),
- (17876,54,2467.38,539.389,47.4992,0, ''),
- (17876,55,2470.70,554.333,46.6668,0, ''),
- (17876,56,2478.07,575.321,55.4549,0, ''),
- (17876,57,2480.00,585.408,56.6921,0, ''),
- (17876,58,2482.67,608.817,55.6643,0, ''),
- (17876,59,2485.62,626.061,58.0132,2000, 'dismount'),
- (17876,60,2486.91,626.356,58.0761,0, 'scare horse'),
- (17876,61,2488.58,660.940,57.3913,0, ''),
- (17876,62,2502.56,686.059,55.6252,0, ''),
- (17876,63,2502.08,694.360,55.5083,0, ''),
- (17876,64,2491.46,694.321,55.7163,0, ''),
- (17876,65,2491.10,703.300,55.7630,0, ''),
- (17876,66,2485.64,702.992,55.7917,0, ''),
- (17876,67,2479.10,695.291,55.7901,10000, ''),
- (17876,68,2476.75,693.689,55.7960,0, 'spawn mobs'),
- (17876,69,2475.39,695.983,55.8146,0, ''),
- (17876,70,2477.75,694.473,55.7945,0, ''),
- (17876,71,2481.27,697.747,55.7910,0, 'mobs in doorway'),
- (17876,72,2486.31,703.131,55.7861,5000, ''),
- (17876,73,2490.76,703.511,55.7662,0, ''),
- (17876,74,2491.30,694.792,55.7195,0, ''),
- (17876,75,2518.69,693.876,55.1383,0, ''),
- (17876,76,2531.33,681.914,55.1383,0, ''),
- (17876,77,2568.25,682.654,55.1778,0, ''),
- (17876,78,2589.61,689.981,55.1421,0, ''),
- (17876,79,2634.74,679.833,54.6613,0, ''),
- (17876,80,2630.41,661.464,54.2761,0, ''),
- (17876,81,2629.00,656.982,56.0651,0, ''),
- (17876,82,2620.84,633.007,56.0300,3000, 'stop in church'),
- (17876,83,2622.99,639.178,56.0300,0, 'summon'),
- (17876,84,2628.73,656.693,56.0610,5000, ''),
- (17876,85,2630.34,661.135,54.2738,0, ''),
- (17876,86,2635.38,672.243,54.4508,0, ''),
- (17876,87,2644.13,668.158,55.3797,0, ''),
- (17876,88,2646.82,666.740,56.9898,0, ''),
- (17876,89,2658.22,665.432,57.1725,0, ''),
- (17876,90,2661.88,674.849,57.1725,0, ''),
- (17876,91,2656.23,677.208,57.1725,0, ''),
- (17876,92,2652.28,670.270,61.9353,0, ''),
- (17876,93,2650.79,664.290,61.9302,0, 'summon inn'),
- (17876,94,2658.19,660.454,61.9320,5000, ''),
- (17876,95,2660.57,659.173,61.9370,0, 'speak with Taretha'),
- (17876,96,2658.19,660.454,61.9320,5000, 'epoch calls'),
- (17876,97,2659.84,659.482,61.9361,5000, 'taretha "dies"'),
- (17876,98,2654.28,662.722,61.9313,0, ''),
- (17876,99,2652.37,670.561,61.9368,0, ''),
- (17876,100,2656.05,676.761,57.1727,0, ''),
- (17876,101,2658.49,677.166,57.1727,0, ''),
- (17876,102,2659.28,667.117,57.1727,0, ''),
- (17876,103,2649.71,665.387,57.1727,0, ''),
- (17876,104,2634.79,672.964,54.4577,0, 'outside inn'),
- (17876,105,2635.06,673.892,54.4713,30000, 'getting ready'),
- (17876,106,2634.79,672.964,54.4577,60000, 'when all dead and meet Taretha'),
- (17876,107,2631.72,665.629,54.2923,0, 'run off'),
- (17876,108,2647.40,640.530,55.7634,0, '');
-
-DELETE FROM `script_waypoint` WHERE `entry`=18887;
-INSERT INTO `script_waypoint` VALUES
- (18887,0,2650.06,665.473,61.9305,0, ''),
- (18887,1,2652.44,670.761,61.9370,0, ''),
- (18887,2,2655.96,676.913,57.1725,0, ''),
- (18887,3,2659.40,677.317,57.1725,0, ''),
- (18887,4,2651.75,664.482,57.1725,0, ''),
- (18887,5,2647.49,666.595,57.0824,0, ''),
- (18887,6,2644.37,668.167,55.4182,0, ''),
- (18887,7,2640.96,669.890,54.7567,60000, '');
-
-DELETE FROM `script_waypoint` WHERE `entry`=10096;
-INSERT INTO `script_waypoint` VALUES
- (10096,0,604.802673,-191.081985,-54.058590,0, 'ring'),
- (10096,1,604.072998,-222.106918,-52.743759,0, 'first gate'),
- (10096,2,621.400391,-214.499054,-52.814453,0, 'hiding in corner'),
- (10096,3,601.300781,-198.556992,-53.950256,0, 'ring'),
- (10096,4,631.818359,-180.548126,-52.654770,0, 'second gate'),
- (10096,5,627.390381,-201.075974,-52.692917,0, 'hiding in corner');
-
-DELETE FROM `script_waypoint` WHERE `entry`=9503;
-INSERT INTO `script_waypoint` VALUES
- (9503,0,883.294861,-188.926300,-43.703655,0, ''),
- (9503,1,872.763550,-185.605621,-43.703655,5000, 'b1'),
- (9503,2,867.923401,-188.006393,-43.703655,5000, 'b2'),
- (9503,3,863.295898,-190.795212,-43.703655,5000, 'b3'),
- (9503,4,856.139587,-194.652756,-43.703655,5000, 'b4'),
- (9503,5,851.878906,-196.928131,-43.703655,15000, 'b5'),
- (9503,6,877.035217,-187.048080,-43.703655,0, ''),
- (9503,7,891.198000,-197.924000,-43.620400,0, 'home');
-
-DELETE FROM `script_waypoint` WHERE `entry`=12423;
-INSERT INTO `script_waypoint` VALUES
- (12423,0,-9509.72,-147.03,58.74,0, ''),
- (12423,1,-9517.07,-172.82,58.66,0, '');
-DELETE FROM `script_waypoint` WHERE `entry`=12427;
-INSERT INTO `script_waypoint` VALUES
- (12427,0,-5689.20,-456.44,391.08,0, ''),
- (12427,1,-5700.37,-450.77,393.19,0, '');
-DELETE FROM `script_waypoint` WHERE `entry`=12428;
-INSERT INTO `script_waypoint` VALUES
- (12428,0,2454.09,361.26,31.51,0, ''),
- (12428,1,2472.03,378.08,30.98,0, '');
-DELETE FROM `script_waypoint` WHERE `entry`=12429;
-INSERT INTO `script_waypoint` VALUES
- (12429,0,9654.19,909.58,1272.11,0, ''),
- (12429,1,9642.53,908.11,1269.10,0, '');
-DELETE FROM `script_waypoint` WHERE `entry`=12430;
-INSERT INTO `script_waypoint` VALUES
- (12430,0,161.65,-4779.34,14.64,0, ''),
- (12430,1,140.71,-4813.56,17.04,0, '');
-
-DELETE FROM `script_waypoint` WHERE `entry`=6182;
-INSERT INTO `script_waypoint` VALUES
- (6182,0,-11480.684570,1545.091187,49.898571,0, ''),
- (6182,1,-11466.825195,1530.151733,50.263611,0, ''),
- (6182,2,-11465.213867,1528.343750,50.954369,0, 'entrance hut'),
- (6182,3,-11462.990234,1525.235596,50.937702,0, ''),
- (6182,4,-11461.000000,1526.614014,50.937702,5000, 'pick up rifle'),
- (6182,5,-11462.990234,1525.235596,50.937702,0, ''),
- (6182,6,-11465.213867,1528.343750,50.954369,0, ''),
- (6182,7,-11468.353516,1535.075562,50.400948,15000, 'hold,prepare for wave1'),
- (6182,8,-11468.353516,1535.075562,50.400948,15000, 'hold,prepare for wave2'),
- (6182,9,-11468.353516,1535.075562,50.400948,10000, 'hold,prepare for wave3'),
- (6182,10,-11467.898438,1532.459595,50.348885,0, 'we are done'),
- (6182,11,-11466.064453,1529.855225,50.209351,0, ''),
- (6182,12,-11462.990234,1525.235596,50.937702,0, ''),
- (6182,13,-11461.000000,1526.614014,50.937702,5000, 'deliver rifle'),
- (6182,14,-11462.990234,1525.235596,50.937702,0, ''),
- (6182,15,-11465.213867,1528.343750,50.954369,0, ''),
- (6182,16,-11470.260742,1537.276733,50.378487,0, ''),
- (6182,17,-11475.581055,1548.678833,50.184380,0, 'complete quest'),
- (6182,18,-11482.299805,1557.410034,48.624519,0, '');
-
-DELETE FROM `script_waypoint` WHERE `entry`=7807;
-INSERT INTO `script_waypoint` VALUES
- (7807,0,-4943.74,1715.74,62.74,0, 'SAY_START'),
- (7807,1,-4944.93,1706.66,63.16,0, ''),
- (7807,2,-4942.82,1690.22,64.25,0, ''),
- (7807,3,-4946.47,1669.62,63.84,0, ''),
- (7807,4,-4955.93,1651.88,63.00,0, ''),
- (7807,5,-4967.58,1643.86,64.31,0, ''),
- (7807,6,-4978.12,1607.90,64.30,0, ''),
- (7807,7,-4975.38,1596.16,64.70,0, ''),
- (7807,8,-4972.82,1581.89,61.75,0, ''),
- (7807,9,-4958.65,1581.05,61.81,0, ''),
- (7807,10,-4936.72,1594.89,65.96,0, ''),
- (7807,11,-4885.69,1598.10,67.45,4000, 'first ambush SAY_AMBUSH'),
- (7807,12,-4874.20,1601.73,68.54,0, ''),
- (7807,13,-4816.64,1594.47,78.20,0, ''),
- (7807,14,-4802.20,1571.92,87.01,0, ''),
- (7807,15,-4746.40,1576.11,84.59,0, ''),
- (7807,16,-4739.72,1707.16,94.04,0, ''),
- (7807,17,-4674.03,1840.44,89.17,0, ''),
- (7807,18,-4667.94,1864.11,85.18,0, ''),
- (7807,19,-4668.08,1886.39,81.14,0, ''),
- (7807,20,-4679.43,1932.32,73.76,0, ''),
- (7807,21,-4674.17,1946.66,70.83,5000, 'second ambush SAY_AMBUSH'),
- (7807,22,-4643.94,1967.45,65.27,0, ''),
- (7807,23,-4595.60,2010.75,52.10,0, ''),
- (7807,24,-4562.65,2029.28,45.41,0, ''),
- (7807,25,-4538.56,2032.65,45.28,0, ''),
- (7807,26,-4531.96,2034.15,48.34,0, ''),
- (7807,27,-4507.75,2039.32,51.57,0, ''),
- (7807,28,-4482.74,2045.67,48.15,0, ''),
- (7807,29,-4460.87,2051.54,45.55,0, ''),
- (7807,30,-4449.97,2060.03,45.51,10000, 'third ambush SAY_AMBUSH'),
- (7807,31,-4448.99,2079.05,44.64,0, ''),
- (7807,32,-4436.64,2134.48,28.83,0, ''),
- (7807,33,-4429.25,2170.20,15.44,0, ''),
- (7807,34,-4424.83,2186.11,11.48,0, ''),
- (7807,35,-4416.71,2209.76,7.36,0, ''),
- (7807,36,-4405.25,2231.77,5.94,0, ''),
- (7807,37,-4377.61,2265.45,06.71,15000, 'complete quest SAY_END');
-
-DELETE FROM `script_waypoint` WHERE `entry`=2917;
-INSERT INTO `script_waypoint` VALUES
- (2917,0,4675.812500,598.614563,17.645658,0, 'SAY_REM_START'),
- (2917,1,4672.844238,599.325378,16.417622,0, ''),
- (2917,2,4663.449707,607.430176,10.494752,0, ''),
- (2917,3,4655.969238,613.761353,8.523270,0, ''),
- (2917,4,4640.804688,623.999329,8.377054,0, ''),
- (2917,5,4631.678711,630.801086,6.414999,5000, 'SAY_REM_RAMP1_1'),
- (2917,6,4633.533203,632.476440,6.509831,0, 'ambush'),
- (2917,7,4639.413574,637.120789,13.338119,0, ''),
- (2917,8,4642.352051,637.668152,13.437444,0, ''),
- (2917,9,4645.082031,634.463989,13.437208,5000, 'SAY_REM_RAMP1_2'),
- (2917,10,4642.345215,637.584839,13.435211,0, ''),
- (2917,11,4639.630859,637.233765,13.339752,0, ''),
- (2917,12,4633.363281,632.462280,6.488438,0, ''),
- (2917,13,4624.714844,631.723511,6.264030,0, ''),
- (2917,14,4623.525879,629.718506,6.201339,5000, 'SAY_REM_BOOK'),
- (2917,15,4623.452148,630.369629,6.218942,0, 'SAY_REM_TENT1_1'),
- (2917,16,4622.622070,637.221558,6.312845,0, 'ambush'),
- (2917,17,4619.755371,637.386230,6.312050,5000, 'SAY_REM_TENT1_2'),
- (2917,18,4620.027832,637.367676,6.312050,0, ''),
- (2917,19,4624.154785,637.560303,6.313898,0, ''),
- (2917,20,4622.967773,634.016479,6.294979,0, ''),
- (2917,21,4616.926758,630.303284,6.239193,0, ''),
- (2917,22,4614.546387,616.983337,5.687642,0, ''),
- (2917,23,4610.279297,610.029419,5.442539,0, ''),
- (2917,24,4601.149902,604.111694,2.054856,0, ''),
- (2917,25,4589.618164,597.685730,1.057147,0, ''),
- (2917,26,4577.588379,592.145813,1.120190,0, 'SAY_REM_MOSS (?)'),
- (2917,27,4569.848145,592.177490,1.260874,5000, 'EMOTE_REM_MOSS (?)'),
- (2917,28,4568.791992,590.870911,1.211338,3000, 'SAY_REM_MOSS_PROGRESS (?)'),
- (2917,29,4566.722656,564.077881,1.343084,0, 'ambush'),
- (2917,30,4568.269531,551.958435,5.004200,0, ''),
- (2917,31,4566.731934,551.557861,5.426314,5000, 'SAY_REM_PROGRESS'),
- (2917,32,4566.741699,560.767639,1.703257,0, ''),
- (2917,33,4573.916016,582.566101,0.749801,0, ''),
- (2917,34,4594.206055,598.533020,1.034056,0, ''),
- (2917,35,4601.194824,604.283081,2.060146,0, ''),
- (2917,36,4609.539551,610.844727,5.402220,0, ''),
- (2917,37,4624.800293,618.076477,5.851541,0, ''),
- (2917,38,4632.414063,623.778442,7.286243,0, ''),
- (2917,39,4645.915039,621.983765,8.579967,0, ''),
- (2917,40,4658.669922,611.092651,8.891747,0, ''),
- (2917,41,4671.924316,599.752197,16.01242,5000, 'SAY_REM_REMEMBER'),
- (2917,42,4676.976074,600.649780,17.82566,5000, 'EMOTE_REM_END');
-
-DELETE FROM `script_waypoint` WHERE `entry`=28217;
-INSERT INTO `script_waypoint` VALUES
- (28217,0,5399.96,4509.07,-131.053,0, ''),
- (28217,1,5396.95,4514.84,-131.791, 0, ''),
- (28217,2,5395.16,4524.06,-132.335, 0, ''),
- (28217,3,5400.15,4526.84,-136.058,0, ''),
- (28217,4,5403.53,4527.2,-138.907,0, ''),
- (28217,5,5406.51,4527.47,-141.983,0, ''),
- (28217,6,5409.16,4526.37,-143.902, 0, ''),
- (28217,7,5412.04,4523.05,-143.998, 0, ''),
- (28217,8,5415.23,4521.19,-143.961, 0, ''),
- (28217,9,5417.74,4519.74,-144.292, 0, ''),
- (28217,10,5421.77,4519.79,-145.36,0, ''),
- (28217,11,5426.75,4520.53,-147.931,0, ''),
- (28217,12,5429.06,4521.82,-148.919, 0, ''),
- (28217,13,5436.52,4534.63,-149.618, 0, ''),
- (28217,14,5441.52,4542.23,-149.367, 0, ''),
- (28217,15,5449.06,4553.47,-149.187,0, ''),
- (28217,16,5453.5,4565.61,-147.526, 0, ''),
- (28217,17,5455.04,4578.6,-147.147, 0, ''),
- (28217,18,5462.32,4591.69,-147.738,0, ''),
- (28217,19,5470.04,4603.04,-146.044,0, ''),
- (28217,20,5475.93,4608.86,-143.152,0, ''),
- (28217,21,5484.48,4613.78,-139.19,0, ''),
- (28217,22,5489.03,4616.56,-137.796,0, ''),
- (28217,23,5497.92,4629.89,-135.556,0, ''),
- (28217,24,5514.48,4638.82,-136.19,0, ''),
- (28217,25,5570,4654.5,-134.947,0, ''),
- (28217,26,5578.32,4653.29,-136.896,0, ''),
- (28217,27,5596.56,4642.26,-136.593,0, ''),
- (28217,28,5634.02,4600.35,-137.291,2000, '');
-
-DELETE FROM `script_waypoint` WHERE `entry`=3678;
-INSERT INTO `script_waypoint` VALUES
- (3678,0,-120.864,132.825,-79.2972,5000, 'TYPE_NARALEX_EVENT'),
- (3678,1,-109.944,155.417,-80.4659,0, ''),
- (3678,2,-106.104,198.456,-80.5970,0, ''),
- (3678,3,-110.246,214.763,-85.6669,0, ''),
- (3678,4,-105.609,236.184,-92.1732,0, 'TYPE_NARALEX_PART1'),
- (3678,5,-93.5297,227.956,-90.7522,0, ''),
- (3678,6,-85.3155,226.976,-93.1286,0, ''),
- (3678,7,-62.1510,206.673,-93.5510,0, ''),
- (3678,8,-45.0534,205.580,-96.2435,0, ''),
- (3678,9,-31.1235,234.225,-94.0841,0, ''),
- (3678,10,-49.2158,269.141,-92.8442,0, ''),
- (3678,11,-54.1220,274.717,-92.8442,31000, 'TYPE_NARALEX_PART2'),
- (3678,12,-58.9650,282.274,-92.5380,0, ''),
- (3678,13,-38.3566,306.239,-90.0192,0, ''),
- (3678,14,-28.8928,312.842,-89.2155,0, ''),
- (3678,15,-1.58198,296.127,-85.5984,0, ''),
- (3678,16,9.89992,272.008,-85.7759,0, ''),
- (3678,17,26.8162,259.218,-87.3938,0, ''),
- (3678,18,49.1166,227.259,-88.3379,0, ''),
- (3678,19,54.4171,209.316,-90.0000,1500, 'SAY_BEYOND_THIS_CORRIDOR'),
- (3678,20,71.0380,205.404,-93.0422,0, ''),
- (3678,21,81.5941,212.832,-93.0154,0, ''),
- (3678,22,94.3376,236.933,-95.8261,0, ''),
- (3678,23,114.619,235.908,-96.0495,0, ''),
- (3678,24,114.777,237.155,-96.0304,2500, 'NARALEX_EVENT_FINISHED');
-
-DELETE FROM `script_waypoint` WHERE `entry`=22424;
-INSERT INTO `script_waypoint` VALUES
- (22424,0,-3605.719971,4175.580078,-0.031817,0, 'START_SKYWING'),
- (22424,1,-3602.311279,4253.213867,0.562436,0, ''),
- (22424,2,-3529.151367,4263.524414,-7.871151,0, ''),
- (22424,3,-3448.130371,4257.990723,-11.626289,0, ''),
- (22424,4,-3377.783936,4209.064941,-9.476727,0, ''),
- (22424,5,-3378.211426,4154.628418,0.366330,0, ''),
- (22424,6,-3376.920166,4085.501709,14.178538,0, ''),
- (22424,7,-3399.274658,4055.948975,18.603474,0, ''),
- (22424,8,-3432.678223,4054.069824,29.588032,10000, '');
-
-DELETE FROM `script_waypoint` WHERE `entry`=22377;
-INSERT INTO `script_waypoint` VALUES
- (22377,0,-2766.31,5429.65,-34.53,0, ''),
- (22377,1,-2769.35,5416.25,-34.53,0, ''),
- (22377,2,-2780.07,5416.06,-34.53,1000, ''),
- (22377,3,-2812.56,5415.20,-34.53,1000, ''),
- (22377,4,-2816.95,5415.02,-34.52,0, ''),
- (22377,5,-2827.86,5414.56,-28.29,0, ''),
- (22377,6,-2878.32,5414.11,-28.26,0, ''),
- (22377,7,-2893.17,5413.15,-18.59,0, ''),
- (22377,8,-2896.36,5409.65,-18.59,0, ''),
- (22377,9,-2896.50,5396.76,-8.77,0, ''),
- (22377,10,-2896.67,5366.20,-9.59,0, ''),
- (22377,11,-2888.23,5330.39,-11.19,2000, '');
-
-DELETE FROM `script_waypoint` WHERE `entry`=18210;
-INSERT INTO `script_waypoint` VALUES
- (18210,0,-1581.410034,8557.933594,2.726,0, ''),
- (18210,1,-1579.908447,8553.716797,2.559,0, ''),
- (18210,2,-1577.829102,8549.880859,2.001,0, ''),
- (18210,3,-1571.161987,8543.494141,2.001,0, ''),
- (18210,4,-1563.944824,8530.334961,1.605,0, ''),
- (18210,5,-1554.565552,8518.413086,0.364,0, ''),
- (18210,6,-1549.239136,8515.518555,0.293,0, ''),
- (18210,7,-1518.490112,8516.771484,0.683,2000, 'SAY_MAG_MORE'),
- (18210,8,-1505.038940,8513.247070,0.672,0, ''),
- (18210,9,-1476.161133,8496.066406,2.157,0, ''),
- (18210,10,-1464.450684,8492.601563,3.529,0, ''),
- (18210,11,-1457.568359,8492.183594,4.449,0, ''),
- (18210,12,-1444.100342,8499.031250,6.177,0, ''),
- (18210,13,-1426.472168,8510.116211,7.686,0, ''),
- (18210,14,-1403.685303,8524.146484,9.680,0, ''),
- (18210,15,-1384.890503,8542.014648,11.180,0, ''),
- (18210,16,-1382.286133,8539.869141,11.139,7500, 'SAY_MAG_COMPLETE'),
- (18210,17,-1361.224609,8521.440430,11.144,0, ''),
- (18210,18,-1324.803589,8510.688477,13.050,0, ''),
- (18210,19,-1312.075439,8492.709961,14.235,0, '');
-
-DELETE FROM `script_waypoint` WHERE `entry`=17077;
-INSERT INTO `script_waypoint` VALUES
- (17077,0,-16.950142,3801.409424,95.064,5000, 'EMOTE_WOLF_LIFT_HEAD'),
- (17077,1,-15.577404,3805.170898,94.833,2500, ''),
- (17077,2,-20.011766,3806.609863,92.476,5000, 'EMOTE_WOLF_HOWL'),
- (17077,3,-18.594666,3816.207764,91.482,0, ''),
- (17077,4,-19.293468,3838.218750,85.012,0, ''),
- (17077,5,-16.504408,3871.034668,82.327,0, ''),
- (17077,6,2.064510,3898.678711,85.623,0, ''),
- (17077,7,16.403864,3921.174072,86.024,0, ''),
- (17077,8,47.307926,3932.001465,83.302,0, ''),
- (17077,9,90.067230,3942.906250,77.000,0, ''),
- (17077,10,106.886024,3944.388428,76.502,0, ''),
- (17077,11,139.085480,3941.897217,80.617,0, ''),
- (17077,12,150.092346,3942.782959,80.399,0, ''),
- (17077,13,193.511475,3950.396484,74.366,0, ''),
- (17077,14,226.274948,3958.003418,73.257,0, ''),
- (17077,15,246.686981,3963.309326,76.376,0, ''),
- (17077,16,264.206177,3977.726563,83.704,0, ''),
- (17077,17,279.857422,3986.417236,88.245,0, ''),
- (17077,18,304.039642,3998.354004,95.649,0, ''),
- (17077,19,328.071503,3995.832764,104.434,0, ''),
- (17077,20,347.485229,3990.817627,113.608,0, ''),
- (17077,21,351.257202,3954.260254,125.747,0, ''),
- (17077,22,345.625977,3932.016113,132.358,0, ''),
- (17077,23,347.971893,3908.549561,135.520,0, ''),
- (17077,24,351.887878,3891.062744,139.957,0, ''),
- (17077,25,346.116852,3864.634277,146.647,0, ''),
- (17077,26,330.012360,3839.859375,154.148,0, ''),
- (17077,27,297.250610,3811.855225,166.893,0, ''),
- (17077,28,290.783112,3800.188477,172.130,0, ''),
- (17077,29,288.125427,3782.474365,180.825,0, ''),
- (17077,30,296.817841,3771.629639,184.961,0, ''),
- (17077,31,305.256256,3765.380615,185.360,0, ''),
- (17077,32,311.447906,3757.902100,184.312,0, ''),
- (17077,33,325.258026,3730.282227,184.076,0, ''),
- (17077,34,341.158630,3717.757080,183.904,0, ''),
- (17077,35,365.589020,3717.200684,183.902,0, ''),
- (17077,36,387.395081,3731.750732,183.645,0, ''),
- (17077,37,396.574127,3732.604248,179.831,0, ''),
- (17077,38,404.303192,3737.313232,180.151,0, ''),
- (17077,39,410.995972,3742.286865,183.364,0, ''),
- (17077,40,434.904541,3761.058838,186.219,0, ''),
- (17077,41,460.128815,3774.436768,186.348,0, ''),
- (17077,42,467.643951,3788.506104,186.446,0, ''),
- (17077,43,491.551666,3815.446777,189.848,0, ''),
- (17077,44,496.957855,3836.875244,193.078,0, ''),
- (17077,45,502.889191,3855.458740,194.834,0, ''),
- (17077,46,508.208466,3863.689453,194.024,0, ''),
- (17077,47,528.907593,3887.348633,189.762,0, ''),
- (17077,48,527.722229,3890.686523,189.240,0, ''),
- (17077,49,524.637329,3891.768066,189.149,0, ''),
- (17077,50,519.146057,3886.701660,190.128,60000, 'SAY_WOLF_WELCOME');
-
-/* EOF */
-
-DELETE FROM `script_waypoint` WHERE `entry`=28912;
-INSERT INTO `script_waypoint` VALUES
- (28912,0,1653.518,-6038.374,127.585,1000, 'Jump off'),
- (28912,1,1653.978,-6034.614,127.585,5000, 'To Box'),
- (28912,2,1653.854,-6034.726,127.585,0, 'Equip'),
- (28912,3,1652.297,-6035.671,127.585,1000, 'Recover'),
- (28912,4,1639.762,-6046.343,127.948,0, 'Escape'),
- (28912,5,1640.963,-6028.119,134.740,0, ''),
- (28912,6,1625.805,-6029.197,134.740,0, ''),
- (28912,7,1626.845,-6015.085,134.740,0, ''),
- (28912,8,1649.150,-6016.975,133.240,0, ''),
- (28912,9,1653.063,-5974.844,132.652,5000, 'Mount'),
- (28912,10,1654.747,-5926.424,121.191,0, 'Disappear');
-
-
-DELETE FROM `script_waypoint` WHERE `entry`=29173;
-INSERT INTO `script_waypoint` VALUES
- (29173,0,2431.639,-5137.05,83.843,0, 'intro'),
- (29173,1,2319.242,-5266.486,82.825,0, 'summon & on hold'),
- (29173,2,2318.775,-5266.832,82.783,0, 'cast light of dawn'),
- (29173,3,2280.812,-5284.091,82.608,0, 'move to here and start'),
- (29173,4,2280.727,-5286.839,82.930,0, 'move forward to talk'),
- (29173,5,2280.812,-5284.091,82.608,0, 'when baba pop'),
- (29173,6,2281.461,-5263.014,81.164,0, 'charge to lich king'),
- (29173,7,2257.479,-5296.702,82.165,0, 'being kicked by Lich King'),
- (29173,8,2261.237,-5294.983,82.167,0, 'throw'),
- (29173,9,2259.34,-5294.379,82.167,0, 'event end');
-
-
-DELETE FROM script_waypoint WHERE `entry`=28070;
-INSERT INTO script_waypoint VALUES
- (28070,0,1053.789795,476.639343,207.744,0, ''),
- (28070,1,1032.293945,467.623444,207.736,0, ''),
- (28070,2,1017.908752,454.765656,207.719,0, ''),
- (28070,3,1004.810120,441.305115,207.373,0, ''),
- (28070,4,988.694214,424.422485,207.425,0, ''),
- (28070,5,984.816345,422.177917,205.994,0, ''),
- (28070,6,977.204468,420.026917,205.994,0, ''),
- (28070,7,962.388123,421.983307,205.994,0, ''),
- (28070,8,950.419556,416.515198,205.994,0, ''),
- (28070,9,943.972290,403.071228,205.994,0, ''),
- (28070,10,947.921936,387.683563,205.994,0, ''),
- (28070,11,946.554749,383.270782,205.994,0, ''),
- (28070,12,944.654724,380.630859,207.286,0, ''),
- (28070,13,941.101563,377.373413,207.421,0, 'reach tribunal,set pause'),
- (28070,14,935.217896,370.557343,207.421,0, ''),
- (28070,15,928.035950,363.026733,204.018,0, ''),
- (28070,16,909.287292,344.392792,203.706,0, ''),
- (28070,17,897.946838,333.634735,203.706,0, 'reach panel'),
- (28070,18,918.914429,351.312866,203.706,0, 'reach floor disc (end event begin)'),
- (28070,19,928.070068,363.296326,204.091,0, 'stealth'),
- (28070,20,934.817627,370.136261,207.421,0, ''),
- (28070,21,941.501465,377.254456,207.421,0, '');
-
-DELETE FROM `script_waypoint` WHERE `entry`=23784;
-INSERT INTO `script_waypoint` VALUES
- (23784,1,1383.52,-6411.72,1.2181,5, 'Apothecary Hanes'),
- (23784,2,1392.57,-6403.5,1.9699,2000, 'Apothecary Hanes'),
- (23784,3,1397.42,-6378.76,4.996,5, 'Apothecary Hanes'),
- (23784,4,1427.36,-6359.47,6.385,5, 'Apothecary Hanes'),
- (23784,5,1406.46,-6334.45,6.149,2000, 'Apothecary Hanes'),
- (23784,6,1400.77,-6339.71,6.367,5000, 'Apothecary Hanes'),
- (23784,7,1424.09,-6326.67,5.716,5, 'Apothecary Hanes'),
- (23784,8,1470,-6347.45,7.596,5000, 'Apothecary Hanes'),
- (23784,9,1465.18,-6343.53,7.58766,2000, 'Apothecary Hanes'),
- (23784,10,1463.9,-6339.28,7.56152,5, 'Apothecary Hanes'),
- (23784,11,1474.6,-6327.65,7.02011,5, 'Apothecary Hanes'),
- (23784,12,1486.59,-6319.08,8.13591,5, 'Apothecary Hanes'),
- (23784,13,1499.87,-6312.24,7.11185,5, 'Apothecary Hanes'),
- (23784,14,1507.95,-6315.27,7.05227,5000, 'Apothecary Hanes'),
- (23784,15,1511.92,-6300.64,6.43812,5, 'Apothecary Hanes'),
- (23784,16,1520.02,-6279.71,5.31363,5, 'Apothecary Hanes'),
- (23784,17,1534.01,-6245,6.31535,5, 'Apothecary Hanes'),
- (23784,18,1537.98,-6224.37,6.36504,5, 'Apothecary Hanes'),
- (23784,19,1551.58,-6206.27,6.9545,2000, 'Apothecary Hanes'),
- (23784,20,1572.99,-6197.74,6.70809,5, 'Apothecary Hanes'),
- (23784,21,1608.51,-6175.83,8.80075,5, 'Apothecary Hanes'),
- (23784,22,1619.15,-6167.6,9.39125,5, 'Apothecary Hanes'),
- (23784,23,1634.05,-6153.81,8.08527,5, 'Apothecary Hanes');
-
-DELETE FROM `script_waypoint` WHERE `entry`=25208;
-INSERT INTO `script_waypoint` VALUES
- (25208,0,4014.01,6391.91,29.9735,17000, ''),
- (25208,1,4029.05,6374.1,28.8288,0, ''),
- (25208,2,4039.11,6370.05,27.8701,0, ''),
- (25208,3,4052.24,6364.92,27.2941,0, ''),
- (25208,4,4058.31,6357.79,26.3543,0, ''),
- (25208,5,4062.46,6346.26,24.3838,0, ''),
- (25208,6,4063.82,6334.14,25.3818,0, ''),
- (25208,7,4062.66,6319.39,24.9775,0, ''),
- (25208,8,4061.14,6307.67,24.4034,0, ''),
- (25208,9,4059.64,6301.33,24.5615,0, ''),
- (25208,10,4066.46,6292.12,24.3167,0, ''),
- (25208,11,4078.37,6280.88,26.6926,0, ''),
- (25208,12,4087.03,6281.33,27.4604,0, ''),
- (25208,13,4097.8,6282.47,25.4414,0, ''),
- (25208,14,4107.07,6279.26,25.2578,0, ''),
- (25208,15,4114.68,6279.78,24.7762,0, ''),
- (25208,16,4122.9,6280.34,26.1671,0, ''),
- (25208,17,4127.69,6280.67,28.1951,0, ''),
- (25208,18,4134.75,6282.09,28.9761,0, ''),
- (25208,19,4141.62,6281.92,29.3518,0, ''),
- (25208,20,4152.14,6281.43,30.6951,0, ''),
- (25208,21,4159.63,6282.6,30.2401,0, ''),
- (25208,22,4169.82,6289.25,24.182,0, ''),
- (25208,23,4181.02,6293.88,18.035,0, ''),
- (25208,24,4189.27,6295.87,14.4513,0, ''),
- (25208,25,4200.09,6298.4,12.7249,0, ''),
- (25208,26,4206.46,6291.56,10.9628,0, ''),
- (25208,27,4211.45,6282.82,9.05693,0, ''),
- (25208,28,4215.22,6277.25,8.54002,0, ''),
- (25208,29,4215.28,6268.57,8.30674,0, ''),
- (25208,30,4224.23,6269.53,6.97205,0, ''),
- (25208,31,4235.98,6270.9,3.27214,0, ''),
- (25208,32,4242.67,6269.45,1.45579,0, ''),
- (25208,33,4250.43,6262.49,0.611961,0, ''),
- (25208,34,4259.07,6253.33,-0.0686721,0, ''),
- (25208,35,4261.11,6248.81,-0.112029,0, ''),
- (25208,36,4257.58,6234.09,-0.094803,0, ''),
- (25208,37,4252.62,6224.3,-0.154816,0, ''),
- (25208,38,4247.92,6214.75,-0.221144,0, ''),
- (25208,39,4254.04,6205.58,-0.186623,0, ''),
- (25208,40,4262.6,6194.47,-0.145114,0, ''),
- (25208,41,4268.96,6189.47,0.0303093,21000, '');
-
-DELETE FROM `script_waypoint` WHERE `entry`=1754;
-INSERT INTO `script_waypoint` VALUES
- (1754,1,-8334.89,394.130,122.274,0, ''),
- (1754,2,-8335.58,393.519,122.275,0, ''),
- (1754,3,-8352.99,379.932,122.275,0, ''),
- (1754,4,-8356.65,385.247,122.275,0, ''),
- (1754,5,-8364.29,395.317,122.275,0, ''),
- (1754,6,-8361.75,402.852,122.275,0, ''),
- (1754,7,-8359.94,410.92,122.275,0, ''),
- (1754,8,-8362.84,415.409,122.275,0, ''),
- (1754,9,-8370.42,424.6,122.275,0, ''),
- (1754,10,-8380.45,437.115,122.275,0, ''),
- (1754,11,-8386.37,444.906,122.275,0, ''),
- (1754,12,-8388.5,447.314,123.275,0, ''),
- (1754,13,-8390.25,449.247,124.275,0, ''),
- (1754,14,-8392.84,452.397,123.761,0, ''),
- (1754,15,-8397.52,457.326,123.761,0, ''),
- (1754,16,-8402.42,461.646,123.761,0, ''),
- (1754,17,-8409.52,462.677,123.761,0, '');
-
-DELETE FROM `script_waypoint` WHERE `entry`=8856;
-INSERT INTO `script_waypoint` VALUES
- (8856,1,-8409.34,453.345,123.761,0, ''),
- (8856,2,-8409.52,462.677,123.761,0, ''),
- (8856,3,-8402.42,461.646,123.761,0, ''),
- (8856,4,-8397.52,457.326,123.761,0, ''),
- (8856,5,-8392.84,452.397,123.761,0, ''),
- (8856,6,-8390.25,449.247,124.275,0, ''),
- (8856,7,-8388.5,447.314,123.275,0, ''),
- (8856,8,-8386.37,444.906,122.275,0, ''),
- (8856,9,-8380.45,437.115,122.275,0, ''),
- (8856,10,-8370.42,424.6,122.275,0, ''),
- (8856,11,-8362.84,415.409,122.275,0, ''),
- (8856,12,-8359.94,410.92,122.275,0, ''),
- (8856,13,-8361.75,402.852,122.275,0, ''),
- (8856,14,-8364.29,395.317,122.275,0, ''),
- (8856,15,-8356.65,385.247,122.275,0, ''),
- (8856,16,-8352.99,379.932,122.275,0, ''),
- (8856,17,-8335.58,393.519,122.275,0, ''),
- (8856,18,-8334.89,394.13,122.274,0, '');
-
-DELETE FROM `script_waypoint` WHERE `entry`=30023;
-INSERT INTO `script_waypoint` VALUES
- (30023,1,5722.558,-2960.685,286.276,0, ''),
- (30023,2,5734.698,-2984.990,286.276,0, ''),
- (30023,3,5737.401,-2991.310,282.575,0, ''),
- (30023,4,5740.416,-2997.536,277.263,0, ''),
- (30023,5,5743.790,-3004.050,273.570,0, ''),
- (30023,6,5764.240,-2993.788,272.944,0, '');
-
-DELETE FROM `script_waypoint` WHERE `entry`=30017;
-INSERT INTO `script_waypoint` VALUES
- (30017,1,5790.975,-2927.297,286.277,0, ''),
- (30017,2,5803.003,-2952.998,286.277,0, ''),
- (30017,3,5805.184,-2958.513,282.899,0, ''),
- (30017,4,5807.038,-2961.449,280.250,0, ''),
- (30017,5,5808.862,-2965.138,277.089,0, ''),
- (30017,6,5811.703,-2970.821,273.569,0, ''),
- (30017,7,5789.979,-2980.250,273.584,0, '');
-
-DELETE FROM `script_waypoint` WHERE `entry` IN(25504,25589);
-INSERT INTO `script_waypoint` (`entry`,`pointid`,`location_x`,`location_y`,`location_z`,`waittime`,`point_comment`) VALUES
-(25504,1, '2882.26', '6734.51', '32.8864',0, 'Mootoo the Younger'),
-(25504,2, '2877.37', '6731.59', '32.8721',0, 'Mootoo the Younger'),
-(25504,3, '2874.18', '6725.85', '30.3087',0, 'Mootoo the Younger'),
-(25504,4, '2866.36', '6726.04', '26.7277',0, 'Mootoo the Younger'),
-(25504,5, '2863.97', '6731.91', '23.8372',0, 'Mootoo the Younger'),
-(25504,6, '2869.29', '6736.92', '20.5227',0, 'Mootoo the Younger'),
-(25504,7, '2874.16', '6731.88', '18.5042',0, 'Mootoo the Younger'),
-(25504,8, '2887.05', '6736.39', '13.997',0, 'Mootoo the Younger'),
-(25504,9, '2901.68', '6741.25', '14.0413',0, 'Mootoo the Younger'),
-(25504,10, '2919.45', '6746.28', '13.7325',5000, 'Mootoo the Younger'),
-(25504,11, '2947.18', '6738.71', '12.7117',0, 'Mootoo the Younger'),
-(25504,12, '2982.43', '6748.59', '10.2755',5000, 'Mootoo the Younger'),
-(25504,13, '2985.05', '6776.05', '8.33081',0, 'Mootoo the Younger'),
-(25504,14, '2978.72', '6801.48', '5.83056',0, 'Mootoo the Younger'),
-(25504,15, '2957.81', '6818.86', '4.7594',0, 'Mootoo the Younger'),
-(25504,16, '2917.03', '6820.55', '5.87954',5000, 'Mootoo the Younger'),
-(25504,17, '2890.04', '6825.68', '4.11676',0, 'Mootoo the Younger'),
-(25504,18, '2850.31', '6812.35', '2.09411',0, 'Mootoo the Younger'),
-(25504,19, '2821.29', '6797.99', '4.49696',0, 'Mootoo the Younger'),
-(25504,20, '2798.25', '6770.64', '5.0632',1000, 'Mootoo the Younger'),
-(25504,21, '2807.49', '6748.29', '8.25933',5000, 'Mootoo the Younger');
-
-INSERT INTO `script_waypoint` (`entry`,`pointid`,`location_x`,`location_y`,`location_z`,`waittime`) VALUES
-(25589,1, '4462.37', '5372.75', '-15.2912',0),
-(25589,2, '4478.7', '5377.27', '-15.0012',5000),
-(25589,3, '4482.25', '5390.64', '-15.2354',0),
-(25589,4, '4477.09', '5405.02', '-15.2386',0),
-(25589,5, '4468.71', '5416.9', '-15.2602',0),
-(25589,6, '4457.24', '5426.87', '-15.6104',0),
-(25589,7, '4439.7', '5433.46', '-15.2384',0),
-(25589,8, '4422.63', '5432.32', '-14.8822',0),
-(25589,9, '4404.71', '5422.74', '-14.4494',0),
-(25589,10, '4394.68', '5406.63', '-10.8423',0),
-(25589,11, '4391.99', '5392.88', '-6.45477',0),
-(25589,12, '4390.65', '5370.91', '0.504708',0),
-(25589,13, '4393.34', '5354.19', '3.1859',0),
-(25589,14, '4401.68', '5342.78', '5.20245',0),
-(25589,15, '4417.98', '5335.18', '8.31299',0),
-(25589,16, '4431.01', '5335.17', '11.0135',0),
-(25589,17, '4446.21', '5340.58', '14.4585',0),
-(25589,18, '4462.73', '5350.22', '16.8783',0),
-(25589,19, '4475.06', '5362.82', '19.1229',0),
-(25589,20, '4480.92', '5381.72', '22.2479',0),
-(25589,21, '4481.31', '5394.2', '26.2008',0),
-(25589,22, '4476.32', '5409.12', '29.0811',5000),
-(25589,23, '4466.33', '5420.75', '31.8093',0),
-(25589,24, '4450.66', '5430.03', '36.2843',0),
-(25589,25, '4431.24', '5433.77', '38.2282',0),
-(25589,26, '4417.65', '5437.11', '40.2429',0),
-(25589,27, '4402.5', '5440.94', '42.7727',0),
-(25589,28, '4387.11', '5450.98', '48.6992',0),
-(25589,29, '4364.52', '5468.98', '48.8229',0),
-(25589,30, '4344.02', '5483.26', '48.0509',0);
-
-DELETE FROM `script_waypoint` WHERE `entry`=349;
-INSERT INTO `script_waypoint` VALUES
-(349,1,-8763.9,-2185.21,141.217,0, ''),
-(349,2,-8768.76,-2185.94,141.949,0, ''),
-(349,3,-8772.1,-2189.18,141.443,0, ''),
-(349,4,-8778.78,-2195.66,140.662,0, ''),
-(349,5,-8789.74,-2191.46,141.634,0, ''),
-(349,6,-8802.37,-2185.99,141.96,0, ''),
-(349,7,-8818,-2184.8,139.153,0, ''),
-(349,8,-8828.42,-2193.02,138.973,0, ''),
-(349,9,-8826.45,-2203.82,140.293,0, ''),
-(349,10,-8822.54,-2211.43,142.884,0, ''),
-(349,11,-8813.51,-2225.08,143.327,0, ''),
-(349,12,-8807.5,-2233.92,144.441,0, ''),
-(349,13,-8801.3,-2239.04,146.476,0, ''),
-(349,14,-8797.57,-2243.61,146.594,0, ''),
-(349,15,-8794.38,-2250.83,146.723,0, ''),
-(349,16,-8788.1,-2255.1,147.309,0, ''),
-(349,17,-8775.37,-2259.82,149.18,0, ''),
-(349,18,-8768.09,-2259.54,150.52,0, ''),
-(349,19,-8754.65,-2255.62,152.253,0, ''),
-(349,20,-8748.51,-2252.62,153.098,0, ''),
-(349,21,-8743.2,-2251.67,154.038,0, ''),
-(349,22,-8738.4,-2250.23,154.028,0, ''),
-(349,23,-8734.35,-2251.56,154.363,0, ''),
-(349,24,-8727.41,-2248.64,154.919,0, ''),
-(349,25,-8717.66,-2246.3,154.926,0, ''),
-(349,26,-8709.05,-2245.83,154.767,0, ''),
-(349,27,-8700.13,-2243.28,153.872,0, ''),
-(349,28,-8690.15,-2242.54,153.733,0, ''),
-(349,29,-8683.49,-2244.31,155.356,0, ''),
-(349,30,-8674.53,-2247.89,155.574,0, ''),
-(349,31,-8669.86,-2252.77,154.854,0, ''),
-(349,32,-8669.07,-2258.88,156.424,0, ''),
-(349,33,-8670.56,-2264.69,156.978,0, ''),
-(349,34,-8673.45,-2269.45,156.007,0, ''),
-(349,35,-8674.4,-2275.9,155.747,0, ''),
-(349,36,-8674.82,-2282.75,155.496,0, ''),
-(349,37,-8675.17,-2289.5,157.049,0, ''),
-(349,38,-8676.43,-2297.67,156.701,0, ''),
-(349,39,-8677.59,-2304.85,155.917,0, ''),
-(349,40,-8682.32,-2312.88,155.928,0, ''),
-(349,41,-8687.78,-2324.44,156.024,0, ''),
-(349,42,-8695.71,-2334.87,156.06,0, ''),
-(349,43,-8705.17,-2345.13,156.021,0, ''),
-(349,44,-8715.1,-2353.95,156.188,0, ''),
-(349,45,-8725.8,-2359.17,156.253,0, ''),
-(349,46,-8735.92,-2363.27,157.151,0, ''),
-(349,47,-8746.82,-2367.99,158.13,0, ''),
-(349,48,-8755.38,-2375.72,157.271,0, ''),
-(349,49,-8765.12,-2388.08,156.092,0, ''),
-(349,50,-8768.84,-2395.58,155.926,0, ''),
-(349,51,-8772.85,-2405.27,156.418,0, ''),
-(349,52,-8776.95,-2414.94,156.388,0, ''),
-(349,53,-8781.69,-2430.11,153.264,0, ''),
-(349,54,-8786.76,-2440.34,147.849,0, ''),
-(349,55,-8792.01,-2453.38,142.746,0, ''),
-(349,56,-8797.41,-2462.21,138.171,0, ''),
-(349,57,-8804.78,-2472.43,134.192,0, ''),
-(349,58,-8815.26,-2478.45,133.079,0, ''),
-(349,59,-8823.74,-2491.21,132.911,0, ''),
-(349,60,-8835.25,-2496.44,132.057,0, ''),
-(349,61,-8841.04,-2503.01,132.199,0, ''),
-(349,62,-8850.81,-2509.63,132.865,0, ''),
-(349,63,-8858.64,-2522.29,133.852,0, ''),
-(349,64,-8862.25,-2527.1,134.279,0, ''),
-(349,65,-8870.67,-2542.08,131.044,0, ''),
-(349,66,-8880.4,-2550.79,130.505,0, ''),
-(349,67,-8892.87,-2560.3,130.558,0, ''),
-(349,68,-8908.74,-2573.64,131.616,0, ''),
-(349,69,-8922.05,-2585.31,132.446,0, ''),
-(349,70,-8935.86,-2591.19,132.446,0, ''),
-(349,71,-8949.08,-2596.87,132.537,0, ''),
-(349,72,-8959.17,-2599.72,132.507,0, ''),
-(349,73,-8969.43,-2601.96,132.471,0, ''),
-(349,74,-8979.77,-2603.66,132.39,0, ''),
-(349,75,-8991.61,-2604.16,131.196,0, ''),
-(349,76,-9000.2,-2602.38,128.954,0, ''),
-(349,77,-9011.57,-2594.23,127.435,0, ''),
-(349,78,-9019.77,-2587.67,126.618,0, ''),
-(349,79,-9028.35,-2582.26,125.787,0, ''),
-(349,80,-9038.96,-2572.71,124.748,0, ''),
-(349,81,-9046.92,-2560.64,124.447,0, ''),
-(349,82,-9059.29,-2550.1,123.756,0, ''),
-(349,83,-9068.15,-2547.28,122.965,0, ''),
-(349,84,-9077.54,-2541.67,121.17,0, ''),
-(349,85,-9085.61,-2532.98,118.85,0, ''),
-(349,86,-9097.8,-2520.49,117.401,0, ''),
-(349,87,-9110.18,-2507.01,117.098,0, ''),
-(349,88,-9119.21,-2498.23,116.627,0, ''),
-(349,89,-9124.61,-2487.07,115.972,0, ''),
-(349,90,-9127.42,-2478.53,114.843,0, ''),
-(349,91,-9133.18,-2465.77,113.029,0, ''),
-(349,92,-9137.54,-2456.22,111.051,0, ''),
-(349,93,-9146.73,-2441.6,107.979,0, ''),
-(349,94,-9155.62,-2430.79,106.251,0, ''),
-(349,95,-9158.06,-2420.36,104.838,0, ''),
-(349,96,-9157.25,-2410.2,103.858,0, ''),
-(349,97,-9152.95,-2401.47,102.679,0, ''),
-(349,98,-9153.63,-2393.46,100.63,0, ''),
-(349,99,-9156.48,-2385.68,98.2937,0, ''),
-(349,100,-9161.01,-2379.87,96.2066,0, ''),
-(349,101,-9169.08,-2373.14,93.8832,0, ''),
-(349,102,-9175.61,-2368.72,92.5178,0, ''),
-(349,103,-9187.1,-2360.52,89.9231,0, ''),
-(349,104,-9194.27,-2352.89,87.593,0, ''),
-(349,105,-9201.07,-2344.88,85.8516,0, ''),
-(349,106,-9205.62,-2339.56,85.0342,0, ''),
-(349,107,-9212.44,-2331.58,83.8068,0, ''),
-(349,108,-9219.26,-2323.6,82.29,0, ''),
-(349,109,-9229.98,-2313.25,79.4506,0, ''),
-(349,110,-9240.03,-2303.51,76.7841,0, ''),
-(349,111,-9249.34,-2298.82,74.3911,0, ''),
-(349,112,-9254.95,-2296.68,72.8144,0, ''),
-(349,113,-9264.73,-2292.92,70.0089,0, ''),
-(349,114,-9272.24,-2293.79,68.6096,0, ''),
-(349,115,-9277.03,-2295.98,68.1135,10000, '');
-
-DELETE FROM `script_waypoint` WHERE `entry`=6729;
-INSERT INTO `script_waypoint` VALUES
-(6729,1,-861.803,-460.36,-33.8918,0, ''),
-(6729,2,-856.168,-464.425,-33.9223,0, ''),
-(6729,3,-849.964,-469.231,-34.0381,0, ''),
-(6729,4,-839.838,-473.654,-34.0535,0, ''),
-(6729,5,-837.417,-473.105,-34.0288,0, '');
-
-DELETE FROM `script_waypoint` WHERE `entry`=7998;
-INSERT INTO `script_waypoint` VALUES
- (7998,1,-511.065,-134.51,-152.493,0, ''),
- (7998,2,-511.862,-131.76,-152.932,0, ''),
- (7998,3,-513.319,-126.733,-156.095,0, ''),
- (7998,4,-515.969,-118.962,-156.109,0, ''),
- (7998,5,-518.983,-111.608,-155.923,0, ''),
- (7998,6,-522.392,-101.145,-155.228,0, ''),
- (7998,7,-523.941,-96.9487,-154.823,0, ''),
- (7998,8,-531.938,-104.249,-156.031,0, ''),
- (7998,9,-533.141,-105.332,-156.017,30000, ''),
- (7998,10,-541.3,-96.7414,-155.895,30000, ''),
- (7998,11,-517.556,-106.826,-155.149,0, ''),
- (7998,12,-508.757,-103.227,-151.742,30000, ''),
- (7998,13,-512.396,-86.3113,-151.642,30000, ''),
- (7998,14,-520.928,-117.679,-156.119,0, ''),
- (7998,15,-521.717,-119.564,-156.114,0, '');
-
-DELETE FROM `script_waypoint` WHERE `entry`=35491;
-INSERT INTO `script_waypoint` VALUES
- (35491,1,754.709,646.999,442.961,0, ''),
- (35491,2,738.85,637.289,439.134,0, ''),
- (35491,3,727.272,619.164,438.186,0, ''),
- (35491,4,733.524,608.939,433.711,0, ''),
- (35491,5,745.537,605.399,428.795,0, ''),
- (35491,6,754.46,607.124,426.542,0, ''),
- (35491,7,763.48,616.796,422.603,0, ''),
- (35491,8,761.823,625.299,418.482,0, ''),
- (35491,9,755.923,631.506,413.966,0, ''),
- (35491,10,744.841,634.505,411.575,0, '');
-
-DELETE FROM `script_waypoint` WHERE `entry`=26588;
-INSERT INTO `script_waypoint` (`entry`,`pointid`,`location_x`,`location_y`,`location_z`,`waittime`,`point_comment`) VALUES
-(26588,1,4333.18,-3688.4,263.857,0, ''),
-(26588,2,4341.38,-3683.77,257.422,0, ''),
-(26588,3,4342.67,-3683.21,257.218,0, ''),
-(26588,4,4346.22,-3688.72,257.065,0, ''),
-(26588,5,4343.8,-3695.27,257.124,0, ''),
-(26588,6,4337.74,-3707.2,257.628,0, ''),
-(26588,7,4317.58,-3722.8,256.941,0, ''),
-(26588,8,4306.64,-3736.46,258.304,0, ''),
-(26588,9,4299.96,-3760.02,254.959,0, ''),
-(26588,10,4294.21,-3777.34,249.139,1000, ''),
-(26588,11,4294.37,-3776.97,249.259,10000, ''),
-(26588,12,4300.22,-3794.61,240.107,2000, ''),
-(26588,13,4307.25,-3817.76,231.414,2000, ''),
-(26588,14,4326.31,-3883.31,208.457,2000, ''),
-(26588,15,4346.19,-3905.41,198.805,2000, ''),
-(26588,16,4347.39,-3916.43,196.716,5000, ''),
-(26588,17,4350.17,-3935.03,191.824,1000, ''),
-(26588,18,4347.24,-3939.54,191.445,2000, ''),
-(26588,19,4347.24,-3939.54,191.445,2000, ''),
-(26588,20,4347.24,-3939.54,191.445,5000, ''),
-(26588,21,4347.24,-3939.54,191.445,7000, ''),
-(26588,22,4347.24,-3939.54,191.445,5000, ''),
-(26588,23,4347.24,-3939.54,191.445,5000, ''),
-(26588,24,4347.24,-3939.54,191.445,0, ''),
-(26588,25,4353.72,-3965.61,190.154,0, ''),
-(26588,26,4363.12,-3995.61,183.327,0, ''),
-(26588,27,4371.99,-4010.97,181.33,0, '');
-
--- script_waypoints for Arthas movements inside Culling
-DELETE FROM `script_waypoint` WHERE `entry`=26499;
-INSERT INTO `script_waypoint` (`entry`,`pointid`,`location_x`,`location_y`,`location_z`,`waittime`,`point_comment`) VALUES
-(26499,0,1903.167,1291.573,143.32,0, 'culling Bridge WP1'),
-(26499,1,1911.087,1314.263,150.026,0, 'culling Bridge WP2'),
-(26499,2,1902.959,1295.127,143.388,10000, 'culling Bridge WP3'),
-(26499,3,1913.726,1287.407,141.927,0, 'culling Bridge WP4'),
-(26499,4,1990.833,1293.391,145.467,0, 'culling Bridge WP5'),
-(26499,5,1997.003,1317.776,142.963,0, 'culling Bridge WP6'),
-(26499,6,2019.631,1326.084,142.929,0, 'culling Bridge WP7'),
-(26499,7,2026.469,1287.088,143.596,0, 'culling Bridge WP8'),
-(26499,8,2050.660,1287.333,142.671,0, 'culling Bridge WP9'),
-(26499,9,2081.447,1287.770,141.324,0, 'culling Streets WP1'),
-(26499,10,2087.689,1280.344,140.730,0, 'culling Streets WP2'),
-(26499,11,2092.154,1276.645,140.520,0, 'culling Streets WP3'),
-(26499,12,2099.876,1280.21,138.55,0, 'culling Streets WP4'),
-(26499,13,2120.757,1286.97,136.343,0, 'culling Streets WP5'),
-(26499,14,2165.073,1279.338,133.40,0, 'culling Streets WP6'),
-(26499,15,2186.441,1234.445,136.524,0, 'culling Streets WP7'),
-(26499,16,2210.385,1207.550,136.259,0, 'culling Streets WP8'),
-(26499,17,2243.594,1177.705,137.144,0, 'culling Streets WP9'),
-(26499,18,2286.883,1177.262,137.631,0, 'culling Streets WP10'),
-(26499,19,2320.374,1179.954,133.926,0, 'culling Streets WP11'),
-(26499,20,2365.626,1194.838,131.974,0, 'culling Streets WP12'),
-(26499,21,2366.559,1197.759,132.382,0, 'culling House WP1'),
-(26499,22,2394.011,1205.148,134.125,0, 'culling House WP2'),
-(26499,23,2395.854,1206.345,134.039,0, 'culling House WP3'),
-(26499,24,2442.023,1219.205,133.999,0, 'culling House WP3'),
-(26499,25,2447.105,1191.182,148.076,0, 'culling House WP4'),
-(26499,26,2444.250,1190.510,148.076,0, 'culling House WP5'),
-(26499,27,2418.487,1196.059,148.076,0, 'culling House WP6'),
-(26499,28,2401.221,1191.705,148.076,0, 'culling House WP7'),
-(26499,29,2409.205,1157.425,148.190,0, 'culling House WP8'),
-(26499,30,2417.584,1121.026,148.082,0, 'culling House WP9'),
-(26499,31,2423.123,1119.431,148.076,0, 'culling House WP10'),
-(26499,32,2447.833,1112.714,148.076,0, 'culling House WP11'),
-(26499,33,2457.133,1120.941,150.008,0, 'culling House WP12'),
-(26499,34,2459.694,1127.012,150.008,0, 'culling House WP13'),
-(26499,35,2469.617,1122.274,150.008,0, 'culling House WP14'),
-(26499,36,2470.437,1122.794,150.008,3000, 'culling House WP15'),
-(26499,37,2471.662,1123.077,150.035,3000, 'culling House WP16'),
-(26499,38,2483.183,1125.042,149.905,0, 'culling Secret WP1'),
-(26499,39,2487.867,1099.760,144.858,0, 'culling Secret WP2'),
-(26499,40,2498.270,1101.929,144.599,0, 'culling Secret WP3'),
-(26499,41,2492.114,1128.238,139.967,0, 'culling Secret WP4'),
-(26499,42,2500.286,1130.183,139.982,0, 'culling Room WP1'),
-(26499,43,2503.010,1119.241,139.978,0, 'culling Room WP2'),
-(26499,44,2517.820,1122.645,132.066,0, 'culling Room WP3'),
-(26499,45,2540.479,1129.061,130.868,7000, 'culling Fire Street WP1'),
-(26499,46,2568.619,1157.794,126.906,0, 'culling Fire Street WP2'),
-(26499,47,2556.074,1222.058,125.412,20000, 'culling Fire Street WP3'),
-(26499,48,2521.531,1295.209,130.573,0, 'culling Fire Street WP4'),
-(26499,49,2504.362,1348.667,132.944,0, 'culling Fire Street WP5'),
-(26499,50,2450.594,1431.544,131.361,0, 'culling Fire Street WP6'),
-(26499,51,2353.485,1404.839,128.531,0, 'culling Market WP1'),
-(26499,52,2329.882,1406.273,128.013,0, 'culling Market WP2'),
-(26499,53,2329.882,1406.273,128.013,12000, 'culling Market WP3'),
-(26499,54,2327.391,1412.475,127.692,0, 'culling Market WP4'),
-(26499,55,2303.016,1480.070,128.139,0, 'culling Crusader WP1'),
-(26499,56,2296.665,1502.362,128.362,0, 'culling Crusader WP2');
-
--- Quest 12321 - Inquisitor Hallard in Dragonblight
-DELETE FROM `script_waypoint` WHERE `entry`=27316;
-INSERT INTO `script_waypoint` (`entry`,`pointid`,`location_x`,`location_y`,`location_z`,`waittime`,`point_comment`) VALUES
-(27316,1,3801.11,-678.964,213.753,5000, ''),
-(27316,2,3801.11,-678.964,213.753,5000, ''),
-(27316,3,3801.11,-678.964,213.753,5000, ''),
-(27316,4,3801.11,-678.964,213.753,5000, ''),
-(27316,5,3801.11,-678.964,213.753,5000, ''),
-(27316,6,3801.11,-678.964,213.753,5000, ''),
-(27316,7,3801.11,-678.964,213.753,5000, ''),
-(27316,8,3801.11,-678.964,213.753,5000, ''),
-(27316,9,3801.11,-678.964,213.753,5000, ''),
-(27316,10,3801.11,-678.964,213.753,5000, ''),
-(27316,11,3801.11,-678.964,213.753,5000, ''),
-(27316,12,3801.11,-678.964,213.753,5000, ''),
-(27316,13,3801.11,-678.964,213.753,5000, ''),
-(27316,14,3801.11,-678.964,213.753,5000, ''),
-(27316,15,3801.11,-678.964,213.753,5000, ''),
-(27316,16,3801.11,-678.964,213.753,5000, ''),
-(27316,17,3801.11,-678.964,213.753,5000, ''),
-(27316,18,3801.11,-678.964,213.753,5000, ''),
-(27316,19,3801.11,-678.964,213.753,5000, ''),
-(27316,20,3801.11,-678.964,213.753,5000, ''),
-(27316,21,3801.11,-678.964,213.753,5000, ''),
-(27316,22,3801.11,-678.964,213.753,5000, ''),
-(27316,23,3801.11,-678.964,213.753,5000, ''),
-(27316,24,3801.11,-678.964,213.753,5000, ''),
-(27316,25,3801.11,-678.964,213.753,5000, ''),
-(27316,26,3801.11,-678.964,213.753,5000, ''),
-(27316,27,3801.11,-678.964,213.753,10000, '');
-
--- Quest 12832 - Bitter Departure
-DELETE FROM `script_waypoint` WHERE `entry` =29434;
-INSERT INTO `script_waypoint` (`entry`, `pointid`, `location_x`, `location_y`, `location_z`, `waittime`, `point_comment`) VALUES
-(29434, 1, 6645.47, -1263.66, 396.938, 0, ''),
-(29434, 2, 6662.06, -1274.13, 397.319, 0, ''),
-(29434, 3, 6666.29, -1254.59, 396.11, 0, ''),
-(29434, 4, 6669.33, -1240.06, 397.789, 0, ''),
-(29434, 5, 6654.31, -1205.01, 399.823, 0, ''),
-(29434, 6, 6657.03, -1170.15, 398.755, 0, ''),
-(29434, 7, 6667.33, -1146.28, 399.014, 0, ''),
-(29434, 8, 6670.9, -1138.68, 397.125, 0, ''),
-(29434, 9, 6685.09, -1103.95, 396.828, 0, ''),
-(29434, 10, 6688.71, -1094.32, 395.019, 0, ''),
-(29434, 11, 6684.75, -1084.31, 396.916, 0, ''),
-(29434, 12, 6679.3, -1074.4, 404.284, 0, ''),
-(29434, 13, 6691.91, -1051.96, 407.983, 0, ''),
-(29434, 14, 6696.28, -1016.54, 414.823, 0, ''),
-(29434, 15, 6675.32, -1005.06, 414.844, 0, ''),
-(29434, 16, 6661.01, -1007.41, 414.946, 0, ''),
-(29434, 17, 6643.75, -1010.24, 420.508, 0, ''),
-(29434, 18, 6620.76, -1012.59, 424.378, 0, ''),
-(29434, 19, 6610.33, -996.992, 428.116, 0, ''),
-(29434, 20, 6581.3, -1005.9, 434.257, 0, ''),
-(29434, 21, 6570.74, -1013, 434.076, 0, ''),
-(29434, 22, 6551.68, -1012.38, 433.218, 0, ''),
-(29434, 23, 6530.83, -1024.99, 433.04, 0, ''),
-(29434, 24, 6510.05, -1031.23, 435.824, 0, ''),
-(29434, 25, 6491.5, -1032.46, 434.226, 0, ''),
-(29434, 26, 6475.58, -1023.13, 434.759, 0, ''),
-(29434, 27, 6451.81, -1025.43, 431.502, 10000, '');
-
--- Quest 9446 - Tomb of the Lightbringer
-DELETE FROM `script_waypoint` WHERE `entry`=17238;
-INSERT INTO `script_waypoint` (`entry`, `pointid`, `location_x`, `location_y`, `location_z`, `waittime`, `point_comment`) VALUES
-(17238, 1, 953.061, -1432.52, 63.2255, 0, ''),
-(17238, 2, 969.607, -1438.15, 65.3669, 0, ''),
-(17238, 3, 980.073, -1441.5, 65.3997, 0, ''),
-(17238, 4, 995.001, -1450.47, 61.3227, 0, ''),
-(17238, 5, 1032.7, -1473.49, 63.7699, 0, ''),
-(17238, 6, 1039.69, -1491.42, 65.2801, 0, ''),
-(17238, 7, 1038.8, -1523.32, 64.4661, 0, ''),
-(17238, 8, 1035.43, -1572.97, 61.5412, 0, ''),
-(17238, 9, 1034.45, -1612.83, 61.6186, 0, ''),
-(17238, 10, 1040.12, -1663.41, 60.923, 0, ''),
-(17238, 11, 1059.75, -1703.75, 60.5768, 0, ''),
-(17238, 12, 1091.83, -1735.24, 60.8057, 0, ''),
-(17238, 13, 1131.75, -1755.32, 61.0073, 0, ''),
-(17238, 14, 1159.77, -1762.64, 60.5699, 0, ''),
-(17238, 15, 1153.79, -1772, 60.6475, 0, ''),
-(17238, 16, 1115.4, -1787.21, 61.0759, 0, ''),
-(17238, 17, 1091.88, -1799.06, 61.6055, 0, ''),
-(17238, 18, 1056.22, -1805.65, 71.8112, 0, ''),
-(17238, 19, 1024.03, -1807.93, 77.025, 0, ''),
-(17238, 20, 1012.74, -1811.67, 77.5636, 0, ''),
-(17238, 21, 1006.74, -1813.59, 80.4872, 0, ''),
-(17238, 22, 983.15, -1823.05, 80.4872, 0, ''),
-(17238, 23, 974.954, -1825.33, 81.3482, 5000, ''),
-(17238, 24, 974.954, -1825.33, 81.3482, 5000, ''),
-(17238, 25, 974.954, -1825.33, 81.3482, 5000, ''),
-(17238, 26, 974.954, -1825.33, 81.3482, 5000, '');
-
--- Quest 1440 - Return to Vahlarriel
-DELETE FROM `script_waypoint` WHERE `entry`=5644;
-INSERT INTO `script_waypoint` (`entry`, `pointid`, `location_x`, `location_y`, `location_z`, `waittime`, `point_comment`) VALUES
-(5644, 1, -339.679, 1752.04, 139.482, 0, ''),
-(5644, 2, -328.957, 1734.95, 139.327, 0, ''),
-(5644, 3, -350.747, 1731.12, 139.338, 0, ''),
-(5644, 4, -365.064, 1739.04, 139.376, 0, ''),
-(5644, 5, -371.105, 1746.03, 139.374, 0, ''),
-(5644, 6, -383.141, 1738.62, 138.93, 0, ''),
-(5644, 7, -390.445, 1733.98, 136.353, 0, ''),
-(5644, 8, -401.368, 1726.77, 131.071, 0, ''),
-(5644, 9, -416.016, 1721.19, 129.807, 0, ''),
-(5644, 10, -437.139, 1709.82, 126.342, 0, ''),
-(5644, 11, -459.862, 1687.92, 116.059, 0, ''),
-(5644, 12, -460.686, 1679.55, 111.976, 0, ''),
-(5644, 13, -461.485, 1670.94, 109.033, 0, ''),
-(5644, 14, -468.53, 1645.51, 102.811, 0, ''),
-(5644, 15, -474.529, 1615.97, 97.228, 0, ''),
-(5644, 16, -474.329, 1590.01, 94.4982, 0, '');
-
--- Quest 12688 - Engineering a Disaster
-DELETE FROM `script_waypoint` WHERE `entry` =28787;
-INSERT INTO `script_waypoint` (`entry`, `pointid`, `location_x`, `location_y`, `location_z`, `waittime`, `point_comment`) VALUES
-(28787, 0, 5919.43, 5374.88, -98.8816, 5000, ''),
-(28787, 1, 5919.43, 5374.88, -98.8816, 5000, ''),
-(28787, 2, 5925.17, 5372.37, -98.8815, 0, ''),
-(28787, 3, 5928.32, 5377, -99.0266, 0, ''),
-(28787, 4, 5917.24, 5383.36, -106.31, 0, ''),
-(28787, 5, 5907.49, 5389.62, -106.31, 0, ''),
-(28787, 6, 5899.66, 5405.25, -96.5535, 0, ''),
-(28787, 7, 5890.27, 5395.42, -95.5519, 0, ''),
-(28787, 8, 5887.57, 5384.4, -95.4326, 5000, ''),
-(28787, 9, 5878.52, 5384.61, -93.3333, 0, ''),
-(28787, 10, 5873.17, 5360.43, -98.4124, 0, ''),
-(28787, 11, 5859.23, 5353.29, -98.8777, 0, ''),
-(28787, 12, 5841.27, 5334.14, -100.446, 0, ''),
-(28787, 13, 5819.81, 5300.27, -96.8567, 0, '');
-
--- Quest 6641 - Vorsha the Lasher
-DELETE FROM `script_waypoint` WHERE `entry`=12717;
-INSERT INTO `script_waypoint` (`entry`, `pointid`, `location_x`,`location_y`, `location_z`, `waittime`, `point_comment`) VALUES
-(12717, 0, 3346.25, 1007.88, 3.59, 0, 'SAY_MUG_START2'),
-(12717, 1, 3367.39, 1011.51, 3.72, 0, ''),
-(12717, 2, 3418.64, 1013.96, 2.905, 0, ''),
-(12717, 3, 3426.84, 1015.1, 3.449, 0, ''),
-(12717, 4, 3437.03, 1020.79, 2.742, 0, ''),
-(12717, 5, 3460.56, 1024.26, 1.353, 0, ''),
-(12717, 6, 3479.87, 1037.96, 1.023, 0, ''),
-(12717, 7, 3490.53, 1043.35, 3.338, 0, ''),
-(12717, 8, 3504.28, 1047.77, 8.205, 0, ''),
-(12717, 9, 3510.73, 1049.79, 12.143, 0, ''),
-(12717, 10, 3514.41, 1051.17, 13.235, 0, ''),
-(12717, 11, 3516.94, 1052.91, 12.918, 0, ''),
-(12717, 12, 3523.64, 1056.3, 7.563, 0, ''),
-(12717, 13, 3531.94, 1059.86, 6.175, 0, ''),
-(12717, 14, 3535.48, 1069.96, 1.697, 0, ''),
-(12717, 15, 3546.98, 1093.49, 0.68, 0, ''),
-(12717, 16, 3549.73, 1101.88, -1.123, 0, ''),
-(12717, 17, 3555.14, 1116.99, -4.326, 0, ''),
-(12717, 18, 3571.94, 1132.18, -0.634, 0, ''),
-(12717, 19, 3574.28, 1137.58, 3.684, 0, ''),
-(12717, 20, 3579.31, 1137.25, 8.205, 0, ''),
-(12717, 21, 3590.22, 1143.65, 8.291, 0, ''),
-(12717, 22, 3595.97, 1145.83, 6.773, 0, ''),
-(12717, 23, 3603.65, 1146.92, 9.763, 0, ''),
-(12717, 24, 3607.08, 1146.01, 10.692, 5000, 'SAY_MUG_BRAZIER'),
-(12717, 25, 3614.52, 1142.63, 10.248, 0, ''),
-(12717, 26, 3616.66, 1140.84, 10.682, 3000, 'SAY_MUG_PATROL'),
-(12717, 27, 3621.08, 1138.11, 10.369, 0, 'SAY_MUG_RETURN'),
-(12717, 28, 3615.48, 1145.53, 9.614, 0, ''),
-(12717, 29, 3607.19, 1152.72, 8.871, 0, '');
-
--- Waypoints for Mimiron Inferno
-DELETE FROM `script_waypoint` WHERE `entry`=33370;
-INSERT INTO `script_waypoint` (`entry`, `pointid`, `location_x`, `location_y`, `location_z`, `waittime`, `point_comment`) VALUES
-(33370, 1, 331.674, -68.6878, 409.804, 0, '0'),
-(33370, 2, 274.578, -92.1829, 409.804, 0, '0'),
-(33370, 3, 226.433, -66.6652, 409.793, 0, '0'),
-(33370, 4, 206.092, -34.7447, 409.801, 0, '0'),
-(33370, 5, 240.208, 1.10346, 409.802, 0, '0'),
-(33370, 6, 337.199, 11.7051, 409.802, 0, '0');
-
--- Waypoints for Galen Goodward
-DELETE FROM `script_waypoint` WHERE `entry`=5391;
-INSERT INTO `script_waypoint` VALUES
-(5391, 0, -9901.12, -3727.29, 22.11, 3000, ''),
-(5391, 1, -9909.27, -3727.81, 23.25, 0, ''),
-(5391, 2, -9935.25, -3729.02, 22.11, 0, ''),
-(5391, 3, -9945.83, -3719.34, 21.68, 0, ''),
-(5391, 4, -9963.41, -3710.18, 21.71, 0, ''),
-(5391, 5, -9972.75, -3690.13, 21.68, 0, ''),
-(5391, 6, -9989.70, -3669.67, 21.67, 0, ''),
-(5391, 7, -9989.21, -3647.76, 23.00, 0, ''),
-(5391, 8, -9992.27, -3633.74, 21.67, 0, ''),
-(5391, 9,-10002.32, -3611.67, 22.26, 0, ''),
-(5391,10, -9999.25, -3586.33, 21.85, 0, ''),
-(5391,11,-10006.53, -3571.99, 21.67, 0, ''),
-(5391,12,-10014.30, -3545.24, 21.67, 0, ''),
-(5391,13,-10018.91, -3525.03, 21.68, 0, ''),
-(5391,14,-10030.22, -3514.77, 21.67, 0, ''),
-(5391,15,-10045.11, -3501.49, 21.67, 0, ''),
-(5391,16,-10052.91, -3479.13, 21.67, 0, ''),
-(5391,17,-10060.68, -3460.31, 21.67, 0, ''),
-(5391,18,-10074.68, -3436.85, 20.97, 0, ''),
-(5391,19,-10074.68, -3436.85, 20.97, 0, ''),
-(5391,20,-10072.86, -3408.92, 20.43, 15000, ''),
-(5391,21,-10108.01, -3406.05, 22.06, 0, '');
-
--- Waypoints for Maxx A. Million Mk. V
-DELETE FROM script_waypoint WHERE entry = 19589;
-INSERT INTO script_waypoint VALUES
-(19589, 1, 3358.22, 3728.25, 141.204, 0, ''),
-(19589, 2, 3368.05, 3715.51, 142.057, 0, ''),
-(19589, 3, 3389.04, 3701.21, 144.648, 0, ''),
-(19589, 4, 3419.51, 3691.41, 146.598, 0, ''),
-(19589, 5, 3437.83, 3699.2, 147.235, 0, ''),
-(19589, 6, 3444.85, 3700.89, 147.088, 0, ''),
-(19589, 7, 3449.89, 3700.14, 148.118, 0, ''),
-(19589, 8, 3443.55, 3682.09, 149.219, 0, ''),
-(19589, 9, 3452.6, 3674.65, 150.226, 0, ''),
-(19589, 10, 3462.6, 3659.01, 152.436, 0, ''),
-(19589, 11, 3469.18, 3649.47, 153.178, 0, ''),
-(19589, 12, 3475.11, 3639.41, 157.213, 0, ''),
-(19589, 13, 3482.26, 3617.69, 159.126, 0, ''),
-(19589, 14, 3492.7, 3606.27, 156.419, 0, ''),
-(19589, 15, 3493.52, 3595.06, 156.581, 0, ''),
-(19589, 16, 3490.4, 3588.45, 157.764, 0, ''),
-(19589, 17, 3485.21, 3585.69, 159.979, 0, ''),
-(19589, 18, 3504.68, 3594.44, 152.862, 0, ''),
-(19589, 19, 3523.6, 3594.48, 145.393, 0, ''),
-(19589, 20, 3537.01, 3576.71, 135.748, 0, ''),
-(19589, 21, 3551.73, 3573.12, 128.013, 0, ''),
-(19589, 22, 3552.12, 3614.08, 127.847, 0, ''),
-(19589, 23, 3536.14, 3639.78, 126.031, 0, ''),
-(19589, 24, 3522.94, 3646.47, 131.989, 0, ''),
-(19589, 25, 3507.21, 3645.69, 138.1527, 0, ''),
-(19589, 26, 3485.15, 3645.64, 137.755, 0, ''),
-(19589, 27, 3472.18, 3633.88, 140.352, 0, ''),
-(19589, 28, 3435.34, 3613.69, 140.725, 0, ''),
-(19589, 29, 3417.4, 3612.4, 141.143, 0, ''),
-(19589, 30, 3411.04, 3621.14, 142.454, 0, ''),
-(19589, 31, 3404.47, 3636.89, 144.434, 0, ''),
-(19589, 32, 3380.55, 3657.06, 144.332, 0, ''),
-(19589, 33, 3375, 3676.86, 145.298, 0, ''),
-(19589, 34, 3388.87, 3685.48, 146.818, 0, ''),
-(19589, 35, 3393.99, 3699.4, 144.858, 0, ''),
-(19589, 36, 3354.95, 3726.02, 141.428, 0, '');
-
--- Waypoints for "Stinky" Ignatz
-DELETE FROM script_waypoint WHERE entry=4880;
-INSERT INTO `script_waypoint` VALUES
-(4880,0,-2646.429932,-3436.070068,35.373199,0, ''),
-(4880,1,-2650.82617,-3440.15332,35.138092,0, ''),
-(4880,2,-2662.3147,-3447.67285,35.10891,0, ''),
-(4880,3,-2680.4834,-3454.59766,34.6538124,0, ''),
-(4880,4,-2701.01855,-3457.43628,34.26906,0, ''),
-(4880,5,-2724.063,-3458.63623,33.6734657,0, ''),
-(4880,6,-2745.0127,-3459.28125,32.53458,0, ''),
-(4880,7,-2759.419,-3464.78174,32.714283,3000, ''),
-(4880,8,-2763.63,-3471.50732,33.53883,0, ''),
-(4880,9,-2771.789,-3480.88721,33.2553253,0, ''),
-(4880,10,-2780.66455,-3488.76343,31.8750439,0, ''),
-(4880,11,-2796.144775,-3489.013184,30.858467,3000, ''),
-(4880,12,-2792.117920,-3495.966797,30.732433,0, ''),
-(4880,13,-2789.059814,-3502.372559,30.670414,0, ''),
-(4880,14,-2787.715576,-3515.013428,31.117569,0, ''),
-(4880,15,-2790.841309,-3523.311768,30.573286,0, ''),
-(4880,16,-2796.58545,-3520.61963,29.9187489,0, ''),
-(4880,17,-2798.563,-3518.91064,30.3887444,0, ''),
-(4880,18,-2801.46875,-3516.745,30.1914845,0, ''),
-(4880,19,-2804.356201,-3513.899170,29.550812,0, ''),
-(4880,20,-2807.97559,-3517.99634,29.94883,0, ''),
-(4880,21,-2815.680664,-3521.739014,29.772268,0, ''),
-(4880,22,-2823.386230,-3526.234131,31.71944,0, ''),
-(4880,23,-2836.109619,-3544.695557,32.493855,0, ''),
-(4880,24,-2830.392578,-3568.862305,30.410404,0, ''),
-(4880,25,-2824.842285,-3569.516846,31.281128,0, ''),
-(4880,26,-2818.663818,-3567.801025,30.920368,6000, ''),
-(4880,27,-2817.663818,-3568.935059,30.431194,6000, ''),
-(4880,28,-2820.394043,-3592.223389,30.716301,6000, ''),
-(4880,29,-2820.765625,-3592.497803,30.886147,0, ''),
-(4880,30,-2829.909424,-3588.730713,30.683064,0, ''),
-(4880,31,-2842.322021,-3577.498291,36.848869,0, ''),
-(4880,32,-2851.180420,-3567.579346,38.515850,0, ''),
-(4880,33,-2865.554932,-3551.582275,41.438988,0, ''),
-(4880,34,-2871.234863,-3548.145020,40.761391,0, ''),
-(4880,35,-2877.840332,-3544.147461,38.670235,0, ''),
-(4880,36,-2890.394775,-3542.388672,34.314426,0, ''),
-(4880,37,-2898.729980,-3543.635742,34.319958,6000, ''),
-(4880,38,-2910.064453,-3568.957275,34.250011,0, ''),
-(4880,39,-2932.509766,-3584.618652,37.238464,0, '');
-
-
diff --git a/sql/scripts/world_scripts_full.sql b/sql/scripts/world_scripts_full.sql
deleted file mode 100644
index 0902944f312..00000000000
--- a/sql/scripts/world_scripts_full.sql
+++ /dev/null
@@ -1,2392 +0,0 @@
--- Up to TC 11181
-
--- Cleanup first
-UPDATE `battleground_template` SET `ScriptName`='';
-UPDATE `instance_template` SET `Script`='';
-UPDATE `item_template` SET `ScriptName`='';
-UPDATE `creature_template` SET `ScriptName`='';
-UPDATE `gameobject_template` SET `ScriptName`='';
-UPDATE `outdoorpvp_template` SET `ScriptName`='';
-
-/* AREA TRIGGERS */
-DELETE FROM `areatrigger_scripts` WHERE `entry` IN (822,5284,5285,5286,5287,4871,4872,4873,5108,5332,5338,5334,5340,5369,5423,5633,5604,5698,5649,5729,5616,5617,5618,5718);
-DELETE FROM `areatrigger_scripts` WHERE `entry` BETWEEN 1726 AND 1740;
-INSERT INTO `areatrigger_scripts` (`entry`,`ScriptName`) VALUES
-(822, 'at_map_chamber'),
-(5284, 'at_aldurthar_gate'),
-(5285, 'at_aldurthar_gate'),
-(5286, 'at_aldurthar_gate'),
-(5287, 'at_aldurthar_gate'),
-(4871, 'at_warsong_farms'),
-(4872, 'at_warsong_farms'),
-(4873, 'at_warsong_farms'),
-(5108, 'at_stormwright_shelf'),
-(5332, 'at_last_rites'),
-(5338, 'at_last_rites'),
-(5334, 'at_last_rites'),
-(5340, 'at_last_rites'),
-(1726, 'at_scent_larkorwi'),
-(1727, 'at_scent_larkorwi'),
-(1728, 'at_scent_larkorwi'),
-(1729, 'at_scent_larkorwi'),
-(1730, 'at_scent_larkorwi'),
-(1731, 'at_scent_larkorwi'),
-(1732, 'at_scent_larkorwi'),
-(1733, 'at_scent_larkorwi'),
-(1734, 'at_scent_larkorwi'),
-(1735, 'at_scent_larkorwi'),
-(1736, 'at_scent_larkorwi'),
-(1737, 'at_scent_larkorwi'),
-(1738, 'at_scent_larkorwi'),
-(1739, 'at_scent_larkorwi'),
-(1740, 'at_scent_larkorwi'),
-(5046, 'at_sholazar_waygate'),
-(5047, 'at_sholazar_waygate'),
-(5369, 'at_RX_214_repair_o_matic_station'),
-(5423, 'at_RX_214_repair_o_matic_station'),
-(5633, 'at_tyrannus_event_starter'),
-(5604, 'at_sindragosa_lair'),
-(5698, 'at_icc_saurfang_portal'),
-(5649, 'at_icc_shutdown_traps'),
-(5729, 'at_icc_start_blood_quickening'),
-(5616, 'at_icc_start_frostwing_gauntlet'),
-(5617, 'at_icc_start_frostwing_gauntlet'),
-(5618, 'at_icc_start_frostwing_gauntlet'),
-(5718, 'at_frozen_throne_teleport');
-
-/* WORLD BOSS */
-UPDATE `creature_template` SET `ScriptName`='boss_ysondre' WHERE `entry`=14887;
-UPDATE `creature_template` SET `ScriptName`='boss_emeriss' WHERE `entry`=14889;
-UPDATE `creature_template` SET `ScriptName`='boss_taerar' WHERE `entry`=14890;
-UPDATE `creature_template` SET `ScriptName`='boss_shade_of_taerar' WHERE `entry`=15302;
-UPDATE `creature_template` SET `ScriptName`='boss_kruul' WHERE `entry`=18338;
-UPDATE `creature_template` SET `ScriptName`='boss_azuregos' WHERE `entry`=6109;
-UPDATE `creature_template` SET `ScriptName`='mob_dementeddruids' WHERE `entry`=15260;
-UPDATE `creature_template` SET `ScriptName`='boss_mr_smite' WHERE `entry`=646;
-
-/* GO */
-UPDATE `gameobject_template` SET `ScriptName`='go_cat_figurine' WHERE `entry`=13873;
-UPDATE `gameobject_template` SET `ScriptName`='go_northern_crystal_pylon' WHERE `entry`=164955;
-UPDATE `gameobject_template` SET `ScriptName`='go_western_crystal_pylon' WHERE `entry`=164956;
-UPDATE `gameobject_template` SET `ScriptName`='go_eastern_crystal_pylon' WHERE `entry`=164957;
-UPDATE `gameobject_template` SET `ScriptName`='go_barov_journal' WHERE `entry`=180794;
-UPDATE `gameobject_template` SET `ScriptName`='go_field_repair_bot_74A' WHERE `entry`=179552;
-UPDATE `gameobject_template` SET `ScriptName`='go_orb_of_command' WHERE `entry`=179879;
-UPDATE `gameobject_template` SET `ScriptName`='go_resonite_cask' WHERE entry=178145;
-UPDATE `gameobject_template` SET `ScriptName`='go_tablet_of_madness' WHERE `entry`=180368;
-UPDATE `gameobject_template` SET `ScriptName`='go_tablet_of_the_seven' WHERE `entry`=169294;
-UPDATE `gameobject_template` SET `ScriptName`='go_manticron_cube' WHERE `entry`=181713;
-UPDATE `gameobject_template` SET `ScriptName`='go_mausoleum_trigger' WHERE `entry`=104593;
-UPDATE `gameobject_template` SET `ScriptName`='go_mausoleum_door' WHERE `entry`=176594;
-UPDATE `gameobject_template` SET `ScriptName`='go_crystal_prison' WHERE `entry`=185126;
-UPDATE `gameobject_template` SET `ScriptName`='go_legion_obelisk' WHERE `entry` IN (185193,185195,185196,185197,185198);
-UPDATE `gameobject_template` SET `ScriptName`='go_jump_a_tron' WHERE `entry`=183146;
-UPDATE `gameobject_template` SET `ScriptName`='go_ethereum_prison' WHERE `entry` BETWEEN 184418 AND 184431;
-UPDATE `gameobject_template` SET `ScriptName`='go_ethereum_stasis' WHERE `entry` BETWEEN 185465 AND 185467;
-UPDATE `gameobject_template` SET `ScriptName`='go_ethereum_stasis' WHERE `entry`=184595;
-UPDATE `gameobject_template` SET `ScriptName`='go_ethereum_stasis' WHERE `entry` BETWEEN 185461 AND 185464;
-UPDATE `gameobject_template` SET `ScriptName`='go_sacred_fire_of_life' WHERE `entry`=175944;
-UPDATE `gameobject_template` SET `ScriptName`='go_skull_pile' WHERE `entry`=185913;
-UPDATE `gameobject_template` SET `ScriptName`='go_tele_to_dalaran_crystal' WHERE `entry`=191230;
-UPDATE `gameobject_template` SET `ScriptName`='go_tele_to_violet_stand' WHERE `entry`=191229;
-UPDATE `gameobject_template` SET `ScriptName`='go_orb_of_the_blue_flight' WHERE `entry`=188415;
-UPDATE `gameobject_template` SET `ScriptName`='go_acherus_soul_prison' WHERE `entry` IN (191577,191580,191581,191582,191583,191584,191585,191586,191587,191588,191589,191590);
-UPDATE `gameobject_template` SET `ScriptName`='go_shrine_of_the_birds' WHERE `entry` IN (185547,185553,185551);
-UPDATE `gameobject_template` SET `ScriptName`='go_matrix_punchograph' WHERE `entry` IN (142345,142475,142476,142696);
-UPDATE `gameobject_template` SET `ScriptName`='go_jotunheim_cage' WHERE `entry`=192135;
-UPDATE `gameobject_template` SET `scriptname`='go_inconspicuous_landmark' WHERE `entry`=142189;
-UPDATE `gameobject_template` SET `ScriptName`='go_soulwell' WHERE `entry` IN (181621,193169);
-UPDATE `gameobject_template` SET `scriptname`='go_tadpole_cage' WHERE `entry`=187373;
-UPDATE `gameobject_template` SET `ScriptName`='go_dragonflayer_cage' WHERE entry IN (186566,186567,186568,186569,186570,186571,186572,186573,186574,186575);
-UPDATE `gameobject_template` SET `ScriptName`='go_black_cage' WHERE `entry`=195310;
-UPDATE `gameobject_template` SET `ScriptName`='go_massive_seaforium_charge' WHERE `entry`=190752;
-UPDATE `gameobject_template` SET `ScriptName`='go_harpoon_launcher' WHERE `entry` IN (192175,192176,192177);
-UPDATE `gameobject_template` SET `ScriptName`='go_wind_stone' WHERE `entry` IN (180456,180461,180466,180518,180529,180534,180539,180544,180549,180554,180559,180564);
-
-
-/* GUARD */
-UPDATE `creature_template` SET `ScriptName`='guard_generic' WHERE `entry` IN (68,1976,3218,3296,3502,4624,9460,11190,15184);
-UPDATE `creature_template` SET `ScriptName`='guard_shattrath_aldor' WHERE `entry`=18549;
-UPDATE `creature_template` SET `ScriptName`='guard_shattrath_scryer' WHERE `entry`=18568;
-
-/* INNKEEPER */
-UPDATE `creature_template` SET `ScriptName`='npc_innkeeper' WHERE `entry` IN
-(32418,32411,29926,30308,31433,32413,30005,29963,31115,31557,29971,18649,15397,6806,6778,16542,17553,19046,16739,16553,11116,9501,
-6740,2352,6739,1247,3934,6727,7714,15433,16458,295,5111,7733,7737,6928,6929,6734,8931,1464,6272,7731,17630,6930,6747,12196,6736,
-6738,11103,6741,6746,5688,6735,6737,2388,9356,7736,11106,5814,7744,6790,16618,11118,6791,23995,24208,6807,14731,16256,15174,16826,
-19531,16602,19470,19232,21088,18245,18906,18905,18251,18907,18908,27148,18914,27187,21746,19352,19319,18957,19571,19495,18913,21744,
-23731,21110,23143,23937,25278,25245,26596,24149,24033,25036,24057,27950,27042,22922,27066,27027,27052,26709,24342,26985,27125,26680,
-29532,28687,28686,27174,28791,29583,26375,28038,29904);
-
-/* ITEM */
-UPDATE `item_template` SET `ScriptName`='item_draenei_fishing_net' WHERE `entry`=23654;
-UPDATE `item_template` SET `ScriptName`='item_gor_dreks_ointment' WHERE `entry`=30175;
-UPDATE `item_template` SET `ScriptName`='item_nether_wraith_beacon' WHERE `entry`=31742;
-UPDATE `item_template` SET `ScriptName`='item_tainted_core' WHERE `entry`=31088;
-UPDATE `item_template` SET `ScriptName`='item_only_for_flight' WHERE `entry` IN (34475,34489,24538);
-UPDATE `item_template` SET `ScriptName`='item_incendiary_explosives' WHERE (`entry`=35704);
-UPDATE `item_template` SET `ScriptName`='item_mysterious_egg' WHERE `entry` IN(39878);
-UPDATE `item_template` SET `ScriptName`='item_disgusting_jar' WHERE `entry` IN(44717);
-UPDATE `item_template` SET `ScriptName`='item_petrov_cluster_bombs' WHERE `entry`=33098;
-UPDATE `item_template` SET `ScriptName`='item_Trident_of_Nazjan' WHERE `entry`=35850;
-UPDATE `item_template` SET `ScriptName`='item_captured_frog' WHERE `entry`=53510;
-
-/* NPC (usually creatures to be found in more than one specific zone) */
-UPDATE `creature_template` SET `ScriptName`='npc_air_force_bots' WHERE `entry` IN (2614,2615,21974,21993,21996,21997,21999,22001,22002,22003,22063,22065,22066,22068,22069,22070,22071,22078,22079,22080,22086,22087,22088,22090,22124,22125,22126);
-UPDATE `creature_template` SET `ScriptName`='npc_lunaclaw_spirit' WHERE `entry`=12144;
-UPDATE `creature_template` SET `ScriptName`='npc_chicken_cluck' WHERE `entry`=620;
-UPDATE `creature_template` SET `ScriptName`='npc_dancing_flames' WHERE `entry`=25305;
-UPDATE `creature_template` SET `ScriptName`='npc_garments_of_quests' WHERE `entry` IN (12429,12423,12427,12430,12428);
-UPDATE `creature_template` SET `ScriptName`='npc_guardian' WHERE `entry`=5764;
-UPDATE `creature_template` SET `ScriptName`='npc_mount_vendor' WHERE `entry` IN (384,1261,1460,2357,3362,3685,4730,4731,4885,7952,7955,16264,17584);
-UPDATE `creature_template` SET `ScriptName`='npc_doctor' WHERE `entry` IN (12939,12920);
-UPDATE `creature_template` SET `ScriptName`='npc_injured_patient' WHERE `entry` IN (12936,12937,12938,12923,12924,12925);
-UPDATE `creature_template` SET `ScriptName`='npc_prof_alchemy' WHERE `entry` IN (17909,19052,22427);
-UPDATE `creature_template` SET `ScriptName`='npc_prof_blacksmith' WHERE `entry` IN (5164,11145,11146,11176,11177,11178,11191,11192,11193);
-UPDATE `creature_template` SET `ScriptName`='npc_engineering_tele_trinket' WHERE `entry` IN (14742,14743,21493,21494);
-UPDATE `creature_template` SET `ScriptName`='npc_prof_leather' WHERE `entry` IN (7866,7867,7868,7869,7870,7871);
-UPDATE `creature_template` SET `ScriptName`='npc_prof_tailor' WHERE `entry` IN (22208,22212,22213);
-UPDATE `creature_template` SET `ScriptName`='npc_rogue_trainer' WHERE `entry` IN (918,4163,3328,4583,5165,5167,13283,16684);
-UPDATE `creature_template` SET `ScriptName`='npc_sayge' WHERE `entry`=14822;
-UPDATE `creature_template` SET `ScriptName`='npc_steam_tonk' WHERE `entry`=19405;
-UPDATE `creature_template` SET `ScriptName`='npc_tonk_mine' WHERE `entry`=15368;
-UPDATE `creature_template` SET `ScriptName`='npc_winter_reveler' WHERE `entry`=15760;
-UPDATE `creature_template` SET `ScriptName`='npc_brewfest_reveler' WHERE `entry`=24484;
-UPDATE `creature_template` SET `ScriptName`='npc_snake_trap_serpents' WHERE `entry` IN (19921,19833);
-UPDATE `creature_template` SET `ScriptName`='npc_unworthy_initiate' WHERE `entry` IN (29519,29520,29565,29566,29567);
-UPDATE `creature_template` SET `ScriptName`='npc_unworthy_initiate_anchor' WHERE `entry`=29521;
-UPDATE `creature_template` SET `ScriptName`='npc_kingdom_of_dalaran_quests' WHERE `entry` IN (29169,23729,26673,27158,29158,29161,26471,29155,29159,29160,29162);
-UPDATE `creature_template` SET `ScriptName`='npc_taxi' WHERE `entry` IN (17435,23413,18725,19401,19409,20235,25059,25236,20903,20162,29154,23415,27575,26443,26949,23816,23704,26602,17209);
-UPDATE `creature_template` SET `ScriptName`='npc_death_knight_initiate' WHERE `entry`=28406;
-UPDATE `creature_template` SET `ScriptName`='npc_salanar_the_horseman' WHERE `entry` IN (28653,28788);
-UPDATE `creature_template` SET `ScriptName`='npc_dark_rider_of_acherus' WHERE `entry`=28654;
-UPDATE `creature_template` SET `ScriptName`='npc_ros_dark_rider' WHERE `entry`=28768;
-UPDATE `creature_template` SET `ScriptName`='npc_dkc1_gothik' WHERE `entry`=28658;
-UPDATE `creature_template` SET `ScriptName`='npc_scarlet_ghoul' WHERE `entry`=28845;
-UPDATE `creature_template` SET `ScriptName`='npc_a_special_surprise' WHERE `entry` IN (29032,29061,29065,29067,29068,29070,29074,29072,29073,29071);
-UPDATE `creature_template` SET `ScriptName`='npc_koltira_deathweaver' WHERE `entry`=28912;
-UPDATE `creature_template` SET `ScriptName`='mob_high_inquisitor_valroth' WHERE `entry`=29001;
-UPDATE `creature_template` SET `ScriptName`='npc_demolisher_engineerer' WHERE `entry` IN (30400,30499);
-UPDATE `creature_template` SET `ScriptName`='npc_valkyr_battle_maiden' WHERE `entry`=28534;
-UPDATE `creature_template` SET `ScriptName`='npc_mirror_image' WHERE `entry`=31216;
-UPDATE `creature_template` SET `ScriptName`='npc_training_dummy' WHERE `entry` IN (17578,24792,32543,32546,32542,32545,30527,31143,31144,31146,32541,32666,32667,16111,2674,2673,33229,33243,33272);
-UPDATE `creature_template` SET `ScriptName`='npc_lightwell' WHERE `entry` IN (31883,31893,31894,31895,31896,31897);
-UPDATE `creature_template` SET `ScriptName`='npc_ebon_gargoyle' WHERE `entry`=27829;
-UPDATE `gameobject_template` SET `ScriptName`='go_inconspicuous_mine_car' WHERE `entry`=190767;
-UPDATE `creature_template` SET `ScriptName`='npc_scarlet_miner_cart' WHERE `entry`=28817;
-UPDATE `creature_template` SET `ScriptName`='npc_scarlet_miner' WHERE `entry`=28841;
-UPDATE `creature_template` SET `ScriptName`='npc_crusade_persuaded' WHERE `entry` IN (28939,28940,28610);
-UPDATE `creature_template` SET `ScriptName`='mob_scarlet_courier' WHERE `entry`=29076;
-UPDATE `creature_template` SET `AIName`='ArcherAI', `ScriptName`='' WHERE `entry` IN (29102,29103);
-UPDATE `creature_template` SET `AIName`='TurretAI', `ScriptName`='' WHERE `entry`=29104;
-UPDATE `creature_template` SET `ScriptName`='npc_highlord_darion_mograine' WHERE `entry`=29173;
-UPDATE `creature_template` SET `ScriptName`='npc_the_lich_king_tirion_dawn' WHERE `entry` IN (29183,29175);
-UPDATE `creature_template` SET `ScriptName`='npc_shadowfiend' WHERE `entry`=19668;
-UPDATE `creature_template` SET `ScriptName`='npc_wormhole' WHERE `entry`=35646;
-UPDATE `creature_template` SET `ScriptName`='npc_pet_trainer' WHERE `entry` IN (10090,3698,17484,4320,3545,16712,3622,16675,3620,10086,2879,3306,543,2878,3688,10089,16271,10088,3624);
-UPDATE `creature_template` SET `ScriptName`='npc_locksmith' WHERE `entry` IN (29665,29725,29728);
-UPDATE `creature_template` SET `ScriptName`='npc_tabard_vendor' WHERE `entry`=28776;
-UPDATE `creature_template` SET `ScriptName`='npc_experience'WHERE `entry` IN (35364,35365);
-
-/* */
-/* ZONE */
-/* */
-
-/* ALTERAC MOUNTAINS */
-
-/* ALTERAC VALLEY */
-
-UPDATE `creature_template` SET `ScriptName`='boss_drekthar' WHERE `entry`=11946;
-UPDATE `creature_template` SET `ScriptName`='boss_vanndar' WHERE `entry`=11948;
-UPDATE `creature_template` SET `ScriptName`='boss_balinda' WHERE `entry`=11949;
-UPDATE `creature_template` SET `ScriptName`='mob_water_elemental' WHERE `entry`=25040;
-UPDATE `creature_template` SET `ScriptName`='boss_galvangar' WHERE `entry`=11947;
-UPDATE `creature_template` SET `ScriptName`='mob_av_marshal_or_warmaster' WHERE `entry` IN (14762,14763,14764,14765,14772,14773,14776,14777);
-
-/* ARATHI HIGHLANDS */
-UPDATE `creature_template` SET `ScriptName`='npc_professor_phizzlethorpe' WHERE `entry`=2768;
-
-/* ASHENVALE */
-UPDATE `creature_template` SET `ScriptName`='npc_torek' WHERE `entry`=12858;
-UPDATE `creature_template` SET `ScriptName`='npc_ruul_snowhoof' WHERE `entry`=12818;
-UPDATE `gameobject_template` SET `ScriptName`='go_naga_brazier' WHERE `entry`=178247;
-UPDATE `creature_template` SET `ScriptName`='npc_muglash' WHERE `entry`=12717;
-
-/* AUCHINDOUN */
-
-/* MANA TOMBS */
-UPDATE `creature_template` SET `ScriptName`='boss_pandemonius' WHERE `entry`=18341;
-UPDATE `creature_template` SET `ScriptName`='boss_nexusprince_shaffar' WHERE `entry`=18344;
-UPDATE `creature_template` SET `ScriptName`='mob_ethereal_beacon' WHERE `entry`=18431;
-UPDATE `creature_template` SET `ScriptName`='mob_ethereal_apprentice' WHERE `entry`=18430;
-
-/* AUCHENAI CRYPTS */
-UPDATE `creature_template` SET `ScriptName`='boss_exarch_maladaar' WHERE `entry`=18373;
-UPDATE `creature_template` SET `ScriptName`='mob_avatar_of_martyred' WHERE `entry`=18478;
-UPDATE `creature_template` SET `ScriptName`='mob_stolen_soul' WHERE `entry`=18441;
-UPDATE `creature_template` SET `ScriptName`='boss_shirrak_the_dead_watcher' WHERE `entry`=18371;
-UPDATE `creature_template` SET `ScriptName`='mob_focus_fire' WHERE `entry`=18374;
-
-/* SETHEKK HALLS */
-UPDATE `instance_template` SET `script`='instance_sethekk_halls' WHERE `map`=556;
-UPDATE `creature_template` SET `ScriptName`='mob_syth_fire' WHERE `entry`=19203;
-UPDATE `creature_template` SET `ScriptName`='mob_syth_arcane' WHERE `entry`=19205;
-UPDATE `creature_template` SET `ScriptName`='mob_syth_frost' WHERE `entry`=19204;
-UPDATE `creature_template` SET `ScriptName`='mob_syth_shadow' WHERE `entry`=19206;
-UPDATE `creature_template` SET `ScriptName`='boss_talon_king_ikiss' WHERE `entry`=18473;
-UPDATE `creature_template` SET `ScriptName`='boss_darkweaver_syth' WHERE `entry`=18472;
-
-/* SHADOW LABYRINTH */
-UPDATE `instance_template` SET `script`='instance_shadow_labyrinth' WHERE `map`=555;
-UPDATE `creature_template` SET `ScriptName`='boss_murmur' WHERE `entry`=18708;
-UPDATE `creature_template` SET `ScriptName`='boss_grandmaster_vorpil' WHERE `entry`=18732;
-UPDATE `creature_template` SET `ScriptName`='boss_blackheart_the_inciter' WHERE `entry`=18667;
-UPDATE `creature_template` SET `ScriptName`='boss_ambassador_hellmaw' WHERE `entry`=18731;
-UPDATE `creature_template` SET `ScriptName`='mob_voidtraveler' WHERE `entry`=19226;
-
-/* AZJOL-NERUB */
-UPDATE `instance_template` SET `script`='instance_azjol_nerub' WHERE `map`=601;
-UPDATE `creature_template` SET `ScriptName`='npc_watcher_narjil' WHERE `entry`=28729;
-UPDATE `creature_template` SET `ScriptName`='npc_watcher_silthik' WHERE `entry`=28731;
-UPDATE `creature_template` SET `ScriptName`='npc_anub_ar_warrior' WHERE `entry`=28732;
-UPDATE `creature_template` SET `ScriptName`='npc_watcher_gashra' WHERE `entry`=28730;
-UPDATE `creature_template` SET `ScriptName`='boss_krik_thir' WHERE `entry`=28684;
-UPDATE `creature_template` SET `ScriptName`='npc_skittering_infector' WHERE `entry`=28736;
-UPDATE `creature_template` SET `ScriptName`='npc_anub_ar_skirmisher' WHERE `entry`=28734;
-UPDATE `creature_template` SET `ScriptName`='npc_anub_ar_shadowcaster' WHERE `entry`=28733;
-UPDATE `creature_template` SET `ScriptName`='boss_hadronox' WHERE `entry`=28921;
-UPDATE `creature_template` SET `ScriptName`='boss_anub_arak' WHERE `entry`=29120;
-
-/* AHN'KAHET: THE OLD KINGDOM */
-UPDATE `instance_template` SET `script`='instance_ahnkahet' WHERE `map`=619;
-UPDATE `creature_template` SET `ScriptName`='boss_elder_nadox' WHERE `entry`=29309;
-UPDATE `creature_template` SET `ScriptName`='mob_ahnkahar_nerubian' WHERE `entry` IN (30176,30178);
-UPDATE `creature_template` SET `ScriptName`='boss_taldaram' WHERE `entry`=29308;
-UPDATE `creature_template` SET `ScriptName`='mob_taldaram_flamesphere' WHERE `entry` IN (30106,31686,31687);
-UPDATE `gameobject_template` SET `ScriptName`='prince_taldaram_sphere' WHERE `entry` IN (193093,193094);
-UPDATE `creature_template` SET `ScriptName`='boss_volazj' WHERE `entry`=29311;
-UPDATE `creature_template` SET `ScriptName`='boss_amanitar' WHERE `entry`=30258;
-UPDATE `creature_template` SET `ScriptName`='mob_amanitar_mushrooms' WHERE `entry` IN (30435,30391);
-UPDATE `creature_template` SET `ScriptName`='mob_nadox_eggs' WHERE `entry` IN (30172,30173);
-UPDATE `creature_template` SET `ScriptName`='boss_jedoga_shadowseeker' WHERE `entry`=29310;
-UPDATE `creature_template` SET `ScriptName`='mob_jedoga_initiand' WHERE `entry`=30114;
-UPDATE `creature_template` SET `ScriptName`='npc_jedogas_aufseher_trigger' WHERE `entry`=30181;
-
-/* AZSHARA */
-UPDATE `creature_template` SET `ScriptName`='mobs_spitelashes' WHERE `entry` IN (6190,6193,6194,6195,6196,7885,7886,12204,12205);
-UPDATE `creature_template` SET `ScriptName`='npc_loramus_thalipedes' WHERE `entry`=7783;
-UPDATE `creature_template` SET `ScriptName`='mob_rizzle_sprysprocket' WHERE `entry`=23002;
-UPDATE `creature_template` SET `ScriptName`='mob_depth_charge' WHERE `entry`=23025;
-
-/* AZUREMYST ISLE */
-UPDATE `creature_template` SET `ScriptName`='npc_engineer_spark_overgrind' WHERE `entry`=17243;
-UPDATE `creature_template` SET `ScriptName`='npc_injured_draenei' WHERE `entry`=16971;
-UPDATE `creature_template` SET `ScriptName`='npc_magwin' WHERE `entry`=17312;
-UPDATE `creature_template` SET `ScriptName`='npc_geezle' WHERE `entry`=17318;
-UPDATE `creature_template` SET `ScriptName`='npc_draenei_survivor' WHERE `entry`=16483;
-UPDATE `creature_template` SET `ScriptName`='npc_death_ravager' WHERE `entry`=17556;
-UPDATE `creature_template` SET `ScriptName`='npc_stillpine_capitive' where `entry`=17375;
-UPDATE `gameobject_template` SET `ScriptName`='go_ravager_cage' WHERE `entry`=181849;
-UPDATE `gameobject_template` SET `ScriptName`='go_bristlelimb_cage' WHERE `entry`=181714;
-
-/* BADLANDS */
-
-/* BARRENS */
-UPDATE `creature_template` SET `ScriptName`='npc_beaten_corpse' WHERE `entry`=10668;
-UPDATE `creature_template` SET `ScriptName`='npc_gilthares' WHERE `entry`=3465;
-UPDATE `creature_template` SET `ScriptName`='npc_sputtervalve' WHERE `entry`=3442;
-UPDATE `creature_template` SET `ScriptName`='npc_taskmaster_fizzule' WHERE `entry`=7233;
-UPDATE `creature_template` SET `ScriptName`='npc_twiggy_flathead' WHERE `entry`=6248;
-UPDATE `creature_template` SET `ScriptName`='npc_wizzlecrank_shredder' WHERE `entry`=3439;
-
-/* BLACK TEMPLE */
-UPDATE `gameobject_template` SET `ScriptName`='go_najentus_spine' WHERE `entry`=185584;
-UPDATE `gameobject_template` SET `ScriptName`='gameobject_cage_trap' WHERE `entry`=185916; -- Cage Trap GO in Illidan Encounter
-UPDATE `instance_template` SET `script`='instance_black_temple' WHERE `map`=564;
-UPDATE `creature_template` SET `ScriptName`='npc_akama_shade' WHERE `entry`=22990; -- Akama at Shade of Akama
-UPDATE `creature_template` SET `ScriptName`='npc_akama_illidan' WHERE `entry`=23089; -- Akama at Illidan
-UPDATE `creature_template` SET `ScriptName`='mob_illidari_council' WHERE `entry`=23426; -- Illidari Council controller mob
-UPDATE `creature_template` SET `ScriptName`='mob_blood_elf_council_voice_trigger' WHERE `entry`=23499; -- Voice Trigger Mob (Controls Aggro + Enrage yells)
-UPDATE `creature_template` SET `ScriptName`='boss_veras_darkshadow' WHERE `entry`=22952; -- Rogue of Illidari Council
-UPDATE `creature_template` SET `ScriptName`='boss_teron_gorefiend' WHERE `entry`=22871; -- Teron Gorefiend
-UPDATE `creature_template` SET `ScriptName`='boss_supremus' WHERE `entry`=22898; -- Supremus
-UPDATE `creature_template` SET `ScriptName`='boss_shade_of_akama' WHERE `entry`=22841; -- Shade of Akama
-UPDATE `creature_template` SET `ScriptName`='boss_reliquary_of_souls' WHERE `entry`=22856; -- Reliquary Controller Mob
-UPDATE `creature_template` SET `ScriptName`='boss_essence_of_suffering' WHERE `entry`=23418; -- Essence Of Suffering
-UPDATE `creature_template` SET `ScriptName`='boss_essence_of_desire' WHERE `entry`=23419; -- Essence of Desire
-UPDATE `creature_template` SET `ScriptName`='boss_essence_of_anger' WHERE `entry`=23420; -- Essence of Anger
-UPDATE `creature_template` SET `ScriptName`='boss_najentus' WHERE `entry`=22887; -- High Warlord Naj'entus
-UPDATE `creature_template` SET `ScriptName`='boss_gurtogg_bloodboil' WHERE `entry`=22948; -- Gurtogg Bloodboil
-UPDATE `creature_template` SET `ScriptName`='boss_mother_shahraz' WHERE `entry`=22947; -- Mother Shahraz
-UPDATE `creature_template` SET `ScriptName`='boss_lady_malande' WHERE `entry`=22951; -- Priest <3 at Illidari Council
-UPDATE `creature_template` SET `ScriptName`='boss_illidan_stormrage' WHERE `entry`=22917; -- Illidan The Betrayer!
-UPDATE `creature_template` SET `ScriptName`='boss_high_nethermancer_zerevor' WHERE `entry`=22950; -- Mage at Illidari Council
-UPDATE `creature_template` SET `ScriptName`='boss_gathios_the_shatterer' WHERE `entry`=22949; -- Paladin at Illidari Council
-UPDATE `creature_template` SET `ScriptName`='boss_maiev_shadowsong' WHERE `entry`=23197; -- Maiev Shadowsong
-UPDATE `creature_template` SET `ScriptName`='mob_blaze' WHERE `entry`=23259; -- Blaze mob in Illidan Phase 2
-UPDATE `creature_template` SET `ScriptName`='mob_flame_of_azzinoth' WHERE `entry`=22997; -- Flame of Azzinoth (Illidan Phase 2)
-UPDATE `creature_template` SET `ScriptName`='mob_blade_of_azzinoth' WHERE `entry`=22996; -- Blade of Azzinoth (Illidan Phase 2)
-UPDATE `creature_template` SET `ScriptName`='mob_demon_fire' WHERE `entry`=23069; -- Demon Fire in Illidan Phase 2
-UPDATE `creature_template` SET `ScriptName`='mob_flame_crash' WHERE `entry`=23336; -- Flame Crash in Illidan Normal Form
-UPDATE `creature_template` SET `ScriptName`='mob_cage_trap_trigger' WHERE `entry`=23304; -- Cage Trap mob in Illidan Phase 3/4 Normal
-UPDATE `creature_template` SET `ScriptName`='mob_shadow_demon' WHERE `entry`=23375; -- Shadow Demon in Illidan Demon Form
-UPDATE `creature_template` SET `ScriptName`='npc_volcano' WHERE `entry`=23085; -- Supremus Volcano
-UPDATE `creature_template` SET `ScriptName`='molten_flame' WHERE `entry`=23095; -- Molten Flame in SUpremus
-UPDATE `creature_template` SET `ScriptName`='mob_ashtongue_channeler' WHERE `entry`=23421; -- Ashtongue CHanneler in Shade of AKama
-UPDATE `creature_template` SET `ScriptName`='mob_ashtongue_sorcerer' WHERE `entry`=23215; -- Ashtongue Sorcerer in Shade of Akama
-UPDATE `creature_template` SET `ScriptName`='npc_enslaved_soul' WHERE `entry`=23469; -- Enslaved Soul in Reliquary Event
-UPDATE `creature_template` SET `ScriptName`='mob_doom_blossom' WHERE `entry`=23123; -- Doom Blossoms in Teron Gorefiend's encounter
-UPDATE `creature_template` SET `ScriptName`='npc_spirit_of_olum' WHERE `entry`=23411;
-UPDATE `creature_template` SET `ScriptName`='mob_shadowy_construct' WHERE `entry`=23111;
-UPDATE `creature_template` SET `ScriptName`='mob_parasitic_shadowfiend' WHERE `entry`=23498;
-
-/* BLACKFATHOM DEPTHS */
-UPDATE `instance_template` SET `script`='instance_blackfathom_deeps' WHERE `map`=48;
-UPDATE `gameobject_template` SET `ScriptName`='go_blackfathom_fire' WHERE `entry` IN (21118,21119,21120,21121);
-UPDATE `gameobject_template` SET `ScriptName`='go_blackfathom_altar' WHERE `entry` IN (103015,103016);
-UPDATE `creature_template` SET `ScriptName`='boss_gelihast' WHERE `entry`=6243;
-UPDATE `creature_template` SET `ScriptName`='boss_kelris' WHERE `entry`=4832;
-UPDATE `creature_template` SET `ScriptName`='boss_aku_mai' WHERE `entry`=4829;
-UPDATE `creature_template` SET `ScriptName`='npc_blackfathom_deeps_event' WHERE `entry` IN (4823,4825,4977,4978);
-UPDATE `creature_template` SET `ScriptName`='npc_morridune' WHERE `entry`=6729;
-
-/* BLACKROCK DEPTHS */
-UPDATE `instance_template` SET `script`='instance_blackrock_depths' WHERE `map`=230;
-UPDATE `creature_template` SET `ScriptName`='boss_emperor_dagran_thaurissan' WHERE `entry`=9019;
-UPDATE `creature_template` SET `ScriptName`='boss_moira_bronzebeard' WHERE `entry`=8929;
-UPDATE `creature_template` SET `ScriptName`='boss_ambassador_flamelash' WHERE `entry`=9156;
-UPDATE `creature_template` SET `ScriptName`='boss_anubshiah' WHERE `entry`=9031;
-UPDATE `creature_template` SET `ScriptName`='boss_doomrel' WHERE `entry`=9039;
-UPDATE `creature_template` SET `ScriptName`='boss_gloomrel' WHERE `entry`=9037;
-UPDATE `creature_template` SET `ScriptName`='boss_general_angerforge' WHERE `entry`=9033;
-UPDATE `creature_template` SET `ScriptName`='boss_gorosh_the_dervish' WHERE `entry`=9027;
-UPDATE `creature_template` SET `ScriptName`='boss_grizzle' WHERE `entry`=9028;
-UPDATE `creature_template` SET `ScriptName`='boss_high_interrogator_gerstahn' WHERE `entry`=9018;
-UPDATE `creature_template` SET `ScriptName`='boss_magmus' WHERE `entry`=9938;
-UPDATE `creature_template` SET `ScriptName`='npc_lokhtos_darkbargainer' WHERE `entry`=12944;
-UPDATE `creature_template` SET `ScriptName`='npc_kharan_mighthammer' WHERE `entry`=9021;
-UPDATE `creature_template` SET `ScriptName`='npc_grimstone' WHERE `entry`=10096;
-UPDATE `creature_template` SET `ScriptName`='npc_rocknot' WHERE `entry`=9503;
-UPDATE `creature_template` SET `ScriptName`='mob_phalanx' WHERE `entry`=9502;
-UPDATE `gameobject_template` SET `ScriptName`='go_shadowforge_brazier' WHERE `entry` IN (174744,174745);
-
-/* BLACKROCK SPIRE */
-UPDATE `instance_template` SET `script`='instance_blackrock_spire' WHERE `map`=229;
-/* BLACKROCK SPIRE Lower bosses */
-UPDATE `creature_template` SET `ScriptName`='boss_highlord_omokk' WHERE `entry`=9196;
-UPDATE `creature_template` SET `ScriptName`='boss_shadow_hunter_voshgajin' WHERE `entry`=9236;
-UPDATE `creature_template` SET `ScriptName`='boss_warmaster_voone' WHERE `entry`=9237;
-UPDATE `creature_template` SET `ScriptName`='boss_mother_smolderweb' WHERE `entry`=10596;
-UPDATE `creature_template` SET `ScriptName`='quartermaster_zigris' WHERE `entry`=9736;
-UPDATE `creature_template` SET `ScriptName`='boss_halycon' WHERE `entry`=10220;
-UPDATE `creature_template` SET `ScriptName`='boss_overlord_wyrmthalak' WHERE `entry`=9568;
-/* BLACKROCK SPIRE Upper bosses */
-UPDATE `creature_template` SET `ScriptName`='boss_the_beast' WHERE `entry`=10430;
-UPDATE `creature_template` SET `ScriptName`='boss_drakkisath' WHERE `entry`=10363;
-UPDATE `creature_template` SET `ScriptName`='boss_gyth' WHERE `entry`=10339;
-UPDATE `creature_template` SET `ScriptName`='boss_rend_blackhand' WHERE `entry`=10429;
-UPDATE `creature_template` SET `ScriptName`='boss_pyroguard_emberseer' WHERE `entry`=9816;
-
-/* BLACKWING LAIR */
-UPDATE `instance_template` SET `script`='instance_blackwing_lair' WHERE `map`=469;
-UPDATE `creature_template` SET `ScriptName`='boss_razorgore' WHERE `entry`=12435;
-UPDATE `creature_template` SET `ScriptName`='boss_vaelastrasz' WHERE `entry`=13020;
-UPDATE `creature_template` SET `ScriptName`='boss_broodlord' WHERE `entry`=12017;
-UPDATE `creature_template` SET `ScriptName`='boss_firemaw' WHERE `entry`=11983;
-UPDATE `creature_template` SET `ScriptName`='boss_ebonroc' WHERE `entry`=14601;
-UPDATE `creature_template` SET `ScriptName`='boss_flamegor' WHERE `entry`=11981;
-UPDATE `creature_template` SET `ScriptName`='boss_chromaggus' WHERE `entry`=14020;
-UPDATE `creature_template` SET `ScriptName`='boss_victor_nefarius' WHERE `entry`=10162;
-UPDATE `creature_template` SET `ScriptName`='boss_nefarian' WHERE `entry`=11583;
-
-/* BLADE'S EDGE MOUNTAINS */
-UPDATE `creature_template` SET `ScriptName`='mobs_bladespire_ogre' WHERE `entry` IN (19998,20334,21296,21975);
-UPDATE `creature_template` SET `ScriptName`='mobs_nether_drake' WHERE `entry` IN (20021,21817,21820,21821,21823);
-UPDATE `creature_template` SET `ScriptName`='npc_daranelle' WHERE `entry`=21469;
-UPDATE `creature_template` SET `ScriptName`='npc_overseer_nuaar' WHERE `entry`=21981;
-UPDATE `creature_template` SET `ScriptName`='npc_saikkal_the_elder' WHERE `entry`=22932;
-UPDATE `gameobject_template` SET `ScriptName`='go_fel_crystalforge' WHERE `entry`=185919;
-UPDATE `gameobject_template` SET `ScriptName`='go_bashir_crystalforge' WHERE `entry`=185921;
-UPDATE `creature_template` SET `ScriptName`='npc_ogre_brute' WHERE `entry`=19995;
-UPDATE `creature_template` SET `ScriptName`='npc_bloodmaul_brutebane' WHERE `entry`=21241;
-
-/* BLASTED LANDS */
-UPDATE `creature_template` SET `ScriptName`='npc_deathly_usher' WHERE `entry`=8816;
-UPDATE `creature_template` SET `ScriptName`='npc_fallen_hero_of_horde' WHERE `entry`=7572;
-
-/* BLOODMYST ISLE */
-UPDATE `creature_template` SET `ScriptName`='mob_webbed_creature' WHERE `entry`=17680;
-UPDATE `creature_template` SET `ScriptName`='npc_captured_sunhawk_agent' WHERE `entry`=17824;
-UPDATE `creature_template` SET `ScriptName`='npc_princess_stillpine' WHERE `entry`=17682;
-UPDATE `gameobject_template` SET `ScriptName`='go_princess_stillpines_cage' WHERE `entry`=181928;
-
-/* BOREAN TUNDRA */
-UPDATE `creature_template` SET `ScriptName`='npc_fizzcrank_fullthrottle' WHERE `entry`=25590;
-UPDATE `creature_template` SET `ScriptName`='npc_surristrasz' WHERE `entry`=24795;
-UPDATE `creature_template` SET `ScriptName`='npc_tiare' WHERE `entry`=30051;
-UPDATE `creature_template` SET `ScriptName`='npc_sinkhole_kill_credit' WHERE `entry` IN (26248,26249);
-UPDATE `creature_template` SET `ScriptName`='npc_khunok_the_behemoth' WHERE `entry`=25862;
-UPDATE `creature_template` SET `ScriptName`='npc_keristrasza' WHERE `entry`=26206;
-UPDATE `creature_template` SET `ScriptName`='npc_iruk' WHERE `entry`=26219;
-UPDATE `creature_template` SET `ScriptName`='npc_corastrasza' WHERE `entry`=32548;
-UPDATE `creature_template` SET `ScriptName`='mob_nerubar_victim' WHERE `entry`=25284;
-UPDATE `creature_template` SET `ScriptName`='npc_scourge_prisoner' WHERE `entry`=25610;
-UPDATE `gameobject_template` SET `ScriptName`='go_scourge_cage' WHERE `entry` IN (187854,187855,187856,187857,187858,187859,187860,187862,187863,187864,187865,187866,187867,187868,187870,187871,187872,187873,187874,187861,190803);
-UPDATE `gameobject_template` SET `ScriptName`='go_arcane_prison' WHERE `entry`=187561;
-UPDATE `creature_template` SET `ScriptName`='npc_loklira_crone' WHERE `entry`=29975;
-UPDATE `creature_template` SET `ScriptName`='npc_victorious_challenger' WHERE `entry`=30012;
-UPDATE `creature_template` SET `ScriptName`='npc_mcgoyver' WHERE `entry`=24040;
-UPDATE `creature_template` SET `ScriptName`='npc_jenny' WHERE `entry`=25969;
-UPDATE `creature_template` SET `ScriptName`='npc_lurgglbr' WHERE `entry`=25208;
-UPDATE `creature_template` SET `ScriptName`='npc_nexus_drake_hatchling' WHERE `entry`=26127;
-UPDATE `creature_template` SET `ScriptName`='npc_nesingwary_trapper' WHERE `entry`=25835;
-UPDATE `item_template` SET `ScriptName`='item_pile_fake_furs' WHERE `entry`=35127;
-UPDATE `creature_template` SET `ScriptName`='npc_general_arlos' WHERE `entry`=25250;
-UPDATE `creature_template` SET `ScriptName`='npc_leryssa' WHERE `entry`=25251;
-UPDATE `creature_template` SET `ScriptName`='npc_thassarian' WHERE `entry`=26170;
-UPDATE `creature_template` SET `ScriptName`='npc_image_lich_king' WHERE `entry`=26203;
-UPDATE `creature_template` SET `ScriptName`='npc_counselor_talbot' WHERE `entry`=25301;
-UPDATE `creature_template` SET `ScriptName`='npc_beryl_sorcerer' WHERE `entry`=25316;
-UPDATE `creature_template` SET `ScriptName`='npc_imprisoned_beryl_sorcerer' WHERE `entry`=25478;
-UPDATE `creature_template` SET `ScriptName`='npc_mootoo_the_younger' WHERE `entry`=25504;
-UPDATE `creature_template` SET `ScriptName`='npc_bonker_togglevolt' WHERE `entry`=25589;
-UPDATE `creature_template` SET `ScriptName`='npc_fezzix_geartwist' WHERE `entry`=25849;
-UPDATE `creature_template` SET `scriptname`='npc_trapped_mammoth_calf' WHERE `entry`=25850;
-UPDATE `item_template` SET `scriptname`='item_dehta_trap_smasher' WHERE `entry`=35228;
-UPDATE `creature_template` SET `ScriptName`='npc_magmoth_crusher' WHERE `entry`=25434;
-UPDATE `creature_template` SET `ScriptName`='npc_valiance_keep_cannoneer' WHERE `entry`=25306;
-UPDATE `creature_template` SET `ScriptName`='npc_warmage_coldarra' WHERE `entry` IN (27173,27904,27906);
-UPDATE `creature_template` SET `ScriptName`='npc_valiance_keep_cannoneer' WHERE `entry`=25306;
-UPDATE `creature_template` SET `ScriptName`= 'npc_seaforium_depth_charge' WHERE `entry`=25401;
-UPDATE `creature_template` SET `ScriptName`='npc_hidden_cultist' WHERE `entry` IN (25828,25248,25827);
-
-/* BURNING STEPPES */
-UPDATE `creature_template` SET `ScriptName`='npc_ragged_john' WHERE `entry`=9563;
-
-/* CAVERNS OF TIME - CULLING OF STRATHOLME */
-UPDATE `instance_template` SET `script`='instance_culling_of_stratholme' WHERE `map`=595;
-UPDATE `creature_template` SET `Scriptname`='npc_arthas' WHERE `entry`=26499;
-UPDATE `creature_template` SET `Scriptname`='boss_salramm' WHERE `entry`=26530;
-UPDATE `creature_template` SET `Scriptname`='boss_meathook' WHERE `entry`=26529;
-UPDATE `creature_template` SET `Scriptname`='boss_epoch' WHERE `entry`=26532;
-UPDATE `creature_template` SET `Scriptname`='boss_mal_ganis' WHERE `entry`=26533;
-UPDATE `creature_template` SET `Scriptname`='boss_infinite_corruptor' WHERE `entry`=32273;
-UPDATE `creature_template` SET `ScriptName`='npc_create_helper_cot' WHERE `entry`=27827;
-
-/* CRYSTALSONG FOREST */
-UPDATE `creature_template` SET `ScriptName`='npc_warmage_violetstand' WHERE `entry` IN (32369,32371,32372);
-
-/* MT. HYJAL */
-UPDATE `instance_template` SET `script`='instance_hyjal' WHERE `map`=534;
-UPDATE `creature_template` SET `ScriptName`='npc_tyrande_whisperwind' WHERE `entry`=17948;
-UPDATE `creature_template` SET `ScriptName`='npc_thrall' WHERE `entry`=17852;
-UPDATE `creature_template` SET `ScriptName`='npc_jaina_proudmoore' WHERE `entry`=17772;
-UPDATE `creature_template` SET `ScriptName`='boss_archimonde' WHERE `entry`=17968;
-UPDATE `creature_template` SET `ScriptName`='mob_doomfire' WHERE `entry`=18095;
-UPDATE `creature_template` SET `ScriptName`='mob_doomfire_targetting' WHERE `entry`=18104;
-UPDATE `creature_template` SET `ScriptName`='mob_ancient_wisp' WHERE `entry`=17946;
-UPDATE `creature_template` SET `ScriptName`='mob_giant_infernal' WHERE `entry`=17908;
-UPDATE `creature_template` SET `ScriptName`='mob_abomination' WHERE `entry`=17898;
-UPDATE `creature_template` SET `ScriptName`='mob_ghoul' WHERE `entry`=17895;
-UPDATE `creature_template` SET `ScriptName`='mob_necromancer' WHERE `entry`=17899;
-UPDATE `creature_template` SET `ScriptName`='mob_banshee' WHERE `entry`=17905;
-UPDATE `creature_template` SET `ScriptName`='mob_crypt_fiend' WHERE `entry`=17897;
-UPDATE `creature_template` SET `ScriptName`='mob_fel_stalker' WHERE `entry`=17916;
-UPDATE `creature_template` SET `ScriptName`='mob_frost_wyrm' WHERE `entry`=17907;
-UPDATE `creature_template` SET `ScriptName`='mob_gargoyle' WHERE `entry`=17906;
-UPDATE `creature_template` SET `ScriptName`='alliance_rifleman' WHERE `entry`=17921;
-UPDATE `creature_template` SET `ScriptName`='mob_towering_infernal' WHERE `entry`=17818;
-UPDATE `creature_template` SET `ScriptName`='boss_anetheron' WHERE `entry`=17808;
-UPDATE `creature_template` SET `ScriptName`='boss_azgalor' WHERE `entry`=17842;
-UPDATE `creature_template` SET `ScriptName`='mob_lesser_doomguard' WHERE `entry`=17864;
-UPDATE `creature_template` SET `ScriptName`='boss_kazrogal' WHERE `entry`=17888;
-UPDATE `creature_template` SET `ScriptName`='boss_rage_winterchill' WHERE `entry`=17767;
-
-/* OLD HILLSBRAD */
-UPDATE `instance_template` SET `script`='instance_old_hillsbrad' WHERE `map`=560;
-UPDATE `creature_template` SET `ScriptName`='boss_lieutenant_drake' WHERE `entry`=17848;
-UPDATE `creature_template` SET `ScriptName`='boss_epoch_hunter' WHERE `entry`=18096;
-UPDATE `creature_template` SET `ScriptName`='boss_captain_skarloc' WHERE `entry`=17862;
-UPDATE `creature_template` SET `ScriptName`='npc_erozion' WHERE `entry`=18723;
-UPDATE `creature_template` SET `ScriptName`='npc_taretha' WHERE `entry`=18887;
-UPDATE `creature_template` SET `ScriptName`='npc_thrall_old_hillsbrad' WHERE `entry`=17876;
-UPDATE `gameobject_template` SET `ScriptName`='go_barrel_old_hillsbrad' WHERE `entry`=182589;
-
-/* THE DARK PORTAL */
-UPDATE `instance_template` SET `script`='instance_dark_portal' WHERE `map`=269;
-UPDATE `creature_template` SET `ScriptName`='boss_chrono_lord_deja' WHERE `entry`=17879;
-UPDATE `creature_template` SET `ScriptName`='boss_aeonus' WHERE `entry`=17881;
-UPDATE `creature_template` SET `ScriptName`='boss_temporus' WHERE `entry`=17880;
-UPDATE `creature_template` SET `ScriptName`='npc_medivh_bm' WHERE `entry`=15608;
-UPDATE `creature_template` SET `ScriptName`='npc_time_rift' WHERE `entry`=17838;
-UPDATE `creature_template` SET `ScriptName`='npc_saat' WHERE `entry`=20201;
-
-/* COILFANG RESERVOIR */
-
-/* THE SLAVE PENS */
-
-/* THE UNDERBOG */
-UPDATE `creature_template` SET `ScriptName`='mob_underbog_mushroom' WHERE `entry`=17990;
-UPDATE `creature_template` SET `ScriptName`='boss_hungarfen' WHERE `entry`=17770;
-UPDATE `creature_template` SET `ScriptName`='boss_the_black_stalker' WHERE `entry`=17882;
-
-/* THE STEAMVAULT */
-UPDATE `instance_template` SET `script`='instance_steam_vault' WHERE `map`=545;
-UPDATE `creature_template` SET `ScriptName`='boss_hydromancer_thespia' WHERE `entry`=17797;
-UPDATE `creature_template` SET `ScriptName`='boss_mekgineer_steamrigger' WHERE `entry`=17796;
-UPDATE `creature_template` SET `ScriptName`='boss_warlord_kalithresh' WHERE `entry`=17798;
-UPDATE `creature_template` SET `ScriptName`='mob_coilfang_waterelemental' WHERE `entry`=17917;
-UPDATE `creature_template` SET `ScriptName`='mob_naga_distiller' WHERE `entry`=17954;
-UPDATE `creature_template` SET `ScriptName`='mob_steamrigger_mechanic' WHERE `entry`=17951;
-
-/* SERPENTSHRINE CAVERN */
-UPDATE `instance_template` SET `script`='instance_serpent_shrine' WHERE `map`=548;
-UPDATE `creature_template` SET `ScriptName`='boss_hydross_the_unstable' WHERE `entry`=21216;
-UPDATE `gameobject_template` SET `ScriptName`='go_bridge_console' WHERE `entry`=184568;
-INSERT IGNORE INTO `areatrigger_scripts` VALUES (4591,'at_coilfang_waterfall');
-
-/* Leotheras the Blind event */
-UPDATE `creature_template` SET `ScriptName`='boss_leotheras_the_blind' WHERE `entry`=21215;
-UPDATE `creature_template` SET `ScriptName`='boss_leotheras_the_blind_demonform' WHERE `entry`=21875;
-UPDATE `creature_template` SET `ScriptName`='mob_greyheart_spellbinder' WHERE `entry`=21806;
-UPDATE `creature_template` SET `ScriptName`='mob_inner_demon' WHERE `entry`=21857;
-/* Fathom-lord Karathress event */
-UPDATE `creature_template` SET `ScriptName`='boss_fathomlord_karathress' WHERE `entry`=21214;
-UPDATE `creature_template` SET `ScriptName`='boss_fathomguard_sharkkis' WHERE `entry`=21966;
-UPDATE `creature_template` SET `ScriptName`='boss_fathomguard_tidalvess' WHERE `entry`=21965;
-UPDATE `creature_template` SET `ScriptName`='boss_fathomguard_caribdis' WHERE `entry`=21964;
-/* Morogrim Tidewalker event */
-UPDATE `creature_template` SET `ScriptName`='boss_morogrim_tidewalker' WHERE `entry`=21213;
-UPDATE `creature_template` SET `ScriptName`='mob_water_globule' WHERE `entry`=21913;
-/* The Lurker Below */
-UPDATE `creature_template` SET `ScriptName`='boss_the_lurker_below' WHERE `entry`=21217;
-UPDATE `creature_template` SET `ScriptName`='mob_coilfang_ambusher' WHERE `entry`=21865;
-UPDATE `creature_template` SET `ScriptName`='mob_coilfang_guardian' WHERE `entry`=21873;
-UPDATE `gameobject_template` SET `ScriptName`='go_strange_pool' WHERE `entry`=184956;
-/* Lady Vashj event */
-UPDATE `creature_template` SET `ScriptName`='boss_lady_vashj' WHERE `entry`=21212;
-UPDATE `creature_template` SET `ScriptName`='mob_enchanted_elemental' WHERE `entry`=21958;
-UPDATE `creature_template` SET `ScriptName`='mob_tainted_elemental' WHERE `entry`=22009;
-UPDATE `creature_template` SET `ScriptName`='mob_coilfang_elite' WHERE `entry`=22055;
-UPDATE `creature_template` SET `ScriptName`='mob_coilfang_strider' WHERE `entry`=22056;
-UPDATE `creature_template` SET `ScriptName`='mob_toxic_sporebat' WHERE `entry`=22140;
-UPDATE `creature_template` SET `ScriptName`='mob_shield_generator_channel' WHERE `entry`=19870;
-
-/* CRYSTALSONG FOREST */
-
-/* DALARAN */
-UPDATE `creature_template` SET `ScriptName`='npc_mageguard_dalaran' WHERE `entry` IN (29254,29255);
-UPDATE `creature_template` SET `ScriptName`='npc_hira_snowdawn' WHERE `entry`=31238;
-
-/* DARKSHORE */
-UPDATE `creature_template` SET `ScriptName`='npc_kerlonian' WHERE `entry`=11218;
-UPDATE `creature_template` SET `ScriptName`='npc_threshwackonator' WHERE `entry`=6669;
-UPDATE `creature_template` SET `ScriptName`='npc_prospector_remtravel' WHERE `entry`=2917;
-
-/* DEADMINES */
-UPDATE `instance_template` SET `script`='instance_deadmines' WHERE `map`=36;
-UPDATE `item_template` SET `ScriptName`='item_defias_gunpowder' WHERE `entry`=5397;
-UPDATE `gameobject_template` SET `ScriptName`='go_defias_cannon' WHERE `entry`=16398;
-UPDATE `gameobject_template` SET `ScriptName`='go_door_lever_dm' WHERE `entry`=101833;
-UPDATE `gameobject_template` SET `ScriptName`='go_main_chambers_access_panel' WHERE `entry` IN (184125,184126);
-
-/* DRAGONBLIGHT */
-UPDATE `creature_template` SET `ScriptName`='npc_alexstrasza_wr_gate' WHERE `entry`=31333;
-UPDATE `creature_template` SET `ScriptName`='npc_inquisitor_hallard' WHERE `entry`=27316;
-
-/* DEADWIND PASS */
-
-/* DESOLACE */
-UPDATE `creature_template` SET `ScriptName`='npc_aged_dying_ancient_kodo' WHERE `entry` IN (4700,4701,4702,11627);
-UPDATE `gameobject_template` SET `ScriptName`='go_iruxos' WHERE `entry`=176581;
-UPDATE `creature_template` SET `ScriptName`='npc_dalinda' WHERE `entry`=5644;
-
-/* DIRE MAUL */
-
-/* DUN MOROGH */
-
-/* DUROTAR */
-UPDATE `creature_template` SET `ScriptName`='npc_lazy_peon' WHERE `entry`=10556;
-UPDATE `creature_template` SET `ScriptName`= 'npc_tiger_matriarch_credit' WHERE `entry`=40301;
-UPDATE `creature_template` SET `ScriptName`= 'npc_tiger_matriarch' WHERE `entry`=40312;
-UPDATE `creature_template` SET `ScriptName`= 'npc_troll_volunteer' WHERE `entry` IN (40260,40264);
-
-/* DUSKWOOD */
-DELETE FROM `areatrigger_scripts` WHERE `entry`=4017;
-INSERT INTO `areatrigger_scripts` (`entry`,`ScriptName`) VALUES (4017,'at_twilight_grove');
-UPDATE `creature_template` SET `ScriptName`='boss_twilight_corrupter' WHERE `entry`=15625;
-
-/* DUSTWALLOW MARSH */
-UPDATE `creature_template` SET `ScriptName`='mobs_risen_husk_spirit' WHERE `entry` IN (23554,23555);
-UPDATE `creature_template` SET `ScriptName`='npc_deserter_agitator' WHERE `entry`=23602;
-UPDATE `creature_template` SET `ScriptName`='npc_lady_jaina_proudmoore' WHERE `entry`=4968;
-UPDATE `creature_template` SET `ScriptName`='npc_nat_pagle' WHERE `entry`=12919;
-UPDATE `creature_template` SET `ScriptName`='npc_private_hendel' WHERE `entry`=4966;
-UPDATE `creature_template` SET `ScriptName`='npc_zelfrax' WHERE `entry`=23864;
-UPDATE `creature_template` SET `ScriptName`='npc_stinky' WHERE `entry`=4880;
-UPDATE `creature_template` SET `ScriptName`='npc_theramore_guard' WHERE `entry`=4979;
-
-/* EASTERN PLAGUELANDS */
-UPDATE `creature_template` SET `ScriptName`='mobs_ghoul_flayer' WHERE `entry` IN (8530,8531,8532);
-UPDATE `creature_template` SET `ScriptName`='npc_augustus_the_touched' WHERE `entry`=12384;
-UPDATE `creature_template` SET `ScriptName`='npc_darrowshire_spirit' WHERE `entry`=11064;
-UPDATE `creature_template` SET `ScriptName`='npc_tirion_fordring' WHERE `entry`=1855;
-
-/* ELWYNN FOREST */
-
-/* EVERSONG WOODS */
-UPDATE `creature_template` SET `ScriptName`='npc_prospector_anvilward' WHERE `entry`=15420;
-UPDATE `creature_template` SET `ScriptName`='npc_second_trial_paladin' WHERE `entry` IN (17809,17810,17811,17812);
-UPDATE `creature_template` SET `ScriptName`='npc_second_trial_controller' WHERE `entry` IN (17807);
-UPDATE `creature_template` SET `ScriptName`='npc_apprentice_mirveda' WHERE `entry`=15402;
-UPDATE `creature_template` SET `ScriptName`='npc_infused_crystal' WHERE `entry`=16364;
-UPDATE `gameobject_template` SET `ScriptName`='go_second_trial' WHERE `entry` IN (182052);
-
-/* EYE OF ETERNITY */
-UPDATE `instance_template` SET `script`='instance_eye_of_eternity' WHERE `map`=616;
-UPDATE `creature_template` SET `ScriptName`='boss_malygos' WHERE `entry`=28859;
-UPDATE `creature_template` SET `ScriptName`='npc_power_spark' WHERE `entry`=30084;
-UPDATE `creature_template` SET `ScriptName`='npc_portal_eoe' WHERE `entry`=30118;
-UPDATE `creature_template` SET `ScriptName`='npc_hover_disk' WHERE `entry` IN (30234,30248);
-UPDATE `creature_template` SET `ScriptName`='npc_arcane_overload' WHERE `entry`=30282;
-UPDATE `creature_template` SET `ScriptName`='npc_wyrmrest_skytalon' WHERE `entry`=30161;
-UPDATE `creature_template` SET `ScriptName`='npc_alexstrasza_eoe' WHERE `entry`=32295;
-
-/* FELWOOD */
-UPDATE `creature_template` SET `ScriptName`='npcs_riverbreeze_and_silversky' WHERE `entry` IN (9528,9529);
-
-/* FERALAS */
-UPDATE `creature_template` SET `ScriptName`='npc_gregan_brewspewer' WHERE `entry`=7775;
-UPDATE `creature_template` SET `ScriptName`='npc_screecher_spirit' WHERE `entry`=8612;
-UPDATE `creature_template` SET `ScriptName`='npc_oox22fe' WHERE `entry`=7807;
-
-/* FORGE OF SOULS */
-UPDATE `instance_template` SET `script`='instance_forge_of_souls' WHERE `map`=632;
-UPDATE `creature_template` SET `Scriptname`='boss_devourer_of_souls' WHERE `entry`=36502;
-UPDATE `creature_template` SET `Scriptname`='boss_bronjahm' WHERE `entry`=36497;
-UPDATE `creature_template` SET `Scriptname`='npc_jaina_fos' WHERE `entry`=37597;
-UPDATE `creature_template` SET `Scriptname`='npc_sylvanas_fos' WHERE `entry`=37596;
-UPDATE `creature_template` SET `Scriptname`='mob_soul_horror' WHERE `entry`=36522;
-UPDATE `creature_template` SET `Scriptname`='mob_soulguard_adept' WHERE `entry`=36620;
-UPDATE `creature_template` SET `Scriptname`='mob_soulguard_animator' WHERE `entry`=36516;
-UPDATE `creature_template` SET `Scriptname`='mob_soulguard_bonecaster' WHERE `entry`=36564;
-UPDATE `creature_template` SET `Scriptname`='mob_soulguard_reaper' WHERE `entry`=36499;
-UPDATE `creature_template` SET `Scriptname`='mob_soulguard_watchman' WHERE `entry`=36478;
-UPDATE `creature_template` SET `Scriptname`='mob_spectral_warden' WHERE `entry`=36666;
-UPDATE `creature_template` SET `Scriptname`='mob_spiteful_apparition' WHERE `entry`=36551;
-UPDATE `creature_template` SET `Scriptname`='mob_corrupted_soul_fragment' WHERE `entry`=36535;
-
-/* GHOSTLANDS */
-UPDATE `creature_template` SET `ScriptName`='npc_blood_knight_dawnstar' WHERE `entry`=17832;
-UPDATE `creature_template` SET `ScriptName`='npc_budd_nedreck' WHERE `entry`=23559;
-UPDATE `creature_template` SET `ScriptName`='npc_rathis_tomber' WHERE `entry`=16224;
-UPDATE `creature_template` SET `Scriptname`='npc_ranger_lilatha' WHERE `entry`=16295;
-UPDATE `gameobject_template` SET `ScriptName`='go_gilded_brazier' WHERE `entry`=181956;
-
-/* GNOMEREGAN */
-UPDATE `creature_template` SET `ScriptName`='npc_blastmaster_emi_shortfuse' WHERE `entry`=7998;
-UPDATE `creature_template` SET `ScriptName`='boss_grubbis' WHERE `entry`=7361;
-UPDATE `instance_template` SET `script`='instance_gnomeregan' WHERE `map`=90;
-
-/* GRIZZLY HILLS */
-UPDATE `creature_template` SET `ScriptName`='npc_orsonn_and_kodian' WHERE `entry` IN (27274,27275);
-UPDATE `creature_template` SET `ScriptName`='npc_emily' WHERE `entry`=26588;
-UPDATE `creature_template` SET `ScriptName`='npc_mrfloppy' WHERE `entry`=26589;
-UPDATE `gameobject_template` SET `ScriptName`='go_amberpine_outhouse' WHERE `entry`=188666;
-UPDATE `creature_template` SET `ScriptName`='npc_outhouse_bunny' WHERE `entry`=27326;
-UPDATE `creature_template` SET `ScriptName`='npc_tallhorn_stag' WHERE `entry`=26363;
-UPDATE `creature_template` SET `ScriptName`='npc_amberpine_woodsman' WHERE `entry`=27293;
-UPDATE `creature_template` SET `ScriptName`='npc_wounded_skirmisher' WHERE `entry`=27463;
-UPDATE `creature_template` SET `ScriptName`='npc_lightning_sentry' WHERE `entry`=26407;
-UPDATE `creature_template` SET `ScriptName`='npc_venture_co_straggler',`AIName`='' WHERE `entry`=27570;
-
-/* DRAK'THARON KEEP */
-UPDATE `instance_template` SET `script`='instance_drak_tharon' WHERE `map`=600;
-UPDATE `creature_template` SET `ScriptName`='boss_trollgore' WHERE `entry`=26630;
-UPDATE `creature_template` SET `ScriptName`='boss_novos' WHERE `entry`=26631;
-UPDATE `creature_template` SET `ScriptName`='mob_crystal_handler' WHERE `entry`=26627;
-UPDATE `creature_template` SET `ScriptName`='mob_novos_minion' WHERE `entry` IN (27600,27597,27598);
-UPDATE `creature_template` SET `ScriptName`='npc_drakkari_gutripper' WHERE `entry`=26641;
-UPDATE `creature_template` SET `ScriptName`='npc_drakkari_scytheclaw' WHERE `entry`=26628;
-UPDATE `creature_template` SET `ScriptName`='boss_dred' WHERE `entry`=27483;
-UPDATE `creature_template` SET `ScriptName`='boss_tharon_ja' WHERE `entry`=26632;
-
-/* GRUUL'S LAIR */
-UPDATE `instance_template` SET `script`='instance_gruuls_lair' WHERE `map`=565;
-UPDATE `creature_template` SET `ScriptName`='boss_gruul' WHERE `entry`=19044;
-/* Maulgar and Event */
-UPDATE `creature_template` SET `ScriptName`='boss_high_king_maulgar' WHERE `entry`=18831;
-UPDATE `creature_template` SET `ScriptName`='boss_kiggler_the_crazed' WHERE `entry`=18835;
-UPDATE `creature_template` SET `ScriptName`='boss_blindeye_the_seer' WHERE `entry`=18836;
-UPDATE `creature_template` SET `ScriptName`='boss_olm_the_summoner' WHERE `entry`=18834;
-UPDATE `creature_template` SET `ScriptName`='boss_krosh_firehand' WHERE `entry`=18832;
-
-/* GUNDRAK */
-UPDATE `instance_template` SET `script`='instance_gundrak' WHERE `map`=604;
-/* Moorabi */
-UPDATE `creature_template` SET `ScriptName`='boss_moorabi' WHERE `entry`=29305;
-/* Slad'ran */
-UPDATE `creature_template` SET `ScriptName`='boss_slad_ran' WHERE `entry`=29304;
-UPDATE `creature_template` SET `ScriptName`='mob_slad_ran_viper' WHERE `entry`=29680;
-UPDATE `creature_template` SET `ScriptName`='mob_slad_ran_constrictor' WHERE `entry`=29713;
-/* Gal'darah */
-UPDATE `creature_template` SET `ScriptName`='boss_gal_darah' WHERE `entry`=29306;
-/* Drakkari Colossus */
-UPDATE `creature_template` SET `ScriptName`='boss_drakkari_colossus' WHERE `entry`=29307;
-UPDATE `creature_template` SET `ScriptName`='boss_drakkari_elemental' WHERE `entry`=29573;
-UPDATE `creature_template` SET `ScriptName`='npc_living_mojo' WHERE `entry`=29830;
-/* Eck the Ferocious */
-UPDATE `creature_template` SET `ScriptName`='boss_eck' WHERE `entry`=29932;
-UPDATE `creature_template` SET `ScriptName`='npc_ruins_dweller' WHERE `entry`=29920;
-
-UPDATE `gameobject_template` SET `ScriptName`='go_gundrak_altar' WHERE `entry`=192518;
-UPDATE `gameobject_template` SET `ScriptName`='go_gundrak_altar' WHERE `entry`=192519;
-UPDATE `gameobject_template` SET `ScriptName`='go_gundrak_altar' WHERE `entry`=192520;
-
-/* HALLS OF LIGHTNING */
-UPDATE `instance_template` SET `script`='instance_halls_of_lightning' WHERE `map`=602;
-/* Bjarngrim */
-UPDATE `creature_template` SET `ScriptName`='boss_bjarngrim' WHERE `entry`=28586;
-UPDATE `creature_template` SET `ScriptName`='mob_stormforged_lieutenant' WHERE `entry`=29240;
-/* Loken */
-UPDATE `creature_template` SET `ScriptName`='boss_loken' WHERE `entry`=28923;
-/* Volkhan */
-UPDATE `creature_template` SET `ScriptName`='boss_volkhan' WHERE `entry`=28587;
-UPDATE `creature_template` SET `ScriptName`='mob_molten_golem' WHERE `entry`=28695;
-/* Ionar */
-UPDATE `creature_template` SET `ScriptName`='boss_ionar' WHERE `entry`=28546;
-UPDATE `creature_template` SET `ScriptName`='mob_spark_of_ionar' WHERE `entry`=28926;
-
-/* HALLS OF STONE */
-UPDATE `instance_template` SET `script`='instance_halls_of_stone' WHERE `map`=599;
-/* Krystallus */
-UPDATE `creature_template` SET `ScriptName`='boss_krystallus' WHERE `entry`=27977;
-/* Sjonnir */
-UPDATE `creature_template` SET `ScriptName`='boss_sjonnir' WHERE `entry`=27978;
-UPDATE `creature_template` SET `ScriptName`='mob_tribuna_controller' WHERE `entry`=28234;
-UPDATE `creature_template` SET `ScriptName`='npc_brann_hos' WHERE `entry`=28070;
-UPDATE `creature_template` SET `ScriptName`='mob_malformed_ooze' WHERE `entry`=27981;
-UPDATE `creature_template` SET `ScriptName`='mob_iron_sludge' WHERE `entry`=28165;
-/* Maiden of Grief */
-UPDATE `creature_template` SET `ScriptName`='boss_maiden_of_grief' WHERE `entry`=27975;
-
-/* HELLFIRE CITADEL */
-
-/* BLOOD FURNACE */
-UPDATE `instance_template` SET `script`='instance_blood_furnace' WHERE `map`=542;
-UPDATE `creature_template` SET `ScriptName`='boss_the_maker' WHERE `entry`=17381;
-UPDATE `creature_template` SET `ScriptName`='boss_broggok' WHERE `entry`=17380;
-UPDATE `creature_template` SET `ScriptName`='boss_kelidan_the_breaker' WHERE `entry`=17377;
-UPDATE `creature_template` SET `ScriptName`='mob_broggok_poisoncloud' WHERE `entry`=17662;
-UPDATE `creature_template` SET `ScriptName`='mob_shadowmoon_channeler' WHERE `entry`=17653;
-
-/* HELLFIRE RAMPARTS */
-UPDATE `instance_template` SET `script`='instance_ramparts' WHERE `map`=543;
-
-/* Vazruden, Omor the Unscarred, Watchkeeper Gargolmar */
-UPDATE `creature_template` SET `ScriptName`='boss_omor_the_unscarred' WHERE `entry`=17308;
-UPDATE `creature_template` SET `ScriptName`='boss_watchkeeper_gargolmar' WHERE `entry`=17306;
-UPDATE `creature_template` SET `ScriptName`='boss_vazruden_the_herald' WHERE `entry`=17307;
-UPDATE `creature_template` SET `ScriptName`='boss_vazruden' WHERE `entry`=17537;
-UPDATE `creature_template` SET `ScriptName`='boss_nazan' WHERE `entry`=17536;
-UPDATE `creature_template` SET `ScriptName`='mob_hellfire_sentry' WHERE `entry`=17517;
-
-/* SHATTERED HALLS */
-/* Nethekurse and his spawned shadow fissure */
-UPDATE `creature_template` SET `ScriptName`='boss_grand_warlock_nethekurse' WHERE `entry`=16807;
-UPDATE `creature_template` SET `ScriptName`='boss_warchief_kargath_bladefist' WHERE `entry`=16808;
-UPDATE `creature_template` SET `ScriptName`='boss_warbringer_omrogg' WHERE `entry`=16809;
-UPDATE `creature_template` SET `ScriptName`='mob_fel_orc_convert' WHERE `entry`=17083;
-UPDATE `creature_template` SET `ScriptName`='mob_lesser_shadow_fissure' WHERE `entry`=17471;
-UPDATE `creature_template` SET `ScriptName`='mob_omrogg_heads' WHERE `entry` IN (19523,19524);
-UPDATE `instance_template` SET `script`='instance_shattered_halls' WHERE `map`=540;
-
-/* MAGTHERIDON'S LAIR */
-UPDATE `instance_template` SET `script`='instance_magtheridons_lair' WHERE `map`=544;
-UPDATE `gameobject_template` SET `ScriptName`='go_manticron_cube' WHERE `entry`=181713;
-UPDATE `creature_template` SET `ScriptName`='boss_magtheridon' WHERE `entry`=17257;
-UPDATE `creature_template` SET `ScriptName`='mob_hellfire_channeler' WHERE `entry`=17256;
-UPDATE `creature_template` SET `ScriptName`='mob_abyssal' WHERE `entry`=17454;
-
-/* HALLS OF REFLECTION */
-UPDATE `instance_template` SET `script`='instance_halls_of_reflection' WHERE `map`=668;
-UPDATE `creature_template` SET `Scriptname`='boss_falric' WHERE `entry`=38112;
-UPDATE `creature_template` SET `Scriptname`='boss_marwyn' WHERE `entry`=38113;
-UPDATE `creature_template` SET `Scriptname`='npc_jaina_hor_part1' WHERE `entry`=37221;
-UPDATE `creature_template` SET `Scriptname`='npc_sylvanas_hor_part1' WHERE `entry`=37223;
-UPDATE `creature_template` SET `Scriptname`='npc_ghostly_priest' WHERE `entry`=38175;
-UPDATE `creature_template` SET `Scriptname`='npc_phantom_mage' WHERE `entry`=38172;
-UPDATE `creature_template` SET `Scriptname`='npc_phantom_hallucination' WHERE `entry`=38567;
-UPDATE `creature_template` SET `Scriptname`='npc_shadowy_mercenary' WHERE `entry`=38177;
-UPDATE `creature_template` SET `Scriptname`='npc_spectral_footman' WHERE `entry`=38173;
-UPDATE `creature_template` SET `Scriptname`='npc_tortured_rifleman' WHERE `entry`=38176;
-
-/* HELLFIRE PENINSULA */
-UPDATE `creature_template` SET `ScriptName`='boss_doomlord_kazzak' WHERE `entry`=18728;
-UPDATE `creature_template` SET `ScriptName`='npc_wounded_blood_elf' WHERE `entry`=16993;
-UPDATE `creature_template` SET `ScriptName`='npc_aeranas' WHERE `entry`=17085;
-UPDATE `gameobject_template` SET `ScriptName`='go_haaleshi_altar' WHERE `entry`=181606;
-UPDATE `creature_template` SET `ScriptName`='npc_naladu' WHERE `entry`=19361;
-UPDATE `creature_template` SET `ScriptName`='npc_tracy_proudwell' WHERE `entry`=18266;
-UPDATE `creature_template` SET `ScriptName`='npc_trollbane' WHERE `entry`=16819;
-UPDATE `creature_template` SET `ScriptName`='npc_ancestral_wolf' WHERE `entry`=17077;
-UPDATE `creature_template` SET `ScriptName`='npc_fel_guard_hound' WHERE `entry`=21847;
-
-/* HILLSBRAD FOOTHILLS */
-
-/* HINTERLANDS */
-UPDATE `creature_template` SET `ScriptName`='npc_00x09hl' WHERE `entry`=7806;
-UPDATE `creature_template` SET `ScriptName`='npc_rinji' WHERE `entry`=7780;
-
-/* HOWLING FJORD */
-UPDATE `creature_template` SET `ScriptName`='npc_plaguehound_tracker' WHERE `entry`=24156;
-UPDATE `creature_template` SET `ScriptName`='npc_razael_and_lyana' WHERE `entry` IN (23778,23998);
-UPDATE `creature_template` SET `ScriptName`='npc_apothecary_hanes' WHERE `entry`=23784;
-UPDATE `creature_template` SET `ScriptName`='npc_daegarn' WHERE `entry`=24151;
-
-/* ICECROWN */
-UPDATE `creature_template` SET `ScriptName`='npc_arete' WHERE `entry`=29344;
-UPDATE `creature_template` SET `ScriptName`='npc_dame_evniki_kapsalis' WHERE `entry`=34885;
-UPDATE `creature_template` SET `ScriptName`='npc_squire_david' WHERE `entry`=33447;
-UPDATE `creature_template` SET `ScriptName`='npc_argent_valiant' WHERE `entry`=33448;
-UPDATE `creature_template` SET `ScriptName`='npc_alorah_and_grimmin' WHERE `entry` IN (36101,36102);
-UPDATE `creature_template` SET `ScriptName`='npc_guardian_pavilion' WHERE `entry` IN (33543,33643);
-
-/* ICECROWN CITADEL */
-UPDATE `instance_template` SET `script`='instance_icecrown_citadel' WHERE `map`=631;
-UPDATE `gameobject_template` SET `ScriptName`='icecrown_citadel_teleport' WHERE `entry` IN (202223,202235,202242,202243,202244,202245,202246);
-UPDATE `creature_template` SET `ScriptName`='npc_highlord_tirion_fordring_lh' WHERE `entry`=37119;
-UPDATE `creature_template` SET `ScriptName`='boss_lord_marrowgar' WHERE `entry`=36612;
-UPDATE `creature_template` SET `ScriptName`='npc_coldflame' WHERE `entry`=36672;
-UPDATE `creature_template` SET `ScriptName`='npc_bone_spike' WHERE `entry` IN (36619,38711,38712);
-UPDATE `creature_template` SET `ScriptName`='boss_lady_deathwhisper' WHERE `entry`=36855;
-UPDATE `creature_template` SET `ScriptName`='npc_cult_fanatic' WHERE `entry` IN (37890,38009,38135);
-UPDATE `creature_template` SET `ScriptName`='npc_cult_adherent' WHERE `entry` IN(37949,38010,38136);
-UPDATE `creature_template` SET `ScriptName`='npc_vengeful_shade' WHERE `entry`=38222;
-UPDATE `creature_template` SET `ScriptName`='npc_darnavan' WHERE `entry` IN (38472,38485);
-UPDATE `creature_template` SET `ScriptName`='npc_rotting_frost_giant' WHERE `entry` IN (38490,38494);
-UPDATE `creature_template` SET `ScriptName`='boss_deathbringer_saurfang' WHERE `entry`=37813;
-UPDATE `creature_template` SET `ScriptName`='npc_high_overlord_saurfang_icc' WHERE `entry`=37187;
-UPDATE `creature_template` SET `ScriptName`='npc_muradin_bronzebeard_icc' WHERE `entry`=37200;
-UPDATE `creature_template` SET `ScriptName`='npc_saurfang_event' WHERE `entry` IN (37920,37830);
-UPDATE `creature_template` SET `ScriptName`='npc_frost_freeze_trap' WHERE `entry`=37744;
-UPDATE `creature_template` SET `ScriptName`='npc_alchemist_adrianna' WHERE `entry`=38501;
-UPDATE `creature_template` SET `ScriptName`='boss_festergut' WHERE `entry`=36626;
-UPDATE `creature_template` SET `ScriptName`='npc_stinky_icc' WHERE `entry`=37025;
-UPDATE `creature_template` SET `ScriptName`='boss_rotface' WHERE `entry`=36627;
-UPDATE `creature_template` SET `ScriptName`='npc_little_ooze' WHERE `entry`=36897;
-UPDATE `creature_template` SET `ScriptName`='npc_big_ooze' WHERE `entry`=36899;
-UPDATE `creature_template` SET `ScriptName`='npc_precious_icc' WHERE `entry`=37217;
-UPDATE `creature_template` SET `ScriptName`='boss_professor_putricide' WHERE `entry`=36678;
-UPDATE `creature_template` SET `ScriptName`='npc_volatile_ooze' WHERE `entry`=37697;
-UPDATE `creature_template` SET `ScriptName`='boss_blood_council_controller' WHERE `entry`=38008;
-UPDATE `creature_template` SET `ScriptName`='boss_prince_keleseth_icc' WHERE `entry`=37972;
-UPDATE `creature_template` SET `ScriptName`='boss_prince_taldaram_icc' WHERE `entry`=37973;
-UPDATE `creature_template` SET `ScriptName`='boss_prince_valanar_icc' WHERE `entry`=37970;
-UPDATE `creature_template` SET `ScriptName`='npc_blood_queen_lana_thel' WHERE `entry`=38004;
-UPDATE `creature_template` SET `ScriptName`='npc_kinetic_bomb' WHERE `entry`=38454;
-UPDATE `creature_template` SET `ScriptName`='npc_dark_nucleus' WHERE `entry`=38369;
-UPDATE `creature_template` SET `ScriptName`='npc_ball_of_flame' WHERE `entry` IN (38332,38451);
-UPDATE `creature_template` SET `ScriptName`='boss_blood_queen_lana_thel' WHERE `entry`=37955;
-UPDATE `creature_template` SET `ScriptName`='boss_sister_svalna' WHERE `entry`=37126;
-UPDATE `creature_template` SET `ScriptName`='npc_crok_scourgebane' WHERE `entry`=37129;
-UPDATE `creature_template` SET `ScriptName`='npc_captain_arnath' WHERE `entry`=37122;
-UPDATE `creature_template` SET `ScriptName`='npc_captain_brandon' WHERE `entry`=37123;
-UPDATE `creature_template` SET `ScriptName`='npc_captain_grondel' WHERE `entry`=37124;
-UPDATE `creature_template` SET `ScriptName`='npc_captain_rupert' WHERE `entry`=37125;
-UPDATE `creature_template` SET `ScriptName`='npc_frostwing_vrykul' WHERE `entry` IN (37132,38125,37127,37134,37133);
-UPDATE `creature_template` SET `ScriptName`='npc_impaling_spear' WHERE `entry`=38248;
-UPDATE `creature_template` SET `ScriptName`='boss_valithria_dreamwalker' WHERE `entry`=36789;
-UPDATE `creature_template` SET `ScriptName`='npc_green_dragon_combat_trigger' WHERE `entry`=38752;
-UPDATE `creature_template` SET `ScriptName`='npc_the_lich_king_controller' WHERE `entry`=16980;
-UPDATE `creature_template` SET `ScriptName`='npc_risen_archmage' WHERE `entry`=37868;
-UPDATE `creature_template` SET `ScriptName`='npc_blazing_skeleton' WHERE `entry`=36791;
-UPDATE `creature_template` SET `ScriptName`='npc_suppresser' WHERE `entry`=37863;
-UPDATE `creature_template` SET `ScriptName`='npc_blistering_zombie' WHERE `entry`=37934;
-UPDATE `creature_template` SET `ScriptName`='npc_gluttonous_abomination' WHERE `entry`=37886;
-UPDATE `creature_template` SET `ScriptName`='npc_dream_portal' WHERE `entry` IN (37945,38430);
-UPDATE `creature_template` SET `ScriptName`='npc_dream_cloud' WHERE `entry` IN (37985,38421);
-UPDATE `creature_template` SET `ScriptName`='boss_sindragosa' WHERE `entry`=36853;
-UPDATE `creature_template` SET `ScriptName`='npc_ice_tomb' WHERE `entry`=36980;
-UPDATE `creature_template` SET `ScriptName`='npc_spinestalker' WHERE `entry`=37534;
-UPDATE `creature_template` SET `ScriptName`='npc_rimefang_icc' WHERE `entry`=37533;
-UPDATE `creature_template` SET `ScriptName`='npc_sindragosa_trash' WHERE `entry` IN (37531,37532);
-
-/* IRONFORGE */
-UPDATE `creature_template` SET `ScriptName`='npc_royal_historian_archesonus' WHERE `entry`=8879;
-
-/* ISLE OF CONQUEST */
-UPDATE `creature_template` SET `ScriptName`='npc_four_car_garage' WHERE `entry` IN (35273,34802,34793,34775,35069,34776);
-
-/* ISLE OF QUEL'DANAS */
-UPDATE `creature_template` SET `ScriptName`='npc_converted_sentry' WHERE `entry`=24981;
-UPDATE `creature_template` SET `ScriptName`='npc_greengill_slave' WHERE `entry`=25084;
-
-/* KARAZHAN */
-UPDATE `instance_template` SET `script`='instance_karazhan' WHERE `map`=532;
-UPDATE `creature_template` SET `ScriptName`='boss_midnight' WHERE `entry`=16151;
-UPDATE `creature_template` SET `ScriptName`='boss_attumen' WHERE `entry`=15550;
-UPDATE `creature_template` SET `ScriptName`='boss_moroes' WHERE `entry`=15687;
-UPDATE `creature_template` SET `ScriptName`='boss_maiden_of_virtue' WHERE `entry`=16457;
-UPDATE `creature_template` SET `ScriptName`='boss_curator' WHERE `entry`=15691;
-UPDATE `creature_template` SET `ScriptName`='boss_julianne' WHERE `entry`=17534;
-UPDATE `creature_template` SET `ScriptName`='boss_romulo' WHERE `entry`=17533;
-UPDATE `creature_template` SET `ScriptName`='boss_dorothee' WHERE `entry`=17535;
-UPDATE `creature_template` SET `ScriptName`='boss_strawman' WHERE `entry`=17543;
-UPDATE `creature_template` SET `ScriptName`='boss_tinhead' WHERE `entry`=17547;
-UPDATE `creature_template` SET `ScriptName`='mob_tito' WHERE `entry`=17548;
-UPDATE `creature_template` SET `ScriptName`='boss_roar' WHERE `entry`=17546;
-UPDATE `creature_template` SET `ScriptName`='boss_crone' WHERE `entry`=18168;
-UPDATE `creature_template` SET `ScriptName`='boss_terestian_illhoof' WHERE `entry`=15688;
-UPDATE `creature_template` SET `ScriptName`='mob_fiendish_portal' WHERE `entry`=17265;
-UPDATE `creature_template` SET `ScriptName`='boss_shade_of_aran' WHERE `entry`=16524;
-UPDATE `creature_template` SET `ScriptName`='boss_netherspite' WHERE `entry`=15689;
-UPDATE `creature_template` SET `ScriptName`='boss_malchezaar' WHERE `entry`=15690;
-UPDATE `creature_template` SET `ScriptName`='boss_nightbane' WHERE `entry`=17225;
-UPDATE `creature_template` SET `ScriptName`='boss_baroness_dorothea_millstipe' WHERE `entry`=19875;
-UPDATE `creature_template` SET `ScriptName`='boss_baron_rafe_dreuger' WHERE `entry`=19874;
-UPDATE `creature_template` SET `ScriptName`='boss_lady_catriona_von_indi' WHERE `entry`=19872;
-UPDATE `creature_template` SET `ScriptName`='boss_lady_keira_berrybuck' WHERE `entry`=17007;
-UPDATE `creature_template` SET `ScriptName`='boss_lord_robin_daris' WHERE `entry`=19876;
-UPDATE `creature_template` SET `ScriptName`='boss_lord_crispin_ference' WHERE `entry`=19873;
-UPDATE `creature_template` SET `ScriptName`='boss_bigbadwolf' WHERE `entry`=17521;
-UPDATE `creature_template` SET `ScriptName`='mob_shadow_of_aran' WHERE `entry`=18254;
-UPDATE `creature_template` SET `ScriptName`='mob_aran_elemental' WHERE `entry`=17167;
-UPDATE `creature_template` SET `ScriptName`='mob_aran_blizzard' WHERE `entry`=17161;
-UPDATE `creature_template` SET `ScriptName`='mob_homunculus' WHERE `entry`=16539;
-UPDATE `creature_template` SET `ScriptName`='mob_fiendish_imp' WHERE `entry`=17267;
-UPDATE `creature_template` SET `ScriptName`='mob_kilrek' WHERE `entry`=17229;
-UPDATE `creature_template` SET `ScriptName`='mob_demon_chain' WHERE `entry`=17248;
-UPDATE `creature_template` SET `ScriptName`='mob_cyclone' WHERE `entry`=18412;
-UPDATE `creature_template` SET `ScriptName`='netherspite_infernal' WHERE `entry`=17646;
-UPDATE `creature_template` SET `ScriptName`='npc_berthold' WHERE `entry`=16153;
-UPDATE `creature_template` SET `ScriptName`='npc_barnes' WHERE `entry`=16812;
-UPDATE `creature_template` SET `ScriptName`='npc_grandmother' WHERE `entry`=17603;
-UPDATE `creature_template` SET `ScriptName`='npc_image_of_medivh' WHERE `entry`=17651;
-
-/* LOCH MODAN */
-UPDATE `creature_template` SET `ScriptName`='npc_mountaineer_pebblebitty' WHERE `entry`=3836;
-
-/* Magister's Terrace */
-UPDATE `instance_template` SET `script`='instance_magisters_terrace' WHERE `map`=585;
-UPDATE `creature_template` SET `ScriptName`='boss_selin_fireheart' WHERE `entry`=24723;
-UPDATE `creature_template` SET `ScriptName`='mob_fel_crystal' WHERE `entry`=24722;
-UPDATE `creature_template` SET `ScriptName`='boss_vexallus' WHERE `entry`=24744;
-UPDATE `creature_template` SET `ScriptName`='mob_pure_energy' WHERE `entry`=24745;
-UPDATE `creature_template` SET `ScriptName`='boss_priestess_delrissa' WHERE `entry`=24560;
-UPDATE `creature_template` SET `ScriptName`='boss_kagani_nightstrike' WHERE `entry`=24557;
-UPDATE `creature_template` SET `ScriptName`='boss_ellris_duskhallow' WHERE `entry`=24558;
-UPDATE `creature_template` SET `ScriptName`='boss_eramas_brightblaze' WHERE `entry`=24554;
-UPDATE `creature_template` SET `ScriptName`='boss_yazzai' WHERE `entry`=24561;
-UPDATE `creature_template` SET `ScriptName`='boss_warlord_salaris' WHERE `entry`=24559;
-UPDATE `creature_template` SET `ScriptName`='boss_garaxxas' WHERE `entry`=24555;
-UPDATE `creature_template` SET `ScriptName`='mob_sliver' WHERE `entry`=24552;
-UPDATE `creature_template` SET `ScriptName`='boss_apoko' WHERE `entry`=24553;
-UPDATE `creature_template` SET `ScriptName`='boss_zelfan' WHERE `entry`=24556;
-UPDATE `creature_template` SET `ScriptName`='boss_felblood_kaelthas' WHERE `entry`=24664;
-UPDATE `creature_template` SET `ScriptName`='mob_arcane_sphere' WHERE `entry`=24708;
-UPDATE `creature_template` SET `ScriptName`='mob_felkael_phoenix' WHERE `entry`=24674;
-UPDATE `creature_template` SET `ScriptName`='mob_felkael_phoenix_egg' WHERE `entry`=24675;
-UPDATE `creature_template` SET `ScriptName`='mob_felkael_flamestrike' WHERE `entry`=24666;
-UPDATE `creature_template` SET `ScriptName`='npc_kalecgos' WHERE `entry` IN (24844,24848);
-
-/* MARAUDON */
-UPDATE `creature_template` SET `ScriptName`='boss_princess_theradras' WHERE `entry`=12201;
-UPDATE `creature_template` SET `ScriptName`='boss_noxxion' WHERE `entry`=13282;
-UPDATE `creature_template` SET `ScriptName`='boss_landslide' WHERE `entry`=12203;
-UPDATE `creature_template` SET `ScriptName`='celebras_the_cursed' WHERE `entry`=12225;
-
-/* MOLTEN CORE */
-UPDATE `instance_template` SET `script`='instance_molten_core' WHERE `map`=409;
-UPDATE `creature_template` SET `ScriptName`='boss_lucifron' WHERE `entry`=12118;
-UPDATE `creature_template` SET `ScriptName`='boss_magmadar' WHERE `entry`=11982;
-UPDATE `creature_template` SET `ScriptName`='boss_gehennas' WHERE `entry`=12259;
-UPDATE `creature_template` SET `ScriptName`='boss_garr' WHERE `entry`=12057;
-UPDATE `creature_template` SET `ScriptName`='boss_baron_geddon' WHERE `entry`=12056;
-UPDATE `creature_template` SET `ScriptName`='boss_shazzrah' WHERE `entry`=12264;
-UPDATE `creature_template` SET `ScriptName`='boss_golemagg' WHERE `entry`=11988;
-UPDATE `creature_template` SET `ScriptName`='boss_sulfuron' WHERE `entry`=12098;
-UPDATE `creature_template` SET `ScriptName`='boss_majordomo' WHERE `entry`=12018;
-UPDATE `creature_template` SET `ScriptName`='boss_ragnaros' WHERE `entry`=11502;
-UPDATE `creature_template` SET `ScriptName`='mob_ancient_core_hound' WHERE `entry`=11673;
-UPDATE `creature_template` SET `ScriptName`='mob_firesworn' WHERE `entry`=12099;
-UPDATE `creature_template` SET `ScriptName`='mob_core_rager' WHERE `entry`=11672;
-UPDATE `creature_template` SET `ScriptName`='mob_flamewaker_priest' WHERE `entry`=11662;
-UPDATE `creature_template` SET `ScriptName`='mob_SonOfFlame' WHERE `entry`=12143;
-
-/* MOONGLADE */
-UPDATE `creature_template` SET `ScriptName`='npc_bunthen_plainswind' WHERE `entry`=11798;
-UPDATE `creature_template` SET `ScriptName`='npc_great_bear_spirit' WHERE `entry`=11956;
-UPDATE `creature_template` SET `ScriptName`='npc_silva_filnaveth' WHERE `entry`=11800;
-UPDATE `creature_template` SET `ScriptName`='npc_clintar_dreamwalker' WHERE `entry`=22834;
-UPDATE `creature_template` SET `ScriptName`='npc_clintar_spirit' WHERE `entry`=22916;
-
-/* MULGORE */
-UPDATE `creature_template` SET `ScriptName`='npc_skorn_whitecloud' WHERE `entry`=3052;
-UPDATE `creature_template` SET `ScriptName`='npc_kyle_frenzied' WHERE `entry`=23616;
-UPDATE `creature_template` SET `ScriptName`='npc_plains_vision' WHERE `entry`=2983;
-
-/* NAGRAND */
-UPDATE `creature_template` SET `ScriptName`='mob_lump' WHERE `entry`=18351;
-UPDATE `creature_template` SET `ScriptName`='mob_shattered_rumbler' WHERE `entry`=17157;
-UPDATE `creature_template` SET `ScriptName`='mob_sunspring_villager' WHERE `entry`=18240;
-UPDATE `creature_template` SET `ScriptName`='npc_altruis_the_sufferer' WHERE `entry`=18417;
-UPDATE `creature_template` SET `ScriptName`='npc_greatmother_geyah' WHERE `entry`=18141;
-UPDATE `creature_template` SET `ScriptName`='npc_lantresor_of_the_blade' WHERE `entry`=18261;
-UPDATE `creature_template` SET `ScriptName`='npc_creditmarker_visit_with_ancestors' WHERE `entry` IN (18840,18841,18842,18843);
-UPDATE `creature_template` SET `ScriptName`='mob_sparrowhawk' WHERE `entry`=22979;
-UPDATE `creature_template` SET `ScriptName`='npc_maghar_captive' WHERE `entry`=18210;
-UPDATE `creature_template` SET `ScriptName`='npc_corki' WHERE `entry` IN (18445,20812,18369);
-UPDATE `gameobject_template` SET `ScriptName`='go_corkis_prison' WHERE `entry` IN (182349,182350,182521);
-
-/* NAXXRAMAS */
-UPDATE `instance_template` SET `script`='instance_naxxramas' WHERE `map`=533;
-UPDATE `creature_template` SET `ScriptName`='boss_anubrekhan' WHERE `entry`=15956;
-UPDATE `creature_template` SET `ScriptName`='boss_faerlina' WHERE `entry`=15953;
-UPDATE `creature_template` SET `ScriptName`='mob_faerlina_add' WHERE `entry`=16506;
-UPDATE `creature_template` SET `ScriptName`='boss_maexxna' WHERE `entry`=15952;
-UPDATE `creature_template` SET `ScriptName`='mob_webwrap' WHERE `entry`=16486;
-UPDATE `creature_template` SET `ScriptName`='boss_noth' WHERE `entry`=15954;
-UPDATE `creature_template` SET `ScriptName`='boss_heigan' WHERE `entry`=15936;
-UPDATE `creature_template` SET `ScriptName`='boss_loatheb' WHERE `entry`=16011;
-UPDATE `creature_template` SET `ScriptName`='boss_razuvious' WHERE `entry`=16061;
-UPDATE `creature_template` SET `ScriptName`='boss_gothik' WHERE `entry`=16060;
-UPDATE `creature_template` SET `ScriptName`='mob_gothik_minion' where `entry` IN (16124,16125,16126,16127,16148,16149,16150);
-UPDATE `creature_template` SET `ScriptName`='boss_four_horsemen' WHERE `entry` IN (16063,16064,16065,30549);
-UPDATE `creature_template` SET `ScriptName`='boss_patchwerk' WHERE `entry`=16028;
-UPDATE `creature_template` SET `ScriptName`='boss_grobbulus' WHERE `entry`=15931;
-UPDATE `creature_template` SET `ScriptName`='npc_grobbulus_poison_cloud' WHERE `entry`=16363;
-UPDATE `creature_template` SET `ScriptName`='boss_gluth' WHERE `entry`=15932;
-UPDATE `creature_template` SET `ScriptName`='boss_thaddius' WHERE `entry`=15928;
-UPDATE `creature_template` SET `ScriptName`='mob_stalagg' WHERE `entry`=15929;
-UPDATE `creature_template` SET `ScriptName`='mob_feugen' WHERE `entry`=15930;
-UPDATE `creature_template` SET `ScriptName`='boss_sapphiron' WHERE `entry`=15989;
-UPDATE `creature_template` SET `ScriptName`='boss_kelthuzad' WHERE `entry`=15990;
-UPDATE `creature_template` SET `ScriptName`='' WHERE `entry` IN (16062,30000);
-UPDATE `creature_template` SET `ScriptName`='trigger_periodic' WHERE `entry` IN (16474,16697,16129);
-
-DELETE FROM `areatrigger_scripts` WHERE `entry`=4112;
-INSERT INTO `areatrigger_scripts`(`entry`,`ScriptName`) VALUES(4112,'at_kelthuzad_center');
-
-/* NETHERSTORM */
-UPDATE `gameobject_template` SET `ScriptName`='go_manaforge_control_console' WHERE `entry` IN (183770,183956,184311,184312);
-UPDATE `creature_template` SET `ScriptName`='npc_manaforge_control_console' WHERE `entry` IN (20209,20417,20418,20440);
-UPDATE `creature_template` SET `ScriptName`='mob_phase_hunter' WHERE `entry`=18879;
-UPDATE `creature_template` SET `ScriptName`='npc_professor_dabiri' WHERE `entry`=20907;
-UPDATE `creature_template` SET `ScriptName`='npc_bessy' WHERE `entry`=20415;
-UPDATE `creature_template` SET `ScriptName`='npc_commander_dawnforge' WHERE `entry`=19831;
-UPDATE `creature_template` SET `ScriptName`='npc_maxx_a_million_escort', `MovementType`=2 WHERE `entry`=19589;
-
-
-/* THE NEXUS */
-UPDATE `instance_template` SET `script`='instance_nexus' WHERE `map`=576;
-UPDATE `creature_template` SET `ScriptName`='boss_magus_telestra' WHERE `entry`=26731;
-UPDATE `creature_template` SET `ScriptName`='boss_anomalus' WHERE `entry`=26763;
-UPDATE `creature_template` SET `ScriptName`='mob_chaotic_rift' WHERE `entry`=26918;
-UPDATE `creature_template` SET `ScriptName`='boss_ormorok' WHERE `entry`=26794;
-UPDATE `creature_template` SET `ScriptName`='mob_crystal_spike' WHERE `entry`=27099;
-UPDATE `creature_template` SET `ScriptName`='mob_crystalline_tangler' WHERE `entry`=32665;
-UPDATE `creature_template` SET `ScriptName`='boss_keristrasza' WHERE `entry`=26723;
-UPDATE `gameobject_template` SET `ScriptName`='containment_sphere' WHERE `entry` IN (188527,188528,188526);
-
-/* THE NEXUS, THE OCULUS */
-UPDATE `instance_template` SET `script`='instance_oculus' WHERE `map`=578;
-UPDATE `creature_template` SET `ScriptName`='boss_drakos' WHERE `entry`=27654;
-UPDATE `creature_template` SET `ScriptName`='npc_unstable_sphere' WHERE `entry`=28166;
-UPDATE `creature_template` SET `ScriptName`='npc_oculus_drake' WHERE `entry` IN (27657,27658,27659);
-UPDATE `creature_template` SET `ScriptName`='boss_urom' WHERE `entry`=27655;
-UPDATE `creature_template` SET `ScriptName`='boss_varos' WHERE `entry`=27447;
-UPDATE `creature_template` SET `ScriptName`='npc_azure_ring_captain' WHERE `entry`=28236;
-UPDATE `creature_template` SET `ScriptName`='boss_eregos' WHERE `entry`=27656;
-
-/* OBSIDIAN SANCTUM */
-UPDATE `instance_template` SET `script`='instance_obsidian_sanctum' WHERE `map`=615;
-UPDATE `creature_template` SET `ScriptName`='boss_sartharion' WHERE `entry`=28860;
-UPDATE `creature_template` SET `ScriptName`='mob_vesperon' WHERE `entry`=30449;
-UPDATE `creature_template` SET `ScriptName`='mob_shadron' WHERE `entry`=30451;
-UPDATE `creature_template` SET `ScriptName`='mob_tenebron' WHERE `entry`=30452;
-UPDATE `creature_template` SET `ScriptName`='mob_twilight_eggs' WHERE `entry`=30882;
-UPDATE `creature_template` SET `ScriptName`='mob_twilight_whelp' WHERE `entry` IN (30890,31214);
-UPDATE `creature_template` SET `ScriptName`='npc_twilight_fissure' WHERE `entry`=30641;
-UPDATE `creature_template` SET `ScriptName`='mob_acolyte_of_shadron' WHERE `entry`=31218;
-UPDATE `creature_template` SET `ScriptName`='mob_acolyte_of_vesperon' WHERE `entry`=31219;
-UPDATE `creature_template` SET `ScriptName`='npc_flame_tsunami' WHERE `entry`=30616;
-
-/* ONYXIA'S LAIR */
-UPDATE `instance_template` SET `script`='instance_onyxias_lair' WHERE `map`=249;
-UPDATE `creature_template` SET `ScriptName`='boss_onyxia' WHERE `entry`=10184;
-
-/* ORGRIMMAR */
-UPDATE `creature_template` SET `ScriptName`='npc_shenthul' WHERE `entry`=3401;
-UPDATE `creature_template` SET `ScriptName`='npc_thrall_warchief' WHERE `entry`=4949;
-
-/* PIT OF SARON */
-UPDATE `instance_template` SET `script`='instance_pit_of_saron' WHERE `map`=658;
-UPDATE `creature_template` SET `Scriptname`='boss_garfrost' WHERE `entry`=36494;
-UPDATE `creature_template` SET `Scriptname`='boss_ick' WHERE `entry`=36476;
-UPDATE `creature_template` SET `Scriptname`='boss_krick' WHERE `entry`=36477;
-UPDATE `creature_template` SET `Scriptname`='boss_tyrannus' WHERE `entry`=36658;
-UPDATE `creature_template` SET `Scriptname`='boss_rimefang' WHERE `entry`=36661;
-UPDATE `creature_template` SET `Scriptname`='mob_ymirjar_flamebearer' WHERE `entry`=36893;
-UPDATE `creature_template` SET `Scriptname`='mob_wrathbone_laborer' WHERE `entry`=36830;
-UPDATE `creature_template` SET `Scriptname`='mob_iceborn_protodrake' WHERE `entry`=36891;
-UPDATE `creature_template` SET `Scriptname`='mob_geist_ambusher' WHERE `entry`=36886;
-
-/* RAGEFIRE CHASM */
-UPDATE `gameobject_template` SET `ScriptName`='go_blood_filled_orb' WHERE `entry`=182024;
-
-/* RAZORFEN DOWNS */
-UPDATE `creature_template` SET `ScriptName`='boss_amnennar_the_coldbringer' WHERE `entry`=7358;
-UPDATE `creature_template` SET `ScriptName`='npc_henry_stern' WHERE `entry`=8696;
-UPDATE `creature_template` SET `ScriptName`='npc_tomb_creature' WHERE `entry` IN (7351,7349);
-UPDATE `instance_template` SET `script`='instance_razorfen_downs' WHERE `map`=129;
-UPDATE `gameobject_template` SET `ScriptName`='go_gong' WHERE `entry`=148917;
-
-/* RAZORFEN KRAUL */
-UPDATE `creature_template` SET `Scriptname`='npc_willix' WHERE `entry`=4508;
-UPDATE `instance_template` SET `script`='instance_razorfen_kraul' WHERE `map`=47;
-UPDATE `creature_template` SET `ScriptName`='npc_deaths_head_ward_keeper' WHERE `entry`=4625;
-
-/* REDRIDGE MOUNTAINS */
-UPDATE `creature_template` SET `ScriptName`='npc_corporal_keeshan' WHERE `entry`=349;
-
-/* RUINS OF AHN'QIRAJ */
-UPDATE `creature_template` SET `ScriptName`='boss_kurinnaxx' WHERE `entry`=15348;
-UPDATE `creature_template` SET `ScriptName`='boss_rajaxx' WHERE `entry`=15341;
-UPDATE `creature_template` SET `ScriptName`='boss_moam' WHERE `entry`=15340;
-UPDATE `creature_template` SET `ScriptName`='boss_buru' WHERE `entry`=15370;
-UPDATE `creature_template` SET `ScriptName`='boss_ayamiss' WHERE `entry`=15369;
-UPDATE `creature_template` SET `ScriptName`='boss_ossirian' WHERE `entry`=15339;
-UPDATE `instance_template` SET `script`='instance_ruins_of_ahnqiraj' WHERE `map`=509;
-
-/* SCARLET MONASTERY */
-UPDATE `instance_template` SET `script`='instance_scarlet_monastery' WHERE `map`=189;
-UPDATE `creature_template` SET `ScriptName`='boss_arcanist_doan' WHERE `entry`=6487;
-UPDATE `creature_template` SET `ScriptName`='boss_azshir_the_sleepless' WHERE `entry`=6490;
-UPDATE `creature_template` SET `ScriptName`='boss_bloodmage_thalnos' WHERE `entry`=4543;
-UPDATE `creature_template` SET `ScriptName`='boss_herod' WHERE `entry`=3975;
-UPDATE `creature_template` SET `ScriptName`='boss_high_inquisitor_fairbanks' WHERE `entry`=4542;
-UPDATE `creature_template` SET `ScriptName`='boss_high_inquisitor_whitemane' WHERE `entry`=3977;
-UPDATE `creature_template` SET `ScriptName`='boss_houndmaster_loksey' WHERE `entry`=3974;
-UPDATE `creature_template` SET `ScriptName`='boss_interrogator_vishas' WHERE `entry`=3983;
-UPDATE `creature_template` SET `ScriptName`='boss_scarlet_commander_mograine' WHERE `entry`=3976;
-UPDATE `creature_template` SET `ScriptName`='boss_scorn' WHERE `entry`=14693;
-UPDATE `creature_template` SET `ScriptName`='boss_headless_horseman' WHERE `entry`=23682;
-UPDATE `creature_template` SET `ScriptName`='mob_head' WHERE `entry`=23775;
-UPDATE `creature_template` SET `ScriptName`='mob_pulsing_pumpkin' WHERE `entry`=23694;
-UPDATE `creature_template` SET `ScriptName`='mob_wisp_invis' WHERE `entry`=23686;
-UPDATE `creature_template` SET `ScriptName`='mob_wisp_invis' WHERE `entry`=24034;
-UPDATE `creature_template` SET `ScriptName`='mob_scarlet_trainee' WHERE `entry`=6575;
-UPDATE `gameobject_template` SET `ScriptName`='go_loosely_turned_soil' WHERE `entry`=186314;
-
-/* SCHOLOMANCE */
-UPDATE `instance_template` SET `script`='instance_scholomance' WHERE `map`=289;
-UPDATE `creature_template` SET `ScriptName`='boss_darkmaster_gandling' WHERE `entry`=1853;
-UPDATE `creature_template` SET `ScriptName`='boss_death_knight_darkreaver' WHERE `entry`=14516;
-UPDATE `creature_template` SET `ScriptName`='boss_lord_alexei_barov' WHERE `entry`=10504;
-UPDATE `creature_template` SET `ScriptName`='boss_instructor_malicia' WHERE `entry`=10505;
-UPDATE `creature_template` SET `ScriptName`='boss_boss_ras_frostwhisper' WHERE `entry`=10508;
-UPDATE `creature_template` SET `ScriptName`='boss_the_ravenian' WHERE `entry`=10507;
-UPDATE `creature_template` SET `ScriptName`='boss_vectus' WHERE `entry`=10432;
-UPDATE `creature_template` SET `ScriptName`='boss_illucia_barov' WHERE `entry`=10502;
-UPDATE `creature_template` SET `ScriptName`='boss_doctor_theolen_krastinov' WHERE `entry`=11261;
-UPDATE `creature_template` SET `ScriptName`='boss_jandice_barov' WHERE `entry`=10503;
-UPDATE `creature_template` SET `ScriptName`='boss_lorekeeper_polkelt' WHERE `entry`=10901;
-UPDATE `creature_template` SET `ScriptName`='boss_kormok' WHERE `entry`=16118;
-UPDATE `creature_template` SET `ScriptName`='mob_illusionofjandicebarov' WHERE `entry`=11439;
-
-/* SEARING GORGE */
-UPDATE `creature_template` SET `ScriptName`='npc_kalaran_windblade' WHERE `entry`=8479;
-UPDATE `creature_template` SET `ScriptName`='npc_lothos_riftwaker' WHERE `entry`=14387;
-UPDATE `creature_template` SET `ScriptName`='npc_zamael_lunthistle' WHERE `entry`=8436;
-
-/* SHADOWFANG KEEP */
-UPDATE `instance_template` SET `script`='instance_shadowfang_keep' WHERE `map`=33;
-UPDATE `creature_template` SET `ScriptName`='npc_shadowfang_prisoner' WHERE `entry` IN (3849,3850);
-UPDATE `creature_template` SET `ScriptName`='npc_arugal_voidwalker' WHERE `entry`=4627;
-
-/* SHADOWMOON VALLEY */
-UPDATE `creature_template` SET `ScriptName`='boss_doomwalker' WHERE `entry`=17711;
-UPDATE `creature_template` SET `ScriptName`='npc_drake_dealer_hurlunk' WHERE `entry`=23489;
-UPDATE `creature_template` SET `ScriptName`='npc_invis_legion_teleporter' WHERE `entry`=21807;
-UPDATE `creature_template` SET `ScriptName`='npcs_flanis_swiftwing_and_kagrosh' WHERE `entry` IN (21725,21727);
-UPDATE `creature_template` SET `ScriptName`='npc_murkblood_overseer' WHERE `entry`=23309;
-UPDATE `creature_template` SET `ScriptName`='npc_oronok_tornheart' WHERE `entry`=21183;
-UPDATE `creature_template` SET `ScriptName`='mob_mature_netherwing_drake' WHERE `entry`=21648;
-UPDATE `creature_template` SET `ScriptName`='mob_enslaved_netherwing_drake' WHERE `entry`=21722;
-UPDATE `creature_template` SET `ScriptName`='npc_overlord_morghor' WHERE `entry`=23139;
-UPDATE `creature_template` SET `ScriptName`='mob_illidari_spawn' WHERE `entry` IN (22075,22074,19797);
-UPDATE `creature_template` SET `ScriptName`='mob_torloth_the_magnificent' WHERE `entry`=22076;
-UPDATE `creature_template` SET `ScriptName`='npc_lord_illidan_stormrage' WHERE `entry`=22083;
-UPDATE `creature_template` SET `ScriptName`='npc_earthmender_wilda' WHERE `entry`=21027;
-UPDATE `creature_template` SET `ScriptName`='npc_enraged_spirit' WHERE `entry` IN (21050,21061,21060,21059);
-UPDATE `creature_template` SET `ScriptName`='mob_dragonmaw_peon' WHERE `entry`=22252;
-UPDATE `creature_template` SET `ScriptName`='npc_karynaku' WHERE `entry`=22112;
-
-/* SHATTRATH */
-UPDATE `creature_template` SET `ScriptName`='npc_raliq_the_drunk' WHERE `entry`=18585;
-UPDATE `creature_template` SET `ScriptName`='npc_salsalabim' WHERE `entry`=18584;
-UPDATE `creature_template` SET `ScriptName`='npc_shattrathflaskvendors' WHERE `entry` IN (23483,23484);
-UPDATE `creature_template` SET `ScriptName`='npc_zephyr' WHERE `entry`=25967;
-UPDATE `creature_template` SET `ScriptName`='npc_kservant' WHERE `entry`=19685;
-UPDATE `creature_template` SET `ScriptName`='npc_dirty_larry' WHERE `entry`=19720;
-UPDATE `creature_template` SET `ScriptName`='npc_ishanah' WHERE `entry`=18538;
-UPDATE `creature_template` SET `ScriptName`='npc_khadgar' WHERE `entry`=18166;
-
-/* Sholazar Basin */
-UPDATE `creature_template` SET `ScriptName`='npc_injured_rainspeaker_oracle' WHERE `entry`=28217;
-UPDATE `creature_template` SET `ScriptName`='npc_vekjik' WHERE `entry`=28315;
-UPDATE `creature_template` SET `ScriptName`='npc_avatar_of_freya' WHERE `entry`=27801;
-UPDATE `creature_template` SET `ScriptName`='npc_bushwhacker' WHERE `entry`=28317;
-UPDATE `creature_template` SET `ScriptName`='npc_engineer_helice' WHERE `entry`=28787;
-UPDATE `creature_template` SET `ScriptName`='npc_adventurous_dwarf' WHERE `entry`=28604;
-UPDATE `creature_template` SET `ScriptName`='npc_jungle_punch_target' WHERE `entry` IN(27986,28047,28568);
-
-/* SILITHUS */
-UPDATE `creature_template` SET `ScriptName`='npcs_rutgar_and_frankal' WHERE `entry` IN (15170,15171);
-UPDATE `creature_template` SET `ScriptName`='npc_highlord_demitrian' WHERE `entry`=14347;
-UPDATE `gameobject_template` SET `ScriptName`='go_gauntlet_gate' WHERE `entry`=175357;
-UPDATE `gameobject_template` SET `ScriptName`='go_crystalline_tear' WHERE `entry`=180633;
-UPDATE `creature_template` SET `ScriptName`='mob_qiraj_war_spawn' WHERE `entry` IN (15414,15422,15424,15423);
-UPDATE `creature_template` SET `ScriptName`='npc_anachronos_the_ancient' WHERE `entry`=15381;
-UPDATE `creature_template` SET `ScriptName`='npc_anachronos_quest_trigger' WHERE `entry`=15454;
-UPDATE `gameobject_template` SET `ScriptName`='go_hive_pod' WHERE `entry`=178553;
-
-/* SILVERMOON */
-UPDATE `creature_template` SET `ScriptName`='npc_blood_knight_stillblade' WHERE `entry`=17768;
-
-/* SILVERPINE FOREST */
-UPDATE `creature_template` SET `ScriptName`='npc_astor_hadren' WHERE `entry`=6497;
-UPDATE `creature_template` SET `ScriptName`='npc_deathstalker_erland' WHERE `entry`=1978;
-UPDATE `creature_template` SET `ScriptName`='pyrewood_ambush' WHERE `entry`=2058;
-
-/* STOCKADES */
-
-/* STONETALON MOUNTAINS */
-UPDATE `creature_template` SET `ScriptName`='npc_braug_dimspirit' WHERE `entry`=4489;
-UPDATE `creature_template` SET `ScriptName`='npc_kaya_flathoof' WHERE `entry`=11856;
-
-/* STORM PEAKS */
-UPDATE `creature_template` SET `ScriptName`='npc_agnetta_tyrsdottar' WHERE `entry`=30154;
-UPDATE `creature_template` SET `ScriptName`='npc_frostborn_scout' WHERE `entry`=29811;
-UPDATE `creature_template` SET `ScriptName`='npc_thorim' WHERE `entry`=29445;
-UPDATE `creature_template` SET `ScriptName`='npc_goblin_prisoner' WHERE `entry`=29466;
-UPDATE `gameobject_template` SET ScriptName='go_rusty_cage' WHERE `entry`=191544;
-UPDATE `creature_template` SET `ScriptName`='npc_injured_goblin' WHERE `entry`=29434;
-UPDATE `creature_template` SET `ScriptName`='npc_roxi_ramrocket' WHERE `entry`=31247;
-UPDATE `creature_template` SET `ScriptName`='npc_brunnhildar_prisoner' WHERE `entry`=29639;
-UPDATE `creature_template` SET `ScriptName`='npc_icefang' WHERE `entry`=29602;
-
-/* STORMWIND CITY */
-UPDATE `creature_template` SET `ScriptName`='npc_archmage_malin' WHERE `entry`=2708;
-UPDATE `creature_template` SET `ScriptName`='npc_bartleby' WHERE `entry`=6090;
-UPDATE `creature_template` SET `ScriptName`='npc_dashel_stonefist' WHERE `entry`=4961;
-UPDATE `creature_template` SET `ScriptName`='npc_lady_katrana_prestor' WHERE `entry`=1749;
-UPDATE `creature_template` SET `ScriptName`='npc_tyrion' WHERE `entry`=7766;
-UPDATE `creature_template` SET `ScriptName`='npc_tyrion_spybot' WHERE `entry`=8856;
-UPDATE `creature_template` SET `ScriptName`='npc_lord_gregor_lescovar' WHERE `entry`=1754;
-UPDATE `creature_template` SET `ScriptName`='npc_marzon_silent_blade' WHERE `entry`=1755;
-
-
-/* STRANGLETHORN VALE */
-UPDATE `creature_template` SET `ScriptName`='mob_yenniku' WHERE `entry`=2530;
-
-/* STRATHOLME */
-UPDATE `instance_template` SET `script`='instance_stratholme' WHERE `map`=329;
-UPDATE `creature_template` SET `ScriptName`='boss_dathrohan_balnazzar' WHERE `entry`=10812;
-UPDATE `creature_template` SET `ScriptName`='boss_magistrate_barthilas' WHERE `entry`=10435;
-UPDATE `creature_template` SET `ScriptName`='boss_maleki_the_pallid' WHERE `entry`=10438;
-UPDATE `creature_template` SET `ScriptName`='boss_nerubenkan' WHERE `entry`=10437;
-UPDATE `creature_template` SET `ScriptName`='boss_cannon_master_willey' WHERE `entry`=10997;
-UPDATE `creature_template` SET `ScriptName`='boss_baroness_anastari' WHERE `entry`=10436;
-UPDATE `creature_template` SET `ScriptName`='boss_ramstein_the_gorger' WHERE `entry`=10439;
-UPDATE `creature_template` SET `ScriptName`='boss_timmy_the_cruel' WHERE `entry`=10808;
-UPDATE `creature_template` SET `ScriptName`='boss_silver_hand_bosses' WHERE `entry` IN (17910,17911,17912,17913,17914);
-UPDATE `creature_template` SET `ScriptName`='boss_postmaster_malown' WHERE `entry`=11143;
-UPDATE `creature_template` SET `ScriptName`='boss_baron_rivendare' WHERE `entry`=10440;
-UPDATE `creature_template` SET `ScriptName`='mob_mindless_skeleton' WHERE `entry`=11197;
-UPDATE `creature_template` SET `ScriptName`='mob_thuzadin_acolyte' WHERE `entry`=10399;
-UPDATE `creature_template` SET `ScriptName`='mobs_spectral_ghostly_citizen' WHERE `entry` IN (10384,10385);
-UPDATE `creature_template` SET `ScriptName`='mob_restless_soul' WHERE `entry`=11122;
-UPDATE `creature_template` SET `ScriptName`='mob_freed_soul' WHERE `entry`=11136;
-
-/* SUNKEN TEMPLE */
-UPDATE `instance_template` SET `script`='instance_sunken_temple' WHERE `map`=109;
-UPDATE `gameobject_template` SET `ScriptName`='go_atalai_statue' WHERE `entry` IN (148830,148831,148832,148833,148834,148835);
-UPDATE `creature_template` SET `ScriptName`='boss_twilight_corrupter' WHERE `entry`=15625;
-DELETE FROM `areatrigger_scripts` WHERE `entry`=4016;
-INSERT INTO `areatrigger_scripts` (`entry`,`ScriptName`) VALUES (4016,'at_malfurion_stormrage');
-
-/* SUNWELL PLATEAU */
-UPDATE `instance_template` SET `script`='instance_sunwell_plateau' WHERE `map`=580;
-UPDATE `creature_template` SET `ScriptName`='boss_brutallus' WHERE `entry`=24882;
-UPDATE `creature_template` SET `ScriptName`='boss_felmyst' WHERE `entry`=25038;
-UPDATE `creature_template` SET `ScriptName`='mob_felmyst_vapor' WHERE `entry`=25265;
-UPDATE `creature_template` SET `ScriptName`='mob_felmyst_trail' WHERE `entry`=25267;
-UPDATE `creature_template` SET `ScriptName`='boss_sacrolash' WHERE `entry`=25165;
-UPDATE `creature_template` SET `ScriptName`='boss_alythess' WHERE `entry`=25166;
-UPDATE `creature_template` SET `ScriptName`='mob_shadow_image' WHERE `entry`=25214;
-UPDATE `creature_template` SET `ScriptName`='boss_kiljaeden' WHERE `entry`=25315;
-UPDATE `creature_template` SET `ScriptName`='boss_kalecgos_kj' WHERE `entry`=25319;
-UPDATE `creature_template` SET `ScriptName`='mob_kiljaeden_controller' WHERE `entry`=25608;
-UPDATE `creature_template` SET `ScriptName`='mob_hand_of_the_deceiver' WHERE `entry`=25588;
-UPDATE `creature_template` SET `ScriptName`='mob_felfire_portal' WHERE `entry`=25603;
-UPDATE `creature_template` SET `ScriptName`='mob_volatile_felfire_fiend' WHERE `entry`=25598;
-UPDATE `creature_template` SET `ScriptName`='mob_armageddon' WHERE `entry`=25735;
-UPDATE `creature_template` SET `ScriptName`='mob_shield_orb' WHERE `entry`=25502;
-UPDATE `creature_template` SET `ScriptName`='mob_sinster_reflection' WHERE `entry`=25708;
-UPDATE `gameobject_template` SET `ScriptName`='go_orb_of_the_blue_flight' WHERE `entry`=188415;
-UPDATE `creature_template` SET `ScriptName`='npc_void_sentinel' WHERE `entry`=25772;
-UPDATE `creature_template` SET `ScriptName`='npc_dark_fiend' WHERE `entry`=25744;
-UPDATE `creature_template` SET `ScriptName`='boss_muru' WHERE `entry`=25741;
-UPDATE `creature_template` SET `ScriptName`='boss_entropius' WHERE `entry`=25840;
-UPDATE `creature_template` SET `ScriptName`='npc_muru_portal' WHERE `entry`=25770;
-UPDATE `creature_template` SET `ScriptName`='boss_kalecgos' WHERE `entry`=24850;
-UPDATE `creature_template` SET `ScriptName`='boss_sathrovarr' WHERE `entry`=24892;
-UPDATE `creature_template` SET `ScriptName`='boss_kalec' WHERE `entry`=24891;
-UPDATE `gameobject_template` SET `ScriptName`='kalecgos_teleporter' WHERE `entry`=187055;
-UPDATE `creature_template` SET `ScriptName`='npc_blackhole' WHERE `entry`=25855;
-
-/* SWAMP OF SORROWS */
-UPDATE `creature_template` SET `ScriptName`='npc_galen_goodward' WHERE `entry`=5391;
-
-/* TANARIS */
-UPDATE `creature_template` SET `ScriptName`='mob_aquementas' WHERE `entry`=9453;
-UPDATE `creature_template` SET `ScriptName`='npc_custodian_of_time' WHERE `entry`=20129;
-UPDATE `creature_template` SET `ScriptName`='npc_marin_noggenfogger' WHERE `entry`=7564;
-UPDATE `creature_template` SET `ScriptName`='npc_steward_of_time' WHERE `entry`=20142;
-UPDATE `creature_template` SET `ScriptName`='npc_stone_watcher_of_norgannon' WHERE `entry`=7918;
-UPDATE `creature_template` SET `ScriptName`='npc_OOX17' WHERE `entry`=7784;
-UPDATE `creature_template` SET `ScriptName`='npc_tooga' WHERE `entry`=5955;
-
-/* TELDRASSIL */
-UPDATE `creature_template` SET `ScriptName`='npc_mist' WHERE `entry`=3568;
-
-/* TEMPEST KEEP */
-
-/* THE MECHANAR */
-UPDATE `creature_template` SET `ScriptName`='boss_gatewatcher_iron_hand' WHERE `entry`=19710;
-UPDATE `creature_template` SET `ScriptName`='boss_nethermancer_sepethrea' WHERE `entry`=19221;
-UPDATE `creature_template` SET `ScriptName`='mob_ragin_flames' WHERE `entry`=20481;
-UPDATE `creature_template` SET `ScriptName`='boss_pathaleon_the_calculator' WHERE `entry`=19220;
-UPDATE `creature_template` SET `ScriptName`='mob_nether_wraith' WHERE `entry`=21062;
-UPDATE `instance_template` SET `script`='instance_mechanar' WHERE `map`=554;
-
-/* THE BOTANICA */
-UPDATE `creature_template` SET `ScriptName`='boss_high_botanist_freywinn' WHERE `entry`=17975;
-UPDATE `creature_template` SET `ScriptName`='boss_laj' WHERE `entry`=17980;
-UPDATE `creature_template` SET `ScriptName`='boss_warp_splinter' WHERE `entry`=17977;
-UPDATE `creature_template` SET `ScriptName`='mob_warp_splinter_treant' WHERE `entry`=19949;
-
-/* THE ARCATRAZ */
-UPDATE `instance_template` SET `script`='instance_arcatraz' WHERE `map`=552;
-UPDATE `creature_template` SET `ScriptName`='mob_zerekethvoidzone' WHERE `entry`=21101;
-UPDATE `creature_template` SET `ScriptName`='boss_harbinger_skyriss' WHERE `entry`=20912;
-UPDATE `creature_template` SET `ScriptName`='boss_harbinger_skyriss_illusion' WHERE `entry` IN (21466,21467);
-UPDATE `creature_template` SET `ScriptName`='npc_warden_mellichar' WHERE `entry`=20904;
-UPDATE `creature_template` SET `ScriptName`='npc_millhouse_manastorm' WHERE `entry`=20977;
-
-/* THE EYE */
-UPDATE `instance_template` SET `script`='instance_the_eye' WHERE `map`=550;
-UPDATE `gameobject_template` SET `ScriptName`='go_kael_orb' WHERE `entry`=188173;
-UPDATE `gameobject_template` SET `ScriptName`='go_movie_orb' WHERE `entry`=187578;
-/* The Eye Trash Mobs */
-UPDATE `creature_template` SET `ScriptName`='mob_crystalcore_devastator' WHERE `entry`=20040;
-/* Void Reaver event */
-UPDATE `creature_template` SET `ScriptName`='boss_void_reaver' WHERE `entry`=19516;
-/* Astromancer event */
-UPDATE `creature_template` SET `ScriptName`='boss_high_astromancer_solarian' WHERE `entry`=18805;
-UPDATE `creature_template` SET `ScriptName`='mob_solarium_priest' WHERE `entry`=18806;
-/* Kael'thas event */
-UPDATE `creature_template` SET `ScriptName`='boss_kaelthas' WHERE `entry`=19622;
-UPDATE `creature_template` SET `ScriptName`='boss_thaladred_the_darkener' WHERE `entry`=20064;
-UPDATE `creature_template` SET `ScriptName`='boss_lord_sanguinar' WHERE `entry`=20060;
-UPDATE `creature_template` SET `ScriptName`='boss_grand_astromancer_capernian' WHERE `entry`=20062;
-UPDATE `creature_template` SET `ScriptName`='boss_master_engineer_telonicus' WHERE `entry`=20063;
-UPDATE `creature_template` SET `ScriptName`='mob_phoenix_tk' WHERE `entry`=21362;
-UPDATE `creature_template` SET `ScriptName`='mob_phoenix_egg_tk' WHERE `entry`=21364;
-UPDATE `creature_template` SET `ScriptName`='mob_nether_vapor' WHERE `entry`=21002;
-UPDATE `creature_template` SET `ScriptName`='mob_kael_flamestrike' WHERE `entry`=21369;
-UPDATE `creature_template` SET `ScriptName`='boss_alar' WHERE `entry`=19514;
-UPDATE `creature_template` SET `ScriptName`='mob_ember_of_alar' WHERE `entry`=19551;
-UPDATE `creature_template` SET `ScriptName`='mob_flame_patch_alar' WHERE `entry`=20602;
-
-/* TEMPLE OF AHN'QIRAJ */
-UPDATE `instance_template` SET `script`='instance_temple_of_ahnqiraj' WHERE `map`=531;
-UPDATE `creature_template` SET `ScriptName`='boss_cthun' WHERE `entry`=15727;
-UPDATE `creature_template` SET `ScriptName`='boss_skeram' WHERE `entry`=15263;
-UPDATE `creature_template` SET `ScriptName`='boss_vem' WHERE `entry`=15544;
-UPDATE `creature_template` SET `ScriptName`='boss_yauj' WHERE `entry`=15543;
-UPDATE `creature_template` SET `ScriptName`='boss_kri' WHERE `entry`=15511;
-UPDATE `creature_template` SET `ScriptName`='boss_sartura' WHERE `entry`=15516;
-UPDATE `creature_template` SET `ScriptName`='boss_fankriss' WHERE `entry`=15510;
-UPDATE `creature_template` SET `ScriptName`='boss_viscidus' WHERE `entry`=15299;
-UPDATE `creature_template` SET `ScriptName`='boss_glob_of_viscidus' WHERE `entry`=15667;
-UPDATE `creature_template` SET `ScriptName`='boss_huhuran' WHERE `entry`=15509;
-UPDATE `creature_template` SET `ScriptName`='boss_veklor' WHERE `entry`=15276;
-UPDATE `creature_template` SET `ScriptName`='boss_veknilash' WHERE `entry`=15275;
-UPDATE `creature_template` SET `ScriptName`='boss_ouro' WHERE `entry`=15517;
-UPDATE `creature_template` SET `ScriptName`='boss_eye_of_cthun' WHERE `entry`=15589;
-UPDATE `creature_template` SET `ScriptName`='mob_sartura_royal_guard' WHERE `entry`=15984;
-UPDATE `creature_template` SET `ScriptName`='mob_yauj_brood' WHERE `entry`=15621;
-UPDATE `creature_template` SET `ScriptName`='mob_claw_tentacle' WHERE `entry`=15725;
-UPDATE `creature_template` SET `ScriptName`='mob_eye_tentacle' WHERE `entry`=15726;
-UPDATE `creature_template` SET `ScriptName`='mob_giant_claw_tentacle' WHERE `entry`=15728;
-UPDATE `creature_template` SET `ScriptName`='mob_giant_eye_tentacle' WHERE `entry`=15334;
-UPDATE `creature_template` SET `ScriptName`='mob_giant_flesh_tentacle' WHERE `entry`=15802;
-UPDATE `creature_template` SET `ScriptName`='mob_anubisath_sentinel' WHERE `entry`=15264;
-
-/* TEROKKAR FOREST */
-UPDATE `creature_template` SET `ScriptName`='mob_infested_root_walker' WHERE `entry`=22095;
-UPDATE `creature_template` SET `ScriptName`='mob_netherweb_victim' WHERE `entry`=22355;
-UPDATE `creature_template` SET `ScriptName`='mob_rotting_forest_rager' WHERE `entry`=22307;
-UPDATE `creature_template` SET `ScriptName`='npc_floon' WHERE `entry`=18588;
-UPDATE `creature_template` SET `ScriptName`='npc_isla_starmane' WHERE `entry`=18760;
-UPDATE `creature_template` SET `ScriptName`='mob_unkor_the_ruthless' WHERE `entry`=18262;
-UPDATE `creature_template` SET `ScriptName`='npc_slim' WHERE `entry`=19679;
-UPDATE `creature_template` SET `ScriptName`='npc_akuno' WHERE `entry`=22377;
-UPDATE `creature_template` SET `ScriptName`='npc_skywing' WHERE `entry`=22424;
-
-/* THOUSAND NEEDLES */
-UPDATE `creature_template` SET `ScriptName`='npc_kanati' WHERE `entry`=10638;
-UPDATE `creature_template` SET `ScriptName`='npc_paoka_swiftmountain' WHERE `entry`=10427;
-UPDATE `creature_template` SET `ScriptName`='npc_plucky' WHERE `entry`=6626;
-UPDATE `creature_template` SET `ScriptName`='npc_lakota_windsong' WHERE `entry`=10646;
-UPDATE `creature_template` SET `ScriptName`='npc_enraged_panther' WHERE `entry`=10992;
-UPDATE `gameobject_template` SET `ScriptName`='go_panther_cage' WHERE `entry`=176195;
-
-/* THUNDER BLUFF */
-UPDATE `creature_template` SET `ScriptName`='npc_cairne_bloodhoof' WHERE `entry`=3057;
-
-/* TRIAL OF THE CHAMPION */
-UPDATE `instance_template` SET `script`='instance_trial_of_the_champion' WHERE `map`=650;
-UPDATE `creature_template` SET `ScriptName` = 'generic_vehicleAI_toc5' WHERE `entry` IN (33217,33323,33320,33316,33317,33324,33318,33319,33321,33322);
-UPDATE `creature_template` SET `ScriptName`='boss_warrior_toc5' WHERE `entry` IN (34705,35572);
-UPDATE `creature_template` SET `ScriptName`='boss_mage_toc5' WHERE `entry` IN (34702,35569);
-UPDATE `creature_template` SET `ScriptName`='boss_shaman_toc5' WHERE `entry` IN (35571,34701);
-UPDATE `creature_template` SET `ScriptName`='boss_hunter_toc5' WHERE `entry` IN (35570,34657);
-UPDATE `creature_template` SET `ScriptName`='boss_rouge_toc5' WHERE `entry` IN (35617,34703);
-UPDATE `creature_template` SET `ScriptName`='npc_announcer_toc5' WHERE `entry`IN (35004,35005);
-UPDATE `creature_template` SET `ScriptName`='npc_risen_ghoul' WHERE `entry` IN (35545,35564);
-UPDATE `creature_template` SET `ScriptName`='boss_black_knight' WHERE `entry`=35451;
-UPDATE `creature_template` SET `ScriptName`='boss_eadric' WHERE `entry`=35119;
-UPDATE `creature_template` SET `ScriptName`='boss_paletress' WHERE `entry`=34928;
-UPDATE `creature_template` SET `ScriptName`='npc_memory' WHERE `entry` IN (35052,35041,35033,35046,35043,35047,35044,35039,35034,35049,35030,34942,35050,35042,35045,35037,35031,35038,35029,35048,35032,35028,35040,35036,35051);
-UPDATE `creature_template` SET `ScriptName`='npc_argent_soldier' WHERE `entry` IN (35309,35305,35307);
-UPDATE `creature_template` SET `ScriptName`='npc_black_knight_skeletal_gryphon' WHERE `entry`=35491;
-UPDATE `creature_template` SET `AIName`='PassiveAI' WHERE `entry` IN (35332,35330,35328,35327,35331,35329,35325,35314,35326,35323);
-
-/* TRIAL OF THE CRUSADER */
-UPDATE `instance_template` SET `script`='instance_trial_of_the_crusader' WHERE `map`=649;
-UPDATE `creature_template` SET `scriptname`='npc_announcer_toc10' WHERE `entry`=34816;
-UPDATE `creature_template` SET `scriptname`='boss_lich_king_toc' WHERE `entry`=35877;
-UPDATE `creature_template` SET `scriptname`='npc_fizzlebang_toc' WHERE `entry`=35458;
-UPDATE `creature_template` SET `scriptname`='npc_tirion_toc' WHERE `entry`=34996;
-UPDATE `creature_template` SET `scriptname`='npc_garrosh_toc' WHERE `entry`=34995;
-UPDATE `creature_template` SET `scriptname`='npc_varian_toc' WHERE `entry`=34990;
-UPDATE `creature_template` SET `scriptname`='boss_gormok' WHERE `entry`=34796;
-UPDATE `creature_template` SET `scriptname`='mob_snobold_vassal' WHERE `entry`=34800;
-UPDATE `creature_template` SET `scriptname`='boss_dreadscale' WHERE `entry`=34799;
-UPDATE `creature_template` SET `scriptname`='boss_acidmaw' WHERE `entry`=35144;
-UPDATE `creature_template` SET `scriptname`='mob_slime_pool' WHERE `entry`=35176;
-UPDATE `creature_template` SET `scriptname`='boss_icehowl' WHERE `entry`=34797;
-UPDATE `creature_template` SET `scriptname`='boss_jaraxxus' WHERE `entry`= 34780;
-UPDATE `creature_template` SET `scriptname`='mob_legion_flame' WHERE `entry`=34784;
-UPDATE `creature_template` SET `scriptname`='mob_infernal_volcano' WHERE `entry`=34813;
-UPDATE `creature_template` SET `scriptname`='mob_nether_portal' WHERE `entry`=34825;
-UPDATE `creature_template` SET `scriptname`='mob_fel_infernal' WHERE `entry`=34815;
-UPDATE `creature_template` SET `scriptname`='mob_mistress_of_pain' WHERE `entry`=34826;
-UPDATE `creature_template` SET `scriptname`='boss_toc_champion_controller' WHERE `entry`=34781;
-UPDATE `creature_template` SET `scriptname`='mob_toc_warrior' WHERE `entry` IN (34475,34453);
-UPDATE `creature_template` SET `scriptname`='mob_toc_mage' WHERE `entry` IN (34468,34449);
-UPDATE `creature_template` SET `scriptname`='mob_toc_shaman' WHERE `entry` IN (34470,34444);
-UPDATE `creature_template` SET `scriptname`='mob_toc_enh_shaman' WHERE `entry` IN (34463,34455);
-UPDATE `creature_template` SET `scriptname`='mob_toc_hunter' WHERE `entry` IN (34467,34448);
-UPDATE `creature_template` SET `scriptname`='mob_toc_rogue' WHERE `entry` IN (34472,34454);
-UPDATE `creature_template` SET `scriptname`='mob_toc_priest' WHERE `entry` IN (34466,34447);
-UPDATE `creature_template` SET `scriptname`='mob_toc_shadow_priest' WHERE `entry` IN (34473,34441);
-UPDATE `creature_template` SET `scriptname`='mob_toc_dk' WHERE `entry` IN (34461,34458);
-UPDATE `creature_template` SET `scriptname`='mob_toc_paladin' WHERE `entry` IN (34465,34445);
-UPDATE `creature_template` SET `scriptname`='mob_toc_retro_paladin' WHERE `entry` IN (34471,34456);
-UPDATE `creature_template` SET `scriptname`='mob_toc_druid' WHERE `entry` IN (34469,34459);
-UPDATE `creature_template` SET `scriptname`='mob_toc_boomkin' WHERE `entry` IN (34460,34451);
-UPDATE `creature_template` SET `scriptname`='mob_toc_warlock' WHERE `entry` IN (34474,34450);
-UPDATE `creature_template` SET `scriptname`='mob_toc_pet_warlock' WHERE `entry`=35465;
-UPDATE `creature_template` SET `scriptname`='mob_toc_pet_hunter' WHERE `entry`=35610;
-UPDATE `creature_template` SET `scriptname`='boss_fjola' WHERE `entry`=34497;
-UPDATE `creature_template` SET `scriptname`='boss_eydis' WHERE `entry`=34496;
-UPDATE `creature_template` SET `scriptname`='mob_essence_of_twin' WHERE `entry` IN (34567,34568);
-UPDATE `creature_template` SET `scriptname`='mob_unleashed_dark' WHERE entry=34628;
-UPDATE `creature_template` SET `scriptname`='mob_unleashed_light' WHERE entry=34630;
-UPDATE `creature_template` SET `scriptname`='boss_anubarak_trial' WHERE `entry`=34564;
-UPDATE `creature_template` SET `ScriptName`='mob_frost_sphere' WHERE `entry`=34606;
-UPDATE `creature_template` SET `scriptname`='mob_swarm_scarab' WHERE `entry`=34605;
-UPDATE `creature_template` SET `scriptname`='mob_nerubian_burrower' WHERE `entry`=34607;
-UPDATE `creature_template` SET `scriptname`='mob_anubarak_spike' WHERE `entry`=34660;
-
-/* TIRISFAL GLADES */
-UPDATE `creature_template` SET `ScriptName`='npc_calvin_montague' WHERE `entry`=6784;
-
-/* ULDAMAN */
-UPDATE `instance_template` SET `script`='instance_uldaman' WHERE `map`=70;
-UPDATE `creature_template` SET `ScriptName`='boss_ironaya' WHERE `entry`=7228;
-UPDATE `creature_template` SET `ScriptName`='mob_jadespine_basilisk' WHERE `entry`=4863;
-UPDATE `creature_template` SET `ScriptName`='npc_lore_keeper_of_norgannon' WHERE `entry`=7172;
-UPDATE `creature_template` SET `ScriptName`='boss_archaedas' WHERE `entry`=2748;
-UPDATE `creature_template` SET `ScriptName`='mob_archaedas_minions' WHERE `entry` IN (7309,7077,7076,10120);
-UPDATE `creature_template` SET `ScriptName`='mob_stonekeepers' WHERE `entry`=4857;
-UPDATE `gameobject_template` SET `ScriptName`='go_altar_of_the_keepers' WHERE `entry`=130511;
-UPDATE `gameobject_template` SET `ScriptName`='go_altar_of_archaedas' WHERE `entry`=133234;
-UPDATE `gameobject_template` SET `ScriptName`='go_keystone_chamber' WHERE `entry`=124371;
-
-/* ULDUAR */
-UPDATE `instance_template` SET `script`='instance_ulduar' WHERE `map`=603;
-UPDATE `creature_template` SET `ScriptName`='boss_auriaya' WHERE `entry`=33515;
-UPDATE `creature_template` SET `ScriptName`='boss_flame_leviathan' WHERE `entry`=33113;
-UPDATE `creature_template` SET `AIName`='TurretAI',`ScriptName`='' WHERE `entry`=33139;
-UPDATE `creature_template` SET `ScriptName`='boss_flame_leviathan_seat' WHERE `entry`=33114;
-UPDATE `creature_template` SET `ScriptName`='boss_flame_leviathan_defense_turret' WHERE `entry`=33142;
-UPDATE `creature_template` SET `ScriptName`='boss_flame_leviathan_overload_device' WHERE `entry`=33143;
-UPDATE `creature_template` SET `ScriptName`='boss_flame_leviathan_defense_cannon' WHERE `entry`=33139;
-UPDATE `creature_template` SET `ScriptName`='npc_colossus' WHERE `entry`=33237;
-UPDATE `creature_template` SET `ScriptName`='npc_pool_of_tar' WHERE `entry`=33090;
-UPDATE `creature_template` SET `ScriptName`='boss_ignis' WHERE `entry`=33118;
-UPDATE `creature_template` SET `ScriptName`='npc_iron_construct' WHERE `entry`=33121;
-UPDATE `creature_template` SET `ScriptName`='npc_scorch_ground' WHERE `entry`=33221;
-UPDATE `creature_template` SET `ScriptName`='boss_razorscale' WHERE `entry`=33186;
-UPDATE `creature_template` SET `ScriptName`='boss_razorscale_controller' WHERE `entry`=33233;
-UPDATE `gameobject_template` SET `ScriptName`='go_razorscale_harpoon' WHERE `entry` IN(194519,194541,194542,194543);
-UPDATE `creature_template` SET `ScriptName`='npc_devouring_flame' WHERE `entry`=34188;
-UPDATE `creature_template` SET `ScriptName`='npc_mole_machine_trigger' WHERE `entry`=33245;
-UPDATE `creature_template` SET `ScriptName`='npc_expedition_commander' WHERE `entry`=33210;
-UPDATE `creature_template` SET `ScriptName`='npc_darkrune_guardian' WHERE `entry`=33388;
-UPDATE `creature_template` SET `ScriptName`='npc_darkrune_sentinel' WHERE `entry`=33846;
-UPDATE `creature_template` SET `ScriptName`='npc_darkrune_watcher' WHERE `entry`=33453;
-UPDATE `creature_template` SET `ScriptName`='boss_xt002' WHERE `entry`=33293;
-UPDATE `creature_template` SET `ScriptName`='mob_xt002_heart' WHERE `entry`=33329;
-UPDATE `creature_template` SET `ScriptName`='mob_scrapbot' WHERE `entry`=33343;
-UPDATE `creature_template` SET `ScriptName`='mob_pummeller' WHERE `entry`=33344;
-UPDATE `creature_template` SET `ScriptName`='mob_boombot' WHERE `entry`=33346;
-UPDATE `creature_template` SET `ScriptName`='mob_void_zone' WHERE `entry`=34001;
-UPDATE `creature_template` SET `ScriptName`='mob_life_spark' WHERE `entry`=34004;
-UPDATE `creature_template` SET `ScriptName`='boss_steelbreaker' WHERE `entry`=32867;
-UPDATE `creature_template` SET `ScriptName`='boss_runemaster_molgeim' WHERE `entry`=32927;
-UPDATE `creature_template` SET `ScriptName`='boss_stormcaller_brundir' WHERE `entry`=32857;
-UPDATE `creature_template` SET `ScriptName`='mob_lightning_elemental' WHERE `entry`=32958;
-UPDATE `creature_template` SET `ScriptName`='mob_rune_of_summoning' WHERE `entry`=33051;
-UPDATE `creature_template` SET `ScriptName`= 'mob_rune_of_power' WHERE entry = 33705;
-UPDATE `creature_template` SET `ScriptName`='boss_kologarn' WHERE `entry`=32930;
-UPDATE `creature_template` SET `ScriptName`='boss_general_vezax' WHERE `entry`=33271;
-UPDATE `creature_template` SET `ScriptName`='npc_saronite_vapors' WHERE `entry`=33488;
-UPDATE `creature_template` SET `ScriptName`='npc_saronite_animus' WHERE `entry`=33524;
-UPDATE `creature_template` SET `ScriptName`='boss_algalon' WHERE `entry`=32871;
-UPDATE `creature_template` SET `ScriptName`='mob_collapsing_star' WHERE `entry`=32955;
-UPDATE `gameobject_template` SET `ScriptName`='ulduar_teleporter' WHERE `entry`=194569;
-UPDATE `creature_template` SET `ScriptName`= 'npc_thorims_hammer' WHERE `entry`=33365;
-UPDATE `creature_template` SET `ScriptName`= 'npc_mimirons_inferno' WHERE `entry`=33370;
-UPDATE `creature_template` SET `ScriptName`= 'npc_hodirs_fury' WHERE `entry`=33212;
-UPDATE `creature_template` SET `ScriptName`= 'npc_freyas_ward' WHERE `entry`=33367;
-UPDATE `creature_template` SET `ScriptName`= 'npc_lorekeeper' WHERE `entry`=33686;
-UPDATE `creature_template` SET `ScriptName`= 'npc_brann_bronzebeard' WHERE `entry`=33579;
-UPDATE `creature_template` SET `ScriptName`= 'npc_freya_ward_summon' WHERE `entry`=34275;
-UPDATE `creature_template` SET `ScriptName`= 'npc_mechanolift' WHERE `entry`=33214;
-UPDATE `gameobject_template` SET `ScriptName`= 'go_ulduar_tower' WHERE `entry`=194375;
-UPDATE `gameobject_template` SET `ScriptName`= 'go_ulduar_tower' WHERE `entry`=194371;
-UPDATE `gameobject_template` SET `ScriptName`= 'go_ulduar_tower' WHERE `entry`=194370;
-UPDATE `gameobject_template` SET `ScriptName`= 'go_ulduar_tower' WHERE `entry`=194377;
-UPDATE `creature_template` SET `ScriptName`='npc_hodir_priest' WHERE `entry` IN (32897,33326,32948,33330);
-UPDATE `creature_template` SET `ScriptName`='npc_hodir_shaman' WHERE `entry` IN (33328,32901,33332,32950);
-UPDATE `creature_template` SET `ScriptName`='npc_hodir_druid' WHERE `entry` IN (33325,32900,32941,33333);
-UPDATE `creature_template` SET `ScriptName`='npc_hodir_mage' WHERE `entry` IN (32893,33327,33331,32946);
-UPDATE `creature_template` SET `ScriptName`='npc_toasty_fire' WHERE `entry`=33342;
-UPDATE `creature_template` SET `ScriptName`='npc_flash_freeze' WHERE `entry`=32926;
-UPDATE `creature_template` SET `ScriptName`='npc_icicle' WHERE `entry` IN (33169,33173);
-UPDATE `creature_template` SET `ScriptName`='npc_snowpacked_icicle' WHERE `entry`=33174;
-UPDATE `creature_template` SET `ScriptName`='npc_ice_block' WHERE `entry`=32938;
-UPDATE `creature_template` SET `ScriptName`='boss_hodir' WHERE `entry`=32845;
-UPDATE `creature_template` SET `ScriptName`='boss_freya' WHERE `entry`=32906;
-UPDATE `creature_template` SET `ScriptName`='boss_elder_brightleaf' WHERE `entry`=32915;
-UPDATE `creature_template` SET `ScriptName`='boss_elder_ironbranch' WHERE `entry`=32913;
-UPDATE `creature_template` SET `ScriptName`='boss_elder_stonebark' WHERE `entry`=32914;
-UPDATE `creature_template` SET `ScriptName`='npc_ancient_conservator' WHERE `entry`=33203;
-UPDATE `creature_template` SET `ScriptName`='npc_snaplasher' WHERE `entry`=32916;
-UPDATE `creature_template` SET `ScriptName`='npc_storm_lasher' WHERE `entry`=32919;
-UPDATE `creature_template` SET `ScriptName`='npc_ancient_water_spirit' WHERE `entry`=33202;
-UPDATE `creature_template` SET `ScriptName`='npc_detonating_lasher' WHERE `entry`=32918;
-UPDATE `creature_template` SET `ScriptName`='npc_sun_beam' WHERE `entry`=33170;
-UPDATE `creature_template` SET `ScriptName`='npc_nature_bomb' WHERE `entry`=34129;
-UPDATE `creature_template` SET `ScriptName`='npc_eonars_gift' WHERE `entry`=33228;
-UPDATE `creature_template` SET `ScriptName`='npc_healthy_spore' WHERE `entry`=33215;
-UPDATE `creature_template` SET `ScriptName`='npc_unstable_sun_beam' WHERE `entry`=33050;
-UPDATE `creature_template` SET `ScriptName`='npc_iron_roots' WHERE `entry` IN (33088,33168);
-UPDATE `creature_template` SET `ScriptName`='npc_feral_defender' WHERE `entry`=34035;
-UPDATE `creature_template` SET `ScriptName`='npc_sanctum_sentry' WHERE `entry`=34014;
-UPDATE `creature_template` SET `ScriptName`='npc_auriaya_seeping_trigger' WHERE `entry` =34098;
-
-
-/* UN'GORO CRATER */
-UPDATE `creature_template` SET `ScriptName`='npc_ame' WHERE `entry`=9623;
-UPDATE `creature_template` SET `ScriptName`='npc_ringo' WHERE `entry`=9999;
-
-/* UNDERCITY */
-UPDATE `creature_template` SET `ScriptName`='npc_lady_sylvanas_windrunner' WHERE `entry`=10181;
-UPDATE `creature_template` SET `ScriptName`='npc_highborne_lamenter' WHERE `entry`=21628;
-UPDATE `creature_template` SET `ScriptName`='npc_parqual_fintallas' WHERE `entry`=4488;
-
-/* UTGARDE KEEP */
-UPDATE `creature_template` SET `scriptname`='boss_keleseth' WHERE `entry`=23953;
-UPDATE `creature_template` SET `scriptname`='mob_frost_tomb' WHERE `entry`=23965;
-UPDATE `instance_template` SET `script`='instance_utgarde_keep' WHERE `map`=574;
-UPDATE `creature_template` SET `ScriptName`='mob_vrykul_skeleton' WHERE `entry`=23970;
-UPDATE `creature_template` SET `ScriptName`='boss_skarvald_the_constructor' WHERE `entry` IN (24200,27390);
-UPDATE `creature_template` SET `ScriptName`='boss_dalronn_the_controller' WHERE `entry` IN (24201,27389);
-UPDATE `creature_template` SET `ScriptName`='boss_ingvar_the_plunderer' WHERE `entry`=23954;
-UPDATE `creature_template` SET `ScriptName`='mob_annhylde_the_caller' WHERE `entry`=24068;
-UPDATE `creature_template` SET `ScriptName`='mob_ingvar_throw_dummy' WHERE `entry`=23997;
-UPDATE `creature_template` SET `ScriptName`='npc_dragonflayer_forge_master' WHERE `entry`=24079;
-
-/* UTGARDE PINNACLE */
-UPDATE `creature_template` SET `ScriptName`='boss_svala_sorrowgrave' WHERE `entry`=26668;
-UPDATE `creature_template` SET `ScriptName`='mob_ritual_channeler' WHERE `entry`=27281;
-UPDATE `creature_template` SET `ScriptName`='boss_svala' WHERE `entry`=29281;
-UPDATE `creature_template` SET `ScriptName`='boss_palehoof' WHERE `entry`=26687;
-UPDATE `creature_template` SET `ScriptName`='mob_palehoof_orb' WHERE `entry`=26688;
-UPDATE `creature_template` SET `ScriptName`='boss_skadi' WHERE `entry`=26693;
-UPDATE `creature_template` SET `ScriptName`='boss_ymiron' WHERE `entry`=26861;
-UPDATE `creature_template` SET `ScriptName`='mob_frenzied_worgen' WHERE `entry`=26683;
-UPDATE `creature_template` SET `ScriptName`='mob_ravenous_furbolg' WHERE `entry`=26684;
-UPDATE `creature_template` SET `ScriptName`='mob_massive_jormungar' WHERE `entry`=26685;
-UPDATE `creature_template` SET `ScriptName`='mob_ferocious_rhino' WHERE `entry`=26686;
-UPDATE `creature_template` SET `ScriptName`='mob_palehoof_orb' WHERE `entry`=26688;
-UPDATE `instance_template` SET `script`='instance_utgarde_pinnacle' WHERE `map`=575;
-UPDATE `gameobject_template` SET `ScriptName`='go_palehoof_sphere'WHERE `entry`=188593;
-
-/* VAULT OF ARCHAVON */
-UPDATE `creature_template` SET `ScriptName`='boss_archavon' WHERE `entry`=31125;
-UPDATE `creature_template` SET `ScriptName`='mob_archavon_warder' WHERE `entry`=32353;
-UPDATE `creature_template` SET `ScriptName`='boss_emalon' WHERE `entry`=33993;
-UPDATE `creature_template` SET `ScriptName`='mob_tempest_minion' WHERE `entry`=33998;
-UPDATE `creature_template` SET `ScriptName`='boss_koralon' WHERE `entry`=35013;
-UPDATE `creature_template` SET `ScriptName`='mob_flame_warder' WHERE `entry`=35143;
-UPDATE `creature_template` SET `ScriptName`='boss_toravon' WHERE `entry`=38433;
-UPDATE `creature_template` SET `ScriptName`='mob_frost_warder' WHERE `entry`=38482;
-UPDATE `creature_template` SET `ScriptName`='mob_frozen_orb_stalker' WHERE `entry`=38461;
-UPDATE `creature_template` SET `ScriptName`='mob_frozen_orb' WHERE `entry`=38456;
-UPDATE `instance_template` SET `script`='instance_archavon' WHERE `map`=624;
-
-/* VIOLET HOLD */
-UPDATE `creature_template` SET `ScriptName`='npc_sinclari_vh' WHERE `entry`=30658;
-UPDATE `creature_template` SET `ScriptName`='npc_teleportation_portal_vh' WHERE `entry`=31011;
-UPDATE `creature_template` SET `ScriptName`='boss_lavanthor' WHERE `entry`=29312;
-UPDATE `creature_template` SET `ScriptName`='boss_ichoron' WHERE `entry`=29313;
-UPDATE `creature_template` SET `ScriptName`='mob_ichor_globule' WHERE `entry`=29321;
-UPDATE `creature_template` SET `ScriptName`='boss_zuramat' WHERE `entry`=29314;
-UPDATE `creature_template` SET `ScriptName`='boss_erekem' WHERE `entry`=29315;
-UPDATE `creature_template` SET `ScriptName`='mob_erekem_guard' WHERE `entry`=29395;
-UPDATE `creature_template` SET `ScriptName`='boss_moragg' WHERE `entry`=29316;
-UPDATE `creature_template` SET `ScriptName`='boss_xevozz' WHERE `entry`=29266;
-UPDATE `creature_template` SET `ScriptName`='mob_ethereal_sphere' WHERE `entry`=29271;
-UPDATE `creature_template` SET `ScriptName`='boss_cyanigosa' WHERE `entry`=31134;
-update `creature_template` SET `scriptname`='mob_azure_invader' WHERE `entry`=30661;
-update `creature_template` SET `scriptname`='mob_azure_spellbreaker' WHERE `entry`=30662;
-update `creature_template` SET `scriptname`='mob_azure_binder' WHERE `entry`=30663;
-update `creature_template` SET `scriptname`='mob_azure_mage_slayer' WHERE `entry`=30664;
-update `creature_template` SET `scriptname`='mob_azure_captain' WHERE `entry`=30666;
-update `creature_template` SET `scriptname`='mob_azure_sorceror' WHERE `entry`=30667;
-update `creature_template` SET `scriptname`='mob_azure_raider' WHERE `entry`=30668;
-update `creature_template` SET `scriptname`='mob_azure_stalker' WHERE `entry`=32191;
-update `creature_template` SET `scriptname`='mob_azure_invader' WHERE `entry`=30961;
-update `creature_template` SET `scriptname`='mob_azure_spellbreaker' WHERE `entry`=30962;
-update `creature_template` SET `scriptname`='mob_azure_binder' WHERE `entry`=30918;
-update `creature_template` SET `scriptname`='mob_azure_mage_slayer' WHERE `entry`=30963;
-UPDATE `creature_template` SET `scriptname`='mob_azure_saboteur' WHERE `entry`=31079;
-UPDATE `instance_template` SET `script`='instance_violet_hold' WHERE `map`=608;
-
-/* WAILING CAVERNS */
-UPDATE `creature_template` SET `ScriptName`='npc_disciple_of_naralex' WHERE entry=3678;
-UPDATE `instance_template` SET `script`='instance_wailing_caverns' WHERE map=43;
-
-/* WESTERN PLAGUELANDS */
-UPDATE `creature_template` SET `ScriptName`='npcs_dithers_and_arbington' WHERE `entry` IN (11056,11057);
-UPDATE `creature_template` SET `ScriptName`='npc_the_scourge_cauldron' WHERE `entry`=11152;
-UPDATE `creature_template` SET `ScriptName`='npc_myranda_the_hag' WHERE `entry`=11872;
-UPDATE `creature_template` SET `ScriptName`='npc_andorhal_tower' WHERE `entry` IN (10902,10903,10904,10905);
-UPDATE `creature_template` SET `ScriptName`='npc_anchorite_truuen' WHERE `entry`=17238;
-
-/* WESTFALL */
-UPDATE `creature_template` SET `ScriptName`='npc_defias_traitor' WHERE `entry`=467;
-UPDATE `creature_template` SET `ScriptName`='npc_daphne_stilwell' WHERE `entry`=6182;
-
-/* WETLANDS */
-UPDATE `creature_template` SET `ScriptName`='npc_tapoke_slim_jahn' WHERE `entry`=4962;
-UPDATE `creature_template` SET `ScriptName`='npc_mikhail' WHERE `entry`=4963;
-
-/* WINTERSPRING */
-UPDATE `creature_template` SET `ScriptName`='npc_lorax' WHERE `entry`=10918;
-UPDATE `creature_template` SET `ScriptName`='npc_rivern_frostwind' WHERE `entry`=10618;
-UPDATE `creature_template` SET `ScriptName`='npc_witch_doctor_mauari' WHERE `entry`=10307;
-
-/* ZANGARMARSH */
-UPDATE `creature_template` SET `ScriptName`='npcs_ashyen_and_keleth' WHERE `entry` IN (17900,17901);
-UPDATE `creature_template` SET `ScriptName`='npc_cooshcoosh' WHERE `entry`=18586;
-UPDATE `creature_template` SET `ScriptName`='npc_elder_kuruti' WHERE `entry`=18197;
-UPDATE `creature_template` SET `ScriptName`='npc_mortog_steamhead' WHERE `entry`=23373;
-UPDATE `creature_template` SET `ScriptName`='npc_kayra_longmane' WHERE `entry`=17969;
-UPDATE `creature_template` SET `ScriptName`='npc_timothy_daniels' WHERE `entry`=18019;
-UPDATE `gameobject_template` SET `ScriptName`='go_southfury_moonstone' WHERE `entry`=185566;
-
-/* ZUL'AMAN */
-UPDATE `instance_template` SET `script`='instance_zulaman' WHERE `map`=568;
-UPDATE `creature_template` SET `ScriptName`='boss_janalai' WHERE `entry`=23578;
-UPDATE `creature_template` SET `ScriptName`='boss_nalorakk' WHERE `entry`=23576;
-UPDATE `creature_template` SET `ScriptName`='mob_janalai_firebomb' WHERE `entry`=23920;
-UPDATE `creature_template` SET `ScriptName`='mob_janalai_hatcher' WHERE `entry`=23818;
-UPDATE `creature_template` SET `ScriptName`='mob_janalai_hatchling' WHERE `entry`=23598;
-UPDATE `creature_template` SET `ScriptName`='mob_janalai_egg' WHERE `entry`=23817;
-UPDATE `creature_template` SET `ScriptName`='npc_forest_frog' WHERE `entry`=24396;
-UPDATE `creature_template` SET `ScriptName`='boss_akilzon' WHERE `entry`=23574;
-UPDATE `creature_template` SET `ScriptName`='mob_akilzon_eagle' WHERE `entry`=24858;
-UPDATE `creature_template` SET `ScriptName`='boss_halazzi' WHERE `entry`=23577;
-UPDATE `creature_template` SET `ScriptName`='mob_halazzi_lynx' WHERE `entry`=24143;
-UPDATE `creature_template` SET `ScriptName`='boss_hexlord_malacrass' WHERE `entry`=24239;
-UPDATE `creature_template` SET `ScriptName`='boss_alyson_antille' WHERE `entry`=24240;
-UPDATE `creature_template` SET `ScriptName`='boss_thurg' WHERE `entry`=24241;
-UPDATE `creature_template` SET `ScriptName`='boss_slither' WHERE `entry`=24242;
-UPDATE `creature_template` SET `ScriptName`='boss_lord_raadan' WHERE `entry`=24243;
-UPDATE `creature_template` SET `ScriptName`='boss_gazakroth' WHERE `entry`=24244;
-UPDATE `creature_template` SET `ScriptName`='boss_fenstalker' WHERE `entry`=24245;
-UPDATE `creature_template` SET `ScriptName`='boss_darkheart' WHERE `entry`=24246;
-UPDATE `creature_template` SET `ScriptName`='boss_koragg' WHERE `entry`=24247;
-UPDATE `creature_template` SET `ScriptName`='boss_zuljin' WHERE `entry`=23863;
-UPDATE `creature_template` SET `ScriptName`='do_nothing' WHERE `entry`=24187;
-UPDATE `creature_template` SET `ScriptName`='mob_zuljin_vortex' WHERE `entry`=24136;
-UPDATE `creature_template` SET `ScriptName`='npc_zulaman_hostage' WHERE `entry` IN (23790,23999,24024,24001);
-UPDATE `creature_template` SET `ScriptName`='mob_mojo' WHERE `entry`=24480;
-
-/* ZUL'DRAK */
-UPDATE `creature_template` SET `ScriptName`='npc_captured_rageclaw' WHERE `entry`=29686;
-UPDATE `creature_template` SET `ScriptName`='npc_drakuru_shackles' WHERE `entry`=29700;
-UPDATE `creature_template` SET `ScriptName`='npc_gymer' WHERE `entry`=29647;
-UPDATE `creature_template` SET `ScriptName`='npc_gurgthock' WHERE `entry`=30007;
-UPDATE `creature_template` SET `ScriptName`='npc_orinoko_tuskbreaker' WHERE `entry`=30020;
-UPDATE `creature_template` SET `ScriptName`='npc_korrak_bloodrager' WHERE `entry`=30023;
-UPDATE `creature_template` SET `ScriptName`='npc_yggdras' WHERE `entry`=30014;
-UPDATE `creature_template` SET `ScriptName`='npc_released_offspring_harkoa' WHERE `entry`=28526;
-UPDATE `creature_template` SET `ScriptName`='npc_stinkbeard' WHERE `entry`=30017;
-UPDATE `creature_template` SET `ScriptName`='npc_crusade_recruit' WHERE `entry`=28090;
-UPDATE `gameobject_template` SET `ScriptName`='go_scourge_enclosure' WHERE `entry`=191548;
-UPDATE `creature_template` SET `ScriptName`='npc_elemental_lord' WHERE `entry` IN (30024,30025,30019,30026);
-UPDATE `creature_template` SET `ScriptName`='npc_fiend_elemental' WHERE `entry` IN (30044,30042,30043,30045);
-
-/* ZUL'FARRAK */
-UPDATE `creature_template` SET `ScriptName`='npc_sergeant_bly' WHERE `entry`=7604;
-UPDATE `creature_template` SET `ScriptName`='npc_weegli_blastfuse' WHERE `entry`=7607;
-UPDATE `gameobject_template` SET `ScriptName`='go_shallow_grave' WHERE `entry` IN (128308,128403);
-INSERT IGNORE INTO `areatrigger_scripts` (`entry`,`ScriptName`) VALUES(962, 'at_zumrah');
-UPDATE `gameobject_template` SET `ScriptName`='go_table_theka' WHERE `entry`=142715;
-UPDATE `gameobject_template` SET `ScriptName`='go_troll_cage' WHERE `entry`>= 141070 AND `entry`< 141075;
-UPDATE `instance_template` SET `script`='instance_zulfarrak' WHERE `map`=209;
-
-/* ZUL'GURUB */
-UPDATE `instance_template` SET `script`='instance_zulgurub' WHERE `map`=309;
-UPDATE `creature_template` SET `ScriptName`='boss_jeklik' WHERE `entry`=14517;
-UPDATE `creature_template` SET `ScriptName`='boss_venoxis' WHERE `entry`=14507;
-UPDATE `creature_template` SET `ScriptName`='boss_marli' WHERE `entry`=14510;
-UPDATE `creature_template` SET `ScriptName`='boss_mandokir' WHERE `entry`=11382;
-UPDATE `creature_template` SET `ScriptName`='boss_gahzranka' WHERE `entry`=15114;
-UPDATE `creature_template` SET `ScriptName`='boss_jindo' WHERE `entry`=11380;
-UPDATE `creature_template` SET `ScriptName`='boss_hakkar' WHERE `entry`=14834;
-UPDATE `creature_template` SET `ScriptName`='boss_thekal' WHERE `entry`=14509;
-UPDATE `creature_template` SET `ScriptName`='boss_arlokk' WHERE `entry`=14515;
-UPDATE `gameobject_template` SET `ScriptName`='go_gong_of_bethekk' WHERE `entry`=180526;
-UPDATE `creature_template` SET `ScriptName`='boss_grilek' WHERE `entry`=15082;
-UPDATE `creature_template` SET `ScriptName`='boss_hazzarah' WHERE `entry`=15083;
-UPDATE `creature_template` SET `ScriptName`='boss_renataki' WHERE `entry`=15084;
-UPDATE `creature_template` SET `ScriptName`='boss_wushoolay' WHERE `entry`=15085;
-UPDATE `creature_template` SET `ScriptName`='mob_zealot_lorkhan' WHERE `entry`=11347;
-UPDATE `creature_template` SET `ScriptName`='mob_zealot_zath' WHERE `entry`=11348;
-UPDATE `creature_template` SET `ScriptName`='mob_healing_ward' WHERE `entry`=14987;
-UPDATE `creature_template` SET `ScriptName`='mob_spawn_of_marli' WHERE `entry`=15041;
-UPDATE `creature_template` SET `ScriptName`='mob_batrider' WHERE `entry`=14965;
-UPDATE `creature_template` SET `ScriptName`='mob_shade_of_jindo' WHERE `entry`=14986;
-UPDATE `creature_template` SET `ScriptName`='mob_ohgan' WHERE `entry`=14988;
-
-DELETE FROM `areatrigger_scripts` WHERE `entry`=3066;
-INSERT INTO `areatrigger_scripts` VALUES
- (3066,'at_ravenholdt');
-
-/* Moved from world_spell_full.sql to here. */
-UPDATE `creature_template` SET `AIName`='TurretAI',`ScriptName`='' WHERE `entry`=33139;
-UPDATE `creature_template` SET `ScriptName`= 'boss_kologarn' WHERE `entry`=32930;
-UPDATE `creature_template` SET `ScriptName`= 'boss_flame_leviathan_safety_container' WHERE `entry`=33218;
-
-/* BATTLEGROUNDS */
-/* TODO */
-
-/* OUTDOOR PVP */
-UPDATE `outdoorpvp_template` SET `ScriptName`='outdoorpvp_hp' WHERE `TypeId`=1;
-UPDATE `outdoorpvp_template` SET `ScriptName`='outdoorpvp_na' WHERE `TypeId`=2;
-UPDATE `outdoorpvp_template` SET `ScriptName`='outdoorpvp_tf' WHERE `TypeId`=3;
-UPDATE `outdoorpvp_template` SET `ScriptName`='outdoorpvp_zm' WHERE `TypeId`=4;
-UPDATE `outdoorpvp_template` SET `ScriptName`='outdoorpvp_si' WHERE `TypeId`=5;
-UPDATE `outdoorpvp_template` SET `ScriptName`='outdoorpvp_ep' WHERE `TypeId`=6;
-
-/* ACHIEVEMENTS */
-DELETE FROM `achievement_criteria_data` WHERE `criteria_id` IN (3693,3804,3805,3806,3807,3808,3809,3810,3811,3812,3813,1234,1239,5605,5606,12778,13036,13035,13037,12977,12967,12986,12982,12993,12780,13012,13011,13013,12062,12063,12064,12065,12183,12068,12060,12061,12822,12996,12972,12989,10062,10063,10054,10055,10046,10047,10048,10049,10050,10051,10044,10045,6446,7625,7628,5541,5542,5543,7573,7574,7265,7549,12971,12978,12979,12980,7598,7587,7264,7548,10068,10069,10173,10306,10451,10462,10447,10448,10449,10459,10460,10461,7316,7317,7318,7583,4240,6803,7319,7577,7320,7590,7361) AND `type` IN (0,11);
-INSERT INTO `achievement_criteria_data` (`criteria_id`,`type`,`value1`,`value2`,`ScriptName`) VALUES
-(3693,11,0,0, 'achievement_storm_glory'),
-(3804,11,0,0, 'achievement_resilient_victory'),
-(3805,11,0,0, 'achievement_resilient_victory'),
-(3806,11,0,0, 'achievement_resilient_victory'),
-(3807,11,0,0, 'achievement_resilient_victory'),
-(3808,11,0,0, 'achievement_resilient_victory'),
-(3809,11,0,0, 'achievement_resilient_victory'),
-(3810,11,0,0, 'achievement_resilient_victory'),
-(3811,11,0,0, 'achievement_resilient_victory'),
-(3812,11,0,0, 'achievement_resilient_victory'),
-(3813,11,0,0, 'achievement_resilient_victory'),
-(1234,11,0,0, 'achievement_bg_control_all_nodes'),
-(1239,11,0,0, 'achievement_bg_control_all_nodes'),
-(5605,11,0,0, 'achievement_save_the_day'),
-(5606,11,0,0, 'achievement_save_the_day'),
-(6800,11,0,0, 'achievement_sickly_gazelle'),
-(7703,11,0,0, 'achievement_wg_didnt_stand_a_chance'),
-(12993,11,0,0, 'achievement_doesnt_go_to_eleven'),
-(12778,11,0,0, 'achievement_ive_gone_and_made_a_mess'),
-(13036,11,0,0, 'achievement_ive_gone_and_made_a_mess'),
-(13035,11,0,0, 'achievement_ive_gone_and_made_a_mess'),
-(13037,11,0,0, 'achievement_ive_gone_and_made_a_mess'),
-(12977,11,0,0, 'achievement_flu_shot_shortage'),
-(12967,11,0,0, 'achievement_flu_shot_shortage'),
-(12986,11,0,0, 'achievement_flu_shot_shortage'),
-(12982,11,0,0, 'achievement_flu_shot_shortage'),
-(12780,11,0,0, 'achievement_once_bitten_twice_shy_n'),
-(13012,11,0,0, 'achievement_once_bitten_twice_shy_n'),
-(13011,11,0,0, 'achievement_once_bitten_twice_shy_v'),
-(13013,11,0,0, 'achievement_once_bitten_twice_shy_v'),
-(12062,11,0,0, 'achievement_bg_control_all_nodes'),
-(12063,11,0,0, 'achievement_bg_control_all_nodes'),
-(12064,11,0,0, 'achievement_bg_control_all_nodes'),
-(12065,11,0,0, 'achievement_bg_control_all_nodes'),
-(12183,11,0,0, 'achievement_bg_ic_glaive_grave'),
-(12068,11,0,0, 'achievement_bg_ic_mowed_down'),
-(12060,11,0,0, 'achievement_bg_ic_resource_glut'),
-(12061,11,0,0, 'achievement_bg_ic_resource_glut'),
-(12822,11,0,0, 'achievement_all_you_can_eat'),
-(12996,11,0,0, 'achievement_all_you_can_eat'),
-(12972,11,0,0, 'achievement_all_you_can_eat'),
-(12989,11,0,0, 'achievement_all_you_can_eat'),
-(10044,11,0,0, 'achievement_unbroken'),
-(10045,11,0,0, 'achievement_unbroken'),
-(10054,11,0,0, 'achievement_shutout'),
-(10055,11,0,0, 'achievement_shutout'),
-(10046,11,0,0, 'achievement_three_car_garage_chopper'),
-(10047,11,0,0, 'achievement_three_car_garage_siege'),
-(10048,11,0,0, 'achievement_three_car_garage_demolisher'),
-(10049,11,0,0, 'achievement_three_car_garage_chopper'),
-(10050,11,0,0, 'achievement_three_car_garage_siege'),
-(10051,11,0,0, 'achievement_three_car_garage_demolisher'),
-(10062,11,0,0, 'achievement_quick_shave'),
-(10063,11,0,0, 'achievement_quick_shave'),
-(7625,11,0,0, 'achievement_bg_sa_artillery'),
-(7628,11,0,0, 'achievement_bg_sa_artillery'),
-(5541,11,0,0,'achievement_arena_2v2_kills'),
-(5542,11,0,0,'achievement_arena_3v3_kills'),
-(5543,11,0,0,'achievement_arena_5v5_kills'),
-(7573,11,0,0,'achievement_denyin_the_scion'),
-(7574,11,0,0,'achievement_denyin_the_scion'),
-(7265,11,0,0,'achievement_momma_said_knock_you_out'),
-(7549,11,0,0,'achievement_momma_said_knock_you_out'),
-(12978,11,0,0,'achievement_portal_jockey'),
-(12979,11,0,0,'achievement_portal_jockey'),
-(12971,11,0,0,'achievement_portal_jockey'),
-(12980,11,0,0,'achievement_portal_jockey'),
-(7598,11,0,0,'achievement_kings_bane'),
-(7587,11,0,0,'achievement_void_dance'),
-(7264,11,0,0,'achievement_safety_dance'),
-(7548,11,0,0,'achievement_safety_dance'),
-(10068,11,0,0,'achievement_ignis_shattered'),
-(10069,11,0,0,'achievement_ignis_shattered'),
-(10173,11,0,0,'achievement_shadowdodger'),
-(10306,11,0,0,'achievement_shadowdodger'),
-(10451,11,0,0,'achievement_smell_saronite'),
-(10462,11,0,0,'achievement_smell_saronite'),
-(10447,11,0,0,'achievement_knock_on_wood'),
-(10448,11,0,0,'achievement_knock_knock_on_wood'),
-(10449,11,0,0,'achievement_knock_knock_knock_on_wood'),
-(10459,11,0,0,'achievement_knock_on_wood'),
-(10460,11,0,0,'achievement_knock_knock_on_wood'),
-(10461,11,0,0,'achievement_knock_knock_knock_on_wood'),
-(10445,11,0,0,'achievement_getting_back_to_nature'),
-(10758,11,0,0,'achievement_getting_back_to_nature'),
-(7317,11,0,0,'achievement_respect_your_elders'),
-(7318,11,0,0,'achievement_king_dred'),
-(7316,11,0,0,'achievement_chaos_theory'),
-(7583,11,0,0,'achievement_share_the_love'),
-(4240,11,0,0,'achievement_watch_him_die'),
-(6803,11,0,0,'achievement_defenseless'),
-(7319,11,0,0,'achievement_less_rabi'),
-(7577,11,0,0,'achievement_split_personality'),
-(7320,11,0,0,'achievement_dehydration'),
-(7590,11,0,0,'achievement_brann_sparklin_news'),
-(7361,11,0,0,'achievement_oh_novos');
-
-/* SPELLS */
-INSERT INTO `spell_script_names` (`spell_id`,`ScriptName`) VALUES
--- generic
-( 66218, 'spell_gen_launch'),
-( 39228, 'spell_gen_absorb0_hitlimit1'),
-( 60218, 'spell_gen_absorb0_hitlimit1'),
-( 6962, 'spell_gen_pet_summoned'),
-( 24750, 'spell_gen_trick'),
-( 24751, 'spell_gen_trick_or_treat'),
-( 29266, 'spell_creature_permanent_feign_death'),
-( 31261, 'spell_creature_permanent_feign_death'),
-( 41337, 'spell_gen_aura_of_anger'),
-( 45472, 'spell_gen_parachute'),
-( 46394, 'spell_gen_burn_brutallus'),
-( 57685, 'spell_creature_permanent_feign_death'),
-( 58601, 'spell_gen_remove_flight_auras'),
-( 58951, 'spell_creature_permanent_feign_death'),
-( 70592, 'spell_creature_permanent_feign_death'),
-( 70628, 'spell_creature_permanent_feign_death'),
-( 74490, 'spell_creature_permanent_feign_death'),
-( 72752, 'spell_pvp_trinket_wotf_shared_cd'),
-( 72757, 'spell_pvp_trinket_wotf_shared_cd'),
-( 46221, 'spell_gen_animal_blood'),
-( 70769, 'spell_gen_divine_storm_cd_reset'),
-( 58630, 'spell_gen_dungeon_credit'),
-( 59046, 'spell_gen_dungeon_credit'),
-( 59450, 'spell_gen_dungeon_credit'),
-( 61863, 'spell_gen_dungeon_credit'),
-( 64899, 'spell_gen_dungeon_credit'),
-( 64985, 'spell_gen_dungeon_credit'),
-( 65074, 'spell_gen_dungeon_credit'),
-( 65195, 'spell_gen_dungeon_credit'),
-( 68184, 'spell_gen_dungeon_credit'),
-( 68572, 'spell_gen_dungeon_credit'),
-( 68574, 'spell_gen_dungeon_credit'),
-( 68663, 'spell_gen_dungeon_credit'),
-( 72706, 'spell_gen_dungeon_credit'),
-( 72830, 'spell_gen_dungeon_credit'),
-( 72959, 'spell_gen_dungeon_credit'),
-( 60893, 'spell_gen_profession_research'),
-( 61177, 'spell_gen_profession_research'),
-( 61288, 'spell_gen_profession_research'),
-( 61756, 'spell_gen_profession_research'),
-( 45785, 'spell_generic_clone'),
-( 49889, 'spell_generic_clone'),
-( 50218, 'spell_generic_clone'),
-( 51719, 'spell_generic_clone'),
-( 57528, 'spell_generic_clone'),
-( 69828, 'spell_generic_clone'),
-( 41055, 'spell_generic_clone_weapon'),
-( 63416, 'spell_generic_clone_weapon'),
-( 69891, 'spell_generic_clone_weapon'),
-( 45206, 'spell_generic_clone_weapon'),
-( 69892, 'spell_generic_clone_weapon'),
-( 57593, 'spell_generic_clone_weapon'),
-( 52408, 'spell_gen_seaforium_blast'),
-( 25281, 'spell_gen_turkey_marker'),
-(-55428, 'spell_gen_lifeblood'),
-( 65917, 'spell_gen_magic_rooster'),
-( 4073, 'spell_gen_allow_cast_from_item_only'),
-( 19804, 'spell_gen_allow_cast_from_item_only'),
-( 12749, 'spell_gen_allow_cast_from_item_only'),
-( 13258, 'spell_gen_allow_cast_from_item_only'),
-( 13166, 'spell_gen_allow_cast_from_item_only'),
- (65266, 'spell_gen_vehicle_scaling'),
- (65635, 'spell_gen_vehicle_scaling'),
- (65636, 'spell_gen_vehicle_scaling'),
- (66666, 'spell_gen_vehicle_scaling'),
- (66667, 'spell_gen_vehicle_scaling'),
- (66668, 'spell_gen_vehicle_scaling'),
--- instances
--- Black Temple
-( 41475, 'spell_boss_lady_malande_shield'),
--- Forge of Souls
-( 68793, 'spell_bronjahm_magic_bane'),
-( 69050, 'spell_bronjahm_magic_bane'),
-( 68861, 'spell_bronjahm_consume_soul'),
-( 69008, 'spell_bronjahm_soulstorm_channel'),
-( 68870, 'spell_bronjahm_soulstorm_visual'),
-( 68921, 'spell_bronjahm_soulstorm_targeting'),
-( 69049, 'spell_bronjahm_soulstorm_targeting'),
--- Pit of Saron
-( 68786, 'spell_garfrost_permafrost'),
-( 70336, 'spell_garfrost_permafrost'),
-( 69012, 'spell_krick_explosive_barrage'),
-( 69263, 'spell_ick_explosive_barrage'),
-( 44851, 'spell_exploding_orb_hasty_grow'),
-( 68987, 'spell_krick_pursuit'),
-( 69029, 'spell_krick_pursuit_confusion'),
-( 70850, 'spell_krick_pursuit_confusion'),
-( 69275, 'spell_tyrannus_mark_of_rimefang'),
-( 69172, 'spell_tyrannus_overlord_brand'),
-( 70292, 'spell_trash_mob_glacial_strike'),
--- Icecrown Citadel
-( 69057, 'spell_marrowgar_bone_spike_graveyard'),
-( 70826, 'spell_marrowgar_bone_spike_graveyard'),
-( 72088, 'spell_marrowgar_bone_spike_graveyard'),
-( 72089, 'spell_marrowgar_bone_spike_graveyard'),
-( 69140, 'spell_marrowgar_coldflame'),
-( 72705, 'spell_marrowgar_coldflame'),
-( 69146, 'spell_marrowgar_coldflame_damage'),
-( 70823, 'spell_marrowgar_coldflame_damage'),
-( 70824, 'spell_marrowgar_coldflame_damage'),
-( 70825, 'spell_marrowgar_coldflame_damage'),
-( 69075, 'spell_marrowgar_bone_storm'),
-( 70834, 'spell_marrowgar_bone_storm'),
-( 70835, 'spell_marrowgar_bone_storm'),
-( 70836, 'spell_marrowgar_bone_storm'),
-( 70842, 'spell_deathwhisper_mana_barrier'),
-( 70903, 'spell_cultist_dark_martyrdom'),
-( 72498, 'spell_cultist_dark_martyrdom'),
-( 72499, 'spell_cultist_dark_martyrdom'),
-( 72500, 'spell_cultist_dark_martyrdom'),
-( 71236, 'spell_cultist_dark_martyrdom'),
-( 72495, 'spell_cultist_dark_martyrdom'),
-( 72496, 'spell_cultist_dark_martyrdom'),
-( 72497, 'spell_cultist_dark_martyrdom'),
-( 72864, 'spell_frost_giant_death_plague'),
-( 72202, 'spell_deathbringer_blood_link'),
-( 72178, 'spell_deathbringer_blood_link_aura'),
-( 72371, 'spell_deathbringer_blood_power'),
-( 72409, 'spell_deathbringer_rune_of_blood'),
-( 72447, 'spell_deathbringer_rune_of_blood'),
-( 72448, 'spell_deathbringer_rune_of_blood'),
-( 72449, 'spell_deathbringer_rune_of_blood'),
-( 72380, 'spell_deathbringer_blood_nova'),
-( 72438, 'spell_deathbringer_blood_nova'),
-( 72439, 'spell_deathbringer_blood_nova'),
-( 72440, 'spell_deathbringer_blood_nova'),
-( 72378, 'spell_deathbringer_blood_nova_targeting'),
-( 73058, 'spell_deathbringer_blood_nova_targeting'),
-( 72385, 'spell_deathbringer_boiling_blood'),
-( 72441, 'spell_deathbringer_boiling_blood'),
-( 72442, 'spell_deathbringer_boiling_blood'),
-( 72443, 'spell_deathbringer_boiling_blood'),
-( 72155, 'spell_icc_harvest_blight_specimen'),
-( 72162, 'spell_icc_harvest_blight_specimen'),
-( 71123, 'spell_stinky_precious_decimate'),
-( 73032, 'spell_festergut_pungent_blight'),
-( 73031, 'spell_festergut_pungent_blight'),
-( 71219, 'spell_festergut_pungent_blight'),
-( 69195, 'spell_festergut_pungent_blight'),
-( 72219, 'spell_festergut_gastric_bloat'),
-( 72551, 'spell_festergut_gastric_bloat'),
-( 72552, 'spell_festergut_gastric_bloat'),
-( 72553, 'spell_festergut_gastric_bloat'),
-( 69290, 'spell_festergut_blighted_spores'),
-( 71222, 'spell_festergut_blighted_spores'),
-( 73033, 'spell_festergut_blighted_spores'),
-( 73034, 'spell_festergut_blighted_spores'),
-( 69782, 'spell_rotface_ooze_flood'),
-( 69796, 'spell_rotface_ooze_flood'),
-( 69798, 'spell_rotface_ooze_flood'),
-( 69801, 'spell_rotface_ooze_flood'),
-( 69538, 'spell_rotface_little_ooze_combine'),
-( 69553, 'spell_rotface_large_ooze_combine'),
-( 69610, 'spell_rotface_large_ooze_buff_combine'),
-( 69839, 'spell_rotface_unstable_ooze_explosion_init'),
-( 69832, 'spell_rotface_unstable_ooze_explosion'),
-( 71441, 'spell_rotface_unstable_ooze_explosion_suicide'),
-( 70701, 'spell_putricide_expunged_gas'),
-( 70343, 'spell_putricide_slime_puddle'),
-( 70351, 'spell_putricide_unstable_experiment'),
-( 71966, 'spell_putricide_unstable_experiment'),
-( 71967, 'spell_putricide_unstable_experiment'),
-( 71968, 'spell_putricide_unstable_experiment'),
-( 71412, 'spell_putricide_ooze_summon'),
-( 71415, 'spell_putricide_ooze_summon'),
-( 70672, 'spell_putricide_gaseous_bloat'),
-( 72455, 'spell_putricide_gaseous_bloat'),
-( 72832, 'spell_putricide_gaseous_bloat'),
-( 72833, 'spell_putricide_gaseous_bloat'),
-( 70447, 'spell_putricide_ooze_channel'),
-( 72836, 'spell_putricide_ooze_channel'),
-( 72837, 'spell_putricide_ooze_channel'),
-( 72838, 'spell_putricide_ooze_channel'),
-( 70672, 'spell_putricide_ooze_channel'),
-( 72455, 'spell_putricide_ooze_channel'),
-( 72832, 'spell_putricide_ooze_channel'),
-( 72833, 'spell_putricide_ooze_channel'),
-( 70459, 'spell_putricide_ooze_eruption_searcher'),
-( 71255, 'spell_putricide_choking_gas_bomb'),
-( 70920, 'spell_putricide_unbound_plague'),
-( 70360, 'spell_putricide_eat_ooze'),
-( 72527, 'spell_putricide_eat_ooze'),
-( 72451, 'spell_putricide_mutated_plague'),
-( 72463, 'spell_putricide_mutated_plague'),
-( 72671, 'spell_putricide_mutated_plague'),
-( 72672, 'spell_putricide_mutated_plague'),
-( 70308, 'spell_putricide_mutation_init'),
-( 70311, 'spell_putricide_mutated_transformation'),
-( 71503, 'spell_putricide_mutated_transformation'),
-( 70405, 'spell_putricide_mutated_transformation_dismiss'),
-( 72508, 'spell_putricide_mutated_transformation_dismiss'),
-( 72509, 'spell_putricide_mutated_transformation_dismiss'),
-( 72510, 'spell_putricide_mutated_transformation_dismiss'),
-( 70402, 'spell_putricide_mutated_transformation_dmg'),
-( 72511, 'spell_putricide_mutated_transformation_dmg'),
-( 72512, 'spell_putricide_mutated_transformation_dmg'),
-( 72513, 'spell_putricide_mutated_transformation_dmg'),
-( 70539, 'spell_putricide_regurgitated_ooze'),
-( 72457, 'spell_putricide_regurgitated_ooze'),
-( 72875, 'spell_putricide_regurgitated_ooze'),
-( 72876, 'spell_putricide_regurgitated_ooze'),
-( 71598, 'spell_creature_permanent_feign_death'),
-( 71806, 'spell_taldaram_glittering_sparks'),
-( 71718, 'spell_taldaram_summon_flame_ball'),
-( 72040, 'spell_taldaram_summon_flame_ball'),
-( 55891, 'spell_taldaram_flame_ball_visual'),
-( 55947, 'spell_taldaram_flame_ball_visual'),
-( 71756, 'spell_taldaram_ball_of_inferno_flame'),
-( 72782, 'spell_taldaram_ball_of_inferno_flame'),
-( 72783, 'spell_taldaram_ball_of_inferno_flame'),
-( 72784, 'spell_taldaram_ball_of_inferno_flame'),
-( 72080, 'spell_valanar_kinetic_bomb'),
-( 72087, 'spell_valanar_kinetic_bomb_knockback'),
-( 72054, 'spell_valanar_kinetic_bomb_absorb'),
-( 73001, 'spell_blood_council_shadow_prison'),
-( 72999, 'spell_blood_council_shadow_prison_damage'),
-( 70877, 'spell_blood_queen_frenzied_bloodthirst'),
-( 71474, 'spell_blood_queen_frenzied_bloodthirst'),
-( 70946, 'spell_blood_queen_vampiric_bite'),
-( 71475, 'spell_blood_queen_vampiric_bite'),
-( 71476, 'spell_blood_queen_vampiric_bite'),
-( 71477, 'spell_blood_queen_vampiric_bite'),
-( 71899, 'spell_blood_queen_bloodbolt'),
-( 71900, 'spell_blood_queen_bloodbolt'),
-( 71901, 'spell_blood_queen_bloodbolt'),
-( 71902, 'spell_blood_queen_bloodbolt'),
-( 71390, 'spell_blood_queen_pact_of_the_darkfallen'),
-( 71340, 'spell_blood_queen_pact_of_the_darkfallen_dmg'),
-( 71341, 'spell_blood_queen_pact_of_the_darkfallen_dmg_target'),
-( 70078, 'spell_svalna_caress_of_death'),
-( 70053, 'spell_svalna_revive_champion'),
-( 71462, 'spell_svalna_remove_spear'),
-( 71085, 'spell_dreamwalker_mana_void'),
-( 70915, 'spell_dreamwalker_decay_periodic_timer'),
-( 70912, 'spell_dreamwalker_decay_periodic_timer'),
-( 70916, 'spell_dreamwalker_decay_periodic_timer'),
-( 70913, 'spell_dreamwalker_decay_periodic_timer'),
-( 70921, 'spell_dreamwalker_summoner'),
-( 70912, 'spell_dreamwalker_summon_suppresser'),
-( 71032, 'spell_dreamwalker_summoner'),
-( 71078, 'spell_dreamwalker_summoner'),
-( 70933, 'spell_dreamwalker_summoner'),
-( 72224, 'spell_dreamwalker_summon_dream_portal'),
-( 72480, 'spell_dreamwalker_summon_nightmare_portal'),
-( 71970, 'spell_dreamwalker_nightmare_cloud'),
-( 72868, 'spell_putricide_slime_puddle_aura'),
-( 72869, 'spell_putricide_slime_puddle_aura'),
-( 71357, 'spell_frostwarden_handler_order_whelp'),
-( 71350, 'spell_frostwarden_handler_focus_fire'),
-( 71376, 'spell_rimefang_icy_blast'),
-( 70598, 'spell_sindragosa_s_fury'),
-( 69762, 'spell_sindragosa_unchained_magic'),
-( 69766, 'spell_sindragosa_instability'),
-( 70126, 'spell_sindragosa_frost_beacon'),
-( 69712, 'spell_sindragosa_ice_tomb'),
-( 69675, 'spell_sindragosa_ice_tomb_dummy'),
-( 70157, 'spell_sindragosa_ice_tomb_trap'),
-( 69845, 'spell_sindragosa_collision_filter'),
-( 71053, 'spell_sindragosa_collision_filter'),
-( 71054, 'spell_sindragosa_collision_filter'),
-( 71055, 'spell_sindragosa_collision_filter'),
-( 70127, 'spell_sindragosa_collision_filter'),
-( 72528, 'spell_sindragosa_collision_filter'),
-( 72529, 'spell_sindragosa_collision_filter'),
-( 72530, 'spell_sindragosa_collision_filter'),
-( 70117, 'spell_sindragosa_collision_filter'),
-( 70117, 'spell_sindragosa_icy_grip'),
--- Isle of Conquest
-( 66630, 'spell_gen_gunship_portal'),
-( 66637, 'spell_gen_gunship_portal'),
-( 66656, 'spell_gen_parachute_ic'),
--- Oculus
-( 50053, 'spell_varos_centrifuge_shield'),
-( 61407, 'spell_varos_energize_core_area_entry'),
-( 62136, 'spell_varos_energize_core_area_entry'),
-( 54069, 'spell_varos_energize_core_area_entry'),
-( 56251, 'spell_varos_energize_core_area_entry'),
-( 50785, 'spell_varos_energize_core_area_enemy'),
-( 59372, 'spell_varos_energize_core_area_enemy'),
-( 51162, 'spell_eregos_planar_shift'),
--- Trial of Crusader
-( 66118, 'spell_gen_leeching_swarm'),
-( 67630, 'spell_gen_leeching_swarm'),
-( 68646, 'spell_gen_leeching_swarm'),
-( 68647, 'spell_gen_leeching_swarm'),
--- Trial of the Champion
-( 66862, 'spell_eadric_radiance'),
-( 67681, 'spell_eadric_radiance'),
--- Ulduar
-( 63308, 'spell_razorscale_devouring_flame'),
-( 62717, 'spell_ignis_slag_pot'),
-( 63477, 'spell_ignis_slag_pot'),
-( 62521, 'spell_attuned_to_nature_dose_reduction'),
-( 62524, 'spell_attuned_to_nature_dose_reduction'),
-( 62525, 'spell_attuned_to_nature_dose_reduction'),
-( 63633, 'spell_ulduar_rubble_summon'),
-( 65594, 'spell_ulduar_cancel_stone_grip'),
-( 62056, 'spell_ulduar_stone_grip'),
-( 63985, 'spell_ulduar_stone_grip'),
-( 64224, 'spell_ulduar_stone_grip_absorb'),
-( 64225, 'spell_ulduar_stone_grip_absorb'),
-( 62166, 'spell_ulduar_stone_grip_cast_target'),
-( 63981, 'spell_ulduar_stone_grip_cast_target'),
-( 64702, 'spell_ulduar_squeezed_lifeless'),
- (63720, 'spell_kologarn_stone_shout'),
- (64004, 'spell_kologarn_stone_shout'),
-( 63027, 'spell_ulduar_proximity_mines'),
-( 63276, 'spell_mark_of_the_faceless'),
-( 63489, 'spell_shield_of_runes'),
-( 62274, 'spell_shield_of_runes'),
-( 63018, 'spell_xt002_searing_light_spawn_life_spark'),
-( 65121, 'spell_xt002_searing_light_spawn_life_spark'),
-( 64234, 'spell_xt002_gravity_bomb_aura'),
-( 63024, 'spell_xt002_gravity_bomb_aura'),
-( 64233, 'spell_xt002_gravity_bomb_damage'),
-( 63025, 'spell_xt002_gravity_bomb_damage'),
-( 62791, 'spell_xt002_heart_overload_periodic'),
-( 62775, 'spell_xt002_tympanic_tantrum'),
-( 37751, 'spell_xt002_submerged'),
-( 37752, 'spell_xt002_stand'),
-( 64381, 'spell_auriaya_strenght_of_the_pack'),
-( 64679, 'spell_auriaya_sentinel_blast'),
-( 64392, 'spell_auriaya_sentinel_blast'),
--- Eye Of Eternity
-( 56105, 'spell_malygos_vortex_dummy'),
-( 55873, 'spell_malygos_vortex_visual'),
--- Zalazane's Fall
-( 75420, 'spell_mount_check'),
-( 75102, 'spell_voljin_war_drums'),
--- Durotar
-( 17009, 'spell_voodoo'),
--- Dustwallow Marsh
-( 42489, 'spell_ooze_zap'),
-( 42485, 'spell_ooze_zap_channel_end'),
-( 42492, 'spell_energize_aoe'),
--- quest
-( 8913, 'spell_q55_sacred_cleansing'),
-( 17271, 'spell_q5206_test_fetid_skull'),
-( 19512, 'spell_q6124_6129_apply_salve'),
-( 34665, 'spell_q10255_administer_antidote'),
-( 43874, 'spell_q11396_11399_force_shield_arcane_purple_x3'),
-( 43882, 'spell_q11396_11399_scourging_crystal_controller_dummy'),
-( 50133, 'spell_q11396_11399_scourging_crystal_controller'),
-( 44936, 'spell_q11515_fel_siphon_dummy'),
-( 45449, 'spell_q11587_arcane_prisoner_rescue'),
-( 46023, 'spell_q11730_ultrasonic_screwdriver'),
-( 49587, 'spell_q12459_seeds_of_natures_wrath'),
-( 51840, 'spell_q12634_despawn_fruit_tosser'),
-( 52308, 'spell_q12683_take_sputum_sample'),
-( 55804, 'spell_q12937_relief_for_the_fallen'),
-( 54798, 'spell_q12851_going_bearback'),
-( 8593, 'spell_symbol_of_life_dummy'),
-( 52090, 'spell_q12659_ahunaes_knife'),
--- item
-( 23074, 'spell_item_arcanite_dragonling'),
-( 8063, 'spell_item_deviate_fish'),
-( 67019, 'spell_item_flask_of_the_north'),
-( 23133, 'spell_item_gnomish_battle_chicken'),
-( 13280, 'spell_item_gnomish_death_ray'),
-( 33060, 'spell_item_make_a_wish'),
-( 23076, 'spell_item_mechanical_dragonling'),
-( 40802, 'spell_item_mingos_fortune_generator'),
-( 23075, 'spell_item_mithril_mechanical_dragonling'),
-( 13120, 'spell_item_net_o_matic'),
-( 16589, 'spell_item_noggenfogger_elixir'),
-( 8213, 'spell_item_savory_deviate_delight'),
-( 14537, 'spell_item_six_demon_bag'),
-( 59640, 'spell_item_underbelly_elixir'),
-( 71905, 'spell_item_shadowmourne'),
-( 67533, 'spell_item_red_rider_air_rifle'),
-( 26678, 'spell_item_create_heart_candy'),
-( 64323, 'spell_item_book_of_glyph_mastery'),
-( 52481, 'spell_item_gift_of_the_harvester'),
-( 45853, 'spell_item_map_of_the_geyser_fields'),
-( 64981, 'spell_item_vanquished_clutches'),
-( 28441, 'spell_item_ashbringer'),
--- warrior
-( 12975, 'spell_warr_last_stand'),
-( 59725, 'spell_warr_improved_spell_reflection'),
--- paladin
-(-31850, 'spell_pal_ardent_defender'),
-( 20425, 'spell_pal_judgement_of_command'),
-( 63521, 'spell_pal_guarded_by_the_light'),
-(-20473, 'spell_pal_holy_shock'),
-( 20911, 'spell_pal_blessing_of_sanctuary'),
-( 25899, 'spell_pal_blessing_of_sanctuary'),
-( 37877, 'spell_pal_blessing_of_faith'),
--- hunter
-( 53209, 'spell_hun_chimera_shot'),
-( 53412, 'spell_hun_invigoration'),
-( 53271, 'spell_hun_masters_call'),
-( 53478, 'spell_hun_last_stand_pet'),
-( 23989, 'spell_hun_readiness'),
-( 37506, 'spell_hun_scatter_shot'),
-(-53302, 'spell_hun_sniper_training'),
-( 55709, 'spell_hun_pet_heart_of_the_phoenix'),
-( 54044, 'spell_hun_pet_carrion_feeder'),
--- rogue
-(-31228, 'spell_rog_cheat_death'),
-(-31130, 'spell_rog_nerves_of_steel'),
-( 5938, 'spell_rog_shiv'),
-( 14185, 'spell_rog_preparation'),
-(-51685, 'spell_rog_prey_on_the_weak'),
-( -2818, 'spell_rog_deadly_poison'),
--- priest
-(-47788, 'spell_pri_guardian_spirit'),
-( -8129, 'spell_pri_mana_burn'),
-( 47948, 'spell_pri_pain_and_suffering_proc'),
-(-47540, 'spell_pri_penance'),
-( -17, 'spell_pri_reflective_shield_trigger'),
-(-49821, 'spell_pri_mind_sear'),
--- death knight
-( 50462, 'spell_dk_anti_magic_shell_raid'),
-( 48707, 'spell_dk_anti_magic_shell_self'),
-( 50461, 'spell_dk_anti_magic_zone'),
-(-49158, 'spell_dk_corpse_explosion'),
-( 50524, 'spell_dk_runic_power_feed'),
-(-55090, 'spell_dk_scourge_strike'),
-(-49145, 'spell_dk_spell_deflection'),
-(-52284, 'spell_dk_will_of_the_necropolis'),
-( 48743, 'spell_dk_death_pact'),
-( 52751, 'spell_dk_death_gate'),
--- shaman
-(-51474, 'spell_sha_astral_shift'),
-( 39610, 'spell_sha_mana_tide_totem'),
-( -1535, 'spell_sha_fire_nova'),
-( 6474, 'spell_sha_earthbind_totem'),
--- mage
-(-11113, 'spell_mage_blast_wave'),
-( 11958, 'spell_mage_cold_snap'),
-( -543, 'spell_mage_frost_warding_trigger'),
-( -6143, 'spell_mage_frost_warding_trigger'),
-( -543, 'spell_mage_incanters_absorbtion_absorb'),
-( -6143, 'spell_mage_incanters_absorbtion_absorb'),
-(-11426, 'spell_mage_incanters_absorbtion_absorb'),
-( -1463, 'spell_mage_incanters_absorbtion_manashield'),
-( 31687, 'spell_mage_summon_water_elemental'),
-( 32826, 'spell_mage_polymorph_visual'),
--- warlock
-( -6201, 'spell_warl_create_healthstone'),
-( 47193, 'spell_warl_demonic_empowerment'),
-( 47422, 'spell_warl_everlasting_affliction'),
-(-27285, 'spell_warl_seed_of_corruption'),
--- druid
-( 54846, 'spell_dru_glyph_of_starfire'),
-( 69366, 'spell_dru_moonkin_form_passive'),
-(-33851, 'spell_dru_primal_tenacity'),
-( 62606, 'spell_dru_savage_defense'),
-( 70691, 'spell_dru_t10_restoration_4p_bonus'),
-(-50294, 'spell_dru_starfall_aoe'),
--- example
-( 66244, 'spell_ex_66244'),
-( 5581, 'spell_ex_5581'),
-( 47299, 'spell_ex_absorb_aura');
-
-/* EOF */