diff options
| author | Cristian Vintila <127750549+cristianvnt@users.noreply.github.com> | 2026-01-01 20:10:12 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-01-01 19:10:12 +0100 |
| commit | 48992393c892b1bd327c7a2ce3adf31bb99e9003 (patch) | |
| tree | a3cf44b3654e05abbb1afce693e4c620b1ac07ae /sql/updates | |
| parent | d905ac7d8215e58d83ef652c3a9a205a4830f8b9 (diff) | |
Scripts/Spells: Implement priest talent Burning Vehemence (#31456)
Diffstat (limited to 'sql/updates')
| -rw-r--r-- | sql/updates/world/master/2026_01_01_00_world.sql (renamed from sql/updates/world/master/2026_01_01_world.sql) | 0 | ||||
| -rw-r--r-- | sql/updates/world/master/2026_01_01_01_world.sql | 7 |
2 files changed, 7 insertions, 0 deletions
diff --git a/sql/updates/world/master/2026_01_01_world.sql b/sql/updates/world/master/2026_01_01_00_world.sql index a27f060f85c..a27f060f85c 100644 --- a/sql/updates/world/master/2026_01_01_world.sql +++ b/sql/updates/world/master/2026_01_01_00_world.sql diff --git a/sql/updates/world/master/2026_01_01_01_world.sql b/sql/updates/world/master/2026_01_01_01_world.sql new file mode 100644 index 00000000000..6bbf1e201e0 --- /dev/null +++ b/sql/updates/world/master/2026_01_01_01_world.sql @@ -0,0 +1,7 @@ +DELETE FROM `spell_script_names` WHERE `ScriptName`='spell_pri_burning_vehemence'; +INSERT INTO `spell_script_names` (`spell_id`, `ScriptName`) VALUES +(372307,'spell_pri_burning_vehemence'); + +DELETE FROM `spell_proc` WHERE `SpellId` IN (372307); +INSERT INTO `spell_proc` (`SpellId`,`SchoolMask`,`SpellFamilyName`,`SpellFamilyMask0`,`SpellFamilyMask1`,`SpellFamilyMask2`,`SpellFamilyMask3`,`ProcFlags`,`ProcFlags2`,`SpellTypeMask`,`SpellPhaseMask`,`HitMask`,`AttributesMask`,`DisableEffectsMask`,`ProcsPerMinute`,`Chance`,`Cooldown`,`Charges`) VALUES +(372307,0x00,6,0x00100000,0x00000000,0x00000000,0x00000000,0x0,0x0,0x1,0x2,0x0,0x0,0x0,0,0,0,0); -- Burning Vehemence |
