Haha-Yes/commands/fun/funfact.js

24 lines
1 KiB
JavaScript
Raw Normal View History

2018-09-09 01:17:11 +02:00
const { Command } = require('discord.js-commando');
2018-09-20 17:50:28 +02:00
const responseObject = require("../../json/funfact.json");
2018-11-28 01:35:26 +01:00
const SelfReloadJSON = require('self-reload-json');
2018-12-05 00:52:21 +01:00
2018-09-09 01:17:11 +02:00
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.`,
2018-09-09 01:17:11 +02:00
});
}
2018-09-09 21:32:08 +02:00
async run(message) {
2018-12-06 23:01:40 +01:00
let blacklistJson = new SelfReloadJSON('./json/blacklist.json');
2018-11-28 01:35:26 +01:00
if(blacklistJson[message.author.id])
return blacklist(blacklistJson[message.author.id] , message)
const number = Object.keys(responseObject).length;
2018-09-09 01:17:11 +02:00
const funFactNumber = Math.floor (Math.random() * (number - 1 + 1)) + 1;
message.channel.send(`Fun fact: ${responseObject[funFactNumber]}`);
}
};