DB/Quests: High Crusader Adelard - Quest Pooling

Closes #5124
This commit is contained in:
mweinelt
2012-02-08 17:12:22 +00:00
committed by Nay
parent 2202740a36
commit 01b7827729

View File

@@ -0,0 +1,16 @@
-- Pool quests from High Crusader Adelard
-- Source: http://www.wowwiki.com/High_Crusader_Adelard
SET @pool_id := 349;
-- create new pool, allowing only 1 out of 4 dailys per day
DELETE FROM `pool_template` WHERE `entry` = @pool_id;
INSERT INTO `pool_template` (`entry`, `max_limit`, `description`) VALUES
(@pool_id, 1, 'High Crusader Adelard - Daily Quests');
-- fill pools with the daily quests
DELETE FROM `pool_quest` WHERE `entry` IN (14101, 14102, 14104, 14105) AND `pool_entry` = @pool_id;
INSERT INTO `pool_quest` (`entry`, `pool_entry`, `description`) VALUES
(14101, @pool_id, 'Drottinn Hrothgar'),
(14102, @pool_id, 'Mistcaller Yngvar'),
(14104, @pool_id, 'Ornolf The Scarred'),
(14105, @pool_id, 'Deathspeaker Kharos');