From 47f09f81ff1577f6d37842316f401a1502cfdc50 Mon Sep 17 00:00:00 2001 From: Azalea <22280294+hykilpikonna@users.noreply.github.com> Date: Tue, 2 Apr 2024 01:26:24 -0400 Subject: [PATCH] [U] Correct wacca scoring --- src/main/java/icu/samnyan/aqua/net/utils/GameScoring.kt | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/src/main/java/icu/samnyan/aqua/net/utils/GameScoring.kt b/src/main/java/icu/samnyan/aqua/net/utils/GameScoring.kt index d9143a09..dd9aaba6 100644 --- a/src/main/java/icu/samnyan/aqua/net/utils/GameScoring.kt +++ b/src/main/java/icu/samnyan/aqua/net/utils/GameScoring.kt @@ -48,14 +48,19 @@ val ongekiScores = listOf( ).map { (k, v) -> (k * 10000).toInt() to v } val waccaScores = listOf( - 100.0 to "AP", + 100.0 to "Master", + 99.0 to "SSS+", 98.0 to "SSS", + 97.0 to "SS+", 95.0 to "SS", + 93.0 to "S+", 90.0 to "S", 85.0 to "AAA", 80.0 to "AA", 70.0 to "A", + // The official requirement for B is a score of 0 and a hit count of 10 + // But that's nonsense, so I'm going to make something up 60.0 to "B", - 1.0 to "C", + 30.0 to "C", 0.0 to "D", ).map { (k, v) -> (k * 10000).toInt() to v } \ No newline at end of file