41 lines
2.2 KiB
JavaScript
41 lines
2.2 KiB
JavaScript
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) => {
|
||
let target = message.author;
|
||
|
||
if(args[0]) {
|
||
target = args[0];
|
||
}
|
||
|
||
message.delete();
|
||
message.channel.send(`Hey, ${target}! Wanna know something? ${Compliments[Math.floor(Math.random() * Compliments.length)]}`);
|
||
};
|
||
|
||
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]"
|
||
};
|