diff options
| author | offl <11556157+offl@users.noreply.github.com> | 2025-07-22 18:05:14 +0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-07-22 17:05:14 +0200 |
| commit | cfa9fb701a7d5ec14750f55d1fa30247e8c0def9 (patch) | |
| tree | d1d8dcbc428238eafd9c23de17dc869d3ee6eb9b /sql | |
| parent | 761786ca1882b331d19b8c0c5c1e9f9fcf226e14 (diff) | |
Scripts/Spells: Implement Revive Self & Knock Away spells (#31069)
Diffstat (limited to 'sql')
| -rw-r--r-- | sql/updates/world/3.3.5/2025_07_22_01_world.sql | 15 |
1 files changed, 15 insertions, 0 deletions
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'); |
