Skip to content

Commit

Permalink
[5470][ACID] Icecrown: Icecrown Citadel - Phase 4
Browse files Browse the repository at this point in the history
  • Loading branch information
Grz3s committed Jan 5, 2025
1 parent ee45933 commit 4a285cc
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 0 deletions.
8 changes: 8 additions & 0 deletions ACID/acid_wotlk.sql
Original file line number Diff line number Diff line change
Expand Up @@ -29487,7 +29487,15 @@ INSERT INTO `creature_ai_scripts` (`id`,`creature_id`,`event_type`,`event_invers
('3131405','31314','30','0','100','0','10','30698','0','0','0','0','41','10000','0','0','0','0','0','0','0','0','0','0','Ebon Blade Veteran - despawn Self on Receive AI Event Custom 10'),
('3131406','31314','6','0','100','0','0','0','0','0','0','0','41','10000','0','0','0','0','0','0','0','0','0','0','Ebon Blade Veteran - despawn on Death'),
-- Ebon Blade Reaper 31316
('3131601','31316','0','0','100','1057','3000','8000','16000','24000','0','0','11','60951','1','0','11','60945','1','0','0','0','0','0','Ebon Blade Reaper - Cast Frost Strike or Blood Strike'),
('3131602','31316','0','0','100','1025','8000','14000','26000','32000','0','0','11','60950','1','0','0','0','0','0','0','0','0','0','Ebon Blade Reaper - Cast Blood Plague'),
('3131603','31316','0','0','100','1025','16000','24000','36000','48000','0','0','11','60949','4','544','0','0','0','0','0','0','0','0','Ebon Blade Reaper - Cast Death Coil'),
('3131604','31316','1','0','100','1','5000','15000','25000','30000','0','0','11','58962','0','0','0','0','0','0','0','0','0','0','Ebon Blade Reaper - Cast Summon Death Knight Adept IN OOC Timer'),
-- Death Knight Adept 31318
('3131801','31318','0','0','100','1057','3000','8000','16000','24000','0','0','11','60951','1','0','11','60945','1','0','0','0','0','0','Death Knight Adept - Cast Frost Strike or Blood Strike'),
('3131802','31318','0','0','100','1025','8000','14000','26000','32000','0','0','11','60950','1','0','0','0','0','0','0','0','0','0','Death Knight Adept - Cast Blood Plague'),
('3131803','31318','0','0','100','1057','16000','24000','36000','48000','0','0','11','60953','4','544','11','60949','4','544','0','0','0','0','Death Knight Adept - Cast Death Coil or Death and Decay'),
('3131804','31318','6','0','100','0','0','0','0','0','0','0','41','30000','0','0','0','0','0','0','0','0','0','0','Death Knight Adept - Despawn Self on Death'),
-- Umbral Brute 31320
-- Skeletal Runesmith 31321
-- Saronite Shaper 31322
Expand Down
25 changes: 25 additions & 0 deletions Updates/5470_Icecrown_Citadel_Phase4.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
-- Icecrown: Icecrown Citadel - Phase 4

-- Phase shift
DELETE FROM spell_area WHERE spell = 58866;
INSERT INTO spell_area (spell, area, quest_start, quest_start_active, quest_end, condition_id, aura_spell, racemask, gender, autocast) VALUES
(58866,4522,0,0,0,20859,0,0,2,1);

-- Death Knight Adept 31318
-- they're summoned
DELETE FROM creature_addon WHERE guid IN(SELECT guid FROM creature WHERE id = 28025);

This comment has been minimized.

Copy link
@NeatElves

NeatElves Jan 6, 2025

Collaborator

typo) need id 31318

DELETE FROM creature_movement WHERE id IN(SELECT guid FROM creature WHERE id = 28025);
DELETE FROM game_event_creature WHERE guid IN(SELECT guid FROM creature WHERE id = 28025);
DELETE FROM game_event_creature_data WHERE guid IN(SELECT guid FROM creature WHERE id = 28025);
DELETE FROM creature_battleground WHERE guid IN(SELECT guid FROM creature WHERE id = 28025);
DELETE FROM creature_linking WHERE guid IN(SELECT guid FROM creature WHERE id = 28025);
DELETE FROM creature WHERE id = 28025;
-- Orbaz Bloodbane 31283
UPDATE creature SET PhaseMask = 4, position_x = 5826.424, position_y = 2029.9341, position_z = 503.99295, orientation = 5.95157, spawndist = 0, MovementType = 0 WHERE id = 31283;
-- Ebon Blade Reaper 31316
UPDATE creature SET position_x = 5880.522949, position_y = 2045.894531, position_z = 506.891113, orientation = 3.47 WHERE guid = 530281;
-- individual addon
DELETE FROM creature_addon WHERE guid IN (530286,530288);
INSERT INTO creature_addon (guid,mount,stand_state,sheath_state,pvp_flags,emote,moveflags,auras) VALUES
(530286,0,0,1,0,0,0,29266),
(530288,0,0,1,0,0,0,29266);

0 comments on commit 4a285cc

Please sign in to comment.