-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathconfig.js
More file actions
73 lines (68 loc) · 2.41 KB
/
config.js
File metadata and controls
73 lines (68 loc) · 2.41 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
72
73
// --- WIKI CONFIGURATION ---
const BOT_NAME = "Wiki Guy";
const WIKIS = {
"super-blox-64": {
name: "SUPER BLOX 64!",
baseUrl: "https://sb64.conecorp.cc",
apiEndpoint: "https://sb64.conecorp.cc/w/api.php",
articlePath: "https://sb64.conecorp.cc/",
prefix: "sb64",
emoji: "1472436401680158741"
},
"superstar-racers": {
name: "Superstar Racers",
baseUrl: "https://sr.conecorp.cc",
apiEndpoint: "https://sr.conecorp.cc/w/api.php",
articlePath: "https://sr.conecorp.cc/",
prefix: "sr",
emoji: "1472436382998728714"
},
"a-blocks-journey": {
name: "A Block's Journey",
baseUrl: "https://abj.conecorp.cc",
apiEndpoint: "https://abj.conecorp.cc/w/api.php",
articlePath: "https://abj.conecorp.cc/",
prefix: "abj",
emoji: "1472436415760568460"
}
};
const CATEGORY_WIKI_MAP = {
"1286781988669231166": "super-blox-64",
"1389381096436793484": "superstar-racers",
"1454904248943771748": "a-blocks-journey"
};
const toggleContribScore = true;
const STATUS_INTERVAL_MS = 5 * 60 * 1000;
// --- DISCORD STATUSES ---
const STATUS_OPTIONS = [
{ type: 4, text: "just send [[a page]] or {{a page}}!" },
{ type: 4, text: "now supporting 3 wikis!" },
{ type: 4, text: "use [[sb64:page]] for SUPER BLOX 64! embedding" },
{ type: 4, text: "use [[sr:Page]] for Superstar Racers embedding" },
{ type: 4, text: "use [[abj:Page]] for A Block's Journey embedding" },
{ type: 4, text: "abj.conecorp.cc" },
{ type: 4, text: "sr.conecorp.cc" },
{ type: 4, text: "sb64.conecorp.cc" },
{ type: 4, text: "conecorp.cc" },
{ type: 4, text: "₊˚⊹⋆" },
{ type: 4, text: "⋆。𖦹°⭒˚。⋆" },
{ type: 4, text: "✶⋆.˚" },
{ type: 4, text: "°˖➴" },
{ type: 0, text: "SUPER BLOX 64!" },
{ type: 0, text: "Superstar Racers" },
{ type: 0, text: "A Block's Journey" },
{ type: 5, text: "SUPER BLOX 64!" },
{ type: 5, text: "Superstar Racers" },
{ type: 5, text: "A Block's Journey" },
{ type: 3, text: "A Block's Journey teaser trailer" },
{ type: 4, text: "edit your message and my embed will too!" },
{ type: 4, text: "react with :wastebasket: on my messages & i'll delete!" },
];
module.exports = {
BOT_NAME,
WIKIS,
CATEGORY_WIKI_MAP,
toggleContribScore,
STATUS_INTERVAL_MS,
STATUS_OPTIONS
};