Skip to content

Commit

Permalink
Add basic support for W8
Browse files Browse the repository at this point in the history
  • Loading branch information
Plenyx committed Nov 20, 2024
1 parent ef7a619 commit a6290ec
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 3 deletions.
3 changes: 3 additions & 0 deletions DpsReport/BossIds.cs
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,9 @@ internal enum BossIds
DemonBrothersDeimos = 26226,
Eparch = 26231,
DemonBrothersCerus = 26257,
Ura = 26712,
Decima = 26774,
Greer = 26725,
TheDragonvoid = 43488,
ConjuredAmalgamate = 43974,
}
Expand Down
7 changes: 4 additions & 3 deletions DpsReport/Bosses.cs
Original file line number Diff line number Diff line change
Expand Up @@ -122,9 +122,9 @@ internal static int GetWingForBoss(int bossId)
internal static int GetBossOrder(int bossId)
=> bossId switch
{
(int)BossIds.ValeGuardian or (int)BossIds.Slothasor or (int)BossIds.Escort or (int)BossIds.Cairn or (int)BossIds.SoullessHorror or (int)BossIds.ConjuredAmalgamate or (int)BossIds.CardinalAdina => 1,
(int)BossIds.Gorseval or (int)BossIds.BanditTrioBerg or (int)BossIds.BanditTrioNarella or (int)BossIds.BanditTrioZane or (int)BossIds.KeepConstruct or (int)BossIds.MursaatOverseer or (int)BossIds.RiverOfSouls or (int)BossIds.LargosTwinsKenut or (int)BossIds.LargosTwinsNikare or (int)BossIds.CardinalSabir => 2,
(int)BossIds.Matthias or (int)BossIds.TwistedCastle or (int)BossIds.Sabetha or (int)BossIds.Samarog or (int)BossIds.BrokenKing or (int)BossIds.Qadim or (int)BossIds.QadimThePeerless => 3,
(int)BossIds.ValeGuardian or (int)BossIds.Slothasor or (int)BossIds.Escort or (int)BossIds.Cairn or (int)BossIds.SoullessHorror or (int)BossIds.ConjuredAmalgamate or (int)BossIds.CardinalAdina or (int)BossIds.Greer => 1,
(int)BossIds.Gorseval or (int)BossIds.BanditTrioBerg or (int)BossIds.BanditTrioNarella or (int)BossIds.BanditTrioZane or (int)BossIds.KeepConstruct or (int)BossIds.MursaatOverseer or (int)BossIds.RiverOfSouls or (int)BossIds.LargosTwinsKenut or (int)BossIds.LargosTwinsNikare or (int)BossIds.CardinalSabir or (int)BossIds.Decima => 2,
(int)BossIds.Matthias or (int)BossIds.TwistedCastle or (int)BossIds.Sabetha or (int)BossIds.Samarog or (int)BossIds.BrokenKing or (int)BossIds.Qadim or (int)BossIds.QadimThePeerless or (int)BossIds.Ura => 3,
(int)BossIds.Deimos or (int)BossIds.EaterOfSouls or (int)BossIds.Xera => 4,
(int)BossIds.EyeOfFate or (int)BossIds.EyeOfJudgement => 5,
(int)BossIds.Dhuum => 6,
Expand All @@ -146,6 +146,7 @@ internal static string GetWingName(int wingNumber)
5 => "Hall of Chains",
6 => "Mythwright Gambit",
7 => "The Key of Ahdashim",
8 => "Mount Balrior",
_ => "Unknown raid wing",
};
}
Expand Down
21 changes: 21 additions & 0 deletions Resources/boss_data.default.json
Original file line number Diff line number Diff line change
Expand Up @@ -107,6 +107,13 @@
"type": 1,
"isEvent": false
},
{
"bossId": 26774,
"name": "Decima, the Stormsinger",
"icon": "",
"type": 1,
"isEvent": false
},
{
"bossId": 25705,
"name": "Dagda",
Expand Down Expand Up @@ -202,6 +209,13 @@
"type": 1,
"isEvent": false
},
{
"bossId": 26725,
"name": "Greer, the Blightbringer",
"icon": "",
"type": 1,
"isEvent": false
},
{
"bossId": 22154,
"name": "Icebrood Construct",
Expand Down Expand Up @@ -415,6 +429,13 @@
"type": 1,
"isEvent": true
},
{
"bossId": 26712,
"name": "Ura, the Steamshrieker",
"icon": "",
"type": 1,
"isEvent": false
},
{
"bossId": 15438,
"name": "Vale Guardian",
Expand Down

0 comments on commit a6290ec

Please sign in to comment.