Scripts/Gundrak: Drakkari Colossus cleanup (#31275)

Drakkari Colossus implementation cleanup
This commit is contained in:
ccrs
2025-10-10 14:21:36 +02:00
committed by GitHub
parent 676c1398d6
commit bc68d013da
7 changed files with 227 additions and 155 deletions

View File

@@ -0,0 +1,26 @@
--
DELETE FROM `spell_script_names` WHERE `ScriptName` = 'spell_drakkari_colossus_surge';
INSERT INTO `spell_script_names` (`spell_id`, `ScriptName`) VALUES
(54801, 'spell_drakkari_colossus_surge');
DELETE FROM `spawn_group` WHERE (`groupId` = '33') and (`spawnType` = '0') and (`spawnId` = '127071');
DELETE FROM `spawn_group` WHERE (`groupId` = '33') and (`spawnType` = '0') and (`spawnId` = '127072');
DELETE FROM `spawn_group` WHERE (`groupId` = '33') and (`spawnType` = '0') and (`spawnId` = '127073');
DELETE FROM `spawn_group` WHERE (`groupId` = '33') and (`spawnType` = '0') and (`spawnId` = '127074');
DELETE FROM `spawn_group` WHERE (`groupId` = '33') and (`spawnType` = '0') and (`spawnId` = '127075');
DELETE FROM `spawn_group_template` WHERE `groupId`=328;
INSERT INTO `spawn_group_template` (`groupId`,`groupName`,`groupFlags`) VALUES
(328,'Gundrak - Drakkari Colossus',4);
DELETE FROM `spawn_group` WHERE `groupId`=328;
INSERT INTO `spawn_group` (`groupId`,`spawnType`,`spawnId`) VALUES
(328,0,127071),
(328,0,127072),
(328,0,127073),
(328,0,127074),
(328,0,127075);
DELETE FROM `instance_spawn_groups` WHERE `spawnGroupId` =328;
INSERT INTO `instance_spawn_groups` (`instanceMapId`,`bossStateId`,`bossStates`,`spawnGroupId`,`flags`) VALUES
(604,1,23,328,2);