diff options
author | username9617 <lol31283@gmail.com> | 2025-03-22 19:32:53 +0100 |
---|---|---|
committer | Naddley <NaddleyTC@gmail.com> | 2025-03-22 19:32:56 +0100 |
commit | b954fd23c1ee8ba800af653b8eca7e7eef84ec49 (patch) | |
tree | 04fab4d0f81e5dbbc19c31eb21bc66c155d4c6f1 /sql | |
parent | bb67a4279145c37c2106d2bd7a54b14186502602 (diff) |
DB/Durotar: Added feign death aura to Drowned KulTiras creatures
Closes #30769
Diffstat (limited to 'sql')
-rw-r--r-- | sql/updates/world/master/2025_03_22_00_world.sql | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/sql/updates/world/master/2025_03_22_00_world.sql b/sql/updates/world/master/2025_03_22_00_world.sql new file mode 100644 index 00000000000..b74a24427b5 --- /dev/null +++ b/sql/updates/world/master/2025_03_22_00_world.sql @@ -0,0 +1,9 @@ +-- Creature Template +DELETE FROM `creature_template_addon` WHERE `entry` IN (37912 /*37912 (Drowned Kul Tiras Marine) - Permanent Feign Death*/, 37911 /*37911 (Drowned Kul Tiras Sailor) - Permanent Feign Death*/); +INSERT INTO `creature_template_addon` (`entry`, `PathId`, `mount`, `StandState`, `AnimTier`, `VisFlags`, `SheathState`, `PvpFlags`, `emote`, `aiAnimKit`, `movementAnimKit`, `meleeAnimKit`, `visibilityDistanceType`, `auras`) VALUES +(37912, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, '29266'), -- 37912 (Drowned Kul Tiras Marine) - Permanent Feign Death +(37911, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, '29266'); -- 37911 (Drowned Kul Tiras Sailor) - Permanent Feign Death + +-- Difficulty +UPDATE `creature_template_difficulty` SET `StaticFlags1`=0x10000100, `VerifiedBuild`=59679 WHERE (`Entry`=37912 AND `DifficultyID`=0); -- 37912 (Drowned Kul Tiras Marine) - Sessile, CanSwim +UPDATE `creature_template_difficulty` SET `StaticFlags1`=0x10000100, `VerifiedBuild`=59679 WHERE (`Entry`=37911 AND `DifficultyID`=0); -- 37911 (Drowned Kul Tiras Sailor) - Sessile, CanSwim |