-
Notifications
You must be signed in to change notification settings - Fork 172
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update [4585] Move Doan Refloot behind Kirtonos
30011 Scholomance - Zone Drop 30012 Stratholme - Zone Drop
- Loading branch information
Showing
1 changed file
with
10 additions
and
8 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 |
---|---|---|
@@ -1,15 +1,17 @@ | ||
|
||
DELETE FROM `creature_loot_template` WHERE (`entry` = '6487') and (`item` = '7714'); | ||
DELETE FROM `creature_loot_template` WHERE (`entry` = '6487') and (`item` = '7713'); | ||
UPDATE `creature_loot_template` SET `item` = '30011', `ChanceOrQuestChance` = '100', `groupid` = '0', `mincountOrRef` = '-30011', `comments` = 'Scarlet Monastery (Boss Loot) - Arcanist Doan - Blue Items (Group 1)' WHERE (`entry` = '6487') and (`item` = '7711'); | ||
UPDATE `creature_loot_template` SET `item` = '30012', `ChanceOrQuestChance` = '100', `groupid` = '0', `mincountOrRef` = '-30012', `comments` = 'Scarlet Monastery (Boss Loot) - Arcanist Doan - Green Items (Group 2)' WHERE (`entry` = '6487') and (`item` = '7712'); | ||
UPDATE `creature_loot_template` SET `item` = '35042', `ChanceOrQuestChance` = '100', `groupid` = '0', `mincountOrRef` = '-35042', `comments` = 'Scarlet Monastery (Boss Loot) - Arcanist Doan - Blue Items (Group 1)' WHERE (`entry` = '6487') and (`item` = '7711'); | ||
UPDATE `creature_loot_template` SET `item` = '35041', `ChanceOrQuestChance` = '100', `groupid` = '0', `mincountOrRef` = '-35041', `comments` = 'Scarlet Monastery (Boss Loot) - Arcanist Doan - Green Items (Group 2)' WHERE (`entry` = '6487') and (`item` = '7712'); | ||
|
||
DELETE FROM `reference_loot_template` WHERE `entry` IN (30011,30012,35041,35042); | ||
INSERT INTO `reference_loot_template` (`entry`, `item`, `ChanceOrQuestChance`, `groupid`, `mincountOrRef`, `maxcount`, `condition_id`, `comments`) VALUES | ||
('30012', '7711', '0', '1', '1', '1', '0', 'Robe of Doan'), | ||
('30012', '7712', '0', '1', '1', '1', '0', 'Mantle of Doan'), | ||
('30011', '7713', '0', '1', '1', '1', '0', 'Illusionary Rod'), | ||
('30011', '7714', '0', '1', '1', '1', '0', 'Hypnotic Blade'); | ||
('35041', '7711', '0', '1', '1', '1', '0', 'Robe of Doan'), | ||
('35041', '7712', '0', '1', '1', '1', '0', 'Mantle of Doan'), | ||
('35042', '7713', '0', '1', '1', '1', '0', 'Illusionary Rod'), | ||
('35042', '7714', '0', '1', '1', '1', '0', 'Hypnotic Blade'); | ||
|
||
INSERT INTO `reference_loot_template_names` (`entry`, `name`) VALUES | ||
('30011', 'Scarlet Monastery (Boss Loot) - Arcanist Doan - Blue Items (Group 1)'), | ||
('30012', 'Scarlet Monastery (Boss Loot) - Arcanist Doan - Green Items (Group 2)'); | ||
('35042', 'Scarlet Monastery (Boss Loot) - Arcanist Doan - Blue Items (Group 1)'), | ||
('35041', 'Scarlet Monastery (Boss Loot) - Arcanist Doan - Green Items (Group 2)'); | ||
|