osrs-json-hiscores 2.18.0 → 2.19.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 +1 -0
- package/lib/types.d.ts +1 -1
- package/lib/utils/constants.js +2 -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
|
+
| Araxxor | `araxxor` |
|
120
121
|
| Artio | `artio` |
|
121
122
|
| Barrows Chests | `barrows` |
|
122
123
|
| Bryophyta | `bryophyta` |
|
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' | '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' | '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';
|
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
|
+
'araxxor',
|
92
93
|
'artio',
|
93
94
|
'barrows',
|
94
95
|
'bryophyta',
|
@@ -172,6 +173,7 @@ exports.ACTIVITIES = __spreadArray([
|
|
172
173
|
exports.FORMATTED_BOSS_NAMES = {
|
173
174
|
abyssalSire: 'Abyssal Sire',
|
174
175
|
alchemicalHydra: 'Alchemical Hydra',
|
176
|
+
araxxor: 'Araxxor',
|
175
177
|
artio: 'Artio',
|
176
178
|
barrows: 'Barrows Chests',
|
177
179
|
bryophyta: 'Bryophyta',
|