-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconstants.js
More file actions
71 lines (71 loc) · 2.3 KB
/
constants.js
File metadata and controls
71 lines (71 loc) · 2.3 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
71
const suggestionSchema = {
"section": "placeholder",
"description": "placeholder",
"messageID": "placeholder",
"user": "placeholder"
}
const categorySchema = {
"embedMessage": {},
"categoryTitle": "placeholder",
"messageID": "placeholder",
"category": "placeholder"
}
const sbAlias = ["<#772942075301068820>", "sb", "skyblock", 'Skyblock', 'SB', 'SkyBlock']
const dAlias = ["<#772944394542121031>","d", "dungeons", "dung", "Dungeons", "D", "dungeon", "Dungeon", "Dung"]
const restrictedCmds = ['addcategory', 'addsection', 'approve', 'delete', 'edit', 'start', 'pnda', 'style', 'raw']
const verifiedRoles = ['Verified','VIP', 'VIP+', 'MVP', 'MVP+', 'MVP++']
const cooldownCmds = ['sbsuggest', 'dsuggest', 'start']
const yesAlias = ["yes", "Yes", "YES", "y", 'Y']
const noAlias = ["no", "NO", "No", "n", "N"]
const cancelAlias = ["cancel", "Cancel", "CANCEL", "c", "C"]
const nonSkycommCmds = ["help", "config", "listcategories", "search"]
const skycommAffiliates = ["591143899335229450", "450878205294018560", "594851373229670422", "606681165524369408"]
const skycommPartners = ["652148034448261150", "571031549550788618", "727426780381577291"]
const adEmbed = {
color: 0x4ea8de,
title: 'SkyBlock Guides',
fields: [
{
name: 'Want to help improve the guide?',
value: "Join the [Skyblock Community](https://discord.gg/8tYAVEU)",
},
{
name: 'Using Bot:',
value: "To see the list of all commands, do `g!help`"
},
],
footer: {
text: 'Skyblock Guides',
icon_url: "https://i.imgur.com/184jyne.png",
},
}
const templateEmbed = {
color: 0x4ea8de,
title: 'Placeholder',
description: "",
fields: [{
name: "_ _",
value: "_ _"
}],
footer: {
text: 'Skyblock Guides',
icon_url: "https://i.imgur.com/184jyne.png",
},
}
module.exports = {
suggestionSchema: suggestionSchema,
categorySchema: categorySchema,
sbAlias: sbAlias,
dAlias: dAlias,
yesAlias: yesAlias,
noAlias: noAlias,
cancelAlias: cancelAlias,
restrictedCmds: restrictedCmds,
verifiedRoles: verifiedRoles,
cooldownCmds: cooldownCmds,
nonSkycommCmds: nonSkycommCmds,
adEmbed: adEmbed,
skycommAffiliates: skycommAffiliates,
skycommPartners: skycommPartners,
templateEmbed: templateEmbed
}