From b33aba098aae9feafd77b56746b4ff5946c843cf Mon Sep 17 00:00:00 2001 From: Kyomotoi <1172294279@qq.com> Date: Tue, 28 Apr 2020 00:30:40 +0800 Subject: Initial commit --- AyaBot/plugins/awsl.py | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 AyaBot/plugins/awsl.py (limited to 'AyaBot/plugins/awsl.py') diff --git a/AyaBot/plugins/awsl.py b/AyaBot/plugins/awsl.py new file mode 100644 index 0000000..c476d59 --- /dev/null +++ b/AyaBot/plugins/awsl.py @@ -0,0 +1,14 @@ +from nonebot import on_command, CommandSession + + +@on_command('阿这') +async def _(session: CommandSession): + await session.send('阿这') + +@on_command('喵', aliases=['喵喵', '喵喵喵']) +async def _(session: CommandSession): + await session.send('喵~') + +@on_command('奶宝', aliases=['@๑ ^ ₃•๑', '奶够翘']) +async def _(session: CommandSession): + await session.send('别叫了别叫了,8在') -- cgit v1.2.3