From 10c5cc1bfb3902ef94af630b9159d3f039382b90 Mon Sep 17 00:00:00 2001 From: neifion-00000000 <91289495+neifion-00000000@users.noreply.github.com> Date: Sat, 1 Oct 2022 15:48:34 -0500 Subject: [PATCH] fix(DB/creature_loot_template): Sunstrider Isle Quest Rate Fixes (#13170) WOTLK quest rate corrections continued --- .../pending_db_world/rev_1664444955521407200.sql | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 data/sql/updates/pending_db_world/rev_1664444955521407200.sql diff --git a/data/sql/updates/pending_db_world/rev_1664444955521407200.sql b/data/sql/updates/pending_db_world/rev_1664444955521407200.sql new file mode 100644 index 000000000..e4e715f25 --- /dev/null +++ b/data/sql/updates/pending_db_world/rev_1664444955521407200.sql @@ -0,0 +1,15 @@ +-- +-- Yougotta 00001-00005 Sunstider Isle Part 1-5 +-- ITEM Tainted Arcane Silver (20483) should be 100% drop rate off NPC Tainted Arcane Wraith (15298) for QUEST Tainted Arcane Sliver (8338) (ALREADY CORRECT) + +-- ITEM Lynx Collar (20797) should be 100% drop rate off NPCs Springpaw Cub (15366), Springpaw Lynx (15372) for QUEST Unfortunate Measures (8326) + +UPDATE `creature_loot_template` SET `Chance`='100' WHERE `Entry`=15366 AND `Item`=20797 AND `Reference`=0 AND `GroupId`=0; +UPDATE `creature_loot_template` SET `Chance`='100' WHERE `Entry`=15372 AND `Item`=20797 AND `Reference`=0 AND `GroupId`=0; + +-- ITEM Arcane Silver (20482) "0.6777893639207508" over 959 repetitions rounded to 2/3rds (70% is also in likely margin of error, but 66.67% is closer to seen and given as second opinion so it will be the standard I go by) drop rate off NPCs Mana Wyrm (15274), Feral Tender (15294), Arcane Wraith (15273), Tainted Arcane Wraith (15298) for QUEST A Fistful of Silvers (8336) + +UPDATE `creature_loot_template` SET `Chance`='66.67' WHERE `Entry`=15274 AND `Item`=20482 AND `Reference`=0 AND `GroupId`=0; +UPDATE `creature_loot_template` SET `Chance`='66.67' WHERE `Entry`=15294 AND `Item`=20482 AND `Reference`=0 AND `GroupId`=0; +UPDATE `creature_loot_template` SET `Chance`='66.67' WHERE `Entry`=15273 AND `Item`=20482 AND `Reference`=0 AND `GroupId`=0; +UPDATE `creature_loot_template` SET `Chance`='66.67' WHERE `Entry`=15298 AND `Item`=20482 AND `Reference`=0 AND `GroupId`=0;