mirror of
https://github.com/arthur-pbty/xiao.git
synced 2026-06-17 21:40:51 +02:00
Karen Command is back! Ayaya!
This commit is contained in:
@@ -50,6 +50,7 @@ FIST_BUMP_ALBUM_ID=
|
|||||||
HIGH_FIVE_ALBUM_ID=
|
HIGH_FIVE_ALBUM_ID=
|
||||||
HOLD_HANDS_ALBUM_ID=
|
HOLD_HANDS_ALBUM_ID=
|
||||||
HUG_ALBUM_ID=
|
HUG_ALBUM_ID=
|
||||||
|
KAREN_ALBUM_ID=
|
||||||
KILL_ALBUM_ID=
|
KILL_ALBUM_ID=
|
||||||
KISS_ALBUM_ID=
|
KISS_ALBUM_ID=
|
||||||
PAT_ALBUM_ID=
|
PAT_ALBUM_ID=
|
||||||
|
|||||||
@@ -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
|
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).
|
on the [home server](https://discord.gg/sbMe32W).
|
||||||
|
|
||||||
## Commands (306)
|
## Commands (307)
|
||||||
### Utility:
|
### Utility:
|
||||||
|
|
||||||
* **eval:** Executes JavaScript code.
|
* **eval:** Executes JavaScript code.
|
||||||
@@ -63,6 +63,7 @@ on the [home server](https://discord.gg/sbMe32W).
|
|||||||
* **fox:** Responds with a random fox image.
|
* **fox:** Responds with a random fox image.
|
||||||
* **github-zen:** Responds with a random GitHub design philosophy.
|
* **github-zen:** Responds with a random GitHub design philosophy.
|
||||||
* **joke:** Responds with a random joke.
|
* **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.
|
* **kiss-marry-kill:** Determines who to kiss, who to marry, and who to kill.
|
||||||
* **magic-conch:** Asks your question to the Magic Conch.
|
* **magic-conch:** Asks your question to the Magic Conch.
|
||||||
* **meme:** Responds with a random meme.
|
* **meme:** Responds with a random meme.
|
||||||
|
|||||||
@@ -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
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "xiao",
|
"name": "xiao",
|
||||||
"version": "91.1.7",
|
"version": "91.2.0",
|
||||||
"description": "Your personal server companion.",
|
"description": "Your personal server companion.",
|
||||||
"main": "Xiao.js",
|
"main": "Xiao.js",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
|
|||||||
Reference in New Issue
Block a user