mirror of
https://github.com/RYGhub/royalnet.git
synced 2024-11-23 19:44:20 +00:00
20 lines
579 B
Python
20 lines
579 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]}")
|