forked from Supositware/Haha-Yes
24 lines
No EOL
1.1 KiB
JavaScript
24 lines
No EOL
1.1 KiB
JavaScript
const { Command } = require('discord.js-commando');
|
|
const responseObject = require("../../json/funfact.json");
|
|
const SelfReloadJSON = require('self-reload-json');
|
|
const blacklist = require('../../blacklist');
|
|
module.exports = class FunFactCommand extends Command {
|
|
constructor(client) {
|
|
super(client, {
|
|
name: 'funfact',
|
|
group: 'fun',
|
|
memberName: 'funfact',
|
|
description: `Send some fun fact. If you would like to see some of yours fun fact you can send them to @Supositware | Baguette#8211. There is currently **${Object.keys(responseObject).length}** fun fact.`,
|
|
});
|
|
}
|
|
|
|
async run(message) {
|
|
let blacklistJson = new SelfReloadJSON('json/blacklist.json');
|
|
if(blacklistJson[message.author.id])
|
|
return blacklist(blacklistJson[message.author.id] , message)
|
|
|
|
const number = Object.keys(responseObject).length;
|
|
const funFactNumber = Math.floor (Math.random() * (number - 1 + 1)) + 1;
|
|
message.channel.send(`Fun fact: ${responseObject[funFactNumber]}`);
|
|
}
|
|
}; |