From 253775a66eed11b3554f9f80b6bcb6e67921370e Mon Sep 17 00:00:00 2001 From: qwerinope Date: Sun, 23 Nov 2025 22:45:46 +0100 Subject: [PATCH] add six seven joke to `seiso` and `yabai` --- src/commands/seiso.ts | 4 ++++ src/commands/yabai.ts | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/src/commands/seiso.ts b/src/commands/seiso.ts index 1f6fe6e..40c95ea 100644 --- a/src/commands/seiso.ts +++ b/src/commands/seiso.ts @@ -8,6 +8,10 @@ export default new Command({ execution: async (msg, user) => { const rand = Math.floor(Math.random() * 101); if (rand > 75) await sendMessage(`${rand}% seiso YAAAA`, msg.messageId); + else if (rand === 67) await Promise.all([ + sendMessage(`KOKPEG 67 KOKPEG`), + timeout(user, 'SIX SEVEN', 67) + ]) 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); diff --git a/src/commands/yabai.ts b/src/commands/yabai.ts index 224be1b..c7d33e5 100644 --- a/src/commands/yabai.ts +++ b/src/commands/yabai.ts @@ -11,6 +11,10 @@ export default new Command({ if (rand < 25) sendMessage(`${rand}% yabai! GIGACHAD`, msg.messageId); else if (rand < 50) sendMessage(`${rand}% yabai POGGERS`, msg.messageId); else if (rand === 50) sendMessage(`${rand}% yabai ok`, msg.messageId); + else if (rand === 67) await Promise.all([ + sendMessage(`KOKPEG 67 KOKPEG`), + timeout(user, 'SIX SEVEN', 67) + ]) else if (rand < 90) sendMessage(`${rand}% yabai AINTNOWAY`, msg.messageId); else await Promise.all([ sendMessage(`${msg.chatterDisplayName} is ${rand}% yabai CAUGHT`),