From 2d10bcf93dc915f345ba4d61bcee410f30999e6f Mon Sep 17 00:00:00 2001 From: Skjalf <47818697+Nyeriah@users.noreply.github.com> Date: Wed, 15 Apr 2026 11:19:00 -0300 Subject: [PATCH] fix(DB): OS 10-man emblems drop Heroism instead of Valor Keep 10-man Obsidian Sanctum drakes, Sartharion 10M, and the 10M Satchel of Spoils at Emblem of Heroism during the Naxxramas bracket; only 25-man encounters are upgraded to Emblem of Valor. The Ulduar downgrade is adjusted to revert the correct source emblem per entry. Co-Authored-By: Claude Opus 4.6 --- ...ession_80_1_3_obsidian_sanctum_emblems.sql | 19 +++++---------- ...n_80_1_3_obsidian_sanctum_emblems_down.sql | 23 +++++++++++-------- 2 files changed, 20 insertions(+), 22 deletions(-) diff --git a/src/Bracket_80_1_3/sql/world/progression_80_1_3_obsidian_sanctum_emblems.sql b/src/Bracket_80_1_3/sql/world/progression_80_1_3_obsidian_sanctum_emblems.sql index aeb18813..1929c095 100644 --- a/src/Bracket_80_1_3/sql/world/progression_80_1_3_obsidian_sanctum_emblems.sql +++ b/src/Bracket_80_1_3/sql/world/progression_80_1_3_obsidian_sanctum_emblems.sql @@ -1,21 +1,14 @@ --- Obsidian Sanctum drakes: Heroism -> Valor --- Shadron (10N: 30451, 25N: 31520) --- Vesperon (10N: 30449, 25N: 31535) --- Tenebron (10N: 30452, 25N: 31534) +-- Obsidian Sanctum 25-man drakes: Heroism -> Valor +-- Shadron 25N: 31520, Vesperon 25N: 31535, Tenebron 25N: 31534 +-- (10-man drakes remain at Heroism from Bracket_80_1_2 blanket conversion) UPDATE `creature_loot_template` SET `Item` = 40753, `Comment` = 'Emblem of Valor' -WHERE `Entry` IN (30451, 31520, 30449, 31535, 30452, 31534) +WHERE `Entry` IN (31520, 31535, 31534) AND `Item` = 40752; --- Sartharion 10M: Heroism -> Valor -UPDATE `creature_loot_template` -SET `Item` = 40753, `Comment` = 'Emblem of Valor' -WHERE `Entry` = 28860 -AND `Item` = 40752; - --- Satchel of Spoils (10M): Triumph -> Valor +-- Satchel of Spoils (10M): Triumph -> Heroism UPDATE `item_loot_template` -SET `Item` = 40753, `Comment` = 'Satchel of Spoils - Emblem of Valor' +SET `Item` = 40752, `Comment` = 'Satchel of Spoils - Emblem of Heroism' WHERE `Entry` = 43347 AND `Item` = 47241; diff --git a/src/Bracket_80_2/sql/world/progression_80_1_3_obsidian_sanctum_emblems_down.sql b/src/Bracket_80_2/sql/world/progression_80_1_3_obsidian_sanctum_emblems_down.sql index 564d3ee8..c99790ab 100644 --- a/src/Bracket_80_2/sql/world/progression_80_1_3_obsidian_sanctum_emblems_down.sql +++ b/src/Bracket_80_2/sql/world/progression_80_1_3_obsidian_sanctum_emblems_down.sql @@ -1,23 +1,28 @@ --- Obsidian Sanctum drakes: Valor -> Triumph --- Shadron (10N: 30451, 25N: 31520) --- Vesperon (10N: 30449, 25N: 31535) --- Tenebron (10N: 30452, 25N: 31534) +-- Obsidian Sanctum 10-man drakes: Heroism -> Triumph +-- Shadron 10N: 30451, Vesperon 10N: 30449, Tenebron 10N: 30452 UPDATE `creature_loot_template` SET `Item` = 47241, `Comment` = 'Emblem of Triumph' -WHERE `Entry` IN (30451, 31520, 30449, 31535, 30452, 31534) +WHERE `Entry` IN (30451, 30449, 30452) +AND `Item` = 40752; + +-- Obsidian Sanctum 25-man drakes: Valor -> Triumph +-- Shadron 25N: 31520, Vesperon 25N: 31535, Tenebron 25N: 31534 +UPDATE `creature_loot_template` +SET `Item` = 47241, `Comment` = 'Emblem of Triumph' +WHERE `Entry` IN (31520, 31535, 31534) AND `Item` = 40753; --- Sartharion 10M: Valor -> Triumph +-- Sartharion 10M: Heroism -> Triumph UPDATE `creature_loot_template` SET `Item` = 47241, `Comment` = 'Emblem of Triumph' WHERE `Entry` = 28860 -AND `Item` = 40753; +AND `Item` = 40752; --- Satchel of Spoils (10M): Valor -> Triumph +-- Satchel of Spoils (10M): Heroism -> Triumph UPDATE `item_loot_template` SET `Item` = 47241, `Comment` = 'Satchel of Spoils - Emblem of Triumph' WHERE `Entry` = 43347 -AND `Item` = 40753; +AND `Item` = 40752; -- Large Satchel of Spoils (25M): Valor -> Triumph UPDATE `item_loot_template`