From be7d6f449c2dde0196a4781e47df9db1b8ccf1f3 Mon Sep 17 00:00:00 2001 From: Daniel Odendahl Jr Date: Sun, 14 May 2017 04:38:22 +0000 Subject: [PATCH] butts --- commands/response/ship.js | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/commands/response/ship.js b/commands/response/ship.js index 4468c1dd..5f37ce2d 100644 --- a/commands/response/ship.js +++ b/commands/response/ship.js @@ -21,6 +21,12 @@ module.exports = class ShipCommand extends Command { run(msg, args) { const { things } = args; const rating = Math.floor(Math.random() * 100) + 1; - return msg.say(`I'd give ${things} a ${rating}%!`); + let response; + if (rating < 25) response = 'Ouch. Might want to keep them apart.'; + else if (rating < 50) response = 'Meh, they should keep looking.'; + else if (rating < 75) response = 'Could be worse, they should try it.'; + else if (rating < 90) response = 'Not too bad. It might work out.'; + else response = 'These guys have one bright future ahead of them!'; + return msg.say(`I'd give ${things} a ${rating}%! ${response}`); } };