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