Show random cat and random dog

Commando
loicbersier 6 years ago
parent 7b3bedc08c
commit 5a268c9f2f

@ -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);
}
};

@ -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…
Cancel
Save