-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathembeds.js
46 lines (45 loc) · 1.3 KB
/
embeds.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
const { MessageEmbed } = require('discord.js');
module.exports = {
REGISTER: [
new MessageEmbed()
.setTitle('Registration')
.setDescription('You do not have a profile.\nUse the button below to create one.')
.setColor('BLURPLE'),
],
REGISTER_SUCCESS: [
new MessageEmbed()
.setTitle('Registration')
.setDescription('Success! You can now use all core features.')
.setColor('BLURPLE'),
],
REGISTER_FAILURE: [
new MessageEmbed()
.setTitle('Registration')
.setDescription('Unfortunately, an error occurred during your registration process.\nYou can try again, or inform a developer.')
.setColor('BLURPLE'),
],
MENU: [
new MessageEmbed()
.setTitle('Interaction Menu')
.setDescription('Choose an option below to continue.')
.setColor('BLURPLE'),
],
MENU_JOB_NOJOB: [
new MessageEmbed()
.setTitle('Job')
.setDescription('You are currently unemployed.')
.setColor('BLURPLE'),
],
MENU_PROFILE_DELETE: [
new MessageEmbed()
.setTitle('Delete Profile')
.setDescription('Are you sure?\nThis action is irreversible and all data you have will be lost.\nUse the button below to proceed.')
.setColor('BLURPLE'),
],
PROFILE_DELETED: [
new MessageEmbed()
.setTitle('Delete Profile')
.setDescription('All of your data has been deleted.')
.setColor('BLURPLE'),
],
};