const Command = require('../../structures/Command'); const compliments = require('../../assets/json/compliment'); module.exports = class ComplimentCommand extends Command { constructor(client) { super(client, { name: 'compliment', group: 'response', memberName: 'compliment', description: 'Compliments a user.', args: [ { key: 'user', prompt: 'What user do you want to compliment?', type: 'user', default: '' } ] }); } run(msg, args) { const user = args.user || msg.author; const compliment = compliments[Math.floor(Math.random() * compliments.length)]; return msg.say(`${user.username}, ${compliment}`); } };