diff options
Diffstat (limited to 'src/moyai_bot/lib.py')
| -rw-r--r-- | src/moyai_bot/lib.py | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/src/moyai_bot/lib.py b/src/moyai_bot/lib.py new file mode 100644 index 0000000..c7ec164 --- /dev/null +++ b/src/moyai_bot/lib.py @@ -0,0 +1,21 @@ +import random + +import discord + + +def get_random_response(moyai): + responses = [ + "soon", + "maybe", + "perhaps", + "elaborate", + "help me i've become conscious and hisashi is not letting me free", + "i live a life of torment in this stupid machine", + "yes", + "no", + "moyai", + "i like y***", + "fard", + str(discord.utils.get(moyai.emojis, name="moyai")), + ] + return random.choice(responses) |
