better answers
This commit is contained in:
parent
d7aec37113
commit
f9a64cfeb5
1 changed files with 13 additions and 1 deletions
14
main.py
14
main.py
|
@ -263,7 +263,19 @@ def createBaseTrigger(lists: list[list]) -> list:
|
|||
|
||||
def createBaseAnswers(word: str) -> list:
|
||||
"""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():
|
||||
"""Start the bot"""
|
||||
|
|
Reference in a new issue