mirror of
https://github.com/RYGhub/royalnet.git
synced 2024-11-23 11:34:18 +00:00
✨ #1 Add /pmots
This commit is contained in:
parent
6aa9532976
commit
5164187fe0
3 changed files with 16 additions and 0 deletions
|
@ -54,6 +54,7 @@ register_telegram(commands.dog_any, ["dog"])
|
||||||
register_telegram(commands.dog_breedlist, ["dog"], "(?:list|help|aiuto)")
|
register_telegram(commands.dog_breedlist, ["dog"], "(?:list|help|aiuto)")
|
||||||
register_telegram(commands.dog_breed, ["dog"], "(?P<breed>[A-Za-z/]+)")
|
register_telegram(commands.dog_breed, ["dog"], "(?P<breed>[A-Za-z/]+)")
|
||||||
register_telegram(commands.fortune, ["fortune"])
|
register_telegram(commands.fortune, ["fortune"])
|
||||||
|
register_telegram(commands.pmots, ["pmots"])
|
||||||
|
|
||||||
|
|
||||||
pda.implementations["telethon.1"].register_conversation(r)
|
pda.implementations["telethon.1"].register_conversation(r)
|
||||||
|
|
|
@ -8,3 +8,4 @@ from .ship import *
|
||||||
from .emojify import *
|
from .emojify import *
|
||||||
from .dog import *
|
from .dog import *
|
||||||
from .fortune import *
|
from .fortune import *
|
||||||
|
from .pmots import *
|
||||||
|
|
14
royalpack/commands/pmots.py
Normal file
14
royalpack/commands/pmots.py
Normal file
|
@ -0,0 +1,14 @@
|
||||||
|
import royalnet.engineer as engi
|
||||||
|
|
||||||
|
|
||||||
|
@engi.TeleportingConversation
|
||||||
|
async def pmots(*, _sentry: engi.Sentry, _msg: engi.Message, **__):
|
||||||
|
"""
|
||||||
|
Riprenditi da uno stomp colossale!
|
||||||
|
|
||||||
|
https://t.me/c/1153723135/181784
|
||||||
|
"""
|
||||||
|
await _msg.reply(text="👣 pmots pmots")
|
||||||
|
|
||||||
|
|
||||||
|
__all__ = ("pmots",)
|
Loading…
Reference in a new issue