forked from mariusbegby/cadence-discord-bot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.json.example
64 lines (64 loc) · 1.89 KB
/
config.json.example
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
{
"clientId": "Your bot Application ID here.",
"token": "Your bot auth token here.",
"systemServerGuildId": "Your Discord Server ID for system commands here.",
"botOwnerClientId": "Your own Discord user ID to access system commands here.",
"embedColors": {
"colorSuccess": "#23A55A",
"colorWarning": "#F0B232",
"colorError": "#F23F43",
"colorInfo": "#5865F2",
"colorNote": "#80848E"
},
"filterThreadAmount": "4",
"filterList": [
{
"label": "Bass boost",
"value": "bassboost_low",
"description": "Boost the bass of the audio.",
"emoji": "🔉"
},
{
"label": "Bass boost high",
"value": "bassboost",
"description": "Boost the bass of the audio a lot.",
"emoji": "🔊"
},
{
"label": "Night core",
"value": "nightcore",
"description": "Speed up the audio (higher pitch).",
"emoji": "🐱"
},
{
"label": "Lo-fi",
"value": "lofi",
"description": "Low fidelity effect (lower quality).",
"emoji": "📻"
},
{
"label": "Vaporwave",
"value": "vaporwave",
"description": "Slow down the audio (lower pitch).",
"emoji": "🌸"
},
{
"label": "Ear rape",
"value": "earrape",
"description": "Extremely loud and distorted audio.",
"emoji": "👂"
},
{
"label": "8D",
"value": "8D",
"description": "Simulate 8D audio effect (surround).",
"emoji": "🎧"
},
{
"label": "Treble",
"value": "treble",
"description": "Increase the high frequencies.",
"emoji": "🎼"
}
]
}