26 lines
1011 B
Python
26 lines
1011 B
Python
from pyrogram import filters, Client
|
||
from pyrogram.types import Message
|
||
from ci import app, me
|
||
|
||
des = """
|
||
你好!{} 我是 [{}]({})
|
||
|
||
> 请先使用 `/bind [uid]` 绑定游戏 uid 进行更新数据,然后使用 `/search [uid(可选)]` 获取角色卡片。
|
||
|
||
我基于公共 API 提供的数据来合成图片,支持以下数据:
|
||
`
|
||
- 等级、天赋、武器、面板数据、圣遗物
|
||
`
|
||
角色数据基于 [enka](https://enka.shinshin.moe)
|
||
图片模板基于 [nonebot-plugin-gspanel](https://github.com/monsterxcn/nonebot-plugin-gspanel)
|
||
"""
|
||
|
||
|
||
@app.on_message(filters.command(["start", f"start@{me['result']['username']}"]) & filters.private)
|
||
async def start_command(_: Client, message: Message):
|
||
await message.reply(des.format(message.from_user.mention(),
|
||
me["result"]["first_name"],
|
||
f"https://t.me/{me['result']['username']}"),
|
||
disable_web_page_preview=True,
|
||
quote=True)
|