aboutsummaryrefslogtreecommitdiff
path: root/sql
diff options
context:
space:
mode:
authorShauren <shauren.trinity@gmail.com>2022-09-27 20:14:11 +0200
committerShauren <shauren.trinity@gmail.com>2022-09-27 20:14:11 +0200
commitace57b11c2f3617ac3dc0530445968b8234bffac (patch)
tree1f956283182833373d8588995b0e3f8dc6224c39 /sql
parent7114bc6881701798fa32947d8275686dcd258d19 (diff)
DB/Zul'gurub: Added spawn groups for bosses and prevent multiple Gahz'ranka summons
Diffstat (limited to 'sql')
-rw-r--r--sql/updates/world/3.3.5/2022_09_27_01_world.sql31
1 files changed, 31 insertions, 0 deletions
diff --git a/sql/updates/world/3.3.5/2022_09_27_01_world.sql b/sql/updates/world/3.3.5/2022_09_27_01_world.sql
new file mode 100644
index 00000000000..c1c57bee34b
--- /dev/null
+++ b/sql/updates/world/3.3.5/2022_09_27_01_world.sql
@@ -0,0 +1,31 @@
+DELETE FROM `spawn_group_template` WHERE `groupId` BETWEEN 286 AND 292;
+INSERT INTO `spawn_group_template` (`groupId`,`groupName`,`groupFlags`) VALUES
+(286,'Zul''gurub - High Priestess Jeklik',4),
+(287,'Zul''gurub - High Priest Venoxis',4),
+(288,'Zul''gurub - High Priestess Mar''li',4),
+(289,'Zul''gurub - High Priest Thekal',4),
+(290,'Zul''gurub - Hakkar',4),
+(291,'Zul''gurub - Bloodlord Mandokir',4),
+(292,'Zul''gurub - Jin''do the Hexxer',4);
+
+DELETE FROM `instance_spawn_groups` WHERE `spawnGroupId` BETWEEN 286 AND 292;
+INSERT INTO `instance_spawn_groups` (`instanceMapId`,`bossStateId`,`bossStates`,`spawnGroupId`,`flags`) VALUES
+(309,0,23,286,1),
+(309,1,23,287,1),
+(309,2,23,288,1),
+(309,4,23,289,1),
+(309,5,23,290,1),
+(309,6,23,291,1),
+(309,7,23,292,1);
+
+DELETE FROM `spawn_group` WHERE `groupId` BETWEEN 286 AND 292;
+INSERT INTO `spawn_group` (`groupId`,`spawnType`,`spawnId`) VALUES
+(286,0,49199),
+(287,0,49194),
+(288,0,49258),
+(289,0,49310),
+(290,0,49678),
+(291,0,49286),
+(292,0,49655);
+
+DELETE FROM `event_scripts` WHERE `id`=9104;