From 814c4fd28407ff6c2e6c82f0bfce2d9a21777a83 Mon Sep 17 00:00:00 2001 From: SoulGateKey Date: Wed, 2 Apr 2025 04:54:01 +0800 Subject: [PATCH] add GetGameKaleidxScopeApi handler --- titles/mai2/prism.py | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/titles/mai2/prism.py b/titles/mai2/prism.py index 30044df..addb646 100644 --- a/titles/mai2/prism.py +++ b/titles/mai2/prism.py @@ -34,3 +34,15 @@ class Mai2Prism(Mai2BuddiesPlus): "scoreData": "" } } + + async def handle_get_game_kaleidx_scope_api_request(self, data: Dict) -> Dict: + return { + "gameKaleidxScopeList": [ + {"gateId": 1, "phaseId": 6}, + {"gateId": 2, "phaseId": 6}, + {"gateId": 3, "phaseId": 6}, + {"gateId": 4, "phaseId": 6}, + {"gateId": 5, "phaseId": 6}, + {"gateId": 6, "phaseId": 6} + ] + } \ No newline at end of file