You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Haha-Yes/commands/fun/randocat.js

27 lines
801 B
JavaScript

const { Command } = require('discord.js-commando');
const Discord = require('discord.js');
const snekfetch = require('snekfetch');
module.exports = class RandoCatCommand extends Command {
constructor(client) {
super(client, {
name: 'randocat',
group: 'fun',
memberName: 'randocat',
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);
}
};