1 | const action = require("./assets.json");
|
2 |
|
3 | exports.angry = () => {
|
4 | return action["ANGRY"][Math.floor(Math.random() * action["ANGRY"].length)];
|
5 | }
|
6 |
|
7 | exports.baka = () => {
|
8 | return action["BAKA"][Math.floor(Math.random() * action["BAKA"].length)];
|
9 | }
|
10 |
|
11 | exports.bite = () => {
|
12 | return action["BITE"][Math.floor(Math.random() * action["BITE"].length)];
|
13 | }
|
14 |
|
15 | exports.bloodsuck = () => {
|
16 | return action["BLOODSUCK"][Math.floor(Math.random() * action["BLOODSUCK"].length)];
|
17 | }
|
18 |
|
19 | exports.blush = () => {
|
20 | return action["BLUSH"][Math.floor(Math.random() * action["BLUSH"].length)];
|
21 | }
|
22 |
|
23 | exports.bored = () => {
|
24 | return action["BORED"][Math.floor(Math.random() * action["BORED"].length)];
|
25 | }
|
26 |
|
27 | exports.cheek = () => {
|
28 | return action["CHEEK"][Math.floor(Math.random() * action["CHEEK"].length)];
|
29 | }
|
30 |
|
31 | exports.clap = () => {
|
32 | return action["CLAP"][Math.floor(Math.random() * action["CLAP"].length)];
|
33 | }
|
34 |
|
35 | exports.cringe = () => {
|
36 | return action["CRINGE"][Math.floor(Math.random() * action["CRINGE"].length)];
|
37 | }
|
38 |
|
39 | exports.cry = () => {
|
40 | return action["CRY"][Math.floor(Math.random() * action["CRY"].length)];
|
41 | }
|
42 |
|
43 | exports.dance = () => {
|
44 | return action["DANCE"][Math.floor(Math.random() * action["DANCE"].length)];
|
45 | }
|
46 |
|
47 | exports.drink = () => {
|
48 | return action["DRINK"][Math.floor(Math.random() * action["DRINK"].length)];
|
49 | }
|
50 |
|
51 | exports.facedesk = () => {
|
52 | return action["FACEDESK"][Math.floor(Math.random() * action["FACEDESK"].length)];
|
53 | }
|
54 |
|
55 | exports.fight = () => {
|
56 | return action["FIGHT"][Math.floor(Math.random() * action["FIGHT"].length)];
|
57 | }
|
58 |
|
59 | exports.hand = () => {
|
60 | return action["HAND"][Math.floor(Math.random() * action["HAND"].length)];
|
61 | }
|
62 |
|
63 | exports.happy = () => {
|
64 | return action["HAPPY"][Math.floor(Math.random() * action["HAPPY"].length)];
|
65 | }
|
66 |
|
67 | exports.hate = () => {
|
68 | return action["HATE"][Math.floor(Math.random() * action["HATE"].length)];
|
69 | }
|
70 |
|
71 | exports.highfive = () => {
|
72 | return action["HIGHFIVE"][Math.floor(Math.random() * action["HIGHFIVE"].length)];
|
73 | }
|
74 |
|
75 | exports.facedesk = () => {
|
76 | return action["FACEDESK"][Math.floor(Math.random() * action["FACEDESK"].length)];
|
77 | }
|
78 |
|
79 | exports.horny = () => {
|
80 | return action["HORNY"][Math.floor(Math.random() * action["HORNY"].length)];
|
81 | }
|
82 |
|
83 | exports.kill = () => {
|
84 | return action["KILL"][Math.floor(Math.random() * action["KILL"].length)];
|
85 | }
|
86 |
|
87 | exports.laugh = () => {
|
88 | return action["LAUGH"][Math.floor(Math.random() * action["LAUGH"].length)];
|
89 | }
|
90 |
|
91 | exports.facedesk = () => {
|
92 | return action["FACEDESK"][Math.floor(Math.random() * action["FACEDESK"].length)];
|
93 | }
|
94 |
|
95 | exports.lick = () => {
|
96 | return action["LICK"][Math.floor(Math.random() * action["LICK"].length)];
|
97 | }
|
98 |
|
99 | exports.lurk = () => {
|
100 | return action["LURK"][Math.floor(Math.random() * action["LURK"].length)];
|
101 | }
|
102 |
|
103 | exports.meow = () => {
|
104 | return action["MEOW"][Math.floor(Math.random() * action["MEOW"].length)];
|
105 | }
|
106 |
|
107 | exports.nom = () => {
|
108 | return action["NOM"][Math.floor(Math.random() * action["NOM"].length)];
|
109 | }
|
110 |
|
111 | exports.feed = () => {
|
112 | return action["FEED"][Math.floor(Math.random() * action["FEED"].length)];
|
113 | }
|
114 |
|
115 | exports.hug = () => {
|
116 | return action["HUG"][Math.floor(Math.random() * action["HUG"].length)];
|
117 | }
|
118 |
|
119 | exports.nuzzle = () => {
|
120 | return action["NUZZLE"][Math.floor(Math.random() * action["NUZZLE"].length)];
|
121 | }
|
122 |
|
123 | exports.kiss = () => {
|
124 | return action["KISS"][Math.floor(Math.random() * action["KISS"].length)];
|
125 | }
|
126 |
|
127 | exports.pat = () => {
|
128 | return action["PAT"][Math.floor(Math.random() * action["PAT"].length)];
|
129 | }
|
130 |
|
131 | exports.tickle = () => {
|
132 | return action["TICKLE"][Math.floor(Math.random() * action["TICKLE"].length)];
|
133 | }
|
134 |
|
135 | exports.poke = () => {
|
136 | return action["POKE"][Math.floor(Math.random() * action["POKE"].length)];
|
137 | }
|
138 |
|
139 | exports.smug = () => {
|
140 | return action["SMUG"][Math.floor(Math.random() * action["SMUG"].length)];
|
141 | }
|
142 |
|
143 | exports.stare = () => {
|
144 | return action["STARE"][Math.floor(Math.random() * action["STARE"].length)];
|
145 | }
|
146 |
|
147 | exports.panic = () => {
|
148 | return action["PANIC"][Math.floor(Math.random() * action["PANIC"].length)];
|
149 | }
|
150 |
|
151 | exports.nya = () => {
|
152 | return action["NYA"][Math.floor(Math.random() * action["NYA"].length)];
|
153 | }
|
154 |
|
155 | exports.pout = () => {
|
156 | return action["POUT"][Math.floor(Math.random() * action["POUT"].length)];
|
157 | }
|
158 |
|
159 | exports.run = () => {
|
160 | return action["RUN"][Math.floor(Math.random() * action["RUN"].length)];
|
161 | }
|
162 |
|
163 | exports.sad = () => {
|
164 | return action["SAD"][Math.floor(Math.random() * action["SAD"].length)];
|
165 | }
|
166 |
|
167 | exports.sake = () => {
|
168 | return action["SAKE"][Math.floor(Math.random() * action["SAKE"].length)];
|
169 | }
|
170 |
|
171 | exports.shoot = () => {
|
172 | return action["SHOOT"][Math.floor(Math.random() * action["SHOOT"].length)];
|
173 | }
|
174 |
|
175 | exports.sip = () => {
|
176 | return action["SIP"][Math.floor(Math.random() * action["SIP"].length)];
|
177 | }
|
178 |
|
179 | exports.slap = () => {
|
180 | return action["SLAP"][Math.floor(Math.random() * action["SLAP"].length)];
|
181 | }
|
182 |
|
183 | exports.sleep = () => {
|
184 | return action["SLEEP"][Math.floor(Math.random() * action["SLEEP"].length)];
|
185 | }
|
186 |
|
187 | exports.smile = () => {
|
188 | return action["SMILE"][Math.floor(Math.random() * action["SMILE"].length)];
|
189 | }
|
190 |
|
191 | exports.smoke = () => {
|
192 | return action["SMOKE"][Math.floor(Math.random() * action["SMOKE"].length)];
|
193 | }
|
194 |
|
195 | exports.steal = () => {
|
196 | return action["STEAL"][Math.floor(Math.random() * action["STEAL"].length)];
|
197 | }
|
198 |
|
199 | exports.stockings = () => {
|
200 | return action["STOCK"][Math.floor(Math.random() * action["STOCK"].length)];
|
201 | }
|
202 |
|
203 | exports.sweeties = () => {
|
204 | return action["SWEETIES"][Math.floor(Math.random() * action["SWEETIES"].length)];
|
205 | }
|
206 |
|
207 | exports.tease = () => {
|
208 | return action["TEASE"][Math.floor(Math.random() * action["TEASE"].length)];
|
209 | }
|
210 |
|
211 | exports.think = () => {
|
212 | return action["THINK"][Math.floor(Math.random() * action["THINK"].length)];
|
213 | }
|
214 |
|
215 | exports.wasted = () => {
|
216 | return action["WASTED"][Math.floor(Math.random() * action["WASTED"].length)];
|
217 | }
|
218 |
|
219 | exports.wave = () => {
|
220 | return action["WAVE"][Math.floor(Math.random() * action["WAVE"].length)];
|
221 | }
|
222 |
|
223 | exports.wink = () => {
|
224 | return action["WINK"][Math.floor(Math.random() * action["WINK"].length)];
|
225 | }
|
226 |
|
227 | exports.shoot = () => {
|
228 | return action["SHOOT"][Math.floor(Math.random() * action["SHOOT"].length)];
|
229 | }
|
230 |
|
231 | exports.shoot = () => {
|
232 | return action["SHOOT"][Math.floor(Math.random() * action["SHOOT"].length)];
|
233 | }
|
234 |
|
235 | exports.sex = () => {
|
236 | return action["SEX"][Math.floor(Math.random() * action["SEX"].length)];
|
237 | }
|
238 |
|
239 | exports.cuddle = () => {
|
240 | return action["CUDDLE"][Math.floor(Math.random() * action["CUDDLE"].length)];
|
241 | }
|
242 |
|
243 |
|