Script/Spells: shaman spell fixes

Port From (https://github.com/TrinityCore/TrinityCore/commit/b92e20f6c860bd1b5f3e7ce3f614dd48fc5b49c4)
This commit is contained in:
hondacrx
2021-04-12 14:43:08 -04:00
parent 337bbb5d22
commit b974c7f3a7
3 changed files with 122 additions and 5 deletions
@@ -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');