Skip to content

Commit 39e02ac

Browse files
Nyeriahclaude
andauthored
fix(DB): OS 10-man emblems drop Heroism instead of Valor (#472)
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 <noreply@anthropic.com>
1 parent ddf48e8 commit 39e02ac

2 files changed

Lines changed: 20 additions & 22 deletions

File tree

src/Bracket_80_1_3/sql/world/progression_80_1_3_obsidian_sanctum_emblems.sql

Lines changed: 6 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,14 @@
1-
-- Obsidian Sanctum drakes: Heroism -> Valor
2-
-- Shadron (10N: 30451, 25N: 31520)
3-
-- Vesperon (10N: 30449, 25N: 31535)
4-
-- Tenebron (10N: 30452, 25N: 31534)
1+
-- Obsidian Sanctum 25-man drakes: Heroism -> Valor
2+
-- Shadron 25N: 31520, Vesperon 25N: 31535, Tenebron 25N: 31534
3+
-- (10-man drakes remain at Heroism from Bracket_80_1_2 blanket conversion)
54
UPDATE `creature_loot_template`
65
SET `Item` = 40753, `Comment` = 'Emblem of Valor'
7-
WHERE `Entry` IN (30451, 31520, 30449, 31535, 30452, 31534)
6+
WHERE `Entry` IN (31520, 31535, 31534)
87
AND `Item` = 40752;
98

10-
-- Sartharion 10M: Heroism -> Valor
11-
UPDATE `creature_loot_template`
12-
SET `Item` = 40753, `Comment` = 'Emblem of Valor'
13-
WHERE `Entry` = 28860
14-
AND `Item` = 40752;
15-
16-
-- Satchel of Spoils (10M): Triumph -> Valor
9+
-- Satchel of Spoils (10M): Triumph -> Heroism
1710
UPDATE `item_loot_template`
18-
SET `Item` = 40753, `Comment` = 'Satchel of Spoils - Emblem of Valor'
11+
SET `Item` = 40752, `Comment` = 'Satchel of Spoils - Emblem of Heroism'
1912
WHERE `Entry` = 43347
2013
AND `Item` = 47241;
2114

src/Bracket_80_2/sql/world/progression_80_1_3_obsidian_sanctum_emblems_down.sql

Lines changed: 14 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,28 @@
1-
-- Obsidian Sanctum drakes: Valor -> Triumph
2-
-- Shadron (10N: 30451, 25N: 31520)
3-
-- Vesperon (10N: 30449, 25N: 31535)
4-
-- Tenebron (10N: 30452, 25N: 31534)
1+
-- Obsidian Sanctum 10-man drakes: Heroism -> Triumph
2+
-- Shadron 10N: 30451, Vesperon 10N: 30449, Tenebron 10N: 30452
53
UPDATE `creature_loot_template`
64
SET `Item` = 47241, `Comment` = 'Emblem of Triumph'
7-
WHERE `Entry` IN (30451, 31520, 30449, 31535, 30452, 31534)
5+
WHERE `Entry` IN (30451, 30449, 30452)
6+
AND `Item` = 40752;
7+
8+
-- Obsidian Sanctum 25-man drakes: Valor -> Triumph
9+
-- Shadron 25N: 31520, Vesperon 25N: 31535, Tenebron 25N: 31534
10+
UPDATE `creature_loot_template`
11+
SET `Item` = 47241, `Comment` = 'Emblem of Triumph'
12+
WHERE `Entry` IN (31520, 31535, 31534)
813
AND `Item` = 40753;
914

10-
-- Sartharion 10M: Valor -> Triumph
15+
-- Sartharion 10M: Heroism -> Triumph
1116
UPDATE `creature_loot_template`
1217
SET `Item` = 47241, `Comment` = 'Emblem of Triumph'
1318
WHERE `Entry` = 28860
14-
AND `Item` = 40753;
19+
AND `Item` = 40752;
1520

16-
-- Satchel of Spoils (10M): Valor -> Triumph
21+
-- Satchel of Spoils (10M): Heroism -> Triumph
1722
UPDATE `item_loot_template`
1823
SET `Item` = 47241, `Comment` = 'Satchel of Spoils - Emblem of Triumph'
1924
WHERE `Entry` = 43347
20-
AND `Item` = 40753;
25+
AND `Item` = 40752;
2126

2227
-- Large Satchel of Spoils (25M): Valor -> Triumph
2328
UPDATE `item_loot_template`

0 commit comments

Comments
 (0)