23 lines
No EOL
567 B
JavaScript
23 lines
No EOL
567 B
JavaScript
const fetch = require("node-fetch");
|
|
const Command = require("../../classes/command.js");
|
|
|
|
class BirdCommand extends Command {
|
|
async run() {
|
|
this.client.sendChannelTyping(this.message.channel.id);
|
|
const imageData = await fetch("http://shibe.online/api/birds");
|
|
const json = await imageData.json();
|
|
return {
|
|
embed: {
|
|
color: 16711680,
|
|
image: {
|
|
url: json[0]
|
|
}
|
|
}
|
|
};
|
|
}
|
|
|
|
static description = "Gets a random bird picture";
|
|
static aliases = ["birb", "birds", "birbs"];
|
|
}
|
|
|
|
module.exports = BirdCommand; |