let black do it's magic
This commit is contained in:
@ -1,4 +1,4 @@
|
||||
class Mai2Constants():
|
||||
class Mai2Constants:
|
||||
GRADE = {
|
||||
"D": 0,
|
||||
"C": 1,
|
||||
@ -13,22 +13,10 @@ class Mai2Constants():
|
||||
"SS": 10,
|
||||
"SS+": 11,
|
||||
"SSS": 12,
|
||||
"SSS+": 13
|
||||
}
|
||||
FC = {
|
||||
"None": 0,
|
||||
"FC": 1,
|
||||
"FC+": 2,
|
||||
"AP": 3,
|
||||
"AP+": 4
|
||||
}
|
||||
SYNC = {
|
||||
"None": 0,
|
||||
"FS": 1,
|
||||
"FS+": 2,
|
||||
"FDX": 3,
|
||||
"FDX+": 4
|
||||
"SSS+": 13,
|
||||
}
|
||||
FC = {"None": 0, "FC": 1, "FC+": 2, "AP": 3, "AP+": 4}
|
||||
SYNC = {"None": 0, "FS": 1, "FS+": 2, "FDX": 3, "FDX+": 4}
|
||||
|
||||
DATE_TIME_FORMAT = "%Y-%m-%d %H:%M:%S"
|
||||
|
||||
@ -43,9 +31,15 @@ class Mai2Constants():
|
||||
VER_MAIMAI_DX_UNIVERSE = 4
|
||||
VER_MAIMAI_DX_UNIVERSE_PLUS = 5
|
||||
|
||||
VERSION_STRING = ("maimai Delux", "maimai Delux PLUS", "maimai Delux Splash", "maimai Delux Splash PLUS", "maimai Delux Universe",
|
||||
"maimai Delux Universe PLUS")
|
||||
VERSION_STRING = (
|
||||
"maimai Delux",
|
||||
"maimai Delux PLUS",
|
||||
"maimai Delux Splash",
|
||||
"maimai Delux Splash PLUS",
|
||||
"maimai Delux Universe",
|
||||
"maimai Delux Universe PLUS",
|
||||
)
|
||||
|
||||
@classmethod
|
||||
def game_ver_to_string(cls, ver: int):
|
||||
return cls.VERSION_STRING[ver]
|
||||
return cls.VERSION_STRING[ver]
|
||||
|
Reference in New Issue
Block a user