Add support for the Legacy Bounty Hunter minigame

This commit is contained in:
David Meredith
2023-05-24 08:48:46 -05:00
parent e4d2b10488
commit 11391c90f2
7 changed files with 540 additions and 415 deletions

View File

@@ -60,7 +60,7 @@ export type ClueType =
export type Clues = { [Type in ClueType]: Activity };
export type BHType = 'rogue' | 'hunter';
export type BHType = 'rogue' | 'hunter' | 'legacyRogue' | 'legacyHunter';
export type BH = { [Type in BHType]: Activity };
@@ -126,6 +126,8 @@ export type ActivityName =
| 'leaguePoints'
| 'hunterBH'
| 'rogueBH'
| 'hunterLegacyBH'
| 'rogueLegacyBH'
| 'lastManStanding'
| 'pvpArena'
| 'soulWarsZeal'

View File

@@ -62,7 +62,7 @@ export const CLUES: ClueType[] = [
'elite',
'master'
];
export const BH_MODES: BHType[] = ['hunter', 'rogue'];
export const BH_MODES: BHType[] = ['hunter', 'rogue', 'legacyHunter', 'legacyRogue'];
export const GAMEMODES: Gamemode[] = [
'main',
'ironman',
@@ -132,6 +132,8 @@ export const ACTIVITIES: ActivityName[] = [
'leaguePoints',
'hunterBH',
'rogueBH',
'hunterLegacyBH',
'rogueLegacyBH',
'allClues',
'beginnerClues',
'easyClues',
@@ -258,7 +260,9 @@ export type FormattedBHNames = {
export const FORMATTED_BH_NAMES: FormattedBHNames = {
rogue: 'Bounty Hunter - Rogue',
hunter: 'Bounty Hunter - Hunter'
hunter: 'Bounty Hunter - Hunter',
legacyRogue: 'Bounty Hunter (Legacy) - Rogue',
legacyHunter: 'Bounty Hunter (Legacy) - Hunter'
};
export const FORMATTED_LMS = 'Last Man Standing';