Add Potato Command

This commit is contained in:
Dragon Fire
2020-02-25 17:22:46 -05:00
parent 6ab3282bed
commit 4ac896f6b4
4 changed files with 23 additions and 2 deletions
+19
View File
@@ -0,0 +1,19 @@
const ImgurAlbumCommand = require('../../structures/commands/ImgurAlbum');
const { POTATO_ALBUM_ID } = process.env;
module.exports = class PotatoCommand extends ImgurAlbumCommand {
constructor(client) {
super(client, {
name: 'potato',
group: 'random',
memberName: 'potato',
description: 'Responds with a random potato image.',
clientPermissions: ['ATTACH_FILES'],
albumID: POTATO_ALBUM_ID
});
}
generateText() {
return 'I like potatoes.';
}
};