新增冒险系统

This commit is contained in:
2025-10-29 17:23:24 +08:00
parent 9718eb0614
commit 5742adc2ad
4 changed files with 261 additions and 145 deletions

View File

@@ -175,6 +175,12 @@ async def handle_command(game_type: str, command: str,
game = AlchemyGame()
return await game.handle(command, chat_id, user_id)
# 冒险系统
if game_type == 'adventure':
from games.adventure import AdventureGame
game = AdventureGame()
return await game.handle(command, chat_id, user_id)
# 积分赠送系统
if game_type == 'gift':
from games.gift import GiftGame