Skip to content

Commit 41e56e4

Browse files
authored
fix(DB): OS 25-man Sartharion should drop Emblem of Valor in 80_1_3 (#474)
1 parent 3ddf6b9 commit 41e56e4

2 files changed

Lines changed: 14 additions & 4 deletions

File tree

src/Bracket_80_1_3/sql/world/progression_80_1_3_obsidian_sanctum_emblems.sql

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,16 @@
11
-- Obsidian Sanctum 25-man drakes: Heroism -> Valor
2-
-- Shadron 25N: 31520, Vesperon 25N: 31535, Tenebron 25N: 31534
2+
-- Shadron 25M: 31520, Vesperon 25M: 31535, Tenebron 25M: 31534, Sartharion 25M: 31311
33
-- (10-man drakes remain at Heroism from Bracket_80_1_2 blanket conversion)
44
UPDATE `creature_loot_template`
55
SET `Item` = 40753, `Comment` = 'Emblem of Valor'
6-
WHERE `Entry` IN (31520, 31535, 31534)
6+
WHERE `Entry` IN (31520, 31535, 31534, 31311)
77
AND `Item` = 40752;
88

9+
-- Sartharion (25M): Heroism -> Valor
10+
UPDATE `reference_loot_template`
11+
SET `Entry`=40753, `Comment`='Emblem of Valor'
12+
WHERE `Entry`=34349 AND `Item`=40752;
13+
914
-- Satchel of Spoils (10M): Triumph -> Heroism
1015
UPDATE `item_loot_template`
1116
SET `Item` = 40752, `Comment` = 'Satchel of Spoils - Emblem of Heroism'

src/Bracket_80_2/sql/world/progression_80_1_3_obsidian_sanctum_emblems_down.sql

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@ WHERE `Entry` IN (30451, 30449, 30452)
66
AND `Item` = 40752;
77

88
-- Obsidian Sanctum 25-man drakes: Valor -> Triumph
9-
-- Shadron 25N: 31520, Vesperon 25N: 31535, Tenebron 25N: 31534
9+
-- Shadron 25M: 31520, Vesperon 25M: 31535, Tenebron 25M: 31534, Sartharion 25M: 31311
1010
UPDATE `creature_loot_template`
1111
SET `Item` = 47241, `Comment` = 'Emblem of Triumph'
12-
WHERE `Entry` IN (31520, 31535, 31534)
12+
WHERE `Entry` IN (31520, 31535, 31534, 31311)
1313
AND `Item` = 40753;
1414

1515
-- Sartharion 10M: Heroism -> Triumph
@@ -18,6 +18,11 @@ SET `Item` = 47241, `Comment` = 'Emblem of Triumph'
1818
WHERE `Entry` = 28860
1919
AND `Item` = 40752;
2020

21+
-- Sartharion 25M: Valor -> Triumph
22+
UPDATE `reference_loot_template`
23+
SET `Item` = 47241, `Comment` = 'Emblem of Triumph'
24+
WHERE `Entry` = 34349 AND `Item` = 40753;
25+
2126
-- Satchel of Spoils (10M): Heroism -> Triumph
2227
UPDATE `item_loot_template`
2328
SET `Item` = 47241, `Comment` = 'Satchel of Spoils - Emblem of Triumph'

0 commit comments

Comments
 (0)