18 lines
393 B
JavaScript
18 lines
393 B
JavaScript
|
const fetch = require("node-fetch");
|
||
|
|
||
|
exports.run = async (message) => {
|
||
|
message.channel.sendTyping();
|
||
|
const imageData = await fetch("http://shibe.online/api/birds");
|
||
|
const json = await imageData.json();
|
||
|
return message.channel.createMessage({
|
||
|
embed: {
|
||
|
color: 16711680,
|
||
|
image: {
|
||
|
url: json[0]
|
||
|
}
|
||
|
}
|
||
|
});
|
||
|
};
|
||
|
|
||
|
exports.aliases = ["birb", "birds", "birbs"];
|