diff --git a/README.md b/README.md index f4e70b5..20e6155 100644 --- a/README.md +++ b/README.md @@ -154,6 +154,7 @@ Activities consist of all levels of clue scrolls as well as minigames and bosses | The Nightmare of Ashihama | `nightmare` | | Phosani's Nightmare | `phosanisNightmare` | | Obor | `obor` | +| Phantom Muspah | `phantomMuspah` | | Sarachnis | `sarachnis` | | Scorpia | `scorpia` | | Skotizo | `skotizo` | diff --git a/__tests__/hiscores.test.ts b/__tests__/hiscores.test.ts index 2ea8d1e..e70bc63 100644 --- a/__tests__/hiscores.test.ts +++ b/__tests__/hiscores.test.ts @@ -121,6 +121,7 @@ test('Parse CSV to json', () => { 3,22666 2,84 26,323 + 44,6233 201,1101 82,3404 5085,61 @@ -218,6 +219,7 @@ test('Parse CSV to json', () => { nightmare: { rank: 3, score: 22666 }, phosanisNightmare: { rank: 2, score: 84 }, obor: { rank: 26, score: 323 }, + phantomMuspah: { rank: 44, score: 6233 }, sarachnis: { rank: 201, score: 1101 }, scorpia: { rank: 82, score: 3404 }, skotizo: { rank: 5085, score: 61 }, diff --git a/__tests__/lynxTitanStats.csv b/__tests__/lynxTitanStats.csv index f1a83e8..475d56b 100644 --- a/__tests__/lynxTitanStats.csv +++ b/__tests__/lynxTitanStats.csv @@ -85,4 +85,5 @@ -1,-1 -1,-1 -1,-1 +-1,-1 -1,-1 \ No newline at end of file diff --git a/src/types.ts b/src/types.ts index 330e75d..037ef4c 100644 --- a/src/types.ts +++ b/src/types.ts @@ -93,6 +93,7 @@ export type Boss = | 'nightmare' | 'phosanisNightmare' | 'obor' + | 'phantomMuspah' | 'sarachnis' | 'scorpia' | 'skotizo' diff --git a/src/utils/constants.ts b/src/utils/constants.ts index b624c5c..a9afca2 100644 --- a/src/utils/constants.ts +++ b/src/utils/constants.ts @@ -101,6 +101,7 @@ export const BOSSES: Boss[] = [ 'nightmare', 'phosanisNightmare', 'obor', + 'phantomMuspah', 'sarachnis', 'scorpia', 'skotizo', @@ -175,6 +176,7 @@ export const FORMATTED_BOSS_NAMES: FormattedBossNames = { nightmare: 'The Nightmare of Ashihama', phosanisNightmare: "Phosani's Nightmare", obor: 'Obor', + phantomMuspah: 'Phantom Muspah', sarachnis: 'Sarachnis', scorpia: 'Scorpia', skotizo: 'Skotizo',