Karma commited on
Commit
6c4322b
·
1 Parent(s): f3b60db

Fun Strings

Browse files
Files changed (1) hide show
  1. Mikobot/utils/fun_strings.py +250 -0
Mikobot/utils/fun_strings.py ADDED
@@ -0,0 +1,250 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ITEMS = (
2
+ "cast iron skillet",
3
+ "angry meow",
4
+ "cricket bat",
5
+ "wooden cane",
6
+ "shovel",
7
+ "toaster",
8
+ "book",
9
+ "laptop",
10
+ "rubber chicken",
11
+ "spiked bat",
12
+ "heavy rock",
13
+ "chunk of dirt",
14
+ "ton of bricks",
15
+ "rasengan",
16
+ "spirit bomb",
17
+ "100-Type Guanyin Bodhisattva",
18
+ "rasenshuriken",
19
+ "Murasame",
20
+ "ban",
21
+ "chunchunmaru",
22
+ "Kubikiribōchō",
23
+ "rasengan",
24
+ "spherical flying kat",
25
+ )
26
+
27
+ THROW = (
28
+ "throws",
29
+ "flings",
30
+ "chucks",
31
+ "hurls",
32
+ )
33
+
34
+ HIT = (
35
+ "hits",
36
+ "whacks",
37
+ "slaps",
38
+ "smacks",
39
+ "bashes",
40
+ "pats",
41
+ )
42
+
43
+ EYES = [
44
+ ["⌐■", "■"],
45
+ [" ͠°", " °"],
46
+ ["⇀", "↼"],
47
+ ["´• ", " •`"],
48
+ ["´", "`"],
49
+ ["`", "´"],
50
+ ["ó", "ò"],
51
+ ["ò", "ó"],
52
+ ["⸌", "⸍"],
53
+ [">", "<"],
54
+ ["Ƹ̵̡", "Ʒ"],
55
+ ["ᗒ", "ᗕ"],
56
+ ["⟃", "⟄"],
57
+ ["⪧", "⪦"],
58
+ ["⪦", "⪧"],
59
+ ["⪩", "⪨"],
60
+ ["⪨", "⪩"],
61
+ ["⪰", "⪯"],
62
+ ["⫑", "⫒"],
63
+ ["⨴", "⨵"],
64
+ ["⩿", "⪀"],
65
+ ["⩾", "⩽"],
66
+ ["⩺", "⩹"],
67
+ ["⩹", "⩺"],
68
+ ["◥▶", "◀◤"],
69
+ ["◍", "◎"],
70
+ ["/͠-", "┐͡-\\"],
71
+ ["⌣", "⌣”"],
72
+ [" ͡⎚", " ͡⎚"],
73
+ ["≋"],
74
+ ["૦ઁ"],
75
+ [" ͯ"],
76
+ [" ͌"],
77
+ ["ළ"],
78
+ ["◉"],
79
+ ["☉"],
80
+ ["・"],
81
+ ["▰"],
82
+ ["ᵔ"],
83
+ [" ゚"],
84
+ ["□"],
85
+ ["☼"],
86
+ ["*"],
87
+ ["`"],
88
+ ["⚆"],
89
+ ["⊜"],
90
+ [">"],
91
+ ["❍"],
92
+ [" ̄"],
93
+ ["─"],
94
+ ["✿"],
95
+ ["•"],
96
+ ["T"],
97
+ ["^"],
98
+ ["ⱺ"],
99
+ ["@"],
100
+ ["ȍ"],
101
+ ["  "],
102
+ ["  "],
103
+ ["x"],
104
+ ["-"],
105
+ ["$"],
106
+ ["Ȍ"],
107
+ ["ʘ"],
108
+ ["Ꝋ"],
109
+ [""],
110
+ ["⸟"],
111
+ ["๏"],
112
+ ["ⴲ"],
113
+ ["◕"],
114
+ ["◔"],
115
+ ["✧"],
116
+ ["■"],
117
+ ["♥"],
118
+ [" ͡°"],
119
+ ["¬"],
120
+ [" º "],
121
+ ["⨶"],
122
+ ["⨱"],
123
+ ["⏓"],
124
+ ["⏒"],
125
+ ["⍜"],
126
+ ["⍤"],
127
+ ["ᚖ"],
128
+ ["ᴗ"],
129
+ ["ಠ"],
130
+ ["σ"],
131
+ ["☯"],
132
+ ]
133
+
134
+ MOUTHS = [
135
+ ["v"],
136
+ ["ᴥ"],
137
+ ["ᗝ"],
138
+ ["Ѡ"],
139
+ ["ᗜ"],
140
+ ["Ꮂ"],
141
+ ["ᨓ"],
142
+ ["ᨎ"],
143
+ ["ヮ"],
144
+ ["╭͜ʖ╮"],
145
+ [" ͟ل͜"],
146
+ [" ͜ʖ"],
147
+ [" ͟ʖ"],
148
+ [" ʖ̯"],
149
+ ["ω"],
150
+ [" ³"],
151
+ [" ε "],
152
+ ["﹏"],
153
+ ["□"],
154
+ ["ل͜"],
155
+ ["‿"],
156
+ ["╭╮"],
157
+ ["‿‿"],
158
+ ["▾"],
159
+ ["‸"],
160
+ ["Д"],
161
+ ["∀"],
162
+ ["!"],
163
+ ["人"],
164
+ ["."],
165
+ ["ロ"],
166
+ ["_"],
167
+ ["෴"],
168
+ ["ѽ"],
169
+ ["ഌ"],
170
+ ["⏠"],
171
+ ["⏏"],
172
+ ["⍊"],
173
+ ["⍘"],
174
+ ["ツ"],
175
+ ["益"],
176
+ ["╭∩╮"],
177
+ ["Ĺ̯"],
178
+ ["◡"],
179
+ [" ͜つ"],
180
+ ]
181
+
182
+ EARS = [
183
+ ["q", "p"],
184
+ ["ʢ", "ʡ"],
185
+ ["⸮", "?"],
186
+ ["ʕ", "ʔ"],
187
+ ["ᖗ", "ᖘ"],
188
+ ["ᕦ", "ᕥ"],
189
+ ["ᕦ(", ")ᕥ"],
190
+ ["ᕙ(", ")ᕗ"],
191
+ ["ᘳ", "ᘰ"],
192
+ ["ᕮ", "ᕭ"],
193
+ ["ᕳ", "ᕲ"],
194
+ ["(", ")"],
195
+ ["[", "]"],
196
+ ["¯\\_", "_/¯"],
197
+ ["୧", "୨"],
198
+ ["୨", "୧"],
199
+ ["⤜(", ")⤏"],
200
+ ["☞", "☞"],
201
+ ["ᑫ", "ᑷ"],
202
+ ["ᑴ", "ᑷ"],
203
+ ["ヽ(", ")ノ"],
204
+ ["\\(", ")/"],
205
+ ["乁(", ")ㄏ"],
206
+ ["└[", "]┘"],
207
+ ["(づ", ")づ"],
208
+ ["(ง", ")ง"],
209
+ ["⎝", "⎠"],
210
+ ["ლ(", "ლ)"],
211
+ ["ᕕ(", ")ᕗ"],
212
+ ["(∩", ")⊃━☆゚.*"],
213
+ ]
214
+
215
+ TOSS = (
216
+ "Heads",
217
+ "Tails",
218
+ )
219
+
220
+ DECIDE = ("Yes.", "No.", "Maybe.")
221
+
222
+
223
+ # This feature's credit goes to @ishikki_akabane
224
+ FLIRT = (
225
+ "I hope you know CPR, because you just took my breath away!",
226
+ "So, aside from taking my breath away, what do you do for a living?",
227
+ "I ought to complain to Spotify for you not being named this week’s hottest single.",
228
+ "Your eyes are like the ocean; I could swim in them all day.",
229
+ "When I look in your eyes, I see a very kind soul.",
230
+ "If you were a vegetable, you’d be a ‘cute-cumber.’",
231
+ "Do you happen to have a Band-Aid? ‘Cause I scraped my knees falling for you.",
232
+ "I never believed in love at first sight, but that was before I saw you.",
233
+ "I didn’t know what I wanted in a woman until I saw you.",
234
+ "You’re like a fine wine. The more of you I drink in, the better I feel.",
235
+ "You’ve got a lot of beautiful curves, but your smile is absolutely my favorite.",
236
+ "If being sexy was a crime, you’d be guilty as charged.",
237
+ "I was wondering if you’re an artist because you were so good at drawing me in.",
238
+ "It says in the Bible to only think about what’s pure and lovely… So I’ve been thinking about you all day long.",
239
+ "Do you have a map? I just got lost in your eyes.",
240
+ "You know what you would look really beautiful in? My arms.",
241
+ "Are you a magician? It’s the strangest thing, but every time I look at you, everyone else disappears.",
242
+ "I would never play hide and seek with you because someone like you is impossible to find.",
243
+ "I think there’s something wrong with my phone. Could you try calling it to see if it works?",
244
+ "Are you an electrician? Because you’re definitely lighting up my day/night!",
245
+ "I always thought happiness started with an ‘h,’ but it turns out mine starts with ‘u.’",
246
+ "I believe in following my dreams. Can I have your Instagram?",
247
+ "If you were a song, you’d be the best track on the album.",
248
+ "Is your name Google? Because you have everything I’m searching for.",
249
+ "Do you ever get tired from running through my thoughts all night?",
250
+ )