Fox Command

This commit is contained in:
Daniel Odendahl Jr
2018-07-10 02:52:39 +00:00
parent 3450d6a8c8
commit 4083427231
3 changed files with 26 additions and 2 deletions
+2 -1
View File
@@ -15,7 +15,7 @@ You can invite the bot to your server using
Be sure to also join the [home server](https://discord.gg/sbMe32W) for
information and support.
## Commands (292)
## Commands (293)
### Utility:
* **prefix**: Shows or sets the command prefix.
@@ -67,6 +67,7 @@ information and support.
* **fact**: Responds with a random fact.
* **fidget**: Responds with a random image of Fidget.
* **fortune**: Responds with a random fortune.
* **fox**: Responds with a random fox image.
* **joke**: Responds with a random joke.
* **kiss-marry-kill**: Determines who to kiss, who to marry, and who to kill.
* **magic-conch**: Asks your question to the Magic Conch.
+23
View File
@@ -0,0 +1,23 @@
const Command = require('../../structures/Command');
const request = require('node-superfetch');
module.exports = class FoxCommand extends Command {
constructor(client) {
super(client, {
name: 'fox',
group: 'random',
memberName: 'fox',
description: 'Responds with a random fox image.',
clientPermissions: ['ATTACH_FILES']
});
}
async run(msg) {
try {
const { body } = await request.get('https://randomfox.ca/floof/');
return msg.say({ files: [body.image] });
} catch (err) {
return msg.reply(`Oh no, an error occurred: \`${err.message}\`. Try again later!`);
}
}
};
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "xiao",
"version": "84.2.1",
"version": "84.3.0",
"description": "Your personal server companion.",
"main": "Xiao.js",
"scripts": {