From e3f412c40c55cd974c59839285f0e820a47aa0e2 Mon Sep 17 00:00:00 2001 From: FGO Date: Mon, 1 Apr 2024 19:00:40 +0000 Subject: [PATCH] =?UTF-8?q?=E6=B7=BB=E5=8A=A0=20titles/FGOA/const.py?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- titles/FGOA/const.py | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 titles/FGOA/const.py diff --git a/titles/FGOA/const.py b/titles/FGOA/const.py new file mode 100644 index 0000000..377a7c5 --- /dev/null +++ b/titles/FGOA/const.py @@ -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]