fix(DB/Creature): Bound Air, Fire and Water Elemental damage and immu… (#22300)

This commit is contained in:
Andrew
2025-06-26 21:25:30 -03:00
committed by GitHub
parent 67aa3e8e9c
commit e4583eb06f

View File

@@ -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);