2021-01-19 14:02:09 -06:00
|
|
|
module.exports = {
|
2022-04-21 18:09:21 -05:00
|
|
|
|
2022-04-18 11:25:40 -05:00
|
|
|
name: require('path').parse(__filename).name,
|
2022-03-18 21:27:09 -05:00
|
|
|
description: 'Get help on anything from commands, to what the bot does! just not your homework..',
|
2022-04-21 20:53:03 -05:00
|
|
|
options: [],
|
2021-01-19 14:02:09 -06:00
|
|
|
|
2022-04-21 23:44:02 -05:00
|
|
|
async parseMessage (client, config, message) {
|
|
|
|
await message.channel.send(this.handle(client, config, message.author));
|
|
|
|
},
|
|
|
|
|
|
|
|
async parseInteraction (client, config, interaction) {
|
|
|
|
await interaction.reply(this.handle(client, config, interaction.user));
|
|
|
|
},
|
|
|
|
|
|
|
|
handle (_, config, user) {
|
|
|
|
return {
|
2022-04-21 18:09:21 -05:00
|
|
|
embeds: [{
|
|
|
|
title: 'HELP! SEYMOUR! THE BOT IS ON FIRE!',
|
|
|
|
description: 'Get help on anything from commands, to what the bot does! just not your homework..',
|
|
|
|
color: 9442302,
|
|
|
|
footer: {
|
2022-04-21 23:44:02 -05:00
|
|
|
icon_url: user.displayAvatarURL(),
|
2022-04-21 18:09:21 -05:00
|
|
|
text: `${config.footerTxt} | No mother it's just the northern lights`
|
2022-03-18 21:27:09 -05:00
|
|
|
},
|
2022-04-21 18:09:21 -05:00
|
|
|
fields: [
|
|
|
|
{
|
|
|
|
name: 'Command List',
|
|
|
|
value: '[Click here!](https://github.com/IDeletedSystem64/anitrox/blob/dev/commands.md)'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: '...Or is the bot actually on fire?',
|
|
|
|
value: 'Join the [support server!](https://discord.gg/grebRGsBZ3)'
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}]
|
2022-04-21 23:44:02 -05:00
|
|
|
};
|
2022-03-26 03:33:18 -05:00
|
|
|
}
|
2022-04-21 18:09:21 -05:00
|
|
|
};
|