diff options
| author | Cristian Vintila <127750549+cristianvnt@users.noreply.github.com> | 2026-01-01 20:52:55 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-01-01 19:52:55 +0100 |
| commit | b2596bd42c2d612e49569ea7e41972774d6139a8 (patch) | |
| tree | 0b4bc5c2ff99cc7d8195ee4a667a7d734c5d0722 /sql/updates | |
| parent | 48992393c892b1bd327c7a2ce3adf31bb99e9003 (diff) | |
Scripts/Spells: Implement priest talent Voice of Harmony (#31457)
Diffstat (limited to 'sql/updates')
| -rw-r--r-- | sql/updates/world/master/2026_01_01_02_world.sql | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/sql/updates/world/master/2026_01_01_02_world.sql b/sql/updates/world/master/2026_01_01_02_world.sql new file mode 100644 index 00000000000..35d25109c57 --- /dev/null +++ b/sql/updates/world/master/2026_01_01_02_world.sql @@ -0,0 +1,7 @@ +DELETE FROM `spell_script_names` WHERE `ScriptName`='spell_pri_voice_of_harmony'; +INSERT INTO `spell_script_names` (`spell_id`, `ScriptName`) VALUES +(390994, 'spell_pri_voice_of_harmony'); + +DELETE FROM `spell_proc` WHERE `SpellId` IN (390994); +INSERT INTO `spell_proc` (`SpellId`,`SchoolMask`,`SpellFamilyName`,`SpellFamilyMask0`,`SpellFamilyMask1`,`SpellFamilyMask2`,`SpellFamilyMask3`,`ProcFlags`,`ProcFlags2`,`SpellTypeMask`,`SpellPhaseMask`,`HitMask`,`AttributesMask`,`DisableEffectsMask`,`ProcsPerMinute`,`Chance`,`Cooldown`,`Charges`) VALUES +(390994,0x00,6,0x00100000,0x00000000,0x00008000,0x00404040,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0,100,0,0); -- Voice of Harmony |
