diff options
| author | Aqua Deus <95978183+aquadeus@users.noreply.github.com> | 2024-08-19 16:05:55 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-08-19 16:05:55 +0200 |
| commit | e9aafeff9c7a7cfd36fc8af0d735da3bc708f753 (patch) | |
| tree | 12699ccc0d277bb0d08260cab3708f9cf9c48933 /sql | |
| parent | 2c06e7fcdab677df4e5908f69b9655577e08fe69 (diff) | |
Scripts/Spells: Implement druid talent Astral Smolder (#30133)
Diffstat (limited to 'sql')
| -rw-r--r-- | sql/updates/world/master/2024_08_19_01_world.sql | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/sql/updates/world/master/2024_08_19_01_world.sql b/sql/updates/world/master/2024_08_19_01_world.sql new file mode 100644 index 00000000000..5ef4678c017 --- /dev/null +++ b/sql/updates/world/master/2024_08_19_01_world.sql @@ -0,0 +1,7 @@ +DELETE FROM `spell_proc` WHERE `SpellId` IN (394058); +INSERT INTO `spell_proc` (`SpellId`,`SchoolMask`,`SpellFamilyName`,`SpellFamilyMask0`,`SpellFamilyMask1`,`SpellFamilyMask2`,`SpellFamilyMask3`,`ProcFlags`,`ProcFlags2`,`SpellTypeMask`,`SpellPhaseMask`,`HitMask`,`AttributesMask`,`DisableEffectsMask`,`ProcsPerMinute`,`Chance`,`Cooldown`,`Charges`) VALUES +(394058,0x00,7,0x00000005,0x00000000,0x00000000,0x00000000,0x0,0x0,0x1,0x2,0x0,0x0,0x0,0,0,0,0); -- Astral Smolder + +DELETE FROM `spell_script_names` WHERE `ScriptName`='spell_dru_astral_smolder'; +INSERT INTO `spell_script_names` (`spell_id`, `ScriptName`) VALUES +(394058, 'spell_dru_astral_smolder'); |
