forked from jekirl/poketrainer
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.json.example
More file actions
46 lines (46 loc) · 1.22 KB
/
config.json.example
File metadata and controls
46 lines (46 loc) · 1.22 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
{
"accounts": [
{
"auth_service": "google",
"username": "test@gmail.com",
"password": "password",
"location": "University of Southern California, Los Angeles, CA",
"USE_GOOGLE": true,
"GMAPS_API_KEY": "some api key here",
"MIN_KEEP_IV": 50,
"KEEP_CP_OVER": 500,
"STEP_SIZE": 100,
"EXPERIMENTAL": true,
"SKIP_VISITED_FORT_DURATION": 600,
"SPIN_ALL_FORTS": true,
"STAY_WITHIN_PROXIMITY": 500,
"MIN_ITEMS": {
"ITEM_POTION": 10,
"ITEM_SUPER_POTION": 10,
"ITEM_HYPER_POTION": 10,
"ITEM_MAX_POTION": 20,
"ITEM_BLUK_BERRY": 10,
"ITEM_NANAB_BERRY": 10,
"ITEM_REVIVE": 10,
"ITEM_MAX_REVIVE": 10,
"ITEM_RAZZ_BERRY": 10
},
"POKEMON_EVOLUTION": {
"PIDGEY": 12,
"WEEDLE":12
},
"MIN_SIMILAR_POKEMON": 1,
"KEEP_POKEMON_NAMES": ["MEWTWO"],
"THROW_POKEMON_NAMES": ["PIDGEY"],
"MAX_CATCH_ATTEMPTS": 10
},
{
"auth_service": "ptc",
"username": "someusername",
"password": "password",
"location": "University of Southern California, Los Angeles, CA",
"USE_GOOGLE": false,
"MIN_KEEP_IV": 70
}
]
}