8ball discord.js
const config = require("../../config")
const { ownerID } = require('../../owner.json')
const ball = require("8ball.js");
// Creating an array with responses.
const Responses = ["Response1", "Response2", "Response3", "Response4"];
module.exports = {
config: {
name: "8Ball",
description: "Send some wired stuff",
aliases: ['8ball']
},
run: async(bot, message, args) => {{
message.channel.send(Responses[Math.floor(Math.random() * Responses.length)]);
}
}};