mirror of
https://github.com/arthur-pbty/xiao.git
synced 2026-06-04 07:46:43 +02:00
22 lines
546 B
JavaScript
22 lines
546 B
JavaScript
const SubredditCommand = require('../../structures/commands/Subreddit');
|
|
|
|
module.exports = class AwwnimeCommand extends SubredditCommand {
|
|
constructor(client) {
|
|
super(client, {
|
|
name: 'awwnime',
|
|
aliases: ['aww-anime', 'moe'],
|
|
group: 'random-img',
|
|
memberName: 'awwnime',
|
|
description: 'Responds with cute random anime art.',
|
|
clientPermissions: ['EMBED_LINKS'],
|
|
postType: 'image',
|
|
getIcon: true,
|
|
subreddit: 'awwnime'
|
|
});
|
|
}
|
|
|
|
generateText(post, subreddit, icon) {
|
|
return this.makeEmbed(post, subreddit, icon);
|
|
}
|
|
};
|