aboutsummaryrefslogtreecommitdiff
path: root/sql
diff options
context:
space:
mode:
authorCristian Vintila <127750549+cristianvnt@users.noreply.github.com>2025-12-21 00:12:08 +0200
committerGitHub <noreply@github.com>2025-12-20 23:12:08 +0100
commit3cc3bee57b7e816c92e5856fdad37dabee1e52c4 (patch)
tree747b4b150dec9229e700c012f2233c902bc5f705 /sql
parentcf922909f7d951e1c1083bf2169537d73fa0439c (diff)
Scripts/Spells: Implement Holy Priest talent Dispersing Light (#31439)
Diffstat (limited to 'sql')
-rw-r--r--sql/updates/world/master/2025_12_20_01_world.sql8
1 files changed, 8 insertions, 0 deletions
diff --git a/sql/updates/world/master/2025_12_20_01_world.sql b/sql/updates/world/master/2025_12_20_01_world.sql
new file mode 100644
index 00000000000..3bde6131053
--- /dev/null
+++ b/sql/updates/world/master/2025_12_20_01_world.sql
@@ -0,0 +1,8 @@
+DELETE FROM `spell_proc` WHERE `SpellId` IN (1215265);
+INSERT INTO `spell_proc` (`SpellId`,`SchoolMask`,`SpellFamilyName`,`SpellFamilyMask0`,`SpellFamilyMask1`,`SpellFamilyMask2`,`SpellFamilyMask3`,`ProcFlags`,`ProcFlags2`,`SpellTypeMask`,`SpellPhaseMask`,`HitMask`,`AttributesMask`,`DisableEffectsMask`,`ProcsPerMinute`,`Chance`,`Cooldown`,`Charges`) VALUES
+(1215265,0x00,6,0x00001800,0x00000000,0x00008000,0x00000000,0x0,0x0,0x2,0x2,0x0,0x0,0x0,0,0,0,0); -- Dispersing Light
+
+DELETE FROM `spell_script_names` WHERE `ScriptName` IN ('spell_pri_dispersing_light', 'spell_pri_dispersing_light_heal');
+INSERT INTO `spell_script_names` (`spell_id`, `ScriptName`) VALUES
+(1215265, 'spell_pri_dispersing_light'),
+(1215266, 'spell_pri_dispersing_light_heal');