From 08ecbbe753474958eb2574f8d038347e7f047071 Mon Sep 17 00:00:00 2001 From: Killyana Date: Sat, 25 Jan 2020 21:58:43 +0100 Subject: [PATCH] DB/Creature: Sewer Beast pool --- sql/updates/world/3.3.5/2020_01_25_04_world_335.sql | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 sql/updates/world/3.3.5/2020_01_25_04_world_335.sql diff --git a/sql/updates/world/3.3.5/2020_01_25_04_world_335.sql b/sql/updates/world/3.3.5/2020_01_25_04_world_335.sql new file mode 100644 index 0000000000000..51834c4610ed2 --- /dev/null +++ b/sql/updates/world/3.3.5/2020_01_25_04_world_335.sql @@ -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");