Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: a bunch of chunithm and maimai(dx) changes #948

Merged
merged 7 commits into from
Sep 11, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
feat: add classes for chunithm
Co-authored-by: beerpiss <[email protected]>
  • Loading branch information
j1nxie and beer-psi committed Sep 8, 2023
commit 1ca2090bf4520624aad37c4f03d9681593ea10e3
19 changes: 19 additions & 0 deletions common/src/config/game-support/chunithm.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,15 @@ export const CHUNITHMColours = [
ClassValue("RAINBOW", "虹", "Rainbow: >=16 Rating"),
];

export const CHUNITHMClasses = [
ClassValue("DAN_I", "I", "Class I"),
ClassValue("DAN_II", "II", "Class II"),
ClassValue("DAN_III", "III", "Class III"),
ClassValue("DAN_IV", "IV", "Class IV"),
ClassValue("DAN_V", "V", "Class V"),
ClassValue("DAN_INFINITE", "∞", "Infinite Class"),
]

export const CHUNITHM_SINGLE_CONF = {
providedMetrics: {
score: {
Expand Down Expand Up @@ -115,6 +124,16 @@ export const CHUNITHM_SINGLE_CONF = {
type: "DERIVED",
values: CHUNITHMColours,
},

dan: {
type: "PROVIDED",
values: CHUNITHMClasses,
},

emblem: {
type: "PROVIDED",
values: CHUNITHMClasses,
}
},

orderedJudgements: ["jcrit", "justice", "attack", "miss"],
Expand Down