aboutsummaryrefslogtreecommitdiff
path: root/sql
diff options
context:
space:
mode:
authormik1893 <michele.roscelli@gmail.com>2015-06-08 14:28:48 +0200
committerMik1893 <michele.roscelli@gmail.com>2015-06-23 16:32:50 +0200
commit0bb7f89e82c65f6b750e5d96766c2092031803b5 (patch)
treed9861f8d5f0196da80bea0d1b5e04232a43debef /sql
parent34a721ba84643cf468f63e5c375949aaa3e15cac (diff)
Core/Scripts: Rework Violet Hold bosses adding missing spells/mechanics:
- Cyanigosa, Arcane Vacuum - Ichoron, globules mechanic - Moragg, optic link visuals - Lavanthor, minor changes - Zuramat, correctly implement void sentries - Erekem, implement Windfury and correct management of Erekem Guards - Script for the pre-event Thx @ManuFe
Diffstat (limited to 'sql')
-rw-r--r--sql/updates/world/2015_06_08_01_world.sql18
1 files changed, 18 insertions, 0 deletions
diff --git a/sql/updates/world/2015_06_08_01_world.sql b/sql/updates/world/2015_06_08_01_world.sql
new file mode 100644
index 00000000000..56e8aa61c9b
--- /dev/null
+++ b/sql/updates/world/2015_06_08_01_world.sql
@@ -0,0 +1,18 @@
+-- ethereal sphere heroic version
+UPDATE `creature_template` SET `scriptname` = 'npc_ethereal_sphere' WHERE `entry` = 32582;
+-- spell script names
+DELETE FROM `spell_script_names` WHERE `spell_id` IN (58694,54102,54164,54396,54438,54442,57804,59523,59524,61337);
+INSERT INTO `spell_script_names`(`spell_id`,`ScriptName`) VALUES
+(54102,'spell_xevozz_summon_ethereal_sphere'),
+(54164,'spell_xevozz_summon_players'),
+(54396,'spell_moragg_optic_link'),
+(54438,'spell_moragg_ray_of_pain'),
+(54442,'spell_moragg_ray_of_suffering'),
+(57804,'spell_crystal_activation'),
+(59523,'spell_moragg_ray_of_pain'),
+(59524,'spell_moragg_ray_of_suffering'),
+(61337,'spell_xevozz_summon_ethereal_sphere');
+-- arcane vacuum summon effect
+DELETE FROM `spell_linked_spell` WHERE `spell_trigger` = 58694;
+INSERT INTO `spell_linked_spell` (`spell_trigger`,`spell_effect`,`type`,`comment`) VALUES
+(58694,21150,1,'Cyanigosa: Arcane Vacuum teleport effect');