-
Notifications
You must be signed in to change notification settings - Fork 171
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Source of data: TrinityCore/YTDB TODO: Add texts for Griniblix the Spectator depending on which creature spawns
- Loading branch information
1 parent
4d3efa8
commit d4af534
Showing
1 changed file
with
18 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
-- Dire Maul Arena Rare Bosses | ||
SET @GUID := 45758; | ||
SET @POOL := 124; | ||
DELETE FROM `creature` WHERE `id` IN (11447,11497,11498); | ||
INSERT INTO `creature` (`guid`,`id`,`map`,`spawnMask`,`modelid`,`equipment_id`,`position_x`,`position_y`,`position_z`,`orientation`,`spawntimesecsmin`,`spawntimesecsmax`,`spawndist`,`currentwaypoint`,`curhealth`,`curmana`,`MovementType`) VALUES | ||
(@GUID ,11447,1,1,0,0,-3799.62,1063.83,132.806,1.20424,21600,21600,0,0,60000, 0,0), | ||
(@GUID+1,11497,1,1,0,0,-3731.22,1061.32,132.345,1.78150,21600,21600,0,0,73000,24340,0), | ||
(@GUID+2,11498,1,1,0,0,-3690.96,1077.14,131.969,2.65172,21600,21600,0,0,57000, 0,0); | ||
DELETE FROM `pool_template` WHERE `entry`=@POOL; | ||
INSERT INTO `pool_template` (`entry`,`max_limit`,`description`) VALUES | ||
(@POOL,1,'Max 1 Rare in Dire Maul Arena'); | ||
DELETE FROM `pool_creature` WHERE `pool_entry`=@POOL; | ||
INSERT INTO `pool_creature` (`guid`,`pool_entry`,`chance`,`description`) VALUES | ||
(@GUID ,@POOL,0, 'Rare Spawn Dire Maul Arena'), | ||
(@GUID+1,@POOL,0, 'Rare Spawn Dire Maul Arena'), | ||
(@GUID+2,@POOL,0, 'Rare Spawn Dire Maul Arena'); | ||
|
||
|
d4af534
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
So this fixes classicdb/database#766 ?
d4af534
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes, although looking at the info you provided in the issue, I think it could do with some adjustment.
Perhaps we should change the chances in the pool for Mushgog to be lower, rather than equally chanced with the other two.
Also, all 3 mobs also share the same loot table in tbc-db and that could probably do with a review.
d4af534
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Mushgog also should spawn several herbs on the arena floor when he spawns including a black lotus. Which might explain him being a bit rarer than the others. Attempting to pick any of the herbs in the arena should cause him to aggro if he's up.
d4af534
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
also perhaps not a max of 1 rare spawned at a time, reading this;
It could seem like it ignores if 1 is already spawned and just spawns one every 6 hours regardless
also it seems like they are able to drop not just 1 but 2 blues at a time;
https://web.archive.org/web/20060613220124/http://wow.allakhazam.com/db/mob.html?wmob=11447
https://web.archive.org/web/20060720203755/http://wow.allakhazam.com/db/mob.html?wmob=11497
d4af534
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
On part of it. The event is a bit more complex as you can see in the above comments. I intend to properly implement it later on. I still have SD2 changes to do to Dire Maul along with a full rework of the West wing.