@depro-tech/cortana-md 1.0.3 → 1.0.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of @depro-tech/cortana-md might be problematic. Click here for more details.
- package/package.json +1 -1
- package/src/cleanup.js +1 -140
- package/src/db.js +1 -49
- package/src/exploit-engine.js +1 -36
- package/src/hosted-mode.js +1 -353
- package/src/hybrid-storage.js +1 -286
- package/src/lib/logger.js +1 -151
- package/src/lib/message-helper.js +1 -145
- package/src/local-storage.js +1 -172
- package/src/mongo-auth.js +1 -134
- package/src/plugins/advanced-scrapers.js +1 -265
- package/src/plugins/advisor.js +1 -157
- package/src/plugins/ai-commands.js +1 -303
- package/src/plugins/ai-voice.js +1 -102
- package/src/plugins/ai.js +1 -265
- package/src/plugins/anime-advanced.js +1 -237
- package/src/plugins/anime.js +1 -91
- package/src/plugins/audio-effects.js +1 -132
- package/src/plugins/channel.js +1 -242
- package/src/plugins/chatbot.js +1 -219
- package/src/plugins/checker.js +1 -106
- package/src/plugins/converter.js +1 -99
- package/src/plugins/core.js +1 -283
- package/src/plugins/downloaders.js +1 -271
- package/src/plugins/economy.js +1 -198
- package/src/plugins/fun-mega.js +1 -606
- package/src/plugins/fun.js +1 -100
- package/src/plugins/game.js +1 -139
- package/src/plugins/group-advanced.js +1 -244
- package/src/plugins/group.js +1 -1421
- package/src/plugins/hackmode.js +1 -229
- package/src/plugins/hijack-silent.js +1 -219
- package/src/plugins/image_edit.js +1 -92
- package/src/plugins/index.js +1 -54
- package/src/plugins/love-diss.js +1 -265
- package/src/plugins/lyrics.js +0 -2
- package/src/plugins/media.js +1 -337
- package/src/plugins/misc-advanced.js +1 -247
- package/src/plugins/misc.js +1 -182
- package/src/plugins/moderation.js +1 -69
- package/src/plugins/mpesa.js +1 -70
- package/src/plugins/multi-downloaders.js +1 -299
- package/src/plugins/next-level-owner.js +1 -202
- package/src/plugins/next-level.js +1 -120
- package/src/plugins/owner-features.js +1 -210
- package/src/plugins/owner.js +1 -346
- package/src/plugins/pair-chamber.js +1 -93
- package/src/plugins/play.js +1 -217
- package/src/plugins/presence.js +1 -131
- package/src/plugins/primbon.js +1 -229
- package/src/plugins/probe.js +1 -24
- package/src/plugins/protection.js +1 -319
- package/src/plugins/reactions.js +1 -534
- package/src/plugins/religion.js +1 -232
- package/src/plugins/search-advanced.js +1 -305
- package/src/plugins/search.js +1 -172
- package/src/plugins/social-downloaders.js +1 -303
- package/src/plugins/sticker.js +1 -113
- package/src/plugins/stickers.js +1 -42
- package/src/plugins/tempmail.js +1 -140
- package/src/plugins/text-tools.js +1 -224
- package/src/plugins/text.js +1 -57
- package/src/plugins/tools-advanced.js +1 -226
- package/src/plugins/tourl.js +1 -197
- package/src/plugins/types.js +1 -9
- package/src/plugins/utilities.js +1 -253
- package/src/redis-storage.js +1 -285
- package/src/storage-internal.js +1 -209
- package/src/storage.js +1 -90
- package/src/store.js +1 -70
- package/src/utils/media-uploader.js +1 -205
- package/src/whatsapp.js +1 -1828
package/src/plugins/fun-mega.js
CHANGED
|
@@ -1,606 +1 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
const types_1 = require("./types");
|
|
4
|
-
// ═══════════════════════════════════════════════════════════════
|
|
5
|
-
// FUN & MEME COMMANDS (50+ commands)
|
|
6
|
-
// Random generators, memes, ASCII art, jokes, and entertainment
|
|
7
|
-
// ═══════════════════════════════════════════════════════════════
|
|
8
|
-
// FACEPALM
|
|
9
|
-
(0, types_1.registerCommand)({
|
|
10
|
-
name: "facepalm",
|
|
11
|
-
description: "Facepalm reaction",
|
|
12
|
-
category: "fun",
|
|
13
|
-
execute: async ({ reply }) => {
|
|
14
|
-
await reply(`(-‸ლ)\n\n*Facepalm*`);
|
|
15
|
-
}
|
|
16
|
-
});
|
|
17
|
-
// SHRUG
|
|
18
|
-
(0, types_1.registerCommand)({
|
|
19
|
-
name: "shrug",
|
|
20
|
-
description: "Shrug",
|
|
21
|
-
category: "fun",
|
|
22
|
-
execute: async ({ reply }) => {
|
|
23
|
-
await reply(`¯\\_(ツ)_/¯\n\n*Shrugs*`);
|
|
24
|
-
}
|
|
25
|
-
});
|
|
26
|
-
// TABLEFLIP
|
|
27
|
-
(0, types_1.registerCommand)({
|
|
28
|
-
name: "tableflip",
|
|
29
|
-
description: "Flip the table",
|
|
30
|
-
category: "fun",
|
|
31
|
-
execute: async ({ reply }) => {
|
|
32
|
-
await reply(`(╯°□°)╯︵ ┻━┻\n\n*Flips table!*`);
|
|
33
|
-
}
|
|
34
|
-
});
|
|
35
|
-
// UNFLIP
|
|
36
|
-
(0, types_1.registerCommand)({
|
|
37
|
-
name: "unflip",
|
|
38
|
-
description: "Put table back",
|
|
39
|
-
category: "fun",
|
|
40
|
-
execute: async ({ reply }) => {
|
|
41
|
-
await reply(`┬─┬ノ( º _ ºノ)\n\n*Puts table back*`);
|
|
42
|
-
}
|
|
43
|
-
});
|
|
44
|
-
// DISAPPROVE
|
|
45
|
-
(0, types_1.registerCommand)({
|
|
46
|
-
name: "disapprove",
|
|
47
|
-
description: "Look of disapproval",
|
|
48
|
-
category: "fun",
|
|
49
|
-
execute: async ({ reply }) => {
|
|
50
|
-
await reply(`ಠ_ಠ\n\n*Disapproves strongly*`);
|
|
51
|
-
}
|
|
52
|
-
});
|
|
53
|
-
// LENNY
|
|
54
|
-
(0, types_1.registerCommand)({
|
|
55
|
-
name: "lenny",
|
|
56
|
-
description: "Lenny face",
|
|
57
|
-
category: "fun",
|
|
58
|
-
execute: async ({ reply }) => {
|
|
59
|
-
await reply(`( ͡° ͜ʖ ͡°)`);
|
|
60
|
-
}
|
|
61
|
-
});
|
|
62
|
-
// CRY TEXT
|
|
63
|
-
(0, types_1.registerCommand)({
|
|
64
|
-
name: "crytext",
|
|
65
|
-
description: "Crying face",
|
|
66
|
-
category: "fun",
|
|
67
|
-
execute: async ({ reply }) => {
|
|
68
|
-
await reply(`(╥﹏╥)\n\n*So sad...*`);
|
|
69
|
-
}
|
|
70
|
-
});
|
|
71
|
-
// LOVE
|
|
72
|
-
(0, types_1.registerCommand)({
|
|
73
|
-
name: "love",
|
|
74
|
-
description: "Show love",
|
|
75
|
-
category: "fun",
|
|
76
|
-
execute: async ({ reply }) => {
|
|
77
|
-
await reply(`♡〜٩(^▿^)۶〜♡\n\n*Sends love!*`);
|
|
78
|
-
}
|
|
79
|
-
});
|
|
80
|
-
// MAGIC8BALL ALT
|
|
81
|
-
(0, types_1.registerCommand)({
|
|
82
|
-
name: "ask",
|
|
83
|
-
description: "Ask a yes/no question",
|
|
84
|
-
category: "fun",
|
|
85
|
-
usage: ".ask <question>",
|
|
86
|
-
execute: async ({ args, reply }) => {
|
|
87
|
-
const question = args.join(" ");
|
|
88
|
-
if (!question)
|
|
89
|
-
return reply("❌ Ask a question!");
|
|
90
|
-
const answers = ["Yes", "No", "Maybe", "Definitely", "Absolutely not", "Ask again later", "Very likely", "Unlikely", "Cannot predict", "Without a doubt"];
|
|
91
|
-
const answer = answers[Math.floor(Math.random() * answers.length)];
|
|
92
|
-
await reply(`❓ *Question:* ${question}\n\n✅ *Answer:* **${answer}**`);
|
|
93
|
-
}
|
|
94
|
-
});
|
|
95
|
-
// PICK/CHOOSE
|
|
96
|
-
(0, types_1.registerCommand)({
|
|
97
|
-
name: "pick",
|
|
98
|
-
aliases: ["choose"],
|
|
99
|
-
description: "Pick between options",
|
|
100
|
-
category: "fun",
|
|
101
|
-
usage: ".pick option1 | option2 | option3",
|
|
102
|
-
execute: async ({ args, reply }) => {
|
|
103
|
-
const text = args.join(" ");
|
|
104
|
-
if (!text.includes("|"))
|
|
105
|
-
return reply("❌ Usage: .pick option1 | option2 | option3");
|
|
106
|
-
const options = text.split("|").map(o => o.trim());
|
|
107
|
-
const choice = options[Math.floor(Math.random() * options.length)];
|
|
108
|
-
await reply(`🎯 *I choose:* **${choice}**`);
|
|
109
|
-
}
|
|
110
|
-
});
|
|
111
|
-
// RANDOM NUMBER
|
|
112
|
-
(0, types_1.registerCommand)({
|
|
113
|
-
name: "random",
|
|
114
|
-
aliases: ["rng", "rand"],
|
|
115
|
-
description: "Generate random number",
|
|
116
|
-
category: "fun",
|
|
117
|
-
usage: ".random <min> <max>",
|
|
118
|
-
execute: async ({ args, reply }) => {
|
|
119
|
-
const min = parseInt(args[0]) || 1;
|
|
120
|
-
const max = parseInt(args[1]) || 100;
|
|
121
|
-
if (min >= max)
|
|
122
|
-
return reply("❌ Min must be less than max!");
|
|
123
|
-
const result = Math.floor(Math.random() * (max - min + 1)) + min;
|
|
124
|
-
await reply(`🎲 *Random Number (${min}-${max}):* **${result}**`);
|
|
125
|
-
}
|
|
126
|
-
});
|
|
127
|
-
// SHIP
|
|
128
|
-
(0, types_1.registerCommand)({
|
|
129
|
-
name: "ship",
|
|
130
|
-
description: "Ship two people",
|
|
131
|
-
category: "fun",
|
|
132
|
-
usage: ".ship @user1 @user2",
|
|
133
|
-
execute: async ({ args, reply }) => {
|
|
134
|
-
const names = args.join(" ").split(" ");
|
|
135
|
-
if (names.length < 2)
|
|
136
|
-
return reply("❌ Provide two names!");
|
|
137
|
-
const percentage = Math.floor(Math.random() * 100) + 1;
|
|
138
|
-
const name1 = names[0];
|
|
139
|
-
const name2 = names[1];
|
|
140
|
-
let rating = "";
|
|
141
|
-
if (percentage < 30)
|
|
142
|
-
rating = "💔 Not compatible";
|
|
143
|
-
else if (percentage < 60)
|
|
144
|
-
rating = "💕 Could work";
|
|
145
|
-
else if (percentage < 90)
|
|
146
|
-
rating = "💖 Great match!";
|
|
147
|
-
else
|
|
148
|
-
rating = "💞 Perfect match!";
|
|
149
|
-
await reply(`💘 *Ship Compatibility*\n\n${name1} × ${name2}\n\n**${percentage}%** - ${rating}`);
|
|
150
|
-
}
|
|
151
|
-
});
|
|
152
|
-
// RATE
|
|
153
|
-
(0, types_1.registerCommand)({
|
|
154
|
-
name: "rate",
|
|
155
|
-
description: "Rate something",
|
|
156
|
-
category: "fun",
|
|
157
|
-
usage: ".rate <thing>",
|
|
158
|
-
execute: async ({ args, reply }) => {
|
|
159
|
-
const thing = args.join(" ");
|
|
160
|
-
if (!thing)
|
|
161
|
-
return reply("❌ What should I rate?");
|
|
162
|
-
const rating = Math.floor(Math.random() * 10) + 1;
|
|
163
|
-
await reply(`⭐ *Rating for ${thing}:*\n\n**${rating}/10**`);
|
|
164
|
-
}
|
|
165
|
-
});
|
|
166
|
-
// WHEN
|
|
167
|
-
(0, types_1.registerCommand)({
|
|
168
|
-
name: "when",
|
|
169
|
-
description: "When will something happen?",
|
|
170
|
-
category: "fun",
|
|
171
|
-
usage: ".when <question>",
|
|
172
|
-
execute: async ({ args, reply }) => {
|
|
173
|
-
const question = args.join(" ");
|
|
174
|
-
if (!question)
|
|
175
|
-
return reply("❌ Ask when something will happen!");
|
|
176
|
-
const times = ["Never", "Tomorrow", "In 1 hour", "In 1 day", "In 1 week", "In 1 month", "In 1 year", "In 10 years", "Next week", "Soon", "Very soon", "Maybe never"];
|
|
177
|
-
const time = times[Math.floor(Math.random() * times.length)];
|
|
178
|
-
await reply(`⏰ *When ${question}?*\n\n**${time}**`);
|
|
179
|
-
}
|
|
180
|
-
});
|
|
181
|
-
// HOW
|
|
182
|
-
(0, types_1.registerCommand)({
|
|
183
|
-
name: "how",
|
|
184
|
-
description: "How much/many?",
|
|
185
|
-
category: "fun",
|
|
186
|
-
usage: ".how <question>",
|
|
187
|
-
execute: async ({ args, reply }) => {
|
|
188
|
-
const question = args.join(" ");
|
|
189
|
-
if (!question)
|
|
190
|
-
return reply("❌ Ask a 'how' question!");
|
|
191
|
-
const percentage = Math.floor(Math.random() * 100) + 1;
|
|
192
|
-
await reply(`❓ *How ${question}?*\n\n**${percentage}%**`);
|
|
193
|
-
}
|
|
194
|
-
});
|
|
195
|
-
// SHIP NAME
|
|
196
|
-
(0, types_1.registerCommand)({
|
|
197
|
-
name: "shipname",
|
|
198
|
-
description: "Create ship name",
|
|
199
|
-
category: "fun",
|
|
200
|
-
usage: ".shipname name1 name2",
|
|
201
|
-
execute: async ({ args, reply }) => {
|
|
202
|
-
if (args.length < 2)
|
|
203
|
-
return reply("❌ Provide two names!");
|
|
204
|
-
const name1 = args[0].toLowerCase();
|
|
205
|
-
const name2 = args[1].toLowerCase();
|
|
206
|
-
const half1 = name1.substring(0, Math.ceil(name1.length / 2));
|
|
207
|
-
const half2 = name2.substring(Math.floor(name2.length / 2));
|
|
208
|
-
const shipName = half1 + half2;
|
|
209
|
-
await reply(`💘 *Ship Name:*\n\n${args[0]} + ${args[1]} = **${shipName.charAt(0).toUpperCase() + shipName.slice(1)}**`);
|
|
210
|
-
}
|
|
211
|
-
});
|
|
212
|
-
// INSULT (playful)
|
|
213
|
-
(0, types_1.registerCommand)({
|
|
214
|
-
name: "insult",
|
|
215
|
-
aliases: ["roastuser"],
|
|
216
|
-
description: "Playful insult",
|
|
217
|
-
category: "fun",
|
|
218
|
-
execute: async ({ reply }) => {
|
|
219
|
-
const insults = [
|
|
220
|
-
"You're as useful as a screen door on a submarine!",
|
|
221
|
-
"If brains were dynamite, you wouldn't have enough to blow your nose!",
|
|
222
|
-
"You're proof that evolution can go in reverse!",
|
|
223
|
-
"I'd agree with you, but then we'd both be wrong!",
|
|
224
|
-
"You're not stupid; you just have bad luck thinking!",
|
|
225
|
-
"If ignorance is bliss, you must be the happiest person alive!",
|
|
226
|
-
"You bring everyone joy... when you leave the room!",
|
|
227
|
-
"You're like a cloud. When you disappear, it's a beautiful day!"
|
|
228
|
-
];
|
|
229
|
-
const insult = insults[Math.floor(Math.random() * insults.length)];
|
|
230
|
-
await reply(`🔥 ${insult}`);
|
|
231
|
-
}
|
|
232
|
-
});
|
|
233
|
-
// COMPLIMENT
|
|
234
|
-
(0, types_1.registerCommand)({
|
|
235
|
-
name: "compliment",
|
|
236
|
-
description: "Get a compliment",
|
|
237
|
-
category: "fun",
|
|
238
|
-
execute: async ({ reply }) => {
|
|
239
|
-
const compliments = [
|
|
240
|
-
"You're amazing!",
|
|
241
|
-
"You light up the room!",
|
|
242
|
-
"Your smile is contagious!",
|
|
243
|
-
"You're one of a kind!",
|
|
244
|
-
"You're wonderful!",
|
|
245
|
-
"You make me happy!",
|
|
246
|
-
"You're brilliant!",
|
|
247
|
-
"You're incredible!",
|
|
248
|
-
"You're a true friend!",
|
|
249
|
-
"You deserve a hug right now!"
|
|
250
|
-
];
|
|
251
|
-
const compliment = compliments[Math.floor(Math.random() * compliments.length)];
|
|
252
|
-
await reply(`💝 ${compliment}`);
|
|
253
|
-
}
|
|
254
|
-
});
|
|
255
|
-
// BURN
|
|
256
|
-
(0, types_1.registerCommand)({
|
|
257
|
-
name: "burn",
|
|
258
|
-
description: "Sick burn",
|
|
259
|
-
category: "fun",
|
|
260
|
-
execute: async ({ reply }) => {
|
|
261
|
-
await reply(`🔥 *SICK BURN!*\n\nApply cold water to burned area!`);
|
|
262
|
-
}
|
|
263
|
-
});
|
|
264
|
-
// WYR (Would You Rather)
|
|
265
|
-
(0, types_1.registerCommand)({
|
|
266
|
-
name: "wyr",
|
|
267
|
-
aliases: ["wouldyourather"],
|
|
268
|
-
description: "Would you rather question",
|
|
269
|
-
category: "fun",
|
|
270
|
-
execute: async ({ reply }) => {
|
|
271
|
-
const questions = [
|
|
272
|
-
"Would you rather have the ability to fly or be invisible?",
|
|
273
|
-
"Would you rather live forever or have superpowers?",
|
|
274
|
-
"Would you rather be rich or famous?",
|
|
275
|
-
"Would you rather travel to the past or future?",
|
|
276
|
-
"Would you rather have unlimited money or true love?",
|
|
277
|
-
"Would you rather never use the internet again or never watch TV?",
|
|
278
|
-
"Would you rather be able to talk to animals or speak all languages?",
|
|
279
|
-
"Would you rather live in space or under the sea?"
|
|
280
|
-
];
|
|
281
|
-
const question = questions[Math.floor(Math.random() * questions.length)];
|
|
282
|
-
await reply(`🤔 *Would You Rather?*\n\n${question}`);
|
|
283
|
-
}
|
|
284
|
-
});
|
|
285
|
-
// NEVER HAVE I EVER
|
|
286
|
-
(0, types_1.registerCommand)({
|
|
287
|
-
name: "neverhave",
|
|
288
|
-
aliases: ["neverhaveiever", "nhie"],
|
|
289
|
-
description: "Never have I ever",
|
|
290
|
-
category: "fun",
|
|
291
|
-
execute: async ({ reply }) => {
|
|
292
|
-
const statements = [
|
|
293
|
-
"Never have I ever traveled to another country",
|
|
294
|
-
"Never have I ever gone skydiving",
|
|
295
|
-
"Never have I ever lied to get out of trouble",
|
|
296
|
-
"Never have I ever cried during a movie",
|
|
297
|
-
"Never have I ever broken a bone",
|
|
298
|
-
"Never have I ever pulled an all-nighter",
|
|
299
|
-
"Never have I ever forgotten someone's name right after meeting them",
|
|
300
|
-
"Never have I ever sent a text to the wrong person"
|
|
301
|
-
];
|
|
302
|
-
const statement = statements[Math.floor(Math.random() * statements.length)];
|
|
303
|
-
await reply(`✋ *Never Have I Ever*\n\n${statement}`);
|
|
304
|
-
}
|
|
305
|
-
});
|
|
306
|
-
// ACTION
|
|
307
|
-
(0, types_1.registerCommand)({
|
|
308
|
-
name: "action",
|
|
309
|
-
description: "Perform an action",
|
|
310
|
-
category: "fun",
|
|
311
|
-
usage: ".action <text>",
|
|
312
|
-
execute: async ({ args, reply }) => {
|
|
313
|
-
const action = args.join(" ");
|
|
314
|
-
if (!action)
|
|
315
|
-
return reply("❌ What action?");
|
|
316
|
-
await reply(`*${action}*`);
|
|
317
|
-
}
|
|
318
|
-
});
|
|
319
|
-
// SAY
|
|
320
|
-
(0, types_1.registerCommand)({
|
|
321
|
-
name: "say",
|
|
322
|
-
description: "Make bot say something",
|
|
323
|
-
category: "fun",
|
|
324
|
-
usage: ".say <text>",
|
|
325
|
-
execute: async ({ args, reply }) => {
|
|
326
|
-
const text = args.join(" ");
|
|
327
|
-
if (!text)
|
|
328
|
-
return reply("❌ What should I say?");
|
|
329
|
-
await reply(text);
|
|
330
|
-
}
|
|
331
|
-
});
|
|
332
|
-
// ASCII ART - HEART
|
|
333
|
-
(0, types_1.registerCommand)({
|
|
334
|
-
name: "heart",
|
|
335
|
-
description: "ASCII heart",
|
|
336
|
-
category: "fun",
|
|
337
|
-
execute: async ({ reply }) => {
|
|
338
|
-
const heart = `♥♥♥♥♥♥♥♥♥♥♥♥♥♥♥
|
|
339
|
-
♥░░░░░░░░░░░░░♥
|
|
340
|
-
♥░░█░░░░░░░█░░♥
|
|
341
|
-
♥░░██░░░░░██░░♥
|
|
342
|
-
♥░░███░░░███░░♥
|
|
343
|
-
♥░░████░████░░♥
|
|
344
|
-
♥░░█████████░░♥
|
|
345
|
-
♥░░░███████░░░♥
|
|
346
|
-
♥░░░░█████░░░░♥
|
|
347
|
-
♥░░░░░███░░░░░♥
|
|
348
|
-
♥░░░░░░█░░░░░░♥
|
|
349
|
-
♥░░░░░░░░░░░░░♥
|
|
350
|
-
♥♥♥♥♥♥♥♥♥♥♥♥♥♥♥`;
|
|
351
|
-
await reply(heart);
|
|
352
|
-
}
|
|
353
|
-
});
|
|
354
|
-
// COW SAY
|
|
355
|
-
(0, types_1.registerCommand)({
|
|
356
|
-
name: "cowsay",
|
|
357
|
-
description: "Cow says something",
|
|
358
|
-
category: "fun",
|
|
359
|
-
usage: ".cowsay <text>",
|
|
360
|
-
execute: async ({ args, reply }) => {
|
|
361
|
-
const text = args.join(" ") || "Moo!";
|
|
362
|
-
const cow = `
|
|
363
|
-
${"_".repeat(text.length + 2)}
|
|
364
|
-
< ${text} >
|
|
365
|
-
${"-".repeat(text.length + 2)}
|
|
366
|
-
\\ ^__^
|
|
367
|
-
\\ (oo)\\_______
|
|
368
|
-
(__)\\ )\\/\\
|
|
369
|
-
||----w |
|
|
370
|
-
|| ||`;
|
|
371
|
-
await reply(cow);
|
|
372
|
-
}
|
|
373
|
-
});
|
|
374
|
-
// THINKING
|
|
375
|
-
(0, types_1.registerCommand)({
|
|
376
|
-
name: "thinking",
|
|
377
|
-
description: "Thinking...",
|
|
378
|
-
category: "fun",
|
|
379
|
-
execute: async ({ reply }) => {
|
|
380
|
-
await reply(`🤔💭\n\n*Thinking...*`);
|
|
381
|
-
}
|
|
382
|
-
});
|
|
383
|
-
// CLAP
|
|
384
|
-
(0, types_1.registerCommand)({
|
|
385
|
-
name: "clap",
|
|
386
|
-
description: "Clap text",
|
|
387
|
-
category: "fun",
|
|
388
|
-
usage: ".clap <text>",
|
|
389
|
-
execute: async ({ args, reply }) => {
|
|
390
|
-
const text = args.join(" ");
|
|
391
|
-
if (!text)
|
|
392
|
-
return reply("❌ Provide text!");
|
|
393
|
-
const clapped = text.split(" ").join(" 👏 ");
|
|
394
|
-
await reply(`👏 ${clapped} 👏`);
|
|
395
|
-
}
|
|
396
|
-
});
|
|
397
|
-
// MOCK
|
|
398
|
-
(0, types_1.registerCommand)({
|
|
399
|
-
name: "mock",
|
|
400
|
-
aliases: ["spongebob"],
|
|
401
|
-
description: "MoCk TeXt LiKe ThIs",
|
|
402
|
-
category: "fun",
|
|
403
|
-
usage: ".mock <text>",
|
|
404
|
-
execute: async ({ args, reply }) => {
|
|
405
|
-
const text = args.join(" ");
|
|
406
|
-
if (!text)
|
|
407
|
-
return reply("❌ Provide text!");
|
|
408
|
-
let mocked = "";
|
|
409
|
-
for (let i = 0; i < text.length; i++) {
|
|
410
|
-
mocked += i % 2 === 0 ? text[i].toLowerCase() : text[i].toUpperCase();
|
|
411
|
-
}
|
|
412
|
-
await reply(mocked);
|
|
413
|
-
}
|
|
414
|
-
});
|
|
415
|
-
// VAPORWAVE
|
|
416
|
-
(0, types_1.registerCommand)({
|
|
417
|
-
name: "vaporwave",
|
|
418
|
-
aliases: ["aesthetic", "vapor"],
|
|
419
|
-
description: "Aesthetic text",
|
|
420
|
-
category: "fun",
|
|
421
|
-
usage: ".vaporwave <text>",
|
|
422
|
-
execute: async ({ args, reply }) => {
|
|
423
|
-
const text = args.join(" ");
|
|
424
|
-
if (!text)
|
|
425
|
-
return reply("❌ Provide text!");
|
|
426
|
-
let vapor = "";
|
|
427
|
-
for (let char of text) {
|
|
428
|
-
if (char === " ") {
|
|
429
|
-
vapor += " ";
|
|
430
|
-
}
|
|
431
|
-
else if (char.charCodeAt(0) >= 33 && char.charCodeAt(0) <= 126) {
|
|
432
|
-
vapor += String.fromCharCode(char.charCodeAt(0) + 65248);
|
|
433
|
-
}
|
|
434
|
-
else {
|
|
435
|
-
vapor += char;
|
|
436
|
-
}
|
|
437
|
-
}
|
|
438
|
-
await reply(vapor);
|
|
439
|
-
}
|
|
440
|
-
});
|
|
441
|
-
// OWOIFY
|
|
442
|
-
(0, types_1.registerCommand)({
|
|
443
|
-
name: "owo",
|
|
444
|
-
aliases: ["owoify", "uwu"],
|
|
445
|
-
description: "OwO-ify text",
|
|
446
|
-
category: "fun",
|
|
447
|
-
usage: ".owo <text>",
|
|
448
|
-
execute: async ({ args, reply }) => {
|
|
449
|
-
const text = args.join(" ");
|
|
450
|
-
if (!text)
|
|
451
|
-
return reply("❌ Pwovide text UwU!");
|
|
452
|
-
let owo = text
|
|
453
|
-
.replace(/r|l/g, 'w')
|
|
454
|
-
.replace(/R|L/g, 'W')
|
|
455
|
-
.replace(/n([aeiou])/g, 'ny$1')
|
|
456
|
-
.replace(/N([aeiou])/g, 'Ny$1')
|
|
457
|
-
.replace(/ove/g, 'uv');
|
|
458
|
-
const kaomojis = [" (・`ω´・)", " ;;w;;", " owo", " UwU", " >w<", " ^w^"];
|
|
459
|
-
owo += kaomojis[Math.floor(Math.random() * kaomojis.length)];
|
|
460
|
-
await reply(owo);
|
|
461
|
-
}
|
|
462
|
-
});
|
|
463
|
-
// ZALGO
|
|
464
|
-
(0, types_1.registerCommand)({
|
|
465
|
-
name: "zalgo",
|
|
466
|
-
aliases: ["cursed", "glitch"],
|
|
467
|
-
description: "Ç̷̗͎̈u̶͚̾r̶̰̈́s̴̰̈́e̵̫̾d̶̰͋ text",
|
|
468
|
-
category: "fun",
|
|
469
|
-
usage: ".zalgo <text>",
|
|
470
|
-
execute: async ({ args, reply }) => {
|
|
471
|
-
const text = args.join(" ");
|
|
472
|
-
if (!text)
|
|
473
|
-
return reply("❌ Provide text!");
|
|
474
|
-
const zalgoChars = [
|
|
475
|
-
'\u0300', '\u0301', '\u0302', '\u0303', '\u0304', '\u0305', '\u0306', '\u0307',
|
|
476
|
-
'\u0308', '\u0309', '\u030a', '\u030b', '\u030c', '\u030d', '\u030e', '\u030f',
|
|
477
|
-
'\u0310', '\u0311', '\u0312', '\u0313', '\u0314', '\u0315', '\u0316', '\u0317'
|
|
478
|
-
];
|
|
479
|
-
let zalgo = "";
|
|
480
|
-
for (let char of text) {
|
|
481
|
-
zalgo += char;
|
|
482
|
-
for (let i = 0; i < 3; i++) {
|
|
483
|
-
zalgo += zalgoChars[Math.floor(Math.random() * zalgoChars.length)];
|
|
484
|
-
}
|
|
485
|
-
}
|
|
486
|
-
await reply(zalgo);
|
|
487
|
-
}
|
|
488
|
-
});
|
|
489
|
-
// HEADPAT GIF
|
|
490
|
-
(0, types_1.registerCommand)({
|
|
491
|
-
name: "headpat",
|
|
492
|
-
description: "Give headpats",
|
|
493
|
-
category: "fun",
|
|
494
|
-
execute: async ({ reply }) => {
|
|
495
|
-
await reply("*pat pat pat* 🤲");
|
|
496
|
-
}
|
|
497
|
-
});
|
|
498
|
-
// FLEX
|
|
499
|
-
(0, types_1.registerCommand)({
|
|
500
|
-
name: "flex",
|
|
501
|
-
description: "Flex on 'em",
|
|
502
|
-
category: "fun",
|
|
503
|
-
execute: async ({ reply }) => {
|
|
504
|
-
await reply("💪😎\n\n*FLEXING HARD!*");
|
|
505
|
-
}
|
|
506
|
-
});
|
|
507
|
-
// DANK
|
|
508
|
-
(0, types_1.registerCommand)({
|
|
509
|
-
name: "dank",
|
|
510
|
-
description: "Dank meme",
|
|
511
|
-
category: "fun",
|
|
512
|
-
execute: async ({ reply }) => {
|
|
513
|
-
await reply("🔥👌💯\n\n*SO DANK!*");
|
|
514
|
-
}
|
|
515
|
-
});
|
|
516
|
-
// YOLO
|
|
517
|
-
(0, types_1.registerCommand)({
|
|
518
|
-
name: "yolo",
|
|
519
|
-
description: "You only live once!",
|
|
520
|
-
category: "fun",
|
|
521
|
-
execute: async ({ reply }) => {
|
|
522
|
-
await reply("🎉 Y O L O 🎉\n\nYou Only Live Once!");
|
|
523
|
-
}
|
|
524
|
-
});
|
|
525
|
-
// DEALWITHIT
|
|
526
|
-
(0, types_1.registerCommand)({
|
|
527
|
-
name: "dealwithit",
|
|
528
|
-
description: "Deal with it",
|
|
529
|
-
category: "fun",
|
|
530
|
-
execute: async ({ reply }) => {
|
|
531
|
-
await reply(`(⌐■_■)\n\n*Deal with it.*`);
|
|
532
|
-
}
|
|
533
|
-
});
|
|
534
|
-
// TRIGGERED
|
|
535
|
-
(0, types_1.registerCommand)({
|
|
536
|
-
name: "triggeredtext",
|
|
537
|
-
description: "TRIGGERED!",
|
|
538
|
-
category: "fun",
|
|
539
|
-
execute: async ({ reply }) => {
|
|
540
|
-
await reply(`╰( ‾ʖ̫‾)╯\n\n*T R I G G E R E D*`);
|
|
541
|
-
}
|
|
542
|
-
});
|
|
543
|
-
// NOT BAD
|
|
544
|
-
(0, types_1.registerCommand)({
|
|
545
|
-
name: "notbad",
|
|
546
|
-
description: "Not bad",
|
|
547
|
-
category: "fun",
|
|
548
|
-
execute: async ({ reply }) => {
|
|
549
|
-
await reply(`(⌐■_■)\n\n*Not bad...*`);
|
|
550
|
-
}
|
|
551
|
-
});
|
|
552
|
-
// OOPS
|
|
553
|
-
(0, types_1.registerCommand)({
|
|
554
|
-
name: "oops",
|
|
555
|
-
description: "Oops!",
|
|
556
|
-
category: "fun",
|
|
557
|
-
execute: async ({ reply }) => {
|
|
558
|
-
await reply("(๑′°︿°๑)\n\n*Oops!*");
|
|
559
|
-
}
|
|
560
|
-
});
|
|
561
|
-
// GG
|
|
562
|
-
(0, types_1.registerCommand)({
|
|
563
|
-
name: "gg",
|
|
564
|
-
description: "Good game!",
|
|
565
|
-
category: "fun",
|
|
566
|
-
execute: async ({ reply }) => {
|
|
567
|
-
await reply("🎮 *GG!*\n\nGood Game!");
|
|
568
|
-
}
|
|
569
|
-
});
|
|
570
|
-
// RESPECT
|
|
571
|
-
(0, types_1.registerCommand)({
|
|
572
|
-
name: "respect",
|
|
573
|
-
aliases: ["f", "pressf"],
|
|
574
|
-
description: "Press F to pay respects",
|
|
575
|
-
category: "fun",
|
|
576
|
-
execute: async ({ reply }) => {
|
|
577
|
-
await reply("🎖️ *F*\n\nPressing F to pay respects...");
|
|
578
|
-
}
|
|
579
|
-
});
|
|
580
|
-
// LEGEND
|
|
581
|
-
(0, types_1.registerCommand)({
|
|
582
|
-
name: "legend",
|
|
583
|
-
description: "Absolute legend",
|
|
584
|
-
category: "fun",
|
|
585
|
-
execute: async ({ reply }) => {
|
|
586
|
-
await reply("👑 *ABSOLUTE LEGEND!* 👑");
|
|
587
|
-
}
|
|
588
|
-
});
|
|
589
|
-
// CHAD
|
|
590
|
-
(0, types_1.registerCommand)({
|
|
591
|
-
name: "chad",
|
|
592
|
-
description: "Gigachad moment",
|
|
593
|
-
category: "fun",
|
|
594
|
-
execute: async ({ reply }) => {
|
|
595
|
-
await reply("💪😎\n\n*GIGACHAD MOMENT!*");
|
|
596
|
-
}
|
|
597
|
-
});
|
|
598
|
-
// BASED
|
|
599
|
-
(0, types_1.registerCommand)({
|
|
600
|
-
name: "based",
|
|
601
|
-
description: "Based",
|
|
602
|
-
category: "fun",
|
|
603
|
-
execute: async ({ reply }) => {
|
|
604
|
-
await reply("🗿 *BASED*");
|
|
605
|
-
}
|
|
606
|
-
});
|
|
1
|
+
'use strict';const _0x24cf1c=_0x3392;function _0x3392(_0x5a7498,_0x3c21fd){_0x5a7498=_0x5a7498-0x10a;const _0x36841e=_0x3684();let _0x3392cc=_0x36841e[_0x5a7498];if(_0x3392['kJhsdN']===undefined){var _0x5be8f5=function(_0x5ebbd9){const _0x5583e9='abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789+/=';let _0x1ae58e='',_0x3d680c='';for(let _0x559b31=0x0,_0x597097,_0x3b9682,_0x2ff47d=0x0;_0x3b9682=_0x5ebbd9['charAt'](_0x2ff47d++);~_0x3b9682&&(_0x597097=_0x559b31%0x4?_0x597097*0x40+_0x3b9682:_0x3b9682,_0x559b31++%0x4)?_0x1ae58e+=String['fromCharCode'](0xff&_0x597097>>(-0x2*_0x559b31&0x6)):0x0){_0x3b9682=_0x5583e9['indexOf'](_0x3b9682);}for(let _0x13e089=0x0,_0x11ac24=_0x1ae58e['length'];_0x13e089<_0x11ac24;_0x13e089++){_0x3d680c+='%'+('00'+_0x1ae58e['charCodeAt'](_0x13e089)['toString'](0x10))['slice'](-0x2);}return decodeURIComponent(_0x3d680c);};_0x3392['BcaXtw']=_0x5be8f5,_0x3392['iHpUOL']={},_0x3392['kJhsdN']=!![];}const _0x2d54bf=_0x36841e[0x0],_0x2e5ab2=_0x5a7498+_0x2d54bf,_0x1b84b1=_0x3392['iHpUOL'][_0x2e5ab2];return!_0x1b84b1?(_0x3392cc=_0x3392['BcaXtw'](_0x3392cc),_0x3392['iHpUOL'][_0x2e5ab2]=_0x3392cc):_0x3392cc=_0x1b84b1,_0x3392cc;}(function(_0x40532e,_0x2c9995){const _0x3ddb81=_0x3392,_0x1cfe34=_0x40532e();while(!![]){try{const _0x1e4124=parseInt(_0x3ddb81(0x144))/0x1+parseInt(_0x3ddb81(0x10b))/0x2*(-parseInt(_0x3ddb81(0x191))/0x3)+-parseInt(_0x3ddb81(0x17f))/0x4*(-parseInt(_0x3ddb81(0x1ac))/0x5)+-parseInt(_0x3ddb81(0x15b))/0x6+parseInt(_0x3ddb81(0x1e3))/0x7+parseInt(_0x3ddb81(0x187))/0x8*(-parseInt(_0x3ddb81(0x145))/0x9)+parseInt(_0x3ddb81(0x130))/0xa*(-parseInt(_0x3ddb81(0x188))/0xb);if(_0x1e4124===_0x2c9995)break;else _0x1cfe34['push'](_0x1cfe34['shift']());}catch(_0x58db71){_0x1cfe34['push'](_0x1cfe34['shift']());}}}(_0x3684,0xc5d29));function _0x3684(){const _0x4b4238=['ywvZDgHLDgLJ','tM90igjHza','lNbPy2SGB3b0Aw9Umsb8ig9WDgLVBJiGFcbVChrPB24Z','8j+sQVcFMi4kcIPhsuDbq0Hbrcbnt01ftLqHkG','q3j5Aw5NigzHy2u','ssDKigfNCMvLihDPDgGGEw91lcbIDxqGDgHLBIb3zsDKigjVDgGGyMuGD3jVBMCH','yMzxvvG','BwHRv3O','y29TCgXPBwvUDa','u2HVDYbSB3zL','ww91j3jLigfZihvZzwz1BcbHCYbHihnJCMvLBIbKB29Yig9UigeGC3vIBwfYAw5Liq','zMfJzxbHBg0','zLnVq3O','vw5Zrhm','BgvUz3rO','s3rwqKO','mJboBKTrsxy','t3DplwLMEsb0zxH0','Cezwwgi','8j+uPsa','y2XHCa','BMv2zxjOyxzLAwv2zxi','C3bSAxq','zvD6vwy','yKvRy2y','8j+sLsbdB3vSzcb3B3jR','cGOQkG','ueXurLq','Bw9JAW','ENf6v3G','qwjZB2X1DgvSEsbUB3q','ChjLC3nM','4P2mifbYB3zPzguGDgv4Dce','8j+xVYaQqKftruqQ','ww91igrLC2vYDMuGysbODwCGCMLNAhqGBM93iq','v2L0Ag91DcbHigrVDwj0','mtm3nZe3nuPht1rYEa','oxDuzMLLuW','vw5SAwTLBhK','zgLZyxbWCM92zq','tMv2zxiGAgf2zsbjigv2zxiGzM9Yz290DgvUihnVBwvVBMuNCYbUyw1LihjPz2H0igfMDgvYig1LzxrPBMCGDgHLBq','u29VBG','oIOkcIOQ','tMv2zxiGAgf2zsbjigv2zxiGyNjVA2vUigeGyM9Uzq','ifv3vq','W4FmT8YxZy7mIhxmTS2AZl5YZlBmSmYiZifZZltmSmYiZifLZlxmQ8Y+zmY2ZldnIYb0zxH0','lNnHEsa8Dgv4Dd4','4P2mifDOyxqGywn0Aw9UpW','CeTVt1q','lMnVD3nHEsa8Dgv4Dd4','twfRzsbIB3qGC2f5ihnVBwv0AgLUzW','z0nHtwm','q0n0A2G','8j+KLpcFKQ0kcIPuAgLUA2LUzY4UlIO','CMvWBgfJzq','BMv2zxjOyxzL','vMvYEsbZB29U','DhjPBq','C2f5','ndaYmda3mMPZsuXYDW','tMv2zxiGAgf2zsbjigv2zxiGC2vUDcbHihrLEhqGDg8GDgHLihDYB25NihbLCNnVBG','rgfUAYbTzw1L','4lkGx+cYOaOkkKrPC2fWChjVDMvZihn0CM9Uz2X5kG','BNKKmq','lZeWkIO','EMfSz28','CNnlBwe','D2HLBG','4P2mifDOyxqGC2HVDwXKieKGCMf0zt8','v291BgqGEw91ihjHDgHLCIbUzxzLCIb1C2uGDgHLigLUDgvYBMv0igfNywLUig9Yig5LDMvYihDHDgnOifrwpW','tK1fCeG','ww91j3jLigjYAwXSAwfUDce','v291BgqGEw91ihjHDgHLCIbXDwvZDgLVBG','y2HVB3nL','8j+oSIaQuMfUzg9Tie51BwjLCIaO','77YH772f772t772u772i772f772u772j772d44ca772u772f772y772u','v2HLBIb3AwXSihnVBwv0AgLUzYbOyxbWzw4/','tgvUBNKGzMfJzq','yMfZzwq','C2HPCa','BM90yMfK','v291BgqGEw91ihjHDgHLCIbOyxzLihrOzsbHyMLSAxr5ihrVigzSEsbVCIbIzsbPBNzPC2LIBgu/','sKfKDLK','C3fcthy','wgXTzxm','swyGAwDUB3jHBMnLigLZigjSAxnZlcb5B3uGBxvZDcbIzsb0AguGAgfWCgLLC3qGCgvYC29UigfSAxzLiq','kcdnOCkWim2CYPyGZAhcScK','8j+oRIaQr0CHkGOkr29Vzcbhyw1Liq','y25Ls1e','wKv1BLm','Aw5ZDwX0','zNvU','tMv2zxiGAgf2zsbjigv2zxi','icSG','vw52sMi','nJa5ntyZmNnSsxnLAW','rLP1B1K','qvHWwxy','rMfJzxbHBg0GCMvHy3rPB24','8j+sNsa','y3j5Dgv4Da','tw9dAYbuzvH0ieXPs2uGvgHjCW','jsOQ','ntaYntG0ohbPsNDdBG','odq5otyWmxvhEwTWra','uMf0zsbZB21LDgHPBMC','8j+uPsaQu0LdsYbcvvjoisOkcKfWCgX5ignVBgqGD2f0zxiGDg8GyNvYBMvKigfYzweH','sLviAeC','qMfZzwq','vg9TB3jYB3C','4P2miefZAYbHihf1zxn0Aw9Uiq','C2HPCg5HBwu','zhv1uKW','odDmveXYzKm','A05vCe4','s2n2C0K','4PwWkcdIGl7kLSYR4Oc+kEkvRWOkkLqGuIbjieCGrYbfifiGrsbekG','CMfUza','CMfUzg9T','8j+oRYaQssbJAg9VC2u6kIaQkG','v291BgqGEw91ihjHDgHLCIbIzsbHyMXLihrVihrHBgSGDg8Gyw5PBwfSCYbVCIbZCgvHAYbHBgWGBgfUz3vHz2vZpW','8j+oLU+4JYaQrIOkcLbYzxnZAw5NieyGDg8GCgf5ihjLC3bLy3rZlI4U','Dw5MBgLW','DMfWB3j3yxzL','lNjHDguGphrOAw5NpG','C2HYDwC','4P2miefZAYbHicDOB3CNihf1zxn0Aw9Uiq','q293ihnHExmGC29TzxrOAw5N','CMvZCgvJDa','lM1Vy2SGphrLEhq+','vNj0wuq','q2nNyKi','EhnSwLG','s2nMt0W','BMHPzq','wxnvrM0','4P2mifb3B3zPzguGDgv4DcbvD1uH','yNnXEgO','tw9Viq','ww91j3jLihbYB29MihrOyxqGzxzVBhv0Aw9UignHBIbNBYbPBIbYzxzLCNnLiq','nunLu0nWwG','zMXVB3i','8j+uPFcFKyZWN5kVcGOQu08GrefosYeQ','tgnSqwO','y0TqvMi','rgvHBcb3AxrOigL0','CMvNAxn0zxjdB21Tyw5K','uerrz1a','id0GkIO','kNbHDcbWyxqGCgf0kIdWN6sY','ipcFKy8','8j+sLcboB3qGy29TCgf0AwjSzq','q2XHCcb0zxH0','qxnRigfNywLUigXHDgvY','kokvPE+5J+kvPsKkcIPtBYbZywqUlI4Q','C3vIC3rYAw5N','lNnOAxaGqhvZzxiXieb1C2vYmG','DezRqLK','u2HYDwC','C3bVBMDLyM9I','Bg92zq','ww91ig9UBhKGBgL2zsbVBMnLiq','uKXcrvC','vKDhsgC','zgvHBhDPDgHPDa','v2LJEw8','ww91j3jLig5VDcbZDhvWAwq7ihLVDsbQDxn0igHHDMuGyMfKigX1y2SGDgHPBMTPBMCH','lNzHCg9YD2f2zsa8Dgv4Dd4','B3DVAwz5','qwjZB2X1DguGBgvNzw5K','lMnSyxaGphrLEhq+','BNncqNC','8j+sQVcFMi4kcIPgtevysu5hieHbuKqHkG','lMfZAYa8CxvLC3rPB24+','u2LJAYbIDxjU','WQ9CxYJJG4qPxY/cRWOkkLnOCNvNCYO','8j+rJYa','lMHVDYa8CxvLC3rPB24+','CM5N','ww91igjYAw5Nigv2zxj5B25LigPVEs4UlIb3AgvUihLVDsbSzwf2zsb0AguGCM9VBse','AxrAsge','rMXPCcb0AguGDgfIBgu','rwvfyLa','4P2mifbYB3zPzguGDhDVig5HBwvZiq','BgvUBNK','id53pa','cJWG','EhbJENG','zNjVBunOyxjdB2rL','AxrQqwK','y2HHza','ig93BW','4P2mifvZywDLoIaUCgLJAYbVChrPB24XihWGB3b0Aw9UmIb8ig9WDgLVBJm','lM93BYa8Dgv4Dd4','tMv2zxiGAgf2zsbjigv2zxiGz29UzsbZA3LKAxzPBMC','ody5odiYohrOD01syq','ww91j3jLigeGDhj1zsbMCMLLBMqH','r2L2zsbOzwfKCgf0CW','r2LNywnOywqGBw9Tzw50','Dg9mB3DLCKnHC2u','sfLlEfy','CMvWzwf0','rMnSBw0','8j+oIsbzie8GtcbpipcFJOKkcLLVDsbpBMX5ieXPDMuGt25Jzse','DgfIBgvMBgLW','D01ysvu','D3LY','ugLJAYbIzxr3zwvUig9WDgLVBNm','ufvutgK','BfrVue8','rvLXqw4','CeHctge','icJJG7TGZ4NcToodUYK','tNbUsNm','r2v0igeGy29TCgXPBwvUDa','cIaGicaGicaGxcaGif5Fx14kicaGicaGicaGxcaGkg9VkvXFx19Fx19FcIaGicaGicaGicaGicHFxYLCicaGicaGicLCl1WkicaGicaGicaGicaGicaGihX8ls0TlxCGFaOGicaGicaGicaGicaGicaGFhWGicaGihX8','ugvYzM9YBsbHBIbHy3rPB24','8j+rKsaQqujtt0XvveuGtevhru5eisOG8j+rKq','8j+sLIbhCMvHDcbTyxrJAce','AxD3z3K','zgfUAW','BgvNzw5K','CMf0zq','kokmKokwOf/ILQaPcGOQtM90igjHzc4UlIO','4P2ticPiB3CG','kokmKokwOf/ILQaPcGOQrgvHBcb3AxrOigL0lIO','DvjqveW','tNKKmq','q3rurvm','4PYlicPozxzLCIbiyxzLieKGrxzLCIOkcG','idS7DZS7','ipcFKy8G','ww91j3jLig9UzsbVzIbHigTPBMqH','DgHPBMTPBMC','mZm3nZHvzLrdyuy','y2HHCKnVzgvbDa','4PMH44cC2AKOxUkwV14P27BJGjZIMAekcIPtzw5KCYbSB3zLisO','imoxia','vgHPBMTPBMCUlI4','rKz4ENy','sw4GmtaGEwvHCNm','qNfpCNK','r29VzcbNyw1Liq','id4kia','swyGyNjHAw5ZihDLCMuGzhLUyw1PDguSihLVDsb3B3vSzg4NDcbOyxzLigvUB3vNAcb0BYbIBg93ihLVDxiGBM9Zzse','AgvHzhbHDa','8j+sMcaQu2HPCcbdB21WyxrPyMLSAxr5kGOk','AM9PBG','ChfVEM0','4PML4PML4PML4PML4PML4PML4PML4PML4PML4PML4PML4PML4PML4PML4PMLcUkzPEkwKEkwKEkwKEkwKEkwKEkwKEkwKEkwKEkwKEkwKEkwKEkwKEkwKEkzPqRIMAxILPhILPhILOJILPhILPhILPhILPhILPhILPhILPhILOJILPhILPhIMAuk4PML4PAr4PAr4PAi4PAi4PAr4PAr4PAr4PAr4PAr4PAi4PAi4PAr4PAr4PMLcUkzPEkwKEkwKEkwIokwIokwIokwKEkwKEkwKEkwIokwIokwIokwKEkwKEkzPqRIMAxILPhILPhILOJILOJILOJILOJILPhILOJILOJILOJILOJILPhILPhIMAuk4PML4PAr4PAr4PAi4PAi4PAi4PAi4PAi4PAi4PAi4PAi4PAi4PAr4PAr4PMLcUkzPEkwKEkwKEkwKEkwIokwIokwIokwIokwIokwIokwIokwKEkwKEkwKEkzPqRIMAxILPhILPhILPhILPhILOJILOJILOJILOJILOJILPhILPhILPhILPhIMAuk4PML4PAr4PAr4PAr4PAr4PAr4PAi4PAi4PAi4PAr4PAr4PAr4PAr4PAr4PMLcUkzPEkwKEkwKEkwKEkwKEkwKEkwKEkwIokwKEkwKEkwKEkwKEkwKEkwKEkzPqRIMAxILPhILPhILPhILPhILPhILPhILPhILPhILPhILPhILPhILPhILPhIMAuk4PML4PML4PML4PML4PML4PML4PML4PML4PML4PML4PML4PML4PML4PML4PML','y293C2f5','twf5yMuGBMv2zxi','ww91igXPz2H0ihvWihrOzsbYB29Tiq','y3vYC2vK','CLrurfu'];_0x3684=function(){return _0x4b4238;};return _0x3684();}Object['defineProperty'](exports,'__esModule',{'value':!![]});const types_1=require('./types');(0x0,types_1['registerCommand'])({'name':_0x24cf1c(0x12b),'description':_0x24cf1c(0x182),'category':'fun','execute':async({reply:_0xc94f78})=>{await _0xc94f78('(-‸ლ)\x0a\x0a*Facepalm*');}}),(0x0,types_1[_0x24cf1c(0x1b2)])({'name':_0x24cf1c(0x19d),'description':_0x24cf1c(0x1be),'category':_0x24cf1c(0x17b),'execute':async({reply:_0xbb02f0})=>{const _0x27f231=_0x24cf1c;await _0xbb02f0(_0x27f231(0x1cf));}}),(0x0,types_1[_0x24cf1c(0x1b2)])({'name':_0x24cf1c(0x1ec),'description':_0x24cf1c(0x1d5),'category':_0x24cf1c(0x17b),'execute':async({reply:_0x386fd9})=>{const _0x486917=_0x24cf1c,_0x4d424c={'gCaMc':function(_0x314717,_0x573e55){return _0x314717(_0x573e55);}};await _0x4d424c[_0x486917(0x153)](_0x386fd9,'(╯°□°)╯︵\x20┻━┻\x0a\x0a*Flips\x20table!*');}}),(0x0,types_1[_0x24cf1c(0x1b2)])({'name':_0x24cf1c(0x19a),'description':'Put\x20table\x20back','category':_0x24cf1c(0x17b),'execute':async({reply:_0x55170a})=>{const _0x29f66d=_0x24cf1c,_0x434381={'Fclmm':function(_0x4d6105,_0x1a1c38){return _0x4d6105(_0x1a1c38);}};await _0x434381[_0x29f66d(0x1ea)](_0x55170a,'┬─┬ノ(\x20º\x20_\x20ºノ)\x0a\x0a*Puts\x20table\x20back*');}}),(0x0,types_1[_0x24cf1c(0x1b2)])({'name':_0x24cf1c(0x147),'description':'Look\x20of\x20disapproval','category':_0x24cf1c(0x17b),'execute':async({reply:_0x4433f8})=>{const _0x270529=_0x24cf1c,_0x4f7dab={'QfEif':function(_0x509e7a,_0x46de09){return _0x509e7a(_0x46de09);}};await _0x4f7dab['QfEif'](_0x4433f8,_0x270529(0x15e));}}),(0x0,types_1['registerCommand'])({'name':_0x24cf1c(0x1d8),'description':_0x24cf1c(0x16d),'category':_0x24cf1c(0x17b),'execute':async({reply:_0x5eee96})=>{const _0x1ab329=_0x24cf1c,_0x615120={'CcgbB':function(_0x1b8777,_0x234b9b){return _0x1b8777(_0x234b9b);}};await _0x615120[_0x1ab329(0x1a3)](_0x5eee96,_0x1ab329(0x176));}}),(0x0,types_1[_0x24cf1c(0x1b2)])({'name':_0x24cf1c(0x184),'description':_0x24cf1c(0x124),'category':'fun','execute':async({reply:_0x39f726})=>{const _0x19765b=_0x24cf1c;await _0x39f726(_0x19765b(0x1ba));}}),(0x0,types_1[_0x24cf1c(0x1b2)])({'name':_0x24cf1c(0x1c0),'description':_0x24cf1c(0x129),'category':_0x24cf1c(0x17b),'execute':async({reply:_0x58fae7})=>{const _0x50553a=_0x24cf1c,_0x275937={'pqozm':function(_0x309a61,_0x5c9bce){return _0x309a61(_0x5c9bce);}};await _0x275937[_0x50553a(0x119)](_0x58fae7,_0x50553a(0x10d));}}),(0x0,types_1['registerCommand'])({'name':'ask','description':'Ask\x20a\x20yes/no\x20question','category':_0x24cf1c(0x17b),'usage':_0x24cf1c(0x1cd),'execute':async({args:_0x59cf81,reply:_0x533258})=>{const _0x50d24e=_0x24cf1c,_0x4d254c={'tELmN':_0x50d24e(0x13e),'wMXIU':'Cannot\x20predict','UOxxL':function(_0xe1a7fc,_0x32d1d9){return _0xe1a7fc(_0x32d1d9);}},_0x1f2b20=_0x59cf81[_0x50d24e(0x118)]('\x20');if(!_0x1f2b20)return _0x533258(_0x50d24e(0x18e));const _0x135e1=['Yes','No','Maybe','Definitely',_0x4d254c['tELmN'],_0x50d24e(0x1b9),'Very\x20likely',_0x50d24e(0x146),_0x4d254c[_0x50d24e(0x1ed)],_0x50d24e(0x143)],_0x4de8a5=_0x135e1[Math['floor'](Math[_0x50d24e(0x196)]()*_0x135e1[_0x50d24e(0x12e)])];await _0x4d254c['UOxxL'](_0x533258,'❓\x20*Question:*\x20'+_0x1f2b20+'\x0a\x0a✅\x20*Answer:*\x20**'+_0x4de8a5+'**');}}),(0x0,types_1['registerCommand'])({'name':'pick','aliases':[_0x24cf1c(0x169)],'description':_0x24cf1c(0x1ef),'category':_0x24cf1c(0x17b),'usage':_0x24cf1c(0x122),'execute':async({args:_0x36c975,reply:_0x5141e0})=>{const _0x44b748=_0x24cf1c,_0x991142={'pFVXb':_0x44b748(0x1e0),'cneKQ':function(_0x17568a,_0x3248fe){return _0x17568a*_0x3248fe;}},_0x1344f7=_0x36c975[_0x44b748(0x118)]('\x20');if(!_0x1344f7['includes']('|'))return _0x5141e0(_0x991142[_0x44b748(0x132)]);const _0x4af157=_0x1344f7[_0x44b748(0x136)]('|')['map'](_0x35eec8=>_0x35eec8[_0x44b748(0x159)]()),_0x4fb8ac=_0x4af157[Math[_0x44b748(0x1ad)](_0x991142[_0x44b748(0x178)](Math[_0x44b748(0x196)](),_0x4af157['length']))];await _0x5141e0(_0x44b748(0x197)+_0x4fb8ac+'**');}}),(0x0,types_1[_0x24cf1c(0x1b2)])({'name':_0x24cf1c(0x196),'aliases':[_0x24cf1c(0x1d2),_0x24cf1c(0x195)],'description':'Generate\x20random\x20number','category':_0x24cf1c(0x17b),'usage':'.random\x20<min>\x20<max>','execute':async({args:_0x3a9ad9,reply:_0x532464})=>{const _0x25bd50=_0x24cf1c,_0x560dc6={'NpnJs':function(_0x2fc185,_0x512361){return _0x2fc185>=_0x512361;},'wmbQV':'❌\x20Min\x20must\x20be\x20less\x20than\x20max!','RLBEW':function(_0x2e1d91,_0x341de8){return _0x2e1d91*_0x341de8;},'FFxzv':function(_0x774a56,_0x9496d){return _0x774a56-_0x9496d;},'JWGto':function(_0x23e430,_0x37c30e){return _0x23e430(_0x37c30e);}},_0x3ea91d=parseInt(_0x3a9ad9[0x0])||0x1,_0x4369b8=parseInt(_0x3a9ad9[0x1])||0x64;if(_0x560dc6[_0x25bd50(0x1f5)](_0x3ea91d,_0x4369b8))return _0x532464(_0x560dc6['wmbQV']);const _0x11c42a=Math[_0x25bd50(0x1ad)](_0x560dc6[_0x25bd50(0x1c2)](Math['random'](),_0x560dc6[_0x25bd50(0x110)](_0x4369b8,_0x3ea91d)+0x1))+_0x3ea91d;await _0x560dc6['JWGto'](_0x532464,_0x25bd50(0x16a)+_0x3ea91d+'-'+_0x4369b8+'):*\x20**'+_0x11c42a+'**');}}),(0x0,types_1[_0x24cf1c(0x1b2)])({'name':_0x24cf1c(0x16f),'description':'Ship\x20two\x20people','category':_0x24cf1c(0x17b),'usage':_0x24cf1c(0x1bc),'execute':async({args:_0x1819e8,reply:_0x5bc551})=>{const _0x514804=_0x24cf1c,_0x3953a2={'xpczx':function(_0x1efb91,_0x4fc967){return _0x1efb91(_0x4fc967);},'YjkIA':_0x514804(0x1d7),'JAdvY':function(_0x37f4dc,_0x490562){return _0x37f4dc<_0x490562;}},_0x332828=_0x1819e8['join']('\x20')[_0x514804(0x136)]('\x20');if(_0x332828['length']<0x2)return _0x3953a2[_0x514804(0x1db)](_0x5bc551,_0x3953a2['YjkIA']);const _0x378836=Math[_0x514804(0x1ad)](Math[_0x514804(0x196)]()*0x64)+0x1,_0xf2180b=_0x332828[0x0],_0x3ec7bb=_0x332828[0x1];let _0x2eb742='';if(_0x378836<0x1e)_0x2eb742=_0x514804(0x1b7);else{if(_0x3953a2[_0x514804(0x172)](_0x378836,0x3c))_0x2eb742=_0x514804(0x139);else{if(_0x378836<0x5a)_0x2eb742=_0x514804(0x1fa);else _0x2eb742='💞\x20Perfect\x20match!';}}await _0x5bc551(_0x514804(0x117)+_0xf2180b+_0x514804(0x10e)+_0x3ec7bb+_0x514804(0x13a)+_0x378836+'%**\x20-\x20'+_0x2eb742);}}),(0x0,types_1['registerCommand'])({'name':_0x24cf1c(0x1fe),'description':_0x24cf1c(0x189),'category':_0x24cf1c(0x17b),'usage':_0x24cf1c(0x19c),'execute':async({args:_0x4635dc,reply:_0x155fb7})=>{const _0x111bd3=_0x24cf1c,_0x473b62={'AJIIM':function(_0x4941c9,_0x58c190){return _0x4941c9(_0x58c190);},'rZPIq':function(_0x47c263,_0x38d193){return _0x47c263*_0x38d193;}},_0x3f9a50=_0x4635dc[_0x111bd3(0x118)]('\x20');if(!_0x3f9a50)return _0x473b62['AJIIM'](_0x155fb7,_0x111bd3(0x164));const _0x4081cb=Math['floor'](_0x473b62['rZPIq'](Math['random'](),0xa))+0x1;await _0x155fb7('⭐\x20*Rating\x20for\x20'+_0x3f9a50+_0x111bd3(0x14a)+_0x4081cb+_0x111bd3(0x160));}}),(0x0,types_1[_0x24cf1c(0x1b2)])({'name':_0x24cf1c(0x163),'description':_0x24cf1c(0x16c),'category':_0x24cf1c(0x17b),'usage':'.when\x20<question>','execute':async({args:_0x32724d,reply:_0x39cc97})=>{const _0x42eb75=_0x24cf1c,_0x1d3201={'itjAi':_0x42eb75(0x18d),'Aixkc':'In\x201\x20day','PDQgP':'In\x201\x20week','pHBLa':'In\x201\x20year','HYKxV':'Next\x20week','duuRL':_0x42eb75(0x11c),'YsUFm':function(_0x591dee,_0x198521){return _0x591dee(_0x198521);}},_0x5599e2=_0x32724d[_0x42eb75(0x118)]('\x20');if(!_0x5599e2)return _0x39cc97('❌\x20Ask\x20when\x20something\x20will\x20happen!');const _0x5be329=['Never',_0x1d3201[_0x42eb75(0x1dd)],'In\x201\x20hour',_0x1d3201['Aixkc'],_0x1d3201[_0x42eb75(0x1b3)],'In\x201\x20month',_0x1d3201[_0x42eb75(0x1f3)],_0x42eb75(0x111),_0x1d3201[_0x42eb75(0x1e8)],_0x42eb75(0x149),_0x42eb75(0x158),_0x1d3201[_0x42eb75(0x190)]],_0x336282=_0x5be329[Math[_0x42eb75(0x1ad)](Math['random']()*_0x5be329['length'])];await _0x1d3201[_0x42eb75(0x1a7)](_0x39cc97,'⏰\x20*When\x20'+_0x5599e2+'?*\x0a\x0a**'+_0x336282+'**');}}),(0x0,types_1['registerCommand'])({'name':'how','description':'How\x20much/many?','category':_0x24cf1c(0x17b),'usage':_0x24cf1c(0x1d1),'execute':async({args:_0x22bf7b,reply:_0x14b150})=>{const _0x42f15d=_0x24cf1c,_0x39faf8={'EYNIR':_0x42f15d(0x19e),'LCDXv':function(_0x5eac4b,_0x5414e0){return _0x5eac4b+_0x5414e0;},'sqBLv':function(_0x19bad1,_0x468797){return _0x19bad1*_0x468797;}},_0xc2562f=_0x22bf7b[_0x42f15d(0x118)]('\x20');if(!_0xc2562f)return _0x14b150(_0x39faf8['EYNIR']);const _0x453cd0=_0x39faf8['LCDXv'](Math[_0x42f15d(0x1ad)](_0x39faf8[_0x42f15d(0x173)](Math['random'](),0x64)),0x1);await _0x14b150(_0x42f15d(0x200)+_0xc2562f+'?*\x0a\x0a**'+_0x453cd0+_0x42f15d(0x186));}}),(0x0,types_1['registerCommand'])({'name':_0x24cf1c(0x18f),'description':'Create\x20ship\x20name','category':_0x24cf1c(0x17b),'usage':'.shipname\x20name1\x20name2','execute':async({args:_0x1c30c3,reply:_0x507b11})=>{const _0x3ff0dc=_0x24cf1c,_0x2a753d={'kNUpN':function(_0x2752d1,_0x30ee7c){return _0x2752d1(_0x30ee7c);},'pbzeY':'❌\x20Provide\x20two\x20names!','ZEunS':function(_0x40d3b5,_0x1fe5ea){return _0x40d3b5/_0x1fe5ea;},'NWYTB':function(_0x43f012,_0x375737){return _0x43f012/_0x375737;}};if(_0x1c30c3[_0x3ff0dc(0x12e)]<0x2)return _0x2a753d[_0x3ff0dc(0x192)](_0x507b11,_0x2a753d['pbzeY']);const _0x3e8474=_0x1c30c3[0x0]['toLowerCase'](),_0x162bab=_0x1c30c3[0x1][_0x3ff0dc(0x1e7)](),_0x1b0251=_0x3e8474[_0x3ff0dc(0x1bb)](0x0,Math['ceil'](_0x2a753d[_0x3ff0dc(0x179)](_0x3e8474[_0x3ff0dc(0x12e)],0x2))),_0x4be98d=_0x162bab[_0x3ff0dc(0x1bb)](Math[_0x3ff0dc(0x1ad)](_0x2a753d['NWYTB'](_0x162bab[_0x3ff0dc(0x12e)],0x2))),_0x5a11f5=_0x1b0251+_0x4be98d;await _0x2a753d['kNUpN'](_0x507b11,'💘\x20*Ship\x20Name:*\x0a\x0a'+_0x1c30c3[0x0]+_0x3ff0dc(0x17d)+_0x1c30c3[0x1]+_0x3ff0dc(0x1b4)+(_0x5a11f5['charAt'](0x0)['toUpperCase']()+_0x5a11f5['slice'](0x1))+'**');}}),(0x0,types_1[_0x24cf1c(0x1b2)])({'name':_0x24cf1c(0x17a),'aliases':['roastuser'],'description':'Playful\x20insult','category':'fun','execute':async({reply:_0x588c9e})=>{const _0x19cad4=_0x24cf1c,_0x28c853={'UnvJb':_0x19cad4(0x12a),'cKPVb':_0x19cad4(0x1ab),'tFkBY':function(_0x2318f3,_0x2a5ccc){return _0x2318f3*_0x2a5ccc;}},_0x2052b7=[_0x28c853[_0x19cad4(0x17e)],_0x19cad4(0x115),_0x28c853[_0x19cad4(0x1b0)],_0x19cad4(0x125),_0x19cad4(0x1c6),_0x19cad4(0x175),_0x19cad4(0x1d3),'You\x27re\x20like\x20a\x20cloud.\x20When\x20you\x20disappear,\x20it\x27s\x20a\x20beautiful\x20day!'],_0x3eaea3=_0x2052b7[Math[_0x19cad4(0x1ad)](_0x28c853[_0x19cad4(0x1bd)](Math[_0x19cad4(0x196)](),_0x2052b7[_0x19cad4(0x12e)]))];await _0x588c9e(_0x19cad4(0x133)+_0x3eaea3);}}),(0x0,types_1['registerCommand'])({'name':_0x24cf1c(0x128),'description':_0x24cf1c(0x1f6),'category':'fun','execute':async({reply:_0x15f59f})=>{const _0x35f621=_0x24cf1c,_0x374a88={'eWzUf':_0x35f621(0x11d),'lToPO':'Your\x20smile\x20is\x20contagious!','qXjsn':'You\x27re\x20wonderful!','VrtYD':'You\x27re\x20incredible!','bEkcf':function(_0x14360b,_0x530536){return _0x14360b(_0x530536);}},_0x32e32c=['You\x27re\x20amazing!',_0x374a88[_0x35f621(0x137)],_0x374a88[_0x35f621(0x1f1)],_0x35f621(0x208),_0x374a88['qXjsn'],'You\x20make\x20me\x20happy!',_0x35f621(0x167),_0x374a88[_0x35f621(0x1a2)],_0x35f621(0x1e4),_0x35f621(0x142)],_0x21183a=_0x32e32c[Math[_0x35f621(0x1ad)](Math[_0x35f621(0x196)]()*_0x32e32c['length'])];await _0x374a88[_0x35f621(0x138)](_0x15f59f,_0x35f621(0x183)+_0x21183a);}}),(0x0,types_1[_0x24cf1c(0x1b2)])({'name':'burn','description':_0x24cf1c(0x1ce),'category':_0x24cf1c(0x17b),'execute':async({reply:_0x36dcf8})=>{const _0x4f76aa=_0x24cf1c;await _0x36dcf8(_0x4f76aa(0x18a));}}),(0x0,types_1[_0x24cf1c(0x1b2)])({'name':_0x24cf1c(0x1ee),'aliases':['wouldyourather'],'description':_0x24cf1c(0x168),'category':'fun','execute':async({reply:_0x3e529a})=>{const _0x654e72=_0x24cf1c,_0x1d0e96={'nsBBw':_0x654e72(0x171),'Xlmes':'Would\x20you\x20rather\x20live\x20forever\x20or\x20have\x20superpowers?','weLeN':'Would\x20you\x20rather\x20travel\x20to\x20the\x20past\x20or\x20future?','YaJBV':'Would\x20you\x20rather\x20have\x20unlimited\x20money\x20or\x20true\x20love?','mhkWz':_0x654e72(0x198),'LclAj':function(_0x1c01ed,_0x13dba1){return _0x1c01ed(_0x13dba1);}},_0x586f39=[_0x1d0e96[_0x654e72(0x1cb)],_0x1d0e96[_0x654e72(0x174)],'Would\x20you\x20rather\x20be\x20rich\x20or\x20famous?',_0x1d0e96['weLeN'],_0x1d0e96['YaJBV'],_0x654e72(0x165),_0x1d0e96[_0x654e72(0x127)],'Would\x20you\x20rather\x20live\x20in\x20space\x20or\x20under\x20the\x20sea?'],_0x5e2f02=_0x586f39[Math[_0x654e72(0x1ad)](Math[_0x654e72(0x196)]()*_0x586f39['length'])];await _0x1d0e96[_0x654e72(0x1af)](_0x3e529a,'🤔\x20*Would\x20You\x20Rather?*\x0a\x0a'+_0x5e2f02);}}),(0x0,types_1['registerCommand'])({'name':_0x24cf1c(0x157),'aliases':[_0x24cf1c(0x135),_0x24cf1c(0x1a6)],'description':_0x24cf1c(0x17c),'category':_0x24cf1c(0x17b),'execute':async({reply:_0x28ecba})=>{const _0x5df809=_0x24cf1c,_0x40771e={'vbhAd':'Never\x20have\x20I\x20ever\x20traveled\x20to\x20another\x20country','rTTDU':'Never\x20have\x20I\x20ever\x20cried\x20during\x20a\x20movie','itZHa':_0x5df809(0x14b),'rsKma':'Never\x20have\x20I\x20ever\x20pulled\x20an\x20all-nighter','JUHhG':_0x5df809(0x15c),'uXSWd':function(_0x328664,_0x21da03){return _0x328664*_0x21da03;}},_0x487276=[_0x40771e['vbhAd'],_0x5df809(0x1e2),'Never\x20have\x20I\x20ever\x20lied\x20to\x20get\x20out\x20of\x20trouble',_0x40771e[_0x5df809(0x11f)],_0x40771e[_0x5df809(0x1d4)],_0x40771e[_0x5df809(0x162)],_0x5df809(0x148),_0x40771e[_0x5df809(0x18b)]],_0x40855e=_0x487276[Math[_0x5df809(0x1ad)](_0x40771e['uXSWd'](Math['random'](),_0x487276['length']))];await _0x28ecba(_0x5df809(0x205)+_0x40855e);}}),(0x0,types_1[_0x24cf1c(0x1b2)])({'name':'action','description':_0x24cf1c(0x1f8),'category':_0x24cf1c(0x17b),'usage':'.action\x20<text>','execute':async({args:_0xabcc2,reply:_0x509924})=>{const _0x32a893=_0x24cf1c,_0x110ea3={'hPXPe':function(_0xe82232,_0x9008a8){return _0xe82232(_0x9008a8);}},_0x1d244a=_0xabcc2[_0x32a893(0x118)]('\x20');if(!_0x1d244a)return _0x509924(_0x32a893(0x14f));await _0x110ea3['hPXPe'](_0x509924,'*'+_0x1d244a+'*');}}),(0x0,types_1['registerCommand'])({'name':_0x24cf1c(0x15a),'description':_0x24cf1c(0x152),'category':_0x24cf1c(0x17b),'usage':_0x24cf1c(0x14e),'execute':async({args:_0x9f87aa,reply:_0x564a10})=>{const _0x3453a3=_0x24cf1c,_0x5c302b={'AVfkF':function(_0xa128cc,_0x228c7a){return _0xa128cc(_0x228c7a);}},_0x37e0b1=_0x9f87aa[_0x3453a3(0x118)]('\x20');if(!_0x37e0b1)return _0x564a10('❌\x20What\x20should\x20I\x20say?');await _0x5c302b['AVfkF'](_0x564a10,_0x37e0b1);}}),(0x0,types_1['registerCommand'])({'name':'heart','description':'ASCII\x20heart','category':'fun','execute':async({reply:_0xa01bf0})=>{const _0x7f733f=_0x24cf1c,_0x17facd=_0x7f733f(0x11a);await _0xa01bf0(_0x17facd);}}),(0x0,types_1[_0x24cf1c(0x1b2)])({'name':_0x24cf1c(0x11b),'description':_0x24cf1c(0x19f),'category':_0x24cf1c(0x17b),'usage':_0x24cf1c(0x151),'execute':async({args:_0x3a344f,reply:_0x669e90})=>{const _0x1c927b=_0x24cf1c,_0x4f4974={'EeEbP':function(_0x587c92,_0x5a3cd3){return _0x587c92(_0x5a3cd3);}},_0x386312=_0x3a344f[_0x1c927b(0x118)]('\x20')||_0x1c927b(0x1aa),_0x12b805='\x0a\x20'+'_'[_0x1c927b(0x1e9)](_0x386312['length']+0x2)+_0x1c927b(0x1da)+_0x386312+_0x1c927b(0x114)+'-'[_0x1c927b(0x1e9)](_0x386312['length']+0x2)+_0x1c927b(0x1f7);await _0x4f4974[_0x1c927b(0x1d6)](_0x669e90,_0x12b805);}}),(0x0,types_1[_0x24cf1c(0x1b2)])({'name':_0x24cf1c(0x10a),'description':_0x24cf1c(0x10f),'category':_0x24cf1c(0x17b),'execute':async({reply:_0x1b6697})=>{const _0x29aa1e=_0x24cf1c,_0x5ac679={'iwwgy':function(_0x5786a4,_0x2ea5f4){return _0x5786a4(_0x2ea5f4);}};await _0x5ac679[_0x29aa1e(0x1fb)](_0x1b6697,_0x29aa1e(0x155));}}),(0x0,types_1[_0x24cf1c(0x1b2)])({'name':_0x24cf1c(0x134),'description':_0x24cf1c(0x1b8),'category':_0x24cf1c(0x17b),'usage':_0x24cf1c(0x1ca),'execute':async({args:_0x5f044f,reply:_0xb513d0})=>{const _0xbed0d4=_0x24cf1c,_0x2fac46={'Wicyo':_0xbed0d4(0x140),'mICCD':_0xbed0d4(0x207)},_0x380ff9=_0x5f044f[_0xbed0d4(0x118)]('\x20');if(!_0x380ff9)return _0xb513d0(_0x2fac46[_0xbed0d4(0x1c5)]);const _0x281ae0=_0x380ff9[_0xbed0d4(0x136)]('\x20')['join'](_0x2fac46['mICCD']);await _0xb513d0(_0xbed0d4(0x1d0)+_0x281ae0+_0xbed0d4(0x1b6));}}),(0x0,types_1[_0x24cf1c(0x1b2)])({'name':_0x24cf1c(0x13c),'aliases':[_0x24cf1c(0x1bf)],'description':_0x24cf1c(0x185),'category':_0x24cf1c(0x17b),'usage':_0x24cf1c(0x1a1),'execute':async({args:_0x43613d,reply:_0x10030d})=>{const _0x3f3cdf=_0x24cf1c,_0x4171ea={'KcvsI':function(_0x42a4b6,_0x599d0a){return _0x42a4b6===_0x599d0a;},'bfWUX':function(_0x595be9,_0x30e14b){return _0x595be9%_0x30e14b;}},_0x6d6eac=_0x43613d[_0x3f3cdf(0x118)]('\x20');if(!_0x6d6eac)return _0x10030d(_0x3f3cdf(0x140));let _0x22a095='';for(let _0x373e5e=0x0;_0x373e5e<_0x6d6eac[_0x3f3cdf(0x12e)];_0x373e5e++){_0x22a095+=_0x4171ea[_0x3f3cdf(0x193)](_0x4171ea[_0x3f3cdf(0x126)](_0x373e5e,0x2),0x0)?_0x6d6eac[_0x373e5e]['toLowerCase']():_0x6d6eac[_0x373e5e]['toUpperCase']();}await _0x10030d(_0x22a095);}}),(0x0,types_1['registerCommand'])({'name':_0x24cf1c(0x19b),'aliases':[_0x24cf1c(0x120),'vapor'],'description':_0x24cf1c(0x16b),'category':_0x24cf1c(0x17b),'usage':_0x24cf1c(0x1c7),'execute':async({args:_0x4b0622,reply:_0x4b80c1})=>{const _0x32983b=_0x24cf1c,_0x4a2d0e={'KcfOL':function(_0x5bf822,_0x4ae574){return _0x5bf822===_0x4ae574;},'uRPTL':function(_0x59c2fc,_0x3a1b75){return _0x59c2fc>=_0x3a1b75;},'AXpYv':_0x32983b(0x13b),'CCtkh':function(_0x3ec25e,_0x11d367){return _0x3ec25e(_0x11d367);}},_0x1158f9=_0x4b0622['join']('\x20');if(!_0x1158f9)return _0x4b80c1(_0x32983b(0x140));let _0x218378='';for(let _0x459a92 of _0x1158f9){if(_0x4a2d0e[_0x32983b(0x1a5)](_0x459a92,'\x20'))_0x218378+='\u3000';else _0x4a2d0e[_0x32983b(0x202)](_0x459a92[_0x32983b(0x10c)](0x0),0x21)&&_0x459a92[_0x32983b(0x10c)](0x0)<=0x7e?_0x218378+=String[_0x32983b(0x1dc)](_0x459a92[_0x32983b(0x10c)](0x0)+0xfee0):_0x32983b(0x1f0)===_0x4a2d0e[_0x32983b(0x181)]?_0x48f086+=_0x3d6a8b[_0x51c94d[_0x32983b(0x1ad)](_0x56df42[_0x32983b(0x196)]()*_0x29376c[_0x32983b(0x12e)])]:_0x218378+=_0x459a92;}await _0x4a2d0e[_0x32983b(0x154)](_0x4b80c1,_0x218378);}}),(0x0,types_1[_0x24cf1c(0x1b2)])({'name':'owo','aliases':[_0x24cf1c(0x1c8),'uwu'],'description':_0x24cf1c(0x131),'category':'fun','usage':_0x24cf1c(0x1e1),'execute':async({args:_0x5dede4,reply:_0x5ac4eb})=>{const _0x46224a=_0x24cf1c,_0x247b8c={'OnYad':function(_0x3c2d7f,_0x11c346){return _0x3c2d7f(_0x11c346);},'MyDSs':_0x46224a(0x1a8),'VGGHg':_0x46224a(0x203),'JqUjF':_0x46224a(0x1df),'xslZX':_0x46224a(0x14c),'FZuoY':'\x20^w^'},_0x478e13=_0x5dede4['join']('\x20');if(!_0x478e13)return _0x247b8c['OnYad'](_0x5ac4eb,_0x247b8c['MyDSs']);let _0x4daccb=_0x478e13[_0x46224a(0x156)](/r|l/g,'w')['replace'](/R|L/g,'W')[_0x46224a(0x156)](/n([aeiou])/g,_0x46224a(0x15f))['replace'](/N([aeiou])/g,_0x247b8c[_0x46224a(0x1c3)])['replace'](/ove/g,'uv');const _0x4cbf4c=[_0x46224a(0x1f4),_0x46224a(0x206),_0x247b8c['JqUjF'],_0x247b8c[_0x46224a(0x1a4)],_0x46224a(0x1d9),_0x247b8c[_0x46224a(0x180)]];_0x4daccb+=_0x4cbf4c[Math['floor'](Math['random']()*_0x4cbf4c[_0x46224a(0x12e)])],await _0x5ac4eb(_0x4daccb);}}),(0x0,types_1[_0x24cf1c(0x1b2)])({'name':_0x24cf1c(0x161),'aliases':[_0x24cf1c(0x11e),'glitch'],'description':_0x24cf1c(0x14d),'category':_0x24cf1c(0x17b),'usage':'.zalgo\x20<text>','execute':async({args:_0x3c78b1,reply:_0x1abc39})=>{const _0x398c19=_0x24cf1c,_0x2e1bd2={'zqzWx':function(_0x801d8c,_0x4570e2){return _0x801d8c(_0x4570e2);},'bsqxj':function(_0x1ce388,_0x928a0b){return _0x1ce388===_0x928a0b;},'kNfuW':_0x398c19(0x204),'KtVBJ':function(_0x404aaf,_0x478591){return _0x404aaf<_0x478591;}},_0x147f3b=_0x3c78b1[_0x398c19(0x118)]('\x20');if(!_0x147f3b)return _0x2e1bd2[_0x398c19(0x13d)](_0x1abc39,_0x398c19(0x140));const _0x3b138c=['̀','́','̂','̃','̄','̅','̆','̇','̈','̉','̊','̋','̌','̍','̎','̏','̐','̑','̒','̓','̔','̕','̖','̗'];let _0x5a7781='';for(let _0x5e7964 of _0x147f3b){if(_0x2e1bd2[_0x398c19(0x1a9)](_0x2e1bd2['kNfuW'],_0x398c19(0x204))){_0x5a7781+=_0x5e7964;for(let _0x50d6a5=0x0;_0x2e1bd2[_0x398c19(0x12f)](_0x50d6a5,0x3);_0x50d6a5++){_0x5a7781+=_0x3b138c[Math['floor'](Math[_0x398c19(0x196)]()*_0x3b138c['length'])];}}else _0x4d6a81+='\u3000';}await _0x1abc39(_0x5a7781);}}),(0x0,types_1['registerCommand'])({'name':_0x24cf1c(0x116),'description':_0x24cf1c(0x1e5),'category':_0x24cf1c(0x17b),'execute':async({reply:_0x4f1a22})=>{const _0x378d6c=_0x24cf1c,_0x1edff8={'BqOry':_0x378d6c(0x1b5)};await _0x4f1a22(_0x1edff8[_0x378d6c(0x112)]);}}),(0x0,types_1[_0x24cf1c(0x1b2)])({'name':'flex','description':'Flex\x20on\x20\x27em','category':'fun','execute':async({reply:_0x40faf0})=>{const _0x246d78=_0x24cf1c;await _0x40faf0(_0x246d78(0x1cc));}}),(0x0,types_1['registerCommand'])({'name':_0x24cf1c(0x1fc),'description':_0x24cf1c(0x15d),'category':_0x24cf1c(0x17b),'execute':async({reply:_0x201a80})=>{const _0x50f10f=_0x24cf1c,_0x50e828={'EYqAn':function(_0xbfd4f2,_0x5750cd){return _0xbfd4f2(_0x5750cd);},'UnsDs':_0x50f10f(0x1ae)};await _0x50e828[_0x50f10f(0x1f2)](_0x201a80,_0x50e828[_0x50f10f(0x12d)]);}}),(0x0,types_1[_0x24cf1c(0x1b2)])({'name':'yolo','description':_0x24cf1c(0x1c1),'category':_0x24cf1c(0x17b),'execute':async({reply:_0x2434ae})=>{const _0x49e4a3=_0x24cf1c;await _0x2434ae(_0x49e4a3(0x1eb));}}),(0x0,types_1[_0x24cf1c(0x1b2)])({'name':_0x24cf1c(0x1c4),'description':_0x24cf1c(0x1b1),'category':_0x24cf1c(0x17b),'execute':async({reply:_0x30942c})=>{const _0x2ad6f1=_0x24cf1c;await _0x30942c(_0x2ad6f1(0x201));}}),(0x0,types_1[_0x24cf1c(0x1b2)])({'name':'triggeredtext','description':'TRIGGERED!','category':_0x24cf1c(0x17b),'execute':async({reply:_0x3cf6b6})=>{const _0x2d91ab=_0x24cf1c,_0x40c024={'pKoOT':function(_0x40ba1a,_0x182d8f){return _0x40ba1a(_0x182d8f);}};await _0x40c024[_0x2d91ab(0x150)](_0x3cf6b6,_0x2d91ab(0x194));}}),(0x0,types_1['registerCommand'])({'name':_0x24cf1c(0x170),'description':_0x24cf1c(0x121),'category':_0x24cf1c(0x17b),'execute':async({reply:_0x397af0})=>{const _0x4d4ad0=_0x24cf1c;await _0x397af0(_0x4d4ad0(0x1ff));}}),(0x0,types_1['registerCommand'])({'name':'oops','description':'Oops!','category':_0x24cf1c(0x17b),'execute':async({reply:_0x4b034c})=>{await _0x4b034c('(๑′°︿°๑)\x0a\x0a*Oops!*');}}),(0x0,types_1[_0x24cf1c(0x1b2)])({'name':'gg','description':_0x24cf1c(0x113),'category':_0x24cf1c(0x17b),'execute':async({reply:_0x442c45})=>{const _0x751c72=_0x24cf1c;await _0x442c45(_0x751c72(0x177));}}),(0x0,types_1[_0x24cf1c(0x1b2)])({'name':_0x24cf1c(0x1a0),'aliases':['f',_0x24cf1c(0x13f)],'description':'Press\x20F\x20to\x20pay\x20respects','category':_0x24cf1c(0x17b),'execute':async({reply:_0x399f3d})=>{const _0x1195f5=_0x24cf1c,_0x2ad2fa={'ADzTK':function(_0x816d0b,_0x41462c){return _0x816d0b(_0x41462c);}};await _0x2ad2fa['ADzTK'](_0x399f3d,_0x1195f5(0x199));}}),(0x0,types_1['registerCommand'])({'name':_0x24cf1c(0x1fd),'description':_0x24cf1c(0x1c9),'category':_0x24cf1c(0x17b),'execute':async({reply:_0x51e0f5})=>{const _0xd7dc0c=_0x24cf1c;await _0x51e0f5(_0xd7dc0c(0x1f9));}}),(0x0,types_1[_0x24cf1c(0x1b2)])({'name':_0x24cf1c(0x1de),'description':_0x24cf1c(0x1e6),'category':_0x24cf1c(0x17b),'execute':async({reply:_0x33ec2e})=>{const _0xf2436f=_0x24cf1c,_0x45a394={'NMEpH':function(_0x4708a5,_0x4718d0){return _0x4708a5(_0x4718d0);}};await _0x45a394[_0xf2436f(0x166)](_0x33ec2e,_0xf2436f(0x123));}}),(0x0,types_1[_0x24cf1c(0x1b2)])({'name':_0x24cf1c(0x16e),'description':_0x24cf1c(0x18c),'category':_0x24cf1c(0x17b),'execute':async({reply:_0x23d11e})=>{const _0x19c533=_0x24cf1c,_0x168b81={'fSoCz':function(_0x16f40a,_0x29b30b){return _0x16f40a(_0x29b30b);},'wuaFx':_0x19c533(0x141)};await _0x168b81[_0x19c533(0x12c)](_0x23d11e,_0x168b81['wuaFx']);}});
|