add back games, conform them to new title dispatch

This commit is contained in:
Hay1tsme
2023-02-17 01:02:21 -05:00
parent f18e939dd0
commit 7e3396a7ff
214 changed files with 19412 additions and 23 deletions

15
titles/cxb/const.py Normal file
View File

@ -0,0 +1,15 @@
class CxbConstants():
GAME_CODE = "SDCA"
CONFIG_NAME = "cxb.yaml"
VER_CROSSBEATS_REV = 0
VER_CROSSBEATS_REV_SUNRISE_S1 = 1
VER_CROSSBEATS_REV_SUNRISE_S2 = 2
VER_CROSSBEATS_REV_SUNRISE_S2_OMNI = 3
VERSION_NAMES = ("crossbeats REV.", "crossbeats REV. SUNRISE", "crossbeats REV. SUNRISE S2", "crossbeats REV. SUNRISE S2 Omnimix")
@classmethod
def game_ver_to_string(cls, ver: int):
return cls.VERSION_NAMES[ver]