diff options
| author | Muru <timurdelimin@gmail.com> | 2025-01-03 13:02:58 +0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-01-03 07:02:58 +0100 |
| commit | 000e4e99702d703ada9b2798f579534b547e35a6 (patch) | |
| tree | 7b961aaed4b69f3154c5feb410ad8efca0b8481b /sql | |
| parent | a3d29b45975bf9ef71e03866a94ff03bf3ad0cfb (diff) | |
Scripts/Spells: Implement warlock talent "Shadow Invocation" (#30561)
Diffstat (limited to 'sql')
| -rw-r--r-- | sql/updates/world/master/2025_01_03_01_world.sql | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/sql/updates/world/master/2025_01_03_01_world.sql b/sql/updates/world/master/2025_01_03_01_world.sql new file mode 100644 index 00000000000..747e716120a --- /dev/null +++ b/sql/updates/world/master/2025_01_03_01_world.sql @@ -0,0 +1,7 @@ +DELETE FROM `spell_proc` WHERE `SpellId` IN (422054); +INSERT INTO `spell_proc` (`SpellId`,`SchoolMask`,`SpellFamilyName`,`SpellFamilyMask0`,`SpellFamilyMask1`,`SpellFamilyMask2`,`SpellFamilyMask3`,`ProcFlags`,`ProcFlags2`,`SpellTypeMask`,`SpellPhaseMask`,`HitMask`,`AttributesMask`,`DisableEffectsMask`,`ProcsPerMinute`,`Chance`,`Cooldown`,`Charges`) VALUES +(422054,0x00,5,0x00000000,0x00000000,0x00000000,0x00000000,0x0,0x0,0x1,0x2,0x403,0x0,0x0,0,20,0,0); -- Shadow Invocation + +DELETE FROM `spell_script_names` WHERE `spell_id` = 422054; +INSERT INTO `spell_script_names` (`spell_id`, `ScriptName`) VALUES +(422054, 'spell_warl_shadow_invocation'); |
