calm.js 760 Bytes
const Discord = require('discord.js');

module.exports = {
    name: 'calm',
    description: 'Actual help section',
    async run(client, message, args){
        const calm = new Discord.MessageEmbed()
        .setColor('#91B2C7')
        .setDescription("It's okay, I'm here to help! What would you like to do?")
        .addFields(
            {name: ';breathe', value: "A gif to sync your breathing to!"},
            {name: ';cute', value: "Some cute animal pictures to banish the bad feels!"},
            {name: ';checklist', value: "I'll guide you through an anxiety checklist"},
            {name: ';chat', value: "If you just want a chat with me, I'm all ears!"}
        );
        message.channel.send(calm);
    }
}

//Add reaction event flag later