diff options
author | Teleqraph <nyrdeveloper@gmail.com> | 2023-05-07 17:52:48 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-07 17:52:48 +0200 |
commit | b53de1eb4bce8b4a7db823f3273a7fd82abe7fb6 (patch) | |
tree | b68ee60c69157a7e47661af4e27fc6d551eede14 /sql | |
parent | 23f42e09ec34ac6285773b70bd53503ea0986ff6 (diff) |
Scripts/Spells: Implement Dark Reprimand (#28925)
Co-authored-by: Shauren <shauren.trinity@gmail.com>
Diffstat (limited to 'sql')
-rw-r--r-- | sql/updates/world/master/2023_05_07_05_world.sql | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/sql/updates/world/master/2023_05_07_05_world.sql b/sql/updates/world/master/2023_05_07_05_world.sql new file mode 100644 index 00000000000..ddc0f96bc47 --- /dev/null +++ b/sql/updates/world/master/2023_05_07_05_world.sql @@ -0,0 +1,19 @@ +DELETE FROM `spell_script_names` WHERE `spell_id`=400169; +DELETE FROM `spell_script_names` WHERE `ScriptName`='spell_pri_dark_reprimand'; +INSERT INTO `spell_script_names` (`spell_id`,`ScriptName`) VALUES +(400169,'spell_pri_dark_reprimand'); + +DELETE FROM `spell_script_names` WHERE `ScriptName` IN ('spell_pri_penance_channeled','spell_pri_penance_or_dark_reprimand_channeled'); +INSERT INTO `spell_script_names` (`spell_id`, `ScriptName`) VALUES +(47758,'spell_pri_penance_or_dark_reprimand_channeled'), +(47757,'spell_pri_penance_or_dark_reprimand_channeled'), +(373129,'spell_pri_penance_or_dark_reprimand_channeled'), +(400171,'spell_pri_penance_or_dark_reprimand_channeled'); + +DELETE FROM `spell_script_names` WHERE `spell_id`=373130 AND `ScriptName`='spell_pri_power_of_the_dark_side_damage_bonus'; +INSERT INTO `spell_script_names` (`spell_id`, `ScriptName`) VALUES +(373130,'spell_pri_power_of_the_dark_side_damage_bonus'); + +DELETE FROM `spell_script_names` WHERE `spell_id`=400187 AND `ScriptName`='spell_pri_power_of_the_dark_side_healing_bonus'; +INSERT INTO `spell_script_names` (`spell_id`, `ScriptName`) VALUES +(400187,'spell_pri_power_of_the_dark_side_healing_bonus'); |