mirror of
https://github.com/arthur-pbty/xiao.git
synced 2026-06-03 23:36:43 +02:00
29 lines
774 B
JavaScript
29 lines
774 B
JavaScript
const ImgurAlbumCommand = require('../../structures/commands/ImgurAlbum');
|
|
const { SHREK_ALBUM_ID } = process.env;
|
|
|
|
module.exports = class ShrekCommand extends ImgurAlbumCommand {
|
|
constructor(client) {
|
|
super(client, {
|
|
name: 'shrek',
|
|
aliases: ['sexiest-man-alive', 'sexy'],
|
|
group: 'random-img',
|
|
memberName: 'shrek',
|
|
description: 'Responds with a random image of Shrek, the sexiest man alive.',
|
|
clientPermissions: ['ATTACH_FILES'],
|
|
albumID: SHREK_ALBUM_ID,
|
|
credit: [
|
|
{
|
|
name: 'DreamWorks',
|
|
url: 'https://www.dreamworks.com/',
|
|
reasonURL: 'https://www.dreamworks.com/movies/shrek',
|
|
reason: 'Images, Original "Shrek" Movie'
|
|
}
|
|
]
|
|
});
|
|
}
|
|
|
|
generateText() {
|
|
return 'Trust me, there is no one sexier than this man.';
|
|
}
|
|
};
|