osrs-json-hiscores 2.19.0 → 2.20.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 +2 -0
- package/lib/types.d.ts +1 -1
- package/lib/utils/constants.js +4 -0
- package/package.json +1 -1
package/README.md
CHANGED
@@ -117,6 +117,7 @@ Activities consist of all levels of clue scrolls as well as minigames and bosses
|
|
117
117
|
| --------------------------------- | :----------------------------: |
|
118
118
|
| Abyssal Sire | `abyssalSire` |
|
119
119
|
| Alchemical Hydra | `alchemicalHydra` |
|
120
|
+
| Amoxliatl | `amoxliatl` |
|
120
121
|
| Araxxor | `araxxor` |
|
121
122
|
| Artio | `artio` |
|
122
123
|
| Barrows Chests | `barrows` |
|
@@ -161,6 +162,7 @@ Activities consist of all levels of clue scrolls as well as minigames and bosses
|
|
161
162
|
| Tempoross | `tempoross` |
|
162
163
|
| The Gauntlet | `gauntlet` |
|
163
164
|
| The Corrupted Gauntlet | `corruptedGauntlet` |
|
165
|
+
| The Hueycoatl | `hueycoatl` |
|
164
166
|
| The Leviathan | `leviathan` |
|
165
167
|
| The Whisperer | `whisperer` |
|
166
168
|
| Theatre Of Blood | `theatreOfBlood` |
|
package/lib/types.d.ts
CHANGED
@@ -21,7 +21,7 @@ export type BHType = 'rogue' | 'hunter' | 'rogueV2' | 'hunterV2';
|
|
21
21
|
export type BH = {
|
22
22
|
[Type in BHType]: Activity;
|
23
23
|
};
|
24
|
-
export type Boss = 'abyssalSire' | 'alchemicalHydra' | 'araxxor' | 'artio' | 'barrows' | 'bryophyta' | 'callisto' | 'calvarion' | 'cerberus' | 'chambersOfXeric' | 'chambersOfXericChallengeMode' | 'chaosElemental' | 'chaosFanatic' | 'commanderZilyana' | 'corporealBeast' | 'crazyArchaeologist' | 'dagannothPrime' | 'dagannothRex' | 'dagannothSupreme' | 'derangedArchaeologist' | 'dukeSucellus' | 'generalGraardor' | 'giantMole' | 'grotesqueGuardians' | 'hespori' | 'kalphiteQueen' | 'kingBlackDragon' | 'kraken' | 'kreeArra' | 'krilTsutsaroth' | 'lunarChests' | 'mimic' | 'nex' | 'nightmare' | 'phosanisNightmare' | 'obor' | 'phantomMuspah' | 'sarachnis' | 'scorpia' | 'scurrius' | 'skotizo' | 'solHeredit' | 'spindel' | 'tempoross' | 'gauntlet' | 'corruptedGauntlet' | 'leviathan' | 'whisperer' | 'theatreOfBlood' | 'theatreOfBloodHardMode' | 'thermonuclearSmokeDevil' | 'tombsOfAmascut' | 'tombsOfAmascutExpertMode' | 'tzKalZuk' | 'tzTokJad' | 'vardorvis' | 'venenatis' | 'vetion' | 'vorkath' | 'wintertodt' | 'zalcano' | 'zulrah';
|
24
|
+
export type Boss = 'abyssalSire' | 'alchemicalHydra' | 'amoxliatl' | 'araxxor' | 'artio' | 'barrows' | 'bryophyta' | 'callisto' | 'calvarion' | 'cerberus' | 'chambersOfXeric' | 'chambersOfXericChallengeMode' | 'chaosElemental' | 'chaosFanatic' | 'commanderZilyana' | 'corporealBeast' | 'crazyArchaeologist' | 'dagannothPrime' | 'dagannothRex' | 'dagannothSupreme' | 'derangedArchaeologist' | 'dukeSucellus' | 'generalGraardor' | 'giantMole' | 'grotesqueGuardians' | 'hespori' | 'kalphiteQueen' | 'kingBlackDragon' | 'kraken' | 'kreeArra' | 'krilTsutsaroth' | 'lunarChests' | 'mimic' | 'nex' | 'nightmare' | 'phosanisNightmare' | 'obor' | 'phantomMuspah' | 'sarachnis' | 'scorpia' | 'scurrius' | 'skotizo' | 'solHeredit' | 'spindel' | 'tempoross' | 'gauntlet' | 'corruptedGauntlet' | 'hueycoatl' | 'leviathan' | 'whisperer' | 'theatreOfBlood' | 'theatreOfBloodHardMode' | 'thermonuclearSmokeDevil' | 'tombsOfAmascut' | 'tombsOfAmascutExpertMode' | 'tzKalZuk' | 'tzTokJad' | 'vardorvis' | 'venenatis' | 'vetion' | 'vorkath' | 'wintertodt' | 'zalcano' | 'zulrah';
|
25
25
|
export type Bosses = {
|
26
26
|
[Type in Boss]: Activity;
|
27
27
|
};
|
package/lib/utils/constants.js
CHANGED
@@ -89,6 +89,7 @@ exports.GAMEMODES = [
|
|
89
89
|
exports.BOSSES = [
|
90
90
|
'abyssalSire',
|
91
91
|
'alchemicalHydra',
|
92
|
+
'amoxliatl',
|
92
93
|
'araxxor',
|
93
94
|
'artio',
|
94
95
|
'barrows',
|
@@ -133,6 +134,7 @@ exports.BOSSES = [
|
|
133
134
|
'tempoross',
|
134
135
|
'gauntlet',
|
135
136
|
'corruptedGauntlet',
|
137
|
+
'hueycoatl',
|
136
138
|
'leviathan',
|
137
139
|
'whisperer',
|
138
140
|
'theatreOfBlood',
|
@@ -173,6 +175,7 @@ exports.ACTIVITIES = __spreadArray([
|
|
173
175
|
exports.FORMATTED_BOSS_NAMES = {
|
174
176
|
abyssalSire: 'Abyssal Sire',
|
175
177
|
alchemicalHydra: 'Alchemical Hydra',
|
178
|
+
amoxliatl: 'Amoxliatl',
|
176
179
|
araxxor: 'Araxxor',
|
177
180
|
artio: 'Artio',
|
178
181
|
barrows: 'Barrows Chests',
|
@@ -217,6 +220,7 @@ exports.FORMATTED_BOSS_NAMES = {
|
|
217
220
|
tempoross: 'Tempoross',
|
218
221
|
gauntlet: 'The Gauntlet',
|
219
222
|
corruptedGauntlet: 'The Corrupted Gauntlet',
|
223
|
+
hueycoatl: 'The Hueycoatl',
|
220
224
|
leviathan: 'The Leviathan',
|
221
225
|
whisperer: 'The Whisperer',
|
222
226
|
theatreOfBlood: 'Theatre of Blood',
|