이세린

updated calm embed up to date in normal js

1 module.exports = { 1 module.exports = {
2 name: 'calm', 2 name: 'calm',
3 description: 'Actual help section', 3 description: 'Actual help section',
4 - execute(message, args){ 4 + execute(message, args, Discord){
5 - message.channel.send("It's okay, I'm here to help! What would you like to do?\n\n;breathe : A gif to sync your breathing to!\n;cute : Some cute animal pictures to banish the bad feels!\n;checklist : I will guide you through an anxiety checklist\n;chat : If you just want a chat with me!"); 5 + const calmEmbed = new Discord.MessageEmbed()
6 + .setColor('#91B2C7')
7 + .setDescription("It's okay, I'm here to help! What would you like to do?")
8 + .addFields(
9 + {name: ';breathe', value: "A gif to sync your breathing to!"},
10 + {name: ';cute', value: "Some cute animal pictures to banish the bad feels!"},
11 + {name: ';checklist', value: "I'll guide you through an anxiety checklist"},
12 + {name: ';chat', value: "If you just want a chat with me, I'm all ears!"}
13 + );
14 + message.channel.send(calmEmbed);
6 } 15 }
7 -}
...\ No newline at end of file ...\ No newline at end of file
16 +}
17 +
18 +//Add reaction event flag later
...\ No newline at end of file ...\ No newline at end of file
......