mirror of
https://github.com/mod-playerbots/azerothcore-wotlk.git
synced 2026-01-23 13:46:24 +00:00
fix(DB/creature_template): Adjust InhabitType and SAI - Deviate creatures (#5335)
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user