From 79fcf0142aa19432dc1aa04183f4c1aa6330ff19 Mon Sep 17 00:00:00 2001 From: Christoph Urlacher Date: Sat, 9 Dec 2023 17:48:27 +0100 Subject: [PATCH] Some more options for randomly selected answers --- bot.py | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/bot.py b/bot.py index c0ddded..f832f5c 100644 --- a/bot.py +++ b/bot.py @@ -122,7 +122,7 @@ def user_entrance_sound_autocomplete( all_sounds: Dict[str, List[str]] = { board: list(map(lambda x: x.split(".")[0], os.listdir(f"{SOUNDDIR}/{board}/"))) for board in boards - } # These are all sounds, organized per board + } # These are all sounds, organized per board, without file extension # @todo Initially only suggest boards, because there are too many sounds to show them all completions: List[Choice[str]] = [] @@ -188,6 +188,10 @@ async def heidi_exclaim(interaction: Interaction) -> None: "Warum denn so schüchtern?", "Im TV ist das legal!", "Das Stroh ist nur fürs Shooting!", + "Jetzt sei doch mal sexy!", + "Stell dich nicht so an!", + "Models müssen da halt durch!", + "Heul doch nicht!" ] await interaction.response.send_message(random.choice(messages)) @@ -208,14 +212,13 @@ async def magic_shell(interaction: Interaction, question: str) -> None: "Klaro Karo", "Offensichtlich Sherlock", "Tom sagt Ja", - "Nein!", "Nö.", "Nä.", "Niemals!", "Nur über meine Leiche du Hurensohn!", "In deinen Träumen.", - "Tom sagt Nein" + "Tom sagt Nein", ] question = question.strip() question_mark = "" if question[-1] == "?" else "?"