diff options
author | Naddley <NaddleyTC@gmail.com> | 2025-06-09 13:15:26 +0200 |
---|---|---|
committer | Naddley <NaddleyTC@gmail.com> | 2025-06-09 13:15:26 +0200 |
commit | 2339cc144995851bf8f3c856f72ba31da1271cf6 (patch) | |
tree | f875ca7347507a1ed7391159676c8d1145b7915b /sql | |
parent | 3d6679abaf9641b2aafe27c18a33429d4ef3aa77 (diff) |
DB/RagefireChasm: Added loot for trash mobs
Closes #30667
Diffstat (limited to 'sql')
-rw-r--r-- | sql/updates/world/master/2025_06_09_01_world.sql | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/sql/updates/world/master/2025_06_09_01_world.sql b/sql/updates/world/master/2025_06_09_01_world.sql new file mode 100644 index 00000000000..c120de85481 --- /dev/null +++ b/sql/updates/world/master/2025_06_09_01_world.sql @@ -0,0 +1,12 @@ +-- Adolescent Flame Hound +UPDATE `creature_template_difficulty` SET `GoldMin` = 2500, `GoldMax` = 10000 WHERE `Entry` = 61657; + +-- Mature Flame Hound +UPDATE `creature_template_difficulty` SET `GoldMin` = 3000, `GoldMax` = 10000 WHERE `Entry` = 61658; + +-- Corrupted Reaver & Dark Shaman Acolyte & Corrupted Flamecaller & Corrupted Houndmaster +UPDATE `creature_template_difficulty` SET `LootID` = 61678, `GoldMin` = 2000, `GoldMax` = 10000 WHERE `Entry` IN (61678, 61672, 61705, 61666); + +DELETE FROM `creature_loot_template` WHERE `Entry` = 61678; +INSERT INTO `creature_loot_template` (`Entry`, `ItemType`, `Item`, `Chance`, `QuestRequired`, `LootMode`, `GroupId`, `MinCount`, `MaxCount`, `Comment`) VALUES +(61678, 0, 2589, 50, 0, 1, 0, 1, 5, 'Linen Cloth'); |