diff options
277 files changed, 2174 insertions, 9188 deletions
diff --git a/sql/TBC-WLK converter/Readme.txt b/sql/TBC-WLK converter/Readme.txt new file mode 100644 index 00000000000..c122795300c --- /dev/null +++ b/sql/TBC-WLK converter/Readme.txt @@ -0,0 +1,8 @@ +Convert DB from 2.4.3 to 3.0.x: + +1. BACKUP your old db! +2. Run TBC-WLK_characters.sql in "characters" database. +3. Run TBC-WLK_world_run_only_once.sql in "world" database. +4. Run TBC-WLK_world.sql in "world" database. + +After that you need to manually apply all sqls starting from 1_world_scripts.sql (in sql/updates)
\ No newline at end of file diff --git a/sql/TBC-WLK converter/TBC-WLK_world.sql b/sql/TBC-WLK converter/TBC-WLK_world.sql index f9c33e45fff..a2e3833c2e4 100644 --- a/sql/TBC-WLK converter/TBC-WLK_world.sql +++ b/sql/TBC-WLK converter/TBC-WLK_world.sql @@ -6,28 +6,24 @@ INSERT INTO `battleground_template` VALUES (11,5,5,10,80,1364,0,1365,0); -- command -DELETE FROM `command` WHERE `name` = 'reload all_locales'; -INSERT INTO `command` VALUES -('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.'); - +DELETE FROM `command` WHERE `name` = 'reload'; DELETE FROM `command` WHERE `name` = 'modify runicpower'; INSERT INTO `command` VALUES ('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.'); - -- string DELETE FROM `trinity_string` WHERE `entry` in (345,346); INSERT INTO `trinity_string` VALUES (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); -DELETE FROM `trinity_string` WHERE entry in (712,717,718,719); +DELETE FROM `trinity_string` WHERE `entry` in (712,717,718,719); INSERT INTO `trinity_string` VALUES (712,'|cffff0000[BG Queue Announcer]:|r %s -- [%u-%u] A: %u/%u, H: %u/%u|r',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); -DELETE FROM `trinity_string` WHERE entry in (720,721,722,723,724,725,726,727,728,729,730,731,732,733,734,735,736); +DELETE FROM `trinity_string` WHERE `entry` in (720,721,722,723,724,725,726,727,728,729,730,731,732,733,734,735,736); INSERT INTO `trinity_string` VALUES (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), @@ -47,7 +43,7 @@ INSERT INTO `trinity_string` VALUES (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); -DELETE FROM `trinity_string` WHERE entry in (1122,1123,1124,1125,1126,1127,1128,1129,1130,1131,1132,1133,1134,1135,1136,1137,1138); +DELETE FROM `trinity_string` WHERE `entry` IN (1122,1123,1124,1125,1126,1127,1128,1129,1130,1131,1132,1133,1134,1135,1136,1137,1138); DELETE FROM `trinity_string` WHERE `entry` IN (173,174); INSERT INTO `trinity_string` VALUES @@ -9104,7 +9100,6 @@ INSERT IGNORE INTO `spell_learn_spell` (`entry`, `SpellID`, `Active`) VALUES -- spell_loot_template -- No data yet - DELETE FROM `item_template` WHERE entry IN (34648,34649,34650,34651,34652,34653,34655,34656,34657,34658,34659,38145,38147,41751); INSERT INTO `item_template` VALUES (34648,4,4,-1,'Acherus Knight\'s Greaves',51496,2,32768,1,51,10,8,-1,-1,60,55,0,0,0,0,0,0,0,0,1,0,3,4,10,7,12,3,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,392,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,1,'',0,0,0,0,0,6,0,0,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,'',0,0,0,0), @@ -9134,4 +9129,8 @@ INSERT INTO `playercreateinfo` VALUES (8 ,6,609,4298,2355.05,-5661.7, 426.026), (10,6,609,4298,2355.84,-5664.77,426.028), (11,6,609,4298,2358.17,-5663.21,426.027); - +DELETE FROM `playercreateinfo` WHERE `race`=7 AND `class` IN (4,8,9); +INSERT INTO `playercreateinfo` VALUES +(7,4,0,1,-6240,331,383), +(7,8,0,1,-6240,331,383), +(7,9,0,1,-6240,331,383);
\ No newline at end of file diff --git a/sql/TBC-WLK converter/readme.txt b/sql/TBC-WLK converter/readme.txt deleted file mode 100644 index 2b44daaf5bb..00000000000 --- a/sql/TBC-WLK converter/readme.txt +++ /dev/null @@ -1,7 +0,0 @@ -convert TBC DB to WLK DB: -1. BACKUP your old db! -2. create a database called "mangos" and run mangos.sql. -3. run TBC-WLK_characters.sql in "characters" database. -4. run TBC-WLK_world.sql in "world" database. - -only to 7133. you need to manually apply mangos sql from 7141
\ No newline at end of file diff --git a/sql/trinityscript_script_texts.sql b/sql/trinityscript_script_texts.sql index 5b1a8d632c1..7cea5a58cbf 100644 --- a/sql/trinityscript_script_texts.sql +++ b/sql/trinityscript_script_texts.sql @@ -26,20 +26,310 @@ INSERT INTO `script_texts` (`entry`,`content_default`,`sound`,`type`,`language`, (-1000104,'%s coming in fast! Prepare to fight!',0,0,7,'defias traitor SAY_AGGRO_1'), (-1000105,'Help!',0,0,7,'defias traitor SAY_AGGRO_2'); +-- 722_world_scripts.sql +INSERT INTO `script_texts` (`entry`,`content_default`,`sound`,`type`,`language`,`comment`) VALUES +(-1000140,'Let\'s go.',0,0,1,'lilatha SAY_START'), +(-1000141,'$N, let\'s use the antechamber to the right.',0,0,1,'lilatha SAY_PROGRESS1'), +(-1000142,'I can see the light at the end of the tunnel!',0,0,1,'lilatha SAY_PROGRESS2'), +(-1000143,'There\'s Farstrider Enclave now, $C. Not far to go... Look out! Troll ambush!!',0,0,1,'lilatha SAY_PROGRESS3'), +(-1000144,'Thank you for saving my life and bringing me back to safety, $N',0,0,1,'lilatha SAY_END1'), +(-1000145,'Captain Helios, I\'ve been rescued from the Amani Catacombs. Reporting for duty, sir!',0,0,1,'lilatha SAY_END2'), +(-1000146,'Liatha, get someone to look at those injuries. Thank you for bringing her back safely.',0,0,1,'lilatha CAPTAIN_ANSWER'); + +-- 773_world_scripts.sql +INSERT INTO script_texts (`entry`, `content_default`, `content_loc1`, `content_loc2`, `content_loc3`, `content_loc4`, `content_loc5`, `content_loc6`, `content_loc7`, `content_loc8`, `sound`, `type`, `language`, `comment`) VALUES +(-1000147, 'Lets go $N. I am ready to start to Whitereach Post.', NULL, NULL, 'Gehen wir $N.Ich bin bereit,mich zum Weissgipfelposten aufzumachen.', NULL, NULL, NULL, NULL, NULL, 0, 0, 0, NULL), +(-1000148, 'This seems to me trusted. If we move to the east, we are probably... Aah! Wyvern attack !', NULL, NULL, 'Das kommt mir vertraut vor.Wenn wir nach Osten ziehen,können wir wahrscheinlich...Aah!Flügeldrachen im Angriff!', NULL, NULL, NULL, NULL, NULL, 0, 0, 0, NULL), +(-1000149, 'Thanks so much... From here I find the way back to the Whitereach Post. Speak with Motega Firemane, maybe you can persuade him to send me home.', NULL, NULL, 'Tausend Dank...Von hier aus finde ich den Rückweg zum Weissgipfelposten.Sprecht unbedingt mit Motega Feuermähne,vielleicht könnt ihr ihn überreden,mich nach Hause zu schicken.', NULL, NULL, NULL, NULL, NULL, 0, 0, 0, NULL); + +-- 765_world_scripts.sql +INSERT INTO `script_texts` (`entry`, `content_default`, `content_loc2`, `type`, `language`, `comment`) VALUES +(-1000150, 'Greetings, $N. I will guide you through the cavern. Please try and keep up.', 'Salutations, $N. Je vais vous guider a` travers cette grotte. Veuillez me suivre.', 4, 0, 'WHISPER_CUSTODIAN_1'), +(-1000151, '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.', 'Nous ne savons pas si les Grottes du Temps ont toujours été accessibles aux mortels. Vraiment, c\'est impossible a` dire étant donné que l\'Intemporel est en mouvement perpétuel, changeant nos spirales temporelles comme bon lui semble. Ce que vous voyez aujourd\'hui peut tre`s bien ne plus exister demain. Vous pourriez vous réveiller sans aucun souvenir de cet endroit.', 4, 0, 'WHISPER_CUSTODIAN_2'), +(-1000152, '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.', 'C\'est étrange, je sais... La plupart des mortels ne peuvent pas réellement comprendre ce qu\ils voient ici, comme souvent, ce qu\'ils voient n\'est pas ancré dans leur propre perception de la réalité.', 4, 0, 'WHISPER_CUSTODIAN_3'), +(-1000153, 'Follow me, please.', 'Veuillez me suivre.', 4, 0, 'WHISPER_CUSTODIAN_4'), +(-1000154, '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.', 'Il n\'y a que deux vérités qui peuvent e^tre trouvées ici : premie`rement, ce temps est chaotique, toujours en mouvement, et comple`tement malléable, et ensuite, la perception ne détermine pas la réalité.', 4, 0, 'WHISPER_CUSTODIAN_5'), +(-1000155, '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.', 'En tant que protecteurs du temps, nous observons et veillons sur le royaume de Nozdormu. Le maître est absent en ce moment, ce qui signifie que des tentatives sont faites pour altérer fortement le temps. Le maître ne se me^le jamais des affaires des mortels mais il corrige les altérations faites au temps par d\'autres. Il est réactionnaire a` cet égard.', 4, 0, 'WHISPER_CUSTODIAN_6'), +(-1000156, '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.', 'Pour le maintien normal du temps, les Gardiens du temps suffisent a` la tâche. Nous sommes capables de gérer les perturbations les plus ordinaires. Je parle de petites choses, comme des mages voleurs qui changent quelque chose dans le passé pour élever leur statut ou leur richesse dans le présent.', 4, 0, 'WHISPER_CUSTODIAN_7'), +(-1000157, '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...', 'Ces tunnels que vous voyez sont appelés Voies Temporelles. Leur nombre est infini. Ceux qui existent actuellement dans votre réalité sont ceux que le maître a considérés comme \'points sensibles\'. Ces points sensibles peuvent différer comple`tement de part leur the`me, mais partagent toujours une cause. C\'est-a`-dire, leur existence est le résultat des me^mes perturbations temporelles. Rappelez-vous en si vous osez vous aventurer dans l\'un d\'eux...', 4, 0, 'WHISPER_CUSTODIAN_8'), +(-1000158, '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.', 'Cette voie temporelle est en grand désarroi ! Nous avons actuellement des agents a` l\intérieur qui tentent de restaurer l\'ordre. Les informations que j\'ai indiquent que la liberté de Thrall est en péril. Une organisation malveillante connue sous le nom de Vol du Dragon Infini essaye d\'empe^cher son évasion. J\'ai peur que sans assistance extérieure, tout soit perdu.', 4, 0, 'WHISPER_CUSTODIAN_9'), +(-1000159, '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...', 'Nous avons tre`s peu d\'informations sur cette voie. Sa\'at a été envoyé et est actuellement sur place. Les données que nous avons recueillies de sa correspondance est que le Vol du Dragon Infini tente une fois de plus d\'altérer le temps. Se pourrait-il que l\'ouverture de la Porte des Téne`bres soit la cible d\'un sabotage. Espérons que non...', 4, 0, 'WHISPER_CUSTODIAN_10'), +(-1000160, 'This timeway is currently collapsing. What that may hold for the past, present and future is currently unknown...', 'Cette voie est en train de s\'effondrer. Ce qu\'elle peut avoir contenu dans le passé, le présent et le futur nous est actuellement inconnu...', 4, 0, 'WHISPER_CUSTODIAN_11'), +(-1000161, '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.', 'Les voies sont pour le moment classées de la moins catastrophique a` la plus catastrophique, ce qui veut dire que la moindre de celles-ci qui s\'effondre signifierait la fin de votre monde. Nous les classons seulement de cette façon pour que les héros et aventuriers qui y sont envoyés sachent quelle voie est la plus adaptée a` leurs compétences.', 4, 0, 'WHISPER_CUSTODIAN_12'), +(-1000162, '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.', 'Tout ce que nous savons sur cette voie temporelle est qu\'elle me`ne au Mont Hyjal. Le Vol du Dragon Infini s\'est donné beaucoup de peine pour empe^cher notre participation. Soridormi est actuellement en train de tenter de briser les défenses de cette voie, mais ses efforts ont été vain jusqu\'ici. Vous pourriez e^tre notre seul espoir de les briser et de résoudre le conflit.', 4, 0, 'WHISPER_CUSTODIAN_13'), +(-1000163, 'Our time is at an end $N. I would wish you luck, if such a thing existed.', 'Notre entretien touche a` sa fin, $N. Je vous souhaite bonne chance, si tant est qu\'une telle chose a jamais existé.', 4, 0, 'WHISPER_CUSTODIAN_14'); + +-- 817_world_scripts.sql +INSERT INTO script_texts (`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 +(-1000200, 'A-Me good.Good A-me.Follow...A-ME follow.Home.A-ME go home.', NULL, NULL, 'A-ME gut.Gut A-Me.Folgen...Heim.A-ME geht heim.', NULL, NULL, NULL, NULL, NULL, 0, 0, 0, 0, NULL), +(-1000201, 'Bad Un´Goro Stomper.Stomper evil.', NULL, NULL, 'Böser Stampfer von Un´Goro. Stampfer von Un´Goro böse.', NULL, NULL, NULL, NULL, NULL, 0, 0, 0, 0, NULL), +(-1000202, 'Good..good,A-ME. Home. Search way.', NULL, NULL, 'Gut...gut.A-ME.A-ME gut.Heim.Heim suchen.', NULL, NULL, NULL, NULL, NULL, 0, 0, 0, 0, NULL), +(-1000203, 'A-Me home.A-ME go home!Tar Lord dont disturb A-ME.', NULL, NULL, 'A-ME daheim.A-ME geht heim!Teerfürst A-ME nicht aufhalten.', NULL, NULL, NULL, NULL, NULL, 0, 0, 0, 0, NULL), +(-1000204, 'Tar Lord A-ME no hurt.A-ME good.', NULL, NULL, 'Teerfürst A-ME nicht wehtun.A-ME gut.', NULL, NULL, NULL, NULL, NULL, 0, 0, 0, 0, NULL), +(-1000205, 'A-ME at home!A-ME good!Good A-ME.At home.Home.Home', NULL, NULL, 'A-ME daheim!A-ME gut!Gute A-ME.Daheim.Daheim.Daheim', NULL, NULL, NULL, NULL, NULL, 0, 0, 0, 0, NULL); + +-- 945_world_scripts.sql +INSERT INTO script_texts (entry, content_default, type, emote, comment) VALUES +(-1000206, 'Come, $N. Lord Stormrage awaits.', 0, 1, 'OVERLORD_SAY_1'), +(-1000207, 'Lord Illidan will be here shortly.', 0, 1, 'OVERLORD_SAY_2'), +(-1000208, 'Lord Illidan, this is the Dragonmaw that I, and others, have told you about. He will lead us to victory!', 0, 1, 'OVERLORD_SAY_3'), +(-1000209, 'But... My lord, I do not understand. $N... He is the orc that has...', 0, 1, 'OVERLORD_SAY_4'), +(-1000210, 'It will be done, my lord.', 0, 1, 'OVERLORD_SAY_5'), +(-1000211, '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.', 0, 25, 'OVERLORD_SAY_6'), +(-1000212, '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!', 1, 22, 'OVERLORD_YELL_1'), +(-1000213, 'All hail Lord Illidan!', 1, 66, 'OVERLORD_YELL_2'), +(-1000214, 'What is the meaning of this, Mor\'ghor?', 0, 1, 'LORD_ILLIDAN_SAY_1'), +(-1000215, 'SILENCE!', 0, 22, 'LORD_ILLIDAN_SAY_2'), +(-1000216, 'Blathering idiot. You incomprehensibly incompetent buffoon...', 0, 1, 'LORD_ILLIDAN_SAY_3'), +(-1000217, 'THIS is your hero?', 0, 6, 'LORD_ILLIDAN_SAY_4'), +(-1000218, 'You have been deceived, imbecile.', 0, 1, 'LORD_ILLIDAN_SAY_5'), +(-1000219, 'This... whole... operation... HAS BEEN COMPROMISED!', 0, 22, 'LORD_ILLIDAN_SAY_6'), +(-1000220, '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.', 0, 1, 'LORD_ILLIDAN_SAY_7'), +(-1000221, 'You will not harm the boy, Mor\'ghor! Quickly, $N, climb on my back!', 0, 22, 'YARZILL_THE_MERC_SAY'); + +DELETE FROM script_texts WHERE entry='-1000222'; +INSERT INTO script_texts (entry, content_default, type, language, emote, comment) VALUES +(-1000222, 'Thank you, mortal.', 0, 11, 1, 'SAY_JUST_EATEN'); + +DELETE FROM script_texts WHERE entry BETWEEN -1000234 and -1000223; +INSERT INTO script_texts (entry, content_default, emote, comment) VALUES +(-1000223, 'I sense the tortured spirits, $N. They are this way, come quickly!', 1, 'SAY_START'), +(-1000224, 'Watch out!', 0, 'SAY_AGGRO1'), +(-1000225, 'Naga attackers! Defend yourself!', 0, 'SAY_AGGRO2'), +(-1000226, 'Kill them all!', 0, 'ASSASSIN_SAY_AGGRO1'), +(-1000227, 'You will never essscape Coilssskarrr...', 0, 'ASSASSIN_SAY_AGGRO2'), +(-1000228, 'Grant me protection $N, i must break trough their foul magic!', 0, 'SAY_PROGRESS1'), +(-1000229, '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.', 0, 'SAY_PROGRESS2'), +(-1000230, 'Now we must find the exit.', 0, 'SAY_PROGRESS3'), +(-1000231, 'Lady Vashj must answer for these atrocities. She must be brought to justice!', 0, 'SAY_PROGRESS4'), +(-1000232, 'The tumultuous nature of the great waterways of Azeroth and Draenor are a direct result of tormented water spirits.', 0, 'SAY_PROGRESS5'), +(-1000233, 'It shouldn\'t be much further, $N. The exit is just up ahead.', 0, 'SAY_PROGRESS6'), +(-1000234, '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...', 0, 'SAY_END'); + +-- 947_world_scripts.sql +INSERT INTO script_texts (entry, content_default, type, emote, comment) VALUES +(-1000235, 'Ok, $N. Follow me to the cave where I\'ll attempt to harness the power of the rune stone into these goggles.', 0, 1, 'phizzlethorpe - SAY_PROGRESS_1'), +(-1000236, 'I discovered this cave on our first day here. I believe the energy in the stone can be used to our advantage.', 0, 1, 'phizzlethorpe - SAY_PROGRESS_2'), +(-1000237, 'I\'ll begin drawing energy from the stone. Your job, $N, is to defend me. This place is cursed... trust me.', 0, 1, 'phizzlethorpe - SAY_PROGRESS_3'), +(-1000238, 'begins tinkering with the goggles before the stone.', 2, 0, 'phizzlethorpe - EMOTE_PROGRESS_4'), +(-1000239, 'Help!!! Get these things off me so I can get my work done!', 0, 0, 'SAY_AGGRO'), +(-1000240, 'Almost done! Just a little longer!', 0, 1, 'phizzlethorpe - SAY_PROGRESS_5'), +(-1000241, 'I\'ve done it! I have harnessed the power of the stone into the goggles! Let\'s get out of here!', 0, 1, 'phizzlethorpe - SAY_PROGRESS_6'), +(-1000242, 'Phew! Glad to be back from that creepy cave.', 0, 1, 'phizzlethorpe - SAY_PROGRESS_7'), +(-1000243, 'hands one glowing goggles over to Doctor Draxlegauge.', 2, 0, 'phizzlethorpe - EMOTE_PROGRESS_8'), +(-1000244, 'Doctor Draxlegauge will give you further instructions, $N. Many thanks for your help!', 0, 1, 'phizzlethorpe - SAY_PROGRESS_9'); + +-- 948_world_scripts.sql +INSERT INTO script_texts (entry, content_default, type, comment) VALUES +(-1000245, 'You, there! Hand over that moonstone and nobody gets hurt!', 1, 'SAY_RIZZLE_START'), +(-1000246, 'Just chill!', 4, 'SAY_RIZZLE_GRENADE'), +(-1000247, 'All right, you win! I surrender! Just don\'t hurt me!', 1, 'SAY_RIZZLE_FINAL'); + +-- 950_world_scripts.sql +INSERT INTO script_texts (entry, content_default, type, emote, comment) VALUES +(-1000248, '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!', 0, 0, 'draenei survivor - HEAL1'), +(-1000249, '$C, Where am I? Who are you? Oh no! What happened to the ship?.', 0, 0, 'draenei survivor - HEAL2'), +(-1000250, '$C You saved me! I owe you a debt that I can never repay. I\'ll go see if I can help the others.', 0, 0, 'draenei survivor - HEAL3'), +(-1000251, 'Ugh... what is this place? Is that all that\'s left of the ship over there?', 0, 0, 'draenei survivor - HEAL4'), +(-1000252, 'Oh, the pain...', 0, 0, 'draenei survivor - HELP1'), +(-1000253, 'Everything hurts, Please make it stop...', 0, 0, 'draenei survivor - HELP2'), +(-1000254, 'Ughhh... I hurt. Can you help me?', 0, 0, 'draenei survivor - HELP3'), +(-1000255, 'I don\'t know if I can make it, please help me...', 0, 0, 'draenei survivor - HELP4'), + +(-1000256, 'Yes Master, all goes along as planned.', 0, 1, 'overgrind - SAY_TEXT'), +(-1000257, 'puts the shell to his ear.', 2, 0, 'overgrind - SAY_EMOTE'), +(-1000258, 'Now I cut you!', 1, 0, 'overgrind - YELL_ATTACK'), + +(-1000259, 'What\'s the big idea, Spark?', 0, 0, 'geezle - GEEZLE_SAY_1'), +(-1000260, '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.', 0, 0, 'geezle - SPARK_SAY_2'), +(-1000261, '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.', 0, 0, 'geezle - SPARK_SAY_3'), +(-1000262, '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.', 0, 0, 'geezle - GEEZLE_SAY_4'), +(-1000263, 'Relax? Do you know what Kael\'thas does to those that fail him, Geezle? Eternal suffering and pain... Do NOT screw this up, fool.', 0, 0, 'geezle - SPARK_SAY_5'), +(-1000264, '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...', 0, 0, 'geezle - SPARK_SAY_6'), +(-1000265, 'Yes, sir. It won\'t happen again...', 0, 0, 'geezle - GEEZLE_SAY_7'), +(-1000266, 'picks up the naga flag.', 2, 0, 'geezle - EMOTE_SPARK'); + +-- 951_world_scripts.sql +INSERT INTO script_texts (entry, content_default, type, comment) VALUES +(-1000267, 'Ready when you are, warrior.', 1, 'flathead - SAY_BIG_WILL_READY'), +(-1000268, 'The Affray has begun, get ready to fight!', 1, 'flathead - SAY_TWIGGY_FLATHEAD_BEGIN'), +(-1000269, 'You! Enter the fray!', 1, 'flathead - SAY_TWIGGY_FLATHEAD_FRAY'), +(-1000270, 'Challenger is down!', 1, 'flathead - SAY_TWIGGY_FLATHEAD_DOWN'), +(-1000271, 'The Affray is over.', 1, 'flathead - SAY_TWIGGY_FLATHEAD_OVER'), + +(-1000272, 'Alright, alright I think I can figure out how to operate this thing...', 0, 'shredder - SAY_PROGRESS_1'), +(-1000273, 'Arrrgh! This isn\'t right!', 0, 'shredder - SAY_PROGRESS_2'), +(-1000274, 'Okay, I think I\'ve got it, now. Follow me, $N!', 0, 'shredder - SAY_PROGRESS_3'), +(-1000275, 'There\'s the stolen shredder! Stop it or Lugwizzle will have our hides!', 1, 'shredder - SAY_MERCENARY_4'), +(-1000276, 'Looks like we\'re out of woods, eh? Wonder what this does...', 0, 'shredder - SAY_PROGRESS_5'), +(-1000277, 'Come on, don\'t break down on me now!', 0, 'shredder - SAY_PROGRESS_6'), +(-1000278, 'That was a close one! Well, let\'s get going, it\'s still a ways to Ratchet!', 0, 'shredder - SAY_PROGRESS_7'), +(-1000279, 'Hmm... I don\'t think this blinking red light is a good thing...', 0, 'shredder - SAY_PROGRESS_8'); + +-- 952_world_scripts.sql +INSERT INTO script_texts (entry, content_default, type, language, comment) VALUES +(-1000280, 'Thank you, dear Paladin, you just saved my life.', 0, 7, 'faulk - SAY_HEAL'), + +(-1000281, 'Very well. Let\'s see what you have to show me, $N.', 0, 0, 'anvilvard - SAY_PR_1'), +(-1000282, 'What manner of trick is this, $R? If you seek to ambush me, I warn you I will not go down quietly!', 0, 0, 'anvilvard - SAY_PR_2'), +(-1000283, 'releases the last of its energies into the nerarby runestone, succesfully reactivating it.', 2, 0, 'crystal - EMOTE'), + +(-1000284, 'Deployment sucessful. Trespassers will be neutralized.', 0, 0, 'sentry - SAY_CONVERTED_1'), +(-1000285, 'Objective acquired. Initiating security routines.', 0, 0, 'sentry - SAY_CONVERTED_1'); + +-- 953_world_scripts.sql +INSERT INTO script_texts (entry, content_default, type, emote, comment) VALUES +(-1000286, 'A shadowy, sinister presence has invader 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.', 0, 0, 'clintar_spirit'), +(-1000287, 'The Emerald Dream will never be yours!', 0, 0, 'clintar_spirit'), +(-1000288, 'Begone from this place!', 0, 0, 'clintar_spirit'), +(-1000289, 'That\'s the first relic, but there are still two more. Follow me, $N.', 0, 0, 'clintar_spirit'), +(-1000290, 'I\'ve recovered the second relic. Take a moment to rest, and then we\'ll continue to the last reliquary.', 0, 0, 'clintar_spirit'), +(-1000291, '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.', 0, 0, 'clintar_spirit'), +(-1000292, '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!', 0, 0, 'clintar_spirit'); + +-- 954_world_scripts.sql +INSERT INTO script_texts (entry, content_default, type, comment) VALUES +(-1000293, 'In Nagrand, food hunt ogre!', 0, 'LUMP_SAY0'), +(-1000294, 'You taste good with maybe a little salt and pepper.', 0, 'LUMP_SAY1'), +(-1000295, 'OK, OK! Lump give up!', 0, 'LUMP_DEFEAT'), + +(-1000296, 'Warning! Emergency shutdown process initiated by $N. Shutdown will complete in two minutes.', 2, 'npc_manaforge_control_console - EMOTE_START'), +(-1000297, 'Emergency shutdown will complete in one minute.', 2, 'npc_manaforge_control_console - EMOTE_60'), +(-1000298, 'Emergency shutdown will complete in thirty seconds.', 2, 'npc_manaforge_control_console - EMOTE_30'), +(-1000299, 'Emergency shutdown will complete in ten seconds.', 2, 'npc_manaforge_control_console - EMOTE_10'), +(-1000300, 'Emergency shutdown complete.', 2, 'npc_manaforge_control_console - EMOTE_COMPLETE'), +(-1000301, 'Emergency shutdown aborted.', 2, 'npc_manaforge_control_console - EMOTE_ABORT'), + +(-1000302, '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.', 4, 'npc_professor_dabiri - WHISPER_DABIRI'), + +(-1000303, 'is very weak', 2, 'mob_phase_hunter - EMOTE_WEAK'), + +(-1000304, 'Bessy, is that you?', 0, 'npc_bessy- SAY_THADELL_1'), +(-1000305, 'Thank you for bringing back my Bessy, $N. I couldn\'t live without her!', 0, 'npc_bessy- SAY_THADELL_2'); + +-- 955_world_scripts.sql +INSERT INTO script_texts (entry, content_default, type, comment) VALUES +(-1000306, 'Follow me, stranger. This won\'t take long.', 0, 'npc_kservant - SAY1'), +(-1000307, 'Shattrath was once the draenei capital of this world. Its name means \"dwelling of light.\"', 4, 'npc_kservant - WHISP1'), +(-1000308, '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.', 4, 'npc_kservant - WHISP2'), +(-1000309, 'The city was left in ruins and darkness... until the Sha\'tar arrived.', 4, 'npc_kservant - WHISP3'), +(-1000310, '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.', 4, 'npc_kservant - WHISP4'), +(-1000311, 'The Sha\'tar, or \"born from light\" are the naaru that came to Outland to fight the demons of the Burning Legion.', 4, 'npc_kservant - WHISP5'), +(-1000312, '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.', 4, 'npc_kservant - WHISP6'), +(-1000313, '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.', 4, 'npc_kservant - WHISP7'), +(-1000314, '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.', 4, 'npc_kservant - WHISP8'), +(-1000315, '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.', 4, 'npc_kservant - WHISP9'), +(-1000316, '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.', 4, 'npc_kservant - WHISP10'), +(-1000317, '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.\"', 4, 'npc_kservant - WHISP11'), +(-1000318, '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.', 4, 'npc_kservant - WHISP12'), +(-1000319, '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.', 4, 'npc_kservant - WHISP13'), +(-1000320, '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.', 4, 'npc_kservant - WHISP14'), +(-1000321, '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.', 4, 'npc_kservant - WHISP15'), +(-1000322, '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.', 4, 'npc_kservant - WHISP16'), +(-1000323, '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.', 4, 'npc_kservant - WHISP17'), +(-1000324, '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.', 4, 'npc_kservant - WHISP18'), +(-1000325, '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.', 4, 'npc_kservant - WHISP19'), +(-1000326, '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.', 4, 'npc_kservant - WHISP20'), +(-1000327, 'Good luck stranger, and welcome to Shattrath City.', 4, 'npc_kservant - WHISP21'), +(-1000328, 'Time to teach you a lesson in manners, little boy!', 0, ''), +(-1000329, 'Now I\'m gonna give you to the count of \'3\' to get out of here before I sick the dogs on you.', 0, ''), +(-1000330, '1...', 0, ''), +(-1000331, '2...', 0, ''), +(-1000332, 'Time to meet your maker!', 0, ''), +(-1000333, 'Alright, we give up! Don\'t hurt us!', 0, ''); + +DELETE FROM script_texts WHERE entry=-1000334; +INSERT INTO script_texts (entry, content_default, type, language, comment) VALUES +(-1000334, 'Thank you, dear Paladin, you just saved my life.', 0, 10, 'stillblade - SAY_HEAL'); + +DELETE FROM script_texts WHERE entry BETWEEN -1000349 and -1000335; +INSERT INTO script_texts (entry, content_default, type, comment) VALUES +(-1000335, 'Let\'s get to the others, and keep an eye open for those wolves cutside...', 0, 'npc_deathstalker_erland +- SAY_QUESTACCEPT'), +(-1000336, 'Be careful, $N. Those wolves like to hide among the trees.', 0, 'npc_deathstalker_erland - SAY_START'), +(-1000337, 'A $C attacks!', 0, 'npc_deathstalker_erland - SAY_AGGRO_1'), +(-1000338, 'Beware! I am under attack!', 0, 'npc_deathstalker_erland - SAY_AGGRO_2'), +(-1000339, 'We\'re almost there!', 0, 'npc_deathstalker_erland - SAY_LAST'), +(-1000340, 'We made it! Thanks, $N. I couldn\'t have gotten without you.', 0, 'npc_deathstalker_erland - SAY_THANKS'), +(-1000341, 'It\'s good to see you again, Erland. What is your report?', 0, 'npc_deathstalker_erland - SAY_RANE'), +(-1000342, 'Masses of wolves are to the east, and whoever lived at Malden\'s Orchard is gone.', 0, 'npc_deathstalker_erland - SAY_ANSWER'), +(-1000343, 'If I am excused, then I\'d like to check on Quinn...', 0, 'npc_deathstalker_erland - SAY_MOVE_QUINN'), +(-1000344, 'Hello, Quinn. How are you faring?', 0, 'npc_deathstalker_erland - SAY_GREETINGS'), +(-1000345, 'I\'ve been better. Ivar the Foul got the better of me...', 0, 'npc_deathstalker_erland - SAY_QUINN'), +(-1000346, 'Try to take better care of yourself, Quinn. You were lucky this time.', 0, 'npc_deathstalker_erland - SAY_ON_BYE'), +(-1000347, 'Let\'s go before they find out I\'m free!', 0, 'npc_kaya_flathoof - SAY_START'), +(-1000348, 'Look out! We\'re under attack!', 0, 'npc_kaya_flathoof - SAY_AMBUSH'), +(-1000349, 'Thank you for helping me. I know my way back from here.', 0, 'npc_kaya_flathoof - SAY_END'); + +-- 956_world_scripts.sql +INSERT INTO script_texts (entry, content_default, type, comment) VALUES +(-1000350, 'Who dares awaken Aquementas?', 1, 'mob_aquementas - AGGRO_YELL_AQUE'), +(-1000351, 'I give up! Please don\'t kill me!', 0, 'mob_unkor_the_ruthless - SAY_SUBMIT'), +(-1000352, 'I choose the third option: KILLING YOU!', 0, 'npc_floon - SAY_FLOON_ATTACK'), +(-1000353, 'Ok let\'s get out of here!', 0, 'npc_isla_starmane - SAY_PROGRESS_1'), +(-1000354, 'You sure you\'re ready? Take a moment.', 0, 'npc_isla_starmane - SAY_PROGRESS_2'), +(-1000355, 'Alright, let\'s do this!', 0, 'npc_isla_starmane - SAY_PROGRESS_3'), +(-1000356, 'Ok, I think I can make it on my own from here. Thank you so much for breaking me out of there!', 0, 'npc_isla_starmane - SAY_PROGRESS_4'), +(-1000357, 'Belore...', 0, 'npc_lady_sylvanas_windrunner - SAY_LAMENT_END'), +(-1000358, 'kneels down and pick up the amulet.', 2, 'npc_lady_sylvanas_windrunner - EMOTE_LAMENT_END'), +(-1000359, 'You have my blessing', 0, 'npcs_ashyen_and_keleth - GOSSIP_REWARD_BLESS'), +(-1000360, 'Is the way clear? Let\'s get out while we can, $N.', 0, 'npc_kayra_longmane - SAY_PROGRESS_1'), +(-1000361, 'Looks like we won\'t get away so easy. Get ready!', 0, 'npc_kayra_longmane - SAY_PROGRESS_2'), +(-1000362, 'Let\'s keep moving. We\'re not safe here!', 0, 'npc_kayra_longmane - SAY_PROGRESS_3'), +(-1000363, 'Look out, $N! Enemies ahead!', 0, 'npc_kayra_longmane - SAY_PROGRESS_4'), +(-1000364, 'We\'re almost to the refuge! Let\'s go.', 0, 'npc_kayra_longmane - SAY_PROGRESS_5'), +(-1000365, 'I can see my fellow druids from here. Thank you, $N. I\'m sure Ysiel will reward you for your actions!', 0, 'npc_kayra_longmane - SAY_PROGRESS_6'); + +-- 963_world_scripts.sql +INSERT INTO script_texts (entry, content_default, type, comment) VALUES +(-1000366, 'So you have defeated the Crimson Sigil. You now seek to challenge my rule? Not even Arthas could defeat me, yet you dare to even harbor such thoughts? Then I say to you, come! Come $N! The Black Temple awaits...', 1, 'Quest: Battle of the crimson watch - END_TEXT'), + +(-1000367, 'At your command, my liege...', 0, 'TorlothAnim - First'), +(-1000368, 'Destroy them, Torloth. Let lose their blood like a river upon this hallowed ground.', 0, 'Quest: Battle of the crimson watch TorlothAnim - Second'), +(-1000369, 'As you desire, Lord Illidan.', 0, 'Quest: Battle of the crimson watch TorlothAnim - Third'), +(-1000370, 'Yes, Lord Illidan, I would sacrifice to you this magnificent physique. On this day you will fall - another victim of Torloth...', 0, 'Quest: Battle of the crimson watch TorlothAnim - Fourth'), + +(-1000371, 'What manner of fool dares stand before Illidan Stormrage? Soldiers, destroy these insects!', 1, 'Quest: Battle of the crimson watch WavesInfo - First'), +(-1000372, 'You are no challenge for the Crimson Sigil. Mind breakers, end this nonsense.', 1, 'Quest: Battle of the crimson watch WavesInfo - Second'), +(-1000373, 'Run while you still can. The highlords come soon...', 1, 'Quest: Battle of the crimson watch WavesInfo - Third'), +(-1000374, 'Torloth your master calls!', 1, 'Quest: Battle of the crimson watch WavesInfo - Fourth'); + -- -1 033 000 SHADOWFANG KEEP INSERT INTO `script_texts` (`entry`,`content_default`,`sound`,`type`,`language`,`comment`) VALUES (-1033000,'Thanks for freeing me, I\'ll open this door for you, then I will get out of here.',0,0,0,'shadowfang_prisoner SAY_FREE'); -- -1 034 000 STOCKADES - -- -1 036 000 DEADMINES -- -1 043 000 WAILING CAVERNS -- -1 047 000 RAZORFEN KRAUL +INSERT INTO script_texts (entry, content_default, sound, type, language, comment) VALUES +(-1047000, 'Phew! Finally,out here. However, it will not become easy. Detain your eyes after annoyance.', 0, 0, 0, 'Willix'), +(-1047001, 'There on top resides Charlga Razorflank. The damned old Crone.', 0, 0, 0, 'Willix'), +(-1047002, 'Help! Get this Raging Agam\'ar from me!', 0, 0, 0, 'Willix'), +(-1047003, 'In this ditch there are Blueleaf Tuber! As if the gold waited only to be dug out, I say it you!', 0, 0, 0, 'Willix'), +(-1047004, 'Danger is behind every corner.', 0, 0, 0, 'Willix'), +(-1047005, 'I do not understand how these disgusting animals can live at such a place.... puh as this stinks!', 0, 0, 0, 'Willix'), +(-1047006, 'I think, I see a way how we come out of this damned thorn tangle.', 0, 0, 0, 'Willix'), +(-1047007, 'I am glad that we are out again from this damned ditch. However, up here it is not much better!', 0, 0, 0, 'Willix'), +(-1047008, 'Finally! I am glad that I come, finally out here.', 0, 0, 0, 'Willix'), +(-1047009, 'I will rather rest a moment and come again to breath, before I return to Ratchet.', 0, 0, 0, 'Willix'), +(-1047010, 'Many thanks for your help.', 0, 0, 0, 'Willix'); -- -1 048 000 BLACKFATHOM DEEPS +-- -1 060 000 863_world_scripts.sql +INSERT INTO script_texts +(`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 +(-1060000, 'Emergency power activated! Initializing ambulatory motor! CLUCK!', NULL, NULL, 'Notfallenergie aktiviert! Ambulatorenantrieb wird gestartet! GLUCK!', NULL, NULL, NULL, NULL, NULL, 0, 0, 0, 0, NULL), +(-1060001, 'Physical threat detected! Evasive action! CLUCK!', NULL, NULL, 'Körperliche Bedrohung entdeckt! Ausweichmanöver! GLUCK!', NULL, NULL, NULL, NULL, NULL, 0, 0, 0, 0, NULL), +(-1060002, 'Threat analyzed! Activating combat plan beta! CLUCK!', NULL, NULL, 'Bedrohung analysiert! Gefechtsplan Beta wird aktiviert! GLUCK!', NULL, NULL, NULL, NULL, NULL, 0, 0, 0, 0, NULL), +(-1060003, 'CLUCK! Sensors detect spatial anomaly -- danger imminent! CLUCK', NULL, NULL, 'GLUCK! Sensoren haben räumliche Anomalie entdeckt - Gefahr im Verzug! GLUCK!', NULL, NULL, NULL, NULL, NULL, 0, 0, 0, 0, NULL), +(-1060004, 'No one challenges the wastevander nomads -- not even robotic chickens! ATTACK!', NULL, NULL, 'Niemand fordert die Wüsenläufernomaden heraus - auch keine Robothühner! ANGRIFF!', NULL, NULL, NULL, NULL, NULL, 0, 0, 0, 0, NULL), +(-1060005, 'Cloaking systems online! CLUCK! Engaging cloak for transport to Booty Bay!', NULL, NULL, 'Tarnsysteme online! GLUCK! Tarnung für Transport nach Beutebucht wird aktiviert.', NULL, NULL, NULL, NULL, NULL, 0, 0, 0, 0, NULL); + -- -1 070 000 ULDAMAN -- -1 090 000 GNOMEREGAN @@ -49,12 +339,22 @@ INSERT INTO `script_texts` (`entry`,`content_default`,`sound`,`type`,`language`, -- -1 129 000 RAZORFEN DOWNS -- -1 189 000 SCARLET MONASTERY +INSERT INTO `script_texts` (`entry`, `content_default`, `content_loc1`, `content_loc2`, `content_loc3`, `content_loc4`, `content_loc5`, `content_loc6`, `content_loc7`, `content_loc8`, `sound`, `type`, `language`, `comment`) VALUES +(-1189001, 'It is over, your search is done! Let fate choose now, the righteous one',0,0,0,0,0,0,0,0,11961,1,0,'Headless Horseman SAY_ENTRANCE'), +(-1189002, 'Here\'s my body, fit and pure! Now, your blackened souls I\'ll cure!',0,0,0,0,0,0,0,0,12567,1,0,'Headless Horseman SAY_REJOINED'), +(-1189003, 'Over here, you idiot!',0,0,0,0,0,0,0,0,12569,1,0,'Headless Horseman SAY_LOST_HEAD'), +(-1189004, 'Harken, cur! Tis you I spurn! Now, $N, feel the burn!',0,0,0,0,0,0,0,0,12573,1,0,'Headless Horseman SAY_CONFLAGRATION'), +(-1189005, 'Soldiers arise, stand and fight! Bring victory at last to this fallen knight!',0,0,0,0,0,0,0,0,11963,1,0,'Headless Horseman SAY_SPROUTING_PUMPKINS'), +(-1189006, 'Your body lies beaten, battered and broken. Let my curse be your own, fate has spoken',0,0,0,0,0,0,0,0,11962,0,0,'Headless Horseman SAY_PLAYER_DEATH'), +(-1189007, 'This end have I reached before. What new adventure lies in store?',0,0,0,0,0,0,0,0,11964,0,0,'Headless Horseman SAY_DEATH'); -- -1 209 000 ZUL'FARRAK -- -1 229 000 BLACKROCK SPIRE -- -1 230 000 BLACKROCK DEPTHS +INSERT INTO `script_texts` (`entry`,`content_default`,`sound`,`type`,`language`,`comment`) VALUES +(-1230000,'Ah, hits the spot!',0,0,0,'rocknot SAY_GOT_BEER'); -- -1 249 000 ONYXIA'S LAIR INSERT INTO `script_texts` (`entry`,`content_default`,`sound`,`type`,`language`,`comment`) VALUES @@ -87,6 +387,19 @@ INSERT INTO `script_texts` (`entry`,`content_default`,`sound`,`type`,`language`, (-1269016,'No one can stop us! No one!',10404,1,0,'aeonus SAY_SLAY2'), (-1269017,'It is only a matter...of time.',10405,1,0,'aeonus SAY_DEATH'); +INSERT INTO `script_texts` (`entry`,`content_default`,`sound`,`type`,`language`,`comment`) VALUES +(-1269018,'goes into a frenzy!',0,2,0,'aeonus EMOTE_FRENZY'), +(-1269019,'Stop! Do not go further, mortals. You are ill-prepared to face the forces of the Infinite Dragonflight. Come, let me help you.',0,0,0,'saat SAY_SAAT_WELCOME'), +(-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!',10435,1,0,'medivh SAY_ENTER'), +(-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?',10436,1,0,'medivh SAY_INTRO'), +(-1269022,'Champions, my shield grows weak!',10437,1,0,'medivh SAY_WEAK75'), +(-1269023,'My powers must be concentrated on the portal! I do not have time to hold the shield!',10438,1,0,'medivh SAY_WEAK50'), +(-1269024,'The shield is nearly gone! All that I have worked for is in danger!',10439,1,0,'medivh SAY_WEAK25'), +(-1269025,'No... damn this feeble mortal coil...',10441,1,0,'medivh SAY_DEATH'), +(-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.',10440,1,0,'medivh SAY_WIN'), +(-1269027,'Orcs of the Horde! This portalis the gateway to your new destiny! Azeroth lies before you, ripe for the taking!',0,1,0,'medivh SAY_ORCS_ENTER'), +(-1269028,'Gul\'dan speaks the truth! We should return at once to tell our brothers of the news! Retreat back trought the portal!',0,1,0,'medivh SAY_ORCS_ANSWER'); + -- -1 289 000 SCHOLOMANCE -- -1 309 000 ZUL'GURUB @@ -371,7 +684,126 @@ INSERT INTO `script_texts` (`entry`,`content_default`,`sound`,`type`,`language`, (-1532102,'I refuse to concede defeat. I am a prince of the Eredar! I am...',9221,1,0,'malchezaar SAY_DEATH'); -- -1 533 000 NAXXRAMAS - +INSERT INTO `script_texts` (`entry`,`content_default`,`sound`,`type`,`language`,`comment`) VALUES +(-1533000,'Ahh... welcome to my parlor.',8788,1,0,'anubrekhan SAY_GREET'), +(-1533001,'Just a little taste...',8785,1,0,'anubrekhan SAY_AGGRO1'), +(-1533002,'There is no way out.',8786,1,0,'anubrekhan SAY_AGGRO2'), +(-1533003,'Yes, Run! It makes the blood pump faster!',8787,1,0,'anubrekhan SAY_AGGRO3'), +(-1533004,'I hear little hearts beating. Yesss... beating faster now. Soon the beating will stop.',8790,1,0,'anubrekhan SAY_TAUNT1'), +(-1533005,'Where to go? What to do? So many choices that all end in pain, end in death.',8791,1,0,'anubrekhan SAY_TAUNT2'), +(-1533006,'Which one shall I eat first? So difficult to choose... the all smell so delicious.',8792,1,0,'anubrekhan SAY_TAUNT3'), +(-1533007,'Closer now... tasty morsels. I\'ve been too long without food. Without blood to drink.',8793,1,0,'anubrekhan SAY_TAUNT4'), +(-1533008,'Shh... it will all be over soon.',8789,1,0,'anubrekhan SAY_SLAY'), +(-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!',8799,1,0,'faerlina SAY_GREET'), +(-1533010,'Slay them in the master\'s name!',8794,1,0,'faerlina SAY_AGGRO1'), +(-1533011,'You cannot hide from me!',8795,1,0,'faerlina SAY_AGGRO2'), +(-1533012,'Kneel before me, worm!',8796,1,0,'faerlina SAY_AGGRO3'), +(-1533013,'Run while you still can!',8797,1,0,'faerlina SAY_AGGRO4'), +(-1533014,'You have failed!',8800,1,0,'faerlina SAY_SLAY1'), +(-1533015,'Pathetic wretch!',8801,1,0,'faerlina SAY_SLAY2'), +(-1533016,'The master... will avenge me!',8798,1,0,'faerlina SAY_DEATH'), +(-1533017,'Patchwerk want to play!',8909,1,0,'patchwerk SAY_AGGRO1'), +(-1533018,'Kel\'Thuzad make Patchwerk his Avatar of War!',8910,1,0,'patchwerk SAY_AGGRO2'), +(-1533019,'No more play?',8912,1,0,'patchwerk SAY_SLAY'), +(-1533020,'What happened to... Patch...',8911,1,0,'patchwerk SAY_DEATH'), +(-1533021,'goes into a berserker rage!',0,2,0,'patchwerk EMOTE_BERSERK'), +(-1533022,'becomes enraged!',0,2,0,'patchwerk EMOTE_ENRAGE'), +(-1533023,'Stalagg crush you!',8864,1,0,'stalagg SAY_STAL_AGGRO'), +(-1533024,'Stalagg kill!',8866,1,0,'stalagg SAY_STAL_SLAY'), +(-1533025,'Master save me...',8865,1,0,'stalagg SAY_STAL_DEATH'), +(-1533026,'Feed you to master!',8802,1,0,'feugen SAY_FEUG_AGGRO'), +(-1533027,'Feugen make master happy!',8804,1,0,'feugen SAY_FEUG_SLAY'), +(-1533028,'No... more... Feugen...',8803,1,0,'feugen SAY_FEUG_DEATH'), +(-1533029,'You are too late... I... must... OBEY!',8872,1,0,'thaddius SAY_GREET'), +(-1533030,'KILL!',8867,1,0,'thaddius SAY_AGGRO1'), +(-1533031,'EAT YOUR BONES!',8868,1,0,'thaddius SAY_AGGRO2'), +(-1533032,'BREAK YOU!',8869,1,0,'thaddius SAY_AGGRO3'), +(-1533033,'You die now!',8877,1,0,'thaddius SAY_SLAY'), +(-1533034,'Now YOU feel pain!',8871,1,0,'thaddius SAY_ELECT'), +(-1533035,'Thank... you...',8870,1,0,'thaddius SAY_DEATH'), +(-1533036,'Pleeease!',8873,1,0,'thaddius SAY_SCREAM1'), +(-1533037,'Stop, make it stop!',8874,1,0,'thaddius SAY_SCREAM2'), +(-1533038,'Help me! Save me!',8875,1,0,'thaddius SAY_SCREAM3'), +(-1533039,'Please, nooo!',8876,1,0,'thaddius SAY_SCREAM4'); + +DELETE FROM `script_texts` WHERE `entry` BETWEEN -1533074 AND -1533040; + INSERT INTO `script_texts` (`entry`,`content_default`,`sound`,`type`,`language`,`comment`) VALUES +(-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.',8807,1,0,'gothik SAY_SPEECH'), +(-1533041,'Death is the only escape.',8806,1,0,'gothik SAY_KILL'), +(-1533042,'I... am... undone!',8805,1,0,'gothik SAY_DEATH'), +(-1533043,'I have waited long enough! Now, you face the harvester of souls!',8808,1,0,'gothik SAY_TELEPORT'), +(-1533044,'Defend youself!',8892,1,0,'blaumeux SAY_BLAU_AGGRO'), +(-1533045,'Come, Zeliek, do not drive them out. Not before we\'ve had our fun.',8896,1,0,'blaumeux SAY_BLAU_TAUNT1'), +(-1533046,'I do hope they stay alive long enough for me to... introduce myself.',8897,1,0,'blaumeux SAY_BLAU_TAUNT2'), +(-1533047,'The first kill goes to me! Anyone care to wager?',8898,1,0,'blaumeux SAY_BLAU_TAUNT3'), +(-1533048,'Your life is mine!',8895,1,0,'blaumeux SAY_BLAU_SPECIAL'), +(-1533049,'Who\'s next?',8894,1,0,'blaumeux SAY_BLAU_SLAY'), +(-1533050,'Tou... che!',8893,1,0,'blaumeux SAY_BLAU_DEATH'), +(-1533051,'Come out and fight, ye wee ninny!',8899,1,0,'korthazz SAY_KORT_AGGRO'), +(-1533052,'To arms, ye roustabouts! We\'ve got company!',8903,1,0,'korthazz SAY_KORT_TAUNT1'), +(-1533053,'I heard about enough of yer sniveling. Shut yer fly trap \'afore I shut it for ye!',8904,1,0,'korthazz SAY_KORT_TAUNT2'), +(-1533054,'I\'m gonna enjoy killin\' these slack-jawed daffodils!',8905,1,0,'korthazz SAY_KORT_TAUNT3'), +(-1533055,'I like my meat extra crispy!',8901,1,0,'korthazz SAY_KORT_SPECIAl'), +(-1533056,'Next time, bring more friends!',8902,1,0,'korthazz SAY_KORT_SLAY'), +(-1533057,'What a bloody waste this is!',8900,1,0,'korthazz SAY_KORT_DEATH'), +(-1533058,'Flee, before it\'s too late!',8913,1,0,'zeliek SAY_ZELI_AGGRO'), +(-1533059,'Invaders, cease this foolish venture at once! Turn away while you still can!',8917,1,0,'zeliek SAY_ZELI_TAUNT1'), +(-1533060,'Perhaps they will come to their senses, and run away as fast as they can!',8918,1,0,'zeliek SAY_ZELI_TAUNT2'), +(-1533061,'Do not continue! Turn back while there\'s still time!',8919,1,0,'zeliek SAY_ZELI_TAUNT3'), +(-1533062,'I- I have no choice but to obey!',8916,1,0,'zeliek SAY_ZELI_SPECIAL'), +(-1533063,'Forgive me!',8915,1,0,'zeliek SAY_ZELI_SLAY'), +(-1533064,'It is... as it should be.',8914,1,0,'zeliek SAY_ZELI_DEATH'), +(-1533065,'You seek death?',14571,1,0,'rivendare_naxx SAY_RIVE_AGGRO1'), +(-1533066,'None shall pass!',14572,1,0,'rivendare_naxx SAY_RIVE_AGGRO2'), +(-1533067,'Be still!',14573,1,0,'rivendare_naxx SAY_RIVE_AGGRO3'), +(-1533068,'You will find no peace in death.',14574,1,0,'rivendare_naxx SAY_RIVE_SLAY1'), +(-1533069,'The master\'s will is done.',14575,1,0,'rivendare_naxx SAY_RIVE_SLAY2'), +(-1533070,'Bow to the might of the scourge!',14576,1,0,'rivendare_naxx SAY_RIVE_SPECIAL'), +(-1533071,'Enough prattling. Let them come! We shall grind their bones to dust.',14577,1,0,'rivendare_naxx SAY_RIVE_TAUNT1'), +(-1533072,'Conserve your anger! Harness your rage! You will all have outlets for your frustration soon enough.',14578,1,0,'rivendare_naxx SAY_RIVE_TAUNT2'), +(-1533073,'Life is meaningless. It is in death that we are truly tested.',14579,1,0,'rivendare_naxx SAY_RIVE_TAUNT3'), +(-1533074,'Death... will not stop me...',14580,1,0,'rivendare_naxx SAY_RIVE_DEATH'); + +DELETE FROM `script_texts` WHERE `entry` BETWEEN -1533108 AND -1533075; +INSERT INTO `script_texts` (`entry`,`content_default`,`sound`,`type`,`language`,`comment`) VALUES +(-1533075,'Glory to the master!',8845,1,0,'noth SAY_AGGRO1'), +(-1533076,'Your life is forfeit!',8846,1,0,'noth SAY_AGGRO2'), +(-1533077,'Die, trespasser!',8847,1,0,'noth SAY_AGGRO3'), +(-1533078,'Rise, my soldiers! Rise and fight once more!',8851,1,0,'noth SAY_SUMMON'), +(-1533079,'My task is done!',8849,1,0,'noth SAY_SLAY1'), +(-1533080,'Breathe no more!',8850,1,0,'noth SAY_SLAY2'), +(-1533081,'I will serve the master... in... death!',8848,1,0,'noth SAY_DEATH'), +(-1533082,'takes in a deep breath...',0,2,0,'sapphiron EMOTE_BREATH'), +(-1533083,'enrages!',0,2,0,'sapphiron EMOTE_ENRAGE'), +(-1533084,'Our preparations continue as planned, master.',14467,1,0,'kelthuzad SAY_SAPP_DIALOG1'), +(-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.',8881,1,0,'kelthuzad SAY_SAPP_DIALOG2_LICH'), +(-1533086,'I see no complications... Wait... What is this?',14468,1,0,'kelthuzad SAY_SAPP_DIALOG3'), +(-1533087,'Your security measures have failed! See to this interruption immediately!',8882,1,0,'kelthuzad SAY_SAPP_DIALOG4_LICH'), +(-1533088,'Yes, master!',14469,1,0,'kelthuzad SAY_SAPP_DIALOG5'), +(-1533089,'No!!! A curse upon you, interlopers! The armies of the Lich King will hunt you down. You will not escape your fate...',14484,1,0,'kelthuzad SAY_CAT_DIED'), +(-1533090,'Who dares violate the sanctity of my domain? Be warned, all who trespass here are doomed.',14463,1,0,'kelthuzad SAY_TAUNT1'), +(-1533091,'Fools, you think yourselves triumphant? You have only taken one step closer to the abyss! ',14464,1,0,'kelthuzad SAY_TAUNT2'), +(-1533092,'I grow tired of these games. Proceed, and I will banish your souls to oblivion!',14465,1,0,'kelthuzad SAY_TAUNT3'), +(-1533093,'You have no idea what horrors lie ahead. You have seen nothing! The frozen heart of Naxxramas awaits you!',14466,1,0,'kelthuzad SAY_TAUNT4'), +(-1533094,'Pray for mercy!',14475,1,0,'kelthuzad SAY_AGGRO1'), +(-1533095,'Scream your dying breath!',14476,1,0,'kelthuzad SAY_AGGRO2'), +(-1533096,'The end is upon you!',14477,1,0,'kelthuzad SAY_AGGRO3'), +(-1533097,'The dark void awaits you!',14478,1,0,'kelthuzad SAY_SLAY1'), +(-1533098,'<Kel\'Thuzad cackles maniacally!>',14479,1,0,'kelthuzad SAY_SLAY2'), +(-1533099,'AAAAGHHH!... Do not rejoice... your victory is a hollow one... for I shall return with powers beyond your imagining!',14480,1,0,'kelthuzad SAY_DEATH'), +(-1533100,'Your soul, is bound to me now!',14472,1,0,'kelthuzad SAY_CHAIN1'), +(-1533101,'There will be no escape!',14473,1,0,'kelthuzad SAY_CHAIN2'), +(-1533102,'I will freeze the blood in your veins!',14474,1,0,'kelthuzad SAY_FROST_BLAST'), +(-1533103,'Master! I require aid! ',14470,1,0,'kelthuzad SAY_REQUEST_AID'), +(-1533104,'Very well... warriors of the frozen wastes, rise up! I command you to fight, kill, and die for your master. Let none survive...',0,1,0,'kelthuzad SAY_ANSWER_REQUEST'), +(-1533105,'Minions, servants, soldiers of the cold dark, obey the call of Kel\'Thuzad!',14471,1,0,'kelthuzad SAY_SUMMON_MINIONS'), +(-1533106,'Your petty magics are no challenge to the might of the Scourge! ',14481,1,0,'kelthuzad SAY_SPECIAL1_MANA_DET'), +(-1533107,'Enough! I grow tired of these distractions! ',14483,1,0,'kelthuzad SAY_SPECIAL3_MANA_DET'), +(-1533108,'Fools, you have spread your powers too thin. Be free, my minions!',14482,1,0,'kelthuzad SAY_SPECIAL2_DISPELL'); + +UPDATE `script_texts` SET `sound`=8902 WHERE `entry`=-1533055; +UPDATE `script_texts` SET `sound`=8901 WHERE `entry`=-1533056; + -- -1 534 000 THE BATTLE OF MT. HYJAL -- -1 540 000 SHATTERED HALLS @@ -461,6 +893,17 @@ INSERT INTO `script_texts` (`entry`,`content_default`,`sound`,`type`,`language`, (-1543015,'It is... not over.',10284,1,0,'omor SAY_DIE'), (-1543016,'I am victorious!',10283,1,0,'omor SAY_WIPE'); +INSERT INTO `script_texts` (`entry`,`content_default`,`sound`,`type`,`language`,`comment`) VALUES +('-1543017','You have faced many challenges, pity they were all in vain. Soon your people will kneel to my lord!',10292,1,0,'vazruden SAY_INTRO'), +('-1543018','Is there no one left to test me?',10293,1,0,'vazruden SAY_WIPE'), +('-1543019','Your time is running out!',10294,1,0,'vazruden SAY_AGGRO_1'), +('-1543020','You are nothing, I answer a higher call!',10295,1,0,'vazruden SAY_AGGRO_2'), +('-1543021','The Dark Lord laughs at you!',10296,1,0,'vazruden SAY_AGGRO_3'), +('-1543022','It is over. Finished!',10297,1,0,'vazruden SAY_KILL_1'), +('-1543023','Your days are done!',10298,1,0,'vazruden SAY_KILL_2'), +('-1543024','My lord will be the end you all...',10299,1,0,'vazruden SAY_DIE'), +('-1543025','descends from the sky',0,3,0,'vazruden EMOTE'); + -- -1 544 000 MAGTHERIDON'S LAIR INSERT INTO `script_texts` (`entry`,`content_default`,`sound`,`type`,`language`,`comment`) VALUES (-1544000,'Wretched, meddling insects. Release me and perhaps i will grant you a merciful death!',10247,1,0,'magtheridon SAY_TAUNT1'), @@ -1083,6 +1526,14 @@ INSERT INTO `script_texts` (`entry`,`content_default`,`sound`,`type`,`language`, (-1585028,'Do not... get too comfortable.',12420,1,0,'kaelthas MT SAY_RECAST_GRAVITY'), (-1585029,'My demise accomplishes nothing! The Master will have you! You will drown in your own blood! This world shall burn! Aaaghh!',12421,1,0,'kaelthas MT SAY_DEATH'); +-- -1 645 000 377_word_scripts.sql +INSERT INTO `script_texts` (`entry`, `content_default`, `content_loc1`, `content_loc2`, `content_loc3`, `content_loc4`, `content_loc5`, `content_loc6`, `content_loc7`, `content_loc8`, `sound`, `type`, `language`, `comment`) VALUES +(-1645006,'Let the trial begin, Bloodwrath, attack!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,0,'master_kelerun_bloodmourn YELL_PHASE'), +(-1645007,'Champion Lightrend, make me proud!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,0,'master_kelerun_bloodmourn YELL_PHASE'), +(-1645008,'Show this upstart how a real Blood Knight fights, Swiftblade!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,0,'master_kelerun_bloodmourn YELL_PHASE'), +(-1645009,'Show $N the meaning of pain, Sunstriker!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,0,'master_kelerun_bloodmourn YELL_PHASE'); + + -- -- Below just for beautiful view in table, run at own desire -- diff --git a/sql/updates/1026_(mangos_7113)_01_characters_character_achievement_progress.sql b/sql/updates/1026_(mangos_7113)_01_characters_character_achievement_progress.sql new file mode 100644 index 00000000000..6f125a6a2e6 --- /dev/null +++ b/sql/updates/1026_(mangos_7113)_01_characters_character_achievement_progress.sql @@ -0,0 +1,3 @@ +/*ALTER TABLE character_db_version CHANGE COLUMN required_7100_01_characters_character_spell required_7113_01_characters_character_achievement_progress bit;*/ + +DELETE FROM character_achievement_progress WHERE counter=0;
\ No newline at end of file diff --git a/sql/updates/7141_01_mangos_instance_template.sql b/sql/updates/1028_(mangos_7141)_01_world_instance_template.sql index b21905f3949..f86b9517a98 100644 --- a/sql/updates/7141_01_mangos_instance_template.sql +++ b/sql/updates/1028_(mangos_7141)_01_world_instance_template.sql @@ -1,4 +1,4 @@ -ALTER TABLE db_version CHANGE COLUMN required_7133_02_mangos_spell_loot_template required_7141_01_mangos_instance_template bit; +/*ALTER TABLE db_version CHANGE COLUMN required_7133_02_mangos_spell_loot_template required_7141_01_mangos_instance_template bit;*/ ALTER TABLE instance_template ADD maxPlayersHeroic tinyint(3) unsigned NOT NULL default '0' AFTER maxPlayers; @@ -9,4 +9,4 @@ INSERT INTO instance_template VALUES (533,0,80,0,10,25,0,NULL,NULL,NULL,NULL,''), (615,0,80,0,10,25,0,NULL,NULL,NULL,NULL,''), (616,0,80,0,10,25,0,NULL,NULL,NULL,NULL,''), -(624,0,80,0,10,25,0,NULL,NULL,NULL,NULL,''); +(624,0,80,0,10,25,0,NULL,NULL,NULL,NULL,'');
\ No newline at end of file diff --git a/sql/updates/1028_(mangos_7147)_01_world_creature_template.sql b/sql/updates/1028_(mangos_7147)_01_world_creature_template.sql new file mode 100644 index 00000000000..385ec769156 --- /dev/null +++ b/sql/updates/1028_(mangos_7147)_01_world_creature_template.sql @@ -0,0 +1,4 @@ +/*ALTER TABLE db_version CHANGE COLUMN required_7141_01_mangos_instance_template required_7147_01_mangos_creature_template bit;*/ + +UPDATE creature_template + SET family = 0 WHERE entry = 1;
\ No newline at end of file diff --git a/sql/updates/7150_01_mangos_playercreateinfo_spell.sql b/sql/updates/1028_(mangos_7150)_01_world_playercreateinfo_spell.sql index aba3540be32..6d4a5993e58 100644 --- a/sql/updates/7150_01_mangos_playercreateinfo_spell.sql +++ b/sql/updates/1028_(mangos_7150)_01_world_playercreateinfo_spell.sql @@ -1,4 +1,4 @@ -ALTER TABLE db_version CHANGE COLUMN required_7149_01_mangos_spell_proc_event required_7150_01_mangos_playercreateinfo_spell bit; +/*ALTER TABLE db_version CHANGE COLUMN required_7149_01_mangos_spell_proc_event required_7150_01_mangos_playercreateinfo_spell bit;*/ DELETE FROM `playercreateinfo_spell` WHERE Spell = 58284; @@ -7,4 +7,4 @@ INSERT INTO `playercreateinfo_spell` VALUES (2,9,58284,'Chaos Bolt Passive'), (5,9,58284,'Chaos Bolt Passive'), (7,9,58284,'Chaos Bolt Passive'), -(10,9,58284,'Chaos Bolt Passive'); +(10,9,58284,'Chaos Bolt Passive');
\ No newline at end of file diff --git a/sql/updates/7168_01_mangos_command.sql b/sql/updates/1084_(mangos_7168)_01_world_command.sql index 67bbd5e3194..b9df9bca12d 100644 --- a/sql/updates/7168_01_mangos_command.sql +++ b/sql/updates/1084_(mangos_7168)_01_world_command.sql @@ -1,6 +1,6 @@ -ALTER TABLE db_version CHANGE COLUMN required_7156_01_mangos_spell_proc_event required_7168_01_mangos_command bit; +/*ALTER TABLE db_version CHANGE COLUMN required_7156_01_mangos_spell_proc_event required_7168_01_mangos_command bit;*/ DELETE FROM `command` WHERE `name` IN ('learn','unlearn'); INSERT INTO `command` VALUES ('learn',3,'Syntax: .learn #spell [all]\r\n\r\nSelected character learn a spell of id #spell. If \'all\' provided then all ranks learned.'), -('unlearn',3,'Syntax: .unlearn #spell [all]\r\n\r\nUnlearn for selected player a spell #spell. If \'all\' provided then all ranks unlearned.'); +('unlearn',3,'Syntax: .unlearn #spell [all]\r\n\r\nUnlearn for selected player a spell #spell. If \'all\' provided then all ranks unlearned.');
\ No newline at end of file diff --git a/sql/updates/1094_(mangos_7193)_01_world_trinity_string.sql b/sql/updates/1094_(mangos_7193)_01_world_trinity_string.sql new file mode 100644 index 00000000000..44a390d20f6 --- /dev/null +++ b/sql/updates/1094_(mangos_7193)_01_world_trinity_string.sql @@ -0,0 +1,3 @@ +/*ALTER TABLE db_version CHANGE COLUMN required_7175_01_mangos_spell_proc_event required_7193_01_mangos_mangos_string bit;*/ + +UPDATE mangos_string SET content_default = 'Unit Flags: %u.\nDynamic Flags: %u.\nFaction Template: %u.' WHERE entry = 542;
\ No newline at end of file diff --git a/sql/updates/7196_02_mangos_spell_bonus_data.sql b/sql/updates/1108_(mangos_7196)_02_world_spell_bonus_data.sql index 7d62722bd10..8f6fdbd1463 100644 --- a/sql/updates/7196_02_mangos_spell_bonus_data.sql +++ b/sql/updates/1108_(mangos_7196)_02_world_spell_bonus_data.sql @@ -1,4 +1,4 @@ -ALTER TABLE db_version CHANGE COLUMN required_7196_01_mangos_spell_chain required_7196_02_mangos_spell_bonus_data bit; +/*ALTER TABLE db_version CHANGE COLUMN required_7196_01_mangos_spell_chain required_7196_02_mangos_spell_bonus_data bit;*/ -- ---------------------------- -- Table structure for spell_bonus_data diff --git a/sql/updates/7198_01_characters_characters.sql b/sql/updates/1108_(mangos_7198)_01_characters_characters.sql index 5e77c643291..104a31359df 100644 --- a/sql/updates/7198_01_characters_characters.sql +++ b/sql/updates/1108_(mangos_7198)_01_characters_characters.sql @@ -1,7 +1,7 @@ -ALTER TABLE character_db_version CHANGE COLUMN required_7113_01_characters_character_achievement_progress required_7198_01_characters_characters bit; +/*ALTER TABLE character_db_version CHANGE COLUMN required_7113_01_characters_character_achievement_progress required_7198_01_characters_characters bit;*/ UPDATE `characters`.`item_instance` AS `t1` -INNER JOIN `mangos`.`item_template` AS `t2` ON +INNER JOIN `world`.`item_template` AS `t2` ON `t2`.`entry` = SUBSTRING_INDEX(SUBSTRING_INDEX(`t1`.`data`,' ',4),' ',-1) SET `t1`.`data` = CONCAT( SUBSTRING_INDEX(SUBSTRING_INDEX(`t1`.`data`,' ',16),' ',-16), ' ', @@ -14,7 +14,7 @@ SET `t1`.`data` = CONCAT( WHERE (`t2`.`spellid_1` = 55884) AND (SUBSTRING_INDEX(data,' ',64) = data AND SUBSTRING_INDEX(data,' ',64-1) <> data); UPDATE `characters`.`item_instance` AS `t1` -INNER JOIN `mangos`.`item_template` AS `t2` ON +INNER JOIN `world`.`item_template` AS `t2` ON `t2`.`entry` = SUBSTRING_INDEX(SUBSTRING_INDEX(`t1`.`data`,' ',4),' ',-1) SET `t1`.`data` = CONCAT( SUBSTRING_INDEX(SUBSTRING_INDEX(`t1`.`data`,' ',16),' ',-16), ' ', @@ -24,4 +24,4 @@ SET `t1`.`data` = CONCAT( IF (`t2`.`spellcharges_4` = 0, 0, IF (SUBSTRING_INDEX(SUBSTRING_INDEX(`t1`.`data`,' ',20),' ',-1) = 0, IF(`t2`.`spellcharges_4` < 0, 4294967295, 1), SUBSTRING_INDEX(SUBSTRING_INDEX(`t1`.`data`,' ',20),' ',-1))), ' ', IF (`t2`.`spellcharges_5` = 0, 0, IF (SUBSTRING_INDEX(SUBSTRING_INDEX(`t1`.`data`,' ',21),' ',-1) = 0, IF(`t2`.`spellcharges_5` < 0, 4294967295, 1), SUBSTRING_INDEX(SUBSTRING_INDEX(`t1`.`data`,' ',21),' ',-1))), ' ', SUBSTRING_INDEX(SUBSTRING_INDEX(`data`,' ',138),' ',-138+21),' ') -WHERE (`t2`.`spellid_1` = 55884) AND (SUBSTRING_INDEX(data,' ',138) = data AND SUBSTRING_INDEX(data,' ',138-1) <> data); +WHERE (`t2`.`spellid_1` = 55884) AND (SUBSTRING_INDEX(data,' ',138) = data AND SUBSTRING_INDEX(data,' ',138-1) <> data);
\ No newline at end of file diff --git a/sql/updates/7199_01_mangos_spell_bonus_data.sql b/sql/updates/1108_(mangos_7199)_01_world_spell_bonus_data.sql index 99d908b183f..89bad64d3e1 100644 --- a/sql/updates/7199_01_mangos_spell_bonus_data.sql +++ b/sql/updates/1108_(mangos_7199)_01_world_spell_bonus_data.sql @@ -1,4 +1,4 @@ -ALTER TABLE db_version CHANGE COLUMN required_7196_02_mangos_spell_bonus_data required_7199_01_mangos_spell_bonus_data bit; +/*ALTER TABLE db_version CHANGE COLUMN required_7196_02_mangos_spell_bonus_data required_7199_01_mangos_spell_bonus_data bit;*/ DELETE FROM `spell_bonus_data` WHERE `entry` IN (44614, 139, 49821, 53022, 18265, 31117, 28176); INSERT INTO `spell_bonus_data` VALUES @@ -8,4 +8,4 @@ INSERT INTO `spell_bonus_data` VALUES ('53022', '0.14286', '0', '0', 'Priest - Mind Sear Trigger Rank 2'), ('18265', '0', '0.1', '0', 'Warlock - Siphon Life'), ('31117', '1.8', '0', '0', 'Warlock - Unstable Affliction Dispell'), -('28176', '0', '0', '0', 'Warlock - Fel Armor'); +('28176', '0', '0', '0', 'Warlock - Fel Armor');
\ No newline at end of file diff --git a/sql/updates/1135_(mangos_7207)_01_world_creature.sql b/sql/updates/1135_(mangos_7207)_01_world_creature.sql new file mode 100644 index 00000000000..7566ba87076 --- /dev/null +++ b/sql/updates/1135_(mangos_7207)_01_world_creature.sql @@ -0,0 +1,4 @@ +/*ALTER TABLE db_version CHANGE COLUMN required_7205_01_mangos_spell_chain required_7207_01_mangos_creature bit;*/ + +ALTER TABLE creature + ADD COLUMN `phaseMask` smallint(5) unsigned NOT NULL default '1' AFTER `spawnMask`;
\ No newline at end of file diff --git a/sql/updates/1135_(mangos_7207)_02_world_gameobject.sql b/sql/updates/1135_(mangos_7207)_02_world_gameobject.sql new file mode 100644 index 00000000000..aef9f853f54 --- /dev/null +++ b/sql/updates/1135_(mangos_7207)_02_world_gameobject.sql @@ -0,0 +1,4 @@ +/*ALTER TABLE db_version CHANGE COLUMN required_7207_01_mangos_creature required_7207_02_mangos_gameobject bit;*/ + +ALTER TABLE gameobject + ADD COLUMN `phaseMask` smallint(5) unsigned NOT NULL default '1' AFTER `spawnMask`;
\ No newline at end of file diff --git a/sql/updates/1135_(mangos_7207)_03_characters_corpse.sql b/sql/updates/1135_(mangos_7207)_03_characters_corpse.sql new file mode 100644 index 00000000000..b1fa98e2706 --- /dev/null +++ b/sql/updates/1135_(mangos_7207)_03_characters_corpse.sql @@ -0,0 +1,4 @@ +/*ALTER TABLE character_db_version CHANGE COLUMN required_7198_01_characters_characters required_7207_03_characters_corpse bit;*/ + +ALTER TABLE corpse + ADD COLUMN `phaseMask` smallint(5) unsigned NOT NULL default '1' AFTER `map`;
\ No newline at end of file diff --git a/sql/updates/7209_01_mangos_spell_bonus_data.sql b/sql/updates/1140_(mangos_7209)_01_world_spell_bonus_data.sql index bbd36b3e636..d4863c51494 100644 --- a/sql/updates/7209_01_mangos_spell_bonus_data.sql +++ b/sql/updates/1140_(mangos_7209)_01_world_spell_bonus_data.sql @@ -1,4 +1,4 @@ -ALTER TABLE db_version CHANGE COLUMN required_7207_02_mangos_gameobject required_7209_01_mangos_spell_bonus_data bit; +/*ALTER TABLE db_version CHANGE COLUMN required_7207_02_mangos_gameobject required_7209_01_mangos_spell_bonus_data bit;*/ DELETE FROM `spell_bonus_data` WHERE `entry` IN (53595); INSERT INTO `spell_bonus_data` VALUES diff --git a/sql/updates/7214_01_mangos_command.sql b/sql/updates/1185_(mangos_7214)_01_world_command.sql index 606ab826b82..841d538fa43 100644 --- a/sql/updates/7214_01_mangos_command.sql +++ b/sql/updates/1185_(mangos_7214)_01_world_command.sql @@ -1,8 +1,8 @@ -ALTER TABLE db_version CHANGE COLUMN required_7209_01_mangos_spell_bonus_data required_7214_01_mangos_command bit; +/*ALTER TABLE db_version CHANGE COLUMN required_7209_01_mangos_spell_bonus_data required_7214_01_mangos_command bit;*/ DELETE FROM `command` WHERE `name` IN ('gps','modify phase','npc phase','gobject phase'); INSERT INTO `command` VALUES ('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'), ('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.'), ('npc phase',3,'Syntax: .npc 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..'), -('gobject phase',3,'Syntax: .gobject 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 phase',3,'Syntax: .gobject 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.');
\ No newline at end of file diff --git a/sql/updates/7214_02_mangos_mangos_string.sql b/sql/updates/1185_(mangos_7214)_02_world_trinity_string.sql index fc4a40a1b1b..90c39d42baa 100644 --- a/sql/updates/7214_02_mangos_mangos_string.sql +++ b/sql/updates/1185_(mangos_7214)_02_world_trinity_string.sql @@ -1,5 +1,5 @@ -ALTER TABLE db_version CHANGE COLUMN required_7214_01_mangos_command required_7214_02_mangos_mangos_string bit; +/*ALTER TABLE db_version CHANGE COLUMN required_7214_01_mangos_command required_7214_02_mangos_mangos_string bit;*/ DELETE FROM `mangos_string` WHERE entry = 101; INSERT INTO `mangos_string` VALUES -(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); +(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);
\ No newline at end of file diff --git a/sql/updates/1185_(mangos_7214)_03_mangos_spell_proc_event.sql b/sql/updates/1185_(mangos_7214)_03_mangos_spell_proc_event.sql new file mode 100644 index 00000000000..e93dcdc04a1 --- /dev/null +++ b/sql/updates/1185_(mangos_7214)_03_mangos_spell_proc_event.sql @@ -0,0 +1,865 @@ +DROP TABLE IF EXISTS `spell_proc_event`; +CREATE TABLE IF NOT EXISTS `spell_proc_event` ( + `entry` smallint(5) 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; + +INSERT INTO `spell_proc_event` (`entry`, `SchoolMask`, `SpellFamilyName`, `SpellFamilyMask0`, `SpellFamilyMask1`, `SpellFamilyMask2`, `procFlags`, `procEx`, `ppmRate`, `CustomChance`, `Cooldown`) VALUES +(324, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3), +(325, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3), +(905, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3), +(945, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3), +(974, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3), +(1463, 0, 0, 0, 0, 0, 0, 1024, 0, 0, 0), +(3232, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0), +(5952, 0, 8, 1, 1, 0, 0, 0, 0, 0, 0), +(6346, 0, 0, 0, 0, 0, 0, 256, 0, 0, 0), +(7383, 1, 0, 0, 0, 0, 0, 256, 0, 0, 0), +(7434, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0), +(8134, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3), +(8178, 0, 0, 0, 0, 0, 0, 65536, 0, 0, 0), +(8494, 0, 0, 0, 0, 0, 0, 1024, 0, 0, 0), +(8495, 0, 0, 0, 0, 0, 0, 1024, 0, 0, 0), +(9452, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0), +(9782, 0, 0, 0, 0, 0, 0, 64, 0, 0, 0), +(9784, 0, 0, 0, 0, 0, 0, 64, 0, 0, 0), +(9799, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0), +(10191, 0, 0, 0, 0, 0, 0, 1024, 0, 0, 0), +(10192, 0, 0, 0, 0, 0, 0, 1024, 0, 0, 0), +(10193, 0, 0, 0, 0, 0, 0, 1024, 0, 0, 0), +(10431, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3), +(10432, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3), +(11095, 0, 3, 16, 0, 0, 0, 0, 0, 0, 0), +(11119, 4, 3, 0, 0, 0, 0, 2, 0, 0, 0), +(11120, 4, 3, 0, 0, 0, 0, 2, 0, 0, 0), +(11129, 0, 3, 12582935, 64, 0, 0, 0, 0, 0, 0), +(11180, 16, 3, 0, 0, 0, 0, 0, 0, 0, 0), +(11185, 0, 3, 128, 0, 0, 327680, 0, 0, 0, 0), +(11255, 0, 3, 16384, 0, 0, 0, 0, 0, 0, 0), +(12169, 0, 0, 0, 0, 0, 0, 64, 0, 0, 0), +(12281, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6), +(12289, 0, 4, 2, 0, 0, 0, 0, 0, 0, 0), +(12298, 0, 0, 0, 0, 0, 0, 64, 0, 0, 0), +(12311, 0, 4, 2048, 1, 0, 0, 0, 0, 0, 0), +(12317, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0), +(12319, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0), +(12322, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0), +(12487, 0, 3, 128, 0, 0, 327680, 0, 0, 0, 0), +(12488, 0, 3, 128, 0, 0, 327680, 0, 0, 0, 0), +(12598, 0, 3, 16384, 0, 0, 0, 0, 0, 0, 0), +(12668, 0, 4, 2, 0, 0, 0, 0, 0, 0, 0), +(12724, 0, 0, 0, 0, 0, 0, 64, 0, 0, 0), +(12725, 0, 0, 0, 0, 0, 0, 64, 0, 0, 0), +(12726, 0, 0, 0, 0, 0, 0, 64, 0, 0, 0), +(12727, 0, 0, 0, 0, 0, 0, 64, 0, 0, 0), +(12797, 0, 4, 1024, 0, 0, 0, 0, 0, 0, 0), +(12799, 0, 4, 1024, 0, 0, 0, 0, 0, 0, 0), +(12812, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6), +(12813, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6), +(12814, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6), +(12815, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6), +(12834, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0), +(12846, 4, 3, 0, 0, 0, 0, 2, 0, 0, 0), +(12847, 4, 3, 0, 0, 0, 0, 2, 0, 0, 0), +(12848, 4, 3, 0, 0, 0, 0, 2, 0, 0, 0), +(12849, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0), +(12867, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0), +(12872, 0, 3, 16, 0, 0, 0, 0, 0, 0, 0), +(12873, 0, 3, 16, 0, 0, 0, 0, 0, 0, 0), +(12958, 0, 4, 2048, 1, 0, 0, 0, 0, 0, 0), +(12966, 0, 0, 0, 0, 0, 0, 65536, 0, 0, 0), +(12967, 0, 0, 0, 0, 0, 0, 65536, 0, 0, 0), +(12968, 0, 0, 0, 0, 0, 0, 65536, 0, 0, 0), +(12969, 0, 0, 0, 0, 0, 0, 65536, 0, 0, 0), +(12970, 0, 0, 0, 0, 0, 0, 65536, 0, 0, 0), +(12971, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0), +(12972, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0), +(12973, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0), +(12974, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0), +(12999, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0), +(13000, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0), +(13001, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0), +(13002, 0, 0, 0, 0, 0, 0, 0, 10, 0, 0), +(13045, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0), +(13046, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0), +(13047, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0), +(13048, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0), +(13163, 0, 0, 0, 0, 0, 0, 16, 0, 0, 0), +(13165, 0, 9, 1, 0, 0, 0, 0, 0, 0, 0), +(13754, 0, 8, 16, 0, 0, 0, 0, 0, 0, 0), +(13867, 0, 8, 16, 0, 0, 0, 0, 0, 0, 0), +(13983, 0, 0, 0, 0, 0, 0, 24, 0, 0, 0), +(14070, 0, 0, 0, 0, 0, 0, 24, 0, 0, 0), +(14071, 0, 0, 0, 0, 0, 0, 24, 0, 0, 0), +(14156, 0, 8, 4063232, 0, 0, 0, 0, 0, 0, 0), +(14160, 0, 8, 4063232, 0, 0, 0, 0, 0, 0, 0), +(14161, 0, 8, 4063232, 0, 0, 0, 0, 0, 0, 0), +(14186, 0, 8, 1082131720, 2, 0, 0, 2, 0, 0, 0), +(14190, 0, 8, 1082131720, 2, 0, 0, 2, 0, 0, 0), +(14193, 0, 8, 1082131720, 2, 0, 0, 2, 0, 0, 0), +(14194, 0, 8, 1082131720, 2, 0, 0, 2, 0, 0, 0), +(14195, 0, 8, 1082131720, 2, 0, 0, 2, 0, 0, 0), +(14318, 0, 9, 1, 0, 0, 0, 0, 0, 0, 0), +(14319, 0, 9, 1, 0, 0, 0, 0, 0, 0, 0), +(14320, 0, 9, 1, 0, 0, 0, 0, 0, 0, 0), +(14321, 0, 9, 1, 0, 0, 0, 0, 0, 0, 0), +(14322, 0, 9, 1, 0, 0, 0, 0, 0, 0, 0), +(14531, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0), +(14774, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0), +(14892, 0, 6, 268443136, 65540, 0, 0, 2, 0, 0, 0), +(15088, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0), +(15128, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0), +(15268, 32, 6, 101187584, 2, 0, 0, 0, 0, 0, 0), +(15277, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0), +(15286, 32, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(15323, 32, 6, 101187584, 2, 0, 0, 0, 0, 0, 0), +(15324, 32, 6, 101187584, 2, 0, 0, 0, 0, 0, 0), +(15325, 32, 6, 101187584, 2, 0, 0, 0, 0, 0, 0), +(15326, 32, 6, 101187584, 2, 0, 0, 0, 0, 0, 0), +(15337, 0, 6, 8192, 2, 0, 0, 2, 0, 0, 0), +(15338, 0, 6, 8192, 2, 0, 0, 2, 0, 0, 0), +(15346, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0), +(15362, 0, 6, 268443136, 65540, 0, 0, 2, 0, 0, 0), +(15363, 0, 6, 268443136, 65540, 0, 0, 2, 0, 0, 0), +(15600, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0), +(16164, 0, 11, 2416967875, 0, 0, 0, 2, 0, 0, 0), +(16176, 0, 11, 448, 0, 0, 0, 2, 0, 0, 0), +(16180, 0, 11, 192, 0, 0, 0, 2, 0, 0, 0), +(16196, 0, 11, 192, 0, 0, 0, 2, 0, 0, 0), +(16198, 0, 11, 192, 0, 0, 0, 2, 0, 0, 0), +(16235, 0, 11, 448, 0, 0, 0, 2, 0, 0, 0), +(16240, 0, 11, 448, 0, 0, 0, 2, 0, 0, 0), +(16256, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0), +(16257, 0, 0, 0, 0, 0, 0, 65536, 0, 0, 0), +(16277, 0, 0, 0, 0, 0, 0, 65536, 0, 0, 0), +(16278, 0, 0, 0, 0, 0, 0, 65536, 0, 0, 0), +(16279, 0, 0, 0, 0, 0, 0, 65536, 0, 0, 0), +(16280, 0, 0, 0, 0, 0, 0, 65536, 0, 0, 0), +(16281, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0), +(16282, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0), +(16283, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0), +(16284, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0), +(16487, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0), +(16489, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0), +(16492, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0), +(16550, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0), +(16620, 0, 0, 0, 0, 0, 0, 0, 0, 0, 30), +(16624, 0, 0, 0, 0, 0, 0, 64, 0, 0, 0), +(16850, 0, 7, 4, 0, 0, 0, 0, 0, 0, 0), +(16864, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0), +(16880, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0), +(16923, 0, 7, 4, 0, 0, 0, 0, 0, 0, 0), +(16924, 0, 7, 4, 0, 0, 0, 0, 0, 0, 0), +(16952, 0, 7, 233472, 1024, 0, 0, 2, 0, 0, 0), +(16954, 0, 7, 233472, 1024, 0, 0, 2, 0, 0, 0), +(16958, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0), +(16961, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0), +(17106, 0, 7, 524288, 0, 0, 0, 0, 0, 0, 0), +(17107, 0, 7, 524288, 0, 0, 0, 0, 0, 0, 0), +(17108, 0, 7, 524288, 0, 0, 0, 0, 0, 0, 0), +(17364, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0), +(17495, 0, 0, 0, 0, 0, 0, 64, 0, 0, 0), +(17793, 0, 5, 1, 0, 0, 0, 2, 0, 0, 0), +(17794, 32, 0, 0, 0, 0, 0, 1, 0, 0, 0), +(17796, 0, 5, 1, 0, 0, 0, 2, 0, 0, 0), +(17797, 32, 0, 0, 0, 0, 0, 0, 0, 0, 0), +(17798, 32, 0, 0, 0, 0, 0, 0, 0, 0, 0), +(17799, 32, 0, 0, 0, 0, 0, 0, 0, 0, 0), +(17800, 32, 0, 0, 0, 0, 0, 0, 0, 0, 0), +(17801, 0, 5, 1, 0, 0, 0, 2, 0, 0, 0), +(17802, 0, 5, 1, 0, 0, 0, 2, 0, 0, 0), +(17803, 0, 5, 1, 0, 0, 0, 2, 0, 0, 0), +(18073, 0, 5, 96, 128, 0, 0, 0, 0, 0, 0), +(18094, 0, 5, 10, 0, 0, 0, 0, 0, 0, 0), +(18095, 0, 5, 10, 0, 0, 0, 0, 0, 0, 0), +(18096, 0, 5, 96, 128, 0, 0, 0, 0, 0, 0), +(18119, 0, 5, 997, 4288, 0, 0, 0, 0, 0, 0), +(18120, 0, 5, 997, 4288, 0, 0, 0, 0, 0, 0), +(18820, 0, 0, 0, 0, 0, 0, 65536, 0, 0, 0), +(19184, 0, 9, 20, 8192, 0, 0, 0, 0, 0, 0), +(19228, 0, 0, 64, 0, 0, 0, 0, 0, 0, 0), +(19232, 0, 9, 64, 0, 0, 0, 0, 0, 0, 0), +(19233, 0, 9, 64, 0, 0, 0, 0, 0, 0, 0), +(19387, 0, 9, 20, 8192, 0, 0, 0, 0, 0, 0), +(19388, 0, 9, 20, 8192, 0, 0, 0, 0, 0, 0), +(19572, 0, 9, 8388608, 0, 0, 16384, 0, 0, 0, 0), +(19573, 0, 9, 8388608, 0, 0, 16384, 0, 0, 0, 0), +(20049, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0), +(20056, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0), +(20057, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0), +(20128, 0, 0, 0, 0, 0, 0, 64, 0, 0, 0), +(20131, 0, 0, 0, 0, 0, 0, 64, 0, 0, 0), +(20132, 0, 0, 0, 0, 0, 0, 64, 0, 0, 0), +(20164, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0), +(20165, 0, 0, 0, 0, 0, 0, 0, 20, 0, 0), +(20166, 0, 0, 0, 0, 0, 0, 0, 20, 0, 0), +(20182, 0, 0, 0, 0, 0, 0, 64, 0, 0, 0), +(20210, 0, 10, 3221225472, 65536, 0, 0, 2, 0, 0, 0), +(20212, 0, 10, 3221225472, 65536, 0, 0, 2, 0, 0, 0), +(20213, 0, 10, 3221225472, 65536, 0, 0, 2, 0, 0, 0), +(20214, 0, 10, 3221225472, 65536, 0, 0, 2, 0, 0, 0), +(20215, 0, 10, 3221225472, 65536, 0, 0, 2, 0, 0, 0), +(20234, 0, 10, 32768, 0, 0, 0, 0, 0, 0, 0), +(20235, 0, 10, 32768, 0, 0, 0, 0, 0, 0, 0), +(20375, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0), +(20500, 0, 4, 268435456, 0, 0, 0, 0, 0, 0, 0), +(20501, 0, 4, 268435456, 0, 0, 0, 0, 0, 0, 0), +(20705, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0), +(20911, 0, 0, 0, 0, 0, 0, 112, 0, 0, 0), +(20925, 0, 0, 0, 0, 0, 0, 64, 0, 0, 0), +(20927, 0, 0, 0, 0, 0, 0, 64, 0, 0, 0), +(20928, 0, 0, 0, 0, 0, 0, 64, 0, 0, 0), +(21185, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10), +(21882, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0), +(21890, 0, 4, 712396527, 876, 0, 0, 0, 0, 0, 0), +(22007, 0, 3, 2097185, 0, 0, 0, 65536, 0, 0, 0), +(22618, 0, 0, 0, 0, 0, 0, 64, 0, 0, 0), +(22648, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0), +(23547, 0, 0, 0, 0, 0, 0, 32, 0, 0, 0), +(23548, 0, 0, 0, 0, 0, 0, 64, 0, 0, 0), +(23551, 0, 11, 192, 0, 0, 0, 0, 0, 0, 0), +(23552, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3), +(23572, 0, 11, 192, 0, 0, 0, 0, 0, 0, 0), +(23578, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0), +(23581, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0), +(23602, 0, 0, 0, 0, 0, 0, 64, 0, 0, 0), +(23686, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0), +(23688, 0, 0, 0, 0, 0, 0, 65536, 0, 0, 0), +(23689, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0), +(23695, 0, 4, 2, 0, 0, 0, 0, 0, 0, 0), +(23721, 0, 9, 2048, 0, 0, 0, 0, 0, 0, 0), +(23920, 0, 0, 0, 0, 0, 0, 2048, 0, 0, 0), +(24353, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0), +(24389, 0, 3, 12582935, 64, 0, 0, 0, 0, 0, 0), +(24398, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3), +(24658, 0, 0, 0, 0, 0, 82192, 0, 0, 0, 0), +(24905, 0, 0, 0, 0, 0, 0, 0, 15, 0, 0), +(24932, 0, 0, 0, 0, 0, 0, 2, 0, 0, 6), +(25050, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0), +(25296, 0, 9, 1, 0, 0, 0, 0, 0, 0, 0), +(25469, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3), +(25472, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3), +(25669, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0), +(25899, 0, 0, 0, 0, 0, 0, 112, 0, 0, 0), +(25988, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0), +(26016, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0), +(26107, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0), +(26119, 0, 10, 2416967683, 0, 0, 0, 65536, 0, 0, 0), +(26128, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0), +(26135, 0, 10, 8388608, 0, 0, 0, 65536, 0, 0, 0), +(26480, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0), +(26605, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0), +(27044, 0, 9, 1, 0, 0, 0, 0, 0, 0, 0), +(27131, 0, 0, 0, 0, 0, 0, 1024, 0, 0, 0), +(27179, 0, 0, 0, 0, 0, 0, 64, 0, 0, 0), +(27419, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0), +(27498, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0), +(27521, 0, 0, 0, 0, 0, 0, 65536, 0, 0, 0), +(27656, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0), +(27774, 0, 0, 0, 0, 0, 0, 65536, 0, 0, 0), +(27787, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0), +(27811, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0), +(27815, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0), +(27816, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0), +(28592, 16, 3, 0, 0, 0, 0, 0, 0, 0, 0), +(28593, 16, 3, 0, 0, 0, 0, 0, 0, 0, 0), +(28716, 0, 7, 16, 0, 0, 294912, 0, 0, 0, 0), +(28719, 0, 7, 32, 0, 0, 0, 2, 0, 0, 0), +(28744, 0, 7, 64, 0, 0, 278528, 0, 0, 0, 0), +(28752, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0), +(28789, 0, 10, 3221225472, 0, 0, 0, 0, 0, 0, 0), +(28802, 0, 0, 0, 0, 0, 0, 65536, 0, 0, 0), +(28809, 0, 6, 4096, 0, 0, 0, 2, 0, 0, 0), +(28812, 0, 8, 33554438, 0, 0, 0, 2, 0, 0, 0), +(28816, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0), +(28823, 0, 11, 192, 0, 0, 0, 0, 0, 0, 0), +(28847, 0, 7, 32, 0, 0, 0, 0, 0, 0, 0), +(28849, 0, 11, 128, 0, 0, 0, 0, 0, 0, 0), +(29074, 20, 3, 0, 0, 0, 0, 2, 0, 0, 0), +(29075, 20, 3, 0, 0, 0, 0, 2, 0, 0, 0), +(29076, 20, 3, 0, 0, 0, 0, 2, 0, 0, 0), +(29150, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0), +(29179, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0), +(29180, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0), +(29385, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0), +(29441, 0, 0, 0, 0, 0, 0, 8, 0, 0, 1), +(29444, 0, 0, 0, 0, 0, 0, 8, 0, 0, 1), +(29455, 0, 0, 0, 0, 0, 0, 64, 0, 0, 0), +(29501, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0), +(29593, 0, 0, 0, 0, 0, 0, 112, 0, 0, 0), +(29594, 0, 0, 0, 0, 0, 0, 112, 0, 0, 0), +(29624, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0), +(29625, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0), +(29626, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0), +(29632, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0), +(29633, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0), +(29634, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0), +(29635, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0), +(29636, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0), +(29637, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0), +(29801, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0), +(29834, 0, 0, 0, 0, 0, 0, 65536, 0, 0, 0), +(29838, 0, 0, 0, 0, 0, 0, 65536, 0, 0, 0), +(29977, 0, 3, 12582935, 64, 0, 0, 0, 0, 0, 0), +(30003, 0, 0, 0, 0, 0, 0, 2048, 0, 0, 0), +(30160, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0), +(30293, 0, 5, 897, 192, 0, 0, 0, 0, 0, 0), +(30295, 0, 5, 897, 192, 0, 0, 0, 0, 0, 0), +(30296, 0, 5, 897, 192, 0, 0, 0, 0, 0, 0), +(30299, 36, 0, 0, 0, 0, 0, 0, 0, 0, 0), +(30301, 36, 0, 0, 0, 0, 0, 0, 0, 0, 0), +(30302, 36, 0, 0, 0, 0, 0, 0, 0, 0, 0), +(30675, 0, 11, 3, 0, 0, 0, 0, 0, 0, 0), +(30678, 0, 11, 3, 0, 0, 0, 0, 0, 0, 0), +(30679, 0, 11, 3, 0, 0, 0, 0, 0, 0, 0), +(30680, 0, 11, 3, 0, 0, 0, 0, 0, 0, 0), +(30681, 0, 11, 3, 0, 0, 0, 0, 0, 0, 0), +(30701, 28, 0, 0, 0, 0, 0, 0, 0, 0, 0), +(30705, 28, 0, 0, 0, 0, 0, 0, 0, 0, 0), +(30802, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0), +(30803, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0), +(30804, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0), +(30805, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0), +(30806, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0), +(30807, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0), +(30808, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0), +(30809, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0), +(30810, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0), +(30811, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0), +(30823, 0, 0, 0, 0, 0, 0, 0, 10.5, 0, 0), +(30881, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5), +(30883, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5), +(30884, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5), +(30885, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5), +(30886, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5), +(30937, 32, 0, 0, 0, 0, 0, 0, 0, 0, 0), +(31124, 0, 8, 536870926, 0, 0, 0, 0, 0, 0, 0), +(31126, 0, 8, 536870926, 0, 0, 0, 0, 0, 0, 0), +(31244, 0, 8, 4063232, 9, 0, 0, 4, 0, 0, 0), +(31245, 0, 8, 4063232, 9, 0, 0, 4, 0, 0, 0), +(31394, 32, 0, 0, 0, 0, 0, 0, 0, 0, 0), +(31569, 0, 3, 65536, 0, 0, 0, 0, 0, 0, 0), +(31570, 0, 3, 65536, 0, 0, 0, 0, 0, 0, 0), +(31785, 0, 0, 0, 0, 0, 34816, 0, 0, 0, 0), +(31794, 0, 0, 0, 0, 0, 0, 65536, 0, 0, 0), +(31801, 0, 0, 0, 0, 0, 0, 0, 20, 0, 0), +(31833, 0, 10, 2147483648, 0, 0, 0, 0, 0, 0, 0), +(31835, 0, 10, 2147483648, 0, 0, 0, 0, 0, 0, 0), +(31836, 0, 10, 2147483648, 0, 0, 0, 0, 0, 0, 0), +(31871, 0, 10, 16, 0, 0, 16384, 0, 0, 0, 0), +(31872, 0, 10, 16, 0, 0, 16384, 0, 0, 0, 0), +(31876, 0, 10, 8388608, 0, 0, 0, 0, 0, 0, 0), +(31877, 0, 10, 8388608, 0, 0, 0, 0, 0, 0, 0), +(31878, 0, 10, 8388608, 0, 0, 0, 0, 0, 0, 0), +(31904, 0, 0, 0, 0, 0, 0, 64, 0, 0, 0), +(32385, 0, 5, 1026, 17, 0, 0, 0, 0, 0, 0), +(32387, 0, 5, 1026, 17, 0, 0, 0, 0, 0, 0), +(32392, 0, 5, 1026, 17, 0, 0, 0, 0, 0, 0), +(32393, 0, 5, 1026, 17, 0, 0, 0, 0, 0, 0), +(32394, 0, 5, 1026, 17, 0, 0, 0, 0, 0, 0), +(32409, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), +(32587, 0, 0, 0, 0, 0, 0, 64, 0, 0, 0), +(32593, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3), +(32594, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3), +(32642, 0, 0, 0, 0, 0, 0, 64, 0, 0, 0), +(32734, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3), +(32748, 0, 8, 0, 1, 0, 320, 0, 0, 0, 0), +(32776, 0, 0, 0, 0, 0, 0, 64, 0, 0, 0), +(32777, 0, 0, 0, 0, 0, 0, 64, 0, 0, 0), +(32837, 0, 0, 0, 0, 0, 0, 65536, 0, 0, 45), +(32844, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0), +(32885, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0), +(33076, 0, 0, 0, 0, 0, 656040, 0, 0, 0, 0), +(33089, 0, 0, 0, 0, 0, 0, 64, 0, 0, 0), +(33127, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0), +(33142, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0), +(33145, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0), +(33146, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0), +(33150, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0), +(33151, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0), +(33154, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0), +(33191, 0, 6, 8421376, 1024, 0, 0, 0, 0, 0, 0), +(33192, 0, 6, 8421376, 1024, 0, 0, 0, 0, 0, 0), +(33193, 0, 6, 8421376, 1024, 0, 0, 0, 0, 0, 0), +(33299, 0, 0, 0, 0, 0, 0, 65536, 0, 0, 0), +(33510, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0), +(33648, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0), +(33719, 0, 0, 0, 0, 0, 0, 2048, 0, 0, 0), +(33736, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3), +(33746, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10), +(33757, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3), +(33759, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10), +(33776, 0, 0, 0, 0, 0, 34816, 0, 0, 0, 0), +(33881, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0), +(33882, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0), +(33883, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0), +(33953, 0, 0, 0, 0, 0, 16384, 0, 0, 0, 45), +(34080, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0), +(34138, 0, 11, 128, 0, 0, 0, 0, 0, 0, 0), +(34139, 0, 10, 1073741824, 0, 0, 0, 0, 0, 0, 0), +(34258, 0, 10, 1024, 8, 0, 0, 0, 0, 0, 0), +(34262, 0, 10, 8388608, 0, 0, 0, 65536, 0, 0, 0), +(34320, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0), +(34355, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3), +(34497, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0), +(34498, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0), +(34499, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0), +(34500, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0), +(34502, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0), +(34503, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0), +(34584, 0, 0, 0, 0, 0, 0, 0, 0, 0, 30), +(34586, 0, 0, 0, 0, 0, 0, 0, 1.5, 0, 0), +(34598, 0, 0, 0, 0, 0, 0, 0, 0, 0, 45), +(34749, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0), +(34753, 0, 6, 6144, 4, 0, 0, 2, 0, 0, 0), +(34774, 0, 0, 0, 0, 0, 0, 0, 1.5, 0, 20), +(34783, 0, 0, 0, 0, 0, 0, 2048, 0, 0, 0), +(34827, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3), +(34859, 0, 6, 6144, 4, 0, 0, 2, 0, 0, 0), +(34860, 0, 6, 6144, 4, 0, 0, 2, 0, 0, 0), +(34914, 0, 6, 8192, 0, 0, 0, 0, 0, 0, 0), +(34916, 0, 6, 8192, 0, 0, 0, 0, 0, 0, 0), +(34917, 0, 6, 8192, 0, 0, 0, 0, 0, 0, 0), +(34935, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8), +(34938, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8), +(34939, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8), +(34950, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0), +(34954, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0), +(35077, 0, 0, 0, 0, 0, 0, 0, 0, 0, 60), +(35080, 0, 0, 0, 0, 0, 0, 0, 1, 0, 60), +(35083, 0, 0, 0, 0, 0, 0, 0, 0, 0, 60), +(35086, 0, 0, 0, 0, 0, 0, 0, 0, 0, 60), +(35100, 0, 9, 12289, 0, 0, 65856, 0, 0, 0, 0), +(35102, 0, 9, 12289, 0, 0, 0, 0, 0, 0, 0), +(35103, 0, 9, 12289, 0, 0, 0, 0, 0, 0, 0), +(35121, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0), +(36096, 0, 0, 0, 0, 0, 0, 2048, 0, 0, 0), +(36111, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), +(36541, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0), +(37165, 0, 8, 2098176, 0, 0, 0, 0, 0, 0, 0), +(37168, 0, 8, 4063232, 9, 0, 0, 0, 0, 0, 0), +(37170, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0), +(37173, 0, 8, 750519704, 262, 0, 0, 0, 0, 0, 30), +(37189, 0, 10, 3221225472, 0, 0, 0, 2, 0, 0, 60), +(37193, 0, 0, 0, 0, 0, 0, 64, 0, 0, 0), +(37195, 0, 10, 8388608, 0, 0, 0, 0, 0, 0, 0), +(37197, 0, 0, 0, 0, 0, 0, 65536, 0, 0, 45), +(37213, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0), +(37214, 0, 0, 0, 0, 0, 0, 65536, 0, 0, 0), +(37227, 0, 11, 448, 0, 0, 0, 2, 0, 0, 60), +(37237, 0, 11, 1, 0, 0, 0, 2, 0, 0, 0), +(37247, 8, 0, 0, 0, 0, 0, 65536, 0, 0, 45), +(37377, 32, 0, 0, 0, 0, 0, 65536, 0, 0, 0), +(37379, 32, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(37384, 0, 5, 1, 0, 0, 0, 0, 0, 0, 0), +(37443, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0), +(37514, 0, 0, 0, 0, 0, 0, 32, 0, 0, 0), +(37516, 0, 4, 1024, 0, 0, 0, 0, 0, 0, 0), +(37519, 0, 0, 0, 0, 0, 0, 48, 0, 0, 0), +(37523, 0, 0, 0, 0, 0, 0, 64, 0, 0, 0), +(37528, 0, 4, 4, 0, 0, 0, 0, 0, 0, 0), +(37536, 0, 4, 65536, 0, 0, 0, 0, 0, 0, 0), +(37568, 0, 6, 2048, 0, 0, 0, 0, 0, 0, 0), +(37594, 0, 6, 4096, 0, 0, 0, 0, 0, 0, 0), +(37600, 0, 0, 0, 0, 0, 0, 65536, 0, 0, 0), +(37601, 0, 0, 0, 0, 0, 0, 65536, 0, 0, 0), +(37603, 0, 6, 32768, 0, 0, 0, 0, 0, 0, 0), +(37655, 0, 0, 0, 0, 0, 0, 0, 0, 0, 60), +(37657, 0, 0, 0, 0, 0, 0, 2, 0, 0, 3), +(38026, 1, 0, 0, 0, 0, 0, 256, 0, 0, 0), +(38031, 0, 0, 0, 0, 0, 0, 64, 0, 0, 0), +(38290, 0, 0, 0, 0, 0, 0, 0, 1.6, 0, 0), +(38326, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0), +(38327, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0), +(38334, 0, 0, 0, 0, 0, 0, 0, 0, 0, 60), +(38347, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0), +(38350, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0), +(38394, 0, 5, 6, 0, 0, 0, 0, 0, 0, 0), +(38857, 0, 0, 0, 0, 0, 0, 65536, 0, 0, 0), +(39027, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3), +(39372, 48, 0, 0, 0, 0, 0, 0, 0, 0, 0), +(39437, 4, 5, 4964, 192, 0, 0, 65536, 0, 0, 0), +(39442, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0), +(39443, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0), +(39530, 0, 0, 0, 0, 0, 0, 65536, 0, 0, 0), +(39958, 0, 0, 0, 0, 0, 0, 0, 0.7, 0, 40), +(40407, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0), +(40438, 0, 6, 32832, 0, 0, 0, 0, 0, 0, 0), +(40442, 0, 7, 20, 1088, 0, 0, 0, 0, 0, 0), +(40444, 0, 0, 0, 0, 0, 0, 64, 0, 0, 0), +(40458, 0, 4, 33554432, 1537, 0, 0, 0, 0, 0, 0), +(40463, 0, 11, 129, 16, 0, 0, 0, 0, 0, 0), +(40470, 0, 10, 3229614080, 0, 0, 0, 0, 0, 0, 0), +(40475, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0), +(40478, 0, 5, 2, 0, 0, 0, 0, 0, 0, 0), +(40482, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0), +(40485, 0, 9, 0, 1, 0, 0, 0, 0, 0, 0), +(40899, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3), +(41034, 0, 0, 0, 0, 0, 0, 1024, 0, 0, 0), +(41260, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10), +(41262, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10), +(41381, 0, 0, 0, 0, 0, 0, 256, 0, 0, 0), +(41393, 0, 0, 0, 0, 0, 0, 32, 0, 0, 0), +(41434, 0, 0, 0, 0, 0, 0, 0, 2, 0, 45), +(41469, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0), +(41635, 0, 0, 0, 0, 0, 656040, 0, 0, 0, 0), +(41989, 0, 0, 0, 0, 0, 0, 0, 0.5, 0, 0), +(42083, 0, 0, 0, 0, 0, 0, 2, 0, 0, 45), +(42135, 0, 0, 0, 0, 0, 0, 0, 0, 0, 90), +(42136, 0, 0, 0, 0, 0, 0, 0, 0, 0, 90), +(42368, 0, 10, 1073741824, 0, 0, 0, 0, 0, 0, 0), +(42370, 0, 11, 64, 0, 0, 0, 0, 0, 0, 0), +(42770, 0, 0, 0, 0, 0, 0, 65536, 0, 0, 0), +(43019, 0, 0, 0, 0, 0, 0, 1024, 0, 0, 0), +(43020, 0, 0, 0, 0, 0, 0, 1024, 0, 0, 0), +(43338, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0), +(43443, 0, 0, 0, 0, 0, 0, 2048, 0, 0, 0), +(43726, 0, 10, 1073741824, 0, 0, 0, 0, 0, 0, 0), +(43728, 0, 11, 128, 0, 0, 0, 0, 0, 0, 0), +(43737, 0, 7, 0, 1088, 0, 0, 0, 0, 0, 10), +(43739, 0, 7, 2, 0, 0, 0, 0, 0, 0, 0), +(43741, 0, 10, 2147483648, 0, 0, 0, 0, 0, 0, 0), +(43745, 0, 10, 0, 512, 0, 0, 0, 0, 0, 0), +(43748, 0, 11, 2416967680, 0, 0, 0, 0, 0, 0, 0), +(43750, 0, 11, 1, 0, 0, 0, 0, 0, 0, 0), +(43819, 0, 0, 0, 0, 0, 0, 65536, 0, 0, 0), +(44394, 0, 0, 0, 0, 0, 0, 1024, 0, 0, 0), +(44395, 0, 0, 0, 0, 0, 0, 1024, 0, 0, 0), +(44396, 0, 0, 0, 0, 0, 0, 1024, 0, 0, 0), +(44401, 0, 3, 2097152, 0, 0, 0, 4095, 0, 0, 0), +(44404, 0, 3, 536870945, 36864, 0, 0, 0, 0, 0, 0), +(44442, 0, 3, 8388608, 64, 0, 0, 65536, 0, 0, 1), +(44443, 0, 3, 8388608, 64, 0, 0, 65536, 0, 0, 1), +(44445, 0, 3, 19, 4096, 0, 0, 0, 0, 0, 0), +(44446, 0, 3, 19, 4096, 0, 0, 0, 0, 0, 0), +(44448, 0, 3, 19, 4096, 0, 0, 0, 0, 0, 0), +(44449, 0, 3, 551686775, 102472, 0, 0, 2, 0, 0, 0), +(44469, 0, 3, 551686775, 102472, 0, 0, 2, 0, 0, 0), +(44470, 0, 3, 551686775, 102472, 0, 0, 2, 0, 0, 0), +(44471, 0, 3, 551686775, 102472, 0, 0, 2, 0, 0, 0), +(44472, 0, 3, 551686775, 102472, 0, 0, 2, 0, 0, 0), +(44546, 0, 3, 33555104, 0, 0, 0, 0, 0, 0, 0), +(44548, 0, 3, 33555104, 0, 0, 0, 0, 0, 0, 0), +(44549, 0, 3, 33555104, 0, 0, 0, 0, 0, 0, 0), +(44835, 0, 7, 0, 128, 0, 16, 0, 0, 0, 0), +(45054, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15), +(45057, 0, 0, 0, 0, 0, 0, 0, 0, 0, 30), +(45234, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0), +(45243, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0), +(45244, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0), +(45354, 0, 0, 0, 0, 0, 0, 0, 0, 0, 45), +(45481, 0, 0, 0, 0, 0, 0, 0, 0, 0, 45), +(45482, 0, 0, 0, 0, 0, 0, 0, 0, 0, 45), +(45483, 0, 0, 0, 0, 0, 0, 0, 0, 0, 45), +(45484, 0, 0, 0, 0, 0, 16384, 0, 0, 0, 45), +(46025, 32, 6, 0, 0, 0, 0, 0, 0, 0, 0), +(46092, 0, 10, 1073741824, 0, 0, 0, 0, 0, 0, 0), +(46098, 0, 11, 128, 0, 0, 0, 0, 0, 0, 0), +(46569, 0, 0, 0, 0, 0, 0, 0, 0, 0, 45), +(46662, 0, 0, 0, 0, 0, 0, 0, 0, 0, 20), +(46832, 0, 7, 1, 0, 0, 0, 65536, 0, 0, 0), +(46854, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0), +(46855, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0), +(46867, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0), +(46913, 0, 4, 0, 1024, 0, 0, 2, 0, 0, 0), +(46914, 0, 4, 0, 1024, 0, 0, 2, 0, 0, 0), +(46915, 0, 4, 0, 1024, 0, 0, 2, 0, 0, 0), +(46916, 0, 4, 0, 1024, 0, 0, 2, 0, 0, 0), +(46951, 0, 4, 1024, 64, 0, 0, 0, 0, 0, 0), +(46952, 0, 0, 1024, 64, 0, 0, 0, 0, 0, 0), +(46953, 0, 0, 1024, 64, 0, 0, 0, 0, 0, 0), +(47195, 0, 5, 2, 0, 0, 0, 0, 0, 0, 30), +(47196, 0, 5, 2, 0, 0, 0, 0, 0, 0, 30), +(47197, 0, 5, 2, 0, 0, 0, 0, 0, 0, 30), +(47201, 0, 5, 8, 262144, 0, 0, 65536, 0, 0, 0), +(47202, 0, 5, 8, 262144, 0, 0, 0, 0, 0, 0), +(47203, 0, 5, 8, 262144, 0, 0, 0, 0, 0, 0), +(47204, 0, 5, 8, 262144, 0, 0, 0, 0, 0, 0), +(47205, 0, 5, 8, 262144, 0, 0, 0, 0, 0, 0), +(47232, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0), +(47234, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0), +(47235, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0), +(47245, 32, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(47246, 32, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(47247, 32, 5, 0, 0, 0, 0, 0, 0, 0, 0), +(47258, 0, 5, 0, 8388608, 0, 0, 65536, 0, 0, 0), +(47259, 0, 5, 0, 8388608, 0, 0, 65536, 0, 0, 0), +(47260, 0, 5, 0, 8388608, 0, 0, 65536, 0, 0, 0), +(47263, 32, 5, 0, 0, 0, 0, 2, 0, 0, 20), +(47264, 32, 5, 0, 0, 0, 0, 2, 0, 0, 20), +(47265, 32, 5, 0, 0, 0, 0, 2, 0, 0, 20), +(47509, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0), +(47511, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0), +(47515, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0), +(47516, 0, 6, 6144, 65536, 0, 0, 0, 0, 0, 0), +(47517, 0, 6, 6144, 65536, 0, 0, 0, 0, 0, 0), +(47535, 0, 6, 6144, 8388608, 0, 0, 0, 0, 0, 0), +(47536, 0, 6, 6144, 8388608, 0, 0, 0, 0, 0, 0), +(47537, 0, 6, 6144, 8388608, 0, 0, 0, 0, 0, 0), +(47538, 0, 6, 6144, 8388608, 0, 0, 0, 0, 0, 0), +(47539, 0, 6, 6144, 8388608, 0, 0, 0, 0, 0, 0), +(47549, 0, 6, 0, 131072, 0, 0, 0, 0, 0, 0), +(47551, 0, 6, 0, 131072, 0, 0, 0, 0, 0, 0), +(47552, 0, 6, 0, 131072, 0, 0, 0, 0, 0, 0), +(47555, 0, 6, 6144, 0, 0, 0, 0, 0, 0, 0), +(47556, 0, 6, 6144, 0, 0, 0, 0, 0, 0, 0), +(47557, 0, 6, 6144, 0, 0, 0, 0, 0, 0, 0), +(47572, 0, 6, 65536, 0, 0, 0, 0, 0, 0, 0), +(47580, 0, 6, 0, 0, 64, 0, 65536, 0, 0, 0), +(47581, 0, 6, 0, 0, 64, 0, 65536, 0, 0, 0), +(47582, 0, 6, 0, 0, 64, 0, 65536, 0, 0, 0), +(48110, 0, 0, 0, 0, 0, 656040, 0, 0, 0, 0), +(48111, 0, 0, 0, 0, 0, 656040, 0, 0, 0, 0), +(48112, 0, 0, 0, 0, 0, 656040, 0, 0, 0, 0), +(48113, 0, 0, 0, 0, 0, 656040, 0, 0, 0, 0), +(48159, 0, 6, 8192, 0, 0, 0, 0, 0, 0, 0), +(48160, 0, 6, 8192, 0, 0, 0, 0, 0, 0, 0), +(48483, 0, 7, 34816, 1088, 0, 0, 0, 0, 0, 0), +(48484, 0, 7, 34816, 1088, 0, 0, 0, 0, 0, 0), +(48485, 0, 7, 34816, 1088, 0, 0, 0, 0, 0, 0), +(48496, 0, 7, 96, 33554434, 0, 0, 2, 0, 0, 0), +(48499, 0, 7, 96, 33554434, 0, 0, 2, 0, 0, 0), +(48500, 0, 7, 96, 33554434, 0, 0, 2, 0, 0, 0), +(48506, 0, 7, 5, 0, 0, 0, 0, 0, 0, 0), +(48510, 0, 7, 5, 0, 0, 0, 0, 0, 0, 0), +(48511, 0, 7, 5, 0, 0, 0, 0, 0, 0, 0), +(48516, 0, 7, 5, 0, 0, 0, 2, 0, 0, 30), +(48521, 0, 7, 5, 0, 0, 0, 2, 0, 0, 30), +(48525, 0, 7, 5, 0, 0, 0, 2, 0, 0, 30), +(48833, 0, 7, 0, 1088, 0, 0, 0, 0, 0, 0), +(48835, 0, 10, 0, 8, 0, 0, 0, 0, 0, 0), +(48837, 0, 11, 2416967680, 0, 0, 0, 0, 0, 0, 0), +(48951, 0, 0, 0, 0, 0, 0, 64, 0, 0, 0), +(48952, 0, 0, 0, 0, 0, 0, 64, 0, 0, 0), +(48988, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0), +(49018, 0, 15, 20971520, 0, 0, 0, 0, 0, 0, 0), +(49137, 0, 15, 0, 16384, 0, 0, 0, 0, 0, 0), +(49188, 0, 15, 2, 0, 0, 0, 0, 0, 0, 0), +(49208, 0, 15, 4456448, 0, 0, 0, 0, 0, 0, 0), +(49222, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3), +(49280, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3), +(49281, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3), +(49283, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3), +(49284, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3), +(49503, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0), +(49504, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0), +(49529, 0, 15, 20971520, 0, 0, 0, 0, 0, 0, 0), +(49530, 0, 15, 20971520, 0, 0, 0, 0, 0, 0, 0), +(49531, 0, 15, 20971520, 0, 0, 0, 0, 0, 0, 0), +(49532, 0, 15, 20971520, 0, 0, 0, 0, 0, 0, 0), +(49622, 0, 0, 0, 0, 0, 0, 0, 0, 0, 60), +(49657, 0, 15, 0, 16384, 0, 0, 0, 0, 0, 0), +(50781, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0), +(51123, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0), +(51127, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0), +(51128, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0), +(51129, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0), +(51130, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0), +(51346, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10), +(51349, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10), +(51352, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10), +(51359, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10), +(51466, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0), +(51470, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0), +(51474, 0, 0, 0, 0, 0, 0, 65536, 0, 0, 0), +(51478, 0, 0, 0, 0, 0, 0, 65536, 0, 0, 0), +(51479, 0, 0, 0, 0, 0, 0, 65536, 0, 0, 0), +(51556, 0, 11, 192, 0, 16, 0, 2, 0, 0, 0), +(51557, 0, 11, 192, 0, 16, 0, 2, 0, 0, 0), +(51558, 0, 11, 192, 0, 16, 0, 2, 0, 0, 0), +(51562, 0, 11, 256, 0, 16, 0, 0, 0, 0, 0), +(51563, 0, 11, 256, 0, 16, 0, 0, 0, 0, 0), +(51564, 0, 11, 256, 0, 16, 0, 0, 0, 0, 0), +(51565, 0, 11, 256, 0, 16, 0, 0, 0, 0, 0), +(51566, 0, 11, 256, 0, 16, 0, 0, 0, 0, 0), +(51625, 0, 8, 268476416, 0, 0, 0, 0, 0, 0, 0), +(51626, 0, 8, 268476416, 0, 0, 0, 0, 0, 0, 0), +(51627, 0, 0, 0, 0, 0, 0, 112, 0, 0, 0), +(51628, 0, 0, 0, 0, 0, 0, 112, 0, 0, 0), +(51629, 0, 0, 0, 0, 0, 0, 112, 0, 0, 0), +(51634, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0), +(51635, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0), +(51636, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0), +(51664, 0, 8, 131072, 8, 0, 0, 0, 0, 0, 0), +(51665, 0, 8, 131072, 8, 0, 0, 0, 0, 0, 0), +(51667, 0, 8, 131072, 8, 0, 0, 0, 0, 0, 0), +(51668, 0, 8, 131072, 8, 0, 0, 0, 0, 0, 0), +(51669, 0, 8, 131072, 8, 0, 0, 0, 0, 0, 0), +(51672, 0, 0, 0, 0, 0, 0, 16, 0, 0, 1), +(51674, 0, 0, 0, 0, 0, 0, 16, 0, 0, 1), +(51679, 0, 8, 1, 1, 0, 0, 0, 0, 0, 0), +(51692, 0, 8, 512, 0, 0, 0, 2, 0, 0, 0), +(51696, 0, 8, 512, 0, 0, 0, 2, 0, 0, 0), +(51698, 0, 0, 0, 0, 0, 0, 2, 0, 0, 1), +(51700, 0, 0, 0, 0, 0, 0, 2, 0, 0, 1), +(51701, 0, 0, 0, 0, 0, 0, 2, 0, 0, 1), +(51940, 0, 0, 0, 0, 0, 0, 0, 0, 20, 0), +(51989, 0, 0, 0, 0, 0, 0, 0, 0, 20, 0), +(52004, 0, 0, 0, 0, 0, 0, 0, 0, 20, 0), +(52005, 0, 0, 0, 0, 0, 0, 0, 0, 20, 0), +(52007, 0, 0, 0, 0, 0, 0, 0, 0, 20, 0), +(52008, 0, 0, 0, 0, 0, 0, 0, 0, 20, 0), +(52020, 0, 7, 32768, 1048576, 0, 0, 0, 0, 0, 0), +(52127, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3), +(52129, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3), +(52131, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3), +(52134, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3), +(52136, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3), +(52138, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3), +(52420, 0, 0, 0, 0, 0, 0, 0, 0, 0, 30), +(52423, 0, 0, 0, 0, 0, 0, 32, 0, 0, 0), +(52795, 0, 6, 1, 0, 0, 0, 0, 0, 0, 0), +(52797, 0, 6, 1, 0, 0, 0, 0, 0, 0, 0), +(52798, 0, 6, 1, 0, 0, 0, 0, 0, 0, 0), +(52799, 0, 6, 1, 0, 0, 0, 0, 0, 0, 0), +(52800, 0, 6, 1, 0, 0, 0, 0, 0, 0, 0), +(52898, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0), +(53137, 0, 15, 20971520, 0, 0, 0, 0, 0, 0, 0), +(53138, 0, 15, 20971520, 0, 0, 0, 0, 0, 0, 0), +(53215, 0, 9, 1, 0, 0, 0, 0, 0, 0, 0), +(53216, 0, 9, 1, 0, 0, 0, 0, 0, 0, 0), +(53217, 0, 9, 1, 0, 0, 0, 0, 0, 0, 0), +(53221, 0, 9, 0, 1, 0, 0, 0, 0, 0, 0), +(53222, 0, 9, 0, 1, 0, 0, 0, 0, 0, 0), +(53224, 0, 9, 0, 1, 0, 0, 0, 0, 0, 0), +(53228, 0, 9, 32, 16777216, 0, 0, 0, 0, 0, 0), +(53232, 0, 9, 32, 16777216, 0, 0, 0, 0, 0, 0), +(53256, 0, 9, 2048, 8388609, 0, 0, 2, 0, 0, 0), +(53259, 0, 9, 2048, 8388609, 0, 0, 2, 0, 0, 0), +(53260, 0, 9, 2048, 8388609, 0, 0, 2, 0, 0, 0), +(53290, 0, 9, 2048, 2147483647, 0, 0, 2, 0, 0, 0), +(53291, 0, 9, 2048, 2147483647, 0, 0, 2, 0, 0, 0), +(53292, 0, 9, 2048, 2147483647, 0, 0, 2, 0, 0, 0), +(53293, 0, 9, 2048, 2147483647, 0, 0, 2, 0, 0, 0), +(53294, 0, 9, 2048, 2147483647, 0, 0, 2, 0, 0, 0), +(53380, 0, 10, 8388608, 131072, 0, 0, 2, 0, 0, 0), +(53381, 0, 10, 8388608, 131072, 0, 0, 2, 0, 0, 0), +(53382, 0, 10, 8388608, 131072, 0, 0, 2, 0, 0, 0), +(53383, 0, 10, 8388608, 131072, 0, 0, 2, 0, 0, 0), +(53384, 0, 10, 8388608, 131072, 0, 0, 2, 0, 0, 0), +(53486, 0, 10, 8388608, 163840, 0, 0, 2, 0, 0, 0), +(53488, 0, 10, 8388608, 163840, 0, 0, 2, 0, 0, 0), +(53501, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0), +(53502, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0), +(53503, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0), +(53551, 0, 10, 4096, 0, 0, 0, 0, 0, 0, 0), +(53552, 0, 10, 4096, 0, 0, 0, 0, 0, 0, 0), +(53553, 0, 10, 4096, 0, 0, 0, 0, 0, 0, 0), +(53569, 0, 10, 2097152, 0, 0, 0, 2, 0, 0, 0), +(53576, 0, 10, 2097152, 0, 0, 0, 2, 0, 0, 0), +(53601, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6), +(53671, 0, 10, 8388608, 0, 0, 0, 0, 0, 0, 0), +(53673, 0, 10, 8388608, 0, 0, 0, 0, 0, 0, 0), +(54149, 0, 10, 2097152, 0, 0, 0, 2, 0, 0, 0), +(54151, 0, 10, 8388608, 0, 0, 0, 0, 0, 0, 0), +(54154, 0, 10, 8388608, 0, 0, 0, 0, 0, 0, 0), +(54155, 0, 10, 8388608, 0, 0, 0, 0, 0, 0, 0), +(54278, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0), +(54486, 0, 0, 536870945, 36864, 0, 0, 0, 0, 0, 0), +(54488, 0, 0, 536870945, 36864, 0, 0, 0, 0, 0, 0), +(54489, 0, 0, 536870945, 36864, 0, 0, 0, 0, 0, 0), +(54490, 0, 0, 536870945, 36864, 0, 0, 0, 0, 0, 0), +(54738, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0), +(54747, 0, 0, 0, 0, 0, 0, 65536, 0, 0, 0), +(54749, 0, 0, 0, 0, 0, 0, 65536, 0, 0, 0), +(54754, 0, 7, 16, 0, 0, 0, 0, 0, 0, 0), +(54841, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0), +(54936, 0, 10, 1073741824, 0, 0, 0, 0, 0, 0, 0), +(54937, 0, 10, 2147483648, 0, 0, 0, 0, 0, 0, 0), +(54939, 0, 10, 32768, 0, 0, 0, 0, 0, 0, 0), +(55440, 0, 11, 64, 0, 0, 0, 0, 0, 0, 0), +(55620, 0, 15, 1, 134217728, 0, 0, 0, 0, 0, 0), +(55623, 0, 15, 1, 134217728, 0, 0, 0, 0, 0, 0), +(55666, 0, 15, 1, 0, 0, 0, 0, 0, 0, 0), +(55667, 0, 15, 1, 0, 0, 0, 0, 0, 0, 0), +(55668, 0, 15, 1, 0, 0, 0, 0, 0, 0, 0), +(55669, 0, 15, 1, 0, 0, 0, 0, 0, 0, 0), +(55670, 0, 15, 1, 0, 0, 0, 0, 0, 0, 0), +(55677, 0, 6, 0, 1, 0, 0, 0, 0, 0, 0), +(55680, 0, 6, 512, 0, 0, 0, 0, 0, 0, 0), +(55689, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0), +(56218, 0, 5, 2, 0, 0, 0, 0, 0, 0, 0), +(56333, 0, 9, 4, 0, 512, 0, 0, 0, 0, 0), +(56336, 0, 9, 4, 0, 512, 0, 0, 0, 0, 0), +(56337, 0, 9, 4, 0, 512, 0, 0, 0, 0, 0), +(56342, 0, 9, 16384, 0, 0, 0, 0, 0, 0, 0), +(56343, 0, 9, 16384, 0, 0, 0, 0, 0, 0, 0), +(56344, 0, 9, 16384, 0, 0, 0, 0, 0, 0, 0), +(56364, 0, 3, 0, 16777216, 0, 0, 0, 0, 0, 0), +(56451, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3), +(56611, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0), +(56612, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0), +(56613, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0), +(56614, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0), +(56636, 0, 4, 32, 0, 0, 0, 0, 0, 0, 0), +(56637, 0, 4, 32, 0, 0, 0, 0, 0, 0, 0), +(56638, 0, 4, 32, 0, 0, 0, 0, 0, 0, 0), +(56821, 0, 8, 2, 0, 0, 0, 2, 0, 0, 0), +(56822, 0, 15, 2, 0, 0, 0, 0, 0, 0, 0), +(56834, 0, 15, 4456448, 0, 0, 0, 0, 0, 0, 0), +(56835, 0, 15, 4456448, 0, 0, 0, 0, 0, 0, 0), +(57878, 0, 0, 0, 0, 0, 0, 16, 0, 0, 0), +(57880, 0, 0, 0, 0, 0, 0, 16, 0, 0, 0), +(57881, 0, 0, 0, 0, 0, 0, 16, 0, 0, 0), +(57960, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3), +(58357, 0, 4, 64, 0, 0, 0, 2, 0, 0, 0), +(58364, 0, 4, 1024, 0, 0, 0, 0, 0, 0, 0), +(58372, 0, 4, 2, 0, 0, 0, 0, 0, 0, 0), +(58386, 0, 0, 0, 0, 0, 0, 32, 0, 0, 0), +(58435, 0, 5, 2, 256, 0, 0, 0, 0, 0, 0), +(58436, 0, 5, 2, 256, 0, 0, 0, 0, 0, 0), +(58437, 0, 5, 2, 256, 0, 0, 0, 0, 0, 0), +(58616, 0, 15, 262144, 0, 0, 0, 0, 0, 0, 0), +(58620, 0, 15, 0, 16384, 0, 0, 0, 0, 0, 0), +(58626, 0, 15, 33554432, 0, 0, 0, 0, 0, 0, 0), +(58631, 0, 15, 2, 0, 0, 0, 0, 0, 0, 0), +(58642, 0, 15, 0, 134217728, 0, 0, 0, 0, 0, 0), +(58644, 0, 15, 0, 4, 0, 0, 0, 0, 0, 0), +(58647, 0, 15, 0, 4, 0, 0, 0, 0, 0, 0), +(58676, 0, 15, 0, 8, 0, 0, 0, 0, 0, 0), +(58677, 0, 15, 8192, 0, 0, 0, 0, 0, 0, 0), +(58872, 0, 0, 0, 0, 0, 0, 64, 0, 0, 0), +(58874, 0, 0, 0, 0, 0, 0, 64, 0, 0, 0), +(58901, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0), +(59057, 0, 15, 2, 0, 0, 0, 0, 0, 0, 0), +(59176, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0), +(59327, 0, 15, 134217728, 0, 0, 0, 0, 0, 0, 0), +(59725, 0, 0, 0, 0, 0, 0, 2048, 0, 0, 0), +(60132, 0, 15, 0, 134348800, 0, 0, 0, 0, 0, 0), +(60170, 0, 5, 6, 0, 0, 0, 0, 0, 0, 0), +(60172, 0, 5, 262144, 0, 0, 0, 65536, 0, 0, 0), +(60200, 0, 15, 4096, 0, 0, 0, 65536, 0, 0, 0), +(60493, 0, 0, 0, 0, 0, 0, 0, 0, 0, 45), +(60503, 0, 4, 4, 0, 0, 0, 0, 0, 0, 0), +(60537, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0), +(60564, 0, 11, 2416967680, 0, 0, 0, 0, 0, 0, 0), +(60571, 0, 11, 2416967680, 0, 0, 0, 0, 0, 0, 0), +(60572, 0, 11, 2416967680, 0, 0, 0, 0, 0, 0, 0), +(60573, 0, 11, 2416967680, 0, 0, 0, 0, 0, 0, 0), +(60574, 0, 11, 2416967680, 0, 0, 0, 0, 0, 0, 0), +(60575, 0, 11, 2416967680, 0, 0, 0, 0, 0, 0, 0), +(60617, 0, 0, 0, 0, 0, 0, 32, 0, 0, 0), +(60710, 0, 7, 2, 0, 0, 0, 0, 0, 0, 0), +(60717, 0, 7, 2, 0, 0, 0, 0, 0, 0, 0), +(60719, 0, 7, 2, 0, 0, 0, 0, 0, 0, 0), +(60722, 0, 7, 2, 0, 0, 0, 0, 0, 0, 0), +(60724, 0, 7, 2, 0, 0, 0, 0, 0, 0, 0), +(60726, 0, 7, 2, 0, 0, 0, 0, 0, 0, 0), +(60770, 0, 11, 1, 0, 0, 0, 0, 0, 0, 0), +(60818, 0, 10, 0, 512, 0, 0, 0, 0, 0, 0), +(60826, 0, 15, 20971520, 0, 0, 0, 0, 0, 0, 0), +(61188, 0, 5, 4, 0, 0, 0, 0, 0, 0, 0), +(61257, 0, 0, 0, 0, 0, 131752, 65536, 0, 0, 0), +(61324, 0, 10, 0, 131072, 0, 0, 0, 0, 0, 0), +(61846, 0, 0, 0, 0, 0, 0, 16, 0, 0, 0), +(61847, 0, 0, 0, 0, 0, 0, 16, 0, 0, 0); diff --git a/sql/updates/1206_world_scripts.sql b/sql/updates/1206_world_scripts.sql index b48a714ffbc..b35e054f57c 100644 --- a/sql/updates/1206_world_scripts.sql +++ b/sql/updates/1206_world_scripts.sql @@ -1 +1 @@ -UPDATE `gameobject_template` SET `ScriptName` = 'go_legion_obelisk' WHERE `entry` = 185193;
UPDATE `gameobject_template` SET `ScriptName` = 'go_legion_obelisk' WHERE `entry` = 185195;
UPDATE `gameobject_template` SET `ScriptName` = 'go_legion_obelisk' WHERE `entry` = 185196;
UPDATE `gameobject_template` SET `ScriptName` = 'go_legion_obelisk' WHERE `entry` = 185197;
UPDATE `gameobject_template` SET `ScriptName` = 'go_legion_obelisk' WHERE `entry` = 185198;
\ No newline at end of file +UPDATE `gameobject_template` SET `ScriptName`='go_legion_obelisk' WHERE `entry` IN (185193,185195,185196,185197,185198);
\ No newline at end of file diff --git a/sql/updates/1207_world_scripts.sql b/sql/updates/1207_world_scripts.sql index addabe98f1b..070a4af8597 100644 --- a/sql/updates/1207_world_scripts.sql +++ b/sql/updates/1207_world_scripts.sql @@ -1,2 +1,2 @@ -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_surristrasz' WHERE `entry`=24795; +UPDATE `creature_template` SET `ScriptName`='npc_tiare' WHERE `entry`=30051;
\ No newline at end of file diff --git a/sql/updates/1_wlk_world_scripts.sql b/sql/updates/1_wlk_world_scripts.sql deleted file mode 100644 index d071d870233..00000000000 --- a/sql/updates/1_wlk_world_scripts.sql +++ /dev/null @@ -1,123 +0,0 @@ -DELETE FROM `script_texts` WHERE `entry` BETWEEN -1533039 AND -1533000; -INSERT INTO `script_texts` (`entry`,`content_default`,`sound`,`type`,`language`,`comment`) VALUES -(-1533000,'Ahh... welcome to my parlor.',8788,1,0,'anubrekhan SAY_GREET'), - (-1533001,'Just a little taste...',8785,1,0,'anubrekhan SAY_AGGRO1'), - (-1533002,'There is no way out.',8786,1,0,'anubrekhan SAY_AGGRO2'), - (-1533003,'Yes, Run! It makes the blood pump faster!',8787,1,0,'anubrekhan SAY_AGGRO3'), - (-1533004,'I hear little hearts beating. Yesss... beating faster now. Soon the beating will stop.',8790,1,0,'anubrekhan SAY_TAUNT1'), - (-1533005,'Where to go? What to do? So many choices that all end in pain, end in death.',8791,1,0,'anubrekhan SAY_TAUNT2'), - (-1533006,'Which one shall I eat first? So difficult to choose... the all smell so delicious.',8792,1,0,'anubrekhan SAY_TAUNT3'), - (-1533007,'Closer now... tasty morsels. I\'ve been too long without food. Without blood to drink.',8793,1,0,'anubrekhan SAY_TAUNT4'), - (-1533008,'Shh... it will all be over soon.',8789,1,0,'anubrekhan SAY_SLAY'), - (-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!',8799,1,0,'faerlina SAY_GREET'), - (-1533010,'Slay them in the master\'s name!',8794,1,0,'faerlina SAY_AGGRO1'), - (-1533011,'You cannot hide from me!',8795,1,0,'faerlina SAY_AGGRO2'), - (-1533012,'Kneel before me, worm!',8796,1,0,'faerlina SAY_AGGRO3'), - (-1533013,'Run while you still can!',8797,1,0,'faerlina SAY_AGGRO4'), - (-1533014,'You have failed!',8800,1,0,'faerlina SAY_SLAY1'), - (-1533015,'Pathetic wretch!',8801,1,0,'faerlina SAY_SLAY2'), - (-1533016,'The master... will avenge me!',8798,1,0,'faerlina SAY_DEATH'), - (-1533017,'Patchwerk want to play!',8909,1,0,'patchwerk SAY_AGGRO1'), - (-1533018,'Kel\'Thuzad make Patchwerk his Avatar of War!',8910,1,0,'patchwerk SAY_AGGRO2'), - (-1533019,'No more play?',8912,1,0,'patchwerk SAY_SLAY'), - (-1533020,'What happened to... Patch...',8911,1,0,'patchwerk SAY_DEATH'), - (-1533021,'goes into a berserker rage!',0,2,0,'patchwerk EMOTE_BERSERK'), - (-1533022,'becomes enraged!',0,2,0,'patchwerk EMOTE_ENRAGE'), - (-1533023,'Stalagg crush you!',8864,1,0,'stalagg SAY_STAL_AGGRO'), - (-1533024,'Stalagg kill!',8866,1,0,'stalagg SAY_STAL_SLAY'), - (-1533025,'Master save me...',8865,1,0,'stalagg SAY_STAL_DEATH'), - (-1533026,'Feed you to master!',8802,1,0,'feugen SAY_FEUG_AGGRO'), - (-1533027,'Feugen make master happy!',8804,1,0,'feugen SAY_FEUG_SLAY'), - (-1533028,'No... more... Feugen...',8803,1,0,'feugen SAY_FEUG_DEATH'), - (-1533029,'You are too late... I... must... OBEY!',8872,1,0,'thaddius SAY_GREET'), - (-1533030,'KILL!',8867,1,0,'thaddius SAY_AGGRO1'), - (-1533031,'EAT YOUR BONES!',8868,1,0,'thaddius SAY_AGGRO2'), - (-1533032,'BREAK YOU!',8869,1,0,'thaddius SAY_AGGRO3'), - (-1533033,'You die now!',8877,1,0,'thaddius SAY_SLAY'), - (-1533034,'Now YOU feel pain!',8871,1,0,'thaddius SAY_ELECT'), - (-1533035,'Thank... you...',8870,1,0,'thaddius SAY_DEATH'), - (-1533036,'Pleeease!',8873,1,0,'thaddius SAY_SCREAM1'), - (-1533037,'Stop, make it stop!',8874,1,0,'thaddius SAY_SCREAM2'), - (-1533038,'Help me! Save me!',8875,1,0,'thaddius SAY_SCREAM3'), - (-1533039,'Please, nooo!',8876,1,0,'thaddius SAY_SCREAM4'); - -DELETE FROM `script_texts` WHERE `entry` BETWEEN -1533074 AND -1533040; - INSERT INTO `script_texts` (`entry`,`content_default`,`sound`,`type`,`language`,`comment`) VALUES - (-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.',8807,1,0,'gothik SAY_SPEECH'), - (-1533041,'Death is the only escape.',8806,1,0,'gothik SAY_KILL'), - (-1533042,'I... am... undone!',8805,1,0,'gothik SAY_DEATH'), - (-1533043,'I have waited long enough! Now, you face the harvester of souls!',8808,1,0,'gothik SAY_TELEPORT'), - (-1533044,'Defend youself!',8892,1,0,'blaumeux SAY_BLAU_AGGRO'), - (-1533045,'Come, Zeliek, do not drive them out. Not before we\'ve had our fun.',8896,1,0,'blaumeux SAY_BLAU_TAUNT1'), - (-1533046,'I do hope they stay alive long enough for me to... introduce myself.',8897,1,0,'blaumeux SAY_BLAU_TAUNT2'), - (-1533047,'The first kill goes to me! Anyone care to wager?',8898,1,0,'blaumeux SAY_BLAU_TAUNT3'), - (-1533048,'Your life is mine!',8895,1,0,'blaumeux SAY_BLAU_SPECIAL'), - (-1533049,'Who\'s next?',8894,1,0,'blaumeux SAY_BLAU_SLAY'), - (-1533050,'Tou... che!',8893,1,0,'blaumeux SAY_BLAU_DEATH'), - (-1533051,'Come out and fight, ye wee ninny!',8899,1,0,'korthazz SAY_KORT_AGGRO'), - (-1533052,'To arms, ye roustabouts! We\'ve got company!',8903,1,0,'korthazz SAY_KORT_TAUNT1'), - (-1533053,'I heard about enough of yer sniveling. Shut yer fly trap \'afore I shut it for ye!',8904,1,0,'korthazz SAY_KORT_TAUNT2'), - (-1533054,'I\'m gonna enjoy killin\' these slack-jawed daffodils!',8905,1,0,'korthazz SAY_KORT_TAUNT3'), - (-1533055,'I like my meat extra crispy!',8901,1,0,'korthazz SAY_KORT_SPECIAl'), - (-1533056,'Next time, bring more friends!',8902,1,0,'korthazz SAY_KORT_SLAY'), - (-1533057,'What a bloody waste this is!',8900,1,0,'korthazz SAY_KORT_DEATH'), - (-1533058,'Flee, before it\'s too late!',8913,1,0,'zeliek SAY_ZELI_AGGRO'), - (-1533059,'Invaders, cease this foolish venture at once! Turn away while you still can!',8917,1,0,'zeliek SAY_ZELI_TAUNT1'), - (-1533060,'Perhaps they will come to their senses, and run away as fast as they can!',8918,1,0,'zeliek SAY_ZELI_TAUNT2'), - (-1533061,'Do not continue! Turn back while there\'s still time!',8919,1,0,'zeliek SAY_ZELI_TAUNT3'), - (-1533062,'I- I have no choice but to obey!',8916,1,0,'zeliek SAY_ZELI_SPECIAL'), - (-1533063,'Forgive me!',8915,1,0,'zeliek SAY_ZELI_SLAY'), - (-1533064,'It is... as it should be.',8914,1,0,'zeliek SAY_ZELI_DEATH'), - (-1533065,'You seek death?',14571,1,0,'rivendare_naxx SAY_RIVE_AGGRO1'), - (-1533066,'None shall pass!',14572,1,0,'rivendare_naxx SAY_RIVE_AGGRO2'), - (-1533067,'Be still!',14573,1,0,'rivendare_naxx SAY_RIVE_AGGRO3'), - (-1533068,'You will find no peace in death.',14574,1,0,'rivendare_naxx SAY_RIVE_SLAY1'), - (-1533069,'The master\'s will is done.',14575,1,0,'rivendare_naxx SAY_RIVE_SLAY2'), - (-1533070,'Bow to the might of the scourge!',14576,1,0,'rivendare_naxx SAY_RIVE_SPECIAL'), - (-1533071,'Enough prattling. Let them come! We shall grind their bones to dust.',14577,1,0,'rivendare_naxx SAY_RIVE_TAUNT1'), - (-1533072,'Conserve your anger! Harness your rage! You will all have outlets for your frustration soon enough.',14578,1,0,'rivendare_naxx SAY_RIVE_TAUNT2'), - (-1533073,'Life is meaningless. It is in death that we are truly tested.',14579,1,0,'rivendare_naxx SAY_RIVE_TAUNT3'), - (-1533074,'Death... will not stop me...',14580,1,0,'rivendare_naxx SAY_RIVE_DEATH'); - -UPDATE `creature_template` SET `ScriptName`='' WHERE `entry`=16062; -UPDATE `creature_template` SET `ScriptName`='boss_rivendare_naxx' WHERE `entry`=30549; - -DELETE FROM `script_texts` WHERE `entry` BETWEEN -1533108 AND -1533075; - INSERT INTO `script_texts` (`entry`,`content_default`,`sound`,`type`,`language`,`comment`) VALUES - (-1533075,'Glory to the master!',8845,1,0,'noth SAY_AGGRO1'), - (-1533076,'Your life is forfeit!',8846,1,0,'noth SAY_AGGRO2'), - (-1533077,'Die, trespasser!',8847,1,0,'noth SAY_AGGRO3'), - (-1533078,'Rise, my soldiers! Rise and fight once more!',8851,1,0,'noth SAY_SUMMON'), - (-1533079,'My task is done!',8849,1,0,'noth SAY_SLAY1'), - (-1533080,'Breathe no more!',8850,1,0,'noth SAY_SLAY2'), - (-1533081,'I will serve the master... in... death!',8848,1,0,'noth SAY_DEATH'), - (-1533082,'takes in a deep breath...',0,2,0,'sapphiron EMOTE_BREATH'), - (-1533083,'enrages!',0,2,0,'sapphiron EMOTE_ENRAGE'), - (-1533084,'Our preparations continue as planned, master.',14467,1,0,'kelthuzad SAY_SAPP_DIALOG1'), - (-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.',8881,1,0,'kelthuzad SAY_SAPP_DIALOG2_LICH'), - (-1533086,'I see no complications... Wait... What is this?',14468,1,0,'kelthuzad SAY_SAPP_DIALOG3'), - (-1533087,'Your security measures have failed! See to this interruption immediately!',8882,1,0,'kelthuzad SAY_SAPP_DIALOG4_LICH'), - (-1533088,'Yes, master!',14469,1,0,'kelthuzad SAY_SAPP_DIALOG5'), - (-1533089,'No!!! A curse upon you, interlopers! The armies of the Lich King will hunt you down. You will not escape your fate...',14484,1,0,'kelthuzad SAY_CAT_DIED'), - (-1533090,'Who dares violate the sanctity of my domain? Be warned, all who trespass here are doomed.',14463,1,0,'kelthuzad SAY_TAUNT1'), - (-1533091,'Fools, you think yourselves triumphant? You have only taken one step closer to the abyss! ',14464,1,0,'kelthuzad SAY_TAUNT2'), - (-1533092,'I grow tired of these games. Proceed, and I will banish your souls to oblivion!',14465,1,0,'kelthuzad SAY_TAUNT3'), - (-1533093,'You have no idea what horrors lie ahead. You have seen nothing! The frozen heart of Naxxramas awaits you!',14466,1,0,'kelthuzad SAY_TAUNT4'), - (-1533094,'Pray for mercy!',14475,1,0,'kelthuzad SAY_AGGRO1'), - (-1533095,'Scream your dying breath!',14476,1,0,'kelthuzad SAY_AGGRO2'), - (-1533096,'The end is upon you!',14477,1,0,'kelthuzad SAY_AGGRO3'), - (-1533097,'The dark void awaits you!',14478,1,0,'kelthuzad SAY_SLAY1'), - (-1533098,'<Kel\'Thuzad cackles maniacally!>',14479,1,0,'kelthuzad SAY_SLAY2'), - (-1533099,'AAAAGHHH!... Do not rejoice... your victory is a hollow one... for I shall return with powers beyond your imagining!',14480,1,0,'kelthuzad SAY_DEATH'), - (-1533100,'Your soul, is bound to me now!',14472,1,0,'kelthuzad SAY_CHAIN1'), - (-1533101,'There will be no escape!',14473,1,0,'kelthuzad SAY_CHAIN2'), - (-1533102,'I will freeze the blood in your veins!',14474,1,0,'kelthuzad SAY_FROST_BLAST'), - (-1533103,'Master! I require aid! ',14470,1,0,'kelthuzad SAY_REQUEST_AID'), - (-1533104,'Very well... warriors of the frozen wastes, rise up! I command you to fight, kill, and die for your master. Let none survive...',0,1,0,'kelthuzad SAY_ANSWER_REQUEST'), - (-1533105,'Minions, servants, soldiers of the cold dark, obey the call of Kel\'Thuzad!',14471,1,0,'kelthuzad SAY_SUMMON_MINIONS'), - (-1533106,'Your petty magics are no challenge to the might of the Scourge! ',14481,1,0,'kelthuzad SAY_SPECIAL1_MANA_DET'), - (-1533107,'Enough! I grow tired of these distractions! ',14483,1,0,'kelthuzad SAY_SPECIAL3_MANA_DET'), - (-1533108,'Fools, you have spread your powers too thin. Be free, my minions!',14482,1,0,'kelthuzad SAY_SPECIAL2_DISPELL'); - - UPDATE `script_texts` SET `sound`=8902 WHERE `entry`=-1533055; - UPDATE `script_texts` SET `sound`=8901 WHERE `entry`=-1533056;
\ No newline at end of file diff --git a/sql/updates/1_world_scripts.sql b/sql/updates/1_world_scripts.sql new file mode 100644 index 00000000000..743984d3ad0 --- /dev/null +++ b/sql/updates/1_world_scripts.sql @@ -0,0 +1,123 @@ +DELETE FROM `script_texts` WHERE `entry` BETWEEN -1533039 AND -1533000; +INSERT INTO `script_texts` (`entry`,`content_default`,`sound`,`type`,`language`,`comment`) VALUES +(-1533000,'Ahh... welcome to my parlor.',8788,1,0,'anubrekhan SAY_GREET'), +(-1533001,'Just a little taste...',8785,1,0,'anubrekhan SAY_AGGRO1'), +(-1533002,'There is no way out.',8786,1,0,'anubrekhan SAY_AGGRO2'), +(-1533003,'Yes, Run! It makes the blood pump faster!',8787,1,0,'anubrekhan SAY_AGGRO3'), +(-1533004,'I hear little hearts beating. Yesss... beating faster now. Soon the beating will stop.',8790,1,0,'anubrekhan SAY_TAUNT1'), +(-1533005,'Where to go? What to do? So many choices that all end in pain, end in death.',8791,1,0,'anubrekhan SAY_TAUNT2'), +(-1533006,'Which one shall I eat first? So difficult to choose... the all smell so delicious.',8792,1,0,'anubrekhan SAY_TAUNT3'), +(-1533007,'Closer now... tasty morsels. I\'ve been too long without food. Without blood to drink.',8793,1,0,'anubrekhan SAY_TAUNT4'), +(-1533008,'Shh... it will all be over soon.',8789,1,0,'anubrekhan SAY_SLAY'), +(-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!',8799,1,0,'faerlina SAY_GREET'), +(-1533010,'Slay them in the master\'s name!',8794,1,0,'faerlina SAY_AGGRO1'), +(-1533011,'You cannot hide from me!',8795,1,0,'faerlina SAY_AGGRO2'), +(-1533012,'Kneel before me, worm!',8796,1,0,'faerlina SAY_AGGRO3'), +(-1533013,'Run while you still can!',8797,1,0,'faerlina SAY_AGGRO4'), +(-1533014,'You have failed!',8800,1,0,'faerlina SAY_SLAY1'), +(-1533015,'Pathetic wretch!',8801,1,0,'faerlina SAY_SLAY2'), +(-1533016,'The master... will avenge me!',8798,1,0,'faerlina SAY_DEATH'), +(-1533017,'Patchwerk want to play!',8909,1,0,'patchwerk SAY_AGGRO1'), +(-1533018,'Kel\'Thuzad make Patchwerk his Avatar of War!',8910,1,0,'patchwerk SAY_AGGRO2'), +(-1533019,'No more play?',8912,1,0,'patchwerk SAY_SLAY'), +(-1533020,'What happened to... Patch...',8911,1,0,'patchwerk SAY_DEATH'), +(-1533021,'goes into a berserker rage!',0,2,0,'patchwerk EMOTE_BERSERK'), +(-1533022,'becomes enraged!',0,2,0,'patchwerk EMOTE_ENRAGE'), +(-1533023,'Stalagg crush you!',8864,1,0,'stalagg SAY_STAL_AGGRO'), +(-1533024,'Stalagg kill!',8866,1,0,'stalagg SAY_STAL_SLAY'), +(-1533025,'Master save me...',8865,1,0,'stalagg SAY_STAL_DEATH'), +(-1533026,'Feed you to master!',8802,1,0,'feugen SAY_FEUG_AGGRO'), +(-1533027,'Feugen make master happy!',8804,1,0,'feugen SAY_FEUG_SLAY'), +(-1533028,'No... more... Feugen...',8803,1,0,'feugen SAY_FEUG_DEATH'), +(-1533029,'You are too late... I... must... OBEY!',8872,1,0,'thaddius SAY_GREET'), +(-1533030,'KILL!',8867,1,0,'thaddius SAY_AGGRO1'), +(-1533031,'EAT YOUR BONES!',8868,1,0,'thaddius SAY_AGGRO2'), +(-1533032,'BREAK YOU!',8869,1,0,'thaddius SAY_AGGRO3'), +(-1533033,'You die now!',8877,1,0,'thaddius SAY_SLAY'), +(-1533034,'Now YOU feel pain!',8871,1,0,'thaddius SAY_ELECT'), +(-1533035,'Thank... you...',8870,1,0,'thaddius SAY_DEATH'), +(-1533036,'Pleeease!',8873,1,0,'thaddius SAY_SCREAM1'), +(-1533037,'Stop, make it stop!',8874,1,0,'thaddius SAY_SCREAM2'), +(-1533038,'Help me! Save me!',8875,1,0,'thaddius SAY_SCREAM3'), +(-1533039,'Please, nooo!',8876,1,0,'thaddius SAY_SCREAM4'); + +DELETE FROM `script_texts` WHERE `entry` BETWEEN -1533074 AND -1533040; +INSERT INTO `script_texts` (`entry`,`content_default`,`sound`,`type`,`language`,`comment`) VALUES +(-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.',8807,1,0,'gothik SAY_SPEECH'), +(-1533041,'Death is the only escape.',8806,1,0,'gothik SAY_KILL'), +(-1533042,'I... am... undone!',8805,1,0,'gothik SAY_DEATH'), +(-1533043,'I have waited long enough! Now, you face the harvester of souls!',8808,1,0,'gothik SAY_TELEPORT'), +(-1533044,'Defend youself!',8892,1,0,'blaumeux SAY_BLAU_AGGRO'), +(-1533045,'Come, Zeliek, do not drive them out. Not before we\'ve had our fun.',8896,1,0,'blaumeux SAY_BLAU_TAUNT1'), +(-1533046,'I do hope they stay alive long enough for me to... introduce myself.',8897,1,0,'blaumeux SAY_BLAU_TAUNT2'), +(-1533047,'The first kill goes to me! Anyone care to wager?',8898,1,0,'blaumeux SAY_BLAU_TAUNT3'), +(-1533048,'Your life is mine!',8895,1,0,'blaumeux SAY_BLAU_SPECIAL'), +(-1533049,'Who\'s next?',8894,1,0,'blaumeux SAY_BLAU_SLAY'), +(-1533050,'Tou... che!',8893,1,0,'blaumeux SAY_BLAU_DEATH'), +(-1533051,'Come out and fight, ye wee ninny!',8899,1,0,'korthazz SAY_KORT_AGGRO'), +(-1533052,'To arms, ye roustabouts! We\'ve got company!',8903,1,0,'korthazz SAY_KORT_TAUNT1'), +(-1533053,'I heard about enough of yer sniveling. Shut yer fly trap \'afore I shut it for ye!',8904,1,0,'korthazz SAY_KORT_TAUNT2'), +(-1533054,'I\'m gonna enjoy killin\' these slack-jawed daffodils!',8905,1,0,'korthazz SAY_KORT_TAUNT3'), +(-1533055,'I like my meat extra crispy!',8901,1,0,'korthazz SAY_KORT_SPECIAl'), +(-1533056,'Next time, bring more friends!',8902,1,0,'korthazz SAY_KORT_SLAY'), +(-1533057,'What a bloody waste this is!',8900,1,0,'korthazz SAY_KORT_DEATH'), +(-1533058,'Flee, before it\'s too late!',8913,1,0,'zeliek SAY_ZELI_AGGRO'), +(-1533059,'Invaders, cease this foolish venture at once! Turn away while you still can!',8917,1,0,'zeliek SAY_ZELI_TAUNT1'), +(-1533060,'Perhaps they will come to their senses, and run away as fast as they can!',8918,1,0,'zeliek SAY_ZELI_TAUNT2'), +(-1533061,'Do not continue! Turn back while there\'s still time!',8919,1,0,'zeliek SAY_ZELI_TAUNT3'), +(-1533062,'I- I have no choice but to obey!',8916,1,0,'zeliek SAY_ZELI_SPECIAL'), +(-1533063,'Forgive me!',8915,1,0,'zeliek SAY_ZELI_SLAY'), +(-1533064,'It is... as it should be.',8914,1,0,'zeliek SAY_ZELI_DEATH'), +(-1533065,'You seek death?',14571,1,0,'rivendare_naxx SAY_RIVE_AGGRO1'), +(-1533066,'None shall pass!',14572,1,0,'rivendare_naxx SAY_RIVE_AGGRO2'), +(-1533067,'Be still!',14573,1,0,'rivendare_naxx SAY_RIVE_AGGRO3'), +(-1533068,'You will find no peace in death.',14574,1,0,'rivendare_naxx SAY_RIVE_SLAY1'), +(-1533069,'The master\'s will is done.',14575,1,0,'rivendare_naxx SAY_RIVE_SLAY2'), +(-1533070,'Bow to the might of the scourge!',14576,1,0,'rivendare_naxx SAY_RIVE_SPECIAL'), +(-1533071,'Enough prattling. Let them come! We shall grind their bones to dust.',14577,1,0,'rivendare_naxx SAY_RIVE_TAUNT1'), +(-1533072,'Conserve your anger! Harness your rage! You will all have outlets for your frustration soon enough.',14578,1,0,'rivendare_naxx SAY_RIVE_TAUNT2'), +(-1533073,'Life is meaningless. It is in death that we are truly tested.',14579,1,0,'rivendare_naxx SAY_RIVE_TAUNT3'), +(-1533074,'Death... will not stop me...',14580,1,0,'rivendare_naxx SAY_RIVE_DEATH'); + +UPDATE `creature_template` SET `ScriptName`='' WHERE `entry`=16062; +UPDATE `creature_template` SET `ScriptName`='boss_rivendare_naxx' WHERE `entry`=30549; + +DELETE FROM `script_texts` WHERE `entry` BETWEEN -1533108 AND -1533075; +INSERT INTO `script_texts` (`entry`,`content_default`,`sound`,`type`,`language`,`comment`) VALUES +(-1533075,'Glory to the master!',8845,1,0,'noth SAY_AGGRO1'), +(-1533076,'Your life is forfeit!',8846,1,0,'noth SAY_AGGRO2'), +(-1533077,'Die, trespasser!',8847,1,0,'noth SAY_AGGRO3'), +(-1533078,'Rise, my soldiers! Rise and fight once more!',8851,1,0,'noth SAY_SUMMON'), +(-1533079,'My task is done!',8849,1,0,'noth SAY_SLAY1'), +(-1533080,'Breathe no more!',8850,1,0,'noth SAY_SLAY2'), +(-1533081,'I will serve the master... in... death!',8848,1,0,'noth SAY_DEATH'), +(-1533082,'takes in a deep breath...',0,2,0,'sapphiron EMOTE_BREATH'), +(-1533083,'enrages!',0,2,0,'sapphiron EMOTE_ENRAGE'), +(-1533084,'Our preparations continue as planned, master.',14467,1,0,'kelthuzad SAY_SAPP_DIALOG1'), +(-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.',8881,1,0,'kelthuzad SAY_SAPP_DIALOG2_LICH'), +(-1533086,'I see no complications... Wait... What is this?',14468,1,0,'kelthuzad SAY_SAPP_DIALOG3'), +(-1533087,'Your security measures have failed! See to this interruption immediately!',8882,1,0,'kelthuzad SAY_SAPP_DIALOG4_LICH'), +(-1533088,'Yes, master!',14469,1,0,'kelthuzad SAY_SAPP_DIALOG5'), +(-1533089,'No!!! A curse upon you, interlopers! The armies of the Lich King will hunt you down. You will not escape your fate...',14484,1,0,'kelthuzad SAY_CAT_DIED'), +(-1533090,'Who dares violate the sanctity of my domain? Be warned, all who trespass here are doomed.',14463,1,0,'kelthuzad SAY_TAUNT1'), +(-1533091,'Fools, you think yourselves triumphant? You have only taken one step closer to the abyss! ',14464,1,0,'kelthuzad SAY_TAUNT2'), +(-1533092,'I grow tired of these games. Proceed, and I will banish your souls to oblivion!',14465,1,0,'kelthuzad SAY_TAUNT3'), +(-1533093,'You have no idea what horrors lie ahead. You have seen nothing! The frozen heart of Naxxramas awaits you!',14466,1,0,'kelthuzad SAY_TAUNT4'), +(-1533094,'Pray for mercy!',14475,1,0,'kelthuzad SAY_AGGRO1'), +(-1533095,'Scream your dying breath!',14476,1,0,'kelthuzad SAY_AGGRO2'), +(-1533096,'The end is upon you!',14477,1,0,'kelthuzad SAY_AGGRO3'), +(-1533097,'The dark void awaits you!',14478,1,0,'kelthuzad SAY_SLAY1'), +(-1533098,'<Kel\'Thuzad cackles maniacally!>',14479,1,0,'kelthuzad SAY_SLAY2'), +(-1533099,'AAAAGHHH!... Do not rejoice... your victory is a hollow one... for I shall return with powers beyond your imagining!',14480,1,0,'kelthuzad SAY_DEATH'), +(-1533100,'Your soul, is bound to me now!',14472,1,0,'kelthuzad SAY_CHAIN1'), +(-1533101,'There will be no escape!',14473,1,0,'kelthuzad SAY_CHAIN2'), +(-1533102,'I will freeze the blood in your veins!',14474,1,0,'kelthuzad SAY_FROST_BLAST'), +(-1533103,'Master! I require aid! ',14470,1,0,'kelthuzad SAY_REQUEST_AID'), +(-1533104,'Very well... warriors of the frozen wastes, rise up! I command you to fight, kill, and die for your master. Let none survive...',0,1,0,'kelthuzad SAY_ANSWER_REQUEST'), +(-1533105,'Minions, servants, soldiers of the cold dark, obey the call of Kel\'Thuzad!',14471,1,0,'kelthuzad SAY_SUMMON_MINIONS'), +(-1533106,'Your petty magics are no challenge to the might of the Scourge! ',14481,1,0,'kelthuzad SAY_SPECIAL1_MANA_DET'), +(-1533107,'Enough! I grow tired of these distractions! ',14483,1,0,'kelthuzad SAY_SPECIAL3_MANA_DET'), +(-1533108,'Fools, you have spread your powers too thin. Be free, my minions!',14482,1,0,'kelthuzad SAY_SPECIAL2_DISPELL'); + +UPDATE `script_texts` SET `sound`=8902 WHERE `entry`=-1533055; +UPDATE `script_texts` SET `sound`=8901 WHERE `entry`=-1533056;
\ No newline at end of file diff --git a/sql/updates/2.4.3_updates/1016_world.sql b/sql/updates/2.4.3_updates/1016_world.sql new file mode 100644 index 00000000000..e6907f3bbd5 --- /dev/null +++ b/sql/updates/2.4.3_updates/1016_world.sql @@ -0,0 +1,60 @@ +DELETE FROM `trinity_string` WHERE `entry` IN (746, 747); +DELETE FROM `trinity_string` WHERE `entry` BETWEEN 10001 and 10055; +INSERT INTO `trinity_string` (`entry`,`content_default`,`content_loc1`,`content_loc2`,`content_loc3`,`content_loc4`,`content_loc5`,`content_loc6`,`content_loc7`,`content_loc8`) VALUES +(746,'|cffff0000[Automatic]:|r', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), +(747,'|cffffff00[|c1f40af20Announce by|r |cffff0000%s|cffffff00]:|r %s|r', 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);
\ No newline at end of file diff --git a/sql/updates/2.4.3_updates/1016_world_scripts.sql b/sql/updates/2.4.3_updates/1016_world_scripts.sql new file mode 100644 index 00000000000..7edaa0c49e1 --- /dev/null +++ b/sql/updates/2.4.3_updates/1016_world_scripts.sql @@ -0,0 +1 @@ +UPDATE `creature_template` SET `ScriptName`='boss_akilzon' WHERE `entry`=23574;
\ No newline at end of file diff --git a/sql/updates/102_world.sql b/sql/updates/2.4.3_updates/102_world.sql index 6cbf3d1a6b4..6cbf3d1a6b4 100644 --- a/sql/updates/102_world.sql +++ b/sql/updates/2.4.3_updates/102_world.sql diff --git a/sql/updates/112_world_scripts.sql b/sql/updates/2.4.3_updates/112_world_scripts.sql index e48ed250741..e48ed250741 100644 --- a/sql/updates/112_world_scripts.sql +++ b/sql/updates/2.4.3_updates/112_world_scripts.sql diff --git a/sql/updates/116_world.sql b/sql/updates/2.4.3_updates/116_world.sql index 7627dfb4aa3..7627dfb4aa3 100644 --- a/sql/updates/116_world.sql +++ b/sql/updates/2.4.3_updates/116_world.sql diff --git a/sql/updates/117_world_scripts.sql b/sql/updates/2.4.3_updates/117_world_scripts.sql index 794258ba710..794258ba710 100644 --- a/sql/updates/117_world_scripts.sql +++ b/sql/updates/2.4.3_updates/117_world_scripts.sql diff --git a/sql/updates/11_characters.sql b/sql/updates/2.4.3_updates/11_characters.sql index a9a002270fb..a9a002270fb 100644 --- a/sql/updates/11_characters.sql +++ b/sql/updates/2.4.3_updates/11_characters.sql diff --git a/sql/updates/120_world.sql b/sql/updates/2.4.3_updates/120_world.sql index 3f3b231e830..3f3b231e830 100644 --- a/sql/updates/120_world.sql +++ b/sql/updates/2.4.3_updates/120_world.sql diff --git a/sql/updates/123_world_scripts.sql b/sql/updates/2.4.3_updates/123_world_scripts.sql index b5f9305e30e..b5f9305e30e 100644 --- a/sql/updates/123_world_scripts.sql +++ b/sql/updates/2.4.3_updates/123_world_scripts.sql diff --git a/sql/updates/125_world_scripts.sql b/sql/updates/2.4.3_updates/125_world_scripts.sql index 9994c0e7af7..9994c0e7af7 100644 --- a/sql/updates/125_world_scripts.sql +++ b/sql/updates/2.4.3_updates/125_world_scripts.sql diff --git a/sql/updates/133_world_scripts.sql b/sql/updates/2.4.3_updates/133_world_scripts.sql index 057f7c44e81..057f7c44e81 100644 --- a/sql/updates/133_world_scripts.sql +++ b/sql/updates/2.4.3_updates/133_world_scripts.sql diff --git a/sql/updates/140_world.sql b/sql/updates/2.4.3_updates/140_world.sql index 6a7389602b6..6a7389602b6 100644 --- a/sql/updates/140_world.sql +++ b/sql/updates/2.4.3_updates/140_world.sql diff --git a/sql/updates/145_world_scripts.sql b/sql/updates/2.4.3_updates/145_world_scripts.sql index 5ec3702b171..5ec3702b171 100644 --- a/sql/updates/145_world_scripts.sql +++ b/sql/updates/2.4.3_updates/145_world_scripts.sql diff --git a/sql/updates/146_world.sql b/sql/updates/2.4.3_updates/146_world.sql index 31999cd97e4..31999cd97e4 100644 --- a/sql/updates/146_world.sql +++ b/sql/updates/2.4.3_updates/146_world.sql diff --git a/sql/updates/147_world.sql b/sql/updates/2.4.3_updates/147_world.sql index c6e75d41070..c6e75d41070 100644 --- a/sql/updates/147_world.sql +++ b/sql/updates/2.4.3_updates/147_world.sql diff --git a/sql/updates/152_world.sql b/sql/updates/2.4.3_updates/152_world.sql index 3b3d09c56d3..3b3d09c56d3 100644 --- a/sql/updates/152_world.sql +++ b/sql/updates/2.4.3_updates/152_world.sql diff --git a/sql/updates/153_world.sql b/sql/updates/2.4.3_updates/153_world.sql index dbff1592850..dbff1592850 100644 --- a/sql/updates/153_world.sql +++ b/sql/updates/2.4.3_updates/153_world.sql diff --git a/sql/updates/171_world.sql b/sql/updates/2.4.3_updates/171_world.sql index fdcd98f4d6e..fdcd98f4d6e 100644 --- a/sql/updates/171_world.sql +++ b/sql/updates/2.4.3_updates/171_world.sql diff --git a/sql/updates/172_world_scripts.sql b/sql/updates/2.4.3_updates/172_world_scripts.sql index 358afe538ed..358afe538ed 100644 --- a/sql/updates/172_world_scripts.sql +++ b/sql/updates/2.4.3_updates/172_world_scripts.sql diff --git a/sql/updates/175_world_scripts.sql b/sql/updates/2.4.3_updates/175_world_scripts.sql index d30601c4c9c..d30601c4c9c 100644 --- a/sql/updates/175_world_scripts.sql +++ b/sql/updates/2.4.3_updates/175_world_scripts.sql diff --git a/sql/updates/176_world.sql b/sql/updates/2.4.3_updates/176_world.sql index 12df2a083ca..12df2a083ca 100644 --- a/sql/updates/176_world.sql +++ b/sql/updates/2.4.3_updates/176_world.sql diff --git a/sql/updates/182_world.sql b/sql/updates/2.4.3_updates/182_world.sql index 450b5394720..450b5394720 100644 --- a/sql/updates/182_world.sql +++ b/sql/updates/2.4.3_updates/182_world.sql diff --git a/sql/updates/212_world_scripts.sql b/sql/updates/2.4.3_updates/212_world_scripts.sql index 1427efde6e3..1427efde6e3 100644 --- a/sql/updates/212_world_scripts.sql +++ b/sql/updates/2.4.3_updates/212_world_scripts.sql diff --git a/sql/updates/220_characters.sql b/sql/updates/2.4.3_updates/220_characters.sql index 1d9e3f50a33..1d9e3f50a33 100644 --- a/sql/updates/220_characters.sql +++ b/sql/updates/2.4.3_updates/220_characters.sql diff --git a/sql/updates/230_world.sql b/sql/updates/2.4.3_updates/230_world.sql index 3f3565e7800..3f3565e7800 100644 --- a/sql/updates/230_world.sql +++ b/sql/updates/2.4.3_updates/230_world.sql diff --git a/sql/updates/230_world_blacktemple.sql b/sql/updates/2.4.3_updates/230_world_blacktemple.sql index 74345a7c51f..74345a7c51f 100644 --- a/sql/updates/230_world_blacktemple.sql +++ b/sql/updates/2.4.3_updates/230_world_blacktemple.sql diff --git a/sql/updates/230_world_scripts.sql b/sql/updates/2.4.3_updates/230_world_scripts.sql index 34d3ee5707f..34d3ee5707f 100644 --- a/sql/updates/230_world_scripts.sql +++ b/sql/updates/2.4.3_updates/230_world_scripts.sql diff --git a/sql/updates/230_world_serpent_shrine.sql b/sql/updates/2.4.3_updates/230_world_serpent_shrine.sql index 0e16bd6de2b..0e16bd6de2b 100644 --- a/sql/updates/230_world_serpent_shrine.sql +++ b/sql/updates/2.4.3_updates/230_world_serpent_shrine.sql diff --git a/sql/updates/231_world_scripts.sql b/sql/updates/2.4.3_updates/231_world_scripts.sql index b07f7b47fef..b07f7b47fef 100644 --- a/sql/updates/231_world_scripts.sql +++ b/sql/updates/2.4.3_updates/231_world_scripts.sql diff --git a/sql/updates/233_world.sql b/sql/updates/2.4.3_updates/233_world.sql index e77d057cae4..e77d057cae4 100644 --- a/sql/updates/233_world.sql +++ b/sql/updates/2.4.3_updates/233_world.sql diff --git a/sql/updates/238_world.sql b/sql/updates/2.4.3_updates/238_world.sql index c1180ca0abd..c1180ca0abd 100644 --- a/sql/updates/238_world.sql +++ b/sql/updates/2.4.3_updates/238_world.sql diff --git a/sql/updates/240_world.sql b/sql/updates/2.4.3_updates/240_world.sql index 9a91607fed0..9a91607fed0 100644 --- a/sql/updates/240_world.sql +++ b/sql/updates/2.4.3_updates/240_world.sql diff --git a/sql/updates/241_world.sql b/sql/updates/2.4.3_updates/241_world.sql index 2bc028b3eba..2bc028b3eba 100644 --- a/sql/updates/241_world.sql +++ b/sql/updates/2.4.3_updates/241_world.sql diff --git a/sql/updates/247_world.sql b/sql/updates/2.4.3_updates/247_world.sql index a47e9733bcf..a47e9733bcf 100644 --- a/sql/updates/247_world.sql +++ b/sql/updates/2.4.3_updates/247_world.sql diff --git a/sql/updates/262_characters.sql b/sql/updates/2.4.3_updates/262_characters.sql index b3caa9704f0..b3caa9704f0 100644 --- a/sql/updates/262_characters.sql +++ b/sql/updates/2.4.3_updates/262_characters.sql diff --git a/sql/updates/262_realmd.sql b/sql/updates/2.4.3_updates/262_realmd.sql index 1953f19fe28..1953f19fe28 100644 --- a/sql/updates/262_realmd.sql +++ b/sql/updates/2.4.3_updates/262_realmd.sql diff --git a/sql/updates/262_world.sql b/sql/updates/2.4.3_updates/262_world.sql index 6c97d9798d5..6c97d9798d5 100644 --- a/sql/updates/262_world.sql +++ b/sql/updates/2.4.3_updates/262_world.sql diff --git a/sql/updates/273_world_scripts.sql b/sql/updates/2.4.3_updates/273_world_scripts.sql index 2979197c734..2979197c734 100644 --- a/sql/updates/273_world_scripts.sql +++ b/sql/updates/2.4.3_updates/273_world_scripts.sql diff --git a/sql/updates/285_world.sql b/sql/updates/2.4.3_updates/285_world.sql index 74825f4b75a..74825f4b75a 100644 --- a/sql/updates/285_world.sql +++ b/sql/updates/2.4.3_updates/285_world.sql diff --git a/sql/updates/287_world_scripts.sql b/sql/updates/2.4.3_updates/287_world_scripts.sql index 4a0c5031188..4a0c5031188 100644 --- a/sql/updates/287_world_scripts.sql +++ b/sql/updates/2.4.3_updates/287_world_scripts.sql diff --git a/sql/updates/329_world.sql b/sql/updates/2.4.3_updates/329_world.sql index 33f61416fb1..33f61416fb1 100644 --- a/sql/updates/329_world.sql +++ b/sql/updates/2.4.3_updates/329_world.sql diff --git a/sql/updates/332_world.sql b/sql/updates/2.4.3_updates/332_world.sql index 912173fcbbf..912173fcbbf 100644 --- a/sql/updates/332_world.sql +++ b/sql/updates/2.4.3_updates/332_world.sql diff --git a/sql/updates/333_world.sql b/sql/updates/2.4.3_updates/333_world.sql index 9bd405e3589..9bd405e3589 100644 --- a/sql/updates/333_world.sql +++ b/sql/updates/2.4.3_updates/333_world.sql diff --git a/sql/updates/334_world.sql b/sql/updates/2.4.3_updates/334_world.sql index 6cd6cb7714a..6cd6cb7714a 100644 --- a/sql/updates/334_world.sql +++ b/sql/updates/2.4.3_updates/334_world.sql diff --git a/sql/updates/341_world.sql b/sql/updates/2.4.3_updates/341_world.sql index 7d1eb4a0c8d..7d1eb4a0c8d 100644 --- a/sql/updates/341_world.sql +++ b/sql/updates/2.4.3_updates/341_world.sql diff --git a/sql/updates/356_world.sql b/sql/updates/2.4.3_updates/356_world.sql index 9db8a85d7cd..9db8a85d7cd 100644 --- a/sql/updates/356_world.sql +++ b/sql/updates/2.4.3_updates/356_world.sql diff --git a/sql/updates/373_world_scripts.sql b/sql/updates/2.4.3_updates/373_world_scripts.sql index db27ebe2441..db27ebe2441 100644 --- a/sql/updates/373_world_scripts.sql +++ b/sql/updates/2.4.3_updates/373_world_scripts.sql diff --git a/sql/updates/377_world_scripts.sql b/sql/updates/2.4.3_updates/377_world_scripts.sql index fe93962ef3a..fe93962ef3a 100644 --- a/sql/updates/377_world_scripts.sql +++ b/sql/updates/2.4.3_updates/377_world_scripts.sql diff --git a/sql/updates/389_world.sql b/sql/updates/2.4.3_updates/389_world.sql index 89094143f64..89094143f64 100644 --- a/sql/updates/389_world.sql +++ b/sql/updates/2.4.3_updates/389_world.sql diff --git a/sql/updates/400_world.sql b/sql/updates/2.4.3_updates/400_world.sql index a2f7d1e6cea..a2f7d1e6cea 100644 --- a/sql/updates/400_world.sql +++ b/sql/updates/2.4.3_updates/400_world.sql diff --git a/sql/updates/410_characters.sql b/sql/updates/2.4.3_updates/410_characters.sql index 483b991e19e..483b991e19e 100644 --- a/sql/updates/410_characters.sql +++ b/sql/updates/2.4.3_updates/410_characters.sql diff --git a/sql/updates/426_world_scripts.sql b/sql/updates/2.4.3_updates/426_world_scripts.sql index fde6ee6dbf2..fde6ee6dbf2 100644 --- a/sql/updates/426_world_scripts.sql +++ b/sql/updates/2.4.3_updates/426_world_scripts.sql diff --git a/sql/updates/427_world_scripts.sql b/sql/updates/2.4.3_updates/427_world_scripts.sql index b6fe5fb7acb..b6fe5fb7acb 100644 --- a/sql/updates/427_world_scripts.sql +++ b/sql/updates/2.4.3_updates/427_world_scripts.sql diff --git a/sql/updates/444_world.sql b/sql/updates/2.4.3_updates/444_world.sql index 004cf626f88..004cf626f88 100644 --- a/sql/updates/444_world.sql +++ b/sql/updates/2.4.3_updates/444_world.sql diff --git a/sql/updates/452_world.sql b/sql/updates/2.4.3_updates/452_world.sql index 3b549278fc7..3b549278fc7 100644 --- a/sql/updates/452_world.sql +++ b/sql/updates/2.4.3_updates/452_world.sql diff --git a/sql/updates/455_world.sql b/sql/updates/2.4.3_updates/455_world.sql index a5a23c5f5d6..a5a23c5f5d6 100644 --- a/sql/updates/455_world.sql +++ b/sql/updates/2.4.3_updates/455_world.sql diff --git a/sql/updates/45_characters.sql b/sql/updates/2.4.3_updates/45_characters.sql index 9f370ba909c..9f370ba909c 100644 --- a/sql/updates/45_characters.sql +++ b/sql/updates/2.4.3_updates/45_characters.sql diff --git a/sql/updates/471_world.sql b/sql/updates/2.4.3_updates/471_world.sql index 2db368326e8..2db368326e8 100644 --- a/sql/updates/471_world.sql +++ b/sql/updates/2.4.3_updates/471_world.sql diff --git a/sql/updates/480_world_scripts.sql b/sql/updates/2.4.3_updates/480_world_scripts.sql index 203196a0f16..203196a0f16 100644 --- a/sql/updates/480_world_scripts.sql +++ b/sql/updates/2.4.3_updates/480_world_scripts.sql diff --git a/sql/updates/488_world_scripts.sql b/sql/updates/2.4.3_updates/488_world_scripts.sql index 41b264fb217..41b264fb217 100644 --- a/sql/updates/488_world_scripts.sql +++ b/sql/updates/2.4.3_updates/488_world_scripts.sql diff --git a/sql/updates/502_world_scripts.sql b/sql/updates/2.4.3_updates/502_world_scripts.sql index 458d8bb24ed..458d8bb24ed 100644 --- a/sql/updates/502_world_scripts.sql +++ b/sql/updates/2.4.3_updates/502_world_scripts.sql diff --git a/sql/updates/505_world.sql b/sql/updates/2.4.3_updates/505_world.sql index fe3b3c850aa..fe3b3c850aa 100644 --- a/sql/updates/505_world.sql +++ b/sql/updates/2.4.3_updates/505_world.sql diff --git a/sql/updates/506_world.sql b/sql/updates/2.4.3_updates/506_world.sql index 069690c4da8..069690c4da8 100644 --- a/sql/updates/506_world.sql +++ b/sql/updates/2.4.3_updates/506_world.sql diff --git a/sql/updates/513_world_scripts.sql b/sql/updates/2.4.3_updates/513_world_scripts.sql index 21a57ea3316..21a57ea3316 100644 --- a/sql/updates/513_world_scripts.sql +++ b/sql/updates/2.4.3_updates/513_world_scripts.sql diff --git a/sql/updates/519_world.sql b/sql/updates/2.4.3_updates/519_world.sql index 2423f94ec1c..2423f94ec1c 100644 --- a/sql/updates/519_world.sql +++ b/sql/updates/2.4.3_updates/519_world.sql diff --git a/sql/updates/537_world.sql b/sql/updates/2.4.3_updates/537_world.sql index 2401a5aeadd..2401a5aeadd 100644 --- a/sql/updates/537_world.sql +++ b/sql/updates/2.4.3_updates/537_world.sql diff --git a/sql/updates/541_characters.sql b/sql/updates/2.4.3_updates/541_characters.sql index 2651c069e05..2651c069e05 100644 --- a/sql/updates/541_characters.sql +++ b/sql/updates/2.4.3_updates/541_characters.sql diff --git a/sql/updates/541_world.sql b/sql/updates/2.4.3_updates/541_world.sql index 7d8e1fc8e1b..7d8e1fc8e1b 100644 --- a/sql/updates/541_world.sql +++ b/sql/updates/2.4.3_updates/541_world.sql diff --git a/sql/updates/542_characters.sql b/sql/updates/2.4.3_updates/542_characters.sql index 4cc3bebea80..4cc3bebea80 100644 --- a/sql/updates/542_characters.sql +++ b/sql/updates/2.4.3_updates/542_characters.sql diff --git a/sql/updates/54_world.sql b/sql/updates/2.4.3_updates/54_world.sql index 88ebc4b46db..88ebc4b46db 100644 --- a/sql/updates/54_world.sql +++ b/sql/updates/2.4.3_updates/54_world.sql diff --git a/sql/updates/551_world.sql b/sql/updates/2.4.3_updates/551_world.sql index 5a01d596ab4..5a01d596ab4 100644 --- a/sql/updates/551_world.sql +++ b/sql/updates/2.4.3_updates/551_world.sql diff --git a/sql/updates/566_world.sql b/sql/updates/2.4.3_updates/566_world.sql index 6c176e1ad89..6c176e1ad89 100644 --- a/sql/updates/566_world.sql +++ b/sql/updates/2.4.3_updates/566_world.sql diff --git a/sql/updates/571_world.sql b/sql/updates/2.4.3_updates/571_world.sql index 115c210306b..115c210306b 100644 --- a/sql/updates/571_world.sql +++ b/sql/updates/2.4.3_updates/571_world.sql diff --git a/sql/updates/572_world.sql b/sql/updates/2.4.3_updates/572_world.sql index 33ce446b012..33ce446b012 100644 --- a/sql/updates/572_world.sql +++ b/sql/updates/2.4.3_updates/572_world.sql diff --git a/sql/updates/575_world_scripts.sql b/sql/updates/2.4.3_updates/575_world_scripts.sql index 85a75215f0e..85a75215f0e 100644 --- a/sql/updates/575_world_scripts.sql +++ b/sql/updates/2.4.3_updates/575_world_scripts.sql diff --git a/sql/updates/57_world_scripts.sql b/sql/updates/2.4.3_updates/57_world_scripts.sql index 2f76ae8c94f..2f76ae8c94f 100644 --- a/sql/updates/57_world_scripts.sql +++ b/sql/updates/2.4.3_updates/57_world_scripts.sql diff --git a/sql/updates/583_world_scripts.sql b/sql/updates/2.4.3_updates/583_world_scripts.sql index 45f8d80a244..45f8d80a244 100644 --- a/sql/updates/583_world_scripts.sql +++ b/sql/updates/2.4.3_updates/583_world_scripts.sql diff --git a/sql/updates/586_world_scripts.sql b/sql/updates/2.4.3_updates/586_world_scripts.sql index a86cec4951b..a86cec4951b 100644 --- a/sql/updates/586_world_scripts.sql +++ b/sql/updates/2.4.3_updates/586_world_scripts.sql diff --git a/sql/updates/588_world.sql b/sql/updates/2.4.3_updates/588_world.sql index e85a034f344..e85a034f344 100644 --- a/sql/updates/588_world.sql +++ b/sql/updates/2.4.3_updates/588_world.sql diff --git a/sql/updates/608_world.sql b/sql/updates/2.4.3_updates/608_world.sql index 5c052ecd078..5c052ecd078 100644 --- a/sql/updates/608_world.sql +++ b/sql/updates/2.4.3_updates/608_world.sql diff --git a/sql/updates/615_world.sql b/sql/updates/2.4.3_updates/615_world.sql index 28512e8511e..28512e8511e 100644 --- a/sql/updates/615_world.sql +++ b/sql/updates/2.4.3_updates/615_world.sql diff --git a/sql/updates/636_world_scripts.sql b/sql/updates/2.4.3_updates/636_world_scripts.sql index 5527d639fb2..5527d639fb2 100644 --- a/sql/updates/636_world_scripts.sql +++ b/sql/updates/2.4.3_updates/636_world_scripts.sql diff --git a/sql/updates/640_world.sql b/sql/updates/2.4.3_updates/640_world.sql index 20253029d5b..20253029d5b 100644 --- a/sql/updates/640_world.sql +++ b/sql/updates/2.4.3_updates/640_world.sql diff --git a/sql/updates/645_world_scripts.sql b/sql/updates/2.4.3_updates/645_world_scripts.sql index f480a97e204..f480a97e204 100644 --- a/sql/updates/645_world_scripts.sql +++ b/sql/updates/2.4.3_updates/645_world_scripts.sql diff --git a/sql/updates/667_world_scripts.sql b/sql/updates/2.4.3_updates/667_world_scripts.sql index 1da0cea44e1..1da0cea44e1 100644 --- a/sql/updates/667_world_scripts.sql +++ b/sql/updates/2.4.3_updates/667_world_scripts.sql diff --git a/sql/updates/66_world_scripts.sql b/sql/updates/2.4.3_updates/66_world_scripts.sql index dfce2afedcc..dfce2afedcc 100644 --- a/sql/updates/66_world_scripts.sql +++ b/sql/updates/2.4.3_updates/66_world_scripts.sql diff --git a/sql/updates/676_world.sql b/sql/updates/2.4.3_updates/676_world.sql index 2b9135c04bd..2b9135c04bd 100644 --- a/sql/updates/676_world.sql +++ b/sql/updates/2.4.3_updates/676_world.sql diff --git a/sql/updates/679_world_scripts.sql b/sql/updates/2.4.3_updates/679_world_scripts.sql index 408eb77b046..408eb77b046 100644 --- a/sql/updates/679_world_scripts.sql +++ b/sql/updates/2.4.3_updates/679_world_scripts.sql diff --git a/sql/updates/683_world_scripts.sql b/sql/updates/2.4.3_updates/683_world_scripts.sql index 13f18008438..13f18008438 100644 --- a/sql/updates/683_world_scripts.sql +++ b/sql/updates/2.4.3_updates/683_world_scripts.sql diff --git a/sql/updates/686_world_scripts.sql b/sql/updates/2.4.3_updates/686_world_scripts.sql index b793036e463..b793036e463 100644 --- a/sql/updates/686_world_scripts.sql +++ b/sql/updates/2.4.3_updates/686_world_scripts.sql diff --git a/sql/updates/68_world.sql b/sql/updates/2.4.3_updates/68_world.sql index 650f4ea3ca0..650f4ea3ca0 100644 --- a/sql/updates/68_world.sql +++ b/sql/updates/2.4.3_updates/68_world.sql diff --git a/sql/updates/691_world_scripts.sql b/sql/updates/2.4.3_updates/691_world_scripts.sql index 922f4b24fab..922f4b24fab 100644 --- a/sql/updates/691_world_scripts.sql +++ b/sql/updates/2.4.3_updates/691_world_scripts.sql diff --git a/sql/updates/692_world.sql b/sql/updates/2.4.3_updates/692_world.sql index 2149baa9488..2149baa9488 100644 --- a/sql/updates/692_world.sql +++ b/sql/updates/2.4.3_updates/692_world.sql diff --git a/sql/updates/708_world_scripts.sql b/sql/updates/2.4.3_updates/708_world_scripts.sql index 5d0d9a9a916..5d0d9a9a916 100644 --- a/sql/updates/708_world_scripts.sql +++ b/sql/updates/2.4.3_updates/708_world_scripts.sql diff --git a/sql/updates/70_world_scripts.sql b/sql/updates/2.4.3_updates/70_world_scripts.sql index 1bbf737c59c..1bbf737c59c 100644 --- a/sql/updates/70_world_scripts.sql +++ b/sql/updates/2.4.3_updates/70_world_scripts.sql diff --git a/sql/updates/722_world_script_texts.sql b/sql/updates/2.4.3_updates/722_world_script_texts.sql index 8be4cd9a86f..8be4cd9a86f 100644 --- a/sql/updates/722_world_script_texts.sql +++ b/sql/updates/2.4.3_updates/722_world_script_texts.sql diff --git a/sql/updates/724_world.sql b/sql/updates/2.4.3_updates/724_world.sql index 6c57f8b4a22..6c57f8b4a22 100644 --- a/sql/updates/724_world.sql +++ b/sql/updates/2.4.3_updates/724_world.sql diff --git a/sql/updates/725_characters.sql b/sql/updates/2.4.3_updates/725_characters.sql index 675c6721602..675c6721602 100644 --- a/sql/updates/725_characters.sql +++ b/sql/updates/2.4.3_updates/725_characters.sql diff --git a/sql/updates/725_world.sql b/sql/updates/2.4.3_updates/725_world.sql index 38eeead03cb..38eeead03cb 100644 --- a/sql/updates/725_world.sql +++ b/sql/updates/2.4.3_updates/725_world.sql diff --git a/sql/updates/728_world_scripts.sql b/sql/updates/2.4.3_updates/728_world_scripts.sql index 8ada5080463..8ada5080463 100644 --- a/sql/updates/728_world_scripts.sql +++ b/sql/updates/2.4.3_updates/728_world_scripts.sql diff --git a/sql/updates/733_characters.sql b/sql/updates/2.4.3_updates/733_characters.sql index 21c3d27e782..21c3d27e782 100644 --- a/sql/updates/733_characters.sql +++ b/sql/updates/2.4.3_updates/733_characters.sql diff --git a/sql/updates/739_characters.sql b/sql/updates/2.4.3_updates/739_characters.sql index 8a4e9197494..8a4e9197494 100644 --- a/sql/updates/739_characters.sql +++ b/sql/updates/2.4.3_updates/739_characters.sql diff --git a/sql/updates/741_characters.sql b/sql/updates/2.4.3_updates/741_characters.sql index 4ce094e3e5f..4ce094e3e5f 100644 --- a/sql/updates/741_characters.sql +++ b/sql/updates/2.4.3_updates/741_characters.sql diff --git a/sql/updates/747_world.sql b/sql/updates/2.4.3_updates/747_world.sql index b526781b141..0fd9c3552e4 100644 --- a/sql/updates/747_world.sql +++ b/sql/updates/2.4.3_updates/747_world.sql @@ -1 +1 @@ -UPDATE `trinity_string` SET `content_default`='Ticket %d is already assigned.' WHERE (`entry`='2008');
\ No newline at end of file +UPDATE `trinity_string` SET `content_default`='Ticket %d is already assigned.' WHERE `entry`=2008;
\ No newline at end of file diff --git a/sql/updates/2.4.3_updates/748_world_scripts.sql b/sql/updates/2.4.3_updates/748_world_scripts.sql new file mode 100644 index 00000000000..2c1f692056d --- /dev/null +++ b/sql/updates/2.4.3_updates/748_world_scripts.sql @@ -0,0 +1,3 @@ +UPDATE `creature_template` SET `ScriptName`='npc_infused_crystal' WHERE `entry`=16364; +UPDATE `creature_template` SET `flags_extra`=0 WHERE `entry`=16364; +DELETE FROM `creature` WHERE `id`=17086;
\ No newline at end of file diff --git a/sql/updates/2.4.3_updates/758_world_scripts.sql b/sql/updates/2.4.3_updates/758_world_scripts.sql new file mode 100644 index 00000000000..3e8ca0f38b9 --- /dev/null +++ b/sql/updates/2.4.3_updates/758_world_scripts.sql @@ -0,0 +1,6 @@ +DELETE FROM `creature_template_addon` WHERE `entry`=17225; +UPDATE `creature_template` SET `ScriptName`='boss_nightbane' WHERE `entry`=17225; +UPDATE `creature_template` SET `unit_flags`=0 WHERE `entry`=17225; +DELETE FROM `event_scripts` WHERE `id`=10951; +INSERT INTO `event_scripts` VALUES +(10951,0,10,17651,180000,0,-11159,-1907.22,91.48,0);
\ No newline at end of file diff --git a/sql/updates/762_world.sql b/sql/updates/2.4.3_updates/762_world.sql index 4f32617b0ee..6e69f078743 100644 --- a/sql/updates/762_world.sql +++ b/sql/updates/2.4.3_updates/762_world.sql @@ -2,5 +2,5 @@ DROP TABLE IF EXISTS `transport_events`; CREATE TABLE `transport_events` ( `entry` int(11) unsigned NOT NULL default '0', `waypoint_id` int(11) unsigned NOT NULL default '0', - `event_id` int(11) unsigned NOT NULL default '0' + `event_id` int(11) unsigned NOT NULL default '0' ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
\ No newline at end of file diff --git a/sql/updates/2.4.3_updates/764_world_scripts.sql b/sql/updates/2.4.3_updates/764_world_scripts.sql new file mode 100644 index 00000000000..2a8e7b23b12 --- /dev/null +++ b/sql/updates/2.4.3_updates/764_world_scripts.sql @@ -0,0 +1,123 @@ +UPDATE `creature_template` SET `ScriptName`='' WHERE `entry`=16062; +UPDATE `creature_template` SET `ScriptName`='boss_rivendare_naxx' WHERE `entry`=30549; + +DELETE FROM `script_texts` WHERE `entry` BETWEEN -1533039 AND -1533000; +INSERT INTO `script_texts` (`entry`,`content_default`,`sound`,`type`,`language`,`comment`) VALUES +(-1533000,'Ahh... welcome to my parlor.',8788,1,0,'anubrekhan SAY_GREET'), +(-1533001,'Just a little taste...',8785,1,0,'anubrekhan SAY_AGGRO1'), +(-1533002,'There is no way out.',8786,1,0,'anubrekhan SAY_AGGRO2'), +(-1533003,'Yes, Run! It makes the blood pump faster!',8787,1,0,'anubrekhan SAY_AGGRO3'), +(-1533004,'I hear little hearts beating. Yesss... beating faster now. Soon the beating will stop.',8790,1,0,'anubrekhan SAY_TAUNT1'), +(-1533005,'Where to go? What to do? So many choices that all end in pain, end in death.',8791,1,0,'anubrekhan SAY_TAUNT2'), +(-1533006,'Which one shall I eat first? So difficult to choose... the all smell so delicious.',8792,1,0,'anubrekhan SAY_TAUNT3'), +(-1533007,'Closer now... tasty morsels. I\'ve been too long without food. Without blood to drink.',8793,1,0,'anubrekhan SAY_TAUNT4'), +(-1533008,'Shh... it will all be over soon.',8789,1,0,'anubrekhan SAY_SLAY'), +(-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!',8799,1,0,'faerlina SAY_GREET'), +(-1533010,'Slay them in the master\'s name!',8794,1,0,'faerlina SAY_AGGRO1'), +(-1533011,'You cannot hide from me!',8795,1,0,'faerlina SAY_AGGRO2'), +(-1533012,'Kneel before me, worm!',8796,1,0,'faerlina SAY_AGGRO3'), +(-1533013,'Run while you still can!',8797,1,0,'faerlina SAY_AGGRO4'), +(-1533014,'You have failed!',8800,1,0,'faerlina SAY_SLAY1'), +(-1533015,'Pathetic wretch!',8801,1,0,'faerlina SAY_SLAY2'), +(-1533016,'The master... will avenge me!',8798,1,0,'faerlina SAY_DEATH'), +(-1533017,'Patchwerk want to play!',8909,1,0,'patchwerk SAY_AGGRO1'), +(-1533018,'Kel\'Thuzad make Patchwerk his Avatar of War!',8910,1,0,'patchwerk SAY_AGGRO2'), +(-1533019,'No more play?',8912,1,0,'patchwerk SAY_SLAY'), +(-1533020,'What happened to... Patch...',8911,1,0,'patchwerk SAY_DEATH'), +(-1533021,'goes into a berserker rage!',0,2,0,'patchwerk EMOTE_BERSERK'), +(-1533022,'becomes enraged!',0,2,0,'patchwerk EMOTE_ENRAGE'), +(-1533023,'Stalagg crush you!',8864,1,0,'stalagg SAY_STAL_AGGRO'), +(-1533024,'Stalagg kill!',8866,1,0,'stalagg SAY_STAL_SLAY'), +(-1533025,'Master save me...',8865,1,0,'stalagg SAY_STAL_DEATH'), +(-1533026,'Feed you to master!',8802,1,0,'feugen SAY_FEUG_AGGRO'), +(-1533027,'Feugen make master happy!',8804,1,0,'feugen SAY_FEUG_SLAY'), +(-1533028,'No... more... Feugen...',8803,1,0,'feugen SAY_FEUG_DEATH'), +(-1533029,'You are too late... I... must... OBEY!',8872,1,0,'thaddius SAY_GREET'), +(-1533030,'KILL!',8867,1,0,'thaddius SAY_AGGRO1'), +(-1533031,'EAT YOUR BONES!',8868,1,0,'thaddius SAY_AGGRO2'), +(-1533032,'BREAK YOU!',8869,1,0,'thaddius SAY_AGGRO3'), +(-1533033,'You die now!',8877,1,0,'thaddius SAY_SLAY'), +(-1533034,'Now YOU feel pain!',8871,1,0,'thaddius SAY_ELECT'), +(-1533035,'Thank... you...',8870,1,0,'thaddius SAY_DEATH'), +(-1533036,'Pleeease!',8873,1,0,'thaddius SAY_SCREAM1'), +(-1533037,'Stop, make it stop!',8874,1,0,'thaddius SAY_SCREAM2'), +(-1533038,'Help me! Save me!',8875,1,0,'thaddius SAY_SCREAM3'), +(-1533039,'Please, nooo!',8876,1,0,'thaddius SAY_SCREAM4'); + +DELETE FROM `script_texts` WHERE `entry` BETWEEN -1533074 AND -1533040; +INSERT INTO `script_texts` (`entry`,`content_default`,`sound`,`type`,`language`,`comment`) VALUES +(-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.',8807,1,0,'gothik SAY_SPEECH'), +(-1533041,'Death is the only escape.',8806,1,0,'gothik SAY_KILL'), +(-1533042,'I... am... undone!',8805,1,0,'gothik SAY_DEATH'), +(-1533043,'I have waited long enough! Now, you face the harvester of souls!',8808,1,0,'gothik SAY_TELEPORT'), +(-1533044,'Defend youself!',8892,1,0,'blaumeux SAY_BLAU_AGGRO'), +(-1533045,'Come, Zeliek, do not drive them out. Not before we\'ve had our fun.',8896,1,0,'blaumeux SAY_BLAU_TAUNT1'), +(-1533046,'I do hope they stay alive long enough for me to... introduce myself.',8897,1,0,'blaumeux SAY_BLAU_TAUNT2'), +(-1533047,'The first kill goes to me! Anyone care to wager?',8898,1,0,'blaumeux SAY_BLAU_TAUNT3'), +(-1533048,'Your life is mine!',8895,1,0,'blaumeux SAY_BLAU_SPECIAL'), +(-1533049,'Who\'s next?',8894,1,0,'blaumeux SAY_BLAU_SLAY'), +(-1533050,'Tou... che!',8893,1,0,'blaumeux SAY_BLAU_DEATH'), +(-1533051,'Come out and fight, ye wee ninny!',8899,1,0,'korthazz SAY_KORT_AGGRO'), +(-1533052,'To arms, ye roustabouts! We\'ve got company!',8903,1,0,'korthazz SAY_KORT_TAUNT1'), +(-1533053,'I heard about enough of yer sniveling. Shut yer fly trap \'afore I shut it for ye!',8904,1,0,'korthazz SAY_KORT_TAUNT2'), +(-1533054,'I\'m gonna enjoy killin\' these slack-jawed daffodils!',8905,1,0,'korthazz SAY_KORT_TAUNT3'), +(-1533055,'I like my meat extra crispy!',8901,1,0,'korthazz SAY_KORT_SPECIAl'), +(-1533056,'Next time, bring more friends!',8902,1,0,'korthazz SAY_KORT_SLAY'), +(-1533057,'What a bloody waste this is!',8900,1,0,'korthazz SAY_KORT_DEATH'), +(-1533058,'Flee, before it\'s too late!',8913,1,0,'zeliek SAY_ZELI_AGGRO'), +(-1533059,'Invaders, cease this foolish venture at once! Turn away while you still can!',8917,1,0,'zeliek SAY_ZELI_TAUNT1'), +(-1533060,'Perhaps they will come to their senses, and run away as fast as they can!',8918,1,0,'zeliek SAY_ZELI_TAUNT2'), +(-1533061,'Do not continue! Turn back while there\'s still time!',8919,1,0,'zeliek SAY_ZELI_TAUNT3'), +(-1533062,'I- I have no choice but to obey!',8916,1,0,'zeliek SAY_ZELI_SPECIAL'), +(-1533063,'Forgive me!',8915,1,0,'zeliek SAY_ZELI_SLAY'), +(-1533064,'It is... as it should be.',8914,1,0,'zeliek SAY_ZELI_DEATH'), +(-1533065,'You seek death?',14571,1,0,'rivendare_naxx SAY_RIVE_AGGRO1'), +(-1533066,'None shall pass!',14572,1,0,'rivendare_naxx SAY_RIVE_AGGRO2'), +(-1533067,'Be still!',14573,1,0,'rivendare_naxx SAY_RIVE_AGGRO3'), +(-1533068,'You will find no peace in death.',14574,1,0,'rivendare_naxx SAY_RIVE_SLAY1'), +(-1533069,'The master\'s will is done.',14575,1,0,'rivendare_naxx SAY_RIVE_SLAY2'), +(-1533070,'Bow to the might of the scourge!',14576,1,0,'rivendare_naxx SAY_RIVE_SPECIAL'), +(-1533071,'Enough prattling. Let them come! We shall grind their bones to dust.',14577,1,0,'rivendare_naxx SAY_RIVE_TAUNT1'), +(-1533072,'Conserve your anger! Harness your rage! You will all have outlets for your frustration soon enough.',14578,1,0,'rivendare_naxx SAY_RIVE_TAUNT2'), +(-1533073,'Life is meaningless. It is in death that we are truly tested.',14579,1,0,'rivendare_naxx SAY_RIVE_TAUNT3'), +(-1533074,'Death... will not stop me...',14580,1,0,'rivendare_naxx SAY_RIVE_DEATH'); + +DELETE FROM `script_texts` WHERE `entry` BETWEEN -1533108 AND -1533075; +INSERT INTO `script_texts` (`entry`,`content_default`,`sound`,`type`,`language`,`comment`) VALUES +(-1533075,'Glory to the master!',8845,1,0,'noth SAY_AGGRO1'), +(-1533076,'Your life is forfeit!',8846,1,0,'noth SAY_AGGRO2'), +(-1533077,'Die, trespasser!',8847,1,0,'noth SAY_AGGRO3'), +(-1533078,'Rise, my soldiers! Rise and fight once more!',8851,1,0,'noth SAY_SUMMON'), +(-1533079,'My task is done!',8849,1,0,'noth SAY_SLAY1'), +(-1533080,'Breathe no more!',8850,1,0,'noth SAY_SLAY2'), +(-1533081,'I will serve the master... in... death!',8848,1,0,'noth SAY_DEATH'), +(-1533082,'takes in a deep breath...',0,2,0,'sapphiron EMOTE_BREATH'), +(-1533083,'enrages!',0,2,0,'sapphiron EMOTE_ENRAGE'), +(-1533084,'Our preparations continue as planned, master.',14467,1,0,'kelthuzad SAY_SAPP_DIALOG1'), +(-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.',8881,1,0,'kelthuzad SAY_SAPP_DIALOG2_LICH'), +(-1533086,'I see no complications... Wait... What is this?',14468,1,0,'kelthuzad SAY_SAPP_DIALOG3'), +(-1533087,'Your security measures have failed! See to this interruption immediately!',8882,1,0,'kelthuzad SAY_SAPP_DIALOG4_LICH'), +(-1533088,'Yes, master!',14469,1,0,'kelthuzad SAY_SAPP_DIALOG5'), +(-1533089,'No!!! A curse upon you, interlopers! The armies of the Lich King will hunt you down. You will not escape your fate...',14484,1,0,'kelthuzad SAY_CAT_DIED'), +(-1533090,'Who dares violate the sanctity of my domain? Be warned, all who trespass here are doomed.',14463,1,0,'kelthuzad SAY_TAUNT1'), +(-1533091,'Fools, you think yourselves triumphant? You have only taken one step closer to the abyss! ',14464,1,0,'kelthuzad SAY_TAUNT2'), +(-1533092,'I grow tired of these games. Proceed, and I will banish your souls to oblivion!',14465,1,0,'kelthuzad SAY_TAUNT3'), +(-1533093,'You have no idea what horrors lie ahead. You have seen nothing! The frozen heart of Naxxramas awaits you!',14466,1,0,'kelthuzad SAY_TAUNT4'), +(-1533094,'Pray for mercy!',14475,1,0,'kelthuzad SAY_AGGRO1'), +(-1533095,'Scream your dying breath!',14476,1,0,'kelthuzad SAY_AGGRO2'), +(-1533096,'The end is upon you!',14477,1,0,'kelthuzad SAY_AGGRO3'), +(-1533097,'The dark void awaits you!',14478,1,0,'kelthuzad SAY_SLAY1'), +(-1533098,'<Kel\'Thuzad cackles maniacally!>',14479,1,0,'kelthuzad SAY_SLAY2'), +(-1533099,'AAAAGHHH!... Do not rejoice... your victory is a hollow one... for I shall return with powers beyond your imagining!',14480,1,0,'kelthuzad SAY_DEATH'), +(-1533100,'Your soul, is bound to me now!',14472,1,0,'kelthuzad SAY_CHAIN1'), +(-1533101,'There will be no escape!',14473,1,0,'kelthuzad SAY_CHAIN2'), +(-1533102,'I will freeze the blood in your veins!',14474,1,0,'kelthuzad SAY_FROST_BLAST'), +(-1533103,'Master! I require aid! ',14470,1,0,'kelthuzad SAY_REQUEST_AID'), +(-1533104,'Very well... warriors of the frozen wastes, rise up! I command you to fight, kill, and die for your master. Let none survive...',0,1,0,'kelthuzad SAY_ANSWER_REQUEST'), +(-1533105,'Minions, servants, soldiers of the cold dark, obey the call of Kel\'Thuzad!',14471,1,0,'kelthuzad SAY_SUMMON_MINIONS'), +(-1533106,'Your petty magics are no challenge to the might of the Scourge! ',14481,1,0,'kelthuzad SAY_SPECIAL1_MANA_DET'), +(-1533107,'Enough! I grow tired of these distractions! ',14483,1,0,'kelthuzad SAY_SPECIAL3_MANA_DET'), +(-1533108,'Fools, you have spread your powers too thin. Be free, my minions!',14482,1,0,'kelthuzad SAY_SPECIAL2_DISPELL'); + +UPDATE `script_texts` SET `sound`=8902 WHERE `entry`=-1533055; +UPDATE `script_texts` SET `sound`=8901 WHERE `entry`=-1533056;
\ No newline at end of file diff --git a/sql/updates/765_world_scripts.sql b/sql/updates/2.4.3_updates/765_world_scripts.sql index 908a31d404f..1283e75f66c 100644 --- a/sql/updates/765_world_scripts.sql +++ b/sql/updates/2.4.3_updates/765_world_scripts.sql @@ -1,4 +1,4 @@ -UPDATE `creature_template` SET `flags_extra` = 0 WHERE `entry` = 20129; +UPDATE `creature_template` SET `flags_extra`=0 WHERE `entry`=20129; -- Insert English and French dialogs in database DELETE FROM `script_texts` WHERE entry BETWEEN -1000150 and -1000163; diff --git a/sql/updates/773_world_scripts.sql b/sql/updates/2.4.3_updates/773_world_scripts.sql index e07beb784a4..adfb24e945c 100644 --- a/sql/updates/773_world_scripts.sql +++ b/sql/updates/2.4.3_updates/773_world_scripts.sql @@ -1,7 +1,7 @@ -Update quest_template set SpecialFlags=2 where entry=4770; -UPDATE `creature_template` SET `ScriptName` = 'npc_swiftmountain' WHERE `entry` = 10427; +UPDATE `quest_template` SET `SpecialFlags`=2 WHERE `entry`=4770; +UPDATE `creature_template` SET `ScriptName`='npc_swiftmountain' WHERE `entry`=10427; DELETE FROM `script_texts` WHERE `entry` BETWEEN -1000149 AND -1000147; -INSERT INTO script_texts +INSERT INTO `script_texts` (`entry`, `content_default`, `content_loc1`, `content_loc2`, `content_loc3`, `content_loc4`, `content_loc5`, `content_loc6`, `content_loc7`, `content_loc8`, `sound`, `type`, `language`, `comment`) VALUES (-1000147, 'Lets go $N. I am ready to start to Whitereach Post.', NULL, NULL, 'Gehen wir $N.Ich bin bereit,mich zum Weissgipfelposten aufzumachen.', NULL, NULL, NULL, NULL, NULL, 0, 0, 0, NULL), diff --git a/sql/updates/780_characters.sql b/sql/updates/2.4.3_updates/780_characters.sql index cbcb193c276..cbcb193c276 100644 --- a/sql/updates/780_characters.sql +++ b/sql/updates/2.4.3_updates/780_characters.sql diff --git a/sql/updates/783_world.sql b/sql/updates/2.4.3_updates/783_world.sql index 24a8481e24e..7076956dd24 100644 --- a/sql/updates/783_world.sql +++ b/sql/updates/2.4.3_updates/783_world.sql @@ -1,4 +1,4 @@ -DELETE FROM trinity_string where entry IN (10056, 10057); -INSERT INTO trinity_string (entry, content_default) VALUES +DELETE FROM `trinity_string` WHERE `entry` IN (10056, 10057); +INSERT INTO `trinity_string` (entry, content_default) VALUES (10056, 'You must be a member of the Horde to enter the Hall of Legends.'), (10057, 'You must be a member of the Alliance to enter the Champion\'s Hall.');
\ No newline at end of file diff --git a/sql/updates/785_world.sql b/sql/updates/2.4.3_updates/785_world.sql index 747b179f02b..64ffa36957c 100644 --- a/sql/updates/785_world.sql +++ b/sql/updates/2.4.3_updates/785_world.sql @@ -1,4 +1,4 @@ -delete from command where name in ('gobject addtemp', 'npc addtemp'); -insert into command (name, security, help) values +DELETE FROM `command` WHERE `name` IN ('gobject addtemp', 'npc addtemp'); +INSERT INTO `command` (name, security, help) VALUES ('gobject addtemp','2','Adds a temporary gameobject that is not saved to DB.'), ('npc addtemp','2','Adds temporary NPC, not saved to database.'); diff --git a/sql/updates/2.4.3_updates/789_world.sql b/sql/updates/2.4.3_updates/789_world.sql new file mode 100644 index 00000000000..475e16538d1 --- /dev/null +++ b/sql/updates/2.4.3_updates/789_world.sql @@ -0,0 +1 @@ +ALTER TABLE `eventai_texts` DROP COLUMN `emote`;
\ No newline at end of file diff --git a/sql/updates/78_world.sql b/sql/updates/2.4.3_updates/78_world.sql index faa02e0e2a6..faa02e0e2a6 100644 --- a/sql/updates/78_world.sql +++ b/sql/updates/2.4.3_updates/78_world.sql diff --git a/sql/updates/79_characters.sql b/sql/updates/2.4.3_updates/79_characters.sql index 15b99f2f4b0..15b99f2f4b0 100644 --- a/sql/updates/79_characters.sql +++ b/sql/updates/2.4.3_updates/79_characters.sql diff --git a/sql/updates/79_world.sql b/sql/updates/2.4.3_updates/79_world.sql index 7b08a825311..7b08a825311 100644 --- a/sql/updates/79_world.sql +++ b/sql/updates/2.4.3_updates/79_world.sql diff --git a/sql/updates/2.4.3_updates/807_world_scripts.sql b/sql/updates/2.4.3_updates/807_world_scripts.sql new file mode 100644 index 00000000000..ee2cbee4fee --- /dev/null +++ b/sql/updates/2.4.3_updates/807_world_scripts.sql @@ -0,0 +1 @@ +UPDATE `creature_template` SET `ScriptName`='npc_isla_starmane' WHERE `entry`=18760;
\ No newline at end of file diff --git a/sql/updates/817_world_scripts.sql b/sql/updates/2.4.3_updates/817_world_scripts.sql index 07750f338b8..8cf97f7145a 100644 --- a/sql/updates/817_world_scripts.sql +++ b/sql/updates/2.4.3_updates/817_world_scripts.sql @@ -1,5 +1,7 @@ +UPDATE `creature_template` SET `ScriptName`='npc_ame' WHERE `entry`=9623; + DELETE FROM `script_texts` WHERE `entry` BETWEEN -1000205 AND -1000200; -INSERT INTO script_texts +INSERT INTO `script_texts` (`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 (-1000200, 'A-Me good.Good A-me.Follow...A-ME follow.Home.A-ME go home.', NULL, NULL, 'A-ME gut.Gut A-Me.Folgen...Heim.A-ME geht heim.', NULL, NULL, NULL, NULL, NULL, 0, 0, 0, 0, NULL), @@ -8,6 +10,4 @@ VALUES (-1000203, 'A-Me home.A-ME go home!Tar Lord dont disturb A-ME.', NULL, NULL, 'A-ME daheim.A-ME geht heim!Teerfürst A-ME nicht aufhalten.', NULL, NULL, NULL, NULL, NULL, 0, 0, 0, 0, NULL), (-1000204, 'Tar Lord A-ME no hurt.A-ME good.', NULL, NULL, 'Teerfürst A-ME nicht wehtun.A-ME gut.', NULL, NULL, NULL, NULL, NULL, 0, 0, 0, 0, NULL), (-1000205, 'A-ME at home!A-ME good!Good A-ME.At home.Home.Home', NULL, NULL, 'A-ME daheim!A-ME gut!Gute A-ME.Daheim.Daheim.Daheim', NULL, NULL, NULL, NULL, NULL, 0, 0, 0, 0, NULL); -UPDATE `quest_template` SET `QuestFlags` = 2, `SpecialFlags` = 2 WHERE `entry` = 4245; - -UPDATE `creature_template` SET `ScriptName` = 'npc_ame' WHERE `entry` = 9623;
\ No newline at end of file +UPDATE `quest_template` SET `QuestFlags` = 2, `SpecialFlags` = 2 WHERE `entry` = 4245;
\ No newline at end of file diff --git a/sql/updates/2.4.3_updates/822_world_scripts.sql b/sql/updates/2.4.3_updates/822_world_scripts.sql new file mode 100644 index 00000000000..942971f8d71 --- /dev/null +++ b/sql/updates/2.4.3_updates/822_world_scripts.sql @@ -0,0 +1,3 @@ +UPDATE `creature_template` SET `ScriptName`='npc_kayra_longmane' WHERE `entry`=17969; +DELETE FROM `creature_template_addon` WHERE `entry`=17969; +UPDATE `quest_template` SET specialflags=2 WHERE `entry`=9752;
\ No newline at end of file diff --git a/sql/updates/2.4.3_updates/826_world_scripts.sql b/sql/updates/2.4.3_updates/826_world_scripts.sql new file mode 100644 index 00000000000..487971d092c --- /dev/null +++ b/sql/updates/2.4.3_updates/826_world_scripts.sql @@ -0,0 +1 @@ +UPDATE `creature_template` SET `ScriptName`='npc_ruul_snowhoof' WHERE `entry`=12818;
\ No newline at end of file diff --git a/sql/updates/82_world_scripts.sql b/sql/updates/2.4.3_updates/82_world_scripts.sql index acdfdd06a6f..acdfdd06a6f 100644 --- a/sql/updates/82_world_scripts.sql +++ b/sql/updates/2.4.3_updates/82_world_scripts.sql diff --git a/sql/updates/2.4.3_updates/833_world_scripts.sql b/sql/updates/2.4.3_updates/833_world_scripts.sql new file mode 100644 index 00000000000..12ed9ecced5 --- /dev/null +++ b/sql/updates/2.4.3_updates/833_world_scripts.sql @@ -0,0 +1,2 @@ +UPDATE `creature_template` SET `ScriptName`='npc_dirty_larry', `unit_flags`=0, `flags_extra`=0 WHERE `entry`=19720; +UPDATE `creature_template` SET `unit_flags`=0, `flags_extra`=0 WHERE `entry` IN (19726, 19725);
\ No newline at end of file diff --git a/sql/updates/834_world_scripts.sql b/sql/updates/2.4.3_updates/834_world_scripts.sql index 14b3d74340e..14b3d74340e 100644 --- a/sql/updates/834_world_scripts.sql +++ b/sql/updates/2.4.3_updates/834_world_scripts.sql diff --git a/sql/updates/2.4.3_updates/837_world_scripts.sql b/sql/updates/2.4.3_updates/837_world_scripts.sql new file mode 100644 index 00000000000..5fc2abfc4df --- /dev/null +++ b/sql/updates/2.4.3_updates/837_world_scripts.sql @@ -0,0 +1 @@ +UPDATE `creature_template` SET `ScriptName`='npc_khadgar' WHERE `entry`=18166;
\ No newline at end of file diff --git a/sql/updates/2.4.3_updates/838_world_scripts.sql b/sql/updates/2.4.3_updates/838_world_scripts.sql new file mode 100644 index 00000000000..6b93a03afa0 --- /dev/null +++ b/sql/updates/2.4.3_updates/838_world_scripts.sql @@ -0,0 +1,4 @@ +UPDATE `creature_template` SET `ScriptName`='npc_kyle_frenzied' WHERE `entry`='23616'; +DELETE FROM `spell_script_target` WHERE `entry`=42222; +INSERT INTO `spell_script_target` VALUES +('42222','1','23616');
\ No newline at end of file diff --git a/sql/updates/2.4.3_updates/839_world_scripts.sql b/sql/updates/2.4.3_updates/839_world_scripts.sql new file mode 100644 index 00000000000..7b4ef66ba92 --- /dev/null +++ b/sql/updates/2.4.3_updates/839_world_scripts.sql @@ -0,0 +1 @@ +UPDATE `creature_template` SET `ScriptName`='npc_wizzlecrank_shredder' WHERE `entry`=3439;
\ No newline at end of file diff --git a/sql/updates/83_realmd.sql b/sql/updates/2.4.3_updates/83_realmd.sql index e3c74350735..e3c74350735 100644 --- a/sql/updates/83_realmd.sql +++ b/sql/updates/2.4.3_updates/83_realmd.sql diff --git a/sql/updates/2.4.3_updates/840_world_scripts.sql b/sql/updates/2.4.3_updates/840_world_scripts.sql new file mode 100644 index 00000000000..cfa3d492b9a --- /dev/null +++ b/sql/updates/2.4.3_updates/840_world_scripts.sql @@ -0,0 +1 @@ +UPDATE `creature_template` SET `spell1`=0, `flags_extra`=0, `ScriptName`='npc_volcano' WHERE `entry`=23085;
\ No newline at end of file diff --git a/sql/updates/2.4.3_updates/841_world_scripts.sql b/sql/updates/2.4.3_updates/841_world_scripts.sql new file mode 100644 index 00000000000..86d73ba2019 --- /dev/null +++ b/sql/updates/2.4.3_updates/841_world_scripts.sql @@ -0,0 +1 @@ +UPDATE `creature_template` SET `ScriptName`='npc_greengill_slave' WHERE `entry`=25084;
\ No newline at end of file diff --git a/sql/updates/842_world.sql b/sql/updates/2.4.3_updates/842_world.sql index 953dff584a0..cf017877b5e 100644 --- a/sql/updates/842_world.sql +++ b/sql/updates/2.4.3_updates/842_world.sql @@ -2,4 +2,4 @@ ALTER TABLE `areatrigger_teleport` ADD `heroic_required_quest_done` MEDIUMINT(8) UNSIGNED NOT NULL DEFAULT 0 AFTER `heroic_key2`, ADD `heroic_required_failed_quest_text` TEXT NULL DEFAULT NULL AFTER `heroic_required_quest_done`; -UPDATE `areatrigger_teleport` SET `heroic_required_quest_done` = 11492, `heroic_required_failed_quest_text` = 'Heroic Difficulty requires completion of the "Hard to Kill" quest.' WHERE `id` = 4887;
\ No newline at end of file +UPDATE `areatrigger_teleport` SET `heroic_required_quest_done`=11492, `heroic_required_failed_quest_text`='Heroic Difficulty requires completion of the "Hard to Kill" quest.' WHERE `id`=4887;
\ No newline at end of file diff --git a/sql/updates/84_world.sql b/sql/updates/2.4.3_updates/84_world.sql index 100185c0acd..100185c0acd 100644 --- a/sql/updates/84_world.sql +++ b/sql/updates/2.4.3_updates/84_world.sql diff --git a/sql/updates/2.4.3_updates/850_world_scripts.sql b/sql/updates/2.4.3_updates/850_world_scripts.sql new file mode 100644 index 00000000000..3027947cf14 --- /dev/null +++ b/sql/updates/2.4.3_updates/850_world_scripts.sql @@ -0,0 +1 @@ +UPDATE `creature_template` SET `ScriptName`='npc_bessy' WHERE `entry`=20415;
\ No newline at end of file diff --git a/sql/updates/2.4.3_updates/852_world_scripts.sql b/sql/updates/2.4.3_updates/852_world_scripts.sql new file mode 100644 index 00000000000..001b43c8820 --- /dev/null +++ b/sql/updates/2.4.3_updates/852_world_scripts.sql @@ -0,0 +1,2 @@ +UPDATE `creature_template` SET `ScriptName`='mob_nestlewood_owlkin' WHERE `entry`=16518; +UPDATE `item_template` SET `ScriptName`='item_inoculating_crystal' WHERE `entry`=22962;
\ No newline at end of file diff --git a/sql/updates/2.4.3_updates/857_world_scripts.sql b/sql/updates/2.4.3_updates/857_world_scripts.sql new file mode 100644 index 00000000000..acd712aecb9 --- /dev/null +++ b/sql/updates/2.4.3_updates/857_world_scripts.sql @@ -0,0 +1 @@ +UPDATE `creature_template` SET `ScriptName`='npc_kaya_flathoof' WHERE `entry`=11856;
\ No newline at end of file diff --git a/sql/updates/863_world_scripts.sql b/sql/updates/2.4.3_updates/863_world_scripts.sql index e23f6067c05..a7a214b8956 100644 --- a/sql/updates/863_world_scripts.sql +++ b/sql/updates/2.4.3_updates/863_world_scripts.sql @@ -1,5 +1,7 @@ +UPDATE `creature_template` SET `ScriptName`='npc_OOX17' WHERE `entry`=7784; + DELETE FROM `script_texts` WHERE `entry` BETWEEN -1060005 AND -1060000; -INSERT INTO script_texts +INSERT INTO `script_texts` (`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 (-1060000, 'Emergency power activated! Initializing ambulatory motor! CLUCK!', NULL, NULL, 'Notfallenergie aktiviert! Ambulatorenantrieb wird gestartet! GLUCK!', NULL, NULL, NULL, NULL, NULL, 0, 0, 0, 0, NULL), @@ -7,6 +9,4 @@ VALUES (-1060002, 'Threat analyzed! Activating combat plan beta! CLUCK!', NULL, NULL, 'Bedrohung analysiert! Gefechtsplan Beta wird aktiviert! GLUCK!', NULL, NULL, NULL, NULL, NULL, 0, 0, 0, 0, NULL), (-1060003, 'CLUCK! Sensors detect spatial anomaly -- danger imminent! CLUCK', NULL, NULL, 'GLUCK! Sensoren haben räumliche Anomalie entdeckt - Gefahr im Verzug! GLUCK!', NULL, NULL, NULL, NULL, NULL, 0, 0, 0, 0, NULL), (-1060004, 'No one challenges the wastevander nomads -- not even robotic chickens! ATTACK!', NULL, NULL, 'Niemand fordert die Wüsenläufernomaden heraus - auch keine Robothühner! ANGRIFF!', NULL, NULL, NULL, NULL, NULL, 0, 0, 0, 0, NULL), - (-1060005, 'Cloaking systems online! CLUCK! Engaging cloak for transport to Booty Bay!', NULL, NULL, 'Tarnsysteme online! GLUCK! Tarnung für Transport nach Beutebucht wird aktiviert.', NULL, NULL, NULL, NULL, NULL, 0, 0, 0, 0, NULL); - -UPDATE `creature_template` SET `ScriptName` = 'npc_OOX17' WHERE `entry` = 7784;
\ No newline at end of file + (-1060005, 'Cloaking systems online! CLUCK! Engaging cloak for transport to Booty Bay!', NULL, NULL, 'Tarnsysteme online! GLUCK! Tarnung für Transport nach Beutebucht wird aktiviert.', NULL, NULL, NULL, NULL, NULL, 0, 0, 0, 0, NULL);
\ No newline at end of file diff --git a/sql/updates/86_world_scripts.sql b/sql/updates/2.4.3_updates/86_world_scripts.sql index 8f3c6ac6265..8f3c6ac6265 100644 --- a/sql/updates/86_world_scripts.sql +++ b/sql/updates/2.4.3_updates/86_world_scripts.sql diff --git a/sql/updates/871_world.sql b/sql/updates/2.4.3_updates/871_world.sql index 54922de2a40..114cd3101b7 100644 --- a/sql/updates/871_world.sql +++ b/sql/updates/2.4.3_updates/871_world.sql @@ -1,6 +1,6 @@ DELETE FROM `trinity_string` WHERE `entry` BETWEEN '288' AND '295'; DELETE FROM `trinity_string` WHERE `entry` BETWEEN '2000' AND '2029'; -INSERT INTO trinity_string (`entry`, `content_default`, `content_loc1`, `content_loc2`, `content_loc3`, `content_loc4`, `content_loc5`, `content_loc6`, `content_loc7`, `content_loc8`) VALUES +INSERT INTO `trinity_string` (`entry`, `content_default`, `content_loc1`, `content_loc2`, `content_loc3`, `content_loc4`, `content_loc5`, `content_loc6`, `content_loc7`, `content_loc8`) VALUES (2000, '|cff00ff00New ticket from|r|cffff00ff %s.|r |cff00ff00Ticket entry:|r|cffff00ff %d.|r', '', '', '', '', '', '', '', ''), (2001, '|cff00ff00Character|r|cffff00ff %s |r|cff00ff00edited his/her ticket:|r|cffff00ff %d.|r', '', '', '', '', '', '', '', ''), (2002, '|cff00ff00Character|r|cffff00ff %s |r|cff00ff00abandoned ticket entry:|r|cffff00ff %d.|r', '', '', '', '', '', '', '', ''), @@ -28,4 +28,4 @@ INSERT INTO trinity_string (`entry`, `content_default`, `content_loc1`, `content (2024, '\n|cff00ccff%s|r |cff00ff00Added comment|r: \"%s\"|r ', '', '', '', '', '', '', '', ''); DELETE FROM `command` WHERE (`name` LIKE '%ticket closedlist%'); -INSERT INTO `command` (`name`,`security`,`help`) VALUES ('.ticket closedlist','1','Displays a list of closed GM tickets.'); +INSERT INTO `command` (`name`,`security`,`help`) VALUES ('.ticket closedlist','1','Displays a list of closed GM tickets.');
\ No newline at end of file diff --git a/sql/updates/884_world.sql b/sql/updates/2.4.3_updates/884_world.sql index fd3ead62313..9924bf86f61 100644 --- a/sql/updates/884_world.sql +++ b/sql/updates/2.4.3_updates/884_world.sql @@ -1,4 +1,4 @@ -delete from command where name in ('gobject tempadd','npc tempadd'); -insert into command (name, security, help) values +DELETE FROM `command` WHERE `name` IN ('gobject tempadd','npc tempadd'); +INSERT INTO `command` (name, security, help) VALUES ('gobject addtemp','2','Adds a temporary gameobject that is not saved to DB.'), -('npc addtemp','2','Adds temporary NPC, not saved to database.'); +('npc addtemp','2','Adds temporary NPC, not saved to database.');
\ No newline at end of file diff --git a/sql/updates/905_world_scripts.sql b/sql/updates/2.4.3_updates/905_world_scripts.sql index 3e59e1f0e52..3e59e1f0e52 100644 --- a/sql/updates/905_world_scripts.sql +++ b/sql/updates/2.4.3_updates/905_world_scripts.sql diff --git a/sql/updates/90_world.sql b/sql/updates/2.4.3_updates/90_world.sql index 52ca028b6ac..52ca028b6ac 100644 --- a/sql/updates/90_world.sql +++ b/sql/updates/2.4.3_updates/90_world.sql diff --git a/sql/updates/917_world.sql b/sql/updates/2.4.3_updates/917_world.sql index 084091ec0af..7c989ce7ca4 100644 --- a/sql/updates/917_world.sql +++ b/sql/updates/2.4.3_updates/917_world.sql @@ -3,6 +3,6 @@ CREATE TABLE `version` ( `db_version` varchar(120) default NULL COMMENT 'Version of world DB.', `script_version` varchar(120) default NULL COMMENT 'Version of scripts DB.' ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Version Notes'; -INSERT INTO version (core_version, db_version, script_version) VALUES ("",(SELECT version FROM db_version),(SELECT version FROM script_db_version)); -DROP TABLE IF EXISTS db_version; -DROP TABLE IF EXISTS script_db_version;
\ No newline at end of file +INSERT INTO `version` (core_version, db_version, script_version) VALUES ("",(SELECT version FROM db_version),(SELECT version FROM script_db_version)); +DROP TABLE IF EXISTS `db_version`; +DROP TABLE IF EXISTS `script_db_version`;
\ No newline at end of file diff --git a/sql/updates/919_world.sql b/sql/updates/2.4.3_updates/919_world.sql index 24267d49223..4d4a6308576 100644 --- a/sql/updates/919_world.sql +++ b/sql/updates/2.4.3_updates/919_world.sql @@ -1,2 +1,2 @@ -ALTER TABLE version +ALTER TABLE `version` ADD `core_revision` BIGINT UNSIGNED AFTER `core_version`;
\ No newline at end of file diff --git a/sql/updates/927_characters.sql b/sql/updates/2.4.3_updates/927_characters.sql index 6cbcf21e7bd..6cbcf21e7bd 100644 --- a/sql/updates/927_characters.sql +++ b/sql/updates/2.4.3_updates/927_characters.sql diff --git a/sql/updates/930_characters.sql b/sql/updates/2.4.3_updates/930_characters.sql index f0ec58c2dc6..cc215786bb1 100644 --- a/sql/updates/930_characters.sql +++ b/sql/updates/2.4.3_updates/930_characters.sql @@ -50,7 +50,7 @@ CREATE TABLE IF NOT EXISTS `auctionhousebot` ( -- -- Data for table `auctionhousebot` -- -insert into `auctionhousebot` (`auctionhouse`,`name`,`minitems`,`maxitems`,`mintime`,`maxtime`,`percentwhitetradegoods`,`percentgreentradegoods`,`percentbluetradegoods`,`percentpurpletradegoods`,`percentwhiteitems`,`percentgreenitems`,`percentblueitems`,`percentpurpleitems`,`minpricewhite`,`maxpricewhite`,`minpricegreen`,`maxpricegreen`,`minpriceblue`,`maxpriceblue`,`minpricepurple`,`maxpricepurple`,`minbidpricewhite`,`maxbidpricewhite`,`minbidpricegreen`,`maxbidpricegreen`,`minbidpriceblue`,`maxbidpriceblue`,`minbidpricepurple`,`maxbidpricepurple`,`maxstackwhite`,`maxstackgreen`,`maxstackblue`,`maxstackpurple`,`buyerpricegrey`,`buyerpricewhite`,`buyerpricegreen`,`buyerpriceblue`,`buyerpricepurple`,`buyerbiddinginterval`,`buyerbidsperinterval`) values +INSERT IGNORE INTO `auctionhousebot` (`auctionhouse`,`name`,`minitems`,`maxitems`,`mintime`,`maxtime`,`percentwhitetradegoods`,`percentgreentradegoods`,`percentbluetradegoods`,`percentpurpletradegoods`,`percentwhiteitems`,`percentgreenitems`,`percentblueitems`,`percentpurpleitems`,`minpricewhite`,`maxpricewhite`,`minpricegreen`,`maxpricegreen`,`minpriceblue`,`maxpriceblue`,`minpricepurple`,`maxpricepurple`,`minbidpricewhite`,`maxbidpricewhite`,`minbidpricegreen`,`maxbidpricegreen`,`minbidpriceblue`,`maxbidpriceblue`,`minbidpricepurple`,`maxbidpricepurple`,`maxstackwhite`,`maxstackgreen`,`maxstackblue`,`maxstackpurple`,`buyerpricegrey`,`buyerpricewhite`,`buyerpricegreen`,`buyerpriceblue`,`buyerpricepurple`,`buyerbiddinginterval`,`buyerbidsperinterval`) values (2,'Alliance',0,0,8,24,27,12,10,1,10,30,8,2,150,250,800,1400,1250,1750,2250,4550,70,100,80,100,75,100,80,100,0,3,2,1,1,1,5,12,15,1,1), (6,'Horde',0,0,8,24,27,12,10,1,10,30,8,2,150,250,800,1400,1250,1750,2250,4550,70,100,80,100,75,100,80,100,0,3,2,1,1,1,5,12,15,1,1), -(7,'Neutral',0,0,8,24,27,12,10,1,10,30,8,2,150,250,800,1400,1250,1750,2250,4550,70,100,80,100,75,100,80,100,0,3,2,1,1,1,5,12,15,1,1); +(7,'Neutral',0,0,8,24,27,12,10,1,10,30,8,2,150,250,800,1400,1250,1750,2250,4550,70,100,80,100,75,100,80,100,0,3,2,1,1,1,5,12,15,1,1);
\ No newline at end of file diff --git a/sql/updates/2.4.3_updates/933_world_scripts.sql b/sql/updates/2.4.3_updates/933_world_scripts.sql new file mode 100644 index 00000000000..1a3e9d96f56 --- /dev/null +++ b/sql/updates/2.4.3_updates/933_world_scripts.sql @@ -0,0 +1 @@ +UPDATE `creature_template` SET `ScriptName`='npc_snake_trap_serpents' WHERE `entry` IN (19921, 19833);
\ No newline at end of file diff --git a/sql/updates/2.4.3_updates/935_world_scripts.sql b/sql/updates/2.4.3_updates/935_world_scripts.sql new file mode 100644 index 00000000000..934d3a7de23 --- /dev/null +++ b/sql/updates/2.4.3_updates/935_world_scripts.sql @@ -0,0 +1,6 @@ +DELETE FROM `creature` WHERE `id`='17653'; + +UPDATE `gameobject_template` SET `flags`='4' WHERE `entry` IN ('181766','181823'); +UPDATE `gameobject` SET `SpawnMask`='3',`state`='1' WHERE `id` IN ('181766','181823'); + +UPDATE `instance_template` SET `script`='instance_blood_furnace' WHERE `map`=542;
\ No newline at end of file diff --git a/sql/updates/2.4.3_updates/940_world_scripts.sql b/sql/updates/2.4.3_updates/940_world_scripts.sql new file mode 100644 index 00000000000..c7f378c6360 --- /dev/null +++ b/sql/updates/2.4.3_updates/940_world_scripts.sql @@ -0,0 +1,2 @@ +ALTER TABLE `custom_texts` CHANGE COLUMN `emote` `emote` smallint(5) unsigned NOT NULL DEFAULT '0'; +ALTER TABLE `script_texts` CHANGE COLUMN `emote` `emote` smallint(5) unsigned NOT NULL DEFAULT '0';
\ No newline at end of file diff --git a/sql/updates/945_world_scripts.sql b/sql/updates/2.4.3_updates/945_world_scripts.sql index 8d007e347f9..a96e7cc1a68 100644 --- a/sql/updates/945_world_scripts.sql +++ b/sql/updates/2.4.3_updates/945_world_scripts.sql @@ -1,8 +1,8 @@ -update creature_template set scriptname='' where entry=22083; -update creature_template set scriptname='npc_overlord_morghor' where entry=23139; -update creature_template set scriptname='' where entry=23141; -DELETE FROM script_texts WHERE entry BETWEEN -1000221 and -1000206; -INSERT INTO script_texts (entry, content_default, type, emote, comment) VALUES +UPDATE `creature_template` SET `ScriptName`='' WHERE `entry`=22083; +UPDATE `creature_template` SET `ScriptName`='npc_overlord_morghor' WHERE `entry`=23139; +UPDATE `creature_template` SET `ScriptName`='' WHERE `entry`=23141; +DELETE FROM `script_texts` WHERE entry BETWEEN -1000221 and -1000206; +INSERT INTO `script_texts` (entry, content_default, type, emote, comment) VALUES (-1000206, 'Come, $N. Lord Stormrage awaits.', 0, 1, 'OVERLORD_SAY_1'), (-1000207, 'Lord Illidan will be here shortly.', 0, 1, 'OVERLORD_SAY_2'), (-1000208, 'Lord Illidan, this is the Dragonmaw that I, and others, have told you about. He will lead us to victory!', 0, 1, 'OVERLORD_SAY_3'), @@ -20,12 +20,12 @@ INSERT INTO script_texts (entry, content_default, type, emote, comment) VALUES (-1000220, '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.', 0, 1, 'LORD_ILLIDAN_SAY_7'), (-1000221, 'You will not harm the boy, Mor\'ghor! Quickly, $N, climb on my back!', 0, 22, 'YARZILL_THE_MERC_SAY'); -DELETE FROM script_texts WHERE entry='-1000222'; -INSERT INTO script_texts (entry, content_default, type, language, emote, comment) VALUES +DELETE FROM `script_texts` WHERE `entry`='-1000222'; +INSERT INTO `script_texts` (entry, content_default, type, language, emote, comment) VALUES (-1000222, 'Thank you, mortal.', 0, 11, 1, 'SAY_JUST_EATEN'); -DELETE FROM script_texts WHERE entry BETWEEN -1000234 and -1000223; -INSERT INTO script_texts (entry, content_default, emote, comment) VALUES +DELETE FROM `script_texts` WHERE `entry` BETWEEN -1000234 and -1000223; +INSERT INTO `script_texts` (entry, content_default, emote, comment) VALUES (-1000223, 'I sense the tortured spirits, $N. They are this way, come quickly!', 1, 'SAY_START'), (-1000224, 'Watch out!', 0, 'SAY_AGGRO1'), (-1000225, 'Naga attackers! Defend yourself!', 0, 'SAY_AGGRO2'), @@ -37,5 +37,4 @@ INSERT INTO script_texts (entry, content_default, emote, comment) VALUES (-1000231, 'Lady Vashj must answer for these atrocities. She must be brought to justice!', 0, 'SAY_PROGRESS4'), (-1000232, 'The tumultuous nature of the great waterways of Azeroth and Draenor are a direct result of tormented water spirits.', 0, 'SAY_PROGRESS5'), (-1000233, 'It shouldn\'t be much further, $N. The exit is just up ahead.', 0, 'SAY_PROGRESS6'), -(-1000234, '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...', 0, 'SAY_END'); - +(-1000234, '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...', 0, 'SAY_END');
\ No newline at end of file diff --git a/sql/updates/947_world_scripts.sql b/sql/updates/2.4.3_updates/947_world_scripts.sql index 7067a1ed706..a62e3a24455 100644 --- a/sql/updates/947_world_scripts.sql +++ b/sql/updates/2.4.3_updates/947_world_scripts.sql @@ -1,5 +1,5 @@ -DELETE FROM script_texts WHERE entry BETWEEN -1000244 and -1000235; -INSERT INTO script_texts (entry, content_default, type, emote, comment) VALUES +DELETE FROM `script_texts` WHERE `entry` BETWEEN -1000244 and -1000235; +INSERT INTO `script_texts` (entry, content_default, type, emote, comment) VALUES (-1000235, 'Ok, $N. Follow me to the cave where I\'ll attempt to harness the power of the rune stone into these goggles.', 0, 1, 'phizzlethorpe - SAY_PROGRESS_1'), (-1000236, 'I discovered this cave on our first day here. I believe the energy in the stone can be used to our advantage.', 0, 1, 'phizzlethorpe - SAY_PROGRESS_2'), (-1000237, 'I\'ll begin drawing energy from the stone. Your job, $N, is to defend me. This place is cursed... trust me.', 0, 1, 'phizzlethorpe - SAY_PROGRESS_3'), diff --git a/sql/updates/948_world_scripts.sql b/sql/updates/2.4.3_updates/948_world_scripts.sql index 5f8f74cb5c0..4828323f7e6 100644 --- a/sql/updates/948_world_scripts.sql +++ b/sql/updates/2.4.3_updates/948_world_scripts.sql @@ -1,5 +1,5 @@ -DELETE FROM script_texts WHERE entry BETWEEN -1000247 and -1000245; -INSERT INTO script_texts (entry, content_default, type, comment) VALUES +DELETE FROM `script_texts` WHERE `entry` BETWEEN -1000247 and -1000245; +INSERT INTO `script_texts` (entry, content_default, type, comment) VALUES (-1000245, 'You, there! Hand over that moonstone and nobody gets hurt!', 1, 'SAY_RIZZLE_START'), (-1000246, 'Just chill!', 4, 'SAY_RIZZLE_GRENADE'), (-1000247, 'All right, you win! I surrender! Just don\'t hurt me!', 1, 'SAY_RIZZLE_FINAL');
\ No newline at end of file diff --git a/sql/updates/950_world_scripts.sql b/sql/updates/2.4.3_updates/950_world_scripts.sql index 789ad810123..df7fda62a4d 100644 --- a/sql/updates/950_world_scripts.sql +++ b/sql/updates/2.4.3_updates/950_world_scripts.sql @@ -1,5 +1,5 @@ -DELETE FROM script_texts WHERE entry BETWEEN -1000266 and -1000248; -INSERT INTO script_texts (entry, content_default, type, emote, comment) VALUES +DELETE FROM `script_texts` WHERE `entry` BETWEEN -1000266 and -1000248; +INSERT INTO `script_texts` (entry, content_default, type, emote, comment) VALUES (-1000248, '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!', 0, 0, 'draenei survivor - HEAL1'), (-1000249, '$C, Where am I? Who are you? Oh no! What happened to the ship?.', 0, 0, 'draenei survivor - HEAL2'), (-1000250, '$C You saved me! I owe you a debt that I can never repay. I\'ll go see if I can help the others.', 0, 0, 'draenei survivor - HEAL3'), diff --git a/sql/updates/951_world_scripts.sql b/sql/updates/2.4.3_updates/951_world_scripts.sql index 39208672b32..c0d7a80d58c 100644 --- a/sql/updates/951_world_scripts.sql +++ b/sql/updates/2.4.3_updates/951_world_scripts.sql @@ -1,5 +1,5 @@ -DELETE FROM script_texts WHERE entry BETWEEN -1000279 and -1000267; -INSERT INTO script_texts (entry, content_default, type, comment) VALUES +DELETE FROM `script_texts` WHERE `entry` BETWEEN -1000279 and -1000267; +INSERT INTO `script_texts` (entry, content_default, type, comment) VALUES (-1000267, 'Ready when you are, warrior.', 1, 'flathead - SAY_BIG_WILL_READY'), (-1000268, 'The Affray has begun, get ready to fight!', 1, 'flathead - SAY_TWIGGY_FLATHEAD_BEGIN'), (-1000269, 'You! Enter the fray!', 1, 'flathead - SAY_TWIGGY_FLATHEAD_FRAY'), diff --git a/sql/updates/952_world_scripts.sql b/sql/updates/2.4.3_updates/952_world_scripts.sql index e06302538a2..b252050d981 100644 --- a/sql/updates/952_world_scripts.sql +++ b/sql/updates/2.4.3_updates/952_world_scripts.sql @@ -1,5 +1,5 @@ -DELETE FROM script_texts where entry BETWEEN -1000285 and -1000280; -INSERT INTO script_texts (entry, content_default, type, language, comment) VALUES +DELETE FROM `script_texts` WHERE `entry` BETWEEN -1000285 and -1000280; +INSERT INTO `script_texts` (entry, content_default, type, language, comment) VALUES (-1000280, 'Thank you, dear Paladin, you just saved my life.', 0, 7, 'faulk - SAY_HEAL'), (-1000281, 'Very well. Let\'s see what you have to show me, $N.', 0, 0, 'anvilvard - SAY_PR_1'), diff --git a/sql/updates/953_world_scripts.sql b/sql/updates/2.4.3_updates/953_world_scripts.sql index 3811b6a98cf..3f0f46fd8e3 100644 --- a/sql/updates/953_world_scripts.sql +++ b/sql/updates/2.4.3_updates/953_world_scripts.sql @@ -1,5 +1,5 @@ -DELETE FROM script_texts where entry BETWEEN -1000292 and -1000286; -INSERT INTO script_texts (entry, content_default, type, emote, comment) VALUES +DELETE FROM `script_texts` WHERE `entry` BETWEEN -1000292 and -1000286; +INSERT INTO `script_texts` (entry, content_default, type, emote, comment) VALUES (-1000286, 'A shadowy, sinister presence has invader 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.', 0, 0, 'clintar_spirit'), (-1000287, 'The Emerald Dream will never be yours!', 0, 0, 'clintar_spirit'), (-1000288, 'Begone from this place!', 0, 0, 'clintar_spirit'), diff --git a/sql/updates/954_world_scripts.sql b/sql/updates/2.4.3_updates/954_world_scripts.sql index 009f59517ac..70a5a377dbd 100644 --- a/sql/updates/954_world_scripts.sql +++ b/sql/updates/2.4.3_updates/954_world_scripts.sql @@ -1,5 +1,5 @@ -DELETE FROM script_texts WHERE entry BETWEEN -1000305 and -1000293; -INSERT INTO script_texts (entry, content_default, type, comment) VALUES +DELETE FROM `script_texts` WHERE `entry` BETWEEN -1000305 and -1000293; +INSERT INTO `script_texts` (entry, content_default, type, comment) VALUES (-1000293, 'In Nagrand, food hunt ogre!', 0, 'LUMP_SAY0'), (-1000294, 'You taste good with maybe a little salt and pepper.', 0, 'LUMP_SAY1'), (-1000295, 'OK, OK! Lump give up!', 0, 'LUMP_DEFEAT'), diff --git a/sql/updates/955_world_scripts.sql b/sql/updates/2.4.3_updates/955_world_scripts.sql index 7c389377433..5978a4786ad 100644 --- a/sql/updates/955_world_scripts.sql +++ b/sql/updates/2.4.3_updates/955_world_scripts.sql @@ -1,5 +1,5 @@ -DELETE FROM script_texts WHERE entry BETWEEN -1000333 and -1000306; -INSERT INTO script_texts (entry, content_default, type, comment) VALUES +DELETE FROM `script_texts` WHERE `entry` BETWEEN -1000333 and -1000306; +INSERT INTO `script_texts` (entry, content_default, type, comment) VALUES (-1000306, 'Follow me, stranger. This won\'t take long.', 0, 'npc_kservant - SAY1'), (-1000307, 'Shattrath was once the draenei capital of this world. Its name means \"dwelling of light.\"', 4, 'npc_kservant - WHISP1'), (-1000308, '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.', 4, 'npc_kservant - WHISP2'), @@ -31,12 +31,12 @@ INSERT INTO script_texts (entry, content_default, type, comment) VALUES (-1000332, 'Time to meet your maker!', 0, ''), (-1000333, 'Alright, we give up! Don\'t hurt us!', 0, ''); -DELETE FROM script_texts WHERE entry=-1000334; -INSERT INTO script_texts (entry, content_default, type, language, comment) VALUES +DELETE FROM `script_texts` WHERE `entry`=-1000334; +INSERT INTO `script_texts` (entry, content_default, type, language, comment) VALUES (-1000334, 'Thank you, dear Paladin, you just saved my life.', 0, 10, 'stillblade - SAY_HEAL'); -DELETE FROM script_texts WHERE entry BETWEEN -1000349 and -1000335; -INSERT INTO script_texts (entry, content_default, type, comment) VALUES +DELETE FROM `script_texts` WHERE `entry` BETWEEN -1000349 and -1000335; +INSERT INTO `script_texts` (entry, content_default, type, comment) VALUES (-1000335, 'Let\'s get to the others, and keep an eye open for those wolves cutside...', 0, 'npc_deathstalker_erland - SAY_QUESTACCEPT'), (-1000336, 'Be careful, $N. Those wolves like to hide among the trees.', 0, 'npc_deathstalker_erland - SAY_START'), diff --git a/sql/updates/956_world_scripts.sql b/sql/updates/2.4.3_updates/956_world_scripts.sql index 35859f191b5..8ac06a7ab97 100644 --- a/sql/updates/956_world_scripts.sql +++ b/sql/updates/2.4.3_updates/956_world_scripts.sql @@ -1,5 +1,5 @@ -DELETE FROM script_texts WHERE entry BETWEEN -1000365 and -1000350; -INSERT INTO script_texts (entry, content_default, type, comment) VALUES +DELETE FROM `script_texts` WHERE `entry` BETWEEN -1000365 and -1000350; +INSERT INTO `script_texts` (entry, content_default, type, comment) VALUES (-1000350, 'Who dares awaken Aquementas?', 1, 'mob_aquementas - AGGRO_YELL_AQUE'), (-1000351, 'I give up! Please don\'t kill me!', 0, 'mob_unkor_the_ruthless - SAY_SUBMIT'), @@ -9,9 +9,7 @@ INSERT INTO script_texts (entry, content_default, type, comment) VALUES (-1000353, 'Ok let\'s get out of here!', 0, 'npc_isla_starmane - SAY_PROGRESS_1'), (-1000354, 'You sure you\'re ready? Take a moment.', 0, 'npc_isla_starmane - SAY_PROGRESS_2'), (-1000355, 'Alright, let\'s do this!', 0, 'npc_isla_starmane - SAY_PROGRESS_3'), -(-1000356, 'Ok, I think I can make it on my own from here. Thank you so much for breaking me out of there!', 0, - -'npc_isla_starmane - SAY_PROGRESS_4'), +(-1000356, 'Ok, I think I can make it on my own from here. Thank you so much for breaking me out of there!', 0, 'npc_isla_starmane - SAY_PROGRESS_4'), (-1000357, 'Belore...', 0, 'npc_lady_sylvanas_windrunner - SAY_LAMENT_END'), (-1000358, 'kneels down and pick up the amulet.', 2, 'npc_lady_sylvanas_windrunner - EMOTE_LAMENT_END'), diff --git a/sql/updates/957_world_scripts.sql b/sql/updates/2.4.3_updates/957_world_scripts.sql index 8cae6b3fe87..368bd1f5573 100644 --- a/sql/updates/957_world_scripts.sql +++ b/sql/updates/2.4.3_updates/957_world_scripts.sql @@ -33,4 +33,4 @@ INSERT INTO `waypoint_data`(`id`,`point`,`position_x`,`position_y`,`position_z`) ('2081','4','-1430','1705','112'), ('2081','5','-1393.5','1705.5','112'), ('2081','6','-1369.8','1724.5','112'), -('2081','7','-1377','1760','112'); +('2081','7','-1377','1760','112');
\ No newline at end of file diff --git a/sql/updates/963_world_scripts.sql b/sql/updates/2.4.3_updates/963_world_scripts.sql index df886987039..9083b243064 100644 --- a/sql/updates/963_world_scripts.sql +++ b/sql/updates/2.4.3_updates/963_world_scripts.sql @@ -1,13 +1,13 @@ -UPDATE creature_template set ScriptName='mob_illidari_spawn' WHERE entry IN (22075,22074,19797); +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; -delete from creature where id=22083; -INSERT INTO creature (id, map, spawnMask, modelid, equipment_id, position_x, position_y, position_z, orientation, spawntimesecs, spawndist, currentwaypoint, curhealth, curmana, DeathState, MovementType) +UPDATE `creature_template` SET `ScriptName`='npc_lord_illidan_stormrage' WHERE `entry`=22083; +DELETE FROM `creature` WHERE `id`=22083; +INSERT INTO `creature` (id, map, spawnMask, modelid, equipment_id, position_x, position_y, position_z, orientation, spawntimesecs, spawndist, currentwaypoint, curhealth, curmana, DeathState, MovementType) VALUES (22083, 530, 1, 0, 0, -4635.75, 1386.32, 137.34, 5.72398, 25,0, 0, 9955, 6774, 0, 0); -update gameobject_template set scriptname='go_crystal_prison' where entry=185126; +UPDATE `gameobject_template` SET `ScriptName`='go_crystal_prison' WHERE `entry`=185126; -DELETE FROM script_texts WHERE entry BETWEEN -1000374 and -1000366; -INSERT INTO script_texts (entry, content_default, type, comment) VALUES +DELETE FROM `script_texts` WHERE `entry` BETWEEN -1000374 and -1000366; +INSERT INTO `script_texts` (entry, content_default, type, comment) VALUES (-1000366, 'So you have defeated the Crimson Sigil. You now seek to challenge my rule? Not even Arthas could defeat me, yet you dare to even harbor such thoughts? Then I say to you, come! Come $N! The Black Temple awaits...', 1, 'Quest: Battle of the crimson watch - END_TEXT'), (-1000367, 'At your command, my liege...', 0, 'TorlothAnim - First'), diff --git a/sql/updates/965_world_scripts.sql b/sql/updates/2.4.3_updates/965_world_scripts.sql index 9c93f78ec09..e3160223d5a 100644 --- a/sql/updates/965_world_scripts.sql +++ b/sql/updates/2.4.3_updates/965_world_scripts.sql @@ -14,4 +14,4 @@ REPLACE INTO `spell_script_target` VALUES (21934,1,21934), (43144,1,23817), (12613,1,5843), -(9095,1,1200); +(9095,1,1200);
\ No newline at end of file diff --git a/sql/updates/966_world_scripts.sql b/sql/updates/2.4.3_updates/966_world_scripts.sql index 10a3e09985c..f49411890f4 100644 --- a/sql/updates/966_world_scripts.sql +++ b/sql/updates/2.4.3_updates/966_world_scripts.sql @@ -1,5 +1,5 @@ -DELETE FROM script_texts WHERE entry BETWEEN -1000395 AND -1000375; -INSERT INTO script_texts (entry,content_default,sound,type,language,emote,comment) VALUES +DELETE FROM `script_texts` WHERE `entry` BETWEEN -1000395 AND -1000375; +INSERT INTO `script_texts` (entry,content_default,sound,type,language,emote,comment) VALUES (-1000375 ,'I remember well the sting of defeat at the conclusion of the Third War. I have waited far too long for my revenge. Now the shadow of the Legion falls over this world. It is only a matter of time until all of your failed creation... is undone.',11332,1,0,0,'kazzak SAY_INTRO'), (-1000376,'The Legion will conquer all!',11333,1,0,0,'kazzak SAY_AGGRO1'), (-1000377,'All mortals will perish!',11334,1,0,0,'kazzak SAY_AGGRO2'), diff --git a/sql/updates/970_world_scripts.sql b/sql/updates/2.4.3_updates/970_world_scripts.sql index 3394b71ab20..5a9223cfc78 100644 --- a/sql/updates/970_world_scripts.sql +++ b/sql/updates/2.4.3_updates/970_world_scripts.sql @@ -5,4 +5,4 @@ INSERT INTO `script_texts` (entry, content_default, type, language, comment) VAL (-1000398, 'Where shall I begin? I cannot bother myself with a worm such as yourself. There is a world to be conquered!', 0, 0, 'mobs_nether_Drake - SAY_NIHIL_3'), (-1000399, '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.', 0, 0, 'mobs_nether_drake - SAY_NIHIL_4'), (-1000400, 'NOOOOooooooo!', 1, 0, 'mobs_nether_drake - SAY_NIHIL_INTERRUPT'), -(-1000401, 'Good $N, you are under the spell\'s influence. I must analyze it quickly, then we can talk.', 0, 7, 'npc_daranelle - SAY_DARANELLE'); +(-1000401, 'Good $N, you are under the spell\'s influence. I must analyze it quickly, then we can talk.', 0, 7, 'npc_daranelle - SAY_DARANELLE');
\ No newline at end of file diff --git a/sql/updates/973_world_scripts.sql b/sql/updates/2.4.3_updates/973_world_scripts.sql index ea997f917ff..ea997f917ff 100644 --- a/sql/updates/973_world_scripts.sql +++ b/sql/updates/2.4.3_updates/973_world_scripts.sql diff --git a/sql/updates/6936_01_mangos_spell_chain.sql b/sql/updates/6936_01_mangos_spell_chain.sql deleted file mode 100644 index bd5fd301ce4..00000000000 --- a/sql/updates/6936_01_mangos_spell_chain.sql +++ /dev/null @@ -1,2857 +0,0 @@ -ALTER TABLE db_version CHANGE COLUMN required_2008_12_22_17_mangos_item_template required_6936_01_mangos_spell_chain bit; - -DELETE FROM spell_chain; -INSERT INTO spell_chain VALUES -/*------------------ ---(6) Frost -------------------*/ -/*Blizzard*/ -(10,0,10,1,0), -(6141,10,10,2,0), -(8427,6141,10,3,0), -(10185,8427,10,4,0), -(10186,10185,10,5,0), -(10187,10186,10,6,0), -(27085,10187,10,7,0), -(42939,27085,10,8,0), -(42940,42939,10,9,0), -/*ConeofCold*/ -(120,0,120,1,0), -(8492,120,120,2,0), -(10159,8492,120,3,0), -(10160,10159,120,4,0), -(10161,10160,120,5,0), -(27087,10161,120,6,0), -(42930,27087,120,7,0), -(42931,42930,120,8,0), -/*FrostArmor*/ -(168,0,168,1,0), -(7300,168,168,2,0), -(7301,7300,168,3,0), -/*FrostNova*/ -(122,0,122,1,0), -(865,122,122,2,0), -(6131,865,122,3,0), -(10230,6131,122,4,0), -(27088,10230,122,5,0), -(42917,27088,122,6,0), -/*FrostWard*/ -(6143,0,6143,1,0), -(8461,6143,6143,2,0), -(8462,8461,6143,3,0), -(10177,8462,6143,4,0), -(28609,10177,6143,5,0), -(32796,28609,6143,6,0), -(43012,32796,6143,7,0), -/*Frostbolt*/ -(116,0,116,1,0), -(205,116,116,2,0), -(837,205,116,3,0), -(7322,837,116,4,0), -(8406,7322,116,5,0), -(8407,8406,116,6,0), -(8408,8407,116,7,0), -(10179,8408,116,8,0), -(10180,10179,116,9,0), -(10181,10180,116,10,0), -(25304,10181,116,11,0), -(27071,25304,116,12,0), -(27072,27071,116,13,0), -(38697,27072,116,14,0), -(42841,38697,116,15,0), -(42842,42841,116,16,0), -/*IceArmor*/ -(7302,0,7302,1,0), -(7320,7302,7302,2,0), -(10219,7320,7302,3,0), -(10220,10219,7302,4,0), -(27124,10220,7302,5,0), -(43008,27124,7302,6,0), -/*IceBarrier*/ -(11426,0,11426,1,0), -(13031,11426,11426,2,0), -(13032,13031,11426,3,0), -(13033,13032,11426,4,0), -(27134,13033,11426,5,0), -(33405,27134,11426,6,0), -(43038,33405,11426,7,0), -(43039,43038,11426,8,0), -/*IceLance*/ -(30455,0,30455,1,0), -(42913,30455,30455,2,0), -(42914,42913,30455,3,0), -/*------------------ ---(8)Fire -------------------*/ -/*BlastWave*/ -(11113,0,11113,1,0), -(13018,11113,11113,2,0), -(13019,13018,11113,3,0), -(13020,13019,11113,4,0), -(13021,13020,11113,5,0), -(27133,13021,11113,6,0), -(33933,27133,11113,7,0), -(42944,33933,11113,8,0), -(42945,42944,11113,9,0), -/*Dragon'sBreath*/ -(31661,0,31661,1,0), -(33041,31661,31661,2,0), -(33042,33041,31661,3,0), -(33043,33042,31661,4,0), -(42949,33043,31661,5,0), -(42950,42949,31661,6,0), -/*FireBlast*/ -(2136,0,2136,1,0), -(2137,2136,2136,2,0), -(2138,2137,2136,3,0), -(8412,2138,2136,4,0), -(8413,8412,2136,5,0), -(10197,8413,2136,6,0), -(10199,10197,2136,7,0), -(27078,10199,2136,8,0), -(27079,27078,2136,9,0), -(42872,27079,2136,10,0), -(42873,42872,2136,11,0), -/*FireWard*/ -(543,0,543,1,0), -(8457,543,543,2,0), -(8458,8457,543,3,0), -(10223,8458,543,4,0), -(10225,10223,543,5,0), -(27128,10225,543,6,0), -(43010,27128,543,7,0), -/*Fireball*/ -(133,0,133,1,0), -(143,133,133,2,0), -(145,143,133,3,0), -(3140,145,133,4,0), -(8400,3140,133,5,0), -(8401,8400,133,6,0), -(8402,8401,133,7,0), -(10148,8402,133,8,0), -(10149,10148,133,9,0), -(10150,10149,133,10,0), -(10151,10150,133,11,0), -(25306,10151,133,12,0), -(27070,25306,133,13,0), -(38692,27070,133,14,0), -(42832,38692,133,15,0), -(42833,42832,133,16,0), -/*Flamestrike*/ -(2120,0,2120,1,0), -(2121,2120,2120,2,0), -(8422,2121,2120,3,0), -(8423,8422,2120,4,0), -(10215,8423,2120,5,0), -(10216,10215,2120,6,0), -(27086,10216,2120,7,0), -(42925,27086,2120,8,0), -(42926,42925,2120,9,0), -/*FrostfireBolt*/ -(44614,0,44614,1,0), -(47610,44614,44614,2,0), -/*LivingBomb*/ -(44457,0,44457,1,0), -(55359,44457,44457,2,0), -(55360,55359,44457,3,0), -/*MoltenArmor*/ -(30482,0,30482,1,0), -(43045,30482,30482,2,0), -(43046,43045,30482,3,0), -/*Pyroblast*/ -(11366,0,11366,1,0), -(12505,11366,11366,2,0), -(12522,12505,11366,3,0), -(12523,12522,11366,4,0), -(12524,12523,11366,5,0), -(12525,12524,11366,6,0), -(12526,12525,11366,7,0), -(18809,12526,11366,8,0), -(27132,18809,11366,9,0), -(33938,27132,11366,10,0), -(42890,33938,11366,11,0), -(42891,42890,11366,12,0), -/*Scorch*/ -(2948,0,2948,1,0), -(8444,2948,2948,2,0), -(8445,8444,2948,3,0), -(8446,8445,2948,4,0), -(10205,8446,2948,5,0), -(10206,10205,2948,6,0), -(10207,10206,2948,7,0), -(27073,10207,2948,8,0), -(27074,27073,2948,9,0), -(42858,27074,2948,10,0), -(42859,42858,2948,11,0), -/*------------------ ---(26)Arms -------------------*/ -/*Charge*/ -(100,0,100,1,0), -(6178,100,100,2,0), -(11578,6178,100,3,0), -/*HeroicStrike*/ -(78,0,78,1,0), -(284,78,78,2,0), -(285,284,78,3,0), -(1608,285,78,4,0), -(11564,1608,78,5,0), -(11565,11564,78,6,0), -(11566,11565,78,7,0), -(11567,11566,78,8,0), -(25286,11567,78,9,0), -(29707,25286,78,10,0), -(30324,29707,78,11,0), -(47449,30324,78,12,0), -(47450,47449,78,13,0), -/*MortalStrike*/ -(12294,0,12294,1,0), -(21551,12294,12294,2,0), -(21552,21551,12294,3,0), -(21553,21552,12294,4,0), -(25248,21553,12294,5,0), -(30330,25248,12294,6,0), -(47485,30330,12294,7,0), -(47486,47485,12294,8,0), -/*Rend*/ -(772,0,772,1,0), -(6546,772,772,2,0), -(6547,6546,772,3,0), -(6548,6547,772,4,0), -(11572,6548,772,5,0), -(11573,11572,772,6,0), -(11574,11573,772,7,0), -(25208,11574,772,8,0), -(46845,25208,772,9,0), -(47465,46845,772,10,0), -/*ThunderClap*/ -(6343,0,6343,1,0), -(8198,6343,6343,2,0), -(8204,8198,6343,3,0), -(8205,8204,6343,4,0), -(11580,8205,6343,5,0), -(11581,11580,6343,6,0), -(25264,11581,6343,7,0), -(47501,25264,6343,8,0), -(47502,47501,6343,9,0), -/*------------------ --- (38) Combat (Rogue) -------------------*/ -/*Backstab*/ -(53,0,53,1,0), -(2589,53,53,2,0), -(2590,2589,53,3,0), -(2591,2590,53,4,0), -(8721,2591,53,5,0), -(11279,8721,53,6,0), -(11280,11279,53,7,0), -(11281,11280,53,8,0), -(25300,11281,53,9,0), -(26863,25300,53,10,0), -(48656,26863,53,11,0), -(48657,48656,53,12,0), -/*Evasion*/ -(5277,0,5277,1,0), -(26669,5277,5277,2,0), -/*Feint*/ -(1966,0,1966,1,0), -(6768,1966,1966,2,0), -(8637,6768,1966,3,0), -(11303,8637,1966,4,0), -(25302,11303,1966,5,0), -(27448,25302,1966,6,0), -(48658,27448,1966,7,0), -(48659,48658,1966,8,0), -/*Sinister Strike*/ -(1752,0,1752,1,0), -(1757,1752,1752,2,0), -(1758,1757,1752,3,0), -(1759,1758,1752,4,0), -(1760,1759,1752,5,0), -(8621,1760,1752,6,0), -(11293,8621,1752,7,0), -(11294,11293,1752,8,0), -(26861,11294,1752,9,0), -(26862,26861,1752,10,0), -(48637,26862,1752,11,0), -(48638,48637,1752,12,0), -/*Sprint*/ -(2983,0,2983,1,0), -(8696,2983,2983,2,0), -(11305,8696,2983,3,0), -/*------------------ ---(39)Subtlety -------------------*/ -/*Hemorrhage*/ -(16511,0,16511,1,0), -(17347,16511,16511,2,0), -(17348,17347,16511,3,0), -(26864,17348,16511,4,0), -(48660,26864,16511,5,0), -/*Sap*/ -(6770,0,6770,1,0), -(2070,6770,6770,2,0), -(11297,2070,6770,3,0), -(51724,11297,6770,4,0), -/*Stealth*/ -(1784,0,1784,1,0), -(1785,1784,1784,2,0), -(1786,1785,1784,3,0), -(1787,1786,1784,4,0), -/*Vanish*/ -(1856,0,1856,1,0), -(1857,1856,1856,2,0), -(26889,1857,1856,3,0), -/*------------------ --- (50) Beast Mastery -------------------*/ -/*Aspect of the Hawk*/ -(13165,0,13165,1,0), -(14318,13165,13165,2,0), -(14319,14318,13165,3,0), -(14320,14319,13165,4,0), -(14321,14320,13165,5,0), -(14322,14321,13165,6,0), -(25296,14322,13165,7,0), -(27044,25296,13165,8,0), -/*Aspect of the Wild*/ -(20043,0,20043,1,0), -(20190,20043,20043,2,0), -(27045,20190,20043,3,0), -(49071,27045,20043,4,0), -/*MendPet*/ -(136,0,136,1,0), -(3111,136,136,2,0), -(3661,3111,136,3,0), -(3662,3661,136,4,0), -(13542,3662,136,5,0), -(13543,13542,136,6,0), -(13544,13543,136,7,0), -(27046,13544,136,8,0), -(48989,27046,136,9,0), -(48990,48989,136,10,0), -/*ScareBeast*/ -(1513,0,1513,1,0), -(14326,1513,1513,2,0), -(14327,14326,1513,3,0), -/*------------------ ---(51)Survival -------------------*/ -/*Counterattack*/ -(19306,0,19306,1,0), -(20909,19306,19306,2,0), -(20910,20909,19306,3,0), -(27067,20910,19306,4,0), -(48998,27067,19306,5,0), -(48999,48998,19306,6,0), -/*ExplosiveShot*/ -(53301,0,53301,1,0), -(60051,53301,53301,2,0), -(60052,60051,53301,3,0), -(60053,60052,53301,4,0), -/*ExplosiveTrap*/ -(13813,0,13813,1,0), -(14316,13813,13813,2,0), -(14317,14316,13813,3,0), -(27025,14317,13813,4,0), -(49066,27025,13813,5,0), -(49067,49066,13813,6,0), -/*FreezingTrap*/ -(1499,0,1499,1,0), -(14310,1499,1499,2,0), -(14311,14310,1499,3,0), -/*ImmolationTrap*/ -(13795,0,13795,1,0), -(14302,13795,13795,2,0), -(14303,14302,13795,3,0), -(14304,14303,13795,4,0), -(14305,14304,13795,5,0), -(27023,14305,13795,6,0), -(49055,27023,13795,7,0), -(49056,49055,13795,8,0), -/*MongooseBite*/ -(1495,0,1495,1,0), -(14269,1495,1495,2,0), -(14270,14269,1495,3,0), -(14271,14270,1495,4,0), -(36916,14271,1495,5,0), -(53339,36916,1495,6,0), -/*RaptorStrike*/ -(2973,0,2973,1,0), -(14260,2973,2973,2,0), -(14261,14260,2973,3,0), -(14262,14261,2973,4,0), -(14263,14262,2973,5,0), -(14264,14263,2973,6,0), -(14265,14264,2973,7,0), -(14266,14265,2973,8,0), -(27014,14266,2973,9,0), -(48995,27014,2973,10,0), -(48996,48995,2973,11,0), -/*WyvernSting*/ -(19386,0,19386,1,0), -(24132,19386,19386,2,0), -(24133,24132,19386,3,0), -(27068,24133,19386,4,0), -(49011,27068,19386,5,0), -(49012,49011,19386,6,0), -/*------------------ --- (56) Holy (Priest) -------------------*/ -/*Binding Heal*/ -(32546,0,32546,1,0), -(48119,32546,32546,2,0), -(48120,48119,32546,3,0), -/*Circle of Healing*/ -(34861,0,34861,1,0), -(34863,34861,34861,2,0), -(34864,34863,34861,3,0), -(34865,34864,34861,4,0), -(34866,34865,34861,5,0), -(48088,34866,34861,6,0), -(48089,48088,34861,7,0), -/*DesperatePrayer*/ -(19236,0,19236,1,0), -(19238,19236,19236,2,0), -(19240,19238,19236,3,0), -(19241,19240,19236,4,0), -(19242,19241,19236,5,0), -(19243,19242,19236,6,0), -(25437,19243,19236,7,0), -(48172,25437,19236,8,0), -(48173,48172,19236,9,0), -/*FlashHeal*/ -(2061,0,2061,1,0), -(9472,2061,2061,2,0), -(9473,9472,2061,3,0), -(9474,9473,2061,4,0), -(10915,9474,2061,5,0), -(10916,10915,2061,6,0), -(10917,10916,2061,7,0), -(25233,10917,2061,8,0), -(25235,25233,2061,9,0), -(48070,25235,2061,10,0), -(48071,48070,2061,11,0), -/*GreaterHeal*/ -(2060,0,2060,1,0), -(10963,2060,2060,2,0), -(10964,10963,2060,3,0), -(10965,10964,2060,4,0), -(25314,10965,2060,5,0), -(25210,25314,2060,6,0), -(25213,25210,2060,7,0), -(48062,25213,2060,8,0), -(48063,48062,2060,9,0), -/*Heal*/ -(2054,0,2054,1,0), -(2055,2054,2054,2,0), -(6063,2055,2054,3,0), -(6064,6063,2054,4,0), -/*Holy Fire*/ -(14914,0,14914,1,0), -(15262,14914,14914,2,0), -(15263,15262,14914,3,0), -(15264,15263,14914,4,0), -(15265,15264,14914,5,0), -(15266,15265,14914,6,0), -(15267,15266,14914,7,0), -(15261,15267,14914,8,0), -(25384,15261,14914,9,0), -(48134,25384,14914,10,0), -(48135,48134,14914,11,0), -/*Holy Nova*/ -(15237,0,15237,1,0), -(15430,15237,15237,2,0), -(15431,15430,15237,3,0), -(27799,15431,15237,4,0), -(27800,27799,15237,5,0), -(27801,27800,15237,6,0), -(25331,27801,15237,7,0), -(48077,25331,15237,8,0), -(48078,48077,15237,9,0), -/*LesserHeal*/ -(2050,0,2050,1,0), -(2052,2050,2050,2,0), -(2053,2052,2050,3,0), -/*Lightwell*/ -(724,0,724,1,0), -(27870,724,724,2,0), -(27871,27870,724,3,0), -(28275,27871,724,4,0), -(48086,28275,724,5,0), -(48087,48086,724,6,0), -/*Prayer of Healing*/ -(596,0,596,1,0), -(996,596,596,2,0), -(10960,996,596,3,0), -(10961,10960,596,4,0), -(25316,10961,596,5,0), -(25308,25316,596,6,0), -(48072,25308,596,7,0), -/*Prayer of Mending*/ -(33076,0,33076,1,0), -(48112,33076,33076,2,0), -(48113,48112,33076,3,0), -/*Renew*/ -(139,0,139,1,0), -(6074,139,139,2,0), -(6075,6074,139,3,0), -(6076,6075,139,4,0), -(6077,6076,139,5,0), -(6078,6077,139,6,0), -(10927,6078,139,7,0), -(10928,10927,139,8,0), -(10929,10928,139,9,0), -(25315,10929,139,10,0), -(25221,25315,139,11,0), -(25222,25221,139,12,0), -(48067,25222,139,13,0), -(48068,48067,139,14,0), -/*Resurrection*/ -(2006,0,2006,1,0), -(2010,2006,2006,2,0), -(10880,2010,2006,3,0), -(10881,10880,2006,4,0), -(20770,10881,2006,5,0), -(25435,20770,2006,6,0), -(48171,25435,2006,7,0), -/*Smite*/ -(585,0,585,1,0), -(591,585,585,2,0), -(598,591,585,3,0), -(984,598,585,4,0), -(1004,984,585,5,0), -(6060,1004,585,6,0), -(10933,6060,585,7,0), -(10934,10933,585,8,0), -(25363,10934,585,9,0), -(25364,25363,585,10,0), -(48122,25364,585,11,0), -(48123,48122,585,12,0), -/*------------------ --- (78) Shadow Magic -------------------*/ -/*Devouring Plague*/ -(2944,0,2944,1,0), -(19276,2944,2944,2,0), -(19277,19276,2944,3,0), -(19278,19277,2944,4,0), -(19279,19278,2944,5,0), -(19280,19279,2944,6,0), -(25467,19280,2944,7,0), -(48299,25467,2944,8,0), -(48300,48299,2944,9,0), -/*Mind Blast*/ -(8092,0,8092,1,0), -(8102,8092,8092,2,0), -(8103,8102,8092,3,0), -(8104,8103,8092,4,0), -(8105,8104,8092,5,0), -(8106,8105,8092,6,0), -(10945,8106,8092,7,0), -(10946,10945,8092,8,0), -(10947,10946,8092,9,0), -(25372,10947,8092,10,0), -(25375,25372,8092,11,0), -(48126,25375,8092,12,0), -(48127,48126,8092,13,0), -/*MindFlay*/ -(15407,0,15407,1,0), -(17311,15407,15407,2,0), -(17312,17311,15407,3,0), -(17313,17312,15407,4,0), -(17314,17313,15407,5,0), -(18807,17314,15407,6,0), -(25387,18807,15407,7,0), -(48155,25387,15407,8,0), -(48156,48155,15407,9,0), -/*MindSear*/ -(48045,0,48045,1,0), -(53023,48045,48045,2,0), -/*MindVision*/ -(2096,0,2096,1,0), -(10909,2096,2096,2,0), -/*Prayer of Shadow Protection*/ -(27683,0,27683,1,0), -(39374,27683,27683,2,0), -(48170,39374,27683,3,0), -/*PsychicScream*/ -(8122,0,8122,1,0), -(8124,8122,8122,2,0), -(10888,8124,8122,3,0), -(10890,10888,8122,4,0), -/*Shadow Protection*/ -(976,0,976,1,0), -(10957,976,976,2,0), -(10958,10957,976,3,0), -(25433,10958,976,4,0), -(48169,25433,976,5,0), -/*ShadowWord:Death*/ -(32379,0,32379,1,0), -(32996,32379,32379,2,0), -(48157,32996,32379,3,0), -(48158,48157,32379,4,0), -/*ShadowWord:Pain*/ -(589,0,589,1,0), -(594,589,589,2,0), -(970,594,589,3,0), -(992,970,589,4,0), -(2767,992,589,5,0), -(10892,2767,589,6,0), -(10893,10892,589,7,0), -(10894,10893,589,8,0), -(25367,10894,589,9,0), -(25368,25367,589,10,0), -(48124,25368,589,11,0), -(48125,48124,589,12,0), -/*Vampiric Touch*/ -(34914,0,34914,1,0), -(34916,34914,34914,2,0), -(34917,34916,34914,3,0), -(48159,34917,34914,4,0), -(48160,48159,34914,5,0), -/*------------------ --- (134) Feral Combat (Druid) -------------------*/ -/*Bash*/ -(5211,0,5211,1,0), -(6798,5211,5211,2,0), -(8983,6798,5211,3,0), -/*Bear Form*/ -(5487,0,5487,1,0), -(9634,5487,5487,2,0), -/*Claw*/ -(1082,0,1082,1,0), -(3029,1082,1082,2,0), -(5201,3029,1082,3,0), -(9849,5201,1082,4,0), -(9850,9849,1082,5,0), -(27000,9850,1082,6,0), -(48569,27000,1082,7,0), -(48570,48569,1082,8,0), -/*Cower*/ -(8998,0,8998,1,0), -(9000,8998,8998,2,0), -(9892,9000,8998,3,0), -(31709,9892,8998,4,0), -(27004,31709,8998,5,0), -(48575,27004,8998,6,0), -/*Dash*/ -(1850,0,1850,1,0), -(9821,1850,1850,2,0), -(33357,9821,1850,3,0), -/*Demoralizing Roar*/ -(99,0,99,1,0), -(1735,99,99,2,0), -(9490,1735,99,3,0), -(9747,9490,99,4,0), -(9898,9747,99,5,0), -(26998,9898,99,6,0), -(48559,26998,99,7,0), -(48560,48559,99,8,0), -/*Faerie Fire (Feral)*/ -(16857,0,16857,1,0), -(17390,16857,16857,2,0), -(17391,17390,16857,3,0), -(17392,17391,16857,4,0), -(27011,17392,16857,5,0), -(48475,27011,16857,6,0), -/*Ferocious Bite*/ -(22568,0,22568,1,0), -(22827,22568,22568,2,0), -(22828,22827,22568,3,0), -(22829,22828,22568,4,0), -(31018,22829,22568,5,0), -(24248,31018,22568,6,0), -(48576,24248,22568,7,0), -(48577,48576,22568,8,0), -/*Flight Form*/ -(33943,0,33943,1,0), -(40120,33943,33943,2,0), -/*Lacerate*/ -(33745,0,33745,1,0), -(48567,33745,33745,2,0), -(48568,48567,33745,3,0), -/*Maim*/ -(22570,0,22570,1,0), -(49802,22570,22570,2,0), -/*Mangle-Bear*/ -(33878,0,33878,1,0), -(33986,33878,33878,2,0), -(33987,33986,33878,3,0), -(48563,33987,33878,4,0), -(48564,48563,33878,5,0), -/*Mangle-Cat*/ -(33876,0,33876,1,0), -(33982,33876,33876,2,0), -(33983,33982,33876,3,0), -(48565,33983,33876,4,0), -(48566,48565,33876,5,0), -/*Maul*/ -(6807,0,6807,1,0), -(6808,6807,6807,2,0), -(6809,6808,6807,3,0), -(8972,6809,6807,4,0), -(9745,8972,6807,5,0), -(9880,9745,6807,6,0), -(9881,9880,6807,7,0), -(26996,9881,6807,8,0), -(48479,26996,6807,9,0), -(48480,48479,6807,10,0), -/*Pounce*/ -(9005,0,9005,1,0), -(9823,9005,9005,2,0), -(9827,9823,9005,3,0), -(27006,9827,9005,4,0), -(49803,27006,9005,5,0), -/*Prowl*/ -(5215,0,5215,1,0), -(6783,5215,5215,2,0), -(9913,6783,5215,3,0), -/*Rake*/ -(1822,0,1822,1,0), -(1823,1822,1822,2,0), -(1824,1823,1822,3,0), -(9904,1824,1822,4,0), -(27003,9904,1822,5,0), -(48573,27003,1822,6,0), -(48574,48573,1822,7,0), -/*Ravage*/ -(6785,0,6785,1,0), -(6787,6785,6785,2,0), -(9866,6787,6785,3,0), -(9867,9866,6785,4,0), -(27005,9867,6785,5,0), -(48578,27005,6785,6,0), -(48579,48578,6785,7,0), -/*Rip*/ -(1079,0,1079,1,0), -(9492,1079,1079,2,0), -(9493,9492,1079,3,0), -(9752,9493,1079,4,0), -(9894,9752,1079,5,0), -(9896,9894,1079,6,0), -(27008,9896,1079,7,0), -(49799,27008,1079,8,0), -(49800,49799,1079,9,0), -/*Shred*/ -(5221,0,5221,1,0), -(6800,5221,5221,2,0), -(8992,6800,5221,3,0), -(9829,8992,5221,4,0), -(9830,9829,5221,5,0), -(27001,9830,5221,6,0), -(27002,27001,5221,7,0), -(48571,27002,5221,8,0), -(48572,48571,5221,9,0), -/*Swipe*/ -(779,0,779,1,0), -(780,779,779,2,0), -(769,780,779,3,0), -(9754,769,779,4,0), -(9908,9754,779,5,0), -(26997,9908,779,6,0), -(48561,26997,779,7,0), -(48562,48561,779,8,0), -/*Tiger's Fury*/ -(5217,0,5217,1,0), -(6793,5217,5217,2,0), -(9845,6793,5217,3,0), -(9846,9845,5217,4,0), -(50212,9846,5217,5,0), -(50213,50212,5217,6,0), -/*------------------ ---(163)Marksmanship -------------------*/ -/*AimedShot*/ -(19434,0,19434,1,0), -(20900,19434,19434,2,0), -(20901,20900,19434,3,0), -(20902,20901,19434,4,0), -(20903,20902,19434,5,0), -(20904,20903,19434,6,0), -(27065,20904,19434,7,0), -(49049,27065,19434,8,0), -(49050,49049,19434,9,0), -/*ArcaneShot*/ -(3044,0,3044,1,0), -(14281,3044,3044,2,0), -(14282,14281,3044,3,0), -(14283,14282,3044,4,0), -(14284,14283,3044,5,0), -(14285,14284,3044,6,0), -(14286,14285,3044,7,0), -(14287,14286,3044,8,0), -(27019,14287,3044,9,0), -(49044,27019,3044,10,0), -(49045,49044,3044,11,0), -/*Hunter'sMark*/ -(1130,0,1130,1,0), -(14323,1130,1130,2,0), -(14324,14323,1130,3,0), -(14325,14324,1130,4,0), -(53338,14325,1130,5,0), -/*KillShot*/ -(53351,0,53351,1,0), -(61005,53351,53351,2,0), -(61006,61005,53351,3,0), -/*Multi-Shot*/ -(2643,0,2643,1,0), -(14288,2643,2643,2,0), -(14289,14288,2643,3,0), -(14290,14289,2643,4,0), -(25294,14290,2643,5,0), -(27021,25294,2643,6,0), -(49047,27021,2643,7,0), -(49048,49047,2643,8,0), -/*SerpentSting*/ -(1978,0,1978,1,0), -(13549,1978,1978,2,0), -(13550,13549,1978,3,0), -(13551,13550,1978,4,0), -(13552,13551,1978,5,0), -(13553,13552,1978,6,0), -(13554,13553,1978,7,0), -(13555,13554,1978,8,0), -(25295,13555,1978,9,0), -(27016,25295,1978,10,0), -(49000,27016,1978,11,0), -(49001,49000,1978,12,0), -/*SteadyShot*/ -(56641,0,56641,1,0), -(34120,56641,56641,2,0), -(49051,34120,56641,3,0), -(49052,49051,56641,4,0), -/*ViperSting*/ -(3034,0,3034,1,0), -(14279,3034,3034,2,0), -(14280,14279,3034,3,0), -(27018,14280,3034,4,0), -(49008,27018,3034,5,0), -/*Volley*/ -(1510,0,1510,1,0), -(14294,1510,1510,2,0), -(14295,14294,1510,3,0), -(27022,14295,1510,4,0), -(58431,27022,1510,5,0), -(58434,58431,1510,6,0), -/*------------------ --- (184) Retribution (Paladin) -------------------*/ -/*Blessingof Might*/ -(19740,0,19740,1,0), -(19834,19740,19740,2,0), -(19835,19834,19740,3,0), -(19836,19835,19740,4,0), -(19837,19836,19740,5,0), -(19838,19837,19740,6,0), -(25291,19838,19740,7,0), -(27140,25291,19740,8,0), -(48931,27140,19740,9,0), -(48932,48931,19740,10,0), -/*Greater Blessing of Might*/ -(25782,0,25782,1,19838), -(25916,25782,25782,2,25291), -(27141,25916,25782,3,27140), -(48933,27141,25782,4,48931), -(48934,48933,25782,5,48932), -/*Hammer of Wrath*/ -(24275,0,24275,1,0), -(24274,24275,24275,2,0), -(24239,24274,24275,3,0), -(27180,24239,24275,4,0), -(48805,27180,24275,5,0), -(48806,48805,24275,6,0), -/*Retribution Aura*/ -(7294,0,7294,1,0), -(10298,7294,7294,2,0), -(10299,10298,7294,3,0), -(10300,10299,7294,4,0), -(10301,10300,7294,5,0), -(27150,10301,7294,6,0), -(54043,27150,7294,7,0), -/*------------------ ---(188) Pet - Imp -------------------*/ -/*Blood Pact*/ -(6307,0,6307,1,0), -(7804,6307,6307,2,0), -(7805,7804,6307,3,0), -(11766,7805,6307,4,0), -(11767,11766,6307,5,0), -(27268,11767,6307,6,0), -(47982,27268,6307,7,0), -/*FireShield*/ -(2947,0,2947,1,0), -(8316,2947,2947,2,0), -(8317,8316,2947,3,0), -(11770,8317,2947,4,0), -(11771,11770,2947,5,0), -(27269,11771,2947,6,0), -(47983,27269,2947,7,0), -/*Firebolt*/ -(3110,0,3110,1,0), -(7799,3110,3110,2,0), -(7800,7799,3110,3,0), -(7801,7800,3110,4,0), -(7802,7801,3110,5,0), -(11762,7802,3110,6,0), -(11763,11762,3110,7,0), -(27267,11763,3110,8,0), -(47964,27267,3110,9,0), -/*------------------ ---(189)Pet-Felhunter -------------------*/ -/*DevourMagic*/ -(19505,0,19505,1,0), -(19731,19505,19505,2,0), -(19734,19731,19505,3,0), -(19736,19734,19505,4,0), -(27276,19736,19505,5,0), -(27277,27276,19505,6,0), -(48011,27277,19505,7,0), -/*ShadowBite*/ -(54049,0,54049,1,0), -(54050,54049,54049,2,0), -(54051,54050,54049,3,0), -(54052,54051,54049,4,0), -(54053,54052,54049,5,0), -/*SpellLock*/ -(19244,0,19244,1,0), -(19647,19244,19244,2,0), -/*------------------ ---(203)Pet-Spider ---(208)Pet-Wolf ---(212)Pet-Crocolisk ---(251)Pet-Turtle ---(653)Pet-Bat ---(766)Pet-WarpStalker ---(767)Pet-Ravager -------------------*/ -/*Bite*/ -(17253,0,17253,1,0), -(17255,17253,17253,2,0), -(17256,17255,17253,3,0), -(17257,17256,17253,4,0), -(17258,17257,17253,5,0), -(17259,17258,17253,6,0), -(17260,17259,17253,7,0), -(17261,17260,17253,8,0), -(27050,17261,17253,9,0), -(52473,27050,17253,10,0), -(52474,52473,17253,11,0), -/*------------------ --- (204) Pet - Voidwalker -------------------*/ -/*Consume Shadows*/ -(17767,0,17767,1,0), -(17850,17767,17767,2,0), -(17851,17850,17767,3,0), -(17852,17851,17767,4,0), -(17853,17852,17767,5,0), -(17854,17853,17767,6,0), -(27272,17854,17767,7,0), -(47987,27272,17767,8,0), -(47988,47987,17767,9,0), -/*Sacrifice*/ -(7812,0,7812,1,0), -(19438,7812,7812,2,0), -(19440,19438,7812,3,0), -(19441,19440,7812,4,0), -(19442,19441,7812,5,0), -(19443,19442,7812,6,0), -(27273,19443,7812,7,0), -(47985,27273,7812,8,0), -(47986,47985,7812,9,0), -/*Suffering*/ -(17735,0,17735,1,0), -(17750,17735,17735,2,0), -(17751,17750,17735,3,0), -(17752,17751,17735,4,0), -(27271,17752,17735,5,0), -(33701,27271,17735,6,0), -(47989,33701,17735,7,0), -(47990,47989,17735,8,0), -/*Torment*/ -(3716,0,3716,1,0), -(7809,3716,3716,2,0), -(7810,7809,3716,3,0), -(7811,7810,3716,4,0), -(11774,7811,3716,5,0), -(11775,11774,3716,6,0), -(27270,11775,3716,7,0), -(47984,27270,3716,8,0), -/*------------------ ---(205)Pet-Succubus -------------------*/ -/*LashofPain*/ -(7814,0,7814,1,0), -(7815,7814,7814,2,0), -(7816,7815,7814,3,0), -(11778,7816,7814,4,0), -(11779,11778,7814,5,0), -(11780,11779,7814,6,0), -(27274,11780,7814,7,0), -(47991,27274,7814,8,0), -(47992,47991,7814,9,0), -/*SoothingKiss*/ -(6360,0,6360,1,0), -(7813,6360,6360,2,0), -(11784,7813,6360,3,0), -(11785,11784,6360,4,0), -(27275,11785,6360,5,0), -/*------------------ --- (209) Pet - Cat -------------------*/ -/*Prowl*/ -(24450,0,24450,1,0), -(24452,24450,24450,2,0), -(24453,24452,24450,3,0), -/*Rake*/ -(59881,0,59881,1,0), -(59882,59881,59881,2,0), -(59883,59882,59881,3,0), -(59884,59883,59881,4,0), -(59885,59884,59881,5,0), -(59886,59885,59881,6,0), -/*------------------ ---(210)Pet-Bear -------------------*/ -/*Swipe*/ -(50256,0,50256,1,0), -(53526,50256,50256,2,0), -(53528,53526,50256,3,0), -(53529,53528,50256,4,0), -(53532,53529,50256,5,0), -(53533,53532,50256,6,0), -/*------------------ ---(211)Pet-Boar -------------------*/ -/*Gore*/ -(35290,0,35290,1,0), -(35291,35290,35290,2,0), -(35292,35291,35290,3,0), -(35293,35292,35290,4,0), -(35294,35293,35290,5,0), -(35295,35294,35290,6,0), -/*------------------ ---(213)Pet-CarrionBird -------------------*/ -/*DemoralizingScreech*/ -(24423,0,24423,1,0), -(24577,24423,24423,2,0), -(24578,24577,24423,3,0), -(24579,24578,24423,4,0), -(27051,24579,24423,5,0), -(55487,27051,24423,6,0), -/*------------------ ---(215)Pet-Gorilla ---(786)Pet-ExoticRhino ---(775)Pet-Moth -------------------*/ -/*Smack*/ -(49966,0,49966,1,0), -(49967,49966,49966,2,0), -(49968,49967,49966,3,0), -(49969,49968,49966,4,0), -(49970,49969,49966,5,0), -(49971,49970,49966,6,0), -(49972,49971,49966,7,0), -(49973,49972,49966,8,0), -(49974,49973,49966,9,0), -(52475,49974,49966,10,0), -(52476,52475,49966,11,0), -/*Thunderstomp*/ -(26090,0,26090,1,0), -(26187,26090,26090,2,0), -(26188,26187,26090,3,0), -(27063,26188,26090,4,0), -(55572,27063,26090,5,0), -(55573,55572,26090,6,0), -/*------------------ ---(217)Pet-Raptor -------------------*/ -/*SavageRend*/ -(50498,0,50498,1,0), -(53578,50498,50498,2,0), -(53579,53578,50498,3,0), -(53580,53579,50498,4,0), -(53581,53580,50498,5,0), -(53582,53581,50498,6,0), -/*------------------ ---(214)Pet-Crab ---(218)Pet-Tallstrider ---(783)Pet-ExoticSilithid -------------------*/ -/*Claw*/ -(16827,0,16827,1,0), -(16828,16827,16827,2,0), -(16829,16828,16827,3,0), -(16830,16829,16827,4,0), -(16831,16830,16827,5,0), -(16832,16831,16827,6,0), -(3010,16832,16827,7,0), -(3009,3010,16827,8,0), -(27049,3009,16827,9,0), -(52471,27049,16827,10,0), -(52472,52471,16827,11,0), -/*------------------ ---(236)Pet-Scorpid -------------------*/ -/*ScorpidPoison*/ -(24640,0,24640,1,0), -(24583,24640,24640,2,0), -(24586,24583,24640,3,0), -(24587,24586,24640,4,0), -(27060,24587,24640,5,0), -(55728,27060,24640,6,0), -/*------------------ ---(237)Arcane -------------------*/ -/*AmplifyMagic*/ -(1008,0,1008,1,0), -(8455,1008,1008,2,0), -(10169,8455,1008,3,0), -(10170,10169,1008,4,0), -(27130,10170,1008,5,0), -(33946,27130,1008,6,0), -(43017,33946,1008,7,0), -/*ArcaneBarrage*/ -(44425,0,44425,1,0), -(44780,44425,44425,2,0), -(44781,44780,44425,3,0), -/*ArcaneBlast*/ -(30451,0,30451,1,0), -(42894,30451,30451,2,0), -(42896,42894,30451,3,0), -(42897,42896,30451,4,0), -/*ArcaneBrilliance*/ -(23028,0,23028,1,0), -(27127,23028,23028,2,0), -(43002,27127,23028,3,0), -/*ArcaneExplosion*/ -(1449,0,1449,1,0), -(8437,1449,1449,2,0), -(8438,8437,1449,3,0), -(8439,8438,1449,4,0), -(10201,8439,1449,5,0), -(10202,10201,1449,6,0), -(27080,10202,1449,7,0), -(27082,27080,1449,8,0), -(42920,27082,1449,9,0), -(42921,42920,1449,10,0), -/*ArcaneIntellect*/ -(1459,0,1459,1,0), -(1460,1459,1459,2,0), -(1461,1460,1459,3,0), -(10156,1461,1459,4,0), -(10157,10156,1459,5,0), -(27126,10157,1459,6,0), -(42995,27126,1459,7,0), -/*ArcaneMissiles*/ -(5143,0,5143,1,0), -(5144,5143,5143,2,0), -(5145,5144,5143,3,0), -(8416,5145,5143,4,0), -(8417,8416,5143,5,0), -(10211,8417,5143,6,0), -(10212,10211,5143,7,0), -(25345,10212,5143,8,0), -(27075,25345,5143,9,0), -(38699,27075,5143,10,0), -(38704,38699,5143,11,0), -(42843,38704,5143,12,0), -(42846,42843,5143,13,0), -/*ConjureFood*/ -(587,0,587,1,0), -(597,587,587,2,0), -(990,597,587,3,0), -(6129,990,587,4,0), -(10144,6129,587,5,0), -(10145,10144,587,6,0), -(28612,10145,587,7,0), -(33717,28612,587,8,0), -/*ConjureManaGem*/ -(759,0,759,1,0), -(3552,759,759,2,0), -(10053,3552,759,3,0), -(10054,10053,759,4,0), -(27101,10054,759,5,0), -(42985,27101,759,6,0), -/*ConjureRefreshment*/ -(42955,0,42955,1,0), -(42956,42955,42955,2,0), -/*ConjureWater*/ -(5504,0,5504,1,0), -(5505,5504,5504,2,0), -(5506,5505,5504,3,0), -(6127,5506,5504,4,0), -(10138,6127,5504,5,0), -(10139,10138,5504,6,0), -(10140,10139,5504,7,0), -(37420,10140,5504,8,0), -(27090,37420,5504,9,0), -/*DampenMagic*/ -(604,0,604,1,0), -(8450,604,604,2,0), -(8451,8450,604,3,0), -(10173,8451,604,4,0), -(10174,10173,604,5,0), -(33944,10174,604,6,0), -(43015,33944,604,7,0), -/*MageArmor*/ -(6117,0,6117,1,0), -(22782,6117,6117,2,0), -(22783,22782,6117,3,0), -(27125,22783,6117,4,0), -(43023,27125,6117,5,0), -(43024,43023,6117,6,0), -/*ManaShield*/ -(1463,0,1463,1,0), -(8494,1463,1463,2,0), -(8495,8494,1463,3,0), -(10191,8495,1463,4,0), -(10192,10191,1463,5,0), -(10193,10192,1463,6,0), -(27131,10193,1463,7,0), -(43019,27131,1463,8,0), -(43020,43019,1463,9,0), -/*Polymorph*/ -(118,0,118,1,0), -(12824,118,118,2,0), -(12825,12824,118,3,0), -(12826,12825,118,4,0), -/*RitualofRefreshment*/ -(43987,0,43987,1,0), -(58659,43987,43987,2,0), -/*------------------ ---(253)Assassination -------------------*/ -/*Ambush*/ -(8676,0,8676,1,0), -(8724,8676,8676,2,0), -(8725,8724,8676,3,0), -(11267,8725,8676,4,0), -(11268,11267,8676,5,0), -(11269,11268,8676,6,0), -(27441,11269,8676,7,0), -(48689,27441,8676,8,0), -(48690,48689,8676,9,0), -(48691,48690,8676,10,0), -/*DeadlyThrow*/ -(26679,0,26679,1,0), -(48673,26679,26679,2,0), -(48674,48673,26679,3,0), -/*Envenom*/ -(32645,0,32645,1,0), -(32684,32645,32645,2,0), -(57992,32684,32645,3,0), -(57993,57992,32645,4,0), -/*Eviscerate*/ -(2098,0,2098,1,0), -(6760,2098,2098,2,0), -(6761,6760,2098,3,0), -(6762,6761,2098,4,0), -(8623,6762,2098,5,0), -(8624,8623,2098,6,0), -(11299,8624,2098,7,0), -(11300,11299,2098,8,0), -(31016,11300,2098,9,0), -(26865,31016,2098,10,0), -(48667,26865,2098,11,0), -(48668,48667,2098,12,0), -/*ExposeArmor*/ -(8647,0,8647,1,0), -(8649,8647,8647,2,0), -(8650,8649,8647,3,0), -(11197,8650,8647,4,0), -(11198,11197,8647,5,0), -(26866,11198,8647,6,0), -(48669,26866,8647,7,0), -/*Garrote*/ -(703,0,703,1,0), -(8631,703,703,2,0), -(8632,8631,703,3,0), -(8633,8632,703,4,0), -(11289,8633,703,5,0), -(11290,11289,703,6,0), -(26839,11290,703,7,0), -(26884,26839,703,8,0), -(48675,26884,703,9,0), -(48676,48675,703,10,0), -/*KidneyShot*/ -(408,0,408,1,0), -(8643,408,408,2,0), -/*Mutilate*/ -(1329,0,1329,1,0), -(34411,1329,1329,2,0), -(34412,34411,1329,3,0), -(34413,34412,1329,4,0), -(48663,34413,1329,5,0), -(48666,48663,1329,6,0), -/*Rupture*/ -(1943,0,1943,1,0), -(8639,1943,1943,2,0), -(8640,8639,1943,3,0), -(11273,8640,1943,4,0), -(11274,11273,1943,5,0), -(11275,11274,1943,6,0), -(26867,11275,1943,7,0), -(48671,26867,1943,8,0), -(48672,48671,1943,9,0), -/*SliceandDice*/ -(5171,0,5171,1,0), -(6774,5171,5171,2,0), -/*------------------ ---(256)Fury -------------------*/ -/*BattleShout*/ -(6673,0,6673,1,0), -(5242,6673,6673,2,0), -(6192,5242,6673,3,0), -(11549,6192,6673,4,0), -(11550,11549,6673,5,0), -(11551,11550,6673,6,0), -(25289,11551,6673,7,0), -(2048,25289,6673,8,0), -(47436,2048,6673,9,0), -/*Cleave*/ -(845,0,845,1,0), -(7369,845,845,2,0), -(11608,7369,845,3,0), -(11609,11608,845,4,0), -(20569,11609,845,5,0), -(25231,20569,845,6,0), -(47519,25231,845,7,0), -(47520,47519,845,8,0), -/*CommandingShout*/ -(469,0,469,1,0), -(47439,469,469,2,0), -(47440,47439,469,3,0), -/*DemoralizingShout*/ -(1160,0,1160,1,0), -(6190,1160,1160,2,0), -(11554,6190,1160,3,0), -(11555,11554,1160,4,0), -(11556,11555,1160,5,0), -(25202,11556,1160,6,0), -(25203,25202,1160,7,0), -(47437,25203,1160,8,0), -/*Execute*/ -(5308,0,5308,1,0), -(20658,5308,5308,2,0), -(20660,20658,5308,3,0), -(20661,20660,5308,4,0), -(20662,20661,5308,5,0), -(25234,20662,5308,6,0), -(25236,25234,5308,7,0), -(47470,25236,5308,8,0), -(47471,47470,5308,9,0), -/*Slam*/ -(1464,0,1464,1,0), -(8820,1464,1464,2,0), -(11604,8820,1464,3,0), -(11605,11604,1464,4,0), -(25241,11605,1464,5,0), -(25242,25241,1464,6,0), -(47474,25242,1464,7,0), -(47475,47474,1464,8,0), -/*------------------ ---(257) Protection (Warrior) -------------------*/ -/*Devastate*/ -(20243,0,20243,1,0), -(30016,20243,20243,2,0), -(30022,30016,20243,3,0), -(47497,30022,20243,4,0), -(47498,47497,20243,5,0), -/*Revenge*/ -(6572,0,6572,1,0), -(6574,6572,6572,2,0), -(7379,6574,6572,3,0), -(11600,7379,6572,4,0), -(11601,11600,6572,5,0), -(25288,11601,6572,6,0), -(25269,25288,6572,7,0), -(30357,25269,6572,8,0), -(57823,30357,6572,9,0), -/*ShieldSlam*/ -(23922,0,23922,1,0), -(23923,23922,23922,2,0), -(23924,23923,23922,3,0), -(23925,23924,23922,4,0), -(25258,23925,23922,5,0), -(30356,25258,23922,6,0), -(47487,30356,23922,7,0), -(47488,47487,23922,8,0), -/*SunderArmor*/ -(7386,0,7386,1,0), -(7405,7386,7386,2,0), -(8380,7405,7386,3,0), -(11596,8380,7386,4,0), -(11597,11596,7386,5,0), -(25225,11597,7386,6,0), -(47467,25225,7386,7,0), -/*------------------ --- (267) Protection (Paladin) -------------------*/ -/*Avenger'sShield*/ -(31935,0,31935,1,0), -(32699,31935,31935,2,0), -(32700,32699,31935,3,0), -(48826,32700,31935,4,0), -(48827,48826,31935,5,0), -/*Devotion Aura*/ -(465,0,465,1,0), -(10290,465,465,2,0), -(643,10290,465,3,0), -(10291,643,465,4,0), -(1032,10291,465,5,0), -(10292,1032,465,6,0), -(10293,10292,465,7,0), -(27149,10293,465,8,0), -(48941,27149,465,9,0), -(48942,48941,465,10,0), -/*Fire Resistance Aura*/ -(19891,0,19891,1,0), -(19899,19891,19891,2,0), -(19900,19899,19891,3,0), -(27153,19900,19891,4,0), -(48947,27153,19891,5,0), -/*Frost Resistance Aura*/ -(19888,0,19888,1,0), -(19897,19888,19888,2,0), -(19898,19897,19888,3,0), -(27152,19898,19888,4,0), -(48945,27152,19888,5,0), -/*Greater Blessing of Kings*/ -(20217,0,20217,1,0), -(25898,20217,20217,2,0), -/*Greater Blessing of Sanctuary*/ -(20911,0,20911,1,0), -(25899,20911,20911,2,0), -/*HammerofJustice*/ -(853,0,853,1,0), -(5588,853,853,2,0), -(5589,5588,853,3,0), -(10308,5589,853,4,0), -/*HandofProtection*/ -(1022,0,1022,1,0), -(5599,1022,1022,2,0), -(10278,5599,1022,3,0), -/*Holy Shield*/ -(20925,0,20925,1,0), -(20927,20925,20925,2,0), -(20928,20927,20925,3,0), -(27179,20928,20925,4,0), -(48951,27179,20925,5,0), -(48952,48951,20925,6,0), -/*Shadow Resistance Aura*/ -(19876,0,19876,1,0), -(19895,19876,19876,2,0), -(19896,19895,19876,3,0), -(27151,19896,19876,4,0), -(48943,27151,19876,5,0), -/*Shield of Righteousness*/ -(53600,0,53600,1,0), -(61411,53600,53600,2,0), -/*Spiritual Attunement*/ -(31785,0,31785,1,0), -(33776,31785,31785,2,0), -/*------------------ ---(270)Pet-GenericHunter -------------------*/ -/*Cower*/ -(1742,0,1742,1,0), -(1753,1742,1742,2,0), -(1754,1753,1742,3,0), -(1755,1754,1742,4,0), -(1756,1755,1742,5,0), -(16697,1756,1742,6,0), -(27048,16697,1742,7,0), -/*GreatResistance*/ -(53427,0,53427,1,0), -(53429,53427,53427,2,0), -(53430,53429,53427,3,0), -/*Growl*/ -(2649,0,2649,1,0), -(14916,2649,2649,2,0), -(14917,14916,2649,3,0), -(14918,14917,2649,4,0), -(14919,14918,2649,5,0), -(14920,14919,2649,6,0), -(14921,14920,2649,7,0), -(27047,14921,2649,8,0), -(61676,27047,2649,9,0), -/*------------------ ---(354)Demonology -------------------*/ -/*Banish*/ -(710,0,710,1,0), -(18647,710,710,2,0), -/*CreateFirestone*/ -(6366,0,6366,1,0), -(17951,6366,6366,2,0), -(17952,17951,6366,3,0), -(17953,17952,6366,4,0), -(27250,17953,6366,5,0), -(60219,27250,6366,6,0), -(60220,60219,6366,7,0), -/*CreateHealthstone*/ -(6201,0,6201,1,0), -(6202,6201,6201,2,0), -(5699,6202,6201,3,0), -(11729,5699,6201,4,0), -(11730,11729,6201,5,0), -(27230,11730,6201,6,0), -(47871,27230,6201,7,0), -(47878,47871,6201,8,0), -/*CreateSoulstone*/ -(693,0,693,1,0), -(20752,693,693,2,0), -(20755,20752,693,3,0), -(20756,20755,693,4,0), -(20757,20756,693,5,0), -(27238,20757,693,6,0), -(47884,27238,693,7,0), -/*CreateSpellstone*/ -(2362,0,2362,1,0), -(17727,2362,2362,2,0), -(17728,17727,2362,3,0), -(28172,17728,2362,4,0), -(47886,28172,2362,5,0), -(47888,47886,2362,6,0), -/*DemonArmor*/ -(706,0,706,1,0), -(1086,706,706,2,0), -(11733,1086,706,3,0), -(11734,11733,706,4,0), -(11735,11734,706,5,0), -(27260,11735,706,6,0), -(47793,27260,706,7,0), -(47889,47793,706,8,0), -/*DemonSkin*/ -(687,0,687,1,0), -(696,687,687,2,0), -/*EnslaveDemon*/ -(1098,0,1098,1,0), -(11725,1098,1098,2,0), -(11726,11725,1098,3,0), -(61191,11726,1098,4,0), -/*FelArmor*/ -(28176,0,28176,1,0), -(28189,28176,28176,2,0), -(47892,28189,28176,3,0), -(47893,47892,28176,4,0), -/*HealthFunnel*/ -(755,0,755,1,0), -(3698,755,755,2,0), -(3699,3698,755,3,0), -(3700,3699,755,4,0), -(11693,3700,755,5,0), -(11694,11693,755,6,0), -(11695,11694,755,7,0), -(27259,11695,755,8,0), -(47856,27259,755,9,0), -/*RitualofSouls*/ -(29893,0,29893,1,0), -(58887,29893,29893,2,0), -/*ShadowWard*/ -(6229,0,6229,1,0), -(11739,6229,6229,2,0), -(11740,11739,6229,3,0), -(28610,11740,6229,4,0), -(47890,28610,6229,5,0), -(47891,47890,6229,6,0), -/*------------------ ---(355)Affliction -------------------*/ -/*Corruption*/ -(172,0,172,1,0), -(6222,172,172,2,0), -(6223,6222,172,3,0), -(7648,6223,172,4,0), -(11671,7648,172,5,0), -(11672,11671,172,6,0), -(25311,11672,172,7,0), -(27216,25311,172,8,0), -(47812,27216,172,9,0), -(47813,47812,172,10,0), -/*CurseofAgony*/ -(980,0,980,1,0), -(1014,980,980,2,0), -(6217,1014,980,3,0), -(11711,6217,980,4,0), -(11712,11711,980,5,0), -(11713,11712,980,6,0), -(27218,11713,980,7,0), -(47863,27218,980,8,0), -(47864,47863,980,9,0), -/*CurseofDoom*/ -(603,0,603,1,0), -(30910,603,603,2,0), -(47867,30910,603,3,0), -/*CurseofRecklessness*/ -(704,0,704,1,0), -(7658,704,704,2,0), -(7659,7658,704,3,0), -(11717,7659,704,4,0), -(27226,11717,704,5,0), -(57595,27226,704,6,0), -/*CurseoftheElements*/ -(1490,0,1490,1,0), -(11721,1490,1490,2,0), -(11722,11721,1490,3,0), -(27228,11722,1490,4,0), -(47865,27228,1490,5,0), -/*CurseofTongues*/ -(1714,0,1714,1,0), -(11719,1714,1714,2,0), -/*CurseofWeakness*/ -(702,0,702,1,0), -(1108,702,702,2,0), -(6205,1108,702,3,0), -(7646,6205,702,4,0), -(11707,7646,702,5,0), -(11708,11707,702,6,0), -(27224,11708,702,7,0), -(30909,27224,702,8,0), -(50511,30909,702,9,0), -/*DeathCoil*/ -(6789,0,6789,1,0), -(17925,6789,6789,2,0), -(17926,17925,6789,3,0), -(27223,17926,6789,4,0), -(47859,27223,6789,5,0), -(47860,47859,6789,6,0), -/*DrainLife*/ -(689,0,689,1,0), -(699,689,689,2,0), -(709,699,689,3,0), -(7651,709,689,4,0), -(11699,7651,689,5,0), -(11700,11699,689,6,0), -(27219,11700,689,7,0), -(27220,27219,689,8,0), -(47857,27220,689,9,0), -/*DrainMana*/ -(5138,0,5138,1,0), -(6226,5138,5138,2,0), -(11703,6226,5138,3,0), -(11704,11703,5138,4,0), -(27221,11704,5138,5,0), -(30908,27221,5138,6,0), -(47858,30908,5138,7,0), -/*DrainSoul*/ -(1120,0,1120,1,0), -(8288,1120,1120,2,0), -(8289,8288,1120,3,0), -(11675,8289,1120,4,0), -(27217,11675,1120,5,0), -(47855,27217,1120,6,0), -/*Fear*/ -(5782,0,5782,1,0), -(6213,5782,5782,2,0), -(6215,6213,5782,3,0), -/*Haunt*/ -(48181,0,48181,1,0), -(59161,48181,48181,2,0), -(59163,59161,48181,3,0), -(59164,59163,48181,4,0), -/*HowlofTerror*/ -(5484,0,5484,1,0), -(17928,5484,5484,2,0), -/*SeedofCorruption*/ -(27243,0,27243,1,0), -(47835,27243,27243,2,0), -(47836,47835,27243,3,0), -/*SiphonLife*/ -(18265,0,18265,1,0), -(18879,18265,18265,2,0), -(18880,18879,18265,3,0), -(18881,18880,18265,4,0), -(27264,18881,18265,5,0), -(30911,27264,18265,6,0), -(47861,30911,18265,7,0), -(47862,47861,18265,8,0), -/*UnstableAffliction*/ -(30108,0,30108,1,0), -(30404,30108,30108,2,0), -(30405,30404,30108,3,0), -(47841,30405,30108,4,0), -(47843,47841,30108,5,0), -/*------------------ ---(373)Enhancement -------------------*/ -/*FireResistanceTotem*/ -(8184,0,8184,1,0), -(10537,8184,8184,2,0), -(10538,10537,8184,3,0), -(25563,10538,8184,4,0), -(58737,25563,8184,5,0), -(58739,58737,8184,6,0), -/*FlametongueTotem*/ -(8227,0,8227,1,0), -(8249,8227,8227,2,0), -(10526,8249,8227,3,0), -(16387,10526,8227,4,0), -(25557,16387,8227,5,0), -(58649,25557,8227,6,0), -(58652,58649,8227,7,0), -(58656,58652,8227,8,0), -/*FlametongueWeapon*/ -(8024,0,8024,1,0), -(8027,8024,8024,2,0), -(8030,8027,8024,3,0), -(16339,8030,8024,4,0), -(16341,16339,8024,5,0), -(16342,16341,8024,6,0), -(25489,16342,8024,7,0), -(58785,25489,8024,8,0), -(58789,58785,8024,9,0), -(58790,58789,8024,10,0), -/*FrostResistanceTotem*/ -(8181,0,8181,1,0), -(10478,8181,8181,2,0), -(10479,10478,8181,3,0), -(25560,10479,8181,4,0), -(58741,25560,8181,5,0), -(58745,58741,8181,6,0), -/*FrostbrandWeapon*/ -(8033,0,8033,1,0), -(8038,8033,8033,2,0), -(10456,8038,8033,3,0), -(16355,10456,8033,4,0), -(16356,16355,8033,5,0), -(25500,16356,8033,6,0), -(58794,25500,8033,7,0), -(58795,58794,8033,8,0), -(58796,58795,8033,9,0), -/*Life Tap*/ -(1454,0,1454,1,0), -(1455,1454,1454,2,0), -(1456,1455,1454,3,0), -(11687,1456,1454,4,0), -(11688,11687,1454,5,0), -(11689,11688,1454,6,0), -(27222,11689,1454,7,0), -(57946,27222,1454,8,0), -/*Lightning Shield*/ -(324,0,324,1,0), -(325,324,324,2,0), -(905,325,324,3,0), -(945,905,324,4,0), -(8134,945,324,5,0), -(10431,8134,324,6,0), -(10432,10431,324,7,0), -(25469,10432,324,8,0), -(25472,25469,324,9,0), -(49280,25472,324,10,0), -(49281,49280,324,11,0), -/*NatureResistanceTotem*/ -(10595,0,10595,1,0), -(10600,10595,10595,2,0), -(10601,10600,10595,3,0), -(25574,10601,10595,4,0), -(58746,25574,10595,5,0), -(58749,58746,10595,6,0), -/*RockbiterWeapon*/ -(8017,0,8017,1,0), -(8018,8017,8017,2,0), -(8019,8018,8017,3,0), -(10399,8019,8017,4,0), -/*StoneskinTotem*/ -(8071,0,8071,1,0), -(8154,8071,8071,2,0), -(8155,8154,8071,3,0), -(10406,8155,8071,4,0), -(10407,10406,8071,5,0), -(10408,10407,8071,6,0), -(25508,10408,8071,7,0), -(25509,25508,8071,8,0), -(58751,25509,8071,9,0), -(58753,58751,8071,10,0), -/*StrengthofEarthTotem*/ -(8075,0,8075,1,0), -(8160,8075,8075,2,0), -(8161,8160,8075,3,0), -(10442,8161,8075,4,0), -(25361,10442,8075,5,0), -(25528,25361,8075,6,0), -(57622,25528,8075,7,0), -(58643,57622,8075,8,0), -/*WindfuryWeapon*/ -(8232,0,8232,1,0), -(8235,8232,8232,2,0), -(10486,8235,8232,3,0), -(16362,10486,8232,4,0), -(25505,16362,8232,5,0), -(58801,25505,8232,6,0), -(58803,58801,8232,7,0), -(58804,58803,8232,8,0), -/*------------------ --- (374) Restoration (Shaman) -------------------*/ -/*AncestralSpirit*/ -(2008,0,2008,1,0), -(20609,2008,2008,2,0), -(20610,20609,2008,3,0), -(20776,20610,2008,4,0), -(20777,20776,2008,5,0), -(25590,20777,2008,6,0), -(49277,25590,2008,7,0), -/*ChainHeal*/ -(1064,0,1064,1,0), -(10622,1064,1064,2,0), -(10623,10622,1064,3,0), -(25422,10623,1064,4,0), -(25423,25422,1064,5,0), -(55458,25423,1064,6,0), -(55459,55458,1064,7,0), -/*EarthShield*/ -(974,0,974,1,0), -(32593,974,974,2,0), -(32594,32593,974,3,0), -(49283,32594,974,4,0), -(49284,49283,974,5,0), -/*EarthlivingWeapon*/ -(51730,0,51730,1,0), -(51988,51730,51730,2,0), -(51991,51988,51730,3,0), -(51992,51991,51730,4,0), -(51993,51992,51730,5,0), -(51994,51993,51730,6,0), -/*HealingStreamTotem*/ -(5394,0,5394,1,0), -(6375,5394,5394,2,0), -(6377,6375,5394,3,0), -(10462,6377,5394,4,0), -(10463,10462,5394,5,0), -(25567,10463,5394,6,0), -(58755,25567,5394,7,0), -(58756,58755,5394,8,0), -(58757,58756,5394,9,0), -/*HealingWave*/ -(331,0,331,1,0), -(332,331,331,2,0), -(547,332,331,3,0), -(913,547,331,4,0), -(939,913,331,5,0), -(959,939,331,6,0), -(8005,959,331,7,0), -(10395,8005,331,8,0), -(10396,10395,331,9,0), -(25357,10396,331,10,0), -(25391,25357,331,11,0), -(25396,25391,331,12,0), -(49272,25396,331,13,0), -(49273,49272,331,14,0), -/*LesserHealingWave*/ -(8004,0,8004,1,0), -(8008,8004,8004,2,0), -(8010,8008,8004,3,0), -(10466,8010,8004,4,0), -(10467,10466,8004,5,0), -(10468,10467,8004,6,0), -(25420,10468,8004,7,0), -(49275,25420,8004,8,0), -(49276,49275,8004,9,0), -/*Mana Spring Totem*/ -(5675,0,5675,1,0), -(10495,5675,5675,2,0), -(10496,10495,5675,3,0), -(10497,10496,5675,4,0), -(25570,10497,5675,5,0), -(58771,25570,5675,6,0), -(58773,58771,5675,7,0), -(58774,58773,5675,8,0), -/*Riptide*/ -(61295,0,61295,1,0), -(61299,61295,61295,2,0), -(61300,61299,61295,3,0), -(61301,61300,61295,4,0), -/*Water Shield*/ -(52127,0,52127,1,0), -(52129,52127,52127,2,0), -(52131,52129,52127,3,0), -(52134,52131,52127,4,0), -(52136,52134,52127,5,0), -(52138,52136,52127,6,0), -(24398,52138,52127,7,0), -(33736,24398,52127,8,0), -(57960,33736,52127,9,0), -/*------------------ --- (375) Elemental Combat -------------------*/ -/*Chain Lightning*/ -(421,0,421,1,0), -(930,421,421,2,0), -(2860,930,421,3,0), -(10605,2860,421,4,0), -(25439,10605,421,5,0), -(25442,25439,421,6,0), -(49270,25442,421,7,0), -(49271,49270,421,8,0), -/*Earth Shock*/ -(8042,0,8042,1,0), -(8044,8042,8042,2,0), -(8045,8044,8042,3,0), -(8046,8045,8042,4,0), -(10412,8046,8042,5,0), -(10413,10412,8042,6,0), -(10414,10413,8042,7,0), -(25454,10414,8042,8,0), -(49230,25454,8042,9,0), -(49231,49230,8042,10,0), -/*Fire Nova Totem*/ -(1535,0,1535,1,0), -(8498,1535,1535,2,0), -(8499,8498,1535,3,0), -(11314,8499,1535,4,0), -(11315,11314,1535,5,0), -(25546,11315,1535,6,0), -(25547,25546,1535,7,0), -(61649,25547,1535,8,0), -(61657,61649,1535,9,0), -/*Flame Shock*/ -(8050,0,8050,1,0), -(8052,8050,8050,2,0), -(8053,8052,8050,3,0), -(10447,8053,8050,4,0), -(10448,10447,8050,5,0), -(29228,10448,8050,6,0), -(25457,29228,8050,7,0), -(49232,25457,8050,8,0), -(49233,49232,8050,9,0), -/*Frost Shock*/ -(8056,0,8056,1,0), -(8058,8056,8056,2,0), -(10472,8058,8056,3,0), -(10473,10472,8056,4,0), -(25464,10473,8056,5,0), -(49235,25464,8056,6,0), -(49236,49235,8056,7,0), -/*LavaBurst*/ -(51505,0,51505,1,0), -(60043,51505,51505,2,0), -/*LightningBolt*/ -(403,0,403,1,0), -(529,403,403,2,0), -(548,529,403,3,0), -(915,548,403,4,0), -(943,915,403,5,0), -(6041,943,403,6,0), -(10391,6041,403,7,0), -(10392,10391,403,8,0), -(15207,10392,403,9,0), -(15208,15207,403,10,0), -(25448,15208,403,11,0), -(25449,25448,403,12,0), -(49237,25449,403,13,0), -(49238,49237,403,14,0), -/*MagmaTotem*/ -(8190,0,8190,1,0), -(10585,8190,8190,2,0), -(10586,10585,8190,3,0), -(10587,10586,8190,4,0), -(25552,10587,8190,5,0), -(58731,25552,8190,6,0), -(58734,58731,8190,7,0), -/*Purge*/ -(370,0,370,1,0), -(8012,370,370,2,0), -/*SearingTotem*/ -(3599,0,3599,1,0), -(6363,3599,3599,2,0), -(6364,6363,3599,3,0), -(6365,6364,3599,4,0), -(10437,6365,3599,5,0), -(10438,10437,3599,6,0), -(25533,10438,3599,7,0), -(58699,25533,3599,8,0), -(58703,58699,3599,9,0), -(58704,58703,3599,10,0), -/*StoneclawTotem*/ -(5730,0,5730,1,0), -(6390,5730,5730,2,0), -(6391,6390,5730,3,0), -(6392,6391,5730,4,0), -(10427,6392,5730,5,0), -(10428,10427,5730,6,0), -(25525,10428,5730,7,0), -(58580,25525,5730,8,0), -(58581,58580,5730,9,0), -(58582,58581,5730,10,0), -/*TotemofWrath*/ -(30706,0,30706,1,0), -(57720,30706,30706,2,0), -(57721,57720,30706,3,0), -(57722,57721,30706,4,0), -/*------------------ ---(573)Restoration -------------------*/ -/*GiftoftheWild*/ -(21849,0,21849,1,0), -(21850,21849,21849,2,0), -(26991,21850,21849,3,0), -(48470,26991,21849,4,0), -/*HealingTouch*/ -(5185,0,5185,1,0), -(5186,5185,5185,2,0), -(5187,5186,5185,3,0), -(5188,5187,5185,4,0), -(5189,5188,5185,5,0), -(6778,5189,5185,6,0), -(8903,6778,5185,7,0), -(9758,8903,5185,8,0), -(9888,9758,5185,9,0), -(9889,9888,5185,10,0), -(25297,9889,5185,11,0), -(26978,25297,5185,12,0), -(26979,26978,5185,13,0), -(48377,26979,5185,14,0), -(48378,48377,5185,15,0), -/*Lifebloom*/ -(33763,0,33763,1,0), -(48450,33763,33763,2,0), -(48451,48450,33763,3,0), -/*MarkoftheWild*/ -(1126,0,1126,1,0), -(5232,1126,1126,2,0), -(6756,5232,1126,3,0), -(5234,6756,1126,4,0), -(8907,5234,1126,5,0), -(9884,8907,1126,6,0), -(9885,9884,1126,7,0), -(26990,9885,1126,8,0), -(48469,26990,1126,9,0), -/*Nourish*/ -(50464,0,50464,1,0), -/*Rebirth*/ -(20484,0,20484,1,0), -(20739,20484,20484,2,0), -(20742,20739,20484,3,0), -(20747,20742,20484,4,0), -(20748,20747,20484,5,0), -(26994,20748,20484,6,0), -(48477,26994,20484,7,0), -/*Regrowth*/ -(8936,0,8936,1,0), -(8938,8936,8936,2,0), -(8939,8938,8936,3,0), -(8940,8939,8936,4,0), -(8941,8940,8936,5,0), -(9750,8941,8936,6,0), -(9856,9750,8936,7,0), -(9857,9856,8936,8,0), -(9858,9857,8936,9,0), -(26980,9858,8936,10,0), -(48442,26980,8936,11,0), -(48443,48442,8936,12,0), -/*Rejuvenation*/ -(774,0,774,1,0), -(1058,774,774,2,0), -(1430,1058,774,3,0), -(2090,1430,774,4,0), -(2091,2090,774,5,0), -(3627,2091,774,6,0), -(8910,3627,774,7,0), -(9839,8910,774,8,0), -(9840,9839,774,9,0), -(9841,9840,774,10,0), -(25299,9841,774,11,0), -(26981,25299,774,12,0), -(26982,26981,774,13,0), -(48440,26982,774,14,0), -(48441,48440,774,15,0), -/*Revive*/ -(50769,0,50769,1,0), -(50768,50769,50769,2,0), -(50767,50768,50769,3,0), -(50766,50767,50769,4,0), -(50765,50766,50769,5,0), -(50764,50765,50769,6,0), -(50763,50764,50769,7,0), -/*Tranquility*/ -(740,0,740,1,0), -(8918,740,740,2,0), -(9862,8918,740,3,0), -(9863,9862,740,4,0), -(26983,9863,740,5,0), -(48446,26983,740,6,0), -(48447,48446,740,7,0), -/*WildGrowth*/ -(48438,0,48438,1,0), -(53248,48438,48438,2,0), -(53249,53248,48438,3,0), -(53251,53249,48438,4,0), -/*------------------ ---(574)Balance -------------------*/ -/*EntanglingRoots*/ -(339,0,339,1,0), -(1062,339,339,2,0), -(5195,1062,339,3,0), -(5196,5195,339,4,0), -(9852,5196,339,5,0), -(9853,9852,339,6,0), -(26989,9853,339,7,0), -(53308,26989,339,8,0), -/*Nature'sGrasp*/ -(16689,0,16689,1,339), -(16810,16689,16689,2,1062), -(16811,16810,16689,3,5195), -(16812,16811,16689,4,5196), -(16813,16812,16689,5,9852), -(17329,16813,16689,6,9853), -(27009,17329,16689,7,26989), -(53312,27009,16689,8,53308), -/*FaerieFire*/ -(770,0,770,1,0), -(778,770,770,2,0), -(9749,778,770,3,0), -(9907,9749,770,4,0), -(26993,9907,770,5,0), -(48476,26993,770,6,0), -/*Hibernate*/ -(2637,0,2637,1,0), -(18657,2637,2637,2,0), -(18658,18657,2637,3,0), -/*Hurricane*/ -(16914,0,16914,1,0), -(17401,16914,16914,2,0), -(17402,17401,16914,3,0), -(27012,17402,16914,4,0), -(48467,27012,16914,5,0), -/*InsectSwarm*/ -(5570,0,5570,1,0), -(24974,5570,5570,2,0), -(24975,24974,5570,3,0), -(24976,24975,5570,4,0), -(24977,24976,5570,5,0), -(27013,24977,5570,6,0), -(48468,27013,5570,7,0), -/*Moonfire*/ -(8921,0,8921,1,0), -(8924,8921,8921,2,0), -(8925,8924,8921,3,0), -(8926,8925,8921,4,0), -(8927,8926,8921,5,0), -(8928,8927,8921,6,0), -(8929,8928,8921,7,0), -(9833,8929,8921,8,0), -(9834,9833,8921,9,0), -(9835,9834,8921,10,0), -(26987,9835,8921,11,0), -(26988,26987,8921,12,0), -(48462,26988,8921,13,0), -(48463,48462,8921,14,0), -/*SootheAnimal*/ -(2908,0,2908,1,0), -(8955,2908,2908,2,0), -(9901,8955,2908,3,0), -(26995,9901,2908,4,0), -/*Starfall*/ -(48505,0,48505,1,0), -(53199,48505,48505,2,0), -(53200,53199,48505,3,0), -(53201,53200,48505,4,0), -/*Starfire*/ -(2912,0,2912,1,0), -(8949,2912,2912,2,0), -(8950,8949,2912,3,0), -(8951,8950,2912,4,0), -(9875,8951,2912,5,0), -(9876,9875,2912,6,0), -(25298,9876,2912,7,0), -(26986,25298,2912,8,0), -(48464,26986,2912,9,0), -(48465,48464,2912,10,0), -/*Thorns*/ -(467,0,467,1,0), -(782,467,467,2,0), -(1075,782,467,3,0), -(8914,1075,467,4,0), -(9756,8914,467,5,0), -(9910,9756,467,6,0), -(26992,9910,467,7,0), -(53307,26992,467,8,0), -/*Typhoon*/ -(50516,0,50516,1,0), -(53223,50516,50516,2,0), -(53225,53223,50516,3,0), -(53226,53225,50516,4,0), -(61384,53226,50516,5,0), -/*Wrath*/ -(5176,0,5176,1,0), -(5177,5176,5176,2,0), -(5178,5177,5176,3,0), -(5179,5178,5176,4,0), -(5180,5179,5176,5,0), -(6780,5180,5176,6,0), -(8905,6780,5176,7,0), -(9912,8905,5176,8,0), -(26984,9912,5176,9,0), -(26985,26984,5176,10,0), -(48459,26985,5176,11,0), -(48461,48459,5176,12,0), -/*------------------ ---(593)Destruction -------------------*/ -/*ChaosBolt*/ -(50796,0,50796,1,0), -(59170,50796,50796,2,0), -(59171,59170,50796,3,0), -(59172,59171,50796,4,0), -/*Conflagrate*/ -(17962,0,17962,1,0), -(18930,17962,17962,2,0), -(18931,18930,17962,3,0), -(18932,18931,17962,4,0), -(27266,18932,17962,5,0), -(30912,27266,17962,6,0), -(47828,30912,17962,7,0), -(47829,47828,17962,8,0), -/*Hellfire*/ -(1949,0,1949,1,0), -(11683,1949,1949,2,0), -(11684,11683,1949,3,0), -(27213,11684,1949,4,0), -(47823,27213,1949,5,0), -/*Immolate*/ -(348,0,348,1,0), -(707,348,348,2,0), -(1094,707,348,3,0), -(2941,1094,348,4,0), -(11665,2941,348,5,0), -(11667,11665,348,6,0), -(11668,11667,348,7,0), -(25309,11668,348,8,0), -(27215,25309,348,9,0), -(47810,27215,348,10,0), -(47811,47810,348,11,0), -/*Incinerate*/ -(29722,0,29722,1,0), -(32231,29722,29722,2,0), -(47837,32231,29722,3,0), -(47838,47837,29722,4,0), -/*RainofFire*/ -(5740,0,5740,1,0), -(6219,5740,5740,2,0), -(11677,6219,5740,3,0), -(11678,11677,5740,4,0), -(27212,11678,5740,5,0), -(47819,27212,5740,6,0), -(47820,47819,5740,7,0), -/*SearingPain*/ -(5676,0,5676,1,0), -(17919,5676,5676,2,0), -(17920,17919,5676,3,0), -(17921,17920,5676,4,0), -(17922,17921,5676,5,0), -(17923,17922,5676,6,0), -(27210,17923,5676,7,0), -(30459,27210,5676,8,0), -(47814,30459,5676,9,0), -(47815,47814,5676,10,0), -/*ShadowBolt*/ -(686,0,686,1,0), -(695,686,686,2,0), -(705,695,686,3,0), -(1088,705,686,4,0), -(1106,1088,686,5,0), -(7641,1106,686,6,0), -(11659,7641,686,7,0), -(11660,11659,686,8,0), -(11661,11660,686,9,0), -(25307,11661,686,10,0), -(27209,25307,686,11,0), -(47808,27209,686,12,0), -(47809,47808,686,13,0), -/*Shadowburn*/ -(17877,0,17877,1,0), -(18867,17877,17877,2,0), -(18868,18867,17877,3,0), -(18869,18868,17877,4,0), -(18870,18869,17877,5,0), -(18871,18870,17877,6,0), -(27263,18871,17877,7,0), -(30546,27263,17877,8,0), -(47826,30546,17877,9,0), -(47827,47826,17877,10,0), -/*Shadowflame*/ -(47897,0,47897,1,0), -(61290,47897,47897,2,0), -/*Shadowfury*/ -(30283,0,30283,1,0), -(30413,30283,30283,2,0), -(30414,30413,30283,3,0), -(47846,30414,30283,4,0), -(47847,47846,30283,5,0), -/*SoulFire*/ -(6353,0,6353,1,0), -(17924,6353,6353,2,0), -(27211,17924,6353,3,0), -(30545,27211,6353,4,0), -(47824,30545,6353,5,0), -(47825,47824,6353,6,0), -/*------------------ ---(594) Holy (Paladin) -------------------*/ -/*Blessing of Wisdom*/ -(19742,0,19742,1,0), -(19850,19742,19742,2,0), -(19852,19850,19742,3,0), -(19853,19852,19742,4,0), -(19854,19853,19742,5,0), -(25290,19854,19742,6,0), -(27142,25290,19742,7,0), -(48935,27142,19742,8,0), -(48936,48935,19742,9,0), -/*Consecration*/ -(26573,0,26573,1,0), -(20116,26573,26573,2,0), -(20922,20116,26573,3,0), -(20923,20922,26573,4,0), -(20924,20923,26573,5,0), -(27173,20924,26573,6,0), -(48818,27173,26573,7,0), -(48819,48818,26573,8,0), -/*Exorcism*/ -(879,0,879,1,0), -(5614,879,879,2,0), -(5615,5614,879,3,0), -(10312,5615,879,4,0), -(10313,10312,879,5,0), -(10314,10313,879,6,0), -(27138,10314,879,7,0), -(48800,27138,879,8,0), -(48801,48800,879,9,0), -/*Flash of Light*/ -(19750,0,19750,1,0), -(19939,19750,19750,2,0), -(19940,19939,19750,3,0), -(19941,19940,19750,4,0), -(19942,19941,19750,5,0), -(19943,19942,19750,6,0), -(27137,19943,19750,7,0), -(48784,27137,19750,8,0), -(48785,48784,19750,9,0), -/*Greater Blessing of Wisdom*/ -(25894,0,25894,1,19854), -(25918,25894,25894,2,25290), -(27143,25918,25894,3,27142), -(48937,27143,25894,4,48935), -(48938,48937,25894,5,48936), -/*Holy Light*/ -(635,0,635,1,0), -(639,635,635,2,0), -(647,639,635,3,0), -(1026,647,635,4,0), -(1042,1026,635,5,0), -(3472,1042,635,6,0), -(10328,3472,635,7,0), -(10329,10328,635,8,0), -(25292,10329,635,9,0), -(27135,25292,635,10,0), -(27136,27135,635,11,0), -(48781,27136,635,12,0), -(48782,48781,635,13,0), -/*HolyShock*/ -(20473,0,20473,1,0), -(20929,20473,20473,2,0), -(20930,20929,20473,3,0), -(27174,20930,20473,4,0), -(33072,27174,20473,5,0), -(48824,33072,20473,6,0), -(48825,48824,20473,7,0), -/*HolyWrath*/ -(2812,0,2812,1,0), -(10318,2812,2812,2,0), -(27139,10318,2812,3,0), -(48816,27139,2812,4,0), -(48817,48816,2812,5,0), -/*Lay on Hands*/ -(633,0,633,1,0), -(2800,633,633,2,0), -(10310,2800,633,3,0), -(27154,10310,633,4,0), -(48788,27154,633,5,0), -/*Redemption*/ -(7328,0,7328,1,0), -(10322,7328,7328,2,0), -(10324,10322,7328,3,0), -(20772,10324,7328,4,0), -(20773,20772,7328,5,0), -(48949,20773,7328,6,0), -(48950,48949,7328,7,0), -/*------------------ ---(613)Discipline -------------------*/ -/*DispelMagic*/ -(527,0,527,1,0), -(988,527,527,2,0), -/*DivineSpirit*/ -(14752,0,14752,1,0), -(14818,14752,14752,2,0), -(14819,14818,14752,3,0), -(27841,14819,14752,4,0), -(25312,27841,14752,5,0), -(48073,25312,14752,6,0), -/*InnerFire*/ -(588,0,588,1,0), -(7128,588,588,2,0), -(602,7128,588,3,0), -(1006,602,588,4,0), -(10951,1006,588,5,0), -(10952,10951,588,6,0), -(25431,10952,588,7,0), -(48040,25431,588,8,0), -(48168,48040,588,9,0), -/*ManaBurn*/ -(8129,0,8129,1,0), -(8131,8129,8129,2,0), -(10874,8131,8129,3,0), -(10875,10874,8129,4,0), -(10876,10875,8129,5,0), -(25379,10876,8129,6,0), -(25380,25379,8129,7,0), -(48128,25380,8129,8,0), -/*Penance*/ -(47540,0,47540,1,0), -(53005,47540,47540,2,0), -(53006,53005,47540,3,0), -(53007,53006,47540,4,0), -/*PowerWord:Fortitude*/ -(1243,0,1243,1,0), -(1244,1243,1243,2,0), -(1245,1244,1243,3,0), -(2791,1245,1243,4,0), -(10937,2791,1243,5,0), -(10938,10937,1243,6,0), -(25389,10938,1243,7,0), -(48161,25389,1243,8,0), -/*PowerWord:Shield*/ -(17,0,17,1,0), -(592,17,17,2,0), -(600,592,17,3,0), -(3747,600,17,4,0), -(6065,3747,17,5,0), -(6066,6065,17,6,0), -(10898,6066,17,7,0), -(10899,10898,17,8,0), -(10900,10899,17,9,0), -(10901,10900,17,10,0), -(25217,10901,17,11,0), -(25218,25217,17,12,0), -(48065,25218,17,13,0), -(48066,48065,17,14,0), -/*PrayerofFortitude*/ -(21562,0,21562,1,0), -(21564,21562,21562,2,0), -(25392,21564,21562,3,0), -(48162,25392,21562,4,0), -/*Prayer of Spirit*/ -(27681,0,27681,1,14752), -(32999,27681,27681,2,0), -(48074,32999,27681,3,0), -/*ShackleUndead*/ -(9484,0,9484,1,0), -(9485,9484,9484,2,0), -(10955,9485,9484,3,0), -/*------------------ ---(654)Pet-Hyena -------------------*/ -/*TendonRip*/ -(50271,0,50271,1,0), -(53571,50271,50271,2,0), -(53572,53571,50271,3,0), -(53573,53572,50271,4,0), -(53574,53573,50271,5,0), -(53575,53574,50271,6,0), -/*------------------ ---(655)Pet-BirdofPrey -------------------*/ -/*Snatch*/ -(50541,0,50541,1,0), -(53537,50541,50541,2,0), -(53538,53537,50541,3,0), -(53540,53538,50541,4,0), -(53542,53540,50541,5,0), -(53543,53542,50541,6,0), -/*------------------ ---(656)Pet-WindSerpent -------------------*/ -/*LightningBreath*/ -(24844,0,24844,1,0), -(25008,24844,24844,2,0), -(25009,25008,24844,3,0), -(25010,25009,24844,4,0), -(25011,25010,24844,5,0), -(25012,25011,24844,6,0), -/*------------------ ---(761)Pet-Felguard -------------------*/ -/*Anguish*/ -(33698,0,33698,1,0), -(33699,33698,33698,2,0), -(33700,33699,33698,3,0), -(47993,33700,33698,4,0), -/*Cleave*/ -(30213,0,30213,1,0), -(30219,30213,30213,2,0), -(30223,30219,30213,3,0), -(47994,30223,30213,4,0), -/*Intercept*/ -(30151,0,30151,1,0), -(30194,30151,30151,2,0), -(30198,30194,30151,3,0), -(47996,30198,30151,4,0), -/*------------------ ---(763)Pet-Dragonhawk -------------------*/ -/*FireBreath*/ -(34889,0,34889,1,0), -(35323,34889,34889,2,0), -(55482,35323,34889,3,0), -(55483,55482,34889,4,0), -(55484,55483,34889,5,0), -(55485,55484,34889,6,0), -/*------------------ ---(764)Pet-NetherRay ---(765)Pet-Sporebat -------------------*/ -/*SporeCloud*/ -(50274,0,50274,1,0), -(53593,50274,50274,2,0), -(53594,53593,50274,3,0), -(53596,53594,50274,4,0), -(53597,53596,50274,5,0), -(53598,53597,50274,6,0), -/*------------------ ---(768)Pet-Serpent -------------------*/ -/*PoisonSpit*/ -(35387,0,35387,1,0), -(35389,35387,35387,2,0), -(35392,35389,35387,3,0), -(55555,35392,35387,4,0), -(55556,55555,35387,5,0), -(55557,55556,35387,6,0), -/*------------------ ---(770)Blood -------------------*/ -/*BloodBoil*/ -(48721,0,48721,1,0), -(49939,48721,48721,2,0), -(49940,49939,48721,3,0), -(49941,49940,48721,4,0), -/*BloodStrike*/ -(45902,0,45902,1,0), -(49926,45902,45902,2,0), -(49927,49926,45902,3,0), -(49928,49927,45902,4,0), -(49929,49928,45902,5,0), -(49930,49929,45902,6,0), -/*HeartStrike*/ -(55050,0,55050,1,0), -(55258,55050,55050,2,0), -(55259,55258,55050,3,0), -(55260,55259,55050,4,0), -(55261,55260,55050,5,0), -(55262,55261,55050,6,0), -/*ImprovedRuneTap*/ -(48985,0,48985,1,0), -(49488,48985,48985,2,0), -(49489,49488,48985,3,0), -/*Pestilence*/ -(50842,0,50842,1,0), -(51426,50842,50842,2,0), -(51427,51426,50842,3,0), -(51428,51427,50842,4,0), -(51429,51428,50842,5,0), -/*Strangulate*/ -(47476,0,47476,1,0), -(49913,47476,47476,2,0), -(49914,49913,47476,3,0), -(49915,49914,47476,4,0), -(49916,49915,47476,5,0), -/*Vendetta*/ -(49015,0,49015,1,0), -(50154,49015,49015,2,0), -(55136,50154,49015,3,0), -/*------------------ ---(771)Frost -------------------*/ -/*FrostStrike*/ -(49143,0,49143,1,0), -(51416,49143,49143,2,0), -(51417,51416,49143,3,0), -(51418,51417,49143,4,0), -(51419,51418,49143,5,0), -(55268,51419,49143,6,0), -/*HornofWinter*/ -(57330,0,57330,1,0), -(57623,57330,57330,2,0), -/*HowlingBlast*/ -(49184,0,49184,1,0), -(51408,49184,49184,2,0), -(51409,51408,49184,3,0), -(51410,51409,49184,4,0), -(51411,51410,49184,5,0), -/*IcyTalons*/ -(50880,0,50880,1,0), -(50884,50880,50880,2,0), -(50885,50884,50880,3,0), -(50886,50885,50880,4,0), -(50887,50886,50880,5,0), -/*IcyTouch*/ -(45477,0,45477,1,0), -(49896,45477,45477,2,0), -(49903,49896,45477,3,0), -(49904,49903,45477,4,0), -(49909,49904,45477,5,0), -/*ImprovedIcyTouch*/ -(49175,0,49175,1,0), -(50031,49175,49175,2,0), -(51456,50031,49175,3,0), -/*Obliterate*/ -(49020,0,49020,1,0), -(51423,49020,49020,2,0), -(51424,51423,49020,3,0), -(51425,51424,49020,4,0), -/*------------------ ---(772)Unholy -------------------*/ -/*CorpseExplosion*/ -(49158,0,49158,1,0), -(51325,49158,49158,2,0), -(51326,51325,49158,3,0), -(51327,51326,49158,4,0), -(51328,51327,49158,5,0), -/*DeathandDecay*/ -(43265,0,43265,1,0), -(49936,43265,43265,2,0), -(49937,49936,43265,3,0), -(49938,49937,43265,4,0), -/*DeathCoil*/ -(52375,0,52375,1,0), -(49892,52375,52375,2,0), -(49893,49892,52375,3,0), -(49894,49893,52375,4,0), -(49895,49894,52375,5,0), -/*DeathStrike*/ -(49998,0,49998,1,0), -(49999,49998,49998,2,0), -(45463,49999,49998,3,0), -(49923,45463,49998,4,0), -(49924,49923,49998,5,0), -/*MagicSuppression*/ -(49224,0,49224,1,0), -(49610,49224,49224,2,0), -(49611,49610,49224,3,0), -(49612,49611,49224,4,0), -(49614,49612,49224,5,0), -/*Outbreak*/ -(49013,0,49013,1,0), -(55236,49013,49013,2,0), -(55237,55236,49013,3,0), -/*PlagueStrike*/ -(45462,0,45462,1,0), -(49917,45462,45462,2,0), -(49918,49917,45462,3,0), -(49919,49918,45462,4,0), -(49920,49919,45462,5,0), -(49921,49920,45462,6,0), -/*ScourgeStrike*/ -(55090,0,55090,1,0), -(55265,55090,55090,2,0), -(55270,55265,55090,3,0), -(55271,55270,55090,4,0), -/*UnholyBlight*/ -(49194,0,49194,1,0), -(51376,49194,49194,2,0), -(51378,51376,49194,3,0), -(51379,51378,49194,4,0), -/*------------------ ---(780)Pet-ExoticChimaera -------------------*/ -/*FroststormBreath*/ -(54644,0,54644,1,0), -(55488,54644,54644,2,0), -(55489,55488,54644,3,0), -(55490,55489,54644,4,0), -(55491,55490,54644,5,0), -(55492,55491,54644,6,0), -/*------------------ ---(781)Pet-ExoticDevlisaur -------------------*/ -/*MonstrousBite*/ -(54680,0,54680,1,0), -(55495,54680,54680,2,0), -(55496,55495,54680,3,0), -(55497,55496,54680,4,0), -(55498,55497,54680,5,0), -(55499,55498,54680,6,0), -/*------------------ ---(784)Pet-ExoticWorm -------------------*/ -/*AcidSpit*/ -(55749,0,55749,1,0), -(55750,55749,55749,2,0), -(55751,55750,55749,3,0), -(55752,55751,55749,4,0), -(55753,55752,55749,5,0), -(55754,55753,55749,6,0), -/*------------------ ---(785)Pet-Wasp -------------------*/ -/*Sting*/ -(56626,0,56626,1,0), -(56627,56626,56626,2,0), -(56628,56627,56626,3,0), -(56629,56628,56626,4,0), -(56630,56629,56626,5,0), -(56631,56630,56626,6,0), -/*------------------ ---(787)Pet-ExoticCoreHound -------------------*/ -/*LavaBreath*/ -(58604,0,58604,1,0), -(58607,58604,58604,2,0), -(58608,58607,58604,3,0), -(58609,58608,58604,4,0), -(58610,58609,58604,5,0), -(58611,58610,58604,6,0), -/*------------------ ---(788)Pet-ExoticSpiritBeast -------------------*/ -/*SpiritStrike*/ -(61193,0,61193,1,0), -(61194,61193,61193,2,0), -(61195,61194,61193,3,0), -(61196,61195,61193,4,0), -(61197,61196,61193,5,0), -(61198,61197,61193,6,0), -/*------------------ ---Professions -------------------*/ -/*Alchemy*/ -(2259,0,2259,1,0), -(3101,2259,2259,2,0), -(3464,3101,2259,3,0), -(11611,3464,2259,4,0), -(28596,11611,2259,5,0), -(28672,11611,2259,5,0), -(28675,11611,2259,5,0), -(28677,11611,2259,5,0), -(51304,28596,2259,6,0), -/*Blacksmithing*/ -(2018,0,2018,1,0), -(3100,2018,2018,2,0), -(3538,3100,2018,3,0), -(9785,3538,2018,4,0), -(9787,9785,2018,5,0), -(9788,9785,2018,5,0), -(29844,9785,2018,5,0), -(17039,9787,2018,6,0), -(17040,9787,2018,6,0), -(17041,9787,2018,6,0), -(51300,29844,2018,6,0), -/*Cooking*/ -(2550,0,2550,1,0), -(3102,2550,2550,2,0), -(3413,3102,2550,3,0), -(18260,3413,2550,4,0), -(33359,18260,2550,5,0), -(51296,33359,2550,6,0), -/*Enchanting*/ -(7411,0,7411,1,0), -(7412,7411,7411,2,0), -(7413,7412,7411,3,0), -(13920,7413,7411,4,0), -(28029,13920,7411,5,0), -(51313,28029,7411,6,0), -/*Engineering*/ -(4036,0,4036,1,0), -(4037,4036,4036,2,0), -(4038,4037,4036,3,0), -(12656,4038,4036,4,0), -(20219,12656,4036,5,0), -(20222,12656,4036,5,0), -(30350,12656,4036,5,0), -(51306,30350,4036,6,0), -/*First Aid*/ -(3273,0,3273,1,0), -(3274,3273,3273,2,0), -(7924,3274,3273,3,0), -(10846,7924,3273,4,0), -(27028,10846,3273,5,0), -(45542,27028,3273,6,0), -/*Fishing*/ -(7620,0,7620,1,0), -(7731,7620,7620,2,0), -(7732,7731,7620,3,0), -(18248,7732,7620,4,0), -(33095,18248,7620,5,0), -(51294,33095,7620,6,0), -/*Herb Gathering*/ -(2366,0,2366,1,0), -(2368,2366,2366,2,0), -(3570,2368,2366,3,0), -(11993,3570,2366,4,0), -(28695,11993,2366,5,0), -(50300,28695,2366,6,0), -/*Inscription*/ -(45357,0,45357,1,0), -(45358,45357,45357,2,0), -(45359,45358,45357,3,0), -(45360,45359,45357,4,0), -(45361,45360,45357,5,0), -(45363,45361,45357,6,0), -/*Jewelcrafting*/ -(25229,0,25229,1,0), -(25230,25229,25229,2,0), -(28894,25230,25229,3,0), -(28895,28894,25229,4,0), -(28897,28895,25229,5,0), -(51311,28897,25229,6,0), -/*Leatherworking*/ -(2108,0,2108,1,0), -(3104,2108,2108,2,0), -(3811,3104,2108,3,0), -(10662,3811,2108,4,0), -(10656,10662,2108,5,0), -(10658,10662,2108,5,0), -(10660,10662,2108,5,0), -(32549,10662,2108,5,0), -(51302,32549,2108,6,0), -/*Mining*/ -(2575,0,2575,1,0), -(2576,2575,2575,2,0), -(3564,2576,2575,3,0), -(10248,3564,2575,4,0), -(29354,10248,2575,5,0), -(50310,29354,2575,6,0), -/*Riding*/ -(33388,0,33388,1,0), -(33391,33388,33388,2,0), -(34090,33391,33388,3,0), -(34091,34090,33388,4,0), -/*Skinning*/ -(8613,0,8613,1,0), -(8617,8613,8613,2,0), -(8618,8617,8613,3,0), -(10768,8618,8613,4,0), -(32678,10768,8613,5,0), -(50305,32678,8613,6,0), -/*Tailoring*/ -(3908,0,3908,1,0), -(3909,3908,3908,2,0), -(3910,3909,3908,3,0), -(12180,3910,3908,4,0), -(26790,12180,3908,5,0), -(26797,12180,3908,5,0), -(26798,12180,3908,5,0), -(26801,12180,3908,5,0), -(51309,26790,3908,6,0); diff --git a/sql/updates/6939_01_mangos_quest_template.sql b/sql/updates/6939_01_mangos_quest_template.sql deleted file mode 100644 index 88eb752f496..00000000000 --- a/sql/updates/6939_01_mangos_quest_template.sql +++ /dev/null @@ -1,4 +0,0 @@ -ALTER TABLE db_version CHANGE COLUMN required_6936_01_mangos_spell_chain required_6939_01_mangos_quest_template bit; - -ALTER TABLE `quest_template` - CHANGE `RewHonorableKills` `RewHonorableKills` int unsigned NOT NULL default '0'; diff --git a/sql/updates/6940_01_mangos_spell_learn_spell.sql b/sql/updates/6940_01_mangos_spell_learn_spell.sql deleted file mode 100644 index 8a50fbb6aac..00000000000 --- a/sql/updates/6940_01_mangos_spell_learn_spell.sql +++ /dev/null @@ -1,3 +0,0 @@ -ALTER TABLE db_version CHANGE COLUMN required_6939_01_mangos_quest_template required_6940_01_mangos_spell_learn_spell bit; - -DELETE FROM spell_learn_spell WHERE entry = 2842; diff --git a/sql/updates/6941_01_mangos_spell_learn_spell.sql b/sql/updates/6941_01_mangos_spell_learn_spell.sql deleted file mode 100644 index b2cf824b8aa..00000000000 --- a/sql/updates/6941_01_mangos_spell_learn_spell.sql +++ /dev/null @@ -1,6 +0,0 @@ -ALTER TABLE db_version CHANGE COLUMN required_6940_01_mangos_spell_learn_spell required_6941_01_mangos_spell_learn_spell bit; - -DELETE FROM spell_learn_spell WHERE entry = 53428; -INSERT INTO spell_learn_spell VALUES -(53428,53341), -(53428,53343); diff --git a/sql/updates/6944_01_mangos_mangos_string.sql b/sql/updates/6944_01_mangos_mangos_string.sql deleted file mode 100644 index cc45f79adcf..00000000000 --- a/sql/updates/6944_01_mangos_mangos_string.sql +++ /dev/null @@ -1,30 +0,0 @@ -ALTER TABLE db_version CHANGE COLUMN required_6941_01_mangos_spell_learn_spell required_6944_01_mangos_mangos_string bit; - -DELETE FROM mangos_string WHERE entry in (712,717,718,719); -INSERT INTO mangos_string VALUES -(712,'|cffff0000[BG Queue Announcer]:|r %s -- [%u-%u] A: %u/%u, H: %u/%u|r',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); - -DELETE FROM mangos_string WHERE entry in (720,721,722,723,724,725,726,727,728,729,730,731,732,733,734,735,736); -INSERT INTO mangos_string VALUES -(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); - -DELETE FROM mangos_string WHERE entry in (1122,1123,1124,1125,1126,1127,1128,1129,1130,1131,1132,1133,1134,1135,1136,1137,1138); diff --git a/sql/updates/6958_01_mangos_spell_proc_event.sql b/sql/updates/6958_01_mangos_spell_proc_event.sql deleted file mode 100644 index 7deab1f424a..00000000000 --- a/sql/updates/6958_01_mangos_spell_proc_event.sql +++ /dev/null @@ -1,706 +0,0 @@ -ALTER TABLE db_version CHANGE COLUMN required_6944_01_mangos_mangos_string required_6958_01_mangos_spell_proc_event bit; - -DROP TABLE IF EXISTS `spell_proc_event`; - -SET FOREIGN_KEY_CHECKS=0; --- ---------------------------- --- Table structure for spell_proc_event --- ---------------------------- -CREATE TABLE `spell_proc_event` ( - `entry` smallint(6) unsigned NOT NULL default '0', - `SchoolMask` tinyint(4) NOT NULL default '0', - `SpellFamilyName` smallint(6) unsigned NOT NULL default '0', - `SpellFamilyMask` bigint(40) 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; - --- ---------------------------- --- Records --- ---------------------------- -INSERT INTO `spell_proc_event` VALUES -(324, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000000, 0, 0, 3), -(325, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000000, 0, 0, 3), -(905, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000000, 0, 0, 3), -(945, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000000, 0, 0, 3), -(974, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000000, 0, 0, 3), -(1463, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000400, 0, 0, 0), -(3232, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000002, 0, 0, 0), -(5952, 0x00000000, 8, 0x0000000100000001, 0x00000000, 0x00000000, 0, 0, 0), -(6346, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000100, 0, 0, 0), -(7383, 0x00000001, 0, 0x0000000000000000, 0x00000000, 0x00000100, 0, 0, 0), -(7434, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000002, 0, 0, 0), -(8134, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000000, 0, 0, 3), -(8178, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00010000, 0, 0, 0), -(8494, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000400, 0, 0, 0), -(8495, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000400, 0, 0, 0), -(9452, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000000, 3, 0, 0), -(9782, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000040, 0, 0, 0), -(9784, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000040, 0, 0, 0), -(9799, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000002, 0, 0, 0), -(10191, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000400, 0, 0, 0), -(10192, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000400, 0, 0, 0), -(10193, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000400, 0, 0, 0), -(10431, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000000, 0, 0, 3), -(10432, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000000, 0, 0, 3), -(11095, 0x00000000, 3, 0x0000000000000010, 0x00000000, 0x00000000, 0, 0, 0), -(11103, 0x00000004, 3, 0x0000000000000000, 0x00000000, 0x00000000, 0, 0, 0), -(11119, 0x00000004, 3, 0x0000000000000000, 0x00000000, 0x00000002, 0, 0, 0), -(11120, 0x00000004, 3, 0x0000000000000000, 0x00000000, 0x00000002, 0, 0, 0), -(11129, 0x00000000, 3, 0x0000004000C00017, 0x00000000, 0x00000000, 0, 0, 0), -(11180, 0x00000010, 3, 0x0000000000000000, 0x00000000, 0x00000000, 0, 0, 0), -(11185, 0x00000000, 3, 0x0000000000000080, 0x00050000, 0x00000000, 0, 0, 0), -(11255, 0x00000000, 3, 0x0000000000004000, 0x00000000, 0x00000000, 0, 0, 0), -(12169, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000040, 0, 0, 0), -(12281, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000000, 0, 0, 6), -(12289, 0x00000000, 4, 0x0000000000000002, 0x00000000, 0x00000000, 0, 0, 0), -(12298, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000040, 0, 0, 0), -(12311, 0x00000000, 4, 0x0000000100000800, 0x00000000, 0x00000000, 0, 0, 0), -(12317, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000002, 0, 0, 0), -(12319, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000002, 0, 0, 0), -(12322, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000000, 2, 0, 0), -(12357, 0x00000004, 3, 0x0000000000000000, 0x00000000, 0x00000000, 0, 0, 0), -(12358, 0x00000004, 3, 0x0000000000000000, 0x00000000, 0x00000000, 0, 0, 0), -(12487, 0x00000000, 3, 0x0000000000000080, 0x00050000, 0x00000000, 0, 0, 0), -(12488, 0x00000000, 3, 0x0000000000000080, 0x00050000, 0x00000000, 0, 0, 0), -(12598, 0x00000000, 3, 0x0000000000004000, 0x00000000, 0x00000000, 0, 0, 0), -(12668, 0x00000000, 4, 0x0000000000000002, 0x00000000, 0x00000000, 0, 0, 0), -(12724, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000040, 0, 0, 0), -(12725, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000040, 0, 0, 0), -(12726, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000040, 0, 0, 0), -(12727, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000040, 0, 0, 0), -(12797, 0x00000000, 4, 0x0000000000000400, 0x00000000, 0x00000000, 0, 0, 0), -(12799, 0x00000000, 4, 0x0000000000000400, 0x00000000, 0x00000000, 0, 0, 0), -(12812, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000000, 0, 0, 6), -(12813, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000000, 0, 0, 6), -(12814, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000000, 0, 0, 6), -(12815, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000000, 0, 0, 6), -(12834, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000002, 0, 0, 0), -(12846, 0x00000004, 3, 0x0000000000000000, 0x00000000, 0x00000002, 0, 0, 0), -(12847, 0x00000004, 3, 0x0000000000000000, 0x00000000, 0x00000002, 0, 0, 0), -(12848, 0x00000004, 3, 0x0000000000000000, 0x00000000, 0x00000002, 0, 0, 0), -(12849, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000002, 0, 0, 0), -(12867, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000002, 0, 0, 0), -(12872, 0x00000000, 3, 0x0000000000000010, 0x00000000, 0x00000000, 0, 0, 0), -(12873, 0x00000000, 3, 0x0000000000000010, 0x00000000, 0x00000000, 0, 0, 0), -(12958, 0x00000000, 4, 0x0000000100000800, 0x00000000, 0x00000000, 0, 0, 0), -(12966, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00010000, 0, 0, 0), -(12967, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00010000, 0, 0, 0), -(12968, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00010000, 0, 0, 0), -(12969, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00010000, 0, 0, 0), -(12970, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00010000, 0, 0, 0), -(12971, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000002, 0, 0, 0), -(12972, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000002, 0, 0, 0), -(12973, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000002, 0, 0, 0), -(12974, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000002, 0, 0, 0), -(12999, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000000, 4, 0, 0), -(13000, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000000, 6, 0, 0), -(13001, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000000, 8, 0, 0), -(13002, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000000, 10, 0, 0), -(13045, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000002, 0, 0, 0), -(13046, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000002, 0, 0, 0), -(13047, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000002, 0, 0, 0), -(13048, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000002, 0, 0, 0), -(13165, 0x00000000, 9, 0x0000000000000001, 0x00000000, 0x00000000, 0, 0, 0), -(13754, 0x00000000, 8, 0x0000000000000010, 0x00000000, 0x00000000, 0, 0, 0), -(13867, 0x00000000, 8, 0x0000000000000010, 0x00000000, 0x00000000, 0, 0, 0), -(13983, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000018, 0, 0, 0), -(14070, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000018, 0, 0, 0), -(14071, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000018, 0, 0, 0), -(14156, 0x00000000, 8, 0x00000000003E0000, 0x00000000, 0x00000000, 0, 0, 0), -(14160, 0x00000000, 8, 0x00000000003E0000, 0x00000000, 0x00000000, 0, 0, 0), -(14161, 0x00000000, 8, 0x00000000003E0000, 0x00000000, 0x00000000, 0, 0, 0), -(14186, 0x00000000, 8, 0x0000000240800508, 0x00000000, 0x00000002, 0, 0, 0), -(14190, 0x00000000, 8, 0x0000000240800508, 0x00000000, 0x00000002, 0, 0, 0), -(14193, 0x00000000, 8, 0x0000000240800508, 0x00000000, 0x00000002, 0, 0, 0), -(14194, 0x00000000, 8, 0x0000000240800508, 0x00000000, 0x00000002, 0, 0, 0), -(14195, 0x00000000, 8, 0x0000000240800508, 0x00000000, 0x00000002, 0, 0, 0), -(14318, 0x00000000, 9, 0x0000000000000001, 0x00000000, 0x00000000, 0, 0, 0), -(14319, 0x00000000, 9, 0x0000000000000001, 0x00000000, 0x00000000, 0, 0, 0), -(14320, 0x00000000, 9, 0x0000000000000001, 0x00000000, 0x00000000, 0, 0, 0), -(14321, 0x00000000, 9, 0x0000000000000001, 0x00000000, 0x00000000, 0, 0, 0), -(14322, 0x00000000, 9, 0x0000000000000001, 0x00000000, 0x00000000, 0, 0, 0), -(14531, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000002, 0, 0, 0), -(14774, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000002, 0, 0, 0), -(14892, 0x00000000, 6, 0x0000000410001E00, 0x00000000, 0x00000002, 0, 0, 0), -(15088, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000002, 0, 0, 0), -(15128, 0x00000004, 0, 0x0000000000000000, 0x00000000, 0x00000000, 0, 0, 0), -(15268, 0x00000000, 6, 0x000000020608A000, 0x00000000, 0x00000000, 0, 0, 0), -(15277, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000000, 6, 0, 0), -(15286, 0x00000020, 6, 0x0000000000000000, 0x00000000, 0x00000000, 0, 0, 0), -(15323, 0x00000000, 6, 0x000000020608A000, 0x00000000, 0x00000000, 0, 0, 0), -(15324, 0x00000000, 6, 0x000000020608A000, 0x00000000, 0x00000000, 0, 0, 0), -(15325, 0x00000000, 6, 0x000000020608A000, 0x00000000, 0x00000000, 0, 0, 0), -(15326, 0x00000000, 6, 0x000000020608A000, 0x00000000, 0x00000000, 0, 0, 0), -(15337, 0x00000000, 6, 0x0000000200002000, 0x00000000, 0x00000002, 0, 0, 0), -(15338, 0x00000000, 6, 0x0000000200002000, 0x00000000, 0x00000002, 0, 0, 0), -(15346, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000000, 6, 0, 0), -(15362, 0x00000000, 6, 0x0000000410001E00, 0x00000000, 0x00000002, 0, 0, 0), -(15363, 0x00000000, 6, 0x0000000410001E00, 0x00000000, 0x00000002, 0, 0, 0), -(15600, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000000, 1, 0, 0), -(16164, 0x00000000, 11, 0x0000000090100003, 0x00000000, 0x00000002, 0, 0, 0), -(16176, 0x00000000, 11, 0x00000000000001C0, 0x00000000, 0x00000002, 0, 0, 0), -(16180, 0x00000000, 11, 0x00000000000000C0, 0x00000000, 0x00000002, 0, 0, 0), -(16196, 0x00000000, 11, 0x00000000000000C0, 0x00000000, 0x00000002, 0, 0, 0), -(16198, 0x00000000, 11, 0x00000000000000C0, 0x00000000, 0x00000002, 0, 0, 0), -(16235, 0x00000000, 11, 0x00000000000001C0, 0x00000000, 0x00000002, 0, 0, 0), -(16240, 0x00000000, 11, 0x00000000000001C0, 0x00000000, 0x00000002, 0, 0, 0), -(16256, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000002, 0, 0, 0), -(16257, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00010000, 0, 0, 0), -(16277, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00010000, 0, 0, 0), -(16278, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00010000, 0, 0, 0), -(16279, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00010000, 0, 0, 0), -(16280, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00010000, 0, 0, 0), -(16281, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000002, 0, 0, 0), -(16282, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000002, 0, 0, 0), -(16283, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000002, 0, 0, 0), -(16284, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000002, 0, 0, 0), -(16487, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000002, 0, 0, 0), -(16489, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000002, 0, 0, 0), -(16492, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000002, 0, 0, 0), -(16550, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000002, 0, 0, 0), -(16620, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000000, 0, 0, 30), -(16624, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000040, 0, 0, 0), -(16850, 0x00000000, 7, 0x0000000000000004, 0x00000000, 0x00000000, 0, 0, 0), -(16864, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000000, 2, 0, 0), -(16880, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000002, 0, 0, 0), -(16923, 0x00000000, 7, 0x0000000000000004, 0x00000000, 0x00000000, 0, 0, 0), -(16924, 0x00000000, 7, 0x0000000000000004, 0x00000000, 0x00000000, 0, 0, 0), -(16952, 0x00000000, 7, 0x0000040000039000, 0x00000000, 0x00000002, 0, 0, 0), -(16954, 0x00000000, 7, 0x0000040000039000, 0x00000000, 0x00000002, 0, 0, 0), -(16958, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000002, 0, 0, 0), -(16961, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000002, 0, 0, 0), -(17106, 0x00000000, 7, 0x0000000000080000, 0x00000000, 0x00000000, 0, 0, 0), -(17107, 0x00000000, 7, 0x0000000000080000, 0x00000000, 0x00000000, 0, 0, 0), -(17108, 0x00000000, 7, 0x0000000000080000, 0x00000000, 0x00000000, 0, 0, 0), -(17364, 0x00000008, 0, 0x0000000000000000, 0x00000000, 0x00000000, 0, 0, 0), -(17495, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000040, 0, 0, 0), -(17793, 0x00000000, 5, 0x0000000000000001, 0x00000000, 0x00000002, 0, 0, 0), -(17794, 0x00000020, 0, 0x0000000000000000, 0x00000000, 0x00000001, 0, 0, 0), -(17796, 0x00000000, 5, 0x0000000000000001, 0x00000000, 0x00000002, 0, 0, 0), -(17797, 0x00000020, 0, 0x0000000000000000, 0x00000000, 0x00000000, 0, 0, 0), -(17798, 0x00000020, 0, 0x0000000000000000, 0x00000000, 0x00000000, 0, 0, 0), -(17799, 0x00000020, 0, 0x0000000000000000, 0x00000000, 0x00000000, 0, 0, 0), -(17800, 0x00000020, 0, 0x0000000000000000, 0x00000000, 0x00000000, 0, 0, 0), -(17801, 0x00000000, 5, 0x0000000000000001, 0x00000000, 0x00000002, 0, 0, 0), -(17802, 0x00000000, 5, 0x0000000000000001, 0x00000000, 0x00000002, 0, 0, 0), -(17803, 0x00000000, 5, 0x0000000000000001, 0x00000000, 0x00000002, 0, 0, 0), -(18073, 0x00000000, 5, 0x0000008000000060, 0x00000000, 0x00000000, 0, 0, 0), -(18094, 0x00000000, 5, 0x000000000000000A, 0x00000000, 0x00000000, 0, 0, 0), -(18095, 0x00000000, 5, 0x000000000000000A, 0x00000000, 0x00000000, 0, 0, 0), -(18096, 0x00000000, 5, 0x0000008000000060, 0x00000000, 0x00000000, 0, 0, 0), -(18119, 0x00000000, 5, 0x000010C0000003E5, 0x00000000, 0x00000000, 0, 0, 0), -(18120, 0x00000000, 5, 0x000010C0000003E5, 0x00000000, 0x00000000, 0, 0, 0), -(18820, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00010000, 0, 0, 0), -(19184, 0x00000000, 9, 0x0000200000000014, 0x00000000, 0x00000000, 0, 0, 0), -(19228, 0x00000000, 0, 0x0000000000000040, 0x00000000, 0x00000000, 0, 0, 0), -(19232, 0x00000000, 9, 0x0000000000000040, 0x00000000, 0x00000000, 0, 0, 0), -(19233, 0x00000000, 9, 0x0000000000000040, 0x00000000, 0x00000000, 0, 0, 0), -(19387, 0x00000000, 9, 0x0000200000000014, 0x00000000, 0x00000000, 0, 0, 0), -(19388, 0x00000000, 9, 0x0000200000000014, 0x00000000, 0x00000000, 0, 0, 0), -(19572, 0x00000000, 9, 0x0000000000800000, 0x00004000, 0x00000000, 0, 0, 0), -(19573, 0x00000000, 9, 0x0000000000800000, 0x00004000, 0x00000000, 0, 0, 0), -(20049, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000002, 0, 0, 0), -(20056, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000002, 0, 0, 0), -(20057, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000002, 0, 0, 0), -(20128, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000040, 0, 0, 0), -(20131, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000040, 0, 0, 0), -(20132, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000040, 0, 0, 0), -(20164, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000000, 5, 0, 0), -(20165, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000000, 20, 0, 0), -(20166, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000000, 20, 0, 0), -(20182, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000040, 0, 0, 0), -(20210, 0x00000000, 10, 0x00000000C0200000, 0x00000000, 0x00000002, 0, 0, 0), -(20212, 0x00000000, 10, 0x00000000C0200000, 0x00000000, 0x00000002, 0, 0, 0), -(20213, 0x00000000, 10, 0x00000000C0200000, 0x00000000, 0x00000002, 0, 0, 0), -(20214, 0x00000000, 10, 0x00000000C0200000, 0x00000000, 0x00000002, 0, 0, 0), -(20215, 0x00000000, 10, 0x00000000C0200000, 0x00000000, 0x00000002, 0, 0, 0), -(20234, 0x00000000, 10, 0x0000000000008000, 0x00000000, 0x00000000, 0, 0, 0), -(20235, 0x00000000, 10, 0x0000000000008000, 0x00000000, 0x00000000, 0, 0, 0), -(20375, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000000, 7, 0, 0), -(20500, 0x00000000, 4, 0x0000000010000000, 0x00000000, 0x00000000, 0, 0, 0), -(20501, 0x00000000, 4, 0x0000000010000000, 0x00000000, 0x00000000, 0, 0, 0), -(20705, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000002, 0, 0, 0), -(20911, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000070, 0, 0, 0), -(20925, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000040, 0, 0, 0), -(20927, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000040, 0, 0, 0), -(20928, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000040, 0, 0, 0), -(21185, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000000, 0, 0, 10), -(21882, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000002, 0, 0, 0), -(21890, 0x00000000, 4, 0x0000036C2A764EEF, 0x00000000, 0x00000000, 0, 0, 0), -(22007, 0x00000000, 3, 0x0000000000200021, 0x00000000, 0x00010000, 0, 0, 0), -(22618, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000040, 0, 0, 0), -(22648, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000002, 0, 0, 0), -(23547, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000020, 0, 0, 0), -(23548, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000040, 0, 0, 0), -(23551, 0x00000000, 11, 0x00000000000000C0, 0x00000000, 0x00000000, 0, 0, 0), -(23552, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000000, 0, 0, 3), -(23572, 0x00000000, 11, 0x00000000000000C0, 0x00000000, 0x00000000, 0, 0, 0), -(23578, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000000, 2, 0, 0), -(23581, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000000, 2, 0, 0), -(23602, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000040, 0, 0, 0), -(23686, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000000, 2, 0, 0), -(23688, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00010000, 0, 0, 0), -(23689, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000000, 4, 0, 0), -(23695, 0x00000000, 4, 0x0000000000000002, 0x00000000, 0x00000000, 0, 0, 0), -(23721, 0x00000000, 9, 0x0000000000000800, 0x00000000, 0x00000000, 0, 0, 0), -(23920, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000800, 0, 0, 0), -(24353, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000002, 0, 0, 0), -(24389, 0x00000000, 3, 0x0000004000C00017, 0x00000000, 0x00000000, 0, 0, 0), -(24398, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000000, 0, 0, 3), -(24658, 0x00000000, 0, 0x0000000000000000, 0x00014110, 0x00000000, 0, 0, 0), -(24905, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000000, 15, 0, 0), -(24932, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000002, 0, 0, 6), -(25050, 0x00000004, 0, 0x0000000000000000, 0x00000000, 0x00000000, 0, 0, 0), -(25296, 0x00000000, 9, 0x0000000000000001, 0x00000000, 0x00000000, 0, 0, 0), -(25469, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000000, 0, 0, 3), -(25472, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000000, 0, 0, 3), -(25669, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000000, 1, 0, 0), -(25899, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000070, 0, 0, 0), -(25988, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000002, 0, 0, 0), -(26016, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000000, 2, 0, 0), -(26107, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000064, 0, 0, 0), -(26119, 0x00000000, 10, 0x0000000090100003, 0x00000000, 0x00010000, 0, 0, 0), -(26128, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000008, 0, 0, 0), -(26135, 0x00000000, 10, 0x0000000000800000, 0x00000000, 0x00010000, 0, 0, 0), -(26480, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000000, 3, 0, 0), -(26605, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000002, 0, 0, 0), -(27044, 0x00000000, 9, 0x0000000000000001, 0x00000000, 0x00000000, 0, 0, 0), -(27131, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000400, 0, 0, 0), -(27179, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000040, 0, 0, 0), -(27419, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000000, 3, 0, 0), -(27498, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000000, 3, 0, 0), -(27521, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00010000, 0, 0, 0), -(27656, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000000, 3, 0, 0), -(27774, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00010000, 0, 0, 0), -(27787, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000000, 3, 0, 0), -(27811, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000002, 0, 0, 0), -(27815, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000002, 0, 0, 0), -(27816, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000002, 0, 0, 0), -(28592, 0x00000010, 3, 0x0000000000000000, 0x00000000, 0x00000000, 0, 0, 0), -(28593, 0x00000010, 3, 0x0000000000000000, 0x00000000, 0x00000000, 0, 0, 0), -(28716, 0x00000000, 7, 0x0000000000000010, 0x00048000, 0x00000000, 0, 0, 0), -(28719, 0x00000000, 7, 0x0000000000000020, 0x00000000, 0x00000002, 0, 0, 0), -(28744, 0x00000000, 7, 0x0000000000000040, 0x00044000, 0x00000000, 0, 0, 0), -(28752, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000002, 0, 0, 0), -(28789, 0x00000000, 10, 0x00000000C0000000, 0x00000000, 0x00000000, 0, 0, 0), -(28802, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00010000, 0, 0, 0), -(28809, 0x00000000, 6, 0x0000000000001000, 0x00000000, 0x00000002, 0, 0, 0), -(28812, 0x00000000, 8, 0x0000000002000006, 0x00000000, 0x00000002, 0, 0, 0), -(28816, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000000, 3, 0, 0), -(28823, 0x00000000, 11, 0x00000000000000C0, 0x00000000, 0x00000000, 0, 0, 0), -(28847, 0x00000000, 7, 0x0000000000000020, 0x00000000, 0x00000000, 0, 0, 0), -(28849, 0x00000000, 11, 0x0000000000000080, 0x00000000, 0x00000000, 0, 0, 0), -(29074, 0x00000014, 3, 0x0000000000000000, 0x00000000, 0x00000002, 0, 0, 0), -(29075, 0x00000014, 3, 0x0000000000000000, 0x00000000, 0x00000002, 0, 0, 0), -(29076, 0x00000014, 3, 0x0000000000000000, 0x00000000, 0x00000002, 0, 0, 0), -(29150, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000000, 3, 0, 0), -(29179, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000002, 0, 0, 0), -(29180, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000002, 0, 0, 0), -(29385, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000000, 7, 0, 0), -(29441, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000008, 0, 0, 1), -(29444, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000008, 0, 0, 1), -(29455, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000040, 0, 0, 0), -(29501, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000000, 3, 0, 0), -(29593, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000070, 0, 0, 0), -(29594, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000070, 0, 0, 0), -(29624, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000000, 3, 0, 0), -(29625, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000000, 3, 0, 0), -(29626, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000000, 3, 0, 0), -(29632, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000000, 3, 0, 0), -(29633, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000000, 3, 0, 0), -(29634, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000000, 3, 0, 0), -(29635, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000000, 3, 0, 0), -(29636, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000000, 3, 0, 0), -(29637, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000000, 3, 0, 0), -(29801, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000002, 0, 0, 0), -(29834, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00010000, 0, 0, 0), -(29838, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00010000, 0, 0, 0), -(29977, 0x00000000, 3, 0x0000004000C00017, 0x00000000, 0x00000000, 0, 0, 0), -(30003, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000800, 0, 0, 0), -(30160, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000002, 0, 0, 0), -(30293, 0x00000000, 5, 0x000000C000000381, 0x00000000, 0x00000000, 0, 0, 0), -(30295, 0x00000000, 5, 0x000000C000000381, 0x00000000, 0x00000000, 0, 0, 0), -(30296, 0x00000000, 5, 0x000000C000000381, 0x00000000, 0x00000000, 0, 0, 0), -(30299, 0x00000024, 0, 0x0000000000000000, 0x00000000, 0x00000000, 0, 0, 0), -(30301, 0x00000024, 0, 0x0000000000000000, 0x00000000, 0x00000000, 0, 0, 0), -(30302, 0x00000024, 0, 0x0000000000000000, 0x00000000, 0x00000000, 0, 0, 0), -(30675, 0x00000000, 11, 0x0000000000000003, 0x00000000, 0x00000000, 0, 0, 0), -(30678, 0x00000000, 11, 0x0000000000000003, 0x00000000, 0x00000000, 0, 0, 0), -(30679, 0x00000000, 11, 0x0000000000000003, 0x00000000, 0x00000000, 0, 0, 0), -(30680, 0x00000000, 11, 0x0000000000000003, 0x00000000, 0x00000000, 0, 0, 0), -(30681, 0x00000000, 11, 0x0000000000000003, 0x00000000, 0x00000000, 0, 0, 0), -(30701, 0x0000001C, 0, 0x0000000000000000, 0x00000000, 0x00000000, 0, 0, 0), -(30705, 0x0000001C, 0, 0x0000000000000000, 0x00000000, 0x00000000, 0, 0, 0), -(30802, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000002, 0, 0, 0), -(30803, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000002, 0, 0, 0), -(30804, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000002, 0, 0, 0), -(30805, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000002, 0, 0, 0), -(30806, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000002, 0, 0, 0), -(30807, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000002, 0, 0, 0), -(30808, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000002, 0, 0, 0), -(30809, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000002, 0, 0, 0), -(30810, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000002, 0, 0, 0), -(30811, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000002, 0, 0, 0), -(30823, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000000, 10.5, 0, 0), -(30881, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000000, 0, 0, 5), -(30883, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000000, 0, 0, 5), -(30884, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000000, 0, 0, 5), -(30885, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000000, 0, 0, 5), -(30886, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000000, 0, 0, 5), -(30937, 0x00000020, 0, 0x0000000000000000, 0x00000000, 0x00000000, 0, 0, 0), -(31124, 0x00000000, 8, 0x000000002000000E, 0x00000000, 0x00000000, 0, 0, 0), -(31126, 0x00000000, 8, 0x000000002000000E, 0x00000000, 0x00000000, 0, 0, 0), -(31244, 0x00000000, 8, 0x00000009003E0000, 0x00000000, 0x00000004, 0, 0, 0), -(31245, 0x00000000, 8, 0x00000009003E0000, 0x00000000, 0x00000004, 0, 0, 0), -(31394, 0x00000020, 0, 0x0000000000000000, 0x00000000, 0x00000000, 0, 0, 0), -(31569, 0x00000000, 3, 0x0000000000010000, 0x00000000, 0x00000000, 0, 0, 0), -(31570, 0x00000000, 3, 0x0000000000010000, 0x00000000, 0x00000000, 0, 0, 0), -(31785, 0x00000000, 0, 0x0000000000000000, 0x00008800, 0x00000000, 0, 0, 0), -(31794, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00010000, 0, 0, 0), -(31801, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000000, 20, 0, 0), -(31833, 0x00000000, 10, 0x0000000080000000, 0x00000000, 0x00000000, 0, 0, 0), -(31835, 0x00000000, 10, 0x0000000080000000, 0x00000000, 0x00000000, 0, 0, 0), -(31836, 0x00000000, 10, 0x0000000080000000, 0x00000000, 0x00000000, 0, 0, 0), -(31904, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000040, 0, 0, 0), -(32385, 0x00000000, 5, 0x0000001100000402, 0x00000000, 0x00000000, 0, 0, 0), -(32387, 0x00000000, 5, 0x0000001100000402, 0x00000000, 0x00000000, 0, 0, 0), -(32392, 0x00000000, 5, 0x0000001100000402, 0x00000000, 0x00000000, 0, 0, 0), -(32393, 0x00000000, 5, 0x0000001100000402, 0x00000000, 0x00000000, 0, 0, 0), -(32394, 0x00000000, 5, 0x0000001100000402, 0x00000000, 0x00000000, 0, 0, 0), -(32587, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000040, 0, 0, 0), -(32593, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000000, 0, 0, 3), -(32594, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000000, 0, 0, 3), -(32642, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000040, 0, 0, 0), -(32734, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000000, 0, 0, 3), -(32748, 0x00000000, 8, 0x0000000100000000, 0x00000140, 0x00000000, 0, 0, 0), -(32776, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000040, 0, 0, 0), -(32777, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000040, 0, 0, 0), -(32837, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00010000, 0, 0, 45), -(32844, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000000, 2, 0, 0), -(32885, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000002, 0, 0, 0), -(33076, 0x00000000, 0, 0x0000000000000000, 0x000A02A8, 0x00000000, 0, 0, 0), -(33089, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000040, 0, 0, 0), -(33127, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000000, 7, 0, 0), -(33142, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000002, 0, 0, 0), -(33145, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000002, 0, 0, 0), -(33146, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000002, 0, 0, 0), -(33150, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000002, 0, 0, 0), -(33151, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000002, 0, 0, 0), -(33154, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000002, 0, 0, 0), -(33191, 0x00000000, 6, 0x0000040000808000, 0x00000000, 0x00000000, 0, 0, 0), -(33192, 0x00000000, 6, 0x0000040000808000, 0x00000000, 0x00000000, 0, 0, 0), -(33193, 0x00000000, 6, 0x0000040000808000, 0x00000000, 0x00000000, 0, 0, 0), -(33299, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00010000, 0, 0, 0), -(33510, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000000, 5, 0, 0), -(33648, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000002, 0, 0, 0), -(33719, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000800, 0, 0, 0), -(33736, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000000, 0, 0, 3), -(33746, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000000, 0, 0, 10), -(33757, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000000, 0, 0, 3), -(33759, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000000, 0, 0, 10), -(33776, 0x00000000, 0, 0x0000000000000000, 0x00008800, 0x00000000, 0, 0, 0), -(33881, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000002, 0, 0, 0), -(33882, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000002, 0, 0, 0), -(33883, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000002, 0, 0, 0), -(34080, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000008, 0, 0, 0), -(34138, 0x00000000, 11, 0x0000000000000080, 0x00000000, 0x00000000, 0, 0, 0), -(34139, 0x00000000, 10, 0x0000000040000000, 0x00000000, 0x00000000, 0, 0, 0), -(34258, 0x00000000, 10, 0x0000000800000400, 0x00000000, 0x00000000, 0, 0, 0), -(34262, 0x00000000, 10, 0x0000000000800000, 0x00000000, 0x00010000, 0, 0, 0), -(34320, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000002, 0, 0, 0), -(34355, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000000, 0, 0, 3), -(34497, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000002, 0, 0, 0), -(34498, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000002, 0, 0, 0), -(34499, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000002, 0, 0, 0), -(34500, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000002, 0, 0, 0), -(34502, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000002, 0, 0, 0), -(34503, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000002, 0, 0, 0), -(34584, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000000, 0, 0, 30), -(34586, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000000, 1.5, 0, 0), -(34598, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000000, 0, 0, 45), -(34749, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000008, 0, 0, 0), -(34753, 0x00000000, 6, 0x0000000400001800, 0x00000000, 0x00000000, 0, 0, 0), -(34774, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000000, 1.5, 0, 20), -(34783, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000800, 0, 0, 0), -(34827, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000000, 0, 0, 3), -(34859, 0x00000000, 6, 0x0000000400001800, 0x00000000, 0x00000000, 0, 0, 0), -(34860, 0x00000000, 6, 0x0000000400001800, 0x00000000, 0x00000000, 0, 0, 0), -(34914, 0x00000020, 6, 0x0000000000000000, 0x00000000, 0x00000000, 0, 0, 0), -(34916, 0x00000020, 6, 0x0000000000000000, 0x00000000, 0x00000000, 0, 0, 0), -(34917, 0x00000020, 6, 0x0000000000000000, 0x00000000, 0x00000000, 0, 0, 0), -(34935, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000000, 0, 0, 8), -(34938, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000000, 0, 0, 8), -(34939, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000000, 0, 0, 8), -(34950, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000002, 0, 0, 0), -(34954, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000002, 0, 0, 0), -(35077, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000000, 0, 0, 60), -(35080, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000000, 1, 0, 60), -(35083, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000000, 0, 0, 60), -(35086, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000000, 0, 0, 60), -(35100, 0x00000000, 9, 0x0000000000000001, 0x00000000, 0x00000000, 0, 0, 0), -(35102, 0x00000000, 9, 0x0000000000000001, 0x00000000, 0x00000000, 0, 0, 0), -(35103, 0x00000000, 9, 0x0000000000000001, 0x00000000, 0x00000000, 0, 0, 0), -(35121, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000002, 0, 0, 0), -(36096, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000800, 0, 0, 0), -(36111, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000000, 0, 0, 0), -(37165, 0x00000000, 8, 0x0000000000200400, 0x00000000, 0x00000000, 0, 0, 0), -(37168, 0x00000000, 8, 0x00000009003E0000, 0x00000000, 0x00000000, 0, 0, 0), -(37170, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000000, 1, 0, 0), -(37173, 0x00000000, 8, 0x000001062CBC0598, 0x00000000, 0x00000000, 0, 0, 30), -(37189, 0x00000000, 10, 0x00000000C0000000, 0x00000000, 0x00000002, 0, 0, 60), -(37193, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000040, 0, 0, 0), -(37195, 0x00000000, 10, 0x0000000000800000, 0x00000000, 0x00000000, 0, 0, 0), -(37197, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00010000, 0, 0, 45), -(37213, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000002, 0, 0, 0), -(37214, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00010000, 0, 0, 0), -(37227, 0x00000000, 11, 0x00000000000001C0, 0x00000000, 0x00000002, 0, 0, 60), -(37237, 0x00000000, 11, 0x0000000000000001, 0x00000000, 0x00000002, 0, 0, 0), -(37247, 0x00000008, 0, 0x0000000000000000, 0x00000000, 0x00010000, 0, 0, 45), -(37377, 0x00000020, 0, 0x0000000000000000, 0x00000000, 0x00010000, 0, 0, 0), -(37384, 0x00000000, 5, 0x0000000000000001, 0x00000000, 0x00000000, 0, 0, 0), -(37443, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000002, 0, 0, 0), -(37514, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000020, 0, 0, 0), -(37516, 0x00000000, 4, 0x0000000000000400, 0x00000000, 0x00000000, 0, 0, 0), -(37519, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000030, 0, 0, 0), -(37523, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000040, 0, 0, 0), -(37528, 0x00000000, 4, 0x0000000000000004, 0x00000000, 0x00000000, 0, 0, 0), -(37536, 0x00000000, 4, 0x0000000000010000, 0x00000000, 0x00000000, 0, 0, 0), -(37568, 0x00000000, 6, 0x0000000000000800, 0x00000000, 0x00000000, 0, 0, 0), -(37594, 0x00000000, 6, 0x0000000000001000, 0x00000000, 0x00000000, 0, 0, 0), -(37600, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00010000, 0, 0, 0), -(37601, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00010000, 0, 0, 0), -(37603, 0x00000000, 6, 0x0000000000008000, 0x00000000, 0x00000000, 0, 0, 0), -(37655, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000000, 0, 0, 60), -(37657, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000002, 0, 0, 3), -(38026, 0x00000001, 0, 0x0000000000000000, 0x00000000, 0x00000100, 0, 0, 0), -(38031, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000040, 0, 0, 0), -(38290, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000000, 1.6, 0, 0), -(38326, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000002, 0, 0, 0), -(38327, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000002, 0, 0, 0), -(38334, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000000, 0, 0, 60), -(38347, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000002, 0, 0, 0), -(38350, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000002, 0, 0, 0), -(38394, 0x00000000, 5, 0x0000000000000006, 0x00000000, 0x00000000, 0, 0, 0), -(38857, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00010000, 0, 0, 0), -(39027, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000000, 0, 0, 3), -(39372, 0x00000030, 0, 0x0000000000000000, 0x00000000, 0x00000000, 0, 0, 0), -(39437, 0x00000004, 5, 0x000000C000001364, 0x00000000, 0x00010000, 0, 0, 0), -(39442, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000001, 0, 0, 0), -(39443, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000002, 0, 0, 0), -(39530, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00010000, 0, 0, 0), -(39958, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000000, 0.7, 0, 40), -(40407, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000000, 6, 0, 0), -(40438, 0x00000000, 6, 0x0000000000008040, 0x00000000, 0x00000000, 0, 0, 0), -(40442, 0x00000000, 7, 0x0000044000000014, 0x00000000, 0x00000000, 0, 0, 0), -(40444, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000040, 0, 0, 0), -(40458, 0x00000000, 4, 0x0000060102000000, 0x00000000, 0x00000000, 0, 0, 0), -(40463, 0x00000000, 11, 0x0000001000000081, 0x00000000, 0x00000000, 0, 0, 0), -(40470, 0x00000000, 10, 0x00000000C0800000, 0x00000000, 0x00000000, 0, 0, 0), -(40475, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000000, 3, 0, 0), -(40478, 0x00000000, 5, 0x0000000000000002, 0x00000000, 0x00000000, 0, 0, 0), -(40482, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000002, 0, 0, 0), -(40485, 0x00000000, 9, 0x0000000100000000, 0x00000000, 0x00000000, 0, 0, 0), -(40899, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000000, 0, 0, 3), -(41034, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000400, 0, 0, 0), -(41260, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000000, 0, 0, 10), -(41262, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000000, 0, 0, 10), -(41381, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000100, 0, 0, 0), -(41393, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000020, 0, 0, 0), -(41434, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000000, 2, 0, 45), -(41469, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000000, 7, 0, 0), -(41635, 0x00000000, 0, 0x0000000000000000, 0x000A02A8, 0x00000000, 0, 0, 0), -(41989, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000000, 0.5, 0, 0), -(42083, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000002, 0, 0, 45), -(42135, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000000, 0, 0, 90), -(42136, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000000, 0, 0, 90), -(42368, 0x00000000, 10, 0x0000000040000000, 0x00000000, 0x00000000, 0, 0, 0), -(42370, 0x00000000, 11, 0x0000000000000040, 0x00000000, 0x00000000, 0, 0, 0), -(43019, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000400, 0, 0, 0), -(43020, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000400, 0, 0, 0), -(43338, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000002, 0, 0, 0), -(43443, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000800, 0, 0, 0), -(43726, 0x00000000, 10, 0x0000000040000000, 0x00000000, 0x00000000, 0, 0, 0), -(43728, 0x00000000, 11, 0x0000000000000080, 0x00000000, 0x00000000, 0, 0, 0), -(43737, 0x00000000, 7, 0x0000044000000000, 0x00000000, 0x00000000, 0, 0, 10), -(43739, 0x00000000, 7, 0x0000000000000002, 0x00000000, 0x00000000, 0, 0, 0), -(43741, 0x00000000, 10, 0x0000000080000000, 0x00000000, 0x00000000, 0, 0, 0), -(43745, 0x00000000, 10, 0x0000020000000000, 0x00000000, 0x00000000, 0, 0, 0), -(43748, 0x00000000, 11, 0x0000000090100000, 0x00000000, 0x00000000, 0, 0, 0), -(43750, 0x00000000, 11, 0x0000000000000001, 0x00000000, 0x00000000, 0, 0, 0), -(43819, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00010000, 0, 0, 0), -(44404, 0x00000000, 3, 0x0000900020000021, 0x00000000, 0x00000000, 0, 0, 0), -(44835, 0x00000000, 7, 0x0000008000000000, 0x00000010, 0x00000000, 0, 0, 0), -(45054, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000000, 0, 0, 15), -(45057, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000000, 0, 0, 30), -(45234, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000002, 0, 0, 0), -(45243, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000002, 0, 0, 0), -(45244, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000002, 0, 0, 0), -(45354, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000000, 0, 0, 45), -(45481, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000000, 0, 0, 45), -(45482, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000000, 0, 0, 45), -(45483, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000000, 0, 0, 45), -(45484, 0x00000000, 0, 0x0000000000000000, 0x00004000, 0x00000000, 0, 0, 45), -(46025, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000000, 0, 0, 0), -(46092, 0x00000000, 10, 0x0000000040000000, 0x00000000, 0x00000000, 0, 0, 0), -(46098, 0x00000000, 11, 0x0000000000000080, 0x00000000, 0x00000000, 0, 0, 0), -(46569, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000000, 0, 0, 45), -(46662, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000000, 0, 0, 20), -(46832, 0x00000000, 7, 0x0000000000000001, 0x00000000, 0x00010000, 0, 0, 0), -(46854, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000002, 0, 0, 0), -(46855, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000002, 0, 0, 0), -(46867, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000002, 0, 0, 0), -(46913, 0x00000000, 4, 0x0000040000000000, 0x00000000, 0x00000002, 0, 0, 0), -(46914, 0x00000000, 4, 0x0000040000000000, 0x00000000, 0x00000002, 0, 0, 0), -(46915, 0x00000000, 4, 0x0000040000000000, 0x00000000, 0x00000002, 0, 0, 0), -(46916, 0x00000000, 4, 0x0000040000000000, 0x00000000, 0x00000002, 0, 0, 0), -(46951, 0x00000000, 4, 0x0000004000000400, 0x00000000, 0x00000000, 0, 0, 0), -(46952, 0x00000000, 0, 0x0000004000000400, 0x00000000, 0x00000000, 0, 0, 0), -(46953, 0x00000000, 0, 0x0000004000000400, 0x00000000, 0x00000000, 0, 0, 0), -(47509, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000002, 0, 0, 0), -(47511, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000002, 0, 0, 0), -(47515, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000002, 0, 0, 0), -(48835, 0x00000000, 10, 0x0000000800000000, 0x00000000, 0x00000000, 0, 0, 0), -(48837, 0x00000000, 11, 0x0000000090100000, 0x00000000, 0x00000000, 0, 0, 0), -(48951, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000040, 0, 0, 0), -(48952, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000040, 0, 0, 0), -(48988, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000002, 0, 0, 0), -(49018, 0x00000000, 15, 0x0000000001400000, 0x00000000, 0x00000000, 0, 0, 0), -(49137, 0x00000000, 15, 0x0000400000000000, 0x00000000, 0x00000000, 0, 0, 0), -(49188, 0x00000000, 15, 0x0000000000000002, 0x00000000, 0x00000000, 0, 0, 0), -(49208, 0x00000000, 15, 0x0000000000440000, 0x00000000, 0x00000000, 0, 0, 0), -(49222, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000000, 0, 0, 3), -(49280, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000000, 0, 0, 3), -(49281, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000000, 0, 0, 3), -(49283, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000000, 0, 0, 3), -(49284, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000000, 0, 0, 3), -(49503, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000002, 0, 0, 0), -(49504, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000002, 0, 0, 0), -(49529, 0x00000000, 15, 0x0000000001400000, 0x00000000, 0x00000000, 0, 0, 0), -(49530, 0x00000000, 15, 0x0000000001400000, 0x00000000, 0x00000000, 0, 0, 0), -(49531, 0x00000000, 15, 0x0000000001400000, 0x00000000, 0x00000000, 0, 0, 0), -(49532, 0x00000000, 15, 0x0000000001400000, 0x00000000, 0x00000000, 0, 0, 0), -(49657, 0x00000000, 15, 0x0000400000000000, 0x00000000, 0x00000000, 0, 0, 0), -(50781, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000002, 0, 0, 0), -(51123, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000002, 0, 0, 0), -(51127, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000002, 0, 0, 0), -(51128, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000002, 0, 0, 0), -(51129, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000002, 0, 0, 0), -(51130, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000002, 0, 0, 0), -(51346, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000000, 0, 0, 10), -(51349, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000000, 0, 0, 10), -(51352, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000000, 0, 0, 10), -(51359, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000000, 0, 0, 10), -(51466, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000002, 0, 0, 0), -(51470, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000002, 0, 0, 0), -(51625, 0x00000000, 8, 0x000000001000A000, 0x00000000, 0x00000000, 0, 0, 0), -(51626, 0x00000000, 8, 0x000000001000A000, 0x00000000, 0x00000000, 0, 0, 0), -(51627, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000070, 0, 0, 0), -(51628, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000070, 0, 0, 0), -(51629, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000070, 0, 0, 0), -(51634, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000002, 0, 0, 0), -(51635, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000002, 0, 0, 0), -(51636, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000002, 0, 0, 0), -(51664, 0x00000000, 8, 0x0000000800020000, 0x00000000, 0x00000000, 0, 0, 0), -(51665, 0x00000000, 8, 0x0000000800020000, 0x00000000, 0x00000000, 0, 0, 0), -(51667, 0x00000000, 8, 0x0000000800020000, 0x00000000, 0x00000000, 0, 0, 0), -(51668, 0x00000000, 8, 0x0000000800020000, 0x00000000, 0x00000000, 0, 0, 0), -(51669, 0x00000000, 8, 0x0000000800020000, 0x00000000, 0x00000000, 0, 0, 0), -(51672, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000010, 0, 0, 1), -(51674, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000010, 0, 0, 1), -(51679, 0x00000000, 8, 0x0000000100000001, 0x00000000, 0x00000000, 0, 0, 0), -(51692, 0x00000000, 8, 0x0000000000000200, 0x00000000, 0x00000002, 0, 0, 0), -(51696, 0x00000000, 8, 0x0000000000000200, 0x00000000, 0x00000002, 0, 0, 0), -(51698, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000002, 0, 0, 1), -(51700, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000002, 0, 0, 1), -(51701, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000002, 0, 0, 1), -(52420, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000000, 0, 0, 30), -(52423, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000020, 0, 0, 0), -(52898, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000002, 0, 0, 0), -(53137, 0x00000000, 15, 0x0000000001400000, 0x00000000, 0x00000000, 0, 0, 0), -(53138, 0x00000000, 15, 0x0000000001400000, 0x00000000, 0x00000000, 0, 0, 0), -(53215, 0x00000000, 9, 0x0000000000000001, 0x00000000, 0x00000000, 0, 0, 0), -(53216, 0x00000000, 9, 0x0000000000000001, 0x00000000, 0x00000000, 0, 0, 0), -(53217, 0x00000000, 9, 0x0000000000000001, 0x00000000, 0x00000000, 0, 0, 0), -(53221, 0x00000000, 9, 0x0000000100000000, 0x00000000, 0x00000000, 0, 0, 0), -(53222, 0x00000000, 9, 0x0000000100000000, 0x00000000, 0x00000000, 0, 0, 0), -(53224, 0x00000000, 9, 0x0000000100000000, 0x00000000, 0x00000000, 0, 0, 0), -(53256, 0x00000000, 9, 0x0080000100000800, 0x00000000, 0x00000002, 0, 0, 0), -(53259, 0x00000000, 9, 0x0080000100000800, 0x00000000, 0x00000002, 0, 0, 0), -(53260, 0x00000000, 9, 0x0080000100000800, 0x00000000, 0x00000002, 0, 0, 0), -(53290, 0x00000000, 9, 0x8000000100000800, 0x00000000, 0x00000002, 0, 0, 0), -(53291, 0x00000000, 9, 0x8000000100000800, 0x00000000, 0x00000002, 0, 0, 0), -(53292, 0x00000000, 9, 0x8000000100000800, 0x00000000, 0x00000002, 0, 0, 0), -(53293, 0x00000000, 9, 0x8000000100000800, 0x00000000, 0x00000002, 0, 0, 0), -(53294, 0x00000000, 9, 0x8000000100000800, 0x00000000, 0x00000002, 0, 0, 0), -(53380, 0x00000000, 10, 0x0002000000800000, 0x00000000, 0x00000002, 0, 0, 0), -(53381, 0x00000000, 10, 0x0002000000800000, 0x00000000, 0x00000002, 0, 0, 0), -(53382, 0x00000000, 10, 0x0002000000800000, 0x00000000, 0x00000002, 0, 0, 0), -(53383, 0x00000000, 10, 0x0002000000800000, 0x00000000, 0x00000002, 0, 0, 0), -(53384, 0x00000000, 10, 0x0002000000800000, 0x00000000, 0x00000002, 0, 0, 0), -(53486, 0x00000000, 10, 0x0002800000800000, 0x00000000, 0x00000002, 0, 0, 0), -(53488, 0x00000000, 10, 0x0002800000800000, 0x00000000, 0x00000002, 0, 0, 0), -(53569, 0x00000000, 10, 0x0000000000200000, 0x00000000, 0x00000002, 0, 0, 0), -(53576, 0x00000000, 10, 0x0000000000200000, 0x00000000, 0x00000002, 0, 0, 0), -(54149, 0x00000000, 10, 0x0000000000200000, 0x00000000, 0x00000002, 0, 0, 0), -(54486, 0x00000000, 0, 0x0000900020000021, 0x00000000, 0x00000000, 0, 0, 0), -(54488, 0x00000000, 0, 0x0000900020000021, 0x00000000, 0x00000000, 0, 0, 0), -(54489, 0x00000000, 0, 0x0000900020000021, 0x00000000, 0x00000000, 0, 0, 0), -(54490, 0x00000000, 0, 0x0000900020000021, 0x00000000, 0x00000000, 0, 0, 0), -(54738, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000002, 0, 0, 0), -(54841, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000002, 0, 0, 0), -(55620, 0x00000000, 15, 0x0800000000000001, 0x00000000, 0x00000000, 0, 0, 0), -(55623, 0x00000000, 15, 0x0800000000000001, 0x00000000, 0x00000000, 0, 0, 0), -(55666, 0x00000000, 15, 0x0000000000000001, 0x00000000, 0x00000000, 0, 0, 0), -(55667, 0x00000000, 15, 0x0000000000000001, 0x00000000, 0x00000000, 0, 0, 0), -(55668, 0x00000000, 15, 0x0000000000000001, 0x00000000, 0x00000000, 0, 0, 0), -(55669, 0x00000000, 15, 0x0000000000000001, 0x00000000, 0x00000000, 0, 0, 0), -(55670, 0x00000000, 15, 0x0000000000000001, 0x00000000, 0x00000000, 0, 0, 0), -(55689, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000002, 0, 0, 0), -(56342, 0x00000000, 9, 0x0000000000004000, 0x00000000, 0x00000000, 0, 0, 0), -(56343, 0x00000000, 9, 0x0000000000004000, 0x00000000, 0x00000000, 0, 0, 0), -(56344, 0x00000000, 9, 0x0000000000004000, 0x00000000, 0x00000000, 0, 0, 0), -(56451, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000000, 0, 0, 3), -(56611, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000002, 0, 0, 0), -(56612, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000002, 0, 0, 0), -(56613, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000002, 0, 0, 0), -(56614, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000002, 0, 0, 0), -(56636, 0x00000000, 4, 0x0000000000000020, 0x00000000, 0x00000000, 0, 0, 0), -(56637, 0x00000000, 4, 0x0000000000000020, 0x00000000, 0x00000000, 0, 0, 0), -(56638, 0x00000000, 4, 0x0000000000000020, 0x00000000, 0x00000000, 0, 0, 0), -(56821, 0x00000000, 8, 0x0000000000000002, 0x00000000, 0x00000002, 0, 0, 0), -(56822, 0x00000000, 15, 0x0000000000000002, 0x00000000, 0x00000000, 0, 0, 0), -(56834, 0x00000000, 15, 0x0000000000440000, 0x00000000, 0x00000000, 0, 0, 0), -(56835, 0x00000000, 15, 0x0000000000440000, 0x00000000, 0x00000000, 0, 0, 0), -(57878, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000010, 0, 0, 0), -(57880, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000010, 0, 0, 0), -(57881, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000010, 0, 0, 0), -(58357, 0x00000000, 4, 0x0000000000000040, 0x00000000, 0x00000002, 0, 0, 0), -(58364, 0x00000000, 4, 0x0000000000000400, 0x00000000, 0x00000000, 0, 0, 0), -(58372, 0x00000000, 4, 0x0000000000000002, 0x00000000, 0x00000000, 0, 0, 0), -(58386, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000020, 0, 0, 0), -(58616, 0x00000000, 15, 0x0000000000040000, 0x00000000, 0x00000000, 0, 0, 0), -(58620, 0x00000000, 15, 0x0000400000000000, 0x00000000, 0x00000000, 0, 0, 0), -(58626, 0x00000000, 15, 0x0000000002000000, 0x00000000, 0x00000000, 0, 0, 0), -(58631, 0x00000000, 15, 0x0000000000000002, 0x00000000, 0x00000000, 0, 0, 0), -(58642, 0x00000000, 15, 0x0800000000000000, 0x00000000, 0x00000000, 0, 0, 0), -(58644, 0x00000000, 15, 0x0000000400000000, 0x00000000, 0x00000000, 0, 0, 0), -(58647, 0x00000000, 15, 0x0000000400000000, 0x00000000, 0x00000000, 0, 0, 0), -(58676, 0x00000000, 15, 0x0000000800000000, 0x00000000, 0x00000000, 0, 0, 0), -(58677, 0x00000000, 15, 0x0000000000002000, 0x00000000, 0x00000000, 0, 0, 0), -(58872, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000040, 0, 0, 0), -(58874, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000040, 0, 0, 0), -(58901, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000002, 0, 0, 0), -(59057, 0x00000000, 15, 0x0000000000000002, 0x00000000, 0x00000000, 0, 0, 0), -(59176, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000002, 0, 0, 0), -(59327, 0x00000000, 15, 0x0000000008000000, 0x00000000, 0x00000000, 0, 0, 0), -(59725, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000800, 0, 0, 0), -(60537, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000002, 0, 0, 0), -(60572, 0x00000000, 11, 0x0000000090100000, 0x00000000, 0x00000000, 0, 0, 0), -(60617, 0x00000000, 0, 0x0000000000000000, 0x00000000, 0x00000020, 0, 0, 0), -(60826, 0x00000000, 15, 0x0000000001400000, 0x00000000, 0x00000000, 0, 0, 0), -(61324, 0x00000000, 10, 0x0002000000000000, 0x00000000, 0x00000000, 0, 0, 0); diff --git a/sql/updates/6960_01_mangos_command.sql b/sql/updates/6960_01_mangos_command.sql deleted file mode 100644 index a67862f9af0..00000000000 --- a/sql/updates/6960_01_mangos_command.sql +++ /dev/null @@ -1,5 +0,0 @@ -ALTER TABLE db_version CHANGE COLUMN required_6958_01_mangos_spell_proc_event required_6960_01_mangos_command bit; - -DELETE FROM `command` WHERE `name` = 'modify runicpower'; -INSERT INTO `command` VALUES -('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.'); diff --git a/sql/updates/6960_02_mangos_string.sql b/sql/updates/6960_02_mangos_string.sql deleted file mode 100644 index c99fe5db0d6..00000000000 --- a/sql/updates/6960_02_mangos_string.sql +++ /dev/null @@ -1,6 +0,0 @@ -ALTER TABLE db_version CHANGE COLUMN required_6960_01_mangos_command required_6960_02_mangos_string bit; - -DELETE FROM `mangos_string` WHERE `entry` IN (173,174); -INSERT INTO `mangos_string` VALUES -(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); diff --git a/sql/updates/6961_01_mangos_command.sql b/sql/updates/6961_01_mangos_command.sql deleted file mode 100644 index 60cb686f68e..00000000000 --- a/sql/updates/6961_01_mangos_command.sql +++ /dev/null @@ -1,3 +0,0 @@ -ALTER TABLE db_version CHANGE COLUMN required_6960_02_mangos_string required_6961_01_mangos_command bit; - -DELETE FROM `command` WHERE name = 'reload'; diff --git a/sql/updates/6970_01_mangos_playercreateinfo.sql b/sql/updates/6970_01_mangos_playercreateinfo.sql deleted file mode 100644 index a6d7747383d..00000000000 --- a/sql/updates/6970_01_mangos_playercreateinfo.sql +++ /dev/null @@ -1,7 +0,0 @@ -ALTER TABLE db_version CHANGE COLUMN required_6961_01_mangos_command required_6970_01_mangos_playercreateinfo bit; - -DELETE FROM `playercreateinfo` WHERE `race`=7 AND `class` IN (4,8,9); -INSERT INTO `playercreateinfo` VALUES -(7,4,0,1,-6240,331,383), -(7,8,0,1,-6240,331,383), -(7,9,0,1,-6240,331,383); diff --git a/sql/updates/6976_01_realmd_realmd_db_version.sql b/sql/updates/6976_01_realmd_realmd_db_version.sql deleted file mode 100644 index 0ebbb2c82ab..00000000000 --- a/sql/updates/6976_01_realmd_realmd_db_version.sql +++ /dev/null @@ -1 +0,0 @@ -ALTER TABLE realmd_db_version CHANGE COLUMN required_2008_11_07_04_realmd_account required_6976_01_realmd_realmd_db_version bit;
\ No newline at end of file diff --git a/sql/updates/6976_02_characters_character_db_version.sql b/sql/updates/6976_02_characters_character_db_version.sql deleted file mode 100644 index 5fc19205843..00000000000 --- a/sql/updates/6976_02_characters_character_db_version.sql +++ /dev/null @@ -1 +0,0 @@ -ALTER TABLE character_db_version CHANGE COLUMN required_2008_12_22_19_characters_item_instance required_6976_02_characters_character_db_version bit;
\ No newline at end of file diff --git a/sql/updates/7002_01_mangos_spell_chain.sql.obs b/sql/updates/7002_01_mangos_spell_chain.sql.obs deleted file mode 100644 index 1ec5c5c0333..00000000000 --- a/sql/updates/7002_01_mangos_spell_chain.sql.obs +++ /dev/null @@ -1,9 +0,0 @@ -ALTER TABLE db_version CHANGE COLUMN required_6970_01_mangos_playercreateinfo required_7002_01_mangos_spell_chain bit; - -DELETE FROM `spell_chain` WHERE `spell_id` IN (51490,59156,59158,59159); - -INSERT INTO `spell_chain` VALUES -(51490,0,51490,1,0), -(59156,51490,51490,2,0), -(59158,59156,51490,3,0), -(59159,59158,51490,4,0); diff --git a/sql/updates/7015_01_mangos_item_template.sql b/sql/updates/7015_01_mangos_item_template.sql deleted file mode 100644 index bdf9a92e796..00000000000 --- a/sql/updates/7015_01_mangos_item_template.sql +++ /dev/null @@ -1,14 +0,0 @@ -ALTER TABLE db_version CHANGE COLUMN required_7002_01_mangos_spell_chain required_7015_01_mangos_item_template bit; - -UPDATE item_template - SET maxcount = 0 WHERE maxcount > 32000; - -UPDATE item_template - SET stackable = 0 WHERE stackable > 32000; - -ALTER TABLE item_template - CHANGE COLUMN maxcount maxcount smallint(5) NOT NULL default '-1', - CHANGE COLUMN stackable stackable smallint(5) NOT NULL default '1'; - -UPDATE item_template - SET stackable = -1 WHERE stackable = 0; diff --git a/sql/updates/7026_01_mangos_battleground_template.sql b/sql/updates/7026_01_mangos_battleground_template.sql deleted file mode 100644 index 9da034c3ec5..00000000000 --- a/sql/updates/7026_01_mangos_battleground_template.sql +++ /dev/null @@ -1,7 +0,0 @@ -ALTER TABLE db_version CHANGE COLUMN required_7024_01_mangos_spell_chain required_7026_01_mangos_battleground_template bit; - -DELETE FROM battleground_template WHERE id IN (9,10,11); -INSERT INTO battleground_template VALUES -(9,0,0,0,0,1367,0,1368,0), -(10,5,5,10,80,1362,0,1363,0), -(11,5,5,10,80,1364,0,1365,0); diff --git a/sql/updates/7031_01_mangos_spell_proc_event.sql b/sql/updates/7031_01_mangos_spell_proc_event.sql deleted file mode 100644 index d10f099fbee..00000000000 --- a/sql/updates/7031_01_mangos_spell_proc_event.sql +++ /dev/null @@ -1,25 +0,0 @@ -ALTER TABLE db_version CHANGE COLUMN required_7026_01_mangos_battleground_template required_7031_01_mangos_spell_proc_event bit; - --- (44445) Hot Streak (Rank 1) -DELETE FROM `spell_proc_event` WHERE `entry` IN (44445); -INSERT INTO `spell_proc_event` VALUES (44445, 0x00, 3, 0x0000100000000013, 0x00000000, 0x00000000, 0.000000, 0.000000, 0); - --- (44446) Hot Streak (Rank 2) -DELETE FROM `spell_proc_event` WHERE `entry` IN (44446); -INSERT INTO `spell_proc_event` VALUES (44446, 0x00, 3, 0x0000100000000013, 0x00000000, 0x00000000, 0.000000, 0.000000, 0); - --- (44448) Hot Streak (Rank 3) -DELETE FROM `spell_proc_event` WHERE `entry` IN (44448); -INSERT INTO `spell_proc_event` VALUES (44448, 0x00, 3, 0x0000100000000013, 0x00000000, 0x00000000, 0.000000, 0.000000, 0); - --- (54939) Glyph of Divinity () -DELETE FROM `spell_proc_event` WHERE `entry` IN (54939); -INSERT INTO `spell_proc_event` VALUES (54939, 0x00, 10, 0x0000000000008000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0); - --- (54936) Glyph of Flash of Light () -DELETE FROM `spell_proc_event` WHERE `entry` IN (54936); -INSERT INTO `spell_proc_event` VALUES (54936, 0x00, 10, 0x0000000040000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0); - --- (54937) Glyph of Holy Light () -DELETE FROM `spell_proc_event` WHERE `entry` IN (54937); -INSERT INTO `spell_proc_event` VALUES (54937, 0x00, 10, 0x0000000080000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0);
\ No newline at end of file diff --git a/sql/updates/7033_01_mangos_spell_proc_event.sql b/sql/updates/7033_01_mangos_spell_proc_event.sql deleted file mode 100644 index b95cbf93f47..00000000000 --- a/sql/updates/7033_01_mangos_spell_proc_event.sql +++ /dev/null @@ -1,78 +0,0 @@ -ALTER TABLE db_version CHANGE COLUMN required_7031_01_mangos_spell_proc_event required_7033_01_mangos_spell_proc_event bit; - --- (48516) Eclipse (Rank 1) -DELETE FROM `spell_proc_event` WHERE `entry` IN (48516); -INSERT INTO `spell_proc_event` VALUES (48516, 0x00, 7, 0x0000000000000005, 0x00000000, 0x00000002, 0.000000, 0.000000, 30); - --- (48521) Eclipse (Rank 2) -DELETE FROM `spell_proc_event` WHERE `entry` IN (48521); -INSERT INTO `spell_proc_event` VALUES (48521, 0x00, 7, 0x0000000000000005, 0x00000000, 0x00000002, 0.000000, 0.000000, 30); - --- (48525) Eclipse (Rank 3) -DELETE FROM `spell_proc_event` WHERE `entry` IN (48525); -INSERT INTO `spell_proc_event` VALUES (48525, 0x00, 7, 0x0000000000000005, 0x00000000, 0x00000002, 0.000000, 0.000000, 30); - --- (48496) Living Seed (Rank 1) -DELETE FROM `spell_proc_event` WHERE `entry` IN (48496); -INSERT INTO `spell_proc_event` VALUES (48496, 0x00, 7, 0x0200000200000060, 0x00000000, 0x00000002, 0.000000, 0.000000, 0); - --- (48499) Living Seed (Rank 2) -DELETE FROM `spell_proc_event` WHERE `entry` IN (48499); -INSERT INTO `spell_proc_event` VALUES (48499, 0x00, 7, 0x0200000200000060, 0x00000000, 0x00000002, 0.000000, 0.000000, 0); - --- (48500) Living Seed (Rank 3) -DELETE FROM `spell_proc_event` WHERE `entry` IN (48500); -INSERT INTO `spell_proc_event` VALUES (48500, 0x00, 7, 0x0200000200000060, 0x00000000, 0x00000002, 0.000000, 0.000000, 0); - --- (53228) Rapid Recuperation (Rank 1) -DELETE FROM `spell_proc_event` WHERE `entry` IN (53228); -INSERT INTO `spell_proc_event` VALUES (53228, 0x00, 9, 0x0000000000000020, 0x00000000, 0x00000000, 0.000000, 0.000000, 0); - --- (53232) Rapid Recuperation (Rank 2) -DELETE FROM `spell_proc_event` WHERE `entry` IN (53232); -INSERT INTO `spell_proc_event` VALUES (53232, 0x00, 9, 0x0000000000000020, 0x00000000, 0x00000000, 0.000000, 0.000000, 0); - --- (55440) Glyph of Healing Wave () -DELETE FROM `spell_proc_event` WHERE `entry` IN (55440); -INSERT INTO `spell_proc_event` VALUES (55440, 0x00, 11, 0x0000000000000040, 0x00000000, 0x00000000, 0.000000, 0.000000, 0); - --- (52795) Borrowed Time (Rank 1) -DELETE FROM `spell_proc_event` WHERE `entry` IN (52795); -INSERT INTO `spell_proc_event` VALUES (52795, 0x00, 6, 0x0000000000000001, 0x00000000, 0x00000000, 0.000000, 0.000000, 0); - --- (52797) Borrowed Time (Rank 2) -DELETE FROM `spell_proc_event` WHERE `entry` IN (52797); -INSERT INTO `spell_proc_event` VALUES (52797, 0x00, 6, 0x0000000000000001, 0x00000000, 0x00000000, 0.000000, 0.000000, 0); - --- (52798) Borrowed Time (Rank 3) -DELETE FROM `spell_proc_event` WHERE `entry` IN (52798); -INSERT INTO `spell_proc_event` VALUES (52798, 0x00, 6, 0x0000000000000001, 0x00000000, 0x00000000, 0.000000, 0.000000, 0); - --- (52799) Borrowed Time (Rank 4) -DELETE FROM `spell_proc_event` WHERE `entry` IN (52799); -INSERT INTO `spell_proc_event` VALUES (52799, 0x00, 6, 0x0000000000000001, 0x00000000, 0x00000000, 0.000000, 0.000000, 0); - --- (52800) Borrowed Time (Rank 5) -DELETE FROM `spell_proc_event` WHERE `entry` IN (52800); -INSERT INTO `spell_proc_event` VALUES (52800, 0x00, 6, 0x0000000000000001, 0x00000000, 0x00000000, 0.000000, 0.000000, 0); - --- (55677) Glyph of Dispel Magic () -DELETE FROM `spell_proc_event` WHERE `entry` IN (55677); -INSERT INTO `spell_proc_event` VALUES (55677, 0x00, 6, 0x0000000100000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0); - --- (55680) Glyph of Prayer of Healing () -DELETE FROM `spell_proc_event` WHERE `entry` IN (55680); -INSERT INTO `spell_proc_event` VALUES (55680, 0x00, 6, 0x0000000000000200, 0x00000000, 0x00000000, 0.000000, 0.000000, 0); - --- (47572) Psychic Horror (Rank 2) -DELETE FROM `spell_proc_event` WHERE `entry` IN (47572); -INSERT INTO `spell_proc_event` VALUES (47572, 0x00, 6, 0x0000000000010000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0); - --- (48159) Vampiric Touch (Rank 4) -DELETE FROM `spell_proc_event` WHERE `entry` IN (48159); -INSERT INTO `spell_proc_event` VALUES (48159, 0x20, 6, 0x0000000000000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0); - --- (48160) Vampiric Touch (Rank 5) -DELETE FROM `spell_proc_event` WHERE `entry` IN (48160); -INSERT INTO `spell_proc_event` VALUES (48160, 0x20, 6, 0x0000000000000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0); - diff --git a/sql/updates/7034_01_mangos_spell_proc_event.sql b/sql/updates/7034_01_mangos_spell_proc_event.sql deleted file mode 100644 index c7bc44bc4b5..00000000000 --- a/sql/updates/7034_01_mangos_spell_proc_event.sql +++ /dev/null @@ -1,798 +0,0 @@ -ALTER TABLE db_version CHANGE COLUMN required_7033_01_mangos_spell_proc_event required_7034_01_mangos_spell_proc_event bit; - -DROP TABLE IF EXISTS `spell_proc_event`; -CREATE TABLE `spell_proc_event` ( - `entry` smallint(5) 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; - -INSERT INTO `spell_proc_event` VALUES -( 324, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 3), -( 325, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 3), -( 905, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 3), -( 945, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 3), -( 974, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 3), -( 1463, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000400, 0.000000, 0.000000, 0), -( 3232, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0), -( 5952, 0x00000000, 8, 0x00000001, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -( 6346, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000100, 0.000000, 0.000000, 0), -( 7383, 0x00000001, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000100, 0.000000, 0.000000, 0), -( 7434, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0), -( 8134, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 3), -( 8178, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000, 0), -( 8494, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000400, 0.000000, 0.000000, 0), -( 8495, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000400, 0.000000, 0.000000, 0), -( 9452, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 3.000000, 0.000000, 0), -( 9782, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0.000000, 0.000000, 0), -( 9784, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0.000000, 0.000000, 0), -( 9799, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0), -(10191, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000400, 0.000000, 0.000000, 0), -(10192, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000400, 0.000000, 0.000000, 0), -(10193, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000400, 0.000000, 0.000000, 0), -(10431, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 3), -(10432, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 3), -(11095, 0x00000000, 3, 0x00000010, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(11119, 0x00000004, 3, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0), -(11120, 0x00000004, 3, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0), -(11129, 0x00000000, 3, 0x00C00017, 0x00000040, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(11180, 0x00000010, 3, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(11185, 0x00000000, 3, 0x00000080, 0x00000000, 0x00000000, 0x00050000, 0x00000000, 0.000000, 0.000000, 0), -(11255, 0x00000000, 3, 0x00004000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(12169, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0.000000, 0.000000, 0), -(12281, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 6), -(12289, 0x00000000, 4, 0x00000002, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(12298, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0.000000, 0.000000, 0), -(12311, 0x00000000, 4, 0x00000800, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(12317, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0), -(12319, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0), -(12322, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 2.000000, 0.000000, 0), -(12487, 0x00000000, 3, 0x00000080, 0x00000000, 0x00000000, 0x00050000, 0x00000000, 0.000000, 0.000000, 0), -(12488, 0x00000000, 3, 0x00000080, 0x00000000, 0x00000000, 0x00050000, 0x00000000, 0.000000, 0.000000, 0), -(12598, 0x00000000, 3, 0x00004000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(12668, 0x00000000, 4, 0x00000002, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(12724, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0.000000, 0.000000, 0), -(12725, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0.000000, 0.000000, 0), -(12726, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0.000000, 0.000000, 0), -(12727, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0.000000, 0.000000, 0), -(12797, 0x00000000, 4, 0x00000400, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(12799, 0x00000000, 4, 0x00000400, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(12812, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 6), -(12813, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 6), -(12814, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 6), -(12815, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 6), -(12834, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0), -(12846, 0x00000004, 3, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0), -(12847, 0x00000004, 3, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0), -(12848, 0x00000004, 3, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0), -(12849, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0), -(12867, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0), -(12872, 0x00000000, 3, 0x00000010, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(12873, 0x00000000, 3, 0x00000010, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(12958, 0x00000000, 4, 0x00000800, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(12966, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000, 0), -(12967, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000, 0), -(12968, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000, 0), -(12969, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000, 0), -(12970, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000, 0), -(12971, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0), -(12972, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0), -(12973, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0), -(12974, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0), -(12999, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 4.000000, 0.000000, 0), -(13000, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 6.000000, 0.000000, 0), -(13001, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 8.000000, 0.000000, 0), -(13002, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 10.000000, 0.000000, 0), -(13045, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0), -(13046, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0), -(13047, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0), -(13048, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0), -(13165, 0x00000000, 9, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(13754, 0x00000000, 8, 0x00000010, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(13867, 0x00000000, 8, 0x00000010, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(13983, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000018, 0.000000, 0.000000, 0), -(14070, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000018, 0.000000, 0.000000, 0), -(14071, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000018, 0.000000, 0.000000, 0), -(14156, 0x00000000, 8, 0x003E0000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(14160, 0x00000000, 8, 0x003E0000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(14161, 0x00000000, 8, 0x003E0000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(14186, 0x00000000, 8, 0x40800508, 0x00000002, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0), -(14190, 0x00000000, 8, 0x40800508, 0x00000002, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0), -(14193, 0x00000000, 8, 0x40800508, 0x00000002, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0), -(14194, 0x00000000, 8, 0x40800508, 0x00000002, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0), -(14195, 0x00000000, 8, 0x40800508, 0x00000002, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0), -(14318, 0x00000000, 9, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(14319, 0x00000000, 9, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(14320, 0x00000000, 9, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(14321, 0x00000000, 9, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(14322, 0x00000000, 9, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(14531, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0), -(14774, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0), -(14892, 0x00000000, 6, 0x10001E00, 0x00000004, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0), -(15088, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0), -(15128, 0x00000004, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(15268, 0x00000020, 6, 0x06080000, 0x00000002, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(15277, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 6.000000, 0.000000, 0), -(15286, 0x00000020, 6, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(15323, 0x00000020, 6, 0x06080000, 0x00000002, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(15324, 0x00000020, 6, 0x06080000, 0x00000002, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(15325, 0x00000020, 6, 0x06080000, 0x00000002, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(15326, 0x00000020, 6, 0x06080000, 0x00000002, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(15337, 0x00000000, 6, 0x00002000, 0x00000002, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0), -(15338, 0x00000000, 6, 0x00002000, 0x00000002, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0), -(15346, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 6.000000, 0.000000, 0), -(15362, 0x00000000, 6, 0x10001E00, 0x00000004, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0), -(15363, 0x00000000, 6, 0x10001E00, 0x00000004, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0), -(15600, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 1.000000, 0.000000, 0), -(16164, 0x00000000, 11, 0x90100003, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0), -(16176, 0x00000000, 11, 0x000001C0, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0), -(16180, 0x00000000, 11, 0x000000C0, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0), -(16196, 0x00000000, 11, 0x000000C0, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0), -(16198, 0x00000000, 11, 0x000000C0, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0), -(16235, 0x00000000, 11, 0x000001C0, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0), -(16240, 0x00000000, 11, 0x000001C0, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0), -(16256, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0), -(16257, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000, 0), -(16277, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000, 0), -(16278, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000, 0), -(16279, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000, 0), -(16280, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000, 0), -(16281, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0), -(16282, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0), -(16283, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0), -(16284, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0), -(16487, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0), -(16489, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0), -(16492, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0), -(16550, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0), -(16620, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 30), -(16624, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0.000000, 0.000000, 0), -(16850, 0x00000000, 7, 0x00000004, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(16864, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 2.000000, 0.000000, 0), -(16880, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0), -(16923, 0x00000000, 7, 0x00000004, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(16924, 0x00000000, 7, 0x00000004, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(16952, 0x00000000, 7, 0x00039000, 0x00000400, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0), -(16954, 0x00000000, 7, 0x00039000, 0x00000400, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0), -(16958, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0), -(16961, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0), -(17106, 0x00000000, 7, 0x00080000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(17107, 0x00000000, 7, 0x00080000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(17108, 0x00000000, 7, 0x00080000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(17364, 0x00000008, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(17495, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0.000000, 0.000000, 0), -(17793, 0x00000000, 5, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0), -(17794, 0x00000020, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000001, 0.000000, 0.000000, 0), -(17796, 0x00000000, 5, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0), -(17797, 0x00000020, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(17798, 0x00000020, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(17799, 0x00000020, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(17800, 0x00000020, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(17801, 0x00000000, 5, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0), -(17802, 0x00000000, 5, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0), -(17803, 0x00000000, 5, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0), -(18073, 0x00000000, 5, 0x00000060, 0x00000080, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(18094, 0x00000000, 5, 0x0000000A, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(18095, 0x00000000, 5, 0x0000000A, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(18096, 0x00000000, 5, 0x00000060, 0x00000080, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(18119, 0x00000000, 5, 0x000003E5, 0x000010C0, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(18120, 0x00000000, 5, 0x000003E5, 0x000010C0, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(18820, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000, 0), -(19184, 0x00000000, 9, 0x00000014, 0x00002000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(19228, 0x00000000, 0, 0x00000040, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(19232, 0x00000000, 9, 0x00000040, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(19233, 0x00000000, 9, 0x00000040, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(19387, 0x00000000, 9, 0x00000014, 0x00002000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(19388, 0x00000000, 9, 0x00000014, 0x00002000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(19572, 0x00000000, 9, 0x00800000, 0x00000000, 0x00000000, 0x00004000, 0x00000000, 0.000000, 0.000000, 0), -(19573, 0x00000000, 9, 0x00800000, 0x00000000, 0x00000000, 0x00004000, 0x00000000, 0.000000, 0.000000, 0), -(20049, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0), -(20056, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0), -(20057, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0), -(20128, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0.000000, 0.000000, 0), -(20131, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0.000000, 0.000000, 0), -(20132, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0.000000, 0.000000, 0), -(20164, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 5.000000, 0.000000, 0), -(20165, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 20.000000, 0.000000, 0), -(20166, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 20.000000, 0.000000, 0), -(20182, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0.000000, 0.000000, 0), -(20210, 0x00000000, 10, 0xC0200000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0), -(20212, 0x00000000, 10, 0xC0200000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0), -(20213, 0x00000000, 10, 0xC0200000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0), -(20214, 0x00000000, 10, 0xC0200000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0), -(20215, 0x00000000, 10, 0xC0200000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0), -(20234, 0x00000000, 10, 0x00008000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(20235, 0x00000000, 10, 0x00008000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(20375, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 7.000000, 0.000000, 0), -(20500, 0x00000000, 4, 0x10000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(20501, 0x00000000, 4, 0x10000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(20705, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0), -(20911, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000070, 0.000000, 0.000000, 0), -(20925, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0.000000, 0.000000, 0), -(20927, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0.000000, 0.000000, 0), -(20928, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0.000000, 0.000000, 0), -(21185, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 10), -(21882, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0), -(21890, 0x00000000, 4, 0x2A764EEF, 0x0000036C, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(22007, 0x00000000, 3, 0x00200021, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000, 0), -(22618, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0.000000, 0.000000, 0), -(22648, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0), -(23547, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000020, 0.000000, 0.000000, 0), -(23548, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0.000000, 0.000000, 0), -(23551, 0x00000000, 11, 0x000000C0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(23552, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 3), -(23572, 0x00000000, 11, 0x000000C0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(23578, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 2.000000, 0.000000, 0), -(23581, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 2.000000, 0.000000, 0), -(23602, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0.000000, 0.000000, 0), -(23686, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 2.000000, 0.000000, 0), -(23688, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000, 0), -(23689, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 4.000000, 0.000000, 0), -(23695, 0x00000000, 4, 0x00000002, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(23721, 0x00000000, 9, 0x00000800, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(23920, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000800, 0.000000, 0.000000, 0), -(24353, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0), -(24389, 0x00000000, 3, 0x00C00017, 0x00000040, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(24398, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 3), -(24658, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00014110, 0x00000000, 0.000000, 0.000000, 0), -(24905, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 15.000000, 0.000000, 0), -(24932, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 6), -(25050, 0x00000004, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(25296, 0x00000000, 9, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(25469, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 3), -(25472, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 3), -(25669, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 1.000000, 0.000000, 0), -(25899, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000070, 0.000000, 0.000000, 0), -(25988, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0), -(26016, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 2.000000, 0.000000, 0), -(26107, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000064, 0.000000, 0.000000, 0), -(26119, 0x00000000, 10, 0x90100003, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000, 0), -(26128, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000008, 0.000000, 0.000000, 0), -(26135, 0x00000000, 10, 0x00800000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000, 0), -(26480, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 3.000000, 0.000000, 0), -(26605, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0), -(27044, 0x00000000, 9, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(27131, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000400, 0.000000, 0.000000, 0), -(27179, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0.000000, 0.000000, 0), -(27419, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 3.000000, 0.000000, 0), -(27498, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 3.000000, 0.000000, 0), -(27521, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000, 0), -(27656, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 3.000000, 0.000000, 0), -(27774, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000, 0), -(27787, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 3.000000, 0.000000, 0), -(27811, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0), -(27815, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0), -(27816, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0), -(28592, 0x00000010, 3, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(28593, 0x00000010, 3, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(28716, 0x00000000, 7, 0x00000010, 0x00000000, 0x00000000, 0x00048000, 0x00000000, 0.000000, 0.000000, 0), -(28719, 0x00000000, 7, 0x00000020, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0), -(28744, 0x00000000, 7, 0x00000040, 0x00000000, 0x00000000, 0x00044000, 0x00000000, 0.000000, 0.000000, 0), -(28752, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0), -(28789, 0x00000000, 10, 0xC0000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(28802, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000, 0), -(28809, 0x00000000, 6, 0x00001000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0), -(28812, 0x00000000, 8, 0x02000006, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0), -(28816, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 3.000000, 0.000000, 0), -(28823, 0x00000000, 11, 0x000000C0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(28847, 0x00000000, 7, 0x00000020, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(28849, 0x00000000, 11, 0x00000080, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(29074, 0x00000014, 3, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0), -(29075, 0x00000014, 3, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0), -(29076, 0x00000014, 3, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0), -(29150, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 3.000000, 0.000000, 0), -(29179, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0), -(29180, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0), -(29385, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 7.000000, 0.000000, 0), -(29441, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000008, 0.000000, 0.000000, 1), -(29444, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000008, 0.000000, 0.000000, 1), -(29455, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0.000000, 0.000000, 0), -(29501, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 3.000000, 0.000000, 0), -(29593, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000070, 0.000000, 0.000000, 0), -(29594, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000070, 0.000000, 0.000000, 0), -(29624, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 3.000000, 0.000000, 0), -(29625, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 3.000000, 0.000000, 0), -(29626, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 3.000000, 0.000000, 0), -(29632, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 3.000000, 0.000000, 0), -(29633, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 3.000000, 0.000000, 0), -(29634, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 3.000000, 0.000000, 0), -(29635, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 3.000000, 0.000000, 0), -(29636, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 3.000000, 0.000000, 0), -(29637, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 3.000000, 0.000000, 0), -(29801, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0), -(29834, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000, 0), -(29838, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000, 0), -(29977, 0x00000000, 3, 0x00C00017, 0x00000040, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(30003, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000800, 0.000000, 0.000000, 0), -(30160, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0), -(30293, 0x00000000, 5, 0x00000381, 0x000000C0, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(30295, 0x00000000, 5, 0x00000381, 0x000000C0, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(30296, 0x00000000, 5, 0x00000381, 0x000000C0, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(30299, 0x00000024, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(30301, 0x00000024, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(30302, 0x00000024, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(30675, 0x00000000, 11, 0x00000003, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(30678, 0x00000000, 11, 0x00000003, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(30679, 0x00000000, 11, 0x00000003, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(30680, 0x00000000, 11, 0x00000003, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(30681, 0x00000000, 11, 0x00000003, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(30701, 0x0000001C, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(30705, 0x0000001C, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(30802, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0), -(30803, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0), -(30804, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0), -(30805, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0), -(30806, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0), -(30807, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0), -(30808, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0), -(30809, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0), -(30810, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0), -(30811, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0), -(30823, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 10.500000, 0.000000, 0), -(30881, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 5), -(30883, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 5), -(30884, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 5), -(30885, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 5), -(30886, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 5), -(30937, 0x00000020, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(31124, 0x00000000, 8, 0x2000000E, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(31126, 0x00000000, 8, 0x2000000E, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(31244, 0x00000000, 8, 0x003E0000, 0x00000009, 0x00000000, 0x00000000, 0x00000004, 0.000000, 0.000000, 0), -(31245, 0x00000000, 8, 0x003E0000, 0x00000009, 0x00000000, 0x00000000, 0x00000004, 0.000000, 0.000000, 0), -(31394, 0x00000020, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(31569, 0x00000000, 3, 0x00010000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(31570, 0x00000000, 3, 0x00010000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(31785, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00008800, 0x00000000, 0.000000, 0.000000, 0), -(31794, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000, 0), -(31801, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 20.000000, 0.000000, 0), -(31833, 0x00000000, 10, 0x80000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(31835, 0x00000000, 10, 0x80000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(31836, 0x00000000, 10, 0x80000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(31904, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0.000000, 0.000000, 0), -(32385, 0x00000000, 5, 0x00000402, 0x00000011, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(32387, 0x00000000, 5, 0x00000402, 0x00000011, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(32392, 0x00000000, 5, 0x00000402, 0x00000011, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(32393, 0x00000000, 5, 0x00000402, 0x00000011, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(32394, 0x00000000, 5, 0x00000402, 0x00000011, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(32587, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0.000000, 0.000000, 0), -(32593, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 3), -(32594, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 3), -(32642, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0.000000, 0.000000, 0), -(32734, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 3), -(32748, 0x00000000, 8, 0x00000000, 0x00000001, 0x00000000, 0x00000140, 0x00000000, 0.000000, 0.000000, 0), -(32776, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0.000000, 0.000000, 0), -(32777, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0.000000, 0.000000, 0), -(32837, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000, 45), -(32844, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 2.000000, 0.000000, 0), -(32885, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0), -(33076, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x000A02A8, 0x00000000, 0.000000, 0.000000, 0), -(33089, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0.000000, 0.000000, 0), -(33127, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 7.000000, 0.000000, 0), -(33142, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0), -(33145, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0), -(33146, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0), -(33150, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0), -(33151, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0), -(33154, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0), -(33191, 0x00000000, 6, 0x00808000, 0x00000400, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(33192, 0x00000000, 6, 0x00808000, 0x00000400, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(33193, 0x00000000, 6, 0x00808000, 0x00000400, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(33299, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000, 0), -(33510, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 5.000000, 0.000000, 0), -(33648, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0), -(33719, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000800, 0.000000, 0.000000, 0), -(33736, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 3), -(33746, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 10), -(33757, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 3), -(33759, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 10), -(33776, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00008800, 0x00000000, 0.000000, 0.000000, 0), -(33881, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0), -(33882, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0), -(33883, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0), -(34080, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000008, 0.000000, 0.000000, 0), -(34138, 0x00000000, 11, 0x00000080, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(34139, 0x00000000, 10, 0x40000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(34258, 0x00000000, 10, 0x00000400, 0x00000008, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(34262, 0x00000000, 10, 0x00800000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000, 0), -(34320, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0), -(34355, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 3), -(34497, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0), -(34498, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0), -(34499, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0), -(34500, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0), -(34502, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0), -(34503, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0), -(34584, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 30), -(34586, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 1.500000, 0.000000, 0), -(34598, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 45), -(34749, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000008, 0.000000, 0.000000, 0), -(34753, 0x00000000, 6, 0x00001800, 0x00000004, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(34774, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 1.500000, 0.000000, 20), -(34783, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000800, 0.000000, 0.000000, 0), -(34827, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 3), -(34859, 0x00000000, 6, 0x00001800, 0x00000004, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(34860, 0x00000000, 6, 0x00001800, 0x00000004, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(34914, 0x00000000, 6, 0x00002000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(34916, 0x00000000, 6, 0x00002000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(34917, 0x00000000, 6, 0x00002000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(34935, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 8), -(34938, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 8), -(34939, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 8), -(34950, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0), -(34954, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0), -(35077, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 60), -(35080, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 1.000000, 0.000000, 60), -(35083, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 60), -(35086, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 60), -(35100, 0x00000000, 9, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(35102, 0x00000000, 9, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(35103, 0x00000000, 9, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(35121, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0), -(36096, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000800, 0.000000, 0.000000, 0), -(36111, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(37165, 0x00000000, 8, 0x00200400, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(37168, 0x00000000, 8, 0x003E0000, 0x00000009, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(37170, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 1.000000, 0.000000, 0), -(37173, 0x00000000, 8, 0x2CBC0598, 0x00000106, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 30), -(37189, 0x00000000, 10, 0xC0000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 60), -(37193, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0.000000, 0.000000, 0), -(37195, 0x00000000, 10, 0x00800000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(37197, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000, 45), -(37213, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0), -(37214, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000, 0), -(37227, 0x00000000, 11, 0x000001C0, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 60), -(37237, 0x00000000, 11, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0), -(37247, 0x00000008, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000, 45), -(37377, 0x00000020, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000, 0), -(37384, 0x00000000, 5, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(37443, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0), -(37514, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000020, 0.000000, 0.000000, 0), -(37516, 0x00000000, 4, 0x00000400, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(37519, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000030, 0.000000, 0.000000, 0), -(37523, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0.000000, 0.000000, 0), -(37528, 0x00000000, 4, 0x00000004, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(37536, 0x00000000, 4, 0x00010000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(37568, 0x00000000, 6, 0x00000800, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(37594, 0x00000000, 6, 0x00001000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(37600, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000, 0), -(37601, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000, 0), -(37603, 0x00000000, 6, 0x00008000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(37655, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 60), -(37657, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 3), -(38026, 0x00000001, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000100, 0.000000, 0.000000, 0), -(38031, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0.000000, 0.000000, 0), -(38290, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 1.600000, 0.000000, 0), -(38326, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0), -(38327, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0), -(38334, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 60), -(38347, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0), -(38350, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0), -(38394, 0x00000000, 5, 0x00000006, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(38857, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000, 0), -(39027, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 3), -(39372, 0x00000030, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(39437, 0x00000004, 5, 0x00001364, 0x000000C0, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000, 0), -(39442, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000001, 0.000000, 0.000000, 0), -(39443, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0), -(39530, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000, 0), -(39958, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.700000, 0.000000, 40), -(40407, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 6.000000, 0.000000, 0), -(40438, 0x00000000, 6, 0x00008040, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(40442, 0x00000000, 7, 0x00000014, 0x00000440, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(40444, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0.000000, 0.000000, 0), -(40458, 0x00000000, 4, 0x02000000, 0x00000601, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(40463, 0x00000000, 11, 0x00000081, 0x00000010, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(40470, 0x00000000, 10, 0xC0800000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(40475, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 3.000000, 0.000000, 0), -(40478, 0x00000000, 5, 0x00000002, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(40482, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0), -(40485, 0x00000000, 9, 0x00000000, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(40899, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 3), -(41034, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000400, 0.000000, 0.000000, 0), -(41260, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 10), -(41262, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 10), -(41381, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000100, 0.000000, 0.000000, 0), -(41393, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000020, 0.000000, 0.000000, 0), -(41434, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 2.000000, 0.000000, 45), -(41469, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 7.000000, 0.000000, 0), -(41635, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x000A02A8, 0x00000000, 0.000000, 0.000000, 0), -(41989, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.500000, 0.000000, 0), -(42083, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 45), -(42135, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 90), -(42136, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 90), -(42368, 0x00000000, 10, 0x40000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(42370, 0x00000000, 11, 0x00000040, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(43019, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000400, 0.000000, 0.000000, 0), -(43020, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000400, 0.000000, 0.000000, 0), -(43338, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0), -(43443, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000800, 0.000000, 0.000000, 0), -(43726, 0x00000000, 10, 0x40000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(43728, 0x00000000, 11, 0x00000080, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(43737, 0x00000000, 7, 0x00000000, 0x00000440, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 10), -(43739, 0x00000000, 7, 0x00000002, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(43741, 0x00000000, 10, 0x80000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(43745, 0x00000000, 10, 0x00000000, 0x00000200, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(43748, 0x00000000, 11, 0x90100000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(43750, 0x00000000, 11, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(43819, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000, 0), -(44404, 0x00000000, 3, 0x20000021, 0x00009000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(44445, 0x00000000, 3, 0x00000013, 0x00001000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(44446, 0x00000000, 3, 0x00000013, 0x00001000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(44448, 0x00000000, 3, 0x00000013, 0x00001000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(44835, 0x00000000, 7, 0x00000000, 0x00000080, 0x00000000, 0x00000010, 0x00000000, 0.000000, 0.000000, 0), -(45054, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 15), -(45057, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 30), -(45234, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0), -(45243, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0), -(45244, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0), -(45354, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 45), -(45481, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 45), -(45482, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 45), -(45483, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 45), -(45484, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00004000, 0x00000000, 0.000000, 0.000000, 45), -(46025, 0x00000020, 6, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(46092, 0x00000000, 10, 0x40000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(46098, 0x00000000, 11, 0x00000080, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(46569, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 45), -(46662, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 20), -(46832, 0x00000000, 7, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000, 0), -(46854, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0), -(46855, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0), -(46867, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0), -(46913, 0x00000000, 4, 0x00000000, 0x00000400, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0), -(46914, 0x00000000, 4, 0x00000000, 0x00000400, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0), -(46915, 0x00000000, 4, 0x00000000, 0x00000400, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0), -(46916, 0x00000000, 4, 0x00000000, 0x00000400, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0), -(46951, 0x00000000, 4, 0x00000400, 0x00000040, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(46952, 0x00000000, 0, 0x00000400, 0x00000040, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(46953, 0x00000000, 0, 0x00000400, 0x00000040, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(47195, 0x00000000, 5, 0x00000002, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 30), -(47196, 0x00000000, 5, 0x00000002, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 30), -(47197, 0x00000000, 5, 0x00000002, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 30), -(47201, 0x00000000, 5, 0x00000008, 0x00040000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000, 0), -(47202, 0x00000000, 5, 0x00000008, 0x00040000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(47203, 0x00000000, 5, 0x00000008, 0x00040000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(47204, 0x00000000, 5, 0x00000008, 0x00040000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(47205, 0x00000000, 5, 0x00000008, 0x00040000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(47232, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0), -(47234, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0), -(47235, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0), -(47245, 0x00000020, 5, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(47246, 0x00000020, 5, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(47247, 0x00000020, 5, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(47258, 0x00000000, 5, 0x00000000, 0x00800000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000, 0), -(47259, 0x00000000, 5, 0x00000000, 0x00800000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000, 0), -(47260, 0x00000000, 5, 0x00000000, 0x00800000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000, 0), -(47263, 0x00000020, 5, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 20), -(47264, 0x00000020, 5, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 20), -(47265, 0x00000020, 5, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 20), -(47509, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0), -(47511, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0), -(47515, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0), -(47516, 0x00000000, 6, 0x00001800, 0x00008000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(47517, 0x00000000, 6, 0x00001800, 0x00008000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(47535, 0x00000000, 6, 0x00001800, 0x00008000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(47536, 0x00000000, 6, 0x00001800, 0x00008000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(47537, 0x00000000, 6, 0x00001800, 0x00008000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(47538, 0x00000000, 6, 0x00001800, 0x00008000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(47539, 0x00000000, 6, 0x00001800, 0x00008000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(47572, 0x00000000, 6, 0x00010000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(47580, 0x00000000, 6, 0x00000000, 0x00000000, 0x00000040, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(47581, 0x00000000, 6, 0x00000000, 0x00000000, 0x00000040, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(47582, 0x00000000, 6, 0x00000000, 0x00000000, 0x00000040, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(48159, 0x00000000, 6, 0x00002000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(48160, 0x00000000, 6, 0x00002000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(48483, 0x00000000, 7, 0x00008800, 0x00000440, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(48484, 0x00000000, 7, 0x00008800, 0x00000440, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(48485, 0x00000000, 7, 0x00008800, 0x00000440, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(48496, 0x00000000, 7, 0x00000060, 0x02000002, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0), -(48499, 0x00000000, 7, 0x00000060, 0x02000002, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0), -(48500, 0x00000000, 7, 0x00000060, 0x02000002, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0), -(48506, 0x00000000, 7, 0x00000005, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(48510, 0x00000000, 7, 0x00000005, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(48511, 0x00000000, 7, 0x00000005, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(48516, 0x00000000, 7, 0x00000005, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 30), -(48521, 0x00000000, 7, 0x00000005, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 30), -(48525, 0x00000000, 7, 0x00000005, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 30), -(48833, 0x00000000, 7, 0x00000000, 0x00000440, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(48835, 0x00000000, 10, 0x00000000, 0x00000008, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(48837, 0x00000000, 11, 0x90100000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(48951, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0.000000, 0.000000, 0), -(48952, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0.000000, 0.000000, 0), -(48988, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0), -(49018, 0x00000000, 15, 0x01400000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(49137, 0x00000000, 15, 0x00000000, 0x00004000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(49188, 0x00000000, 15, 0x00000002, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(49208, 0x00000000, 15, 0x00440000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(49222, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 3), -(49280, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 3), -(49281, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 3), -(49283, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 3), -(49284, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 3), -(49503, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0), -(49504, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0), -(49529, 0x00000000, 15, 0x01400000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(49530, 0x00000000, 15, 0x01400000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(49531, 0x00000000, 15, 0x01400000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(49532, 0x00000000, 15, 0x01400000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(49622, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 60), -(49657, 0x00000000, 15, 0x00000000, 0x00004000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(50781, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0), -(51123, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0), -(51127, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0), -(51128, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0), -(51129, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0), -(51130, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0), -(51346, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 10), -(51349, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 10), -(51352, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 10), -(51359, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 10), -(51466, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0), -(51470, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0), -(51562, 0x00000000, 11, 0x00000100, 0x00000000, 0x00000010, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(51563, 0x00000000, 11, 0x00000100, 0x00000000, 0x00000010, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(51564, 0x00000000, 11, 0x00000100, 0x00000000, 0x00000010, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(51565, 0x00000000, 11, 0x00000100, 0x00000000, 0x00000010, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(51566, 0x00000000, 11, 0x00000100, 0x00000000, 0x00000010, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(51625, 0x00000000, 8, 0x1000A000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(51626, 0x00000000, 8, 0x1000A000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(51627, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000070, 0.000000, 0.000000, 0), -(51628, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000070, 0.000000, 0.000000, 0), -(51629, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000070, 0.000000, 0.000000, 0), -(51634, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0), -(51635, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0), -(51636, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0), -(51664, 0x00000000, 8, 0x00020000, 0x00000008, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(51665, 0x00000000, 8, 0x00020000, 0x00000008, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(51667, 0x00000000, 8, 0x00020000, 0x00000008, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(51668, 0x00000000, 8, 0x00020000, 0x00000008, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(51669, 0x00000000, 8, 0x00020000, 0x00000008, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(51672, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000010, 0.000000, 0.000000, 1), -(51674, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000010, 0.000000, 0.000000, 1), -(51679, 0x00000000, 8, 0x00000001, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(51692, 0x00000000, 8, 0x00000200, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0), -(51696, 0x00000000, 8, 0x00000200, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0), -(51698, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 1), -(51700, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 1), -(51701, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 1), -(52020, 0x00000000, 7, 0x00008000, 0x00100000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(52127, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 3), -(52129, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 3), -(52131, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 3), -(52134, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 3), -(52136, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 3), -(52138, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 3), -(52420, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 30), -(52423, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000020, 0.000000, 0.000000, 0), -(52795, 0x00000000, 6, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(52797, 0x00000000, 6, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(52798, 0x00000000, 6, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(52799, 0x00000000, 6, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(52800, 0x00000000, 6, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(52898, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0), -(53137, 0x00000000, 15, 0x01400000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(53138, 0x00000000, 15, 0x01400000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(53215, 0x00000000, 9, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(53216, 0x00000000, 9, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(53217, 0x00000000, 9, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(53221, 0x00000000, 9, 0x00000000, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(53222, 0x00000000, 9, 0x00000000, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(53224, 0x00000000, 9, 0x00000000, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(53228, 0x00000000, 9, 0x00000020, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(53232, 0x00000000, 9, 0x00000020, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(53256, 0x00000000, 9, 0x00000800, 0x00800001, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0), -(53259, 0x00000000, 9, 0x00000800, 0x00800001, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0), -(53260, 0x00000000, 9, 0x00000800, 0x00800001, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0), -(53290, 0x00000000, 9, 0x00000800, 0x7FFFFFFF, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0), -(53291, 0x00000000, 9, 0x00000800, 0x7FFFFFFF, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0), -(53292, 0x00000000, 9, 0x00000800, 0x7FFFFFFF, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0), -(53293, 0x00000000, 9, 0x00000800, 0x7FFFFFFF, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0), -(53294, 0x00000000, 9, 0x00000800, 0x7FFFFFFF, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0), -(53380, 0x00000000, 10, 0x00800000, 0x00020000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0), -(53381, 0x00000000, 10, 0x00800000, 0x00020000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0), -(53382, 0x00000000, 10, 0x00800000, 0x00020000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0), -(53383, 0x00000000, 10, 0x00800000, 0x00020000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0), -(53384, 0x00000000, 10, 0x00800000, 0x00020000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0), -(53486, 0x00000000, 10, 0x00800000, 0x00028000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0), -(53488, 0x00000000, 10, 0x00800000, 0x00028000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0), -(53551, 0x00000000, 10, 0x00001000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(53552, 0x00000000, 10, 0x00001000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(53553, 0x00000000, 10, 0x00001000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(53569, 0x00000000, 10, 0x00200000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0), -(53576, 0x00000000, 10, 0x00200000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0), -(54149, 0x00000000, 10, 0x00200000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0), -(54486, 0x00000000, 0, 0x20000021, 0x00009000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(54488, 0x00000000, 0, 0x20000021, 0x00009000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(54489, 0x00000000, 0, 0x20000021, 0x00009000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(54490, 0x00000000, 0, 0x20000021, 0x00009000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(54738, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0), -(54754, 0x00000000, 7, 0x00000010, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(54841, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0), -(54936, 0x00000000, 10, 0x40000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(54937, 0x00000000, 10, 0x80000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(54939, 0x00000000, 10, 0x00008000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(55440, 0x00000000, 11, 0x00000040, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(55620, 0x00000000, 15, 0x00000001, 0x08000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(55623, 0x00000000, 15, 0x00000001, 0x08000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(55666, 0x00000000, 15, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(55667, 0x00000000, 15, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(55668, 0x00000000, 15, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(55669, 0x00000000, 15, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(55670, 0x00000000, 15, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(55677, 0x00000000, 6, 0x00000000, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(55680, 0x00000000, 6, 0x00000200, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(55689, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0), -(56218, 0x00000000, 5, 0x00000002, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(56342, 0x00000000, 9, 0x00004000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(56343, 0x00000000, 9, 0x00004000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(56344, 0x00000000, 9, 0x00004000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(56364, 0x00000000, 3, 0x00000000, 0x01000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(56451, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 3), -(56611, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0), -(56612, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0), -(56613, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0), -(56614, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0), -(56636, 0x00000000, 4, 0x00000020, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(56637, 0x00000000, 4, 0x00000020, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(56638, 0x00000000, 4, 0x00000020, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(56821, 0x00000000, 8, 0x00000002, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0), -(56822, 0x00000000, 15, 0x00000002, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(56834, 0x00000000, 15, 0x00440000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(56835, 0x00000000, 15, 0x00440000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(57878, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000010, 0.000000, 0.000000, 0), -(57880, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000010, 0.000000, 0.000000, 0), -(57881, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000010, 0.000000, 0.000000, 0), -(57960, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 3), -(58357, 0x00000000, 4, 0x00000040, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0), -(58364, 0x00000000, 4, 0x00000400, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(58372, 0x00000000, 4, 0x00000002, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(58386, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000020, 0.000000, 0.000000, 0), -(58435, 0x00000000, 5, 0x00000002, 0x00000100, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(58436, 0x00000000, 5, 0x00000002, 0x00000100, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(58437, 0x00000000, 5, 0x00000002, 0x00000100, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(58616, 0x00000000, 15, 0x00040000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(58620, 0x00000000, 15, 0x00000000, 0x00004000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(58626, 0x00000000, 15, 0x02000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(58631, 0x00000000, 15, 0x00000002, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(58642, 0x00000000, 15, 0x00000000, 0x08000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(58644, 0x00000000, 15, 0x00000000, 0x00000004, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(58647, 0x00000000, 15, 0x00000000, 0x00000004, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(58676, 0x00000000, 15, 0x00000000, 0x00000008, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(58677, 0x00000000, 15, 0x00002000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(58872, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0.000000, 0.000000, 0), -(58874, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0.000000, 0.000000, 0), -(58901, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0), -(59057, 0x00000000, 15, 0x00000002, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(59176, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0), -(59327, 0x00000000, 15, 0x08000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(59725, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000800, 0.000000, 0.000000, 0), -(60132, 0x00000000, 15, 0x00000000, 0x08020000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(60172, 0x00000000, 5, 0x00040000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000, 0), -(60200, 0x00000000, 15, 0x00001000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000, 0), -(60537, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0), -(60564, 0x00000000, 11, 0x90100000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(60571, 0x00000000, 11, 0x90100000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(60572, 0x00000000, 11, 0x90100000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(60573, 0x00000000, 11, 0x90100000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(60574, 0x00000000, 11, 0x90100000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(60575, 0x00000000, 11, 0x90100000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(60617, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000020, 0.000000, 0.000000, 0), -(60710, 0x00000000, 7, 0x00000002, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(60717, 0x00000000, 7, 0x00000002, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(60719, 0x00000000, 7, 0x00000002, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(60722, 0x00000000, 7, 0x00000002, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(60724, 0x00000000, 7, 0x00000002, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(60726, 0x00000000, 7, 0x00000002, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(60770, 0x00000000, 11, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(60818, 0x00000000, 10, 0x00000000, 0x00000200, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(60826, 0x00000000, 15, 0x01400000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(61324, 0x00000000, 10, 0x00000000, 0x00020000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0);
\ No newline at end of file diff --git a/sql/updates/7040_01_mangos_achievement_reward.sql b/sql/updates/7040_01_mangos_achievement_reward.sql deleted file mode 100644 index 0402a002526..00000000000 --- a/sql/updates/7040_01_mangos_achievement_reward.sql +++ /dev/null @@ -1,36 +0,0 @@ -ALTER TABLE db_version CHANGE COLUMN required_7034_01_mangos_spell_proc_event required_7040_01_mangos_achievement_reward bit; - -DROP TABLE IF EXISTS `achievement_reward`; -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'; - - -DROP TABLE IF EXISTS `locales_achievement_reward`; -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 default NULL, - `text_loc2` text default NULL, - `text_loc3` text default NULL, - `text_loc4` text default NULL, - `text_loc5` text default NULL, - `text_loc6` text default NULL, - `text_loc7` text default NULL, - `text_loc8` text default NULL, - PRIMARY KEY (`entry`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8; diff --git a/sql/updates/7044_01_mangos_spell_proc_event.sql b/sql/updates/7044_01_mangos_spell_proc_event.sql deleted file mode 100644 index 8dc295b7316..00000000000 --- a/sql/updates/7044_01_mangos_spell_proc_event.sql +++ /dev/null @@ -1,17 +0,0 @@ -ALTER TABLE db_version CHANGE COLUMN required_7040_01_mangos_achievement_reward required_7044_01_mangos_spell_proc_event bit; - --- (48110) Prayer of Mending (Rank 2) -DELETE FROM `spell_proc_event` WHERE `entry` IN (48110); -INSERT INTO `spell_proc_event` VALUES (48110, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x000A02A8, 0x00000000, 0.000000, 0.000000, 0); - --- (48112) Prayer of Mending (Rank 2) -DELETE FROM `spell_proc_event` WHERE `entry` IN (48112); -INSERT INTO `spell_proc_event` VALUES (48112, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x000A02A8, 0x00000000, 0.000000, 0.000000, 0); - --- (48111) Prayer of Mending (Rank 3) -DELETE FROM `spell_proc_event` WHERE `entry` IN (48111); -INSERT INTO `spell_proc_event` VALUES (48111, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x000A02A8, 0x00000000, 0.000000, 0.000000, 0); - --- (48113) Prayer of Mending (Rank 3) -DELETE FROM `spell_proc_event` WHERE `entry` IN (48113); -INSERT INTO `spell_proc_event` VALUES (48113, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x000A02A8, 0x00000000, 0.000000, 0.000000, 0); diff --git a/sql/updates/7047_02_mangos_playercreateinfo_action.sql b/sql/updates/7047_02_mangos_playercreateinfo_action.sql deleted file mode 100644 index 894334b863a..00000000000 --- a/sql/updates/7047_02_mangos_playercreateinfo_action.sql +++ /dev/null @@ -1,11 +0,0 @@ -ALTER TABLE db_version CHANGE COLUMN required_7044_01_mangos_spell_proc_event required_7047_02_mangos_playercreateinfo_action bit; - -DELETE FROM `playercreateinfo_action` WHERE `action` IN ('28880', 59542, 59543, 59544, 59545, 59547, 59548); -INSERT INTO `playercreateinfo_action` VALUES -(11,1,74,28880,0,0), -(11,2,3,59542,0,0), -(11,3,3,59543,0,0), -(11,5,3,59544,0,0), -(11,6,6,59545,0,0), -(11,7,3,59547,0,0), -(11,8,3,59548,0,0);
\ No newline at end of file diff --git a/sql/updates/7047_03_mangos_playercreateinfo_spell.sql b/sql/updates/7047_03_mangos_playercreateinfo_spell.sql deleted file mode 100644 index c8249078865..00000000000 --- a/sql/updates/7047_03_mangos_playercreateinfo_spell.sql +++ /dev/null @@ -1,12 +0,0 @@ -ALTER TABLE db_version CHANGE COLUMN required_7047_02_mangos_playercreateinfo_action required_7047_03_mangos_playercreateinfo_spell bit; - -DELETE FROM `playercreateinfo_spell` WHERE `Spell` IN ('28880', 59542, 59543, 59544, 59545, 59547, 59548); - -INSERT INTO `playercreateinfo_spell` VALUES -(11,1,28880,'Gift of the Naaru',1), -(11,2,59542,'Gift of the Naaru',1), -(11,3,59543,'Gift of the Naaru',1), -(11,5,59544,'Gift of the Naaru',1), -(11,6,59545,'Gift of the Naaru',1), -(11,7,59547,'Gift of the Naaru',1), -(11,8,59548,'Gift of the Naaru',1);
\ No newline at end of file diff --git a/sql/updates/7050_01_mangos_spell_proc_event.sql b/sql/updates/7050_01_mangos_spell_proc_event.sql deleted file mode 100644 index bd01cabdd7d..00000000000 --- a/sql/updates/7050_01_mangos_spell_proc_event.sql +++ /dev/null @@ -1,13 +0,0 @@ -ALTER TABLE db_version CHANGE COLUMN required_7047_03_mangos_playercreateinfo_spell required_7050_01_mangos_spell_proc_event bit; - --- (34753) Holy Concentration (Rank 1) -DELETE FROM `spell_proc_event` WHERE `entry` IN (34753); -INSERT INTO `spell_proc_event` VALUES (34753, 0x00, 6, 0x00001800, 0x00000004, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0); - --- (34859) Holy Concentration (Rank 2) -DELETE FROM `spell_proc_event` WHERE `entry` IN (34859); -INSERT INTO `spell_proc_event` VALUES (34859, 0x00, 6, 0x00001800, 0x00000004, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0); - --- (34860) Holy Concentration (Rank 3) -DELETE FROM `spell_proc_event` WHERE `entry` IN (34860); -INSERT INTO `spell_proc_event` VALUES (34860, 0x00, 6, 0x00001800, 0x00000004, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0);
\ No newline at end of file diff --git a/sql/updates/7051_01_mangos_spell_proc_event.sql b/sql/updates/7051_01_mangos_spell_proc_event.sql deleted file mode 100644 index 8775ee15876..00000000000 --- a/sql/updates/7051_01_mangos_spell_proc_event.sql +++ /dev/null @@ -1,41 +0,0 @@ -ALTER TABLE db_version CHANGE COLUMN required_7050_01_mangos_spell_proc_event required_7051_01_mangos_spell_proc_event bit; - --- (44546) Brain Freeze (Rank 1) -DELETE FROM `spell_proc_event` WHERE `entry` IN (44546); -INSERT INTO `spell_proc_event` VALUES (44546, 0x00, 3, 0x020002A0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0); - --- (44548) Brain Freeze (Rank 2) -DELETE FROM `spell_proc_event` WHERE `entry` IN (44548); -INSERT INTO `spell_proc_event` VALUES (44548, 0x00, 3, 0x020002A0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0); - --- (44549) Brain Freeze (Rank 3) -DELETE FROM `spell_proc_event` WHERE `entry` IN (44549); -INSERT INTO `spell_proc_event` VALUES (44549, 0x00, 3, 0x020002A0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0); - --- (44449) Burnout (Rank 1) -DELETE FROM `spell_proc_event` WHERE `entry` IN (44449); -INSERT INTO `spell_proc_event` VALUES (44449, 0x00, 3, 0x20E21277, 0x00019048, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0); - --- (44469) Burnout (Rank 2) -DELETE FROM `spell_proc_event` WHERE `entry` IN (44469); -INSERT INTO `spell_proc_event` VALUES (44469, 0x00, 3, 0x20E21277, 0x00019048, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0); - --- (44470) Burnout (Rank 3) -DELETE FROM `spell_proc_event` WHERE `entry` IN (44470); -INSERT INTO `spell_proc_event` VALUES (44470, 0x00, 3, 0x20E21277, 0x00019048, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0); - --- (44471) Burnout (Rank 4) -DELETE FROM `spell_proc_event` WHERE `entry` IN (44471); -INSERT INTO `spell_proc_event` VALUES (44471, 0x00, 3, 0x20E21277, 0x00019048, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0); - --- (44472) Burnout (Rank 5) -DELETE FROM `spell_proc_event` WHERE `entry` IN (44472); -INSERT INTO `spell_proc_event` VALUES (44472, 0x00, 3, 0x20E21277, 0x00019048, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0); - --- (54747) Burning Determination (Rank 1) -DELETE FROM `spell_proc_event` WHERE `entry` IN (54747); -INSERT INTO `spell_proc_event` VALUES (54747, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000, 0); - --- (54749) Burning Determination (Rank 2) -DELETE FROM `spell_proc_event` WHERE `entry` IN (54749); -INSERT INTO `spell_proc_event` VALUES (54749, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000, 0); diff --git a/sql/updates/7052_01_mangos_spell_proc_event.sql b/sql/updates/7052_01_mangos_spell_proc_event.sql deleted file mode 100644 index a59e3526d74..00000000000 --- a/sql/updates/7052_01_mangos_spell_proc_event.sql +++ /dev/null @@ -1,13 +0,0 @@ -ALTER TABLE db_version CHANGE COLUMN required_7051_01_mangos_spell_proc_event required_7052_01_mangos_spell_proc_event bit; - --- (47549) Improved Holy Concentration (Rank 1) -DELETE FROM `spell_proc_event` WHERE `entry` IN (47549); -INSERT INTO `spell_proc_event` VALUES (47549, 0x00, 6, 0x00000000, 0x00020000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0); - --- (47551) Improved Holy Concentration (Rank 2) -DELETE FROM `spell_proc_event` WHERE `entry` IN (47551); -INSERT INTO `spell_proc_event` VALUES (47551, 0x00, 6, 0x00000000, 0x00020000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0); - --- (47552) Improved Holy Concentration (Rank 3) -DELETE FROM `spell_proc_event` WHERE `entry` IN (47552); -INSERT INTO `spell_proc_event` VALUES (47552, 0x00, 6, 0x00000000, 0x00020000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0);
\ No newline at end of file diff --git a/sql/updates/7053_01_mangos_spell_proc_event.sql b/sql/updates/7053_01_mangos_spell_proc_event.sql deleted file mode 100644 index 5d29f5d40cc..00000000000 --- a/sql/updates/7053_01_mangos_spell_proc_event.sql +++ /dev/null @@ -1,62 +0,0 @@ -ALTER TABLE db_version CHANGE COLUMN required_7052_01_mangos_spell_proc_event required_7053_01_mangos_spell_proc_event bit; - --- (60493) Dying Curse () -DELETE FROM `spell_proc_event` WHERE `entry` IN (60493); -INSERT INTO `spell_proc_event` VALUES (60493, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 45); - --- (60503) Taste for Blood () -DELETE FROM `spell_proc_event` WHERE `entry` IN (60503); -INSERT INTO `spell_proc_event` VALUES (60503, 0x00, 4, 0x00000004, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0); - --- (61188) Chaotic Mind () -DELETE FROM `spell_proc_event` WHERE `entry` IN (61188); -INSERT INTO `spell_proc_event` VALUES (61188, 0x00, 5, 0x00000004, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0); - --- (60170) Corruption Triggers Crit () -DELETE FROM `spell_proc_event` WHERE `entry` IN (60170); -INSERT INTO `spell_proc_event` VALUES (60170, 0x00, 5, 0x00000006, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0); - --- (36541) Curse of Burning Shadows () -DELETE FROM `spell_proc_event` WHERE `entry` IN (36541); -INSERT INTO `spell_proc_event` VALUES (36541, 0x04, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0); - --- (54278) Empowered Imp () -DELETE FROM `spell_proc_event` WHERE `entry` IN (54278); -INSERT INTO `spell_proc_event` VALUES (54278, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0); - --- (37379) Flameshadow () -DELETE FROM `spell_proc_event` WHERE `entry` IN (37379); -INSERT INTO `spell_proc_event` VALUES (37379, 0x20, 5, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0); - --- (53671) Judgements of the Pure (Rank 1) -DELETE FROM `spell_proc_event` WHERE `entry` IN (53671); -INSERT INTO `spell_proc_event` VALUES (53671, 0x00, 10, 0x00800000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0); - --- (53673) Judgements of the Pure (Rank 2) -DELETE FROM `spell_proc_event` WHERE `entry` IN (53673); -INSERT INTO `spell_proc_event` VALUES (53673, 0x00, 10, 0x00800000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0); - --- (54151) Judgements of the Pure (Rank 3) -DELETE FROM `spell_proc_event` WHERE `entry` IN (54151); -INSERT INTO `spell_proc_event` VALUES (54151, 0x00, 10, 0x00800000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0); - --- (54154) Judgements of the Pure (Rank 4) -DELETE FROM `spell_proc_event` WHERE `entry` IN (54154); -INSERT INTO `spell_proc_event` VALUES (54154, 0x00, 10, 0x00800000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0); - --- (54155) Judgements of the Pure (Rank 5) -DELETE FROM `spell_proc_event` WHERE `entry` IN (54155); -INSERT INTO `spell_proc_event` VALUES (54155, 0x00, 10, 0x00800000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0); - --- (31876) Judgements of the Wise (Rank 1) -DELETE FROM `spell_proc_event` WHERE `entry` IN (31876); -INSERT INTO `spell_proc_event` VALUES (31876, 0x00, 10, 0x00800000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0); - --- (31877) Judgements of the Wise (Rank 2) -DELETE FROM `spell_proc_event` WHERE `entry` IN (31877); -INSERT INTO `spell_proc_event` VALUES (31877, 0x00, 10, 0x00800000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0); - --- (31878) Judgements of the Wise (Rank 3) -DELETE FROM `spell_proc_event` WHERE `entry` IN (31878); -INSERT INTO `spell_proc_event` VALUES (31878, 0x00, 10, 0x00800000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0); - diff --git a/sql/updates/7056_01_mangos_spell_proc_event.sql b/sql/updates/7056_01_mangos_spell_proc_event.sql deleted file mode 100644 index c4788253e08..00000000000 --- a/sql/updates/7056_01_mangos_spell_proc_event.sql +++ /dev/null @@ -1,25 +0,0 @@ -ALTER TABLE db_version CHANGE COLUMN required_7053_01_mangos_spell_proc_event required_7056_01_mangos_spell_proc_event bit; - --- (20210) Illumination (Rank 1) -DELETE FROM `spell_proc_event` WHERE `entry` IN (20210); -INSERT INTO `spell_proc_event` VALUES (20210, 0x00, 10, 0xC0000000, 0x00010000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0); - --- (20212) Illumination (Rank 2) -DELETE FROM `spell_proc_event` WHERE `entry` IN (20212); -INSERT INTO `spell_proc_event` VALUES (20212, 0x00, 10, 0xC0000000, 0x00010000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0); - --- (20213) Illumination (Rank 3) -DELETE FROM `spell_proc_event` WHERE `entry` IN (20213); -INSERT INTO `spell_proc_event` VALUES (20213, 0x00, 10, 0xC0000000, 0x00010000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0); - --- (20214) Illumination (Rank 4) -DELETE FROM `spell_proc_event` WHERE `entry` IN (20214); -INSERT INTO `spell_proc_event` VALUES (20214, 0x00, 10, 0xC0000000, 0x00010000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0); - --- (20215) Illumination (Rank 5) -DELETE FROM `spell_proc_event` WHERE `entry` IN (20215); -INSERT INTO `spell_proc_event` VALUES (20215, 0x00, 10, 0xC0000000, 0x00010000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0); - --- (33953) Essence of Life () -DELETE FROM `spell_proc_event` WHERE `entry` IN (33953); -INSERT INTO `spell_proc_event` VALUES (33953, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00004000, 0x00000000, 0.000000, 0.000000, 45);
\ No newline at end of file diff --git a/sql/updates/7059_01_characters_character_spell.sql b/sql/updates/7059_01_characters_character_spell.sql deleted file mode 100644 index 6280798ccec..00000000000 --- a/sql/updates/7059_01_characters_character_spell.sql +++ /dev/null @@ -1,4 +0,0 @@ -ALTER TABLE character_db_version CHANGE COLUMN required_7047_01_characters_character_spell required_7059_01_characters_character_spell bit; - -ALTER TABLE character_spell - DROP slot; diff --git a/sql/updates/7059_02_characters_pet_spell.sql b/sql/updates/7059_02_characters_pet_spell.sql deleted file mode 100644 index e2ee87b9f1f..00000000000 --- a/sql/updates/7059_02_characters_pet_spell.sql +++ /dev/null @@ -1,4 +0,0 @@ -ALTER TABLE character_db_version CHANGE COLUMN required_7059_01_characters_character_spell required_7059_02_characters_pet_spell bit; - -ALTER TABLE pet_spell - DROP slot; diff --git a/sql/updates/7060_01_mangos_spell_proc_event.sql b/sql/updates/7060_01_mangos_spell_proc_event.sql deleted file mode 100644 index dbe87be7f80..00000000000 --- a/sql/updates/7060_01_mangos_spell_proc_event.sql +++ /dev/null @@ -1,31 +0,0 @@ -ALTER TABLE db_version CHANGE COLUMN required_7056_01_mangos_spell_proc_event required_7060_01_mangos_spell_proc_event bit; - --- (51556) Ancestral Awakening (Rank 1) -DELETE FROM `spell_proc_event` WHERE `entry` IN (51556); -INSERT INTO `spell_proc_event` VALUES (51556, 0x00, 11, 0x000000C0, 0x00000000, 0x00000010, 0x00000000, 0x00000002, 0.000000, 0.000000, 0); - --- (51557) Ancestral Awakening (Rank 2) -DELETE FROM `spell_proc_event` WHERE `entry` IN (51557); -INSERT INTO `spell_proc_event` VALUES (51557, 0x00, 11, 0x000000C0, 0x00000000, 0x00000010, 0x00000000, 0x00000002, 0.000000, 0.000000, 0); - --- (51558) Ancestral Awakening (Rank 3) -DELETE FROM `spell_proc_event` WHERE `entry` IN (51558); -INSERT INTO `spell_proc_event` VALUES (51558, 0x00, 11, 0x000000C0, 0x00000000, 0x00000010, 0x00000000, 0x00000002, 0.000000, 0.000000, 0); - --- (47555) Serendipity (Rank 1) -DELETE FROM `spell_proc_event` WHERE `entry` IN (47555); -INSERT INTO `spell_proc_event` VALUES (47555, 0x00, 6, 0x00001800, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0); - --- (47556) Serendipity (Rank 2) -DELETE FROM `spell_proc_event` WHERE `entry` IN (47556); -INSERT INTO `spell_proc_event` VALUES (47556, 0x00, 6, 0x00001800, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0); - --- (47557) Serendipity (Rank 3) -DELETE FROM `spell_proc_event` WHERE `entry` IN (47557); -INSERT INTO `spell_proc_event` VALUES (47557, 0x00, 6, 0x00001800, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0); - --- (32409) Shadow Word: Death () -DELETE FROM `spell_proc_event` WHERE `entry` IN (32409); -INSERT INTO `spell_proc_event` VALUES (32409, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0); - - diff --git a/sql/updates/7061_01_mangos_spell_proc_event.sql b/sql/updates/7061_01_mangos_spell_proc_event.sql deleted file mode 100644 index a4f85f40f6c..00000000000 --- a/sql/updates/7061_01_mangos_spell_proc_event.sql +++ /dev/null @@ -1,41 +0,0 @@ -ALTER TABLE db_version CHANGE COLUMN required_7060_01_mangos_spell_proc_event required_7061_01_mangos_spell_proc_event bit; - --- (47516) Grace (Rank 1) -DELETE FROM `spell_proc_event` WHERE `entry` IN (47516); -INSERT INTO `spell_proc_event` VALUES (47516, 0x00, 6, 0x00001800, 0x00010000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0); - --- (47517) Grace (Rank 2) -DELETE FROM `spell_proc_event` WHERE `entry` IN (47517); -INSERT INTO `spell_proc_event` VALUES (47517, 0x00, 6, 0x00001800, 0x00010000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0); - --- (14892) Inspiration (Rank 1) -DELETE FROM `spell_proc_event` WHERE `entry` IN (14892); -INSERT INTO `spell_proc_event` VALUES (14892, 0x00, 6, 0x10001E00, 0x00010004, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0); - --- (15362) Inspiration (Rank 2) -DELETE FROM `spell_proc_event` WHERE `entry` IN (15362); -INSERT INTO `spell_proc_event` VALUES (15362, 0x00, 6, 0x10001E00, 0x00010004, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0); - --- (15363) Inspiration (Rank 3) -DELETE FROM `spell_proc_event` WHERE `entry` IN (15363); -INSERT INTO `spell_proc_event` VALUES (15363, 0x00, 6, 0x10001E00, 0x00010004, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0); - --- (47535) Rapture (Rank 1) -DELETE FROM `spell_proc_event` WHERE `entry` IN (47535); -INSERT INTO `spell_proc_event` VALUES (47535, 0x00, 6, 0x00001800, 0x00800000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000, 0); - --- (47536) Rapture (Rank 2) -DELETE FROM `spell_proc_event` WHERE `entry` IN (47536); -INSERT INTO `spell_proc_event` VALUES (47536, 0x00, 6, 0x00001800, 0x00800000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000, 0); - --- (47537) Rapture (Rank 3) -DELETE FROM `spell_proc_event` WHERE `entry` IN (47537); -INSERT INTO `spell_proc_event` VALUES (47537, 0x00, 6, 0x00001800, 0x00800000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000, 0); - --- (47538) Rapture (Rank 4) -DELETE FROM `spell_proc_event` WHERE `entry` IN (47538); -INSERT INTO `spell_proc_event` VALUES (47538, 0x00, 6, 0x00001800, 0x00800000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000, 0); - --- (47539) Rapture (Rank 5) -DELETE FROM `spell_proc_event` WHERE `entry` IN (47539); -INSERT INTO `spell_proc_event` VALUES (47539, 0x00, 6, 0x00001800, 0x00800000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000, 0); diff --git a/sql/updates/7063_01_mangos_spell_proc_event.sql b/sql/updates/7063_01_mangos_spell_proc_event.sql deleted file mode 100644 index d3bbbe7547a..00000000000 --- a/sql/updates/7063_01_mangos_spell_proc_event.sql +++ /dev/null @@ -1,13 +0,0 @@ -ALTER TABLE db_version CHANGE COLUMN required_7061_01_mangos_spell_proc_event required_7063_01_mangos_spell_proc_event bit; - --- (51474) Astral Shift (Rank 1) -DELETE FROM `spell_proc_event` WHERE `entry` IN (51474); -INSERT INTO `spell_proc_event` VALUES (51474, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000, 0); - --- (51478) Astral Shift (Rank 2) -DELETE FROM `spell_proc_event` WHERE `entry` IN (51478); -INSERT INTO `spell_proc_event` VALUES (51478, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000, 0); - --- (53601) Sacred Shield (Rank 1) -DELETE FROM `spell_proc_event` WHERE `entry` IN (53601); -INSERT INTO `spell_proc_event` VALUES (53601, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 6);
\ No newline at end of file diff --git a/sql/updates/7067_01_mangos_playercreateinfo_spell.sql b/sql/updates/7067_01_mangos_playercreateinfo_spell.sql deleted file mode 100644 index b26adb33340..00000000000 --- a/sql/updates/7067_01_mangos_playercreateinfo_spell.sql +++ /dev/null @@ -1,6 +0,0 @@ -ALTER TABLE db_version CHANGE COLUMN required_7063_01_mangos_spell_proc_event required_7067_01_mangos_playercreateinfo_spell bit; - -ALTER TABLE playercreateinfo_spell - DROP COLUMN Active; - -DELETE FROM playercreateinfo_spell WHERE Spell IN (1178,3025,5419,5420,5421,7376,7381,9635,21156,21178,24905,33948,34123,40121); diff --git a/sql/updates/7067_02_mangos_spell_learn_spell.sql b/sql/updates/7067_02_mangos_spell_learn_spell.sql deleted file mode 100644 index 9c16468afac..00000000000 --- a/sql/updates/7067_02_mangos_spell_learn_spell.sql +++ /dev/null @@ -1,33 +0,0 @@ -ALTER TABLE db_version CHANGE COLUMN required_7067_01_mangos_playercreateinfo_spell required_7067_02_mangos_spell_learn_spell bit; - -ALTER TABLE spell_learn_spell - ADD COLUMN Active tinyint(3) unsigned NOT NULL default '1' AFTER SpellID; - -DELETE FROM spell_learn_spell WHERE Entry IN ( - 71,768,783,1066,2458,2457,5487,5487,9634,9634,17002,24858,24866, - 33872,33873,33891,33891,33943,33943,33943,40123,40123 -); - -INSERT INTO spell_learn_spell VALUES -(71,7376,0), -(768,3025,0), -(783,5419,0), -(1066,5421,0), -(2457,21156,0), -(2458,7381,0), -(5487,1178,0), -(5487,21178,0), -(9634,9635,0), -(9634,21178,0), -(17002,24867,0), -(24858,24905,0), -(24866,24864,0), -(33872,47179,0), -(33873,47180,0), -(33891,5420,0), -(33891,34123,0), -(33943,33948,0), -(33943,34090,1), -(33943,34764,0), -(40123,40121,0), -(40123,40122,0); diff --git a/sql/updates/7067_03_characters_character_spell.sql b/sql/updates/7067_03_characters_character_spell.sql deleted file mode 100644 index 7dd21221061..00000000000 --- a/sql/updates/7067_03_characters_character_spell.sql +++ /dev/null @@ -1,3 +0,0 @@ -ALTER TABLE character_db_version CHANGE COLUMN required_7059_02_characters_pet_spell required_7067_03_characters_character_spell bit; - -DELETE FROM `character_spell` WHERE `spell` IN (7376,3025,5419,5421,21156,7381,1178,21178,9635,21178,24905,5420,34123,33948,34090,34764,40121,40122); diff --git a/sql/updates/7074_01_mangos_playercreateinfo_spell.sql b/sql/updates/7074_01_mangos_playercreateinfo_spell.sql deleted file mode 100644 index 7bf0b677557..00000000000 --- a/sql/updates/7074_01_mangos_playercreateinfo_spell.sql +++ /dev/null @@ -1,2797 +0,0 @@ -ALTER TABLE db_version CHANGE COLUMN required_7067_02_mangos_spell_learn_spell required_7074_01_mangos_playercreateinfo_spell bit; - -DELETE FROM `playercreateinfo_spell`; - -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,20154,'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'), -(1,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,20154,'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'), -(5,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,26296,'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,20554,'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,20554,'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,50621,'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,20554,'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,20554,'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,28734,'Mana Tap'), -(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,28734,'Mana Tap'), -(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,28734,'Mana Tap'), -(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,28734,'Mana Tap'), -(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,28734,'Mana Tap'), -(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,28734,'Mana Tap'), -(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,202,'Two-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'); diff --git a/sql/updates/7075_01_characters_character_spell.sql b/sql/updates/7075_01_characters_character_spell.sql deleted file mode 100644 index 0ec8e2f2558..00000000000 --- a/sql/updates/7075_01_characters_character_spell.sql +++ /dev/null @@ -1,13 +0,0 @@ -ALTER TABLE character_db_version CHANGE COLUMN required_7067_03_characters_character_spell required_7075_01_characters_character_spell bit; - -DELETE FROM character_spell WHERE `spell` IN ( - 20580, /*old Shadowmeld*/ - 20600, /*Perception*/ - 21009, /*old Shadowmeld Passive and new Elusiveness (learned as racial passive)*/ - 21184 /*old Seal of Righteousness*/ -); - - -/*old Shadow Resistance, leaned as racial passive of race 5 */ -DELETE FROM character_spell USING character_spell INNER JOIN characters ON character_spell.guid = characters.guid -WHERE character_spell.spell = 20579 AND characters.race <> 5; diff --git a/sql/updates/7075_02_mangos_spell_learn_spell.sql b/sql/updates/7075_02_mangos_spell_learn_spell.sql deleted file mode 100644 index 4aec0314a27..00000000000 --- a/sql/updates/7075_02_mangos_spell_learn_spell.sql +++ /dev/null @@ -1,6 +0,0 @@ -ALTER TABLE db_version CHANGE COLUMN required_7074_01_mangos_playercreateinfo_spell required_7075_02_mangos_spell_learn_spell bit; - -DELETE FROM spell_learn_spell WHERE Entry = 58984; - -INSERT INTO spell_learn_spell VALUES -(58984,21009,1); diff --git a/sql/updates/7077_01_characters_character_spell.sql b/sql/updates/7077_01_characters_character_spell.sql deleted file mode 100644 index b68f99b1d39..00000000000 --- a/sql/updates/7077_01_characters_character_spell.sql +++ /dev/null @@ -1,214 +0,0 @@ -ALTER TABLE character_db_version CHANGE COLUMN required_7075_01_characters_character_spell required_7077_01_characters_character_spell bit; - -UPDATE IGNORE character_spell SET spell = 2018 WHERE spell = 2020; -DELETE FROM character_spell WHERE spell = 2020; - -UPDATE IGNORE character_spell SET spell = 2018 WHERE spell = 2020; -DELETE FROM character_spell WHERE spell = 2020; - -UPDATE IGNORE character_spell SET spell = 3100 WHERE spell = 2021; -DELETE FROM character_spell WHERE spell = 2021; - -UPDATE IGNORE character_spell SET spell = 3104 WHERE spell = 2154; -DELETE FROM character_spell WHERE spell = 2154; - -UPDATE IGNORE character_spell SET spell = 2108 WHERE spell = 2155; -DELETE FROM character_spell WHERE spell = 2155; - -UPDATE IGNORE character_spell SET spell = 2259 WHERE spell = 2275; -DELETE FROM character_spell WHERE spell = 2275; - -UPDATE IGNORE character_spell SET spell = 3101 WHERE spell = 2280; -DELETE FROM character_spell WHERE spell = 2280; - -UPDATE IGNORE character_spell SET spell = 2366 WHERE spell = 2372; -DELETE FROM character_spell WHERE spell = 2372; - -UPDATE IGNORE character_spell SET spell = 2368 WHERE spell = 2373; -DELETE FROM character_spell WHERE spell = 2373; - -UPDATE IGNORE character_spell SET spell = 2550 WHERE spell = 2551; -DELETE FROM character_spell WHERE spell = 2551; - -UPDATE IGNORE character_spell SET spell = 2575 WHERE spell = 2581; -DELETE FROM character_spell WHERE spell = 2581; - -UPDATE IGNORE character_spell SET spell = 2576 WHERE spell = 2582; -DELETE FROM character_spell WHERE spell = 2582; - -UPDATE IGNORE character_spell SET spell = 3273 WHERE spell = 3279; -DELETE FROM character_spell WHERE spell = 3279; - -UPDATE IGNORE character_spell SET spell = 3274 WHERE spell = 3280; -DELETE FROM character_spell WHERE spell = 3280; - -UPDATE IGNORE character_spell SET spell = 3102 WHERE spell = 3412; -DELETE FROM character_spell WHERE spell = 3412; - -UPDATE IGNORE character_spell SET spell = 3464 WHERE spell = 3465; -DELETE FROM character_spell WHERE spell = 3465; - -UPDATE IGNORE character_spell SET spell = 3538 WHERE spell = 3539; -DELETE FROM character_spell WHERE spell = 3539; - -UPDATE IGNORE character_spell SET spell = 3564 WHERE spell = 3568; -DELETE FROM character_spell WHERE spell = 3568; - -UPDATE IGNORE character_spell SET spell = 3570 WHERE spell = 3571; -DELETE FROM character_spell WHERE spell = 3571; - -UPDATE IGNORE character_spell SET spell = 3811 WHERE spell = 3812; -DELETE FROM character_spell WHERE spell = 3812; - -UPDATE IGNORE character_spell SET spell = 3908 WHERE spell = 3911; -DELETE FROM character_spell WHERE spell = 3911; - -UPDATE IGNORE character_spell SET spell = 3909 WHERE spell = 3912; -DELETE FROM character_spell WHERE spell = 3912; - -UPDATE IGNORE character_spell SET spell = 3910 WHERE spell = 3913; -DELETE FROM character_spell WHERE spell = 3913; - -UPDATE IGNORE character_spell SET spell = 4036 WHERE spell = 4039; -DELETE FROM character_spell WHERE spell = 4039; - -UPDATE IGNORE character_spell SET spell = 4037 WHERE spell = 4040; -DELETE FROM character_spell WHERE spell = 4040; - -UPDATE IGNORE character_spell SET spell = 4038 WHERE spell = 4041; -DELETE FROM character_spell WHERE spell = 4041; - -UPDATE IGNORE character_spell SET spell = 7620 WHERE spell = 7733; -DELETE FROM character_spell WHERE spell = 7733; - -UPDATE IGNORE character_spell SET spell = 7731 WHERE spell = 7734; -DELETE FROM character_spell WHERE spell = 7734; - -UPDATE IGNORE character_spell SET spell = 8613 WHERE spell = 8615; -DELETE FROM character_spell WHERE spell = 8615; - -UPDATE IGNORE character_spell SET spell = 8617 WHERE spell = 8619; -DELETE FROM character_spell WHERE spell = 8619; - -UPDATE IGNORE character_spell SET spell = 8618 WHERE spell = 8620; -DELETE FROM character_spell WHERE spell = 8620; - -UPDATE IGNORE character_spell SET spell = 9785 WHERE spell = 9786; -DELETE FROM character_spell WHERE spell = 9786; - -UPDATE IGNORE character_spell SET spell = 10248 WHERE spell = 10249; -DELETE FROM character_spell WHERE spell = 10249; - -UPDATE IGNORE character_spell SET spell = 10662 WHERE spell = 10663; -DELETE FROM character_spell WHERE spell = 10663; - -UPDATE IGNORE character_spell SET spell = 10768 WHERE spell = 10769; -DELETE FROM character_spell WHERE spell = 10769; - -UPDATE IGNORE character_spell SET spell = 11611 WHERE spell = 11612; -DELETE FROM character_spell WHERE spell = 11612; - -UPDATE IGNORE character_spell SET spell = 11993 WHERE spell = 11994; -DELETE FROM character_spell WHERE spell = 11994; - -UPDATE IGNORE character_spell SET spell = 12180 WHERE spell = 12181; -DELETE FROM character_spell WHERE spell = 12181; - -UPDATE IGNORE character_spell SET spell = 12656 WHERE spell = 12657; -DELETE FROM character_spell WHERE spell = 12657; - -UPDATE IGNORE character_spell SET spell = 25229 WHERE spell = 25245; -DELETE FROM character_spell WHERE spell = 25245; - -UPDATE IGNORE character_spell SET spell = 25230 WHERE spell = 25246; -DELETE FROM character_spell WHERE spell = 25246; - -UPDATE IGNORE character_spell SET spell = 26790 WHERE spell = 26791; -DELETE FROM character_spell WHERE spell = 26791; - -UPDATE IGNORE character_spell SET spell = 28596 WHERE spell = 28597; -DELETE FROM character_spell WHERE spell = 28597; - -UPDATE IGNORE character_spell SET spell = 28695 WHERE spell = 28696; -DELETE FROM character_spell WHERE spell = 28696; - -UPDATE IGNORE character_spell SET spell = 28894 WHERE spell = 28896; -DELETE FROM character_spell WHERE spell = 28896; - -UPDATE IGNORE character_spell SET spell = 28895 WHERE spell = 28899; -DELETE FROM character_spell WHERE spell = 28899; - -UPDATE IGNORE character_spell SET spell = 28897 WHERE spell = 28901; -DELETE FROM character_spell WHERE spell = 28901; - -UPDATE IGNORE character_spell SET spell = 29354 WHERE spell = 29355; -DELETE FROM character_spell WHERE spell = 29355; - -UPDATE IGNORE character_spell SET spell = 29844 WHERE spell = 29845; -DELETE FROM character_spell WHERE spell = 29845; - -UPDATE IGNORE character_spell SET spell = 30350 WHERE spell = 30351; -DELETE FROM character_spell WHERE spell = 30351; - -UPDATE IGNORE character_spell SET spell = 32549 WHERE spell = 32550; -DELETE FROM character_spell WHERE spell = 32550; - -UPDATE IGNORE character_spell SET spell = 32678 WHERE spell = 32679; -DELETE FROM character_spell WHERE spell = 32679; - -UPDATE IGNORE character_spell SET spell = 45357 WHERE spell = 45375; -DELETE FROM character_spell WHERE spell = 45375; - -UPDATE IGNORE character_spell SET spell = 45358 WHERE spell = 45376; -DELETE FROM character_spell WHERE spell = 45376; - -UPDATE IGNORE character_spell SET spell = 45359 WHERE spell = 45377; -DELETE FROM character_spell WHERE spell = 45377; - -UPDATE IGNORE character_spell SET spell = 45360 WHERE spell = 45378; -DELETE FROM character_spell WHERE spell = 45378; - -UPDATE IGNORE character_spell SET spell = 45361 WHERE spell = 45379; -DELETE FROM character_spell WHERE spell = 45379; - -UPDATE IGNORE character_spell SET spell = 45363 WHERE spell = 45380; -DELETE FROM character_spell WHERE spell = 45380; - -UPDATE IGNORE character_spell SET spell = 45542 WHERE spell = 50299; -DELETE FROM character_spell WHERE spell = 50299; - -UPDATE IGNORE character_spell SET spell = 50305 WHERE spell = 50307; -DELETE FROM character_spell WHERE spell = 50307; - -UPDATE IGNORE character_spell SET spell = 50310 WHERE spell = 50309; -DELETE FROM character_spell WHERE spell = 50309; - -UPDATE IGNORE character_spell SET spell = 51294 WHERE spell = 51293; -DELETE FROM character_spell WHERE spell = 51293; - -UPDATE IGNORE character_spell SET spell = 51296 WHERE spell = 51295; -DELETE FROM character_spell WHERE spell = 51295; - -UPDATE IGNORE character_spell SET spell = 51300 WHERE spell = 51298; -DELETE FROM character_spell WHERE spell = 51298; - -UPDATE IGNORE character_spell SET spell = 51302 WHERE spell = 51301; -DELETE FROM character_spell WHERE spell = 51301; - -UPDATE IGNORE character_spell SET spell = 51304 WHERE spell = 51303; -DELETE FROM character_spell WHERE spell = 51303; - -UPDATE IGNORE character_spell SET spell = 51306 WHERE spell = 51305; -DELETE FROM character_spell WHERE spell = 51305; - -UPDATE IGNORE character_spell SET spell = 51309 WHERE spell = 51308; -DELETE FROM character_spell WHERE spell = 51308; - -UPDATE IGNORE character_spell SET spell = 51311 WHERE spell = 51310; -DELETE FROM character_spell WHERE spell = 51310; - -UPDATE IGNORE character_spell SET spell = 51313 WHERE spell = 51312; -DELETE FROM character_spell WHERE spell = 51312; - -UPDATE IGNORE character_spell SET spell = 33095 WHERE spell = 54084; -DELETE FROM character_spell WHERE spell = 54084; diff --git a/sql/updates/7078_01_mangos_spell_proc_event.sql b/sql/updates/7078_01_mangos_spell_proc_event.sql deleted file mode 100644 index ba5369582a2..00000000000 --- a/sql/updates/7078_01_mangos_spell_proc_event.sql +++ /dev/null @@ -1,23 +0,0 @@ -ALTER TABLE db_version CHANGE COLUMN required_7075_02_mangos_spell_learn_spell required_7078_01_mangos_spell_proc_event bit; - --- (31871) Divine Purpose (Rank 1) -DELETE FROM `spell_proc_event` WHERE `entry` IN (31871); -INSERT INTO `spell_proc_event` VALUES (31871, 0x00, 10, 0x00000010, 0x00000000, 0x00000000, 0x00004000, 0x00000000, 0.000000, 0.000000, 0); - --- (31872) Divine Purpose (Rank 2) -DELETE FROM `spell_proc_event` WHERE `entry` IN (31872); -INSERT INTO `spell_proc_event` VALUES (31872, 0x00, 10, 0x00000010, 0x00000000, 0x00000000, 0x00004000, 0x00000000, 0.000000, 0.000000, 0); - --- (44394) Incanter's Absorption (Rank 1) -DELETE FROM `spell_proc_event` WHERE `entry` IN (44394); -INSERT INTO `spell_proc_event` VALUES (44394, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000400, 0.000000, 0.000000, 0); - --- (44395) Incanter's Absorption (Rank 2) -DELETE FROM `spell_proc_event` WHERE `entry` IN (44395); -INSERT INTO `spell_proc_event` VALUES (44395, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000400, 0.000000, 0.000000, 0); - --- (44396) Incanter's Absorption (Rank 3) -DELETE FROM `spell_proc_event` WHERE `entry` IN (44396); -INSERT INTO `spell_proc_event` VALUES (44396, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000400, 0.000000, 0.000000, 0); - - diff --git a/sql/updates/7092_01_mangos_player_xp_for_level.sql b/sql/updates/7092_01_mangos_player_xp_for_level.sql deleted file mode 100644 index aa4fabd2866..00000000000 --- a/sql/updates/7092_01_mangos_player_xp_for_level.sql +++ /dev/null @@ -1,93 +0,0 @@ -ALTER TABLE db_version CHANGE COLUMN required_7078_01_mangos_spell_proc_event required_7092_01_mangos_player_xp_for_level bit; - -DROP TABLE IF EXISTS `player_xp_for_level`; -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; - --- --- Dumping data for table `player_xp_for_level` --- - -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');
\ No newline at end of file diff --git a/sql/updates/7097_01_mangos_spell_proc_event.sql b/sql/updates/7097_01_mangos_spell_proc_event.sql deleted file mode 100644 index abccb36c520..00000000000 --- a/sql/updates/7097_01_mangos_spell_proc_event.sql +++ /dev/null @@ -1,58 +0,0 @@ -ALTER TABLE db_version CHANGE COLUMN required_7092_01_mangos_player_xp_for_level required_7097_01_mangos_spell_proc_event bit; - --- (35100) Concussive Barrage (Rank 1) -DELETE FROM `spell_proc_event` WHERE `entry` IN (35100); -INSERT INTO `spell_proc_event` VALUES (35100, 0x00, 9, 0x00003001, 0x00000000, 0x00000000, 0x00010140, 0x00000000, 0.000000, 0.000000, 0); - --- (35102) Concussive Barrage (Rank 2) -DELETE FROM `spell_proc_event` WHERE `entry` IN (35102); -INSERT INTO `spell_proc_event` VALUES (35102, 0x00, 9, 0x00003001, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0); - --- (35103) Concussive Barrage (Rank 3) -DELETE FROM `spell_proc_event` WHERE `entry` IN (35103); -INSERT INTO `spell_proc_event` VALUES (35103, 0x00, 9, 0x00003001, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0); - --- (16164) Elemental Focus () -DELETE FROM `spell_proc_event` WHERE `entry` IN (16164); -INSERT INTO `spell_proc_event` VALUES (16164, 0x00, 11, 0x901000C3, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0); - --- (42770) Second Wind (Rank 2) -DELETE FROM `spell_proc_event` WHERE `entry` IN (42770); -INSERT INTO `spell_proc_event` VALUES (42770, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000, 0); - --- (47580) Pain and Suffering (Rank 1) -DELETE FROM `spell_proc_event` WHERE `entry` IN (47580); -INSERT INTO `spell_proc_event` VALUES (47580, 0x00, 6, 0x00000000, 0x00000000, 0x00000040, 0x00000000, 0x00010000, 0.000000, 0.000000, 0); - --- (47581) Pain and Suffering (Rank 2) -DELETE FROM `spell_proc_event` WHERE `entry` IN (47581); -INSERT INTO `spell_proc_event` VALUES (47581, 0x00, 6, 0x00000000, 0x00000000, 0x00000040, 0x00000000, 0x00010000, 0.000000, 0.000000, 0); - --- (47582) Pain and Suffering (Rank 3) -DELETE FROM `spell_proc_event` WHERE `entry` IN (47582); -INSERT INTO `spell_proc_event` VALUES (47582, 0x00, 6, 0x00000000, 0x00000000, 0x00000040, 0x00000000, 0x00010000, 0.000000, 0.000000, 0); - --- (47535) Rapture (Rank 1) -DELETE FROM `spell_proc_event` WHERE `entry` IN (47535); -INSERT INTO `spell_proc_event` VALUES (47535, 0x00, 6, 0x00001800, 0x00800000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0); - --- (47536) Rapture (Rank 2) -DELETE FROM `spell_proc_event` WHERE `entry` IN (47536); -INSERT INTO `spell_proc_event` VALUES (47536, 0x00, 6, 0x00001800, 0x00800000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0); - --- (47537) Rapture (Rank 3) -DELETE FROM `spell_proc_event` WHERE `entry` IN (47537); -INSERT INTO `spell_proc_event` VALUES (47537, 0x00, 6, 0x00001800, 0x00800000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0); - --- (47538) Rapture (Rank 4) -DELETE FROM `spell_proc_event` WHERE `entry` IN (47538); -INSERT INTO `spell_proc_event` VALUES (47538, 0x00, 6, 0x00001800, 0x00800000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0); - --- (47539) Rapture (Rank 5) -DELETE FROM `spell_proc_event` WHERE `entry` IN (47539); -INSERT INTO `spell_proc_event` VALUES (47539, 0x00, 6, 0x00001800, 0x00800000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0); - --- (61257) Runic Power Back on Snare/Root (Rank 5) -DELETE FROM `spell_proc_event` WHERE `entry` IN (61257); -INSERT INTO `spell_proc_event` VALUES (61257, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x000202A8, 0x00010000, 0.000000, 0.000000, 0); - diff --git a/sql/updates/7100_01_characters_character_spell.sql b/sql/updates/7100_01_characters_character_spell.sql deleted file mode 100644 index 4d65b6c1550..00000000000 --- a/sql/updates/7100_01_characters_character_spell.sql +++ /dev/null @@ -1,39 +0,0 @@ -ALTER TABLE character_db_version CHANGE COLUMN required_7077_01_characters_character_spell required_7100_01_characters_character_spell bit; - -/* Warrior cleanup */ -DELETE FROM `character_spell` WHERE `spell` IN (1715,7372,7373); /* Hamstring old */ -DELETE FROM `character_spell` WHERE `spell` IN (72,17671,1672); /* Mortar Disturb old */ -DELETE FROM `character_spell` WHERE `spell` IN (7384,7887,11584,11586); /* Overpower old */ -DELETE FROM `character_spell` WHERE `spell`=23881; /* Bloodthirst old */ -DELETE FROM `character_spell` WHERE `spell` IN (6552,6554); /* Pummel old */ -DELETE FROM `character_spell` WHERE `spell` IN (694,7400,7402,20559,20560,25266); /* Mocking Blow old */ -/* Druid cleanup */ -DELETE FROM `character_spell` WHERE `spell`=22842; /* Frenzied Regeneration old */ -/* Hunter cleanup */ -DELETE FROM `character_spell` WHERE `spell`=14268; /* Wing Clip r1 old */ -DELETE FROM `character_spell` WHERE `spell`=14267; /* Wing Clip r2 old */ -/* Rogue */ -DELETE FROM `character_spell` WHERE `spell` IN (1766,1767,1768,1769,38768); /* Kick old */ -DELETE FROM `character_spell` WHERE `spell` IN (1776,1777,8629,11285,11286,38764);/* Gouge old */ -DELETE FROM `character_spell` WHERE `spell`=2842; /* Poisons old */ - -/* Hunter's training spells for pets */ -DELETE FROM `character_spell` WHERE `spell` IN (2949,2975,2976,2977,2980,2981,2982,3666,3667,4630,6327,6359,6362, - 7370,7832,7833,7834,7835,7871,7872,7873,7876,7877,7878,7879,7880,7881,7882,7883,7884,7885,7886,8318,8319,11764, - 11765,11768,11769,11772,11773,11776,11777,11781,11782,11783,11786,11787,17254,17262,17263,17264,17265,17266, - 17267,17268,17736,17753,17754,17755,17776,17855,17856,17857,17859,17860,19439,19444,19445,19446,19447,19481, - 19577,19648,19650,19661,19662,19663,19664,19737,19738,19739,20270,20312,20313,20314,20315,20316,20317,20318, - 20319,20320,20321,20322,20323,20324,20326,20327,20329,20377,20378,20379,20380,20381,20382,20383,20384,20385, - 20386,20387,20388,20389,20390,20391,20392,20393,20394,20395,20396,20397,20398,20399,20400,20401,20402,20403, - 20404,20405,20406,20407,20408,20426,20427,20428,20429,20430,20431,20432,20433,20434,20435,23100,23111,23112, - 23146,23149,23150,24424,24440,24441,24451,24454,24455,24463,24464,24475,24476,24477,24580,24581,24582,24584, - 24588,24589,24599,24607,24608,24609,24641,26065,26094,26184,26185,26186,26189,26190,26202,27347,27348,27349, - 27361,27366,27484,27485,27486,27487,27488,27489,27490,27491,27492,27493,27494,27495,27496,27497,27500,28343, - 33703,35299,35300,35302,35303,35304,35305,35306,35307,35308); -DELETE FROM `character_spell` WHERE `spell` IN (1853,14922,14923,14924,14925,14926,14927,27344); -DELETE FROM `character_spell` WHERE `spell` IN (27353,24516,24515,24514,24490); -DELETE FROM `character_spell` WHERE `spell` IN (27354,24513,24512,24511,24494,2119); -UPDATE IGNORE character_spell SET spell = 2108 WHERE spell = 3104; -DELETE FROM character_spell WHERE spell = 3104; -/* This cleanup character_action. This is like delete from character_action where type=0 and action not in character_spell for same player */ -DELETE FROM ca,cs USING `character_action` ca LEFT JOIN `character_spell` cs ON ca.`guid`=cs.`guid` AND ca.`action`=cs.`spell` WHERE ca.`type`=0 AND cs.`guid` IS NULL; diff --git a/sql/updates/7107_01_mangos_string.sql b/sql/updates/7107_01_mangos_string.sql deleted file mode 100644 index bd4ee1ce6e5..00000000000 --- a/sql/updates/7107_01_mangos_string.sql +++ /dev/null @@ -1,7 +0,0 @@ -ALTER TABLE db_version CHANGE COLUMN required_7097_01_mangos_spell_proc_event required_7107_01_mangos_string bit; - -DELETE FROM `mangos_string` WHERE `entry` IN (521,1109,1122); -INSERT INTO `mangos_string` VALUES -(521,'%d - |cffffffff|Hskill:%d|h[%s %s]|h|r %s %s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), -(1109,'%d - %s %s %s %s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), -(1122,'(%u/%u +perm %u +temp %u)',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); diff --git a/sql/updates/7113_01_characters_character_achievement_progress.sql b/sql/updates/7113_01_characters_character_achievement_progress.sql deleted file mode 100644 index 6e38cd9981f..00000000000 --- a/sql/updates/7113_01_characters_character_achievement_progress.sql +++ /dev/null @@ -1,3 +0,0 @@ -ALTER TABLE character_db_version CHANGE COLUMN required_7100_01_characters_character_spell required_7113_01_characters_character_achievement_progress bit; - -DELETE FROM character_achievement_progress WHERE counter=0; diff --git a/sql/updates/7118_01_mangos_skill_discovery_template.sql b/sql/updates/7118_01_mangos_skill_discovery_template.sql deleted file mode 100644 index f854855e64d..00000000000 --- a/sql/updates/7118_01_mangos_skill_discovery_template.sql +++ /dev/null @@ -1,6 +0,0 @@ -ALTER TABLE db_version CHANGE COLUMN required_7107_01_mangos_string required_7118_01_mangos_skill_discovery_template bit; - -ALTER TABLE skill_discovery_template - DROP PRIMARY KEY, - ADD PRIMARY KEY (`spellId`,`reqSpell`), - ADD COLUMN reqClass tinyint(2) unsigned NOT NULL default '0' COMMENT 'class requirement' AFTER reqSpell; diff --git a/sql/updates/7133_01_mangos_skill_discovery_template.sql b/sql/updates/7133_01_mangos_skill_discovery_template.sql deleted file mode 100644 index 85653618cfa..00000000000 --- a/sql/updates/7133_01_mangos_skill_discovery_template.sql +++ /dev/null @@ -1,5 +0,0 @@ -ALTER TABLE db_version CHANGE COLUMN required_7118_01_mangos_skill_discovery_template required_7133_01_mangos_skill_discovery_template bit; - -ALTER TABLE skill_discovery_template - DROP `reqClass`, - ADD COLUMN `reqSkillValue` smallint(5) unsigned NOT NULL default '0' COMMENT 'skill points requirement' AFTER reqSpell; diff --git a/sql/updates/7133_02_mangos_spell_loot_template.sql b/sql/updates/7133_02_mangos_spell_loot_template.sql deleted file mode 100644 index 29b1681fb61..00000000000 --- a/sql/updates/7133_02_mangos_spell_loot_template.sql +++ /dev/null @@ -1,15 +0,0 @@ -ALTER TABLE db_version CHANGE COLUMN required_7133_01_mangos_skill_discovery_template required_7133_02_mangos_spell_loot_template bit; - -DROP TABLE IF EXISTS `spell_loot_template`; -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', - `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'; diff --git a/sql/updates/7147_01_mangos_creature_template.sql b/sql/updates/7147_01_mangos_creature_template.sql deleted file mode 100644 index 286718b8edb..00000000000 --- a/sql/updates/7147_01_mangos_creature_template.sql +++ /dev/null @@ -1,4 +0,0 @@ -ALTER TABLE db_version CHANGE COLUMN required_7141_01_mangos_instance_template required_7147_01_mangos_creature_template bit; - -UPDATE creature_template - SET family = 0 WHERE entry = 1; diff --git a/sql/updates/7149_01_mangos_spell_proc_event.sql b/sql/updates/7149_01_mangos_spell_proc_event.sql deleted file mode 100644 index 1dcaf8e5e3d..00000000000 --- a/sql/updates/7149_01_mangos_spell_proc_event.sql +++ /dev/null @@ -1,21 +0,0 @@ -ALTER TABLE db_version CHANGE COLUMN required_7147_01_mangos_creature_template required_7149_01_mangos_spell_proc_event bit; - --- (53501) Sheath of Light (Rank 1) -DELETE FROM `spell_proc_event` WHERE `entry` IN (53501); -INSERT INTO `spell_proc_event` VALUES (53501, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0); - --- (53502) Sheath of Light (Rank 2) -DELETE FROM `spell_proc_event` WHERE `entry` IN (53502); -INSERT INTO `spell_proc_event` VALUES (53502, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0); - --- (53503) Sheath of Light (Rank 3) -DELETE FROM `spell_proc_event` WHERE `entry` IN (53503); -INSERT INTO `spell_proc_event` VALUES (53503, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0); - --- (53228) Rapid Recuperation (Rank 1) -DELETE FROM `spell_proc_event` WHERE `entry` IN (53228); -INSERT INTO `spell_proc_event` VALUES (53228, 0x00, 9, 0x00000020, 0x01000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0); - --- (53232) Rapid Recuperation (Rank 2) -DELETE FROM `spell_proc_event` WHERE `entry` IN (53232); -INSERT INTO `spell_proc_event` VALUES (53232, 0x00, 9, 0x00000020, 0x01000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0); diff --git a/sql/updates/7156_01_mangos_spell_proc_event.sql b/sql/updates/7156_01_mangos_spell_proc_event.sql deleted file mode 100644 index 82e9d264932..00000000000 --- a/sql/updates/7156_01_mangos_spell_proc_event.sql +++ /dev/null @@ -1,5 +0,0 @@ -ALTER TABLE db_version CHANGE COLUMN required_7150_01_mangos_playercreateinfo_spell required_7156_01_mangos_spell_proc_event bit; - --- (44401) Missile Barrage () -DELETE FROM `spell_proc_event` WHERE `entry` IN (44401); -INSERT INTO `spell_proc_event` VALUES (44401, 0x00, 3, 0x00200000, 0x00000000, 0x00000000, 0x00000000, 0x00000FFF, 0.000000, 0.000000, 0); diff --git a/sql/updates/7175_01_mangos_spell_proc_event.sql b/sql/updates/7175_01_mangos_spell_proc_event.sql deleted file mode 100644 index 57e02defea4..00000000000 --- a/sql/updates/7175_01_mangos_spell_proc_event.sql +++ /dev/null @@ -1,13 +0,0 @@ -ALTER TABLE db_version CHANGE COLUMN required_7168_01_mangos_command required_7175_01_mangos_spell_proc_event bit; - --- (56333) T.N.T. (Rank 1) -DELETE FROM `spell_proc_event` WHERE `entry` IN (56333); -INSERT INTO `spell_proc_event` VALUES (56333, 0x00, 9, 0x00000004, 0x00000000, 0x00000200, 0x00000000, 0x00000000, 0.000000, 0.000000, 0); - --- (56336) T.N.T. (Rank 2) -DELETE FROM `spell_proc_event` WHERE `entry` IN (56336); -INSERT INTO `spell_proc_event` VALUES (56336, 0x00, 9, 0x00000004, 0x00000000, 0x00000200, 0x00000000, 0x00000000, 0.000000, 0.000000, 0); - --- (56337) T.N.T. (Rank 3) -DELETE FROM `spell_proc_event` WHERE `entry` IN (56337); -INSERT INTO `spell_proc_event` VALUES (56337, 0x00, 9, 0x00000004, 0x00000000, 0x00000200, 0x00000000, 0x00000000, 0.000000, 0.000000, 0);
\ No newline at end of file diff --git a/sql/updates/7193_01_mangos_mangos_string.sql b/sql/updates/7193_01_mangos_mangos_string.sql deleted file mode 100644 index bcd05f52ad5..00000000000 --- a/sql/updates/7193_01_mangos_mangos_string.sql +++ /dev/null @@ -1,3 +0,0 @@ -ALTER TABLE db_version CHANGE COLUMN required_7175_01_mangos_spell_proc_event required_7193_01_mangos_mangos_string bit; - -UPDATE mangos_string SET content_default = 'Unit Flags: %u.\nDynamic Flags: %u.\nFaction Template: %u.' WHERE entry = 542;
\ No newline at end of file diff --git a/sql/updates/7196_01_mangos_spell_chain.sql b/sql/updates/7196_01_mangos_spell_chain.sql deleted file mode 100644 index c7ab0569229..00000000000 --- a/sql/updates/7196_01_mangos_spell_chain.sql +++ /dev/null @@ -1,18 +0,0 @@ -ALTER TABLE db_version CHANGE COLUMN required_7193_01_mangos_mangos_string required_7196_01_mangos_spell_chain bit; - -INSERT INTO spell_chain VALUES -/*Tranquility*/ -(44203, 0,44203,1,0), -(44205,44203,44203,2,0), -(44206,44205,44203,3,0), -(44207,44206,44203,4,0), -(44208,44207,44203,5,0), -(48444,44208,44203,6,0), -(48445,48444,44203,7,0), - -/*Hurricane*/ -(42231, 0,42231,1,0), -(42232,42231,42231,2,0), -(42233,42232,42231,3,0), -(42230,42233,42231,4,0), -(48466,42230,42231,5,0);
\ No newline at end of file diff --git a/sql/updates/7199_02_mangos_spell_proc_event.sql b/sql/updates/7199_02_mangos_spell_proc_event.sql deleted file mode 100644 index 51017507e52..00000000000 --- a/sql/updates/7199_02_mangos_spell_proc_event.sql +++ /dev/null @@ -1,49 +0,0 @@ -ALTER TABLE db_version CHANGE COLUMN required_7199_01_mangos_spell_bonus_data required_7199_02_mangos_spell_proc_event bit; - --- (51479) Astral Shift (Rank 3) -DELETE FROM `spell_proc_event` WHERE `entry` IN (51479); -INSERT INTO `spell_proc_event` VALUES (51479, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000, 0); - --- (61846) Aspect of the Dragonhawk (Rank 1) -DELETE FROM `spell_proc_event` WHERE `entry` IN (61846); -INSERT INTO `spell_proc_event` VALUES (61846, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000010, 0.000000, 0.000000, 0); - --- (61847) Aspect of the Dragonhawk (Rank 2) -DELETE FROM `spell_proc_event` WHERE `entry` IN (61847); -INSERT INTO `spell_proc_event` VALUES (61847, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000010, 0.000000, 0.000000, 0); - --- (13163) Aspect of the Monkey () -DELETE FROM `spell_proc_event` WHERE `entry` IN (13163); -INSERT INTO `spell_proc_event` VALUES (13163, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000010, 0.000000, 0.000000, 0); - --- (51940) Earthliving Weapon (Passive) (Rank 1) -DELETE FROM `spell_proc_event` WHERE `entry` IN (51940); -INSERT INTO `spell_proc_event` VALUES (51940, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 20.000000, 0); - --- (51989) Earthliving Weapon (Passive) (Rank 2) -DELETE FROM `spell_proc_event` WHERE `entry` IN (51989); -INSERT INTO `spell_proc_event` VALUES (51989, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 20.000000, 0); - --- (52004) Earthliving Weapon (Passive) (Rank 3) -DELETE FROM `spell_proc_event` WHERE `entry` IN (52004); -INSERT INTO `spell_proc_event` VALUES (52004, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 20.000000, 0); - --- (52005) Earthliving Weapon (Passive) (Rank 4) -DELETE FROM `spell_proc_event` WHERE `entry` IN (52005); -INSERT INTO `spell_proc_event` VALUES (52005, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 20.000000, 0); - --- (52007) Earthliving Weapon (Passive) (Rank 5) -DELETE FROM `spell_proc_event` WHERE `entry` IN (52007); -INSERT INTO `spell_proc_event` VALUES (52007, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 20.000000, 0); - --- (52008) Earthliving Weapon (Passive) (Rank 6) -DELETE FROM `spell_proc_event` WHERE `entry` IN (52008); -INSERT INTO `spell_proc_event` VALUES (52008, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 20.000000, 0); - --- (44442) Firestarter (Rank 1) -DELETE FROM `spell_proc_event` WHERE `entry` IN (44442); -INSERT INTO `spell_proc_event` VALUES (44442, 0x00, 3, 0x00800000, 0x00000040, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000, 1); - --- (44443) Firestarter (Rank 2) -DELETE FROM `spell_proc_event` WHERE `entry` IN (44443); -INSERT INTO `spell_proc_event` VALUES (44443, 0x00, 3, 0x00800000, 0x00000040, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000, 1);
\ No newline at end of file diff --git a/sql/updates/7207_01_mangos_creature.sql b/sql/updates/7207_01_mangos_creature.sql deleted file mode 100644 index 4145e70e2e8..00000000000 --- a/sql/updates/7207_01_mangos_creature.sql +++ /dev/null @@ -1,4 +0,0 @@ -ALTER TABLE db_version CHANGE COLUMN required_7205_01_mangos_spell_chain required_7207_01_mangos_creature bit; - -ALTER TABLE creature - ADD COLUMN `phaseMask` smallint(5) unsigned NOT NULL default '1' AFTER `spawnMask`; diff --git a/sql/updates/7207_02_mangos_gameobject.sql b/sql/updates/7207_02_mangos_gameobject.sql deleted file mode 100644 index ecd53bb810e..00000000000 --- a/sql/updates/7207_02_mangos_gameobject.sql +++ /dev/null @@ -1,4 +0,0 @@ -ALTER TABLE db_version CHANGE COLUMN required_7207_01_mangos_creature required_7207_02_mangos_gameobject bit; - -ALTER TABLE gameobject - ADD COLUMN `phaseMask` smallint(5) unsigned NOT NULL default '1' AFTER `spawnMask`; diff --git a/sql/updates/7207_03_characters_corpse.sql b/sql/updates/7207_03_characters_corpse.sql deleted file mode 100644 index b53c15e9038..00000000000 --- a/sql/updates/7207_03_characters_corpse.sql +++ /dev/null @@ -1,4 +0,0 @@ -ALTER TABLE character_db_version CHANGE COLUMN required_7198_01_characters_characters required_7207_03_characters_corpse bit; - -ALTER TABLE corpse - ADD COLUMN `phaseMask` smallint(5) unsigned NOT NULL default '1' AFTER `map`; diff --git a/sql/updates/741_world.sql b/sql/updates/741_world.sql deleted file mode 100644 index a93d4e2bd01..00000000000 --- a/sql/updates/741_world.sql +++ /dev/null @@ -1,10 +0,0 @@ -REPLACE INTO `command` (`name`,`security`,`help`) VALUES ('ticket list','1','Displays a list of open GM tickets.'); -REPLACE INTO `command` (`name`,`security`,`help`) VALUES ('ticket onlinelist','1','Displays a list of open GM tickets whose owner is online.'); -REPLACE INTO `command` (`name`,`security`,`help`) VALUES ('ticket viewname','1','Usage: .ticket viewname $creatorname. \r\nReturns details about specified ticket. Ticket must be open and not deleted.'); -REPLACE INTO `command` (`name`,`security`,`help`) VALUES ('ticket viewid','1','Usage: .ticket viewid $ticketid.\r\nReturns details about specified ticket. Ticket must be open and not deleted.'); -REPLACE INTO `command` (`name`,`security`,`help`) VALUES ('ticket close','2','Usage: .ticket close $ticketid.\r\nCloses the specified ticket. Does not delete permanently.'); -REPLACE INTO `command` (`name`,`security`,`help`) VALUES ('ticket delete','3','Usage: .ticket delete $ticketid.\r\nDeletes the specified ticket permanently. Ticket must be closed first.'); -REPLACE INTO `command` (`name`,`security`,`help`) VALUES ('ticket assign','3','Usage: .ticket assign $ticketid $gmname.\r\nAssigns the specified ticket to the specified Game Master.'); -REPLACE INTO `command` (`name`,`security`,`help`) VALUES ('ticket unassign','3','Usage: .ticket unassign $ticketid.\r\nUnassigns the specified ticket from the current assigned Game Master.'); -REPLACE INTO `command` (`name`,`security`,`help`) VALUES ('ticket comment','2','Usage: .ticket comment $ticketid $comment.\r\nAllows the adding or modifying of a comment to the specified ticket.'); -REPLACE INTO `command` (`name`,`security`,`help`) VALUES ('reload tickets','4','Usage: .reload tickets.\r\nReloads GM Tickets from the database and re-caches them into memory.'); diff --git a/sql/updates/748_world_scripts.sql b/sql/updates/748_world_scripts.sql deleted file mode 100644 index eb5b7c94992..00000000000 --- a/sql/updates/748_world_scripts.sql +++ /dev/null @@ -1,2 +0,0 @@ -update creature_template set scriptname='npc_infused_crystal', flags_extra=0 where entry=16364; -delete from creature where id=17086;
\ No newline at end of file diff --git a/sql/updates/758_world_scripts.sql b/sql/updates/758_world_scripts.sql deleted file mode 100644 index a988a426df7..00000000000 --- a/sql/updates/758_world_scripts.sql +++ /dev/null @@ -1,5 +0,0 @@ -delete from creature_template_addon where entry = 17225; -update creature_template set scriptname = 'boss_nightbane', unit_flags=0 where entry = 17225; -delete from event_scripts where id = 10951; -insert into event_scripts values -(10951,0,10,17651,180000,0,-11159,-1907.22,91.48,0);
\ No newline at end of file diff --git a/sql/updates/764_world_scripts.sql b/sql/updates/764_world_scripts.sql deleted file mode 100644 index d071d870233..00000000000 --- a/sql/updates/764_world_scripts.sql +++ /dev/null @@ -1,123 +0,0 @@ -DELETE FROM `script_texts` WHERE `entry` BETWEEN -1533039 AND -1533000; -INSERT INTO `script_texts` (`entry`,`content_default`,`sound`,`type`,`language`,`comment`) VALUES -(-1533000,'Ahh... welcome to my parlor.',8788,1,0,'anubrekhan SAY_GREET'), - (-1533001,'Just a little taste...',8785,1,0,'anubrekhan SAY_AGGRO1'), - (-1533002,'There is no way out.',8786,1,0,'anubrekhan SAY_AGGRO2'), - (-1533003,'Yes, Run! It makes the blood pump faster!',8787,1,0,'anubrekhan SAY_AGGRO3'), - (-1533004,'I hear little hearts beating. Yesss... beating faster now. Soon the beating will stop.',8790,1,0,'anubrekhan SAY_TAUNT1'), - (-1533005,'Where to go? What to do? So many choices that all end in pain, end in death.',8791,1,0,'anubrekhan SAY_TAUNT2'), - (-1533006,'Which one shall I eat first? So difficult to choose... the all smell so delicious.',8792,1,0,'anubrekhan SAY_TAUNT3'), - (-1533007,'Closer now... tasty morsels. I\'ve been too long without food. Without blood to drink.',8793,1,0,'anubrekhan SAY_TAUNT4'), - (-1533008,'Shh... it will all be over soon.',8789,1,0,'anubrekhan SAY_SLAY'), - (-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!',8799,1,0,'faerlina SAY_GREET'), - (-1533010,'Slay them in the master\'s name!',8794,1,0,'faerlina SAY_AGGRO1'), - (-1533011,'You cannot hide from me!',8795,1,0,'faerlina SAY_AGGRO2'), - (-1533012,'Kneel before me, worm!',8796,1,0,'faerlina SAY_AGGRO3'), - (-1533013,'Run while you still can!',8797,1,0,'faerlina SAY_AGGRO4'), - (-1533014,'You have failed!',8800,1,0,'faerlina SAY_SLAY1'), - (-1533015,'Pathetic wretch!',8801,1,0,'faerlina SAY_SLAY2'), - (-1533016,'The master... will avenge me!',8798,1,0,'faerlina SAY_DEATH'), - (-1533017,'Patchwerk want to play!',8909,1,0,'patchwerk SAY_AGGRO1'), - (-1533018,'Kel\'Thuzad make Patchwerk his Avatar of War!',8910,1,0,'patchwerk SAY_AGGRO2'), - (-1533019,'No more play?',8912,1,0,'patchwerk SAY_SLAY'), - (-1533020,'What happened to... Patch...',8911,1,0,'patchwerk SAY_DEATH'), - (-1533021,'goes into a berserker rage!',0,2,0,'patchwerk EMOTE_BERSERK'), - (-1533022,'becomes enraged!',0,2,0,'patchwerk EMOTE_ENRAGE'), - (-1533023,'Stalagg crush you!',8864,1,0,'stalagg SAY_STAL_AGGRO'), - (-1533024,'Stalagg kill!',8866,1,0,'stalagg SAY_STAL_SLAY'), - (-1533025,'Master save me...',8865,1,0,'stalagg SAY_STAL_DEATH'), - (-1533026,'Feed you to master!',8802,1,0,'feugen SAY_FEUG_AGGRO'), - (-1533027,'Feugen make master happy!',8804,1,0,'feugen SAY_FEUG_SLAY'), - (-1533028,'No... more... Feugen...',8803,1,0,'feugen SAY_FEUG_DEATH'), - (-1533029,'You are too late... I... must... OBEY!',8872,1,0,'thaddius SAY_GREET'), - (-1533030,'KILL!',8867,1,0,'thaddius SAY_AGGRO1'), - (-1533031,'EAT YOUR BONES!',8868,1,0,'thaddius SAY_AGGRO2'), - (-1533032,'BREAK YOU!',8869,1,0,'thaddius SAY_AGGRO3'), - (-1533033,'You die now!',8877,1,0,'thaddius SAY_SLAY'), - (-1533034,'Now YOU feel pain!',8871,1,0,'thaddius SAY_ELECT'), - (-1533035,'Thank... you...',8870,1,0,'thaddius SAY_DEATH'), - (-1533036,'Pleeease!',8873,1,0,'thaddius SAY_SCREAM1'), - (-1533037,'Stop, make it stop!',8874,1,0,'thaddius SAY_SCREAM2'), - (-1533038,'Help me! Save me!',8875,1,0,'thaddius SAY_SCREAM3'), - (-1533039,'Please, nooo!',8876,1,0,'thaddius SAY_SCREAM4'); - -DELETE FROM `script_texts` WHERE `entry` BETWEEN -1533074 AND -1533040; - INSERT INTO `script_texts` (`entry`,`content_default`,`sound`,`type`,`language`,`comment`) VALUES - (-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.',8807,1,0,'gothik SAY_SPEECH'), - (-1533041,'Death is the only escape.',8806,1,0,'gothik SAY_KILL'), - (-1533042,'I... am... undone!',8805,1,0,'gothik SAY_DEATH'), - (-1533043,'I have waited long enough! Now, you face the harvester of souls!',8808,1,0,'gothik SAY_TELEPORT'), - (-1533044,'Defend youself!',8892,1,0,'blaumeux SAY_BLAU_AGGRO'), - (-1533045,'Come, Zeliek, do not drive them out. Not before we\'ve had our fun.',8896,1,0,'blaumeux SAY_BLAU_TAUNT1'), - (-1533046,'I do hope they stay alive long enough for me to... introduce myself.',8897,1,0,'blaumeux SAY_BLAU_TAUNT2'), - (-1533047,'The first kill goes to me! Anyone care to wager?',8898,1,0,'blaumeux SAY_BLAU_TAUNT3'), - (-1533048,'Your life is mine!',8895,1,0,'blaumeux SAY_BLAU_SPECIAL'), - (-1533049,'Who\'s next?',8894,1,0,'blaumeux SAY_BLAU_SLAY'), - (-1533050,'Tou... che!',8893,1,0,'blaumeux SAY_BLAU_DEATH'), - (-1533051,'Come out and fight, ye wee ninny!',8899,1,0,'korthazz SAY_KORT_AGGRO'), - (-1533052,'To arms, ye roustabouts! We\'ve got company!',8903,1,0,'korthazz SAY_KORT_TAUNT1'), - (-1533053,'I heard about enough of yer sniveling. Shut yer fly trap \'afore I shut it for ye!',8904,1,0,'korthazz SAY_KORT_TAUNT2'), - (-1533054,'I\'m gonna enjoy killin\' these slack-jawed daffodils!',8905,1,0,'korthazz SAY_KORT_TAUNT3'), - (-1533055,'I like my meat extra crispy!',8901,1,0,'korthazz SAY_KORT_SPECIAl'), - (-1533056,'Next time, bring more friends!',8902,1,0,'korthazz SAY_KORT_SLAY'), - (-1533057,'What a bloody waste this is!',8900,1,0,'korthazz SAY_KORT_DEATH'), - (-1533058,'Flee, before it\'s too late!',8913,1,0,'zeliek SAY_ZELI_AGGRO'), - (-1533059,'Invaders, cease this foolish venture at once! Turn away while you still can!',8917,1,0,'zeliek SAY_ZELI_TAUNT1'), - (-1533060,'Perhaps they will come to their senses, and run away as fast as they can!',8918,1,0,'zeliek SAY_ZELI_TAUNT2'), - (-1533061,'Do not continue! Turn back while there\'s still time!',8919,1,0,'zeliek SAY_ZELI_TAUNT3'), - (-1533062,'I- I have no choice but to obey!',8916,1,0,'zeliek SAY_ZELI_SPECIAL'), - (-1533063,'Forgive me!',8915,1,0,'zeliek SAY_ZELI_SLAY'), - (-1533064,'It is... as it should be.',8914,1,0,'zeliek SAY_ZELI_DEATH'), - (-1533065,'You seek death?',14571,1,0,'rivendare_naxx SAY_RIVE_AGGRO1'), - (-1533066,'None shall pass!',14572,1,0,'rivendare_naxx SAY_RIVE_AGGRO2'), - (-1533067,'Be still!',14573,1,0,'rivendare_naxx SAY_RIVE_AGGRO3'), - (-1533068,'You will find no peace in death.',14574,1,0,'rivendare_naxx SAY_RIVE_SLAY1'), - (-1533069,'The master\'s will is done.',14575,1,0,'rivendare_naxx SAY_RIVE_SLAY2'), - (-1533070,'Bow to the might of the scourge!',14576,1,0,'rivendare_naxx SAY_RIVE_SPECIAL'), - (-1533071,'Enough prattling. Let them come! We shall grind their bones to dust.',14577,1,0,'rivendare_naxx SAY_RIVE_TAUNT1'), - (-1533072,'Conserve your anger! Harness your rage! You will all have outlets for your frustration soon enough.',14578,1,0,'rivendare_naxx SAY_RIVE_TAUNT2'), - (-1533073,'Life is meaningless. It is in death that we are truly tested.',14579,1,0,'rivendare_naxx SAY_RIVE_TAUNT3'), - (-1533074,'Death... will not stop me...',14580,1,0,'rivendare_naxx SAY_RIVE_DEATH'); - -UPDATE `creature_template` SET `ScriptName`='' WHERE `entry`=16062; -UPDATE `creature_template` SET `ScriptName`='boss_rivendare_naxx' WHERE `entry`=30549; - -DELETE FROM `script_texts` WHERE `entry` BETWEEN -1533108 AND -1533075; - INSERT INTO `script_texts` (`entry`,`content_default`,`sound`,`type`,`language`,`comment`) VALUES - (-1533075,'Glory to the master!',8845,1,0,'noth SAY_AGGRO1'), - (-1533076,'Your life is forfeit!',8846,1,0,'noth SAY_AGGRO2'), - (-1533077,'Die, trespasser!',8847,1,0,'noth SAY_AGGRO3'), - (-1533078,'Rise, my soldiers! Rise and fight once more!',8851,1,0,'noth SAY_SUMMON'), - (-1533079,'My task is done!',8849,1,0,'noth SAY_SLAY1'), - (-1533080,'Breathe no more!',8850,1,0,'noth SAY_SLAY2'), - (-1533081,'I will serve the master... in... death!',8848,1,0,'noth SAY_DEATH'), - (-1533082,'takes in a deep breath...',0,2,0,'sapphiron EMOTE_BREATH'), - (-1533083,'enrages!',0,2,0,'sapphiron EMOTE_ENRAGE'), - (-1533084,'Our preparations continue as planned, master.',14467,1,0,'kelthuzad SAY_SAPP_DIALOG1'), - (-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.',8881,1,0,'kelthuzad SAY_SAPP_DIALOG2_LICH'), - (-1533086,'I see no complications... Wait... What is this?',14468,1,0,'kelthuzad SAY_SAPP_DIALOG3'), - (-1533087,'Your security measures have failed! See to this interruption immediately!',8882,1,0,'kelthuzad SAY_SAPP_DIALOG4_LICH'), - (-1533088,'Yes, master!',14469,1,0,'kelthuzad SAY_SAPP_DIALOG5'), - (-1533089,'No!!! A curse upon you, interlopers! The armies of the Lich King will hunt you down. You will not escape your fate...',14484,1,0,'kelthuzad SAY_CAT_DIED'), - (-1533090,'Who dares violate the sanctity of my domain? Be warned, all who trespass here are doomed.',14463,1,0,'kelthuzad SAY_TAUNT1'), - (-1533091,'Fools, you think yourselves triumphant? You have only taken one step closer to the abyss! ',14464,1,0,'kelthuzad SAY_TAUNT2'), - (-1533092,'I grow tired of these games. Proceed, and I will banish your souls to oblivion!',14465,1,0,'kelthuzad SAY_TAUNT3'), - (-1533093,'You have no idea what horrors lie ahead. You have seen nothing! The frozen heart of Naxxramas awaits you!',14466,1,0,'kelthuzad SAY_TAUNT4'), - (-1533094,'Pray for mercy!',14475,1,0,'kelthuzad SAY_AGGRO1'), - (-1533095,'Scream your dying breath!',14476,1,0,'kelthuzad SAY_AGGRO2'), - (-1533096,'The end is upon you!',14477,1,0,'kelthuzad SAY_AGGRO3'), - (-1533097,'The dark void awaits you!',14478,1,0,'kelthuzad SAY_SLAY1'), - (-1533098,'<Kel\'Thuzad cackles maniacally!>',14479,1,0,'kelthuzad SAY_SLAY2'), - (-1533099,'AAAAGHHH!... Do not rejoice... your victory is a hollow one... for I shall return with powers beyond your imagining!',14480,1,0,'kelthuzad SAY_DEATH'), - (-1533100,'Your soul, is bound to me now!',14472,1,0,'kelthuzad SAY_CHAIN1'), - (-1533101,'There will be no escape!',14473,1,0,'kelthuzad SAY_CHAIN2'), - (-1533102,'I will freeze the blood in your veins!',14474,1,0,'kelthuzad SAY_FROST_BLAST'), - (-1533103,'Master! I require aid! ',14470,1,0,'kelthuzad SAY_REQUEST_AID'), - (-1533104,'Very well... warriors of the frozen wastes, rise up! I command you to fight, kill, and die for your master. Let none survive...',0,1,0,'kelthuzad SAY_ANSWER_REQUEST'), - (-1533105,'Minions, servants, soldiers of the cold dark, obey the call of Kel\'Thuzad!',14471,1,0,'kelthuzad SAY_SUMMON_MINIONS'), - (-1533106,'Your petty magics are no challenge to the might of the Scourge! ',14481,1,0,'kelthuzad SAY_SPECIAL1_MANA_DET'), - (-1533107,'Enough! I grow tired of these distractions! ',14483,1,0,'kelthuzad SAY_SPECIAL3_MANA_DET'), - (-1533108,'Fools, you have spread your powers too thin. Be free, my minions!',14482,1,0,'kelthuzad SAY_SPECIAL2_DISPELL'); - - UPDATE `script_texts` SET `sound`=8902 WHERE `entry`=-1533055; - UPDATE `script_texts` SET `sound`=8901 WHERE `entry`=-1533056;
\ No newline at end of file diff --git a/sql/updates/789_world.sql b/sql/updates/789_world.sql deleted file mode 100644 index 0c51d1b3fac..00000000000 --- a/sql/updates/789_world.sql +++ /dev/null @@ -1 +0,0 @@ -ALTER TABLE eventai_texts DROP COLUMN emote;
\ No newline at end of file diff --git a/sql/updates/807_world_scripts.sql b/sql/updates/807_world_scripts.sql deleted file mode 100644 index b3729d12f6b..00000000000 --- a/sql/updates/807_world_scripts.sql +++ /dev/null @@ -1 +0,0 @@ -update creature_template set scriptname='npc_isla_starmane' where entry=18760;
\ No newline at end of file diff --git a/sql/updates/822_world_scripts.sql b/sql/updates/822_world_scripts.sql deleted file mode 100644 index f7a7016dcf7..00000000000 --- a/sql/updates/822_world_scripts.sql +++ /dev/null @@ -1,3 +0,0 @@ -update creature_template set scriptname='npc_kayra_longmane' where entry=17969; -delete from creature_template_addon where entry=17969; -update quest_template set specialflags=2 where entry=9752;
\ No newline at end of file diff --git a/sql/updates/826_world_scripts.sql b/sql/updates/826_world_scripts.sql deleted file mode 100644 index b125225744f..00000000000 --- a/sql/updates/826_world_scripts.sql +++ /dev/null @@ -1 +0,0 @@ -UPDATE `creature_template` SET `ScriptName` = 'npc_ruul_snowhoof' WHERE `entry` = 12818;
\ No newline at end of file diff --git a/sql/updates/833_world_scripts.sql b/sql/updates/833_world_scripts.sql deleted file mode 100644 index ad68e7a1da0..00000000000 --- a/sql/updates/833_world_scripts.sql +++ /dev/null @@ -1,2 +0,0 @@ -update creature_template set scriptname='npc_dirty_larry', unit_flags=0, flags_extra=0 where entry=19720; -update creature_template set unit_flags=0, flags_extra=0 where entry in (19726, 19725);
\ No newline at end of file diff --git a/sql/updates/837_world_scripts.sql b/sql/updates/837_world_scripts.sql deleted file mode 100644 index 9146566cf18..00000000000 --- a/sql/updates/837_world_scripts.sql +++ /dev/null @@ -1 +0,0 @@ -update creature_template set scriptname='npc_khadgar' where entry=18166;
\ No newline at end of file diff --git a/sql/updates/838_world_scripts.sql b/sql/updates/838_world_scripts.sql deleted file mode 100644 index bb7f56c059d..00000000000 --- a/sql/updates/838_world_scripts.sql +++ /dev/null @@ -1,4 +0,0 @@ -delete from spell_script_target where entry=42222; -insert into `spell_script_target` values -('42222','1','23616'); -update `creature_template` set `scriptname`='npc_kyle_frenzied' where `entry`='23616'; diff --git a/sql/updates/839_world_scripts.sql b/sql/updates/839_world_scripts.sql deleted file mode 100644 index 722737ea3b0..00000000000 --- a/sql/updates/839_world_scripts.sql +++ /dev/null @@ -1 +0,0 @@ -update creature_template set scriptname='npc_wizzlecrank_shredder' where entry=3439;
\ No newline at end of file diff --git a/sql/updates/840_world_scripts.sql b/sql/updates/840_world_scripts.sql deleted file mode 100644 index 8b0140b6dbb..00000000000 --- a/sql/updates/840_world_scripts.sql +++ /dev/null @@ -1 +0,0 @@ -UPDATE `creature_template` SET `spell1` = 0, `flags_extra` = 0, `ScriptName` = 'npc_volcano' WHERE `entry` = 23085;
\ No newline at end of file diff --git a/sql/updates/841_world_scripts.sql b/sql/updates/841_world_scripts.sql deleted file mode 100644 index f23cb8f8cc8..00000000000 --- a/sql/updates/841_world_scripts.sql +++ /dev/null @@ -1 +0,0 @@ -update creature_template set scriptname='npc_greengill_slave' where entry=25084;
\ No newline at end of file diff --git a/sql/updates/850_world_scripts.sql b/sql/updates/850_world_scripts.sql deleted file mode 100644 index 720465b63f0..00000000000 --- a/sql/updates/850_world_scripts.sql +++ /dev/null @@ -1 +0,0 @@ -UPDATE creature_template SET ScriptName = 'npc_bessy' WHERE entry = 20415;
\ No newline at end of file diff --git a/sql/updates/852_world_scripts.sql b/sql/updates/852_world_scripts.sql deleted file mode 100644 index 96b5c7d6e71..00000000000 --- a/sql/updates/852_world_scripts.sql +++ /dev/null @@ -1,2 +0,0 @@ -update creature_template set scriptname='mob_nestlewood_owlkin' where entry=16518; -update item_template set scriptname='item_inoculating_crystal' where entry=22962;
\ No newline at end of file diff --git a/sql/updates/857_world_scripts.sql b/sql/updates/857_world_scripts.sql deleted file mode 100644 index 3a34d80ee76..00000000000 --- a/sql/updates/857_world_scripts.sql +++ /dev/null @@ -1 +0,0 @@ -update creature_template set scriptname='npc_kaya_flathoof' where entry=11856;
\ No newline at end of file diff --git a/sql/updates/7047_01_characters_character_spell.sql b/sql/updates/875_(mangos_7047)_01_characters_character_spell.sql index a0f3abc8deb..71c7ee79e3b 100644 --- a/sql/updates/7047_01_characters_character_spell.sql +++ b/sql/updates/875_(mangos_7047)_01_characters_character_spell.sql @@ -1,11 +1,10 @@ -ALTER TABLE character_db_version CHANGE COLUMN required_6976_02_characters_character_db_version required_7047_01_characters_character_spell bit; +/*ALTER TABLE character_db_version CHANGE COLUMN required_6976_02_characters_character_db_version required_7047_01_characters_character_spell bit;*/ DELETE FROM `character_spell` WHERE `spell` IN ('28880', 59542, 59543, 59544, 59545, 59547, 59548); - INSERT INTO character_spell SELECT characters.guid as guid, 28880, 4294967295, 1, 0 FROM `characters` WHERE characters.race=11 AND characters.class = 1; INSERT INTO character_spell SELECT characters.guid as guid, 59542, 4294967295, 1, 0 FROM `characters` WHERE characters.race=11 AND characters.class = 2; INSERT INTO character_spell SELECT characters.guid as guid, 59543, 4294967295, 1, 0 FROM `characters` WHERE characters.race=11 AND characters.class = 3; INSERT INTO character_spell SELECT characters.guid as guid, 59544, 4294967295, 1, 0 FROM `characters` WHERE characters.race=11 AND characters.class = 5; INSERT INTO character_spell SELECT characters.guid as guid, 59545, 4294967295, 1, 0 FROM `characters` WHERE characters.race=11 AND characters.class = 6; INSERT INTO character_spell SELECT characters.guid as guid, 59547, 4294967295, 1, 0 FROM `characters` WHERE characters.race=11 AND characters.class = 7; -INSERT INTO character_spell SELECT characters.guid as guid, 59548, 4294967295, 1, 0 FROM `characters` WHERE characters.race=11 AND characters.class = 8; +INSERT INTO character_spell SELECT characters.guid as guid, 59548, 4294967295, 1, 0 FROM `characters` WHERE characters.race=11 AND characters.class = 8;
\ No newline at end of file diff --git a/sql/updates/875_(mangos_7059)_01_characters_pet_spell.sql b/sql/updates/875_(mangos_7059)_01_characters_pet_spell.sql new file mode 100644 index 00000000000..11f1063ebc3 --- /dev/null +++ b/sql/updates/875_(mangos_7059)_01_characters_pet_spell.sql @@ -0,0 +1,4 @@ +/*ALTER TABLE character_db_version CHANGE COLUMN required_7059_01_characters_character_spell required_7059_02_characters_pet_spell bit;*/ + +ALTER TABLE pet_spell + DROP slot;
\ No newline at end of file diff --git a/sql/updates/933_world_scripts.sql b/sql/updates/933_world_scripts.sql deleted file mode 100644 index 7b1271e25cc..00000000000 --- a/sql/updates/933_world_scripts.sql +++ /dev/null @@ -1 +0,0 @@ -update creature_template set scriptname='npc_snake_trap_serpents' where entry in (19921, 19833); diff --git a/sql/updates/935_world_scripts.sql b/sql/updates/935_world_scripts.sql deleted file mode 100644 index de02b51d490..00000000000 --- a/sql/updates/935_world_scripts.sql +++ /dev/null @@ -1,6 +0,0 @@ -DELETE FROM `creature` WHERE `id` = '17653'; - -UPDATE `gameobject_template` SET `flags` = '4' WHERE `entry` IN ('181766','181823'); -UPDATE `gameobject` SET `SpawnMask` = '3',`state` = '1' WHERE `id` IN ('181766','181823'); - -UPDATE `instance_template` SET `script` = 'instance_blood_furnace' WHERE `map` = '542';
\ No newline at end of file diff --git a/sql/updates/940_world_scripts.sql b/sql/updates/940_world_scripts.sql deleted file mode 100644 index c9ad252f41f..00000000000 --- a/sql/updates/940_world_scripts.sql +++ /dev/null @@ -1,2 +0,0 @@ -ALTER TABLE custom_texts CHANGE COLUMN emote emote smallint(5) unsigned NOT NULL DEFAULT '0'; -ALTER TABLE script_texts CHANGE COLUMN emote emote smallint(5) unsigned NOT NULL DEFAULT '0';
\ No newline at end of file diff --git a/sql/updates/CMakeLists.txt b/sql/updates/CMakeLists.txt index c7b09fe3251..975d18ef279 100644 --- a/sql/updates/CMakeLists.txt +++ b/sql/updates/CMakeLists.txt @@ -1,165 +1,23 @@ INSTALL(FILES -11_characters.sql -45_characters.sql -54_world.sql -57_world_scripts.sql -66_world_scripts.sql -68_world.sql -70_world_scripts.sql -78_world.sql -79_characters.sql -79_world.sql -82_world_scripts.sql -83_realmd.sql -84_world.sql -86_world_scripts.sql -90_world.sql -102_world.sql -112_world_scripts.sql -116_world.sql -117_world_scripts.sql -120_world.sql -123_world_scripts.sql -125_world_scripts.sql -133_world_scripts.sql -140_world.sql -145_world_scripts.sql -146_world.sql -147_world.sql -152_world.sql -153_world.sql -171_world.sql -172_world_scripts.sql -175_world_scripts.sql -176_world.sql -182_world.sql -212_world_scripts.sql -220_characters.sql -230_world_blacktemple.sql -230_world_scripts.sql -230_world_serpent_shrine.sql -230_world.sql -231_world_scripts.sql -233_world.sql -238_world.sql -240_world.sql -241_world.sql -247_world.sql -262_characters.sql -262_realmd.sql -262_world.sql -273_world_scripts.sql -285_world.sql -287_world_scripts.sql -329_world.sql -332_world.sql -333_world.sql -334_world.sql -341_world.sql -356_world.sql -373_world_scripts.sql -377_world_scripts.sql -389_world.sql -400_world.sql -410_characters.sql -426_world_scripts.sql -427_world_scripts.sql -444_world.sql -452_world.sql -455_world.sql -471_world.sql -480_world_scripts.sql -488_world_scripts.sql -502_world_scripts.sql -505_world.sql -506_world.sql -513_world_scripts.sql -519_world.sql -537_world.sql -541_characters.sql -541_world.sql -542_characters.sql -551_world.sql -566_world.sql -571_world.sql -572_world.sql -575_world_scripts.sql -583_world_scripts.sql -586_world_scripts.sql -588_world.sql -608_world.sql -615_world.sql -636_world_scripts.sql -640_world.sql -645_world_scripts.sql -667_world_scripts.sql -676_world.sql -679_world_scripts.sql -683_world_scripts.sql -686_world_scripts.sql -691_world_scripts.sql -692_world.sql -708_world_scripts.sql -722_world_script_texts.sql -724_world.sql -725_characters.sql -725_world.sql -728_world_scripts.sql -733_characters.sql -739_characters.sql -741_characters.sql -741_world.sql -747_world.sql -748_world_scripts.sql -758_world_scripts.sql -762_world.sql -764_world_scripts.sql -765_world_scripts.sql -773_world_scripts.sql -780_characters.sql -783_world.sql -785_world.sql -789_world.sql -807_world_scripts.sql -817_world_scripts.sql -822_world_scripts.sql -826_world_scripts.sql -833_world_scripts.sql -834_world_scripts.sql -837_world_scripts.sql -838_world_scripts.sql -839_world_scripts.sql -840_world_scripts.sql -841_world_scripts.sql -842_world.sql -850_world_scripts.sql -852_world_scripts.sql -857_world_scripts.sql -863_world_scripts.sql -871_world.sql -884_world.sql -905_world_scripts.sql -917_world.sql -919_world.sql -927_characters.sql -930_characters.sql -933_world_scripts.sql -935_world_scripts.sql -940_world_scripts.sql -945_world_scripts.sql -947_world_scripts.sql -948_world_scripts.sql -950_world_scripts.sql -951_world_scripts.sql -952_world_scripts.sql -953_world_scripts.sql -954_world_scripts.sql -955_world_scripts.sql -956_world_scripts.sql -957_world_scripts.sql -963_world_scripts.sql -965_world_scripts.sql -966_world_scripts.sql -970_world_scripts.sql -973_world_scripts.sql +1_world_scripts.sql +875_(mangos_7047)_01_characters_character_spell.sql +875_(mangos_7059)_01_characters_pet_spell.sql +1026_(mangos_7113)_01_characters_character_achievement_progress.sql +1028_(mangos_7141)_01_world_instance_template.sql +1028_(mangos_7147)_01_world_creature_template.sql +1028_(mangos_7150)_01_world_playercreateinfo_spell.sql +1084_(mangos_7168)_01_world_command.sql +1094_(mangos_7193)_01_world_trinity_string.sql +1108_(mangos_7196)_02_world_spell_bonus_data.sql +1108_(mangos_7198)_01_characters_characters.sql +1108_(mangos_7199)_01_world_spell_bonus_data.sql +1135_(mangos_7207)_01_world_creature.sql +1135_(mangos_7207)_02_world_gameobject.sql +1135_(mangos_7207)_03_characters_corpse.sql +1140_(mangos_7209)_01_world_spell_bonus_data.sql +1185_(mangos_7214)_01_world_command.sql +1185_(mangos_7214)_02_world_trinity_string.sql +1185_(mangos_7214)_03_mangos_spell_proc_event.sql +1206_world_scripts.sql +1207_world_scripts.sql DESTINATION share/trinity/sql/updates) diff --git a/sql/world_scripts_full.sql b/sql/world_scripts_full.sql index 80f2fb3a5d1..0bff82169f9 100644 --- a/sql/world_scripts_full.sql +++ b/sql/world_scripts_full.sql @@ -1,5 +1,3 @@ -/* */ - /* WORLD BOSS */ UPDATE `creature_template` SET `ScriptName`='boss_ysondre' WHERE `entry`=14887; UPDATE `creature_template` SET `ScriptName`='boss_emeriss' WHERE `entry`=14889; @@ -21,7 +19,8 @@ UPDATE `gameobject_template` SET `ScriptName`='go_tablet_of_the_seven' WHERE `en 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_crystal_prison' WHERE `entry`=185126; +UPDATE `gameobject_template` SET `ScriptName`='go_legion_obelisk' WHERE `entry` IN (185193,185195,185196,185197,185198); /* GUARD */ UPDATE `creature_template` SET `ScriptName`='guard_azuremyst' WHERE `entry`=18038; @@ -67,6 +66,7 @@ UPDATE `item_template` SET `ScriptName`='item_vorenthals_presence' WHERE `entry` UPDATE `item_template` SET `ScriptName`='item_yehkinyas_bramble' WHERE `entry`=10699; UPDATE `item_template` SET `ScriptName`='item_zezzaks_shard' WHERE `entry`=31463; UPDATE `item_template` SET `ScriptName`='item_only_for_flight' WHERE `entry` IN (34475, 34489, 24538); +UPDATE `item_template` SET `ScriptName`='item_inoculating_crystal' WHERE `entry`=22962; /* NPC (usually creatures to be found in more than one specific zone) */ UPDATE `creature_template` SET `ScriptName`='npc_chicken_cluck' WHERE `entry`=620; @@ -96,7 +96,6 @@ UPDATE `creature_template` SET `ScriptName`='npc_ravenholdt' WHERE `entry`=13936 /* ALTERAC VALLEY */ - /* ARATHI HIGHLANDS */ UPDATE `creature_template` SET `ScriptName`='npc_professor_phizzlethorpe' WHERE `entry`=2768; @@ -106,9 +105,7 @@ UPDATE `creature_template` SET `ScriptName`='mob_depth_charge' WHERE `entry`=230 UPDATE `creature_template` SET `ScriptName`='npc_torek' WHERE `entry`=12858; UPDATE `creature_template` SET `ScriptName`='npc_ruul_snowhoof' WHERE `entry`=12818; -/* */ /* AUCHINDOUN */ -/* */ /* MANA TOMBS */ UPDATE `creature_template` SET `ScriptName`='boss_pandemonius' WHERE `entry`=18341; @@ -152,7 +149,6 @@ UPDATE `creature_template` SET `ScriptName`='mob_nestlewood_owlkin' WHERE `entry /* BADLANDS */ - /* BARRENS */ UPDATE `creature_template` SET `ScriptName`='npc_beaten_corpse' WHERE `entry`=10668; UPDATE `creature_template` SET `ScriptName`='npc_sputtervalve' WHERE `entry`=3442; @@ -201,7 +197,6 @@ UPDATE `creature_template` SET `ScriptName`='npc_spirit_of_olum' WHERE `entry`=2 /* BLACKFATHOM DEPTHS */ - /* BLACKROCK DEPTHS */ UPDATE `creature_template` SET `ScriptName`='boss_emperor_dagran_thaurissan' WHERE `entry`=9019; UPDATE `creature_template` SET `ScriptName`='boss_moira_bronzebeard' WHERE `entry`=8929; @@ -219,13 +214,14 @@ UPDATE `creature_template` SET `ScriptName`='boss_high_interrogator_gerstahn' WH UPDATE `creature_template` SET `ScriptName`='boss_magmus' WHERE `entry`=9938; UPDATE `creature_template` SET `ScriptName`='boss_seethrel' WHERE `entry`=9038; UPDATE `creature_template` SET `ScriptName`='boss_vilerel' WHERE `entry`=9036; -UPDATE `creature_template` SET `ScriptName`='phalanx' WHERE `entry`=9502; 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; /* BLACKROCK SPIRE */ + /* 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; @@ -269,6 +265,10 @@ UPDATE `creature_template` SET `ScriptName`='npc_fallen_hero_of_horde' WHERE `en UPDATE `creature_template` SET `ScriptName`='mob_webbed_creature' WHERE `entry`=17680; UPDATE `creature_template` SET `ScriptName`='npc_captured_sunhawk_agent' WHERE `entry`=17824; +/* BOREAN TUNDRA */ +UPDATE `creature_template` SET `ScriptName`='npc_surristrasz' WHERE `entry`=24795; +UPDATE `creature_template` SET `ScriptName`='npc_tiare' WHERE `entry`=30051; + /* BURNING STEPPES */ UPDATE `creature_template` SET `ScriptName`='npc_ragged_john' WHERE `entry`=9563; @@ -306,10 +306,7 @@ 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 */ @@ -329,7 +326,7 @@ UPDATE `creature_template` SET `ScriptName`='mob_steamrigger_mechanic' WHERE `en /* 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 `creature_template` SET `ScriptName`='mob_toxic_sporebat' WHERE entry=22140; +UPDATE `creature_template` SET `ScriptName`='mob_toxic_sporebat' WHERE `entry`=22140; /* 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`=21845; @@ -354,10 +351,8 @@ UPDATE `creature_template` SET `ScriptName`='mob_coilfang_strider' WHERE `entry` UPDATE `creature_template` SET `ScriptName`='mob_fathom_sporebat' WHERE `entry`=22140; UPDATE `creature_template` SET `ScriptName`='mob_shield_generator_channel' WHERE `entry`=19870; - /* DARKSHORE */ - /* DEADMINES */ UPDATE `instance_template` SET `script`='instance_deadmines' WHERE `map`=36; UPDATE `item_template` SET `ScriptName`='item_defias_gunpowder' WHERE `entry`=5397; @@ -367,23 +362,17 @@ UPDATE `gameobject_template` SET `ScriptName`='go_main_chambers_access_panel' WH /* DEADWIND PASS */ - /* DESOLACE */ - /* DIRE MAUL */ - /* DUN MOROGH */ UPDATE `creature_template` SET `ScriptName`='npc_narm_faulk' WHERE `entry`=6177; - /* DUROTAR */ - /* DUSKWOOD */ - /* 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; @@ -420,12 +409,11 @@ UPDATE `creature_template` SET `ScriptName`='npc_screecher_spirit' WHERE `entry` 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 `creature_template` SET `Scriptname`='npc_ranger_lilatha' WHERE `entry`=16295; update `gameobject_template` SET `ScriptName`='go_gilded_brazier' WHERE `entry`=181956; /* GNOMEREGAN */ - /* GRUUL'S LAIR */ UPDATE `instance_template` SET `script`='instance_gruuls_lair' WHERE `map` =565; UPDATE `creature_template` SET `ScriptName`='boss_gruul' WHERE `entry`=19044; @@ -436,9 +424,7 @@ UPDATE `creature_template` SET `ScriptName`='boss_blindeye_the_seer' WHERE `entr UPDATE `creature_template` SET `ScriptName`='boss_olm_the_summoner' WHERE `entry`=18834; UPDATE `creature_template` SET `ScriptName`='boss_krosh_firehand' WHERE `entry`=18832; -/* */ /* HELLFIRE CITADEL */ -/* */ /* BLOOD FURNACE */ /* The Maker,Broggok,Kelidan,Broggok's cloud */ @@ -484,10 +470,8 @@ UPDATE `creature_template` SET `ScriptName`='npc_wounded_blood_elf' WHERE `entry /* HILLSBRAD FOOTHILLS */ - /* HINTERLANDS */ - /* IRONFORGE */ UPDATE `creature_template` SET `ScriptName`='npc_royal_historian_archesonus' WHERE `entry`=8879; @@ -617,7 +601,6 @@ 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`='boss_highlord_mograine' WHERE `entry`=16062; UPDATE `creature_template` SET `ScriptName`='boss_thane_korthazz' WHERE `entry`=16064; UPDATE `creature_template` SET `ScriptName`='boss_sir_zeliek' WHERE `entry`=16063; UPDATE `creature_template` SET `ScriptName`='boss_lady_blaumeux' WHERE `entry`=16065; @@ -629,6 +612,8 @@ UPDATE `creature_template` SET `ScriptName`='boss_stalagg' WHERE `entry`=15929; UPDATE `creature_template` SET `ScriptName`='boss_fugen' 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`=16062; +UPDATE `creature_template` SET `ScriptName`='boss_rivendare_naxx' WHERE `entry`=30549; /* NETHERSTORM */ UPDATE `gameobject_template` SET `ScriptName`='go_manaforge_control_console' WHERE `entry` IN (183770,183956,184311,184312); @@ -637,7 +622,7 @@ UPDATE `creature_template` SET `ScriptName`='npc_protectorate_nether_drake' WHER UPDATE `creature_template` SET `ScriptName`='npc_veronia' WHERE `entry`=20162; 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_bessy' WHERE `entry`=20415; /* ONYXIA'S LAIR */ UPDATE `creature_template` SET `ScriptName`='boss_onyxia' WHERE `entry`=10184; @@ -649,14 +634,13 @@ UPDATE `creature_template` SET `ScriptName`='npc_thrall_warchief' WHERE `entry`= /* RAGEFIRE CHASM */ - /* RAZORFEN DOWNS */ UPDATE `creature_template` SET `ScriptName`='boss_amnennar_the_coldbringer' WHERE `entry`=7358; /* RAZORFEN KRAUL */ -UPDATE `creature_template` SET `Scriptname`='npc_willix' WHERE entry=4508; -/* REDRIDGE MOUNTAINS */ +UPDATE `creature_template` SET `Scriptname`='npc_willix' WHERE `entry`=4508; +/* REDRIDGE MOUNTAINS */ /* RUINS OF AHN'QIRAJ */ UPDATE `instance_template` SET `script`='instance_ruins_of_ahnqiraj' WHERE `map`=509; @@ -716,8 +700,8 @@ UPDATE `creature_template` SET `ScriptName`='npc_neltharaku' WHERE `entry`=21657 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`='' WHERE entry=23141; +UPDATE `creature_template` SET `ScriptName`='npc_overlord_morghor' WHERE `entry`=23139; +UPDATE `creature_template` SET `ScriptName`='' WHERE `entry`=23141; 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; @@ -785,7 +769,7 @@ UPDATE `creature_template` SET `ScriptName`='mob_freed_soul' WHERE `entry`=11136 /* 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_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; @@ -795,7 +779,6 @@ update `creature_template` set `ScriptName`='mob_shadow_image' WHERE `entry`=252 /* SWAMP OF SORROWS */ - /* TANARIS */ UPDATE `creature_template` SET `ScriptName`='mob_aquementas' WHERE `entry`=9453; UPDATE `creature_template` SET `ScriptName`='npc_custodian_of_time' WHERE `entry`=20129; @@ -806,10 +789,7 @@ UPDATE `creature_template` SET `ScriptName`='npc_OOX17' WHERE `entry`=7784; /* TELDRASSIL */ - -/* */ /* TEMPEST KEEP */ -/* */ /* THE MECHANAR */ UPDATE `creature_template` SET `ScriptName`='boss_gatewatcher_iron_hand' WHERE `entry`=19710; @@ -921,7 +901,6 @@ UPDATE `creature_template` SET `ScriptName`='npc_parqual_fintallas' WHERE `entry /* WAILING CAVERNS */ - /* 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; @@ -931,7 +910,6 @@ UPDATE `creature_template` SET `ScriptName`='npc_defias_traitor' WHERE `entry`=4 /* WETLANDS */ - /* WINTERSPRING */ UPDATE `creature_template` SET `ScriptName`='npc_lorax' WHERE `entry`=10918; UPDATE `creature_template` SET `ScriptName`='npc_rivern_frostwind' WHERE `entry`=10618; @@ -952,6 +930,7 @@ UPDATE `creature_template` SET `ScriptName`='mob_jandalai_firebomb' WHERE `entry UPDATE `creature_template` SET `ScriptName`='mob_amanishi_hatcher' WHERE `entry`=23818; UPDATE `creature_template` SET `ScriptName`='mob_hatchling' WHERE `entry`=23598; UPDATE `creature_template` SET `ScriptName`='npc_forest_frog' WHERE `entry`=24396; +UPDATE `creature_template` SET `ScriptName`='boss_akilzon' WHERE `entry`=23574; /* ZUL'FARRAK */ UPDATE `creature_template` SET `ScriptName`='npc_sergeant_bly' WHERE `entry`=7604; @@ -979,4 +958,4 @@ UPDATE `creature_template` SET `ScriptName`='mob_spawn_of_marli' WHERE `entry`=1 UPDATE `creature_template` SET `ScriptName`='mob_batrider' WHERE `entry`=14965; UPDATE `creature_template` SET `ScriptName`='mob_shade_of_jindo' WHERE `entry`=14986; -/* EOF */ +/* EOF */
\ No newline at end of file diff --git a/src/bindings/scripts/scripts/zone/borean_tundra/borean_tundra.cpp b/src/bindings/scripts/scripts/zone/borean_tundra/borean_tundra.cpp index c06fdf77d1d..c776c1f9271 100644 --- a/src/bindings/scripts/scripts/zone/borean_tundra/borean_tundra.cpp +++ b/src/bindings/scripts/scripts/zone/borean_tundra/borean_tundra.cpp @@ -1,105 +1,105 @@ -/* Copyright (C) 2006 - 2009 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/>
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- */
-
-/* ScriptData
-SDName: Borean_Tundra
-SD%Complete: 100
-SDComment:
-SDCategory: Borean Tundra
-EndScriptData */
-
-/* ContentData
-npc_tiare
-npc_surristrasz
-EndContentData */
-
-#include "precompiled.h"
-
-/*######
-## npc_tiare
-######*/
-
-#define GOSSIP_ITEM_TELEPORT "Teleport me to Amber Ledge, please."
-
-bool GossipHello_npc_tiare(Player *player, Creature *_Creature)
-{
- player->ADD_GOSSIP_ITEM(0, GOSSIP_ITEM_TELEPORT, GOSSIP_SENDER_MAIN, GOSSIP_OPTION_GOSSIP);
- player->SEND_GOSSIP_MENU(_Creature->GetNpcTextId(), _Creature->GetGUID());
- return true;
-}
-
-bool GossipSelect_npc_tiare(Player *player, Creature *_Creature, uint32 sender, uint32 action)
-{
- if (action == GOSSIP_OPTION_GOSSIP)
- {
- player->CLOSE_GOSSIP_MENU();
- player->CastSpell(player,50135,true);
- }
- return true;
-}
-
-/*######
-## npc_surristrasz
-######*/
-
-#define GOSSIP_ITEM_FREE_FLIGHT "I'd like passage to the Transitus Shield."
-#define GOSSIP_ITEM_FLIGHT "May I use a drake to fly elsewhere?"
-
-bool GossipHello_npc_surristrasz(Player *player, Creature *_Creature)
-{
- if (_Creature->isQuestGiver())
- player->PrepareQuestMenu(_Creature->GetGUID());
-
- if (_Creature->isTaxi())
- {
- player->ADD_GOSSIP_ITEM(0, GOSSIP_ITEM_FREE_FLIGHT, GOSSIP_SENDER_MAIN, GOSSIP_OPTION_GOSSIP);
- player->ADD_GOSSIP_ITEM(2, GOSSIP_ITEM_FLIGHT, GOSSIP_SENDER_MAIN, GOSSIP_OPTION_TAXIVENDOR);
- }
-
- player->SEND_GOSSIP_MENU(_Creature->GetNpcTextId(), _Creature->GetGUID());
- return true;
-}
-
-bool GossipSelect_npc_surristrasz(Player *player, Creature *_Creature, uint32 sender, uint32 action)
-{
- if (action == GOSSIP_OPTION_GOSSIP)
- {
- player->CLOSE_GOSSIP_MENU();
- player->CastSpell(player,46064,true); //TaxiPath 795 (amber to coldarra)
- }
- if (action == GOSSIP_OPTION_TAXIVENDOR)
- {
- player->GetSession()->SendTaxiMenu(_Creature);
- }
- return true;
-}
-
-void AddSC_borean_tundra()
-{
- Script *newscript;
-
- newscript = new Script;
- newscript->Name = "npc_tiare";
- newscript->pGossipHello = &GossipHello_npc_tiare;
- newscript->pGossipSelect = &GossipSelect_npc_tiare;
- newscript->RegisterSelf();
-
- newscript = new Script;
- newscript->Name = "npc_surristrasz";
- newscript->pGossipHello = &GossipHello_npc_surristrasz;
- newscript->pGossipSelect = &GossipSelect_npc_surristrasz;
- newscript->RegisterSelf();
-}
+/* Copyright (C) 2006 - 2009 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/> + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + */ + +/* ScriptData +SDName: Borean_Tundra +SD%Complete: 100 +SDComment: +SDCategory: Borean Tundra +EndScriptData */ + +/* ContentData +npc_tiare +npc_surristrasz +EndContentData */ + +#include "precompiled.h" + +/*###### +## npc_tiare +######*/ + +#define GOSSIP_ITEM_TELEPORT "Teleport me to Amber Ledge, please." + +bool GossipHello_npc_tiare(Player *player, Creature *_Creature) +{ + player->ADD_GOSSIP_ITEM(0, GOSSIP_ITEM_TELEPORT, GOSSIP_SENDER_MAIN, GOSSIP_OPTION_GOSSIP); + player->SEND_GOSSIP_MENU(_Creature->GetNpcTextId(), _Creature->GetGUID()); + return true; +} + +bool GossipSelect_npc_tiare(Player *player, Creature *_Creature, uint32 sender, uint32 action) +{ + if (action == GOSSIP_OPTION_GOSSIP) + { + player->CLOSE_GOSSIP_MENU(); + player->CastSpell(player,50135,true); + } + return true; +} + +/*###### +## npc_surristrasz +######*/ + +#define GOSSIP_ITEM_FREE_FLIGHT "I'd like passage to the Transitus Shield." +#define GOSSIP_ITEM_FLIGHT "May I use a drake to fly elsewhere?" + +bool GossipHello_npc_surristrasz(Player *player, Creature *_Creature) +{ + if (_Creature->isQuestGiver()) + player->PrepareQuestMenu(_Creature->GetGUID()); + + if (_Creature->isTaxi()) + { + player->ADD_GOSSIP_ITEM(0, GOSSIP_ITEM_FREE_FLIGHT, GOSSIP_SENDER_MAIN, GOSSIP_OPTION_GOSSIP); + player->ADD_GOSSIP_ITEM(2, GOSSIP_ITEM_FLIGHT, GOSSIP_SENDER_MAIN, GOSSIP_OPTION_TAXIVENDOR); + } + + player->SEND_GOSSIP_MENU(_Creature->GetNpcTextId(), _Creature->GetGUID()); + return true; +} + +bool GossipSelect_npc_surristrasz(Player *player, Creature *_Creature, uint32 sender, uint32 action) +{ + if (action == GOSSIP_OPTION_GOSSIP) + { + player->CLOSE_GOSSIP_MENU(); + player->CastSpell(player,46064,true); //TaxiPath 795 (amber to coldarra) + } + if (action == GOSSIP_OPTION_TAXIVENDOR) + { + player->GetSession()->SendTaxiMenu(_Creature); + } + return true; +} + +void AddSC_borean_tundra() +{ + Script *newscript; + + newscript = new Script; + newscript->Name = "npc_tiare"; + newscript->pGossipHello = &GossipHello_npc_tiare; + newscript->pGossipSelect = &GossipSelect_npc_tiare; + newscript->RegisterSelf(); + + newscript = new Script; + newscript->Name = "npc_surristrasz"; + newscript->pGossipHello = &GossipHello_npc_surristrasz; + newscript->pGossipSelect = &GossipSelect_npc_surristrasz; + newscript->RegisterSelf(); +} diff --git a/src/game/debugcmds.cpp b/src/game/Debugcmds.cpp index 22b7fb389fb..22b7fb389fb 100644 --- a/src/game/debugcmds.cpp +++ b/src/game/Debugcmds.cpp diff --git a/src/game/GameObject.cpp b/src/game/GameObject.cpp index df694fdd735..0b2dd179cdf 100644 --- a/src/game/GameObject.cpp +++ b/src/game/GameObject.cpp @@ -738,12 +738,12 @@ bool GameObject::isVisibleForInState(Player const* u, bool inVisibleList) const return false; // special invisibility cases - /* TODO: implement trap stealth, take look at spell 2836 - if(GetGOInfo()->type == GAMEOBJECT_TYPE_TRAP && GetGOInfo()->trap.stealthed && u->IsHostileTo(GetOwner())) + if(GetGOInfo()->type == GAMEOBJECT_TYPE_TRAP && GetGOInfo()->trap.stealthed) { - if(check stuff here) + Unit *owner = GetOwner(); + if(owner && u->IsHostileTo(owner) && !canDetectTrap(u, GetDistance(u))) return false; - }*/ + } } // check distance @@ -751,6 +751,27 @@ bool GameObject::isVisibleForInState(Player const* u, bool inVisibleList) const (inVisibleList ? World::GetVisibleObjectGreyDistance() : 0.0f), false); } +bool GameObject::canDetectTrap(Player const* u, float distance) const +{ + if(u->hasUnitState(UNIT_STAT_STUNNED)) + return false; + if(distance < GetGOInfo()->size) //collision + return true; + if(!u->HasInArc(M_PI, this)) //behind + return false; + if(u->HasAuraType(SPELL_AURA_DETECT_STEALTH)) + return true; + + //Visible distance is modified by -Level Diff (every level diff = 0.25f in visible distance) + float visibleDistance = (int32(u->getLevel()) - int32(GetOwner()->getLevel()))* 0.25f; + //GetModifier for trap (miscvalue 1) + //35y for aura 2836 + //WARNING: these values are guessed, may be not blizzlike + visibleDistance += u->GetTotalAuraModifierByMiscValue(SPELL_AURA_MOD_DETECT, 1)* 0.5f; + + return distance < visibleDistance; +} + void GameObject::Respawn() { if(m_spawnedByDefault && m_respawnTime > 0) diff --git a/src/game/GameObject.h b/src/game/GameObject.h index 3c8cc768f37..64cf1b9b159 100644 --- a/src/game/GameObject.h +++ b/src/game/GameObject.h @@ -579,6 +579,7 @@ class TRINITY_DLL_SPEC GameObject : public WorldObject void TriggeringLinkedGameObject( uint32 trapEntry, Unit* target); bool isVisibleForInState(Player const* u, bool inVisibleList) const; + bool canDetectTrap(Player const* u, float distance) const; GameObject* LookupFishingHoleAround(float range); diff --git a/src/game/Player.cpp b/src/game/Player.cpp index ee4cf8cc165..57ab42128da 100644 --- a/src/game/Player.cpp +++ b/src/game/Player.cpp @@ -10396,29 +10396,17 @@ uint8 Player::CanBankItem( uint8 bag, uint8 slot, ItemPosCountVec &dest, Item *p // in specific slot if( bag != NULL_BAG && slot != NULL_SLOT ) { - if( pProto->InventoryType == INVTYPE_BAG ) + if( slot >= BANK_SLOT_BAG_START && slot < BANK_SLOT_BAG_END ) { - Bag *pBag = (Bag*)pItem; - if( pBag ) - { - if( slot >= BANK_SLOT_BAG_START && slot < BANK_SLOT_BAG_END ) - { - if( !HasBankBagSlot( slot ) ) - return EQUIP_ERR_MUST_PURCHASE_THAT_BAG_SLOT; - if( uint8 cantuse = CanUseItem( pItem, not_loading ) != EQUIP_ERR_OK ) - return cantuse; - } - else - { - if( !pBag->IsEmpty() ) - return EQUIP_ERR_NONEMPTY_BAG_OVER_OTHER_BAG; - } - } - } - else - { - if( slot >= BANK_SLOT_BAG_START && slot < BANK_SLOT_BAG_END ) + if (!pItem->IsBag()) return EQUIP_ERR_ITEM_DOESNT_GO_TO_SLOT; + + Bag *pBag = (Bag*)pItem; + if( !HasBankBagSlot( slot ) ) + return EQUIP_ERR_MUST_PURCHASE_THAT_BAG_SLOT; + + if( uint8 cantuse = CanUseItem( pItem, not_loading ) != EQUIP_ERR_OK ) + return cantuse; } res = _CanStoreItem_InSpecificSlot(bag,slot,dest,pProto,count,swap,pItem); @@ -11575,6 +11563,8 @@ void Player::SwapItem( uint16 src, uint16 dst ) return; } + // SRC checks + if(pSrcItem->m_lootGenerated) // prevent swap looting item { //best error message found for attempting to swap while looting @@ -11585,8 +11575,8 @@ void Player::SwapItem( uint16 src, uint16 dst ) // check unequip potability for equipped items and bank bags if(IsEquipmentPos ( src ) || IsBagPos ( src )) { - // bags can be swapped with empty bag slots - uint8 msg = CanUnequipItem( src, !IsBagPos ( src ) || IsBagPos ( dst )); + // bags can be swapped with empty bag slots, or with empty bag (items move possibility checked later) + uint8 msg = CanUnequipItem( src, !IsBagPos ( src ) || IsBagPos ( dst ) || pDstItem && pDstItem->IsBag() && ((Bag*)pDstItem)->IsEmpty()); if(msg != EQUIP_ERR_OK) { SendEquipError( msg, pSrcItem, pDstItem ); @@ -11601,6 +11591,34 @@ void Player::SwapItem( uint16 src, uint16 dst ) return; } + // DST checks + + if (pDstItem) + { + if(pDstItem->m_lootGenerated) // prevent swap looting item + { + //best error message found for attempting to swap while looting + SendEquipError( EQUIP_ERR_CANT_DO_RIGHT_NOW, pDstItem, NULL ); + return; + } + + // check unequip potability for equipped items and bank bags + if(IsEquipmentPos ( dst ) || IsBagPos ( dst )) + { + // bags can be swapped with empty bag slots, or with empty bag (items move possibility checked later) + uint8 msg = CanUnequipItem( dst, !IsBagPos ( dst ) || IsBagPos ( src ) || pSrcItem->IsBag() && ((Bag*)pSrcItem)->IsEmpty()); + if(msg != EQUIP_ERR_OK) + { + SendEquipError( msg, pSrcItem, pDstItem ); + return; + } + } + } + + // NOW this is or item move (swap with empty), or swap with another item (including bags in bag possitions) + // or swap empty bag with another empty or not empty bag (with items exchange) + + // Move case if( !pDstItem ) { if( IsInventoryPos( dst ) ) @@ -11643,140 +11661,187 @@ void Player::SwapItem( uint16 src, uint16 dst ) EquipItem( dest, pSrcItem, true); AutoUnequipOffhandIfNeed(); } + + return; } - else // if (!pDstItem) + + // attempt merge to / fill target item + if(!pSrcItem->IsBag() && !pDstItem->IsBag()) { - if(pDstItem->m_lootGenerated) // prevent swap looting item - { - //best error message found for attempting to swap while looting - SendEquipError( EQUIP_ERR_CANT_DO_RIGHT_NOW, pDstItem, NULL ); + uint8 msg; + ItemPosCountVec sDest; + uint16 eDest; + if( IsInventoryPos( dst ) ) + msg = CanStoreItem( dstbag, dstslot, sDest, pSrcItem, false ); + else if( IsBankPos ( dst ) ) + msg = CanBankItem( dstbag, dstslot, sDest, pSrcItem, false ); + else if( IsEquipmentPos ( dst ) ) + msg = CanEquipItem( dstslot, eDest, pSrcItem, false ); + else return; - } - // check unequip potability for equipped items and bank bags - if(IsEquipmentPos ( dst ) || IsBagPos ( dst )) + // can be merge/fill + if(msg == EQUIP_ERR_OK) { - // bags can be swapped with empty bag slots - uint8 msg = CanUnequipItem( dst, !IsBagPos ( dst ) || IsBagPos ( src ) ); - if(msg != EQUIP_ERR_OK) + if( pSrcItem->GetCount() + pDstItem->GetCount() <= pSrcItem->GetProto()->GetMaxStackSize()) { - SendEquipError( msg, pSrcItem, pDstItem ); - return; - } - } + RemoveItem(srcbag, srcslot, true); - // attempt merge to / fill target item - { - uint8 msg; - ItemPosCountVec sDest; - uint16 eDest; - if( IsInventoryPos( dst ) ) - msg = CanStoreItem( dstbag, dstslot, sDest, pSrcItem, false ); - else if( IsBankPos ( dst ) ) - msg = CanBankItem( dstbag, dstslot, sDest, pSrcItem, false ); - else if( IsEquipmentPos ( dst ) ) - msg = CanEquipItem( dstslot, eDest, pSrcItem, false ); - else - return; - - // can be merge/fill - if(msg == EQUIP_ERR_OK) - { - if( pSrcItem->GetCount() + pDstItem->GetCount() <= pSrcItem->GetProto()->GetMaxStackSize()) + if( IsInventoryPos( dst ) ) + StoreItem( sDest, pSrcItem, true); + else if( IsBankPos ( dst ) ) + BankItem( sDest, pSrcItem, true); + else if( IsEquipmentPos ( dst ) ) { - RemoveItem(srcbag, srcslot, true); - - if( IsInventoryPos( dst ) ) - StoreItem( sDest, pSrcItem, true); - else if( IsBankPos ( dst ) ) - BankItem( sDest, pSrcItem, true); - else if( IsEquipmentPos ( dst ) ) - { - EquipItem( eDest, pSrcItem, true); - AutoUnequipOffhandIfNeed(); - } + EquipItem( eDest, pSrcItem, true); + AutoUnequipOffhandIfNeed(); } - else + } + else + { + pSrcItem->SetCount( pSrcItem->GetCount() + pDstItem->GetCount() - pSrcItem->GetProto()->GetMaxStackSize()); + pDstItem->SetCount( pSrcItem->GetProto()->GetMaxStackSize()); + pSrcItem->SetState(ITEM_CHANGED, this); + pDstItem->SetState(ITEM_CHANGED, this); + if( IsInWorld() ) { - pSrcItem->SetCount( pSrcItem->GetCount() + pDstItem->GetCount() - pSrcItem->GetProto()->GetMaxStackSize()); - pDstItem->SetCount( pSrcItem->GetProto()->GetMaxStackSize()); - pSrcItem->SetState(ITEM_CHANGED, this); - pDstItem->SetState(ITEM_CHANGED, this); - if( IsInWorld() ) - { - pSrcItem->SendUpdateToPlayer( this ); - pDstItem->SendUpdateToPlayer( this ); - } + pSrcItem->SendUpdateToPlayer( this ); + pDstItem->SendUpdateToPlayer( this ); } - return; } + return; } + } - // impossible merge/fill, do real swap - uint8 msg; + // impossible merge/fill, do real swap + uint8 msg; - // check src->dest move possibility - ItemPosCountVec sDest; - uint16 eDest; - if( IsInventoryPos( dst ) ) - msg = CanStoreItem( dstbag, dstslot, sDest, pSrcItem, true ); - else if( IsBankPos( dst ) ) - msg = CanBankItem( dstbag, dstslot, sDest, pSrcItem, true ); - else if( IsEquipmentPos( dst ) ) - { - msg = CanEquipItem( dstslot, eDest, pSrcItem, true ); - if( msg == EQUIP_ERR_OK ) - msg = CanUnequipItem( eDest, true ); - } + // check src->dest move possibility + ItemPosCountVec sDest; + uint16 eDest; + if( IsInventoryPos( dst ) ) + msg = CanStoreItem( dstbag, dstslot, sDest, pSrcItem, true ); + else if( IsBankPos( dst ) ) + msg = CanBankItem( dstbag, dstslot, sDest, pSrcItem, true ); + else if( IsEquipmentPos( dst ) ) + { + msg = CanEquipItem( dstslot, eDest, pSrcItem, true ); + if( msg == EQUIP_ERR_OK ) + msg = CanUnequipItem( eDest, true ); + } - if( msg != EQUIP_ERR_OK ) + if( msg != EQUIP_ERR_OK ) + { + SendEquipError( msg, pSrcItem, pDstItem ); + return; + } + + // check dest->src move possibility + ItemPosCountVec sDest2; + uint16 eDest2; + if( IsInventoryPos( src ) ) + msg = CanStoreItem( srcbag, srcslot, sDest2, pDstItem, true ); + else if( IsBankPos( src ) ) + msg = CanBankItem( srcbag, srcslot, sDest2, pDstItem, true ); + else if( IsEquipmentPos( src ) ) + { + msg = CanEquipItem( srcslot, eDest2, pDstItem, true); + if( msg == EQUIP_ERR_OK ) + msg = CanUnequipItem( eDest2, true); + } + + if( msg != EQUIP_ERR_OK ) + { + SendEquipError( msg, pDstItem, pSrcItem ); + return; + } + + // Check bag swap with item exchange (one from empty in not bag possition (equipped (not possible in fact) or store) + if(pSrcItem->IsBag() && pDstItem->IsBag()) + { + Bag* emptyBag = NULL; + Bag* fullBag = NULL; + if(((Bag*)pSrcItem)->IsEmpty() && !IsBagPos(src)) { - SendEquipError( msg, pSrcItem, pDstItem ); - return; + emptyBag = (Bag*)pSrcItem; + fullBag = (Bag*)pDstItem; } - - // check dest->src move possibility - ItemPosCountVec sDest2; - uint16 eDest2; - if( IsInventoryPos( src ) ) - msg = CanStoreItem( srcbag, srcslot, sDest2, pDstItem, true ); - else if( IsBankPos( src ) ) - msg = CanBankItem( srcbag, srcslot, sDest2, pDstItem, true ); - else if( IsEquipmentPos( src ) ) + else if(((Bag*)pDstItem)->IsEmpty() && !IsBagPos(dst)) { - msg = CanEquipItem( srcslot, eDest2, pDstItem, true); - if( msg == EQUIP_ERR_OK ) - msg = CanUnequipItem( eDest2, true); + emptyBag = (Bag*)pDstItem; + fullBag = (Bag*)pSrcItem; } - if( msg != EQUIP_ERR_OK ) + // bag swap (with items exchange) case + if(emptyBag && fullBag) { - SendEquipError( msg, pDstItem, pSrcItem ); - return; - } + ItemPrototype const* emotyProto = emptyBag->GetProto(); - // now do moves, remove... - RemoveItem(dstbag, dstslot, false); - RemoveItem(srcbag, srcslot, false); + uint32 count = 0; - // add to dest - if( IsInventoryPos( dst ) ) - StoreItem(sDest, pSrcItem, true); - else if( IsBankPos( dst ) ) - BankItem(sDest, pSrcItem, true); - else if( IsEquipmentPos( dst ) ) - EquipItem(eDest, pSrcItem, true); - - // add to src - if( IsInventoryPos( src ) ) - StoreItem(sDest2, pDstItem, true); - else if( IsBankPos( src ) ) - BankItem(sDest2, pDstItem, true); - else if( IsEquipmentPos( src ) ) - EquipItem(eDest2, pDstItem, true); + for(int i=0; i < fullBag->GetBagSize(); ++i) + { + Item *bagItem = fullBag->GetItemByPos(i); + if (!bagItem) + continue; - AutoUnequipOffhandIfNeed(); + ItemPrototype const* bagItemProto = bagItem->GetProto(); + if (!bagItemProto || !ItemCanGoIntoBag(bagItemProto, emotyProto)) + { + // one from items not go to empry target bag + SendEquipError( EQUIP_ERR_NONEMPTY_BAG_OVER_OTHER_BAG, pSrcItem, pDstItem ); + return; + } + + ++count; + } + + + if (count > emptyBag->GetBagSize()) + { + // too small targeted bag + SendEquipError( EQUIP_ERR_ITEMS_CANT_BE_SWAPPED, pSrcItem, pDstItem ); + return; + } + + // Items swap + count = 0; // will pos in new bag + for(int i=0; i< fullBag->GetBagSize(); ++i) + { + Item *bagItem = fullBag->GetItemByPos(i); + if (!bagItem) + continue; + + fullBag->RemoveItem(i, true); + emptyBag->StoreItem(count, bagItem, true); + bagItem->SetState(ITEM_CHANGED, this); + + ++count; + } + } } + + // now do moves, remove... + RemoveItem(dstbag, dstslot, false); + RemoveItem(srcbag, srcslot, false); + + // add to dest + if( IsInventoryPos( dst ) ) + StoreItem(sDest, pSrcItem, true); + else if( IsBankPos( dst ) ) + BankItem(sDest, pSrcItem, true); + else if( IsEquipmentPos( dst ) ) + EquipItem(eDest, pSrcItem, true); + + // add to src + if( IsInventoryPos( src ) ) + StoreItem(sDest2, pDstItem, true); + else if( IsBankPos( src ) ) + BankItem(sDest2, pDstItem, true); + else if( IsEquipmentPos( src ) ) + EquipItem(eDest2, pDstItem, true); + + AutoUnequipOffhandIfNeed(); } void Player::AddItemToBuyBackSlot( Item *pItem ) diff --git a/src/game/tools.cpp b/src/game/Tools.cpp index f8663a4b4e4..f8663a4b4e4 100644 --- a/src/game/tools.cpp +++ b/src/game/Tools.cpp diff --git a/src/shared/revision_nr.h b/src/shared/revision_nr.h index a257b588318..813eb27444c 100644 --- a/src/shared/revision_nr.h +++ b/src/shared/revision_nr.h @@ -1,4 +1,4 @@ #ifndef __REVISION_NR_H__ #define __REVISION_NR_H__ - #define REVISION_NR "7227" + #define REVISION_NR "7228" #endif // __REVISION_NR_H__ |