forked from funnbot/Nitro-Rewrite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.js
248 lines (233 loc) · 5.4 KB
/
config.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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
module.exports = {
//Me
FUNNBOT: "163735744995655680",
//How many shards to spawn
SHARDS: 1,
MAXFILTERS: 30,
DBNAME: "Nitro",
//The Currency
CUR: {
toString() {
return "USD"
},
code: ":dollar:",
sym: "$"
},
//Channels i need
CHANNELS: {
STATUS: "341048367737995274"
},
/**
* Database table structure
* @typedef {Array} TABLES
*/
TABLES: {
Prefix: ".",
Alias: {},
UserPerm: false,
Tag: {
tags: {},
hideuser: false
},
Moderation: {
channel: null,
cases: [],
mutes: {},
tempbans: {}
},
Economy: {
users: {},
},
IRC: { // Needs change feed
state: "off",
},
Trivia: 0, // Needs change feed
Game: {},
MemberLog: {
channel: null,
join: null,
leave: null
},
Filter: {
filters: {},
filterRegExp: null,
filterpacks: {},
exc: {},
channel: null,
users: {},
strikes: null,
ban: null,
kick: null
},
Usage: {},
Nickname: {
boost: null,
auto: null,
mention: null,
curse: null
}
},
HELP: {
config: [
"Configuration",
"Change basic configuration for Nitro."
],
mod: [
"Moderation",
"Manage users who are acting up."
],
/*games: [
"Games",
"Play games with Nitro."
],
fun: [
"Fun",
"Silly and random commands."
],*/
image: [
"Image",
"Memes and image processing."
],
memberlog: [
"Member Log",
"Welcome and say goodbye to users."
],
donator: [
"Donator",
"View commands made for supporters."
],
poll: [
"Polls",
"Create custom polls for users to vote on."
],
tag: [
"Tags",
"Store custom text and make it easy to access."
],
irc: [
"IRC",
"Send messages to other servers."
],
economy: [
"Economy",
"Manage your money."
],
trivia: [
"Trivia",
"Play trivia against your friends."
],
help: [
"Tutorials",
"Learn how to use Nitro."
]
},
//The "Companies" and their keys used in stock market
STOCKS: {
FunnCorp: {
key: "FNN",
base: 38.90,
},
Nitro: {
key: "NTO",
base: 11.41
},
MopBot: {
key: "MPB",
base: 9.16
},
Discord: {
key: "DSC",
base: 5.98
},
Pancake: {
key: "PAN",
base: 3.91
},
Martin: {
key: "MTN",
base: 1.62
},
Alfred: {
key: "ALF",
base: 0.55
}
},
//Numbers
NUMBERS: [
":zero:",
":one:",
":two:",
":three:",
":four:",
":five:",
":six:",
":seven:",
":eight:",
":nine:",
":one::zero:",
":one::one:",
":one::two:",
":one::three:",
":one::four:",
":one::five:",
":one::six",
":one::seven",
":one::eight",
":one::nine:",
":two::zero:",
":two::one:",
":two::two:",
":two::three:",
":two::four:",
":two::five:"
],
//Map permission names to a easier to read format
PERMISSIONS: {
ADMINISTRATOR: "Administrator",
CREATE_INSTANT_INVITE: "Create Instant Invite",
KICK_MEMBERS: "Kick Members",
BAN_MEMBERS: "Ban Members",
MANAGE_CHANNELS: "Manage Channels",
MANAGE_GUILD: "Manage Server",
ADD_REACTIONS: "Add Reactions",
VIEW_AUDIT_LOG: "View Audit Log",
READ_MESSAGES: "Read Messages",
SEND_MESSAGES: "Send Messages",
SEND_TTS_MESSAGES: "Send TTS Messages",
MANAGE_MESSAGES: "Manage Messages",
EMBED_LINKS: "Embed Links",
ATTACH_FILES: "Attach Files",
READ_MESSAGE_HISTORY: "Read Message History",
MENTION_EVERYONE: "Mention Everyone",
USE_EXTERNAL_EMOJIS: "Use External Emojis",
CONNECT: "Voice Connect",
SPEAK: "Voice Speak",
MUTE_MEMBERS: "Voice Mute Members",
DEAFEN_MEMBERS: "Voice Deafen Members",
MOVE_MEMBERS: "Voice Move Members",
USE_VAD: "Use Voice Activity",
CHANGE_NICKNAME: "Change Nickname",
MANAGE_NICKNAMES: "Manage Nicknames",
MANAGE_ROLES: "Manage Roles",
MANAGE_WEBHOOKS: "Manage Webhooks",
MANAGE_EMOJIS: "Manage Emojis"
},
//Colors used in embed.randomColor
COLORS: [
"#03A9F4",
"#039BE5",
"#0288D1",
"#0277BD",
"#2196F3",
"#1E88E5",
"#1976D2",
"#2962FF",
"#448AFF",
"#2979FF",
"#2196F3",
"#1E88E5",
"#1976D2",
"#1565C0",
"#0091EA"
]
}