Karen Command is back! Ayaya!

This commit is contained in:
Daniel Odendahl Jr
2018-09-13 23:10:42 +00:00
parent f0a6869c85
commit ec83feaeca
4 changed files with 24 additions and 2 deletions
+20
View File
@@ -0,0 +1,20 @@
const ImgurAlbumCommand = require('../../structures/commands/ImgurAlbum');
const { KAREN_ALBUM_ID } = process.env;
module.exports = class KarenCommand extends ImgurAlbumCommand {
constructor(client) {
super(client, {
name: 'karen',
aliases: ['ayaya'],
group: 'random',
memberName: 'karen',
description: 'Responds with a random image of Karen.',
clientPermissions: ['ATTACH_FILES'],
albumID: KAREN_ALBUM_ID
});
}
generateText() {
return 'Ayaya!';
}
};