Scripts/Spells: Implemented Atonement

* Also renamed spell_priest_spirit_of_redemption to spell_pri_spirit_of_redemption
This commit is contained in:
Matan Shukry
2021-04-21 22:05:46 +02:00
committed by Shauren
parent 2e2dc1afc9
commit dbc082a2b2
2 changed files with 119 additions and 6 deletions

View File

@@ -0,0 +1,9 @@
-- Atonement
DELETE FROM `spell_script_names` WHERE `ScriptName` IN ('spell_pri_atonement_triggered', 'spell_pri_power_word_radiance', 'spell_pri_shadow_mend');
INSERT INTO `spell_script_names` (`spell_id`,`ScriptName`) VALUES
(194384, 'spell_pri_atonement_triggered'),
(214206, 'spell_pri_atonement_triggered'),
(194509, 'spell_pri_power_word_radiance'),
(186263, 'spell_pri_shadow_mend');
UPDATE `spell_script_names` SET `ScriptName` = 'spell_pri_spirit_of_redemption' WHERE `ScriptName` = 'spell_priest_spirit_of_redemption';