generated from Liammmmmmmm/discord-js-template-v14
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsettings.js
69 lines (64 loc) · 1.71 KB
/
settings.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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
const settings = {
development: {
enabled: true, // If true, the bot will register all application commands to a specific guild (not globally).
guildIds: ["876729531166240808", "450730266479165440"], // 1021633276542193755
debug: true, // Display or not more info
logFile: true
},
commands: {
prefix: "?" // Default prefix of the command messages.
},
users: {
ownerId: "516993045724528663", // The bot owner ID, which is you.
},
messages: { // Messages when language is unreachable.
defaultLang: "fr",
DATABASE_ERROR: "A database error orccured"
},
bot: { // Useless if you don't use webhooks
name: "Your bot name",
icon: "https://c.clc2l.com/t/d/i/discord-4OXyS2.png"
},
status: {
statusMessages: [
{ name: 'Regarde mes waifus', type: 3 },
{ name: 'Reflechis au sens de la vie', type: 4 },
],
switch_delay: 10000,
},
game: {
money: {
symbol: "$",
base: 500,
},
}
}
const globalEmbedHeader = {
author: "%SERVER_NAME%",
authorImageURL: "%SERVER_IMAGE%",
authorURL: "https://exemple.com",
thumbnail: ""
}
const globalEmbedFooter = {
text: "%USER_NAME%",
imageURL: "%USER_IMAGE%",
timestamp: true,
}
const embeds = {
primary: {
color: "#dbaf00",
header: globalEmbedHeader,
footer: globalEmbedFooter,
},
slider: {
color: "#00b3db",
footer: {
timestamp: true,
},
buttons: {
previous: "859729184770097173",
next: "859729121398751232",
}
},
}
module.exports = { settings, embeds };