osrs-json-hiscores 2.13.0 → 2.14.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +11 -9
- package/lib/types.d.ts +2 -2
- package/lib/utils/constants.js +8 -4
- package/package.json +1 -1
package/README.md
CHANGED
@@ -104,14 +104,16 @@ Activities consist of all levels of clue scrolls as well as minigames and bosses
|
|
104
104
|
|
105
105
|
### Minigames
|
106
106
|
|
107
|
-
| Minigame
|
108
|
-
|
|
109
|
-
| Bounty Hunter (Rogue) | `rogueBH` |
|
110
|
-
| Bounty Hunter (Hunter) | `hunterBH` |
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
107
|
+
| Minigame | Param |
|
108
|
+
| ------------------------------- | :---------------: |
|
109
|
+
| Bounty Hunter (Legacy - Rogue) | `rogueBH` |
|
110
|
+
| Bounty Hunter (Legacy - Hunter) | `hunterBH` |
|
111
|
+
| Bounty Hunter (Rogue) | `rogueBHV2` |
|
112
|
+
| Bounty Hunter (Hunter) | `hunterBHV2` |
|
113
|
+
| Last Man Standing | `lastManStanding` |
|
114
|
+
| PvP Arena | `pvpArena` |
|
115
|
+
| Soul Wars Zeal | `soulWarsZeal` |
|
116
|
+
| Rifts Closed | `riftsClosed` |
|
115
117
|
|
116
118
|
### Leagues
|
117
119
|
|
@@ -129,7 +131,7 @@ Activities consist of all levels of clue scrolls as well as minigames and bosses
|
|
129
131
|
| Barrows Chests | `barrows` |
|
130
132
|
| Bryophyta | `bryophyta` |
|
131
133
|
| Callisto | `callisto` |
|
132
|
-
|
|
134
|
+
| Calvar'ion | `calvarion` |
|
133
135
|
| Cerberus | `cerberus` |
|
134
136
|
| Chambers Of Xeric | `chambersOfXeric` |
|
135
137
|
| Chambers Of Xeric: Challenge Mode | `chambersOfXericChallengeMode` |
|
package/lib/types.d.ts
CHANGED
@@ -16,7 +16,7 @@ export declare type ClueType = 'all' | 'beginner' | 'easy' | 'medium' | 'hard' |
|
|
16
16
|
export declare type Clues = {
|
17
17
|
[Type in ClueType]: Activity;
|
18
18
|
};
|
19
|
-
export declare type BHType = 'rogue' | 'hunter';
|
19
|
+
export declare type BHType = 'rogue' | 'hunter' | 'rogueV2' | 'hunterV2';
|
20
20
|
export declare type BH = {
|
21
21
|
[Type in BHType]: Activity;
|
22
22
|
};
|
@@ -24,7 +24,7 @@ export declare type Boss = 'abyssalSire' | 'alchemicalHydra' | 'artio' | 'barrow
|
|
24
24
|
export declare type Bosses = {
|
25
25
|
[Type in Boss]: Activity;
|
26
26
|
};
|
27
|
-
export declare type ActivityName = 'leaguePoints' | 'hunterBH' | 'rogueBH' | 'lastManStanding' | 'pvpArena' | 'soulWarsZeal' | 'riftsClosed' | 'allClues' | 'beginnerClues' | 'easyClues' | 'mediumClues' | 'hardClues' | 'eliteClues' | 'masterClues' | Boss;
|
27
|
+
export declare type ActivityName = 'leaguePoints' | 'hunterBHV2' | 'rogueBHV2' | 'hunterBH' | 'rogueBH' | 'lastManStanding' | 'pvpArena' | 'soulWarsZeal' | 'riftsClosed' | 'allClues' | 'beginnerClues' | 'easyClues' | 'mediumClues' | 'hardClues' | 'eliteClues' | 'masterClues' | Boss;
|
28
28
|
export interface Stats {
|
29
29
|
skills: Skills;
|
30
30
|
clues: Clues;
|
package/lib/utils/constants.js
CHANGED
@@ -56,7 +56,7 @@ exports.CLUES = [
|
|
56
56
|
'elite',
|
57
57
|
'master'
|
58
58
|
];
|
59
|
-
exports.BH_MODES = ['hunter', 'rogue'];
|
59
|
+
exports.BH_MODES = ['hunterV2', 'rogueV2', 'hunter', 'rogue'];
|
60
60
|
exports.GAMEMODES = [
|
61
61
|
'main',
|
62
62
|
'ironman',
|
@@ -124,6 +124,8 @@ exports.BOSSES = [
|
|
124
124
|
];
|
125
125
|
exports.ACTIVITIES = __spreadArray([
|
126
126
|
'leaguePoints',
|
127
|
+
'hunterBHV2',
|
128
|
+
'rogueBHV2',
|
127
129
|
'hunterBH',
|
128
130
|
'rogueBH',
|
129
131
|
'allClues',
|
@@ -145,7 +147,7 @@ exports.FORMATTED_BOSS_NAMES = {
|
|
145
147
|
barrows: 'Barrows Chests',
|
146
148
|
bryophyta: 'Bryophyta',
|
147
149
|
callisto: 'Callisto',
|
148
|
-
calvarion: "
|
150
|
+
calvarion: "Calvar'ion",
|
149
151
|
cerberus: 'Cerberus',
|
150
152
|
chambersOfXeric: 'Chambers of Xeric',
|
151
153
|
chambersOfXericChallengeMode: 'Chambers of Xeric: Challenge Mode',
|
@@ -230,8 +232,10 @@ exports.FORMATTED_CLUE_NAMES = {
|
|
230
232
|
master: 'Clue Scrolls (master)'
|
231
233
|
};
|
232
234
|
exports.FORMATTED_BH_NAMES = {
|
233
|
-
rogue: 'Bounty Hunter - Rogue',
|
234
|
-
hunter: 'Bounty Hunter - Hunter'
|
235
|
+
rogue: 'Bounty Hunter (Legacy) - Rogue',
|
236
|
+
hunter: 'Bounty Hunter (Legacy) - Hunter',
|
237
|
+
rogueV2: 'Bounty Hunter - Rogue',
|
238
|
+
hunterV2: 'Bounty Hunter - Hunter'
|
235
239
|
};
|
236
240
|
exports.FORMATTED_LMS = 'Last Man Standing';
|
237
241
|
exports.FORMATTED_PVP_ARENA = 'PvP Arena';
|