From cfa9fb701a7d5ec14750f55d1fa30247e8c0def9 Mon Sep 17 00:00:00 2001 From: offl <11556157+offl@users.noreply.github.com> Date: Tue, 22 Jul 2025 18:05:14 +0300 Subject: Scripts/Spells: Implement Revive Self & Knock Away spells (#31069) --- sql/updates/world/3.3.5/2025_07_22_01_world.sql | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 sql/updates/world/3.3.5/2025_07_22_01_world.sql (limited to 'sql') diff --git a/sql/updates/world/3.3.5/2025_07_22_01_world.sql b/sql/updates/world/3.3.5/2025_07_22_01_world.sql new file mode 100644 index 00000000000..091648e3571 --- /dev/null +++ b/sql/updates/world/3.3.5/2025_07_22_01_world.sql @@ -0,0 +1,15 @@ +-- +DELETE FROM `spell_script_names` WHERE `ScriptName` IN ( +'spell_gen_knock_away_threat_reduction_100', +'spell_gen_knock_away_threat_reduction_50', +'spell_gen_knock_away_threat_reduction_25'); +INSERT INTO `spell_script_names` (`spell_id`, `ScriptName`) VALUES +(10101, 'spell_gen_knock_away_threat_reduction_100'), +(18670, 'spell_gen_knock_away_threat_reduction_50'), +(18945, 'spell_gen_knock_away_threat_reduction_50'), +(18813, 'spell_gen_knock_away_threat_reduction_25'), +(25778, 'spell_gen_knock_away_threat_reduction_25'); + +DELETE FROM `spell_script_names` WHERE `ScriptName` = 'spell_gen_revive_self'; +INSERT INTO `spell_script_names` (`spell_id`, `ScriptName`) VALUES +(32343, 'spell_gen_revive_self'); -- cgit v1.2.3