add beatleader score fetching and add icons to FC
Some checks failed
deploy / deploy (push) Failing after 2s

This commit is contained in:
Lee
2023-10-22 13:47:56 +01:00
parent 2e93a1b27f
commit 80e6c0da43
33 changed files with 979 additions and 124 deletions

View File

@ -0,0 +1,12 @@
import { ScoresaberDifficulty } from "../difficulty";
export type ScoresaberSmallerLeaderboardInfo = {
id: string;
songHash: string;
difficulty: ScoresaberDifficulty;
maxScore: number;
createdDate: string;
stars: number;
plays: number;
coverImage: string;
};

View File

@ -0,0 +1,7 @@
import { ScoresaberSmallerLeaderboardInfo } from "./smallerLeaderboard";
import { ScoresaberSmallerScore } from "./smallerScore";
export type ScoresaberSmallerPlayerScore = {
score: ScoresaberSmallerScore;
leaderboard: ScoresaberSmallerLeaderboardInfo;
};

View File

@ -0,0 +1,16 @@
export type ScoresaberSmallerScore = {
id: number;
rank: number;
baseScore: number;
modifiedScore: number;
pp: number;
weight: number;
modifiers: string;
multiplier: number;
badCuts: number;
missedNotes: number;
maxCombo: number;
fullCombo: boolean;
hmd: number;
timeSet: string;
};