woomy/commands/8ball.js
2020-04-22 17:53:12 +02:00

24 lines
674 B
JavaScript

// Copyright 2020 Emily J. / mudkipscience and contributors. Subject to the AGPLv3 license.
exports.conf = {
enabled: true,
guildOnly: false,
aliases: [],
permLevel: 'User',
requiredPerms: [],
cooldown: 2000
}
exports.help = {
name: '8ball',
category: 'Fun',
description: 'Retrieves an answer to your question from the almighty 8ball.',
usage: '`8ball [question]` - Retrieves an answer from 8ball based on the question or sentence provided.',
parameters: '`question` - the question you want to ask'
}
const responses = require('../assets/json/8ball.json').responses
exports.run = async (client, message, args, level, data) => {
// Finish later
}