summaryrefslogtreecommitdiff
path: root/src/moyaiBot/lib.py
diff options
context:
space:
mode:
authorseth <[email protected]>2022-12-25 17:22:15 -0500
committerseth <[email protected]>2022-12-25 17:27:26 -0500
commite235605d424e787c5abbf38b4acfdd68a1883c8e (patch)
treee119be9bbb7747ed548b4343654f8c18e7f3ef36 /src/moyaiBot/lib.py
parent2eb0ac80491098108e9a6ab196c833caf0207b2b (diff)
initial commit of code
Diffstat (limited to 'src/moyaiBot/lib.py')
-rw-r--r--src/moyaiBot/lib.py20
1 files changed, 20 insertions, 0 deletions
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)