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
  • Loading branch information
Treeston committed Jan 19, 2016
2 parents d23ef5d + 2d7aa15 commit e8a7973
Show file tree
Hide file tree
Showing 4 changed files with 595 additions and 314 deletions.
23 changes: 23 additions & 0 deletions sql/updates/world/2016_01_19_07_world.sql
@@ -0,0 +1,23 @@
-- 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;

-- difficulty based spell ids
DELETE FROM `spelldifficulty_dbc` WHERE `id` IN (28882,28884,57374,28863,57376,28883);
INSERT INTO `spelldifficulty_dbc` (`id`,`spellid0`,`spellid1`) VALUES
(28882,28882,57369), -- Rivendare: Unholy Shadow
(28884,28884,57467), -- Korth'azz: Meteor
(57374,57374,57464), -- Blaumeux: Shadow Bolt
(28863,28863,57463), -- Blaumeux: Void Zone
(57376,57376,57465), -- Zeliek: Holy Bolt
(28883,28883,57466); -- Zeliek: Holy Wrath

0 comments on commit e8a7973

Please sign in to comment.