forked from Hay1tsme/artemis
18 lines
616 B
Python
18 lines
616 B
Python
from typing import Dict
|
|
|
|
from core.config import CoreConfig
|
|
from titles.chuni.base import ChuniBase
|
|
from titles.chuni.const import ChuniConstants
|
|
from titles.chuni.config import ChuniConfig
|
|
|
|
|
|
class ChuniStarPlus(ChuniBase):
|
|
def __init__(self, core_cfg: CoreConfig, game_cfg: ChuniConfig) -> None:
|
|
super().__init__(core_cfg, game_cfg)
|
|
self.version = ChuniConstants.VER_CHUNITHM_STAR_PLUS
|
|
|
|
def handle_get_game_setting_api_request(self, data: Dict) -> Dict:
|
|
ret = super().handle_get_game_setting_api_request(data)
|
|
ret["gameSetting"]["dataVersion"] = "1.25.00"
|
|
return ret
|