diff options
| author | Kelpiesklubhouse <151824209+Kelpiesklubhouse@users.noreply.github.com> | 2023-11-29 02:20:39 +0100 |
|---|---|---|
| committer | Naddley <NaddleyTC@gmail.com> | 2023-11-29 02:20:41 +0100 |
| commit | 085b95d887e5772358ba216b5caaadd79cb98b87 (patch) | |
| tree | 025300db4571b1ca47ecfc96b450488cb14b3932 | |
| parent | 3f1f47f03016f4e5d6828e94aed79202bdb127a5 (diff) | |
DB/Pool: Added Pooling for Thunder Bluff Fishing daily quests
Closes #29459
| -rw-r--r-- | sql/updates/world/master/2023_11_29_09_world_fishing_thunderbluff.sql | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/sql/updates/world/master/2023_11_29_09_world_fishing_thunderbluff.sql b/sql/updates/world/master/2023_11_29_09_world_fishing_thunderbluff.sql new file mode 100644 index 00000000000..d147dc66e00 --- /dev/null +++ b/sql/updates/world/master/2023_11_29_09_world_fishing_thunderbluff.sql @@ -0,0 +1,15 @@ +SET @POOLID := 40020; + +DELETE FROM `quest_pool_template` WHERE `poolId`=@POOLID; +INSERT INTO `quest_pool_template` (`poolId`, `numActive`, `description`) VALUES +(@POOLID, 1, 'Kah Mistrunner - Daily Quests'); + +DELETE FROM `quest_pool_members` WHERE `poolId`=@POOLID; +INSERT INTO `quest_pool_members` (`questId`, `poolId`, `poolIndex`, `description`) VALUES +(29345, @POOLID, 0, 'Pond Predators'), +(29346, @POOLID, 1, 'The Ring''s the Thing'), +(29348, @POOLID, 2, 'The Race to Restock'), +(29349, @POOLID, 3, 'Craving Crayfish'), +(29354, @POOLID, 4, 'Shiny Baubles'); + +UPDATE `quest_template_addon` SET `RequiredSkillID` = 356, `RequiredSkillPoints` = 1 WHERE `ID` IN (29345, 29346, 29348, 29349, 29354); |
