Initial D THE ARCADE S2 support added

This commit is contained in:
2023-10-01 03:54:23 +02:00
parent 38c1c31cf5
commit e0265485ff
28 changed files with 244427 additions and 29 deletions

16
titles/idac/const.py Normal file
View File

@ -0,0 +1,16 @@
class IDACConstants():
GAME_CODE = "SDGT"
CONFIG_NAME = "idac.yaml"
VER_IDAC_SEASON_1 = 0
VER_IDAC_SEASON_2 = 1
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]