-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbot_reactions_data.py
More file actions
170 lines (168 loc) · 5.03 KB
/
bot_reactions_data.py
File metadata and controls
170 lines (168 loc) · 5.03 KB
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
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
135
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
reactions = [
{
'name': 'unfill',
'desc': 'Unfill someone',
'arg_desc': 'The target to unfill.',
'no_target': '{author} is getting unfilled',
'self_action': '{author} is getting unfilled',
'action': '{author} is unfilling {target}',
'commands': ['unfill']
},{
'name': 'fill',
'desc': 'Fill up someone (bruh)',
'arg_desc': 'The target to fill up.',
'no_target': None,
'self_action': '{author} is filling up',
'action': '{author} is filling {target}',
'commands': ['fill']
},{
'name': 'kiss',
'desc': 'Kiss someone',
'arg_desc': 'The target to kiss.',
'no_target': None,
'self_action': '{author} kisses himself??',
'action': '{author} kisses {target}',
'commands': ['kiss']
},{
'name': 'welcome',
'desc': 'Welcome someone',
'arg_desc': 'The user to welcome.',
'no_target': None,
'self_action': '{author} welcomes himself',
'action': '{author}: Welcome, {target} to T1T4N1UM Project!',
'commands': ['welcome']
},{
'name': 'bang',
'desc': 'Bangs someone',
'arg_desc': 'The person to bang.',
'no_target': 'BANG!',
'self_action': '{author} bangs himself?',
'action': '{author} bangs {target}',
'commands': ['bang', 'bangs']
},{
'name': 'hug',
'desc': 'Hugs someone',
'arg_desc': 'The person to hug.',
'no_target': '{author} is hugging himself, and starts crying...',
'self_action': '{author} is hugging himself, and starts crying...',
'action': '{author} hugs {target}',
'commands': ['hug', 'hugs']
},{
'name': 'kick',
'desc': 'Kicks someone',
'arg_desc': 'The person to kick.',
'no_target': None,
'self_action': '{author} kicks himself?',
'action': '{author} kicks {target}',
'commands': ['kick', 'kicks']
},{
'name': 'punch',
'desc': 'Punchs someone',
'arg_desc': 'The person to punch.',
'no_target': None,
'self_action': '{author} punches himself?',
'action': '{author} punches {target}',
'commands': ['punch', 'punches', 'punchs']
},{
'name': 'cry',
'desc': 'Cries',
'arg_desc': 'The person who made you cry.',
'no_target': '{author} cries',
'self_action': '{author} cries on himself?',
'action': '{author} is crying because of {target}',
'commands': ['cry', 'cries']
},{
'name': 'lick',
'desc': 'Licks someone',
'arg_desc': 'The person you want to lick.',
'no_target': None,
'self_action': '{author} licks himself?',
'action': '{author} licks {target}',
'commands': ['lick', 'licks']
},{
'name': 'suck',
'desc': 'Sucks someone',
'arg_desc': 'The person you want to suck.',
'no_target': '{author} sucks',
'self_action': '{author} sucks himself',
'action': '{author} sucks {target}',
'commands': ['suck', 'sucks']
},{
'name': 'cum',
'desc': 'Cum (in someone)',
'arg_desc': 'The person you want to cum on.',
'no_target': '{author} is cumming',
'self_action': '{author} is cumming',
'action': '{author} cums in {target}',
'commands': ['cum', 'cums']
},{
'name': 'dodge',
'desc': 'Dodge',
'arg_desc': 'The person you want to dodge',
'no_target': '{author} dodges',
'self_action': '{author} dodges',
'action': '{author} dodges {target}',
'commands': ['dodge', 'dodges']
},{
'name': 'heal',
'desc': 'Heals (someone)',
'arg_desc': 'The person you want to heal.',
'no_target': '{author} is healing',
'self_action': '{author} heals himself',
'action': '{author} heals {target}',
'commands': ['heal', 'heals']
},{
'name': 'fart',
'desc': 'Fart (on someone)',
'arg_desc': 'The person you want to fart on.',
'no_target': '{author} farted!',
'self_action': '{author} farts on himself',
'action': '{author} farts on {target}',
'commands': ['fart', 'farts']
},{
'name': 'win',
'desc': 'Win (against someone)',
'arg_desc': 'The person you have beaten',
'no_target': '{author} wins',
'self_action': '{author} is the winner!',
'action': '{author} won against {target}',
'commands': ['win', 'wins']
},{
'name': 'lose',
'desc': 'Lose (against someone)',
'arg_desc': 'The person you lost to',
'no_target': '{author} loses',
'self_action': '{author} lost',
'action': '{author} lost against {target}',
'commands': ['lose', 'lost']
},{
'name': 'pan',
'desc': 'Throw a pan (at someone)',
'arg_desc': 'The person you want to throw the pan to.',
'no_target': '{author} threw a pan.',
'self_action': '{author} hits himself with a pan?',
'action': '{author} threw a pan at {target}',
'commands': ['pan']
},{
'name': 'laugh',
'desc': 'Laugh (at someone)',
'arg_desc': 'The person you laugh at',
'no_target': '{author} laugh',
'self_action': '{author} is laughing at himself',
'action': '{author} is laughing at {target}',
'commands': ['laugh', 'lol']
},{
'name': 'leave',
'desc': 'Leaves (someone)',
'arg_desc': 'The person you want to leave',
'no_target': '{author} leaves',
'self_action': '{author} left the chat!',
'action': '{author} left {target}',
'commands': ['leave', 'left']
},
]
if __name__ == "__main__":
import json
import os
with open(os.path.join(os.path.dirname(__file__), 'reactions_data.json'), 'w') as f:
json.dump(reactions, f, indent=4, sort_keys=True)