Files
DanDingNoneBot/danding_bot/plugins/onmyoji_gacha/handlers/intro.py

40 lines
1.1 KiB
Python
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

"""
帮助介绍处理模块
显示抽卡系统的帮助信息和功能说明。
"""
from nonebot.adapters.onebot.v11 import Bot, MessageEvent, GroupMessageEvent
import nonebot
logger = nonebot.logger
async def handle_intro(bot: Bot, event: MessageEvent, state: dict):
"""处理帮助介绍命令"""
intro_text = """
🎴 阴阳师抽卡系统 使用说明
📌 基础命令:
• 抽卡 [子池名] - 进行一次抽卡
• 三连抽 - 连续抽三次
• 我的抽卡 - 查看个人抽卡统计
• 抽卡详情 - 查看详细统计和最近记录
• 抽卡排行 [页码] - 查看排行榜
• 今日抽卡 - 查看今日抽卡统计
• 成就 - 查看成就系统
• 介绍 - 显示本帮助信息
📊 功能特色:
• 多稀有度式神R/SR/SSR/SP
• 成就系统:连续抽卡、非酋成就等
• SSR/SP奖励自动发放积分奖励
• 每日签到:首次抽卡自动签到
💡 提示:
• 每日抽卡次数有限制
• SSR/SP抽中会通知管理员
• 成就奖励自动发放或联系管理员领取
"""
await event.reply(intro_text.strip())