osrs-json-hiscores 2.14.2 → 2.15.0

Sign up to get free protection for your applications and to get access to all the features.
package/README.md CHANGED
@@ -144,6 +144,7 @@ Activities consist of all levels of clue scrolls as well as minigames and bosses
144
144
  | Dagannoth Rex | `dagannothRex` |
145
145
  | Dagannoth Supreme | `dagannothSupreme` |
146
146
  | Deranged Archaeologist | `derangedArchaeologist` |
147
+ | Duke Sucellus | `dukeSucellus` |
147
148
  | General Graardor | `generalGraardor` |
148
149
  | Giant Mole | `giantMole` |
149
150
  | Grotesque Guardians | `grotesqueGuardians` |
@@ -166,6 +167,8 @@ Activities consist of all levels of clue scrolls as well as minigames and bosses
166
167
  | Tempoross | `tempoross` |
167
168
  | The Gauntlet | `gauntlet` |
168
169
  | The Corrupted Gauntlet | `corruptedGauntlet` |
170
+ | The Leviathan | `leviathan` |
171
+ | The Whisperer | `whisperer` |
169
172
  | Theatre Of Blood | `theatreOfBlood` |
170
173
  | Theatre Of Blood: Hard Mode | `theatreOfBloodHardMode` |
171
174
  | Thermonuclear Smoke Devil | `thermonuclearSmokeDevil` |
@@ -173,6 +176,7 @@ Activities consist of all levels of clue scrolls as well as minigames and bosses
173
176
  | Tombs of Amascut: Expert Mode | `tombsOfAmascutExpertMode` |
174
177
  | TzKal-Zuk | `tzKalZuk` |
175
178
  | TzTok-Jad | `tzTokJad` |
179
+ | Vardorvis | `vardorvis` |
176
180
  | Venenatis | `venenatis` |
177
181
  | Vetion | `vetion` |
178
182
  | Vorkath | `vorkath` |
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' | 'generalGraardor' | 'giantMole' | 'grotesqueGuardians' | 'hespori' | 'kalphiteQueen' | 'kingBlackDragon' | 'kraken' | 'kreeArra' | 'krilTsutsaroth' | 'mimic' | 'nex' | 'nightmare' | 'phosanisNightmare' | 'obor' | 'phantomMuspah' | 'sarachnis' | 'scorpia' | 'skotizo' | 'spindel' | 'tempoross' | 'gauntlet' | 'corruptedGauntlet' | 'theatreOfBlood' | 'theatreOfBloodHardMode' | 'thermonuclearSmokeDevil' | 'tombsOfAmascut' | 'tombsOfAmascutExpertMode' | 'tzKalZuk' | 'tzTokJad' | 'venenatis' | 'vetion' | 'vorkath' | 'wintertodt' | 'zalcano' | 'zulrah';
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' | 'mimic' | 'nex' | 'nightmare' | 'phosanisNightmare' | 'obor' | 'phantomMuspah' | 'sarachnis' | 'scorpia' | 'skotizo' | '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
  };
@@ -90,6 +90,7 @@ exports.BOSSES = [
90
90
  'dagannothRex',
91
91
  'dagannothSupreme',
92
92
  'derangedArchaeologist',
93
+ 'dukeSucellus',
93
94
  'generalGraardor',
94
95
  'giantMole',
95
96
  'grotesqueGuardians',
@@ -112,6 +113,8 @@ exports.BOSSES = [
112
113
  'tempoross',
113
114
  'gauntlet',
114
115
  'corruptedGauntlet',
116
+ 'leviathan',
117
+ 'whisperer',
115
118
  'theatreOfBlood',
116
119
  'theatreOfBloodHardMode',
117
120
  'thermonuclearSmokeDevil',
@@ -119,6 +122,7 @@ exports.BOSSES = [
119
122
  'tombsOfAmascutExpertMode',
120
123
  'tzKalZuk',
121
124
  'tzTokJad',
125
+ 'vardorvis',
122
126
  'venenatis',
123
127
  'vetion',
124
128
  'vorkath',
@@ -164,6 +168,7 @@ exports.FORMATTED_BOSS_NAMES = {
164
168
  dagannothRex: 'Dagannoth Rex',
165
169
  dagannothSupreme: 'Dagannoth Supreme',
166
170
  derangedArchaeologist: 'Deranged Archaeologist',
171
+ dukeSucellus: 'Duke Sucellus',
167
172
  generalGraardor: 'General Graardor',
168
173
  giantMole: 'Giant Mole',
169
174
  grotesqueGuardians: 'Grotesque Guardians',
@@ -186,6 +191,8 @@ exports.FORMATTED_BOSS_NAMES = {
186
191
  tempoross: 'Tempoross',
187
192
  gauntlet: 'The Gauntlet',
188
193
  corruptedGauntlet: 'The Corrupted Gauntlet',
194
+ leviathan: 'The Leviathan',
195
+ whisperer: 'The Whisperer',
189
196
  theatreOfBlood: 'Theatre of Blood',
190
197
  theatreOfBloodHardMode: 'Theatre of Blood: Hard Mode',
191
198
  thermonuclearSmokeDevil: 'Thermonuclear Smoke Devil',
@@ -193,6 +200,7 @@ exports.FORMATTED_BOSS_NAMES = {
193
200
  tombsOfAmascutExpertMode: 'Tombs of Amascut: Expert Mode',
194
201
  tzKalZuk: 'TzKal-Zuk',
195
202
  tzTokJad: 'TzTok-Jad',
203
+ vardorvis: 'Vardorvis',
196
204
  venenatis: 'Venenatis',
197
205
  vetion: "Vet'ion",
198
206
  vorkath: 'Vorkath',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "osrs-json-hiscores",
3
- "version": "2.14.2",
3
+ "version": "2.15.0",
4
4
  "description": "The Old School Runescape API wrapper that does more!",
5
5
  "main": "lib/index.js",
6
6
  "types": "lib/index.d.ts",