mirror of
https://github.com/maxswa/osrs-json-hiscores.git
synced 2025-10-15 10:19:04 +00:00
Change approach to tracking the new Bounty Hunter stats
This commit is contained in:
@@ -60,7 +60,7 @@ export type ClueType =
|
||||
|
||||
export type Clues = { [Type in ClueType]: Activity };
|
||||
|
||||
export type BHType = 'rogue' | 'hunter' | 'legacyRogue' | 'legacyHunter';
|
||||
export type BHType = 'rogue' | 'hunter' | 'rogueV2' | 'hunterV2';
|
||||
|
||||
export type BH = { [Type in BHType]: Activity };
|
||||
|
||||
@@ -124,10 +124,10 @@ export type Bosses = { [Type in Boss]: Activity };
|
||||
|
||||
export type ActivityName =
|
||||
| 'leaguePoints'
|
||||
| 'hunterBHV2'
|
||||
| 'rogueBHV2'
|
||||
| 'hunterBH'
|
||||
| 'rogueBH'
|
||||
| 'hunterLegacyBH'
|
||||
| 'rogueLegacyBH'
|
||||
| 'lastManStanding'
|
||||
| 'pvpArena'
|
||||
| 'soulWarsZeal'
|
||||
|
@@ -62,7 +62,7 @@ export const CLUES: ClueType[] = [
|
||||
'elite',
|
||||
'master'
|
||||
];
|
||||
export const BH_MODES: BHType[] = ['hunter', 'rogue', 'legacyHunter', 'legacyRogue'];
|
||||
export const BH_MODES: BHType[] = ['hunterV2', 'rogueV2', 'hunter', 'rogue'];
|
||||
export const GAMEMODES: Gamemode[] = [
|
||||
'main',
|
||||
'ironman',
|
||||
@@ -130,10 +130,10 @@ export const BOSSES: Boss[] = [
|
||||
];
|
||||
export const ACTIVITIES: ActivityName[] = [
|
||||
'leaguePoints',
|
||||
'hunterBHV2',
|
||||
'rogueBHV2',
|
||||
'hunterBH',
|
||||
'rogueBH',
|
||||
'hunterLegacyBH',
|
||||
'rogueLegacyBH',
|
||||
'allClues',
|
||||
'beginnerClues',
|
||||
'easyClues',
|
||||
@@ -259,10 +259,10 @@ export type FormattedBHNames = {
|
||||
};
|
||||
|
||||
export const FORMATTED_BH_NAMES: FormattedBHNames = {
|
||||
rogue: 'Bounty Hunter - Rogue',
|
||||
hunter: 'Bounty Hunter - Hunter',
|
||||
legacyRogue: 'Bounty Hunter (Legacy) - Rogue',
|
||||
legacyHunter: 'Bounty Hunter (Legacy) - Hunter'
|
||||
rogue: 'Bounty Hunter (Legacy) - Rogue',
|
||||
hunter: 'Bounty Hunter (Legacy) - Hunter',
|
||||
rogueV2: 'Bounty Hunter - Rogue',
|
||||
hunterV2: 'Bounty Hunter - Hunter'
|
||||
};
|
||||
|
||||
export const FORMATTED_LMS = 'Last Man Standing';
|
||||
|
Reference in New Issue
Block a user