Skip to content

Commit

Permalink
Correct damage school of creatures. [VDB]
Browse files Browse the repository at this point in the history
(cherry picked from commit vmangos/core@e1ac674
  • Loading branch information
ratkosrb authored and AnonXS committed Nov 12, 2023
1 parent 1f76512 commit 75ded71
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions Updates/0273_VDB-20231020080914_world.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
-- Add your query below.
-- https://github.com/vmangos/core/commit/e1ac6740bb9716769a2fb5fc34a36d0bde37627c

-- Correct damage school of creatures.
UPDATE `creature_template` SET `DamageSchool`=2 WHERE `entry`=9436; -- Spawn of Bael'Gar should do Fire damage, not Physical
UPDATE `creature_template` SET `DamageSchool`=0 WHERE `entry`=8908; -- Molten War Golem should do Physical damage, not Fire
UPDATE `creature_template` SET `DamageSchool`=4 WHERE `entry`=10387; -- Vengeful Phantom should do Frost damage, not Physical
UPDATE `creature_template` SET `DamageSchool`=5 WHERE `entry`=10436; -- Baroness Anastari should do Shadow damage, not Physical
UPDATE `creature_template` SET `DamageSchool`=6 WHERE `entry`=14400; -- Arcane Feedback should do Arcane damage, not Nature
UPDATE `creature_template` SET `DamageSchool`=6 WHERE `entry`=14399; -- Arcane Torrent should do Arcane damage, not Nature
UPDATE `creature_template` SET `DamageSchool`=5 WHERE `entry`=8539; -- Eyeless Watcher should do Shadow damage, not Physical
UPDATE `creature_template` SET `DamageSchool`=5 WHERE `entry`=5676; -- Summoned Voidwalker should do Shadow damage, not Physical
UPDATE `creature_template` SET `DamageSchool`=3 WHERE `entry`=15212; -- Hoary Templar should do Nature damage, not Physical
UPDATE `creature_template` SET `DamageSchool`=2 WHERE `entry`=4785; -- Illusionary Nightmare should do Fire damage, not Physical
UPDATE `creature_template` SET `DamageSchool`=5 WHERE `entry`=703; -- Lieutenant Fangore should do Shadow damage, not Physical
UPDATE `creature_template` SET `DamageSchool`=2 WHERE `entry`=14467; -- Kroshius should do Fire damage, not Physical
UPDATE `creature_template` SET `DamageSchool`=2 WHERE `entry`=3736; -- Darkslayer Mordenthal should do Fire damage, not Physical

-- End of migration.

3 comments on commit 75ded71

@ratkosrb
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Since you are committing this to tbc-db, there is 1 creature that was different in classic vs tbc sniffs that I noticed.

UPDATE `creature_template` SET `damage_school`=3 WHERE `entry`=4468; -- Jade Sludge should do Nature damage, not Physical

This creature does Physical damage in classic, but Nature in tbc. You should commit it to tbc-db and wotlk-db if it's not already correct there.

@AnonXS
Copy link
Member

@AnonXS AnonXS commented on 75ded71 Nov 12, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

ty, will amend.

@niefenger
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Have you noticed that the blizzard will interrupt guidance after being resisted

Please sign in to comment.