knowledge!

This commit is contained in:
carol 2020-01-27 11:24:17 -08:00 committed by GitHub
parent 20b3b1a6ae
commit 9aff1f1d73
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 36 additions and 0 deletions

View File

@ -0,0 +1,36 @@
exports.run = async (client, message, args, level) => {
const data = await this.fetchURL("https://uselessfacts.jsph.pl/random.json");
return message.channel.send({ embed: client.embed(`Fun fact!`, data.text, [
{
name: "Source",
value: data.source,
inline: true
},
{
name: "Source URL",
value: data.source_url,
inline: true
}
],
{
author: message.author.tag,
authorIcon: message.author.avatarURL,
thumbnail: "https://i.imgur.com/IxosIBh.png"
})
});
};
exports.conf = {
enabled: true,
guildOnly: false,
aliases: [],
permLevel: "User"
};
exports.help = {
name: "randomfact",
category: "Jokes",
description: "Knowledge is power!",
usage: "randomfact"
};