From 1bce3185bbf58cf5409da5df2e0e90064a7c184a Mon Sep 17 00:00:00 2001 From: Alex Brow Date: Sun, 5 Apr 2020 09:11:13 -0400 Subject: [PATCH] adding quotes --- src/index.js | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/src/index.js b/src/index.js index d93bb99..87b8289 100755 --- a/src/index.js +++ b/src/index.js @@ -268,7 +268,7 @@ client.on("message", async message => { }; if (command === "quote") { min = Math.ceil(0); - max = Math.floor(58); + max = Math.floor(66); // Quote format ' quote stuff like egg eegg egg mommmmy' let quotes = [ ' Im a segregationist', @@ -329,7 +329,15 @@ client.on("message", async message => { ' Bruh did you even read the boot chat?', ' What\'s a zoomie', ' ENDLESS SIMP IS BACK AT CIVILIANS ALL PARTYING', - ' We live in a Republic.' + ' We live in a Republic.', + ' Do you know how to keep your booger picker off the bang bang lever???', + ' that\'s why we have evaluators\n what are those', + ' bravo 6 going boog', + ' cute doesnt win the war kid', + ' you should play the George Lopez theme as you torture Gavin Newsom', + ' In this world, either you crank dat soulja boy or this world cranks you', + ' Im going to be honest with with you, im kinda retarded', + ' You dont have my consent, but I know you will do it anyways.' ] let number = Math.floor(Math.random() * (max - min) + min) //The maximum is exclusive and the minimum is inclusive return message.channel.send(quotes[number])