forked from cHAuHaNz/TGUserBot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjainder.py
106 lines (103 loc) · 2.82 KB
/
jainder.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
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
97
98
99
100
101
102
103
104
105
106
"""command: .char"""
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
from telethon import events
import random
import asyncio
@borg.on(events.NewMessage(pattern=r"\.char(.*)", outgoing=True))
async def _(event):
if event.fwd_from:
return
input_str = event.pattern_match.group(1)
if input_str in "x":
emoticons = [
"u is mard",
"u is man",
"u is aurat",
"u is woman",
"u is gey",
"u is chakka",
]
elif input_str in "thinking":
emoticons = [
"(҂⌣̀_⌣́)",
"(;¬_¬)",
"(-。-;",
"┌[ O ʖ̯ O ]┐",
"〳 ͡° Ĺ̯ ͡° 〵",
]
elif input_str in "waving":
emoticons = [
"(ノ^∇^)",
"(;-_-)/",
"@(o・ェ・)@ノ",
"ヾ(^-^)ノ",
"ヾ(◍’౪◍)ノ゙♡",
"(ό‿ὸ)ノ",
"(ヾ(´・ω・`)",
]
elif input_str in "wtf":
emoticons = [
"༎ຶ‿༎ຶ",
"(‿ˠ‿)",
"╰U╯☜(◉ɷ◉ )",
"(;´༎ຶ益༎ຶ)♡",
"╭∩╮(︶ε︶*)",
"( ^◡^)っ (‿|‿)",
]
elif input_str in "love":
emoticons = [
"乂❤‿❤乂",
"(。♥‿♥。)",
"( ͡~ ͜ʖ ͡°)",
"໒( ♥ ◡ ♥ )७",
"༼♥ل͜♥༽",
]
elif input_str in "confused":
emoticons = [
"(・_・ヾ",
"「(゚ペ)",
"﴾͡๏̯͡๏﴿",
"( ̄■ ̄;)!?",
"▐ ˵ ͠° (oo) °͠ ˵ ▐",
"(-_-)ゞ゛",
]
elif input_str in "dead":
emoticons = [
"(✖╭╮✖)",
"✖‿✖",
"(+_+)",
"(✖﹏✖)",
"∑(✘Д✘๑)",
]
elif input_str in "sad":
emoticons = [
"(@´_`@)",
"⊙︿⊙",
"(▰˘︹˘▰)",
"●︿●",
"( ´_ノ` )",
"彡(-_-;)彡",
]
elif input_str in "dog":
emoticons = [
"-ᄒᴥᄒ-",
"◖⚆ᴥ⚆◗",
]
else:
emoticons = [
"( ͡° ͜ʖ ͡°)",
"¯\\_(ツ)_/¯",
"( ͡°( ͡° ͜ʖ( ͡° ͜ʖ ͡°)ʖ ͡°) ͡°)",
"ʕ•ᴥ•ʔ",
"(▀ Ĺ̯▀ )",
"(ง ͠° ͟ل͜ ͡°)ง",
"༼ つ ◕_◕ ༽つ",
"ಠ_ಠ",
"(☞ ͡° ͜ʖ ͡°)☞",
"¯\\_༼ ି ~ ି ༽_/¯",
"c༼ ͡° ͜ʖ ͡° ༽⊃",
]
index = random.randint(0, len(emoticons))
output_str = emoticons[index]
await event.edit(output_str)