feat: Add Memorial Arena

This commit is contained in:
Naruse
2024-11-11 10:52:08 +08:00
parent a913ff0697
commit d3ed9eba65
12 changed files with 194 additions and 24 deletions

View File

@@ -0,0 +1,17 @@
import betterproto
import random
from game_server.net.session import Session
from lib.proto import (
TriggerGodWarEventReq,
TriggerGodWarEventRsp,
GodWarEventNotify,
GodWarEventInfo
)
async def handle(session: Session, msg: TriggerGodWarEventReq) -> betterproto.Message:
return TriggerGodWarEventRsp(
retcode=0,
event_id_list=msg.event_id_list,
god_war_id=1,
tale_id=30
)