mirror of
https://github.com/RYGhub/royalnet.git
synced 2024-11-23 19:44:20 +00:00
Add /rage
This commit is contained in:
parent
92e032864e
commit
310b0f62e5
1 changed files with 20 additions and 0 deletions
20
royalnet/commands/rage.py
Normal file
20
royalnet/commands/rage.py
Normal file
|
@ -0,0 +1,20 @@
|
|||
import random
|
||||
from ..utils import Command, Call
|
||||
|
||||
|
||||
MAD = ["MADDEN MADDEN MADDEN MADDEN",
|
||||
"EA bad, praise Geraldo!",
|
||||
"Stai sfogando la tua ira sul bot!",
|
||||
"Basta, io cambio gilda!",
|
||||
"Fondiamo la RRYG!"]
|
||||
|
||||
|
||||
class RageCommand(Command):
|
||||
|
||||
command_name = "rage"
|
||||
command_description = "Arrabbiati con qualcosa, possibilmente una software house."
|
||||
command_syntax = ""
|
||||
|
||||
@classmethod
|
||||
async def common(cls, call: Call):
|
||||
await call.reply(f"😠 {random.sample(MAD, 1)[0]}")
|
Loading…
Reference in a new issue