2020-05-10 22:46:12 +00:00
|
|
|
from typing import *
|
2019-11-11 08:56:08 +00:00
|
|
|
import random
|
2020-05-10 22:46:12 +00:00
|
|
|
import royalnet.commands as rc
|
2019-11-11 08:56:08 +00:00
|
|
|
|
|
|
|
|
2020-05-10 22:46:12 +00:00
|
|
|
class RageCommand(rc.Command):
|
2019-11-11 08:56:08 +00:00
|
|
|
name: str = "rage"
|
|
|
|
|
|
|
|
aliases = ["balurage", "madden"]
|
|
|
|
|
|
|
|
description: str = "Arrabbiati per qualcosa, come una software house californiana."
|
|
|
|
|
2020-01-24 00:07:11 +00:00
|
|
|
_MAD = [
|
|
|
|
"MADDEN MADDEN MADDEN MADDEN",
|
|
|
|
"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
|
|
|
|
2020-05-10 22:46:12 +00:00
|
|
|
async def run(self, args: rc.CommandArgs, data: rc.CommandData) -> None:
|
2019-11-29 14:55:52 +00:00
|
|
|
await data.reply(f"😠 {random.sample(self._MAD, 1)[0]}")
|