fix(DB/Creature): Correct movement speed of Hyjal bosses. (#19251)

Init.
This commit is contained in:
Benjamin Jackson
2024-07-02 13:51:25 -04:00
committed by GitHub
parent 5a4692e45a
commit 8df063984d

View File

@@ -0,0 +1,10 @@
-- Anetheron
UPDATE `creature_template` SET `speed_walk` = 1.6, `speed_run` = 1.714285714285714 WHERE `entry` = 17808;
-- Archimonde
UPDATE `creature_template` SET `speed_walk` = 3.2, `speed_run` = 2.285714285714286 WHERE `entry` = 17968;
-- Azgalor
UPDATE `creature_template` SET `speed_walk` = 2.4, `speed_run` = 2.142857142857143 WHERE `entry` = 17842;
-- Kaz'rogal
UPDATE `creature_template` SET `speed_walk` = 2.4, `speed_run` = 1.714285714285714 WHERE `entry` = 17888;
-- Rage Winterchill
UPDATE `creature_template` SET `speed_walk` = 1.6, `speed_run` = 2.285714285714286 WHERE `entry` = 17767;