mirror of
https://gitcode.com/GitHub_Trending/az/azerothcore-wotlk.git
synced 2026-07-10 19:03:11 +00:00
fix(DB/Ulduar): make General Vezax immune to spell-haste debuffs (#26474)
Co-authored-by: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
@@ -0,0 +1,11 @@
|
||||
--
|
||||
-- General Vezax (33271) must resist spell-haste debuffs (Curse of Tongues, Mind-numbing Poison,
|
||||
-- Slow, core hound Lava Breath). They inflate his Shadow Crash / Searing Flames cast times and
|
||||
-- trivialize the encounter. He already uses shared CC set -287; a single creature can reference only
|
||||
-- one immunity set, so give him a dedicated superset that keeps -287's immunities and adds
|
||||
-- aura 216 (HASTE_SPELLS). Other -287 users are left untouched.
|
||||
DELETE FROM `creature_immunities` WHERE `ID`=-427;
|
||||
INSERT INTO `creature_immunities` (`ID`, `SchoolMask`, `DispelTypeMask`, `MechanicsMask`, `Effects`, `Auras`, `ImmuneAoE`, `ImmuneChain`, `Comment`) VALUES
|
||||
(-427, 0, 0, 1234599678, '98,114,124,144,145', '11,216', 0, 0, 'General Vezax: -287 (CC/knockback/taunt, auras=11(MOD_TAUNT)) + auras=216(HASTE_SPELLS) so cast-time slows do not trivialize the fight');
|
||||
|
||||
UPDATE `creature_template` SET `CreatureImmunitiesId`=-427 WHERE `entry`=33271;
|
||||
Reference in New Issue
Block a user