添加 titles/fgoa/const.py

This commit is contained in:
PKAC 2024-03-19 07:00:08 +00:00
parent aceb02281a
commit e6cfca81e7
1 changed files with 14 additions and 0 deletions

14
titles/fgoa/const.py Normal file
View File

@ -0,0 +1,14 @@
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]