Skip to content

Commit

Permalink
Add Scurrius
Browse files Browse the repository at this point in the history
  • Loading branch information
maxswa committed Nov 26, 2023
1 parent 7bdde9f commit 494b3fa
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 0 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -162,6 +162,7 @@ Activities consist of all levels of clue scrolls as well as minigames and bosses
| Phantom Muspah | `phantomMuspah` |
| Sarachnis | `sarachnis` |
| Scorpia | `scorpia` |
| Scurrius | `scurrius` |
| Skotizo | `skotizo` |
| Spindel | `spindel` |
| Tempoross | `tempoross` |
Expand Down
1 change: 1 addition & 0 deletions __tests__/b0atyStats.csv
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,7 @@
15860,251
60424,119
100429,26
23958,90
358191,9
1131,1569
33908,273
Expand Down
1 change: 1 addition & 0 deletions __tests__/b0atyStats.json
Original file line number Diff line number Diff line change
Expand Up @@ -154,6 +154,7 @@
{ "id": 50, "name": "Phantom Muspah", "rank": 15860, "score": 251 },
{ "id": 51, "name": "Sarachnis", "rank": 60424, "score": 119 },
{ "id": 52, "name": "Scorpia", "rank": 100429, "score": 26 },
{ "id": 52, "name": "Scurrius", "rank": 23958, "score": 90 },
{ "id": 53, "name": "Skotizo", "rank": 358191, "score": 9 },
{ "id": 54, "name": "Spindel", "rank": 1131, "score": 1569 },
{ "id": 55, "name": "Tempoross", "rank": 33908, "score": 273 },
Expand Down
2 changes: 2 additions & 0 deletions __tests__/hiscores.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -138,6 +138,7 @@ test('Parse CSV to json', () => {
44,6233
201,1101
82,3404
555,7079
5085,61
678,903
18823,23
Expand Down Expand Up @@ -245,6 +246,7 @@ test('Parse CSV to json', () => {
phantomMuspah: { rank: 44, score: 6233 },
sarachnis: { rank: 201, score: 1101 },
scorpia: { rank: 82, score: 3404 },
scurrius: { rank: 555, score: 7079 },
skotizo: { rank: 5085, score: 61 },
spindel: { rank: 678, score: 903 },
tempoross: { rank: 18823, score: 23 },
Expand Down
1 change: 1 addition & 0 deletions src/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -104,6 +104,7 @@ export type Boss =
| 'phantomMuspah'
| 'sarachnis'
| 'scorpia'
| 'scurrius'
| 'skotizo'
| 'spindel'
| 'tempoross'
Expand Down
2 changes: 2 additions & 0 deletions src/utils/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,7 @@ export const BOSSES: Boss[] = [
'phantomMuspah',
'sarachnis',
'scorpia',
'scurrius',
'skotizo',
'spindel',
'tempoross',
Expand Down Expand Up @@ -195,6 +196,7 @@ export const FORMATTED_BOSS_NAMES: FormattedBossNames = {
phantomMuspah: 'Phantom Muspah',
sarachnis: 'Sarachnis',
scorpia: 'Scorpia',
scurrius: 'Scurrius',
skotizo: 'Skotizo',
spindel: 'Spindel',
tempoross: 'Tempoross',
Expand Down

0 comments on commit 494b3fa

Please sign in to comment.