DB/Creatures: stormwind pet trainer will now properly reset pet talents

*Db/Spells: Nature's grace will now trigger on cast instead on hit and has a 60 seconds cooldown
This commit is contained in:
Ovalord
2018-01-17 00:37:20 +01:00
parent 8b11ca0fd2
commit 4ebb2c89b7

View File

@@ -0,0 +1,5 @@
-- Add Pet trainer scriptname to pet trainer in stormwind
UPDATE `creature_template` SET `ScriptName`= 'npc_pet_trainer' WHERE `entry`= 44251;
-- druid's natures grace should have a 60 seconds cooldown and should proc on cast, not on hit
UPDATE `spell_proc` SET `SpellPhaseMask`= 1, `Cooldown`= 60000, `HitMask`= 12287 WHERE `SpellId`= -16880;