fix(DB/creature_template): Adjust InhabitType and SAI - Deviate creatures (#5335)

This commit is contained in:
Silker
2021-04-18 11:33:12 -06:00
committed by GitHub
parent 167951848d
commit 170c9a7a20

View File

@@ -0,0 +1,20 @@
INSERT INTO `version_db_world` (`sql_rev`) VALUES ('1618698984447935300');
-- Ground & water
UPDATE `creature_template` SET `InhabitType`=3 WHERE entry IN (
3632, -- Deviate Creeper
3633, -- Deviate Slayer
3634, -- Deviate Stalker
3636, -- Deviate Ravager
3638); -- Devouring Ectoplasm
-- Ground & air
UPDATE `creature_template` SET `InhabitType`=5 WHERE entry IN (
3630, -- Deviate Coiler
3631, -- Deviate Stinglash
20797); -- Deviate Coiler Hatchling
-- Improve SAI for Deviate Stinglash
-- https://wowgaming.altervista.org/aowow/?npc=3631#abilities
UPDATE `smart_scripts` SET `event_param1`=5000, `event_param2`=7000, `event_param3`=12000, `event_param4`=18000, `comment`='Deviate Stinglash - In Combat - Cast Lash' WHERE `entryorguid`=3631 AND `source_type`=0 AND `id`=0 AND `link`=0;