artemis/titles/pokken/const.py
2023-03-09 11:38:58 -05:00

13 lines
239 B
Python

class PokkenConstants:
GAME_CODE = "SDAK"
CONFIG_NAME = "pokken.yaml"
VER_POKKEN = 0
VERSION_NAMES = "Pokken Tournament"
@classmethod
def game_ver_to_string(cls, ver: int):
return cls.VERSION_NAMES[ver]