新增三国杀系统

This commit is contained in:
借我清欢与鹤梦
2025-10-30 16:19:02 +08:00
parent 4bddd4339f
commit 86f87b440e
6 changed files with 1416 additions and 0 deletions

View File

@@ -168,6 +168,12 @@ async def handle_command(game_type: str, command: str,
from games.gomoku import GomokuGame
game = GomokuGame()
return await game.handle(command, chat_id, user_id)
# 三国杀
if game_type == 'sanguosha':
from games.sanguosha import SanguoshaGame
game = SanguoshaGame()
return await game.handle(command, chat_id, user_id)
# 积分系统
if game_type == 'points':