2023-02-17 06:02:21 +00:00
|
|
|
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
|
|
|
|
|
2023-03-09 16:38:58 +00:00
|
|
|
|
2023-02-17 06:02:21 +00:00
|
|
|
class ChuniAirPlus(ChuniBase):
|
|
|
|
def __init__(self, core_cfg: CoreConfig, game_cfg: ChuniConfig) -> None:
|
|
|
|
super().__init__(core_cfg, game_cfg)
|
|
|
|
self.version = ChuniConstants.VER_CHUNITHM_AIR_PLUS
|
2023-03-09 16:38:58 +00:00
|
|
|
|
2024-01-09 08:07:04 +00:00
|
|
|
async def handle_get_game_setting_api_request(self, data: Dict) -> Dict:
|
|
|
|
ret = await super().handle_get_game_setting_api_request(data)
|
2023-02-17 06:02:21 +00:00
|
|
|
ret["gameSetting"]["dataVersion"] = "1.15.00"
|
2023-03-09 16:38:58 +00:00
|
|
|
return ret
|