Files
xiao/commands/single/its-joke.js
T
2020-01-14 18:25:35 -05:00

27 lines
619 B
JavaScript

const Command = require('../../structures/Command');
const path = require('path');
module.exports = class ItsJokeCommand extends Command {
constructor(client) {
super(client, {
name: 'its-joke',
aliases: ['is-joke'],
group: 'single',
memberName: 'its-joke',
description: 'It\'s joke!',
clientPermissions: ['ATTACH_FILES'],
url: [
{
name: 'Love Live! School Idol Project',
url: 'http://www.lovelive-anime.jp/',
reason: 'Original Anime'
}
]
});
}
run(msg) {
return msg.say({ files: [path.join(__dirname, '..', '..', 'assets', 'images', 'its-joke.png')] });
}
};