aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCraftedRO <CraftedRO@users.noreply.github.com>2022-10-31 18:56:32 +0100
committerKillyana <morphone1@gmail.com>2022-10-31 18:56:32 +0100
commitb00679a6047b9635016f467cb1b3aac90a13be2e (patch)
treebca22f6e1ebdc96ec86c6225e2df33d9b6b9de74
parent259ccc6446ff24fe5f5be65afbb12f419be31fbf (diff)
DB: Few updates to Felmyst
Closes #28288
-rw-r--r--sql/updates/world/3.3.5/2022_10_31_03_world.sql10
1 files changed, 10 insertions, 0 deletions
diff --git a/sql/updates/world/3.3.5/2022_10_31_03_world.sql b/sql/updates/world/3.3.5/2022_10_31_03_world.sql
new file mode 100644
index 00000000000..bba85cd1c62
--- /dev/null
+++ b/sql/updates/world/3.3.5/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');