Shrek Command

This commit is contained in:
Dragon Fire
2020-06-08 00:18:13 -04:00
parent b49d2f4607
commit 858b8194ad
4 changed files with 35 additions and 2 deletions
+1
View File
@@ -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=
+5 -1
View File
@@ -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/))
+28
View File
@@ -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
View File
@@ -1,6 +1,6 @@
{
"name": "xiao",
"version": "116.5.3",
"version": "116.6.0",
"description": "Your personal server companion.",
"main": "Xiao.js",
"scripts": {