mirror of
https://github.com/RYGhub/royalnet.git
synced 2024-11-24 03:54:20 +00:00
21 lines
577 B
Python
21 lines
577 B
Python
|
import typing
|
||
|
import random
|
||
|
from royalnet.commands import *
|
||
|
|
||
|
|
||
|
class RageCommand(Command):
|
||
|
name: str = "rage"
|
||
|
|
||
|
aliases = ["balurage", "madden"]
|
||
|
|
||
|
description: str = "Arrabbiati per qualcosa, come una software house californiana."
|
||
|
|
||
|
MAD = ["MADDEN MADDEN MADDEN MADDEN",
|
||
|
"EA bad, praise Geraldo!",
|
||
|
"Stai sfogando la tua ira sul bot!",
|
||
|
"Basta, io cambio gilda!",
|
||
|
"Fondiamo la RRYG!"]
|
||
|
|
||
|
async def run(self, args: CommandArgs, data: CommandData) -> None:
|
||
|
await data.reply(f"😠 {random.sample(self.MAD, 1)[0]}")
|