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
+1
View File
@@ -50,6 +50,7 @@ FIST_BUMP_ALBUM_ID=
HIGH_FIVE_ALBUM_ID=
HOLD_HANDS_ALBUM_ID=
HUG_ALBUM_ID=
KAREN_ALBUM_ID=
KILL_ALBUM_ID=
KISS_ALBUM_ID=
PAT_ALBUM_ID=
+2 -1
View File
@@ -15,7 +15,7 @@ Xiao is a Discord bot coded in JavaScript with
The bot is no longer available for invite. You can self-host the bot, or use her
on the [home server](https://discord.gg/sbMe32W).
## Commands (306)
## Commands (307)
### Utility:
* **eval:** Executes JavaScript code.
@@ -63,6 +63,7 @@ on the [home server](https://discord.gg/sbMe32W).
* **fox:** Responds with a random fox image.
* **github-zen:** Responds with a random GitHub design philosophy.
* **joke:** Responds with a random joke.
* **karen:** Responds with a random image of Karen.
* **kiss-marry-kill:** Determines who to kiss, who to marry, and who to kill.
* **magic-conch:** Asks your question to the Magic Conch.
* **meme:** Responds with a random meme.
+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!';
}
};
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "xiao",
"version": "91.1.7",
"version": "91.2.0",
"description": "Your personal server companion.",
"main": "Xiao.js",
"scripts": {