mirror of
https://github.com/TrinityCore/TrinityCore.git
synced 2026-01-23 18:36:31 +01:00
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
This commit is contained in:
@@ -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');
|
||||
Reference in New Issue
Block a user