forked from Hay1tsme/artemis
Dniel97
b85a65204f
- Added CHUNITHM SUN support - Added first matchmaking support with CPU spawning and messages - Fixed wrong `next_idx` calculations - Added `startDate` to events to spawn the correct items - Fixed login bonus per version - Added information to docs
42 lines
1013 B
Python
42 lines
1013 B
Python
class ChuniConstants:
|
|
GAME_CODE = "SDBT"
|
|
GAME_CODE_NEW = "SDHD"
|
|
|
|
CONFIG_NAME = "chuni.yaml"
|
|
|
|
VER_CHUNITHM = 0
|
|
VER_CHUNITHM_PLUS = 1
|
|
VER_CHUNITHM_AIR = 2
|
|
VER_CHUNITHM_AIR_PLUS = 3
|
|
VER_CHUNITHM_STAR = 4
|
|
VER_CHUNITHM_STAR_PLUS = 5
|
|
VER_CHUNITHM_AMAZON = 6
|
|
VER_CHUNITHM_AMAZON_PLUS = 7
|
|
VER_CHUNITHM_CRYSTAL = 8
|
|
VER_CHUNITHM_CRYSTAL_PLUS = 9
|
|
VER_CHUNITHM_PARADISE = 10
|
|
VER_CHUNITHM_NEW = 11
|
|
VER_CHUNITHM_NEW_PLUS = 12
|
|
VER_CHUNITHM_SUN = 13
|
|
|
|
VERSION_NAMES = [
|
|
"CHUNITHM",
|
|
"CHUNITHM PLUS",
|
|
"CHUNITHM AIR",
|
|
"CHUNITHM AIR PLUS",
|
|
"CHUNITHM STAR",
|
|
"CHUNITHM STAR PLUS",
|
|
"CHUNITHM AMAZON",
|
|
"CHUNITHM AMAZON PLUS",
|
|
"CHUNITHM CRYSTAL",
|
|
"CHUNITHM CRYSTAL PLUS",
|
|
"CHUNITHM PARADISE",
|
|
"CHUNITHM NEW!!",
|
|
"CHUNITHM NEW PLUS!!",
|
|
"CHUNITHM SUN"
|
|
]
|
|
|
|
@classmethod
|
|
def game_ver_to_string(cls, ver: int):
|
|
return cls.VERSION_NAMES[ver]
|