2019-11-11 08:56:08 +00:00
|
|
|
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."
|
|
|
|
|
2019-11-29 14:55:52 +00:00
|
|
|
_MAD = ["MADDEN MADDEN MADDEN MADDEN",
|
2020-01-20 18:04:59 +00:00
|
|
|
"EA bad, praise Geraldo!",
|
|
|
|
"Stai sfogando la tua ira sul bot!",
|
|
|
|
"Basta, io cambio gilda!",
|
|
|
|
"Fondiamo la RRYG!"]
|
2019-11-11 08:56:08 +00:00
|
|
|
|
|
|
|
async def run(self, args: CommandArgs, data: CommandData) -> None:
|
2019-11-29 14:55:52 +00:00
|
|
|
await data.reply(f"😠 {random.sample(self._MAD, 1)[0]}")
|