diff --git a/.env.example b/.env.example index 867b3421..25039d45 100644 --- a/.env.example +++ b/.env.example @@ -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= diff --git a/README.md b/README.md index 53b4f98f..ece39bc2 100644 --- a/README.md +++ b/README.md @@ -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/)) diff --git a/commands/random-img/shrek.js b/commands/random-img/shrek.js new file mode 100644 index 00000000..2b17c120 --- /dev/null +++ b/commands/random-img/shrek.js @@ -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.'; + } +}; diff --git a/package.json b/package.json index 5b426f7a..817195f4 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "xiao", - "version": "116.5.3", + "version": "116.6.0", "description": "Your personal server companion.", "main": "Xiao.js", "scripts": {