From 20b3b1a6ae1edf927f6014d3de6e5ab888b64718 Mon Sep 17 00:00:00 2001 From: carol <34490428+rhearmas@users.noreply.github.com> Date: Mon, 27 Jan 2020 11:15:30 -0800 Subject: [PATCH] ya know what? i love you. you're cool. --- commands/Jokes/compliment.js | 41 ++++++++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 commands/Jokes/compliment.js diff --git a/commands/Jokes/compliment.js b/commands/Jokes/compliment.js new file mode 100644 index 0000000..2c04ca4 --- /dev/null +++ b/commands/Jokes/compliment.js @@ -0,0 +1,41 @@ +const Compliments = [ + "You're my kind of weird.", "I love you more than tea.", "You're a Michelin Star human.", + "You're a chocolate Hobnob in a jar of Rich Teas.", "You've really nailed being a human. Good job.", + "You are wonderfully odd.", "You are the last minute goal in the cup final.", + "You're tougher than my wifi password.", "You are a walking high-five.", "You’d win the Saturday Kitchen omelette challenge.", + "You could be a part-time model.", "I like your face.", "You're wise and all knowing, like a mighty owl.", + "You're an awesome friend.", "You're a gift to those around you.", "You're a smart cookie.", "You are awesome!", + "You have impeccable manners.", "I like your style.", "You have the best laugh.", "I appreciate you.", + "You are the most perfect you there is.", "You are enough.", "You're strong.", "Your perspective is refreshing.", + "I'm grateful to know you.", "You light up the room.", "You deserve a hug right now.", "You should be proud of yourself.", + "You're more helpful than you realize.", "You have a great sense of humor.", "You've got an awesome sense of humor!", + "You are really courageous.", "Your kindness is a balm to all who encounter it.", "You're all that and a super-size bag of chips.", + "On a scale from 1 to 10, you're an 11.", "You are strong.", "You're even more beautiful on the inside than you are on the outside.", + "You have the courage of your convictions.", "I'm inspired by you.", "You're like a ray of sunshine on a really dreary day.", + "You are making a difference.", "Thank you for being there for me.", "You bring out the best in other people., "You make the rating scale skyrocket through the roof!"" +]; + +exports.run = async (client, message, args, level) => { + if(args.length < 1) return; + + let target = message.author; + if(message.guild && message.mentions) { + target = message.mentions.first; + } + + message.channel.send(`Hey, ${target}! Wanna know something? ${Compliments[Math.floor(Math.random() * Compliments.length)]}\nBe sure to thank ${message.author} for the compliment!`); +}; + +exports.conf = { + enabled: true, + guildOnly: false, + aliases: [], + permLevel: "User" +}; + +exports.help = { + name: "compliment", + category: "Jokes", + description: "Aww, you're so nice and sweet~! <3", + usage: "compliment [target]" +};