forked from Hay1tsme/artemis
15 lines
269 B
Python
15 lines
269 B
Python
class FGOAConstants():
|
|
GAME_CODE = "SDEJ"
|
|
|
|
CONFIG_NAME = "fgoa.yaml"
|
|
|
|
VER_FGOA_SEASON_1 = 0
|
|
|
|
VERSION_STRING = (
|
|
"Fate/Grand Order Arcade",
|
|
)
|
|
|
|
@classmethod
|
|
def game_ver_to_string(cls, ver: int):
|
|
return cls.VERSION_STRING[ver]
|