Files
xiao/commands/other/coolness.js
T
Daniel Odendahl Jr b6afded306 Updates
2017-11-09 00:02:59 +00:00

33 lines
1.1 KiB
JavaScript

const { Command } = require('discord.js-commando');
module.exports = class CoolnessCommand extends Command {
constructor(client) {
super(client, {
name: 'coolness',
group: 'other',
memberName: 'coolness',
description: 'Determines a user\'s coolness.',
args: [
{
key: 'user',
prompt: 'Which user do you want to determine the coolness of?',
type: 'user',
default: ''
}
]
});
}
run(msg, { user }) {
if (!user) user = msg.author;
const coolness = user.id / this.client.user.id;
if (user.id === '234318196893548545') return msg.say(`${user.username} is the best person ever ❤.`);
if (coolness < 0.3) return msg.say(`${user.username} is the coolest being to walk this Earth.`);
if (coolness < 0.5) return msg.say(`${user.username} is an extremely cool dude.`);
if (coolness < 0.8) return msg.say(`${user.username} is pretty sweet, not gonna lie.`);
if (coolness < 1) return msg.say(`${user.username} is okay, nothing special.`);
if (coolness < 1.3) return msg.say(`${user.username} is just not all that neat.`);
return msg.say(`${user.username} is awful, honestly.`);
}
};