Files
artemis/titles/pokken/const.py

13 lines
239 B
Python
Raw Normal View History

2023-03-09 11:38:58 -05:00
class PokkenConstants:
2023-02-17 02:09:26 -05:00
GAME_CODE = "SDAK"
CONFIG_NAME = "pokken.yaml"
VER_POKKEN = 0
2023-03-09 11:38:58 -05:00
VERSION_NAMES = "Pokken Tournament"
2023-02-17 02:09:26 -05:00
@classmethod
def game_ver_to_string(cls, ver: int):
2023-03-09 11:38:58 -05:00
return cls.VERSION_NAMES[ver]