From 33c7eb45b1b8728330216a0e751642979ba91d69 Mon Sep 17 00:00:00 2001 From: CraftedRO Date: Mon, 31 Oct 2022 18:56:32 +0100 Subject: DB: Few updates to Felmyst Closes #28288 (cherry picked from commit b00679a6047b9635016f467cb1b3aac90a13be2e) --- .../world/master/2023_01_12_08_world_2022_10_31_03_world.sql | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 sql/updates/world/master/2023_01_12_08_world_2022_10_31_03_world.sql (limited to 'sql') diff --git a/sql/updates/world/master/2023_01_12_08_world_2022_10_31_03_world.sql b/sql/updates/world/master/2023_01_12_08_world_2022_10_31_03_world.sql new file mode 100644 index 00000000000..bba85cd1c62 --- /dev/null +++ b/sql/updates/world/master/2023_01_12_08_world_2022_10_31_03_world.sql @@ -0,0 +1,10 @@ +-- Let felmyst to fly kek +UPDATE `creature_template_movement` SET `Swim` = 0, `Flight` = 1 WHERE `CreatureId` = 25038; + +-- Attempt to make Demonic Vapor (Trail) trigger invisible to players +UPDATE `creature_template` SET `flags_extra`=`flags_extra`|128 WHERE `entry`=25267; + +-- felmyst missing BREATH_EMOTE +DELETE FROM `creature_text` WHERE `CreatureID`=25038 AND `GroupID`=7; +INSERT INTO `creature_text` (`CreatureID`, `GroupID`, `ID`, `Text`, `Type`, `Language`, `Probability`, `Emote`, `Duration`, `Sound`, `BroadcastTextId`, `TextRange`, `comment`) VALUES +(25038, 7, 0, '%s takes a deep breath.', 41, 0, 100, 0, 0, 0, 20021, 0, 'felmyst - BREATH_EMOTE'); -- cgit v1.2.3