From e235605d424e787c5abbf38b4acfdd68a1883c8e Mon Sep 17 00:00:00 2001 From: seth Date: Sun, 25 Dec 2022 17:22:15 -0500 Subject: initial commit of code --- src/moyaiBot/lib.py | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 src/moyaiBot/lib.py (limited to 'src/moyaiBot/lib.py') diff --git a/src/moyaiBot/lib.py b/src/moyaiBot/lib.py new file mode 100644 index 0000000..899a906 --- /dev/null +++ b/src/moyaiBot/lib.py @@ -0,0 +1,20 @@ +import discord +import random + + +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) -- cgit v1.2.3