From eca3e8e80d1bf50dfacb98db5f9480354c1cb63c Mon Sep 17 00:00:00 2001 From: Asartea <76259120+Asartea@users.noreply.github.com> Date: Mon, 17 Feb 2025 16:47:52 +0100 Subject: [PATCH] Feat: Add more exclamations --- botCommands/points.js | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/botCommands/points.js b/botCommands/points.js index d6eb1e0d..7d92a383 100644 --- a/botCommands/points.js +++ b/botCommands/points.js @@ -91,6 +91,12 @@ function exclamation(points, isGoodQuestion) { if (points === 4000) { return '`//TODO: Implement Club 4000`'; } + if (points === 5000) { + return 'FIVE THOUSAND POINTS. Now go touch grass.'; + } + if (points === 10000) { + return 'You know there is a world outside the Discord right?'; + } return 'Woot!'; }