DB: renamed sql file after merge

This commit is contained in:
Ovalord
2017-12-18 23:22:54 +01:00
parent ef1058d607
commit 1129aef47e

View File

@@ -0,0 +1,72 @@
-- Make Cataclysm lfg quests repeatable. Their currency weekly cap is handled by the core
UPDATE `quest_template_addon` SET `SpecialFlags`= 8 | 1 WHERE `ID` IN (29185, 28905, 28907);
-- Add loot to Satches of Exotic Mysteries
DELETE FROM `item_loot_template` WHERE `entry`= 69903;
INSERT INTO `item_loot_template` (`Entry`, `Item`, `Reference`, `Chance`, `MinCount`, `MaxCount`) VALUES
(69903, 0, 69903, 100, 2, 2);
DELETE FROM `reference_loot_template` WHERE `entry`= 69903;
INSERT INTO `reference_loot_template` (`Entry`, `Item`, `Chance`, `Lootmode`, `GroupId`, `MinCount`, `MaxCount`) VALUES
(69903, 58085, 10, 1, 1, 1, 1),
(69903, 58090, 7, 1, 1, 1, 3),
(69903, 57191, 7, 1, 1, 1, 3),
(69903, 58087, 6, 1, 1, 1, 1),
(69903, 52195, 5, 1, 1, 1, 1),
(69903, 52194, 5, 1, 1, 1, 1),
(69903, 52192, 5, 1, 1, 1, 1),
(69903, 52193, 5, 1, 1, 1, 1),
(69903, 58086, 5, 1, 1, 1, 1),
(69903, 52190, 5, 1, 1, 1, 1),
(69903, 58145, 5, 1, 1, 1, 3),
(69903, 52191, 4, 1, 1, 1, 1),
(69903, 58088, 3, 1, 1, 1, 1),
(69903, 57192, 3, 1, 1, 1, 3),
(69903, 62251, 3, 1, 1, 1, 3),
(69903, 57193, 1.7, 1, 1, 1, 3),
(69903, 58091, 1.6, 1, 1, 1, 3),
(69903, 58146, 1.5, 1, 1, 1, 3),
(69903, 57194, 1.5, 1, 1, 1, 3),
(69903, 67438, 1.4, 1, 1, 1, 1),
(69903, 54436, 0.6, 1, 1, 1, 1),
(69903, 8490, 0.6, 1, 1, 1, 1),
(69903, 48120, 0.6, 1, 1, 1, 1),
(69903, 8495, 0.6, 1, 1, 1, 1),
(69903, 46398, 0.5, 1, 1, 1, 1),
(69903, 8496, 0.5, 1, 1, 1, 1),
(69903, 69991, 0.5, 1, 1, 1, 1),
(69903, 43698, 0.4, 1, 1, 1, 1),
(69903, 44980, 0.4, 1, 1, 1, 1),
(69903, 44721, 0.4, 1, 1, 1, 1),
(69903, 69992, 0.4, 1, 1, 1, 1),
(69903, 44965, 0.4, 1, 1, 1, 1),
(69903, 44971, 0.4, 1, 1, 1, 1),
(69903, 44984, 0.3, 1, 1, 1, 1),
(69903, 29901, 0.3, 1, 1, 1, 1),
(69903, 8491, 0.3, 1, 1, 1, 1),
(69903, 8485, 0.3, 1, 1, 1, 1),
(69903, 8487, 0.3, 1, 1, 1, 1),
(69903, 10392, 0.3, 1, 1, 1, 1),
(69903, 44970, 0.3, 1, 1, 1, 1),
(69903, 44973, 0.3, 1, 1, 1, 1),
(69903, 44974, 0.3, 1, 1, 1, 1),
(69903, 44982, 0.3, 1, 1, 1, 1),
(69903, 29953, 0.3, 1, 1, 1, 1),
(69903, 8500, 0.3, 1, 1, 1, 1),
(69903, 45002, 0.3, 1, 1, 1, 1),
(69903, 8492, 0.3, 1, 1, 1, 1),
(69903, 10394, 0.3, 1, 1, 1, 1),
(69903, 8497, 0.3, 1, 1, 1, 1),
(69903, 44707, 0.3, 1, 1, 1, 1),
(69903, 45606, 0.3, 1, 1, 1, 1),
(69903, 10393, 0.3, 1, 1, 1, 1),
(69903, 29904, 0.3, 1, 1, 1, 1),
(69903, 35504, 0.2, 1, 1, 1, 1),
(69903, 43953, 0.2, 1, 1, 1, 1),
(69903, 43962, 0.2, 1, 1, 1, 1),
(69903, 44151, 0.19, 1, 1, 1, 1),
(69903, 13335, 0.07, 1, 1, 1, 1),
(69903, 32768, 0.07, 1, 1, 1, 1),
(69903, 8494, 0.06, 1, 1, 1, 1);
-- Add missing dungeon ID to High Priestess Azil
UPDATE `instance_encounters` SET `lastEncounterDungeon`= 307 WHERE `entry`= 1057;