diff options
author | Wyrserth <wyrserth@protonmail.com> | 2019-07-22 14:54:42 +0200 |
---|---|---|
committer | Shauren <shauren.trinity@gmail.com> | 2021-12-17 00:35:06 +0100 |
commit | 0b39d2a3c7abd44db0cc9fb9489f91fea65cf641 (patch) | |
tree | d25ae49712528e4fb1c3c2dbd4dd12ea565b1a1d | |
parent | 57e4d7d45ce688aeee17b50d2d56655cced2234f (diff) |
DB/Loot: separate Normal and Heroic Mark of Sanctification loot references for end-wing bosses in Icecrown Citadel.
Closes #23310.
(cherry picked from commit 044fba0a25b91e451692e284b140150e66aee63c)
-rw-r--r-- | sql/updates/world/master/2021_12_16_28_world_2019_07_22_02_world.sql | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/sql/updates/world/master/2021_12_16_28_world_2019_07_22_02_world.sql b/sql/updates/world/master/2021_12_16_28_world_2019_07_22_02_world.sql new file mode 100644 index 00000000000..0d4281062cb --- /dev/null +++ b/sql/updates/world/master/2021_12_16_28_world_2019_07_22_02_world.sql @@ -0,0 +1,14 @@ +-- +DELETE FROM `reference_loot_template` WHERE `Entry`=34279 AND `Item` IN (52025, 52026, 52027); +UPDATE `creature_loot_template` SET `MaxCount`=1, `Comment`="Mark of Sanctification (Heroic)" WHERE `Reference`=34279; +UPDATE `gameobject_loot_template` SET `MaxCount`=1, `comment`="Mark of Sanctification (Heroic)" WHERE `Reference`=34279; +DELETE FROM `creature_loot_template` WHERE `Entry` IN (38586, 38436, 38267, 39168) AND `Reference`=34278; +INSERT INTO `creature_loot_template` (`Entry`, `Item`, `Reference`, `Chance`, `QuestRequired`, `LootMode`, `GroupId`, `MinCount`, `MaxCount`, `Comment`) VALUES +(38586, 2, 34278, 100, 0, 1, 0, 2, 2, "Mark of Sanctification (Normal)"), +(38436, 3, 34278, 100, 0, 1, 0, 2, 2, "Mark of Sanctification (Normal)"), +(38267, 3, 34278, 100, 0, 1, 0, 2, 2, "Mark of Sanctification (Normal)"), +(39168, 3, 34278, 100, 0, 1, 0, 2, 2, "Mark of Sanctification (Normal)"); + +DELETE FROM `gameobject_loot_template` WHERE `Entry`=28088 AND `Reference`=34278; +INSERT INTO `gameobject_loot_template` (`Entry`, `Item`, `Reference`, `Chance`, `QuestRequired`, `LootMode`, `GroupId`, `MinCount`, `MaxCount`, `Comment`) VALUES +(28088, 3, 34278, 100, 0, 1, 0, 2, 2, "Mark of Sanctification (Normal)"); |