diff options
| author | Aqua Deus <95978183+aquadeus@users.noreply.github.com> | 2024-11-17 19:54:29 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-11-17 19:54:29 +0100 |
| commit | 9b78546db2101883f0ed626d258281bdd1d9ecad (patch) | |
| tree | f3a4f6c0dbe411b80ff7bacffbbc2bb4f932551a /sql | |
| parent | f8de112619dbd6d870ab5e399f0ea344a02c72c6 (diff) | |
Scripts/Spells: Implement death knight talent Soul Reaper (#30236)
Co-authored-by: Shauren <shauren.trinity@gmail.com>
Diffstat (limited to 'sql')
| -rw-r--r-- | sql/updates/world/master/2024_11_17_02_world.sql | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/sql/updates/world/master/2024_11_17_02_world.sql b/sql/updates/world/master/2024_11_17_02_world.sql new file mode 100644 index 00000000000..71775d2a51f --- /dev/null +++ b/sql/updates/world/master/2024_11_17_02_world.sql @@ -0,0 +1,11 @@ +DELETE FROM `spell_proc` WHERE `SpellId` IN (469172); +INSERT INTO `spell_proc` (`SpellId`,`SchoolMask`,`SpellFamilyName`,`SpellFamilyMask0`,`SpellFamilyMask1`,`SpellFamilyMask2`,`SpellFamilyMask3`,`ProcFlags`,`ProcFlags2`,`SpellTypeMask`,`SpellPhaseMask`,`HitMask`,`AttributesMask`,`DisableEffectsMask`,`ProcsPerMinute`,`Chance`,`Cooldown`,`Charges`) VALUES +(469172,0x00,15,0x00000000,0x00000000,0x00000000,0x00000000,0x0,0x0,0x0,0x1,0x0,0x8,0x0,0,0,0,0); -- Reaper of Souls + +DELETE FROM `spell_script_names` WHERE `ScriptName`='spell_dk_soul_reaper'; +DELETE FROM `spell_script_names` WHERE `ScriptName`='spell_dk_soul_reaper_reaper_of_souls'; +DELETE FROM `spell_script_names` WHERE `ScriptName`='spell_dk_reaper_of_souls'; +INSERT INTO `spell_script_names` (`spell_id`, `ScriptName`) VALUES +(343294, 'spell_dk_soul_reaper'), +(469180, 'spell_dk_soul_reaper_reaper_of_souls'), +(343294, 'spell_dk_reaper_of_souls'); |
