oops
This commit is contained in:
27
projects/common/src/utils/scoresaber-utils.ts
Normal file
27
projects/common/src/utils/scoresaber-utils.ts
Normal file
@ -0,0 +1,27 @@
|
||||
/**
|
||||
* Formats the ScoreSaber difficulty number
|
||||
*
|
||||
* @param diff the diffuiclity number
|
||||
*/
|
||||
export function getDifficultyFromScoreSaberDifficulty(diff: number) {
|
||||
switch (diff) {
|
||||
case 1: {
|
||||
return "Easy";
|
||||
}
|
||||
case 3: {
|
||||
return "Normal";
|
||||
}
|
||||
case 5: {
|
||||
return "Hard";
|
||||
}
|
||||
case 7: {
|
||||
return "Expert";
|
||||
}
|
||||
case 9: {
|
||||
return "Expert+";
|
||||
}
|
||||
default: {
|
||||
return "Unknown";
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user