From a5e812ffd43ee24333d351c57c48f7e50a132306 Mon Sep 17 00:00:00 2001 From: acidmanifesto Date: Fri, 31 Dec 2021 20:14:45 +0100 Subject: [PATCH] Abyssal Crest Loot % correction (#9951) Verified via UDB Loot per consolidated sniffs --- .../pending_db_world/rev_1640972252071688181.sql | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 data/sql/updates/pending_db_world/rev_1640972252071688181.sql diff --git a/data/sql/updates/pending_db_world/rev_1640972252071688181.sql b/data/sql/updates/pending_db_world/rev_1640972252071688181.sql new file mode 100644 index 000000000..971960136 --- /dev/null +++ b/data/sql/updates/pending_db_world/rev_1640972252071688181.sql @@ -0,0 +1,12 @@ +INSERT INTO `version_db_world` (`sql_rev`) VALUES ('1640972252071688181'); + +-- removes unverified corrections of loot drop of the abyssal crest with drop rate based on udb from consolidated sniffs +DELETE FROM `creature_loot_template` WHERE `Entry`=15209 AND `Item`=20513 AND `Reference`=0 AND `GroupId`=0; +DELETE FROM `creature_loot_template` WHERE `Entry`=15211 AND `Item`=20513 AND `Reference`=0 AND `GroupId`=0; +DELETE FROM `creature_loot_template` WHERE `Entry`=15212 AND `Item`=20513 AND `Reference`=0 AND `GroupId`=0; +DELETE FROM `creature_loot_template` WHERE `Entry`=15307 AND `Item`=20513 AND `Reference`=0 AND `GroupId`=0; +INSERT INTO `creature_loot_template` (`Entry`, `Item`, `Reference`, `Chance`, `QuestRequired`, `LootMode`, `GroupId`, `MinCount`, `MaxCount`, `Comment`) VALUES +(15209, 20513, 0, 83.7314, 0, 1, 0, 1, 1, 'Crimson Templar - Abyssal Crest'), +(15211, 20513, 0, 83.5982, 0, 1, 0, 1, 1, 'Azure Templar - Abyssal Crest'), +(15212, 20513, 0, 83.8428, 0, 1, 0, 1, 1, 'Hoary Templar - Abyssal Crest'), +(15307, 20513, 0, 83.9362, 0, 1, 0, 1, 1, 'Earthen Templar - Abyssal Crest');