diff options
| author | Aqua Deus <95978183+aquadeus@users.noreply.github.com> | 2025-05-31 23:57:41 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-05-31 23:57:41 +0200 |
| commit | 6f23a46bb493273b6ddb2eb808c50b3c3100d51a (patch) | |
| tree | 26b019a6902d9c1a1da03cd08ebdb0e7dde04fc3 /sql | |
| parent | 5cdf27be3a69e9d7fb925f128e6f13a2e899087a (diff) | |
Scripts/Spells: Implement hunter talent Streamline (#30941)
Diffstat (limited to 'sql')
| -rw-r--r-- | sql/updates/world/master/2025_05_31_02_world.sql | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/sql/updates/world/master/2025_05_31_02_world.sql b/sql/updates/world/master/2025_05_31_02_world.sql new file mode 100644 index 00000000000..9fdfd29c5d5 --- /dev/null +++ b/sql/updates/world/master/2025_05_31_02_world.sql @@ -0,0 +1,7 @@ +DELETE FROM `spell_script_names` WHERE `ScriptName`='spell_hun_streamline'; +INSERT INTO `spell_script_names` (`spell_id`, `ScriptName`) VALUES +(257044, 'spell_hun_streamline'); + +DELETE FROM `spell_proc` WHERE `SpellId` IN (342076); +INSERT INTO `spell_proc` (`SpellId`,`SchoolMask`,`SpellFamilyName`,`SpellFamilyMask0`,`SpellFamilyMask1`,`SpellFamilyMask2`,`SpellFamilyMask3`,`ProcFlags`,`ProcFlags2`,`SpellTypeMask`,`SpellPhaseMask`,`HitMask`,`AttributesMask`,`DisableEffectsMask`,`ProcsPerMinute`,`Chance`,`Cooldown`,`Charges`) VALUES +(342076,0x00,9,0x00000000,0x00000000,0x00000000,0x00000000,0x0,0x0,0x1,0x2,0x0,0x18,0x0,0,0,0,0); -- Streamline |
