-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdataModule.js
More file actions
70 lines (65 loc) · 2.99 KB
/
Copy pathdataModule.js
File metadata and controls
70 lines (65 loc) · 2.99 KB
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
// Import stuff
const Discord = require('discord.js')
// Meeting embed
const meetingEmbed = new Discord.EmbedBuilder()
.setColor(Discord.Colors.Blue)
.setTitle('Meeting information')
.setAuthor({
name: 'KeyClubBot',
iconURL: 'https://i.imgur.com/r2SHWqW.png'
})
.setDescription('All the information you need for meetings!\n\u200B')
.setThumbnail('https://i.imgur.com/r2SHWqW.png')
.addFields(
{
name: 'Meeting Notes',
value: 'All the meeting plans, notes, etc can be found [here](https://drive.google.com/drive/folders/1F4rkhILIqrU4RSkWVNX6Alsia-Oq-QPU?usp=share_link).'
}
)
.setTimestamp()
.setFooter({
text: 'Meeting information',
iconURL: 'https://i.imgur.com/r2SHWqW.png'
})
// Help embed
const helpEmbed = new Discord.EmbedBuilder()
.setColor(Discord.Colors.Blue)
.setTitle('Key Club Help')
.setAuthor({
name: 'KeyClubBot',
iconURL: 'https://i.imgur.com/r2SHWqW.png'
})
.setDescription('This embed should provide you a list of information you need.\n\u200B')
.setThumbnail('https://i.imgur.com/r2SHWqW.png')
.addFields(
{
name: 'KeyClubBot Commands',
value: '**/help** - displays this embed\n' +
'**/meetinginfo** - displays information about previous meeting notes, future meetings, etc\n' +
'**/ping** - a test command to see if the bot is online\n' +
'**/suggest** - provide a suggestion for the executives of the club to review & opens a ticket for further discussion\n' +
'**/complain** - provide a complaint for the executives of the club to review & opens a ticket for further discussion\n' +
'**/wallet** - provide an embed showing your financial status\n' +
'**/joke** - provides a family friendly joke with type of your choice\n' +
'**/maketicket** - make a custom ticket\n' +
'**/closeticket** - closes the ticket the command was ran in (mod only)\n' +
'**/bulkdelete** - bulk deletes a set number of messages (mod only)\n'
}
)
.addFields(
{
name: '\u200B\nWhat is Key Club?',
value: 'Key Club is an international, student-led organization that provides its members with opportunities to provide service, build character and develop leadership. Basically Key Club aims to cooperate with school principals and teachers to provide high school students with invaluable experience in living and working together and to prepare them for useful citizenship. Our members develop initiative and leadership skills by serving their schools and communities. '
}
)
.setTimestamp()
.setFooter({
text: 'Key Club help',
iconURL: 'https://i.imgur.com/r2SHWqW.png'
})
const data = {
meetingEmbedData: meetingEmbed,
helpEmbedData: helpEmbed
}
// Export data
module.exports = data