2023-02-17 07:02:21 +01:00
|
|
|
from typing import Dict, Any
|
|
|
|
|
2024-01-09 00:30:03 +01:00
|
|
|
from core.utils import Utils
|
2023-02-17 07:02:21 +01:00
|
|
|
from core.config import CoreConfig
|
|
|
|
from titles.chuni.new import ChuniNew
|
|
|
|
from titles.chuni.const import ChuniConstants
|
|
|
|
from titles.chuni.config import ChuniConfig
|
|
|
|
|
|
|
|
class ChuniNewPlus(ChuniNew):
|
|
|
|
def __init__(self, core_cfg: CoreConfig, game_cfg: ChuniConfig) -> None:
|
|
|
|
super().__init__(core_cfg, game_cfg)
|
|
|
|
self.version = ChuniConstants.VER_CHUNITHM_NEW_PLUS
|
2023-03-09 17:38:58 +01:00
|
|
|
|
2024-01-09 09:07:04 +01:00
|
|
|
async def handle_cm_get_user_preview_api_request(self, data: Dict) -> Dict:
|
|
|
|
user_data = await super().handle_cm_get_user_preview_api_request(data)
|
2023-03-15 21:03:22 +01:00
|
|
|
|
2023-05-10 21:32:35 +02:00
|
|
|
# hardcode lastDataVersion for CardMaker 1.35 A028
|
2023-03-15 21:03:22 +01:00
|
|
|
user_data["lastDataVersion"] = "2.05.00"
|
2023-12-13 07:06:16 +01:00
|
|
|
return user_data
|