better answers

This commit is contained in:
Mylloon 2022-08-07 15:42:03 +02:00
parent d7aec37113
commit f9a64cfeb5
Signed by: Anri
GPG key ID: A82D63DFF8D1317F

14
main.py
View file

@ -263,7 +263,19 @@ def createBaseTrigger(lists: list[list]) -> list:
def createBaseAnswers(word: str) -> list: def createBaseAnswers(word: str) -> list:
"""Generates default answers for a given word""" """Generates default answers for a given word"""
return [word, f"({word})", word.upper(), f"{word} lol", f"{word} 👀"] irritating_word = [
"lol",
"👀",
"XD",
]
return [
word,
f"({word})",
word.upper(),
f"{word} {choice(irritating_word)}",
f"{word}...",
]
def start(): def start():
"""Start the bot""" """Start the bot"""