mirror of
https://github.com/liyunfan1223/azerothcore-wotlk.git
synced 2026-08-04 22:07:52 +00:00
fix(Scripts/Ulduar): Update Yogg portal spawning, p1 Sara Shadow Nova (#26632)
This commit is contained in:
@@ -0,0 +1,5 @@
|
||||
-- Yogg Portal 'Descend Into Madness'
|
||||
-- Movement flags: DisableGravity + Root
|
||||
DELETE FROM `creature_template_movement` WHERE (`CreatureId` = 34072);
|
||||
INSERT INTO `creature_template_movement` (`CreatureId`, `Ground`, `Swim`, `Flight`, `Rooted`, `Chase`, `Random`, `InteractionPauseTimer`) VALUES
|
||||
(34072, 0, 0, 1, 1, 0, 0, 0);
|
||||
@@ -0,0 +1,7 @@
|
||||
-- Sara should start friendly, becoming hostile when Yogg-Saron reveals himself (phase 2)
|
||||
UPDATE `creature_template` SET `faction` = 35 WHERE `entry` IN (33134, 34332);
|
||||
|
||||
-- Sara (1)
|
||||
DELETE FROM `conditions` WHERE (`SourceTypeOrReferenceId` = 13) AND (`SourceGroup` = 1) AND (`SourceEntry` = 65719) AND (`SourceId` = 0) AND (`ElseGroup` = 1) AND (`ConditionTypeOrReference` = 31) AND (`ConditionTarget` = 0) AND (`ConditionValue1` = 3) AND (`ConditionValue2` = 34332) AND (`ConditionValue3` = 0);
|
||||
INSERT INTO `conditions` (`SourceTypeOrReferenceId`, `SourceGroup`, `SourceEntry`, `SourceId`, `ElseGroup`, `ConditionTypeOrReference`, `ConditionTarget`, `ConditionValue1`, `ConditionValue2`, `ConditionValue3`, `NegativeCondition`, `ErrorType`, `ErrorTextId`, `ScriptName`, `Comment`) VALUES
|
||||
(13, 1, 65719, 0, 1, 31, 0, 3, 34332, 0, 0, 0, 0, '', 'Shadow Nova');
|
||||
Reference in New Issue
Block a user