Files
xiao/commands/roleplay/high-five.js
T
Daniel Odendahl Jr 1c9ac56831 Change arg assignment
2017-09-16 01:44:44 +00:00

35 lines
842 B
JavaScript

const Command = require('../../structures/Command');
const { stripIndents } = require('common-tags');
const gifs = [
'https://media.giphy.com/media/x58AS8I9DBRgA/giphy.gif',
'https://i.imgur.com/W4cEKMy.gif',
'https://i.imgur.com/r67Klvg.gif',
'https://i.imgur.com/zi7D5X2.gif',
'https://i.imgur.com/rJJWFj8.gif'
];
module.exports = class HighFivesCommand extends Command {
constructor(client) {
super(client, {
name: 'high-five',
group: 'roleplay',
memberName: 'high-five',
description: 'High Fives a user.',
args: [
{
key: 'user',
prompt: 'What user do you want to roleplay with?',
type: 'user'
}
]
});
}
run(msg, { user }) {
return msg.say(stripIndents`
**${msg.author.username}** *high-fives* **${user.username}**
${gifs[Math.floor(Math.random() * gifs.length)]}
`);
}
};