fix(DB/Creature) Add immunities to various NPCs. (#22815)

This commit is contained in:
Rocco Silipo
2025-09-06 15:28:22 +02:00
committed by GitHub
parent d22f015e52
commit e6dd4bcb88

View File

@@ -0,0 +1,12 @@
-- Arzeth the Merciless (Charm, Fear, Root, Snare, Banish, Horror)
UPDATE `creature_template` SET `mechanic_immune_mask` = `mechanic_immune_mask` |1|16|64|1024|131072|8388608 WHERE (`entry` = 19354);
-- Illidari Dreadlord (Charm, Fear, Snare)
UPDATE `creature_template` SET `mechanic_immune_mask` = `mechanic_immune_mask` |1|16|1024 WHERE (`entry` = 21166);
-- Wrath Master (Charm, Snare)
UPDATE `creature_template` SET `mechanic_immune_mask` = `mechanic_immune_mask` |1|1024 WHERE (`entry` = 19005);
-- Arazzius the Cruel (Charm, Fear, Root, Snare, Stun, Freeze, Polymorph, Banish)
UPDATE `creature_template` SET `mechanic_immune_mask` = `mechanic_immune_mask` |1|16|64|1024|2048|4096|65536|131072 WHERE (`entry` = 19191);