woomy/src/commands/dogfact.js

31 lines
843 B
JavaScript
Raw Permalink Normal View History

2020-03-26 04:31:32 +00:00
const fetch = require("node-fetch");
exports.run = async (bot, message, args) => {
2020-03-11 20:47:06 +00:00
message.channel.startTyping();
try{
2020-03-26 04:31:32 +00:00
fetch('https://dog-api.kinduff.com/api/facts')
.then(res => res.json())
.then(json => message.channel.send(`__**Did you know?**__\n ${json.facts[0]}`))
.catch(err => {
message.channel.send(`<:error:466995152976871434> An error has occurred: ${err}`);
});
2020-03-26 04:31:32 +00:00
} catch(err) {
message.channel.send(`<:error:466995152976871434> An error has occurred: ${err}`);
};
2020-03-26 14:04:34 +00:00
message.channel.stopTyping();
};
exports.conf = {
enabled: true,
guildOnly: false,
aliases: ["pupfact"],
permLevel: "User",
requiredPerms: []
};
exports.help = {
name: "dogfact",
category: "Fun",
description: "Sends a fun fact about a doggo.",
usage: "dogfact/pupfact"
};