From 8d885625451402e8c7eee544f4aebd9a62c6b488 Mon Sep 17 00:00:00 2001 From: TastyPumPum Date: Sat, 6 Apr 2024 18:50:35 +0100 Subject: [PATCH] Hiscore fixes --- src/constants.ts | 3 +++ src/meta/types.ts | 2 ++ 2 files changed, 5 insertions(+) diff --git a/src/constants.ts b/src/constants.ts index 6b0e737e1..56027edf1 100644 --- a/src/constants.ts +++ b/src/constants.ts @@ -38,6 +38,7 @@ export const MINIGAMES = [ "pvpArena", "soulWars", "riftsClosed", + "colosseumGlory", ] as const; export const CLUES = ["all", "beginner", "easy", "medium", "hard", "elite", "master"] as const; @@ -72,6 +73,7 @@ export const mappedBossNames: [keyof BossRecords, string][] = [ ["kraken", "Kraken"], ["kreeArra", "Kree'Arra"], ["krilTsutsaroth", "K'ril Tsutsaroth"], + ["lunarChests", "Lunar Chests"], ["mimic", "Mimic"], ["nex", "Nex"], ["nightmare", "The Nightmare"], @@ -82,6 +84,7 @@ export const mappedBossNames: [keyof BossRecords, string][] = [ ["scorpia", "Scorpia"], ["scurrius", "Scurrius"], ["skotizo", "Skotizo"], + ["solHeredit", "Sol Heredit"], ["spindel", "Spindel"], ["tempoross", "Tempoross"], ["theGauntlet", "The Gauntlet"], diff --git a/src/meta/types.ts b/src/meta/types.ts index 2e87f31af..cd70ecbe4 100644 --- a/src/meta/types.ts +++ b/src/meta/types.ts @@ -88,6 +88,7 @@ export interface BossRecords { kraken: MinigameScore; kreeArra: MinigameScore; krilTsutsaroth: MinigameScore; + lunarChests: MinigameScore; mimic: MinigameScore; nex: MinigameScore; nightmare: MinigameScore; @@ -98,6 +99,7 @@ export interface BossRecords { scorpia: MinigameScore; scurrius: MinigameScore; skotizo: MinigameScore; + solHeredit: MinigameScore; spindel: MinigameScore; tempoross: MinigameScore; theGauntlet: MinigameScore;