fix(DB/Creature): Bound Air, Fire and Water Elemental damage and immu… (#22300)
This commit is contained in:
parent
67aa3e8e9c
commit
e4583eb06f
1 changed files with 6 additions and 0 deletions
|
|
@ -0,0 +1,6 @@
|
|||
-- Bound Fire Elemental
|
||||
UPDATE `creature_template` SET `dmgschool` = 2, `spell_school_immune_mask` = 4 WHERE `entry` IN (30416, 31453);
|
||||
-- Bound Water Elemental
|
||||
UPDATE `creature_template` SET `dmgschool` = 4, `spell_school_immune_mask` = 16 WHERE `entry` IN (30419, 31454);
|
||||
-- Bound Air Elemental
|
||||
UPDATE `creature_template` SET `dmgschool` = 3, `spell_school_immune_mask` = 8 WHERE `entry` IN (30418, 31452);
|
||||
Loading…
Add table
Add a link
Reference in a new issue