mirror of
https://github.com/RYGhub/royalnet.git
synced 2024-11-23 03:24:20 +00:00
⚙️ Update diobot.py
Added gender distinction
This commit is contained in:
parent
707a4cba38
commit
7508af8757
1 changed files with 16 additions and 16 deletions
|
@ -5,19 +5,19 @@ import random
|
||||||
|
|
||||||
WHO = [
|
WHO = [
|
||||||
# A chi sarà diretto l'insulto
|
# A chi sarà diretto l'insulto
|
||||||
"Dio",
|
["Dio", "o"],
|
||||||
"Zio",
|
["Zio", "o"],
|
||||||
"Gesù",
|
["Gesù", "o"],
|
||||||
"Cristo",
|
["Cristo", "o"],
|
||||||
"Maria",
|
["Maria", "a"],
|
||||||
"Madonna",
|
["Madonna", "a"],
|
||||||
"Eva",
|
["Eva", "a"],
|
||||||
"Adamo",
|
["Adamo", "o"],
|
||||||
"Rettore",
|
["Rettore", "o"],
|
||||||
"Steffo",
|
["Steffo", "o"],
|
||||||
"Bot",
|
["Bot", "o"],
|
||||||
"Telegram",
|
["Telegram", "o"],
|
||||||
"Discord",
|
["Discord", "o"],
|
||||||
]
|
]
|
||||||
WHAT = [
|
WHAT = [
|
||||||
# l'aggettivo per descrivere il soggetto
|
# l'aggettivo per descrivere il soggetto
|
||||||
|
@ -126,11 +126,11 @@ async def diobot(*, _msg: engi.Message, **__):
|
||||||
"""
|
"""
|
||||||
Il bot è molto arrabbiato e vuole creare insulti coloriti!
|
Il bot è molto arrabbiato e vuole creare insulti coloriti!
|
||||||
"""
|
"""
|
||||||
|
who = random.sample(WHO, 1)[0]
|
||||||
message = "🤬 "+random.sample(WHO, 1)[0]
|
message = "🤬 " + who[0]
|
||||||
for i in range(random.randint(1, 5)):
|
for i in range(random.randint(1, 5)):
|
||||||
message += " "
|
message += " "
|
||||||
message += random.sample(WHAT, 1)[0]
|
message += random.sample(WHAT, 1)[0]. replace("ə", who[1])
|
||||||
message += "!"
|
message += "!"
|
||||||
|
|
||||||
await _msg.reply(text=message)
|
await _msg.reply(text=message)
|
||||||
|
|
Loading…
Reference in a new issue