diff options
author | offl <offl@users.noreply.github.com> | 2020-08-12 21:57:11 +0300 |
---|---|---|
committer | Shauren <shauren.trinity@gmail.com> | 2022-01-26 20:38:24 +0100 |
commit | 14f696f9fe8698249c9c88a0e74c4841c353f2a9 (patch) | |
tree | 1ba8bdc3b0bd3bbbfd63df17acce543286f7f84a | |
parent | d4cbe4c6cb59ea80a42082755ee78cb656242b1f (diff) |
DB/Creature: Fix gold value for world bosses
Source https://github.com/cmangos/tbc-db/commit/d10a189755188633a6c9c3a2fc45d8d2729dfee1
(cherry picked from commit 4c4e3b956fb3872e7327827311766e8063b413ed)
-rw-r--r-- | sql/updates/world/master/2022_01_26_37_world_2020_08_12_05_world_335.sql | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/sql/updates/world/master/2022_01_26_37_world_2020_08_12_05_world_335.sql b/sql/updates/world/master/2022_01_26_37_world_2020_08_12_05_world_335.sql new file mode 100644 index 00000000000..052bec33acc --- /dev/null +++ b/sql/updates/world/master/2022_01_26_37_world_2020_08_12_05_world_335.sql @@ -0,0 +1,20 @@ +-- Emerald Dragons + Azuregos and Lord Kazzak seem to drop similar amounts +UPDATE `creature_template` SET `mingold` = 130*100*100, `maxgold` = 182*100*100 WHERE `entry` IN ( +-- Azuregos +-- https://youtu.be/7haJ41AAujk?t=118 161g, narrator says "usually about 160g" +6109, +-- Ysondre +-- https://youtu.be/3ZSRE2JQKWU?t=246 182g? +-- https://youtu.be/5_IMr6hOoHg?t=247 130g +14887, +-- Lethon +14888, +-- Emeriss +14889, +-- Taerar +-- https://youtu.be/3ZSRE2JQKWU?t=246 139g +-- https://youtu.be/PRfjvlbBTpA?t=366 78g x 2 players = 156g +14890, +-- Lord Kazzak +-- https://youtu.be/-P1iMu-CLuA?t=245 170g (look at guild chat) +12397); |