2023-10-01 03:54:23 +02:00
|
|
|
class IDACConstants():
|
|
|
|
|
GAME_CODE = "SDGT"
|
|
|
|
|
|
|
|
|
|
CONFIG_NAME = "idac.yaml"
|
|
|
|
|
|
|
|
|
|
VER_IDAC_SEASON_1 = 0
|
|
|
|
|
VER_IDAC_SEASON_2 = 1
|
|
|
|
|
|
2024-01-08 10:21:30 +00:00
|
|
|
BATTLE_MODE_ONLINE = 0
|
|
|
|
|
BATTLE_MODE_OFFLINE = 1
|
|
|
|
|
|
2023-10-01 03:54:23 +02:00
|
|
|
VERSION_STRING = (
|
|
|
|
|
"Initial D THE ARCADE Season 1",
|
|
|
|
|
"Initial D THE ARCADE Season 2",
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
@classmethod
|
|
|
|
|
def game_ver_to_string(cls, ver: int):
|
|
|
|
|
return cls.VERSION_STRING[ver]
|