Files
xiao/commands/single/eggs-get-laid.js
T
Daniel Odendahl Jr 45c8d62dd5 Credit Command
2019-04-14 00:03:38 +00:00

26 lines
603 B
JavaScript

const Command = require('../../structures/Command');
const path = require('path');
module.exports = class EggsGetLaidCommand extends Command {
constructor(client) {
super(client, {
name: 'eggs-get-laid',
aliases: ['eggs-gets-laid'],
group: 'single',
memberName: 'eggs-get-laid',
description: 'Sends the ultimate roast.',
clientPermissions: ['ATTACH_FILES'],
credit: [
{
name: 'KINMOZA!',
url: 'http://www.kinmosa.com/'
}
]
});
}
run(msg) {
return msg.say({ files: [path.join(__dirname, '..', '..', 'assets', 'images', 'eggs-get-laid.png')] });
}
};