forked from Supositware/Haha-Yes
Show random cat and random dog
This commit is contained in:
parent
7b3bedc08c
commit
5a268c9f2f
2 changed files with 54 additions and 0 deletions
27
commands/fun/randocat.js
Normal file
27
commands/fun/randocat.js
Normal file
|
@ -0,0 +1,27 @@
|
||||||
|
const { Command } = require('discord.js-commando');
|
||||||
|
const Discord = require('discord.js');
|
||||||
|
const snekfetch = require('snekfetch');
|
||||||
|
module.exports = class CatCommand extends Command {
|
||||||
|
constructor(client) {
|
||||||
|
super(client, {
|
||||||
|
name: 'cat',
|
||||||
|
group: 'fun',
|
||||||
|
memberName: 'cat',
|
||||||
|
description: `Show a random cat`,
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
async run(message, { city }) {
|
||||||
|
const { body } = await snekfetch.get(`http://aws.random.cat/meow`);
|
||||||
|
if (body.cod == '404') {
|
||||||
|
return message.say(`No results found for **${city}**`);
|
||||||
|
}
|
||||||
|
const dogEmbed = new Discord.RichEmbed()
|
||||||
|
.setColor("#ff9900")
|
||||||
|
.setTitle('Meow')
|
||||||
|
.setImage(body.file)
|
||||||
|
|
||||||
|
|
||||||
|
message.say(dogEmbed);
|
||||||
|
}
|
||||||
|
};
|
27
commands/fun/randodog.js
Normal file
27
commands/fun/randodog.js
Normal file
|
@ -0,0 +1,27 @@
|
||||||
|
const { Command } = require('discord.js-commando');
|
||||||
|
const Discord = require('discord.js');
|
||||||
|
const snekfetch = require('snekfetch');
|
||||||
|
module.exports = class DoggyCommand extends Command {
|
||||||
|
constructor(client) {
|
||||||
|
super(client, {
|
||||||
|
name: 'doggy',
|
||||||
|
group: 'fun',
|
||||||
|
memberName: 'doggy',
|
||||||
|
description: `Show a random doggy`,
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
async run(message, { city }) {
|
||||||
|
const { body } = await snekfetch.get(`https://random.dog/woof.json`);
|
||||||
|
if (body.cod == '404') {
|
||||||
|
return message.say(`No results found for **${city}**`);
|
||||||
|
}
|
||||||
|
const dogEmbed = new Discord.RichEmbed()
|
||||||
|
.setColor("#ff9900")
|
||||||
|
.setTitle('Woof')
|
||||||
|
.setImage(body.url)
|
||||||
|
|
||||||
|
|
||||||
|
message.say(dogEmbed);
|
||||||
|
}
|
||||||
|
};
|
Loading…
Reference in a new issue