From 8747419d5666dc2602b1825dd75b8db2a8f64b11 Mon Sep 17 00:00:00 2001 From: MoltenCrystal Date: Mon, 16 Feb 2026 22:18:49 +0100 Subject: [PATCH] DB/Spells: Add proc data for Exhilarating Blows (#31567) --- sql/updates/world/master/2026_02_16_04_world.sql | 4 ++++ src/server/scripts/Spells/spell_warrior.cpp | 1 + 2 files changed, 5 insertions(+) create mode 100644 sql/updates/world/master/2026_02_16_04_world.sql diff --git a/sql/updates/world/master/2026_02_16_04_world.sql b/sql/updates/world/master/2026_02_16_04_world.sql new file mode 100644 index 0000000000..9afcae8780 --- /dev/null +++ b/sql/updates/world/master/2026_02_16_04_world.sql @@ -0,0 +1,4 @@ +DELETE FROM `spell_proc` WHERE `SpellId` IN (383219,391962); +INSERT INTO `spell_proc` (`SpellId`,`SchoolMask`,`SpellFamilyName`,`SpellFamilyMask0`,`SpellFamilyMask1`,`SpellFamilyMask2`,`SpellFamilyMask3`,`ProcFlags`,`ProcFlags2`,`SpellTypeMask`,`SpellPhaseMask`,`HitMask`,`AttributesMask`,`DisableEffectsMask`,`ProcsPerMinute`,`Chance`,`Cooldown`,`Charges`) VALUES +(383219,0x00,4,0x02000000,0x00000000,0x00000000,0x00000000,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0,0,0,0), -- Exhilarating Blows, Mortal Strike +(391962,0x00,4,0x00400000,0x00000000,0x00000000,0x00000000,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0,0,0,0); -- Exhilarating Blows, Cleave diff --git a/src/server/scripts/Spells/spell_warrior.cpp b/src/server/scripts/Spells/spell_warrior.cpp index be75955693..5fd29883b4 100644 --- a/src/server/scripts/Spells/spell_warrior.cpp +++ b/src/server/scripts/Spells/spell_warrior.cpp @@ -84,6 +84,7 @@ enum WarriorSpells SPELL_WARRIOR_MORTAL_STRIKE = 12294, SPELL_WARRIOR_MORTAL_WOUNDS = 115804, SPELL_WARRIOR_OVERPOWER = 7384, + SPELL_WARRIOR_OVERPOWERING_FINISH = 400205, SPELL_WARRIOR_POWERFUL_ENRAGE = 440277, SPELL_WARRIOR_RALLYING_CRY = 97463, SPELL_WARRIOR_RAVAGER = 228920,