aboutsummaryrefslogtreecommitdiff
path: root/sql/updates
diff options
context:
space:
mode:
authorMatan Shukry <matanshukry@gmail.com>2021-04-11 20:23:19 +0300
committerGitHub <noreply@github.com>2021-04-11 19:23:19 +0200
commitb92e20f6c860bd1b5f3e7ce3f614dd48fc5b49c4 (patch)
treea64ebcfe0d953c78a54f39af457f33c3e5d52efc /sql/updates
parent5fdd2c95ef013e6828de70e160ff091fe886451f (diff)
Script/Spells: shaman spell fixes (#26192)
* Flametongue Weapon * Tremor Totem * Healing Stream Totem * Liquid Magma Totem * Healing Rain
Diffstat (limited to 'sql/updates')
-rw-r--r--sql/updates/world/master/2021_04_11_00_world_shaman_spells.sql11
1 files changed, 11 insertions, 0 deletions
diff --git a/sql/updates/world/master/2021_04_11_00_world_shaman_spells.sql b/sql/updates/world/master/2021_04_11_00_world_shaman_spells.sql
new file mode 100644
index 00000000000..fdcf2fc855d
--- /dev/null
+++ b/sql/updates/world/master/2021_04_11_00_world_shaman_spells.sql
@@ -0,0 +1,11 @@
+-- Update various shaman spells
+UPDATE `creature_template` SET `spell1` = 192226 WHERE `entry` = 97369; -- Liquid Magma Totem
+UPDATE `creature_template` SET `spell1` = 8145 WHERE `entry` = 5913; -- Tremor Totem
+UPDATE `creature_template` SET `spell1` = 118905 WHERE `entry` = 61245; -- Capacitator
+
+DELETE FROM `spell_script_names` WHERE `ScriptName` IN ('spell_sha_healing_rain', 'spell_sha_liquid_magma_totem', 'spell_sha_flametongue_weapon', 'spell_sha_flametongue_weapon_aura');
+INSERT INTO `spell_script_names` (`spell_id`, `ScriptName`) VALUES
+(73920, 'spell_sha_healing_rain'),
+(192223, 'spell_sha_liquid_magma_totem'),
+(318038, 'spell_sha_flametongue_weapon'),
+(319778, 'spell_sha_flametongue_weapon_aura');