diff options
author | Aqua Deus <95978183+aquadeus@users.noreply.github.com> | 2025-09-19 10:38:40 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-09-19 10:38:40 +0200 |
commit | 2536890beb2b25c257c5120852818d788ee9e73f (patch) | |
tree | e1f3c69d25363116cea45e5ef053fbaf8a58cb8c /sql | |
parent | 4c66c09e38ab327019f63f3c7beadb72f4647123 (diff) |
Scripts/Spells: Implement mage talent Hot Streak (#31253)
Closes #19582
Diffstat (limited to 'sql')
-rw-r--r-- | sql/updates/world/master/2025_09_19_00_world.sql | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/sql/updates/world/master/2025_09_19_00_world.sql b/sql/updates/world/master/2025_09_19_00_world.sql new file mode 100644 index 00000000000..bbd96bbd1f4 --- /dev/null +++ b/sql/updates/world/master/2025_09_19_00_world.sql @@ -0,0 +1,10 @@ +DELETE FROM `spell_script_names` WHERE `ScriptName` IN ('spell_mage_hot_streak', 'spell_mage_hot_streak_ignite_marker'); +INSERT INTO `spell_script_names` (`spell_id`, `ScriptName`) VALUES +(44448, 'spell_mage_hot_streak'), +(11366, 'spell_mage_hot_streak_ignite_marker'), +(2120, 'spell_mage_hot_streak_ignite_marker'); + +DELETE FROM `spell_proc` WHERE `SpellId` IN (44448,48108); +INSERT INTO `spell_proc` (`SpellId`,`SchoolMask`,`SpellFamilyName`,`SpellFamilyMask0`,`SpellFamilyMask1`,`SpellFamilyMask2`,`SpellFamilyMask3`,`ProcFlags`,`ProcFlags2`,`SpellTypeMask`,`SpellPhaseMask`,`HitMask`,`AttributesMask`,`DisableEffectsMask`,`ProcsPerMinute`,`Chance`,`Cooldown`,`Charges`) VALUES +(44448,0x04,3,0x00C00013,0x00100000,0x00000000,0x00000000,0x0,0x0,0x1,0x2,0x2,0x0,0x0,0,0,0,0), -- Pyroblast Clearcasting Driver +(48108,0x00,3,0x00000000,0x00000000,0x00000000,0x00000000,0x0,0x4,0x0,0x0,0x0,0x8,0x0,0,0,0,1); -- Hot Streak! |