Skip to content

Commit

Permalink
Merge branch '3.3.5-horsemen' into 3.3.5-base (PR #16194)
Browse files Browse the repository at this point in the history
(cherry picked from commit e8a7973)
  • Loading branch information
Treeston authored and Shauren committed Apr 10, 2016
1 parent 500d5db commit c344fee
Show file tree
Hide file tree
Showing 4 changed files with 591 additions and 314 deletions.
13 changes: 13 additions & 0 deletions sql/updates/world/2016_04_10_09_world_2016_01_19_07_world.sql
@@ -0,0 +1,13 @@
-- four horsemen rewrite
UPDATE `creature_template` SET `ScriptName`='boss_four_horsemen_baron' WHERE `entry`=30549;
UPDATE `creature_template` SET `ScriptName`='boss_four_horsemen_thane' WHERE `entry`=16064;
UPDATE `creature_template` SET `ScriptName`='boss_four_horsemen_lady' WHERE `entry`=16065;
UPDATE `creature_template` SET `ScriptName`='boss_four_horsemen_sir' WHERE `entry`=16063;

-- add ragecast texts
DELETE FROM `creature_text` WHERE `entry` IN (16064,16065,16063,30549) AND `groupid`=7;
INSERT INTO `creature_text` (`entry`,`groupid`,`id`,`text`,`type`,`probability`,`BroadcastTextId`,`TextRange`,`comment`) VALUES
(16063,7,0,"%s casts Condemnation on everyone!",41,100,33088,3,"zeliek EMOTE_RAGECAST"),
(16065,7,0,"%s casts Unyielding Pain on everyone!",41,100,33087,3,"blaumeux EMOTE_RAGECAST");
-- slay text probability to DB
UPDATE `creature_text` SET `probability`=30 WHERE `entry` IN (16064,16065,16063,30549) AND `groupid`=3;

0 comments on commit c344fee

Please sign in to comment.