mirror of
https://github.com/UniverseDevGroup/PokeBot.git
synced 2025-01-23 09:51:58 -05:00
23 lines
544 B
JavaScript
23 lines
544 B
JavaScript
exports.run = (bot, msg, args) => {
|
|
const { RichEmbed } = require('discord.js');
|
|
msg.channel.send(
|
|
new RichEmbed()
|
|
.setColor (0x00ae86)
|
|
.setTitle('PokeBot Command List')
|
|
.setDescription('These are the commands you can use. My prefix is `p:`')
|
|
.addField('Core', 'help\nping', true)
|
|
.addField('Utility', 'suggest', true)
|
|
.setFooter('PokeBot Beta')
|
|
);
|
|
};
|
|
|
|
exports.conf = {
|
|
aliases: ['h'],
|
|
guildOnly: true,
|
|
};
|
|
|
|
exports.help = {
|
|
name: 'help',
|
|
description: 'Help.',
|
|
usage: 'help (command)',
|
|
};
|