From 346456f78f0981e3b48d2ed93da02d46a679295a Mon Sep 17 00:00:00 2001 From: Benjamin Jackson <38561765+heyitsbench@users.noreply.github.com> Date: Sun, 19 May 2024 04:40:28 -0400 Subject: [PATCH] fix(DB/Creature): Correct TBC boss gold rewards. (#18899) * Init. * Remove auxiliary comments. * Readd comments along with original reward values. * Remove auxiliary comments again. * Add important commit regarding data accuracy. * Move comment. --- data/sql/updates/pending_db_world/tbc-money-drops.sql | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 data/sql/updates/pending_db_world/tbc-money-drops.sql diff --git a/data/sql/updates/pending_db_world/tbc-money-drops.sql b/data/sql/updates/pending_db_world/tbc-money-drops.sql new file mode 100644 index 00000000000000..9676988bb96a4b --- /dev/null +++ b/data/sql/updates/pending_db_world/tbc-money-drops.sql @@ -0,0 +1,7 @@ +UPDATE `creature_template` SET `mingold` = 2500000, `maxgold` = 2500000 WHERE `entry` IN (17767, 17808, 17842, 17888, 18805, 18831, 19044, 19514, 19516, 21213, 21214, 21215, 21216, 21217, 22841, 23420, 22871, 22887, 22898, 22947, 22948, 24882, 24892, 25038, 25840); +UPDATE `creature_template` SET `mingold` = 625000, `maxgold` = 625000 WHERE `entry` IN (22949, 22950, 22951, 22952); +UPDATE `creature_template` SET `mingold` = 3000000, `maxgold` = 3000000 WHERE `entry` IN (17968, 19622, 21212, 22917); +UPDATE `creature_template` SET `mingold` = 3500000, `maxgold` = 3500000 WHERE `entry` IN (25165, 25166); +UPDATE `creature_template` SET `mingold` = 5000000, `maxgold` = 5000000 WHERE `entry` = 25315; +-- Values below are entirely guessed, ±25g from Wowhead's ~500g average money drop. +UPDATE `creature_template` SET `mingold` = 4750000, `maxgold` = 5250000 WHERE `entry` IN (17257, 17711, 18728);