EcoBot/commands/fox.js
2021-11-23 00:37:00 +01:00

13 lines
351 B
JavaScript

module.exports = {
api: {
name: "fox",
description: "Sends a random image of a fox"
},
run: (int, client, index) => {
const axios = require("axios").default;
axios("https://randomfox.ca/floof/").then(res => {
console.log(res.data.image);
int.reply({embeds: [{title: "Fox", image: {url: res.data.image}, color: 0xFFA500}]});
});
}
}