1
Fork 0
mirror of https://github.com/RYGhub/royalnet.git synced 2024-11-23 11:34:18 +00:00
royalnet/royalpack/commands/diobot.py

80 lines
1.5 KiB
Python
Raw Normal View History

import royalnet.engineer as engi
import royalpack.bolts as rb
import datetime
import random
WHO = [
# A chi sarà diretto l'insulto
"Dio",
"Zio",
"Gesù",
"Cristo",
"Maria",
"Madonna",
"Eva",
"Adamo",
"Rettore",
"Steffo",
"Bot",
"Telegram",
"Discord",
]
WHAT = [
# l'aggettivo per descrivere il soggetto
# Non deve essere per forza un insulto, anche qualche neutro è bene accetto e dà quel po' di random in più
"santə",
"grandissimə",
"porcə",
"cane",
"capra",
"maialə",
"infame (per te solo le lame)",
"grassə",
"galleggiante",
"tuamammicə",
"marzianə",
"canguro nella landa dei soffitti bassi",
"scalzə nella valle dei chiodi",
"tirchiə",
"poliedricə",
"palindromə",
"pantagruelicə",
"stellare",
"novax",
"intollerante al lattosio",
"rygatonə",
"puzzolente",
"saturə",
"saccente",
"ciambella",
"sfigmomanometro",
"buonə",
"boia",
"[getting bored already]",
]
@rb.capture_errors
@engi.TeleportingConversation
2022-02-22 03:12:36 +00:00
async def diobot(*, _msg: engi.Message, **__):
"""
Il bot è molto arrabbiato e vuole creare bestemmie complesse!
"""
h = hash(datetime.datetime.now())
message = random.Random(x=h).sample(WHO, 1)[0]
for i in range (random.randint(1,5)):
message += " "
message += random.Random(x=h).sample(WHAT, 1)[0]
message += "!"
await _msg.reply(text=message)
# Objects exported by this module
__all__ = (
2022-02-22 03:12:36 +00:00
"diobot",
)