diff options
| author | Cristian Vintila <127750549+cristianvnt@users.noreply.github.com> | 2025-12-22 00:32:12 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-12-21 23:32:12 +0100 |
| commit | d22dae08aafaeb8021438dd283fdee110f18d9b2 (patch) | |
| tree | 3cfc0062ff61e9ae4eabd7c09e36111793c1fbd0 /sql/updates/world | |
| parent | 161da58cf4040b4fbcd2e0efcb3a961dec202237 (diff) | |
Scripts/Spells: Implement priest talent Ultimate Penitence (#31444)
Co-authored-by: Shauren <shauren.trinity@gmail.com>
Diffstat (limited to 'sql/updates/world')
| -rw-r--r-- | sql/updates/world/master/2025_12_21_00_world.sql | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/sql/updates/world/master/2025_12_21_00_world.sql b/sql/updates/world/master/2025_12_21_00_world.sql new file mode 100644 index 00000000000..88a2750325d --- /dev/null +++ b/sql/updates/world/master/2025_12_21_00_world.sql @@ -0,0 +1,13 @@ +DELETE FROM `spell_script_names` WHERE `ScriptName` IN ('spell_pri_ultimate_penitence', 'spell_pri_ultimate_penitence_channel', 'spell_pri_ultimate_penitence_jump'); +INSERT INTO `spell_script_names` (`spell_id`, `ScriptName`) VALUES +(421453, 'spell_pri_ultimate_penitence'), +(421434, 'spell_pri_ultimate_penitence_channel'), +(432154, 'spell_pri_ultimate_penitence_jump'); + +DELETE FROM `jump_charge_params` WHERE `id`=852; +INSERT INTO `jump_charge_params` (`id`,`speed`,`treatSpeedAsMoveTimeSeconds`,`progressCurveId`,`parabolicCurveId`) VALUES +(852, 0.65, 1, 68736, 69091); + +DELETE FROM `creature_immunities` WHERE `ID`=2408; +INSERT INTO `creature_immunities` (`ID`,`MechanicsMask`,`Effects`,`Auras`,`Comment`) VALUES +(2408,0x459676E6,'98,124,144,145','','Immune to CC+knockback'); |
