mirror of
https://github.com/qwerinope/qweribot.git
synced 2025-12-19 01:01:39 +01:00
21 lines
809 B
TypeScript
21 lines
809 B
TypeScript
import { Command, sendMessage } from "lib/commandUtils";
|
|
import { timeout } from "lib/timeout";
|
|
|
|
export default new Command({
|
|
name: 'seiso',
|
|
aliases: ['seiso'],
|
|
usertype: 'chatter',
|
|
execution: async (msg, user) => {
|
|
const rand = Math.floor(Math.random() * 101);
|
|
if (rand > 75) await sendMessage(`${rand}% seiso YAAAA`, msg.messageId);
|
|
else if (rand > 50) await sendMessage(`${rand}% seiso POGGERS`, msg.messageId);
|
|
else if (rand === 50) await sendMessage(`${rand}% seiso ok`, msg.messageId);
|
|
else if (rand > 30) await sendMessage(`${rand}% seiso SWEAT`, msg.messageId);
|
|
else if (rand > 10) await sendMessage(`${rand}% seiso catErm`, msg.messageId);
|
|
else await Promise.all([
|
|
sendMessage(`${rand}% seiso RIPBOZO`),
|
|
timeout(user, 'TOO YABAI!', 60)
|
|
]);
|
|
}
|
|
});
|