diff options
| author | Matan Shukry <matanshukry@gmail.com> | 2021-04-11 22:16:41 +0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-04-11 21:16:41 +0200 |
| commit | cf3ea2082578077cfec589c2a5fab12ab91c1777 (patch) | |
| tree | 5c45a9e01ec1bf59835b8fe10c3d7ef1843bd56e /sql/updates | |
| parent | b92e20f6c860bd1b5f3e7ce3f614dd48fc5b49c4 (diff) | |
Core/Spells: Fixed multiple druid's spells (#26223)
* Tooth And Claw proc correctly (was incorrect attribute)
* Tiger Dash will now transform to cat
* Travelform doesn't require learning riding skill
* Aquatic Form only useable if player has the spell (passive at level 17)
* Doesn't allow stag form inside water
* Bristling Fur will generate rage based on max rage
* Now also removing prowl when cat form is removed
Diffstat (limited to 'sql/updates')
| -rw-r--r-- | sql/updates/world/master/2021_04_11_01_world_druid_spells.sql | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/sql/updates/world/master/2021_04_11_01_world_druid_spells.sql b/sql/updates/world/master/2021_04_11_01_world_druid_spells.sql new file mode 100644 index 00000000000..4f6adbc8861 --- /dev/null +++ b/sql/updates/world/master/2021_04_11_01_world_druid_spells.sql @@ -0,0 +1,7 @@ +-- Spell Proc +DELETE FROM `spell_proc` WHERE `SpellId` IN (135286); +INSERT INTO `spell_proc` (`SpellId`,`SchoolMask`,`SpellFamilyName`,`SpellFamilyMask0`,`SpellFamilyMask1`,`SpellFamilyMask2`,`SpellFamilyMask3`,`ProcFlags`,`SpellTypeMask`,`SpellPhaseMask`,`HitMask`,`AttributesMask`,`DisableEffectsMask`,`ProcsPerMinute`,`Chance`,`Cooldown`,`Charges`) VALUES +(135286, 0, 7, 0x800, 0x0, 0x0, 0x0, 0x10, 1, 2, 0x403, 0x10, 0, 0, 0, 0, 0); + +DELETE FROM `spell_script_names` WHERE `ScriptName` IN ('spell_dru_cat_form'); +INSERT INTO `spell_script_names` (`spell_id`,`ScriptName`) VALUES (768, 'spell_dru_cat_form'); |
