mirror of
https://github.com/MikuLeaks/KianaBH3.git
synced 2025-12-14 13:54:43 +01:00
Initial commit
This commit is contained in:
44
game_server/packet/handlers/GetAdventureStorySweepInfoReq.py
Normal file
44
game_server/packet/handlers/GetAdventureStorySweepInfoReq.py
Normal file
@@ -0,0 +1,44 @@
|
||||
import betterproto
|
||||
from game_server.net.session import Session
|
||||
from lib.proto import (
|
||||
GetAdventureStorySweepInfoReq,
|
||||
GetAdventureStorySweepInfoRsp,
|
||||
IslandStorySweepData
|
||||
)
|
||||
|
||||
async def handle(session: Session, msg: GetAdventureStorySweepInfoReq) -> betterproto.Message:
|
||||
return GetAdventureStorySweepInfoRsp(
|
||||
retcode=0,
|
||||
story_sweep_list=[
|
||||
IslandStorySweepData(
|
||||
avatar_id_list=[
|
||||
20401,
|
||||
20301,
|
||||
20201
|
||||
],
|
||||
is_finished=True,
|
||||
over_time=1719938652,
|
||||
sweep_id=282
|
||||
),
|
||||
IslandStorySweepData(
|
||||
avatar_id_list=[
|
||||
3701,
|
||||
3601,
|
||||
3501
|
||||
],
|
||||
is_finished=True,
|
||||
over_time=1719938654,
|
||||
sweep_id=282
|
||||
),
|
||||
IslandStorySweepData(
|
||||
avatar_id_list=[
|
||||
3301,
|
||||
3201,
|
||||
3101
|
||||
],
|
||||
is_finished=True,
|
||||
over_time=1719938655,
|
||||
sweep_id=282
|
||||
),
|
||||
]
|
||||
)
|
||||
Reference in New Issue
Block a user