mirror of
https://github.com/mod-playerbots/azerothcore-wotlk.git
synced 2026-01-13 17:19:07 +00:00
fix(Script/Ulduar): Mimiron - remove hardcode text and fix Computer broadcast. (#11725)
* Remove hardcode from Mimiron And fix Computer broadcast text with the sql * Remove unused ObjectAccessor * Add plasma blast to creature_text (MK II) And move all text into 1 enum * cs
This commit is contained in:
@@ -0,0 +1,8 @@
|
||||
-- Ulduar/Mimiron, set Computer model to be female
|
||||
UPDATE `creature_template` SET `modelid1` = 29101 WHERE `entry` = 34143;
|
||||
|
||||
-- Leviathan Mk II
|
||||
DELETE FROM `creature_text` WHERE `CreatureID` = 33432;
|
||||
-- Leviathan Mk II - Plasma Blast boss emote
|
||||
INSERT INTO `creature_text` (`CreatureID`, `GroupID`, `ID`, `Text`, `Type`, `Language`, `Probability`, `Emote`, `Duration`, `Sound`, `BroadcastTextId`, `TextRange`, `comment`) VALUES
|
||||
(33432, 0, 0, '%s begins to cast Plasma Blast!', 41, 0, 100, 0, 0, 15800, 0, 0, 'Leviathan Mk II - EMOTE_PLASMA_BLAST');
|
||||
Reference in New Issue
Block a user