mirror of
https://github.com/arthur-pbty/xiao.git
synced 2026-06-11 03:14:35 +02:00
Shrek Command
This commit is contained in:
@@ -80,6 +80,7 @@ PAT_ALBUM_ID=
|
||||
POKE_ALBUM_ID=
|
||||
POTATO_ALBUM_ID=
|
||||
PUNCH_ALBUM_ID=
|
||||
SHREK_ALBUM_ID=
|
||||
SLAP_ALBUM_ID=
|
||||
SLEEP_ALBUM_ID=
|
||||
WAKE_UP_ALBUM_ID=
|
||||
|
||||
@@ -225,7 +225,7 @@ in the appropriate channel's topic to use it.
|
||||
|
||||
## Commands
|
||||
|
||||
Total: 460
|
||||
Total: 461
|
||||
|
||||
### Utility:
|
||||
|
||||
@@ -339,6 +339,7 @@ Total: 460
|
||||
* **porn:** Responds with a random porn image. (NSFW)
|
||||
* **potato:** Responds with a random potato image.
|
||||
* **shiba:** Responds with a random image of a Shiba Inu.
|
||||
* **shrek:** Responds with a random image of Shrek, the sexiest man alive.
|
||||
* **xiao:** Responds with a random image of Xiao Pai.
|
||||
|
||||
### Seeded Randomizers:
|
||||
@@ -912,6 +913,8 @@ here.
|
||||
* illegal (Himself, Image)
|
||||
- [Drake](https://drakeofficial.com/)
|
||||
* drakeposting ([Original "Hotline Bling" Music Video](https://youtu.be/uxpDa-c-4Mc))
|
||||
- [DreamWorks](https://www.dreamworks.com/)
|
||||
* shrek ([Images, Original "Shrek" Movie](https://www.dreamworks.com/movies/shrek))
|
||||
- [Dust: An Elysian Tail](https://www.noogy.com/main.html)
|
||||
* fidget (Original Game)
|
||||
- [DynamicPickaxe](http://dynamicpickaxe.com/)
|
||||
@@ -1057,6 +1060,7 @@ here.
|
||||
* poke ([API](https://apidocs.imgur.com/))
|
||||
* potato ([API](https://apidocs.imgur.com/))
|
||||
* punch ([API](https://apidocs.imgur.com/))
|
||||
* shrek ([API](https://apidocs.imgur.com/))
|
||||
* slap ([API](https://apidocs.imgur.com/))
|
||||
* sleep ([API](https://apidocs.imgur.com/))
|
||||
* wake-up ([API](https://apidocs.imgur.com/))
|
||||
|
||||
@@ -0,0 +1,28 @@
|
||||
const ImgurAlbumCommand = require('../../structures/commands/ImgurAlbum');
|
||||
const { SHREK_ALBUM_ID } = process.env;
|
||||
|
||||
module.exports = class ShrekCommand extends ImgurAlbumCommand {
|
||||
constructor(client) {
|
||||
super(client, {
|
||||
name: 'shrek',
|
||||
aliases: ['sexiest-man-alive', 'sexy'],
|
||||
group: 'random-img',
|
||||
memberName: 'shrek',
|
||||
description: 'Responds with a random image of Shrek, the sexiest man alive.',
|
||||
clientPermissions: ['ATTACH_FILES'],
|
||||
albumID: SHREK_ALBUM_ID,
|
||||
credit: [
|
||||
{
|
||||
name: 'DreamWorks',
|
||||
url: 'https://www.dreamworks.com/',
|
||||
reasonURL: 'https://www.dreamworks.com/movies/shrek',
|
||||
reason: 'Images, Original "Shrek" Movie'
|
||||
}
|
||||
]
|
||||
});
|
||||
}
|
||||
|
||||
generateText() {
|
||||
return 'Trust me, there is no one sexier than this man.';
|
||||
}
|
||||
};
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "xiao",
|
||||
"version": "116.5.3",
|
||||
"version": "116.6.0",
|
||||
"description": "Your personal server companion.",
|
||||
"main": "Xiao.js",
|
||||
"scripts": {
|
||||
|
||||
Reference in New Issue
Block a user