22 lines
522 B
Python
22 lines
522 B
Python
"""
|
||
thpic 插件
|
||
|
||
提供 /thpic 指令,用于随机返回一个东方Project的图片。
|
||
|
||
"""
|
||
|
||
from core.bot import Bot
|
||
from core.command_manager import matcher
|
||
from models import MessageEvent, MessageSegment
|
||
|
||
__plugin_meta__ = {
|
||
"name": "thpic",
|
||
"description": "来看看东方Project的图片吧!",
|
||
"usage": "/thpic",
|
||
}
|
||
|
||
|
||
@matcher.command("thpic")
|
||
async def handle_echo(bot: Bot, event: MessageEvent, args: list[str]):
|
||
await event.reply(MessageSegment.image("https://img.paulzzh.com/touhou/random"))
|