mirror of
https://github.com/TrinityCore/TrinityCore.git
synced 2026-02-03 07:37:11 +01:00
DB/Creature: Sewer Beast pool
This commit is contained in:
9
sql/updates/world/3.3.5/2020_01_25_04_world_335.sql
Normal file
9
sql/updates/world/3.3.5/2020_01_25_04_world_335.sql
Normal file
@@ -0,0 +1,9 @@
|
||||
-- Sewer Beast
|
||||
SET @POOL := 350;
|
||||
DELETE FROM `pool_template` WHERE `entry` = @POOL;
|
||||
INSERT INTO `pool_template` (`entry`, `max_limit`, `description`) VALUES
|
||||
(@POOL, 1, 'Sewer Beast');
|
||||
DELETE FROM `pool_members` WHERE `poolSpawnId` = @POOL;
|
||||
INSERT INTO `pool_members` (`type`, `spawnId`, `poolSpawnId`, `chance`, `description`) VALUES
|
||||
(0, 86300, @POOL, 0, "Sewer Beast - Spawn 1"),
|
||||
(0, 86301, @POOL, 0, "Sewer Beast - Spawn 2");
|
||||
Reference in New Issue
Block a user