diff options
author | MitchesD <majklprofik@seznam.cz> | 2015-06-25 14:45:13 +0200 |
---|---|---|
committer | MitchesD <majklprofik@seznam.cz> | 2015-06-25 14:45:13 +0200 |
commit | 83954fb9993943b038a7988c173db90749cb63bc (patch) | |
tree | b6d36720ec426c26c1d527912bde8feb919dd62e /sql | |
parent | cb4d1574e05b0d50368da03c42edeac46590d14f (diff) | |
parent | 0bb7f89e82c65f6b750e5d96766c2092031803b5 (diff) |
Merge pull request #14860 from mik1893/violethold
Core/Scripts: Violet Hold, full rework
Diffstat (limited to 'sql')
-rw-r--r-- | sql/updates/world/2015_06_08_01_world.sql | 18 |
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'); |