mirror of
https://github.com/arthur-pbty/xiao.git
synced 2026-06-03 23:36:43 +02:00
27 lines
673 B
JavaScript
27 lines
673 B
JavaScript
const Command = require('../../framework/Command');
|
|
const { PermissionFlagsBits } = require('discord.js');
|
|
const path = require('path');
|
|
|
|
module.exports = class EggsGetLaidCommand extends Command {
|
|
constructor(client) {
|
|
super(client, {
|
|
name: 'eggs-get-laid',
|
|
aliases: ['eggs-gets-laid'],
|
|
group: 'single',
|
|
description: 'Sends the ultimate roast.',
|
|
clientPermissions: [PermissionFlagsBits.AttachFiles],
|
|
credit: [
|
|
{
|
|
name: 'KINMOZA!',
|
|
url: 'http://www.kinmosa.com/',
|
|
reason: 'Original Anime'
|
|
}
|
|
]
|
|
});
|
|
}
|
|
|
|
run(msg) {
|
|
return msg.say({ files: [path.join(__dirname, '..', '..', 'assets', 'images', 'eggs-get-laid.png')] });
|
|
}
|
|
};
|