fix(DB/Creature) Add immunities to various NPCs. (#22815)
This commit is contained in:
parent
d22f015e52
commit
e6dd4bcb88
1 changed files with 12 additions and 0 deletions
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);
|
||||
Loading…
Add table
Add a link
Reference in a new issue