mirror of
https://github.com/arthur-pbty/xiao.git
synced 2026-06-12 00:04:48 +02:00
Karen Command is back! Ayaya!
This commit is contained in:
@@ -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!';
|
||||
}
|
||||
};
|
||||
Reference in New Issue
Block a user