forked from Supositware/Haha-Yes
27 lines
No EOL
725 B
JavaScript
27 lines
No EOL
725 B
JavaScript
const { Command } = require('discord.js-commando');
|
|
const Discord = require('discord.js');
|
|
const fetch = require('node-fetch')
|
|
module.exports = class RandoCatCommand extends Command {
|
|
constructor(client) {
|
|
super(client, {
|
|
name: 'randocat',
|
|
group: 'fun',
|
|
memberName: 'randocat',
|
|
description: `Show a random cat`,
|
|
});
|
|
}
|
|
|
|
async run(message) {
|
|
|
|
fetch("https://random.dog/woof.json").then((response) => {
|
|
return response.json();
|
|
}).then((response) => {
|
|
const dogEmbed = new Discord.RichEmbed()
|
|
.setColor("#ff9900")
|
|
.setTitle('Meow')
|
|
.setImage(response.file)
|
|
|
|
|
|
message.say(dogEmbed);
|
|
});
|
|
}}; |