diff options
| author | CraftedRO <CraftedRO@users.noreply.github.com> | 2022-10-31 18:56:32 +0100 |
|---|---|---|
| committer | Shauren <shauren.trinity@gmail.com> | 2023-01-12 22:55:16 +0100 |
| commit | 33c7eb45b1b8728330216a0e751642979ba91d69 (patch) | |
| tree | f7b5218ca216dc85023dbb8f99e4452a1b824370 | |
| parent | 06437034803756b93f32c18b2517fc590dcac63d (diff) | |
DB: Few updates to Felmyst
Closes #28288
(cherry picked from commit b00679a6047b9635016f467cb1b3aac90a13be2e)
| -rw-r--r-- | sql/updates/world/master/2023_01_12_08_world_2022_10_31_03_world.sql | 10 |
1 files changed, 10 insertions, 0 deletions
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'); |
