mirror of
https://github.com/mod-playerbots/azerothcore-wotlk.git
synced 2026-01-17 10:55:43 +00:00
fix(DB/Creature) Add immunities to various NPCs. (#22815)
This commit is contained in:
12
data/sql/updates/pending_db_world/immunities.sql
Normal file
12
data/sql/updates/pending_db_world/immunities.sql
Normal 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);
|
||||
Reference in New Issue
Block a user