Files
xiao/commands/random-img/awwnime.js
T
2020-06-08 16:15:19 -04:00

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);
}
};