-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
config-example.json
55 lines (55 loc) · 1.06 KB
/
config-example.json
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
{
"internal": {
"token": "your-discord-token",
"owner_id": "your-user-id",
"client_id": "your-bot-id",
"guild_id": "your-server-id"
},
"settings": {
"prefix": "!",
"heat_max": 100,
"heat_per_msg": 10,
"cooldown": 30000,
"chat_channel": "your-general-channel-id",
"bot_channel": "your-bot-channel-id",
"win_max": 100,
"win_min": 50,
"currency": {
"name": "ecoins",
"emoji": "💰"
}
},
"commands": {
"daily": {
"amount": 1000,
"streak": 0
},
"beg": {
"positive_max": 100,
"positive_min": 10,
"negative_max": 0,
"negative_min": -20
},
"search": {
"min": 10,
"max": 100,
"wallet_lost": 25
},
"work": {
"min": 50,
"max": 100,
"wallet_lost": 10
}
},
"apis": {
"wordnik": "http://api.wordnik.com/v4/words.json/randomWords?api_key=YOUR_API_KEY&?minCorpusCount=0&",
"opentdb": "https://opentdb.com/api.php?amount=1&type=multiple&encode=base64"
},
"modules": {
"math_equation": true,
"speed_clicker": true,
"speed_typer": true,
"unscramble_the_word": true,
"trivia_night": true
}
}