Skip to content
This repository has been archived by the owner on Jul 30, 2020. It is now read-only.

Gym Strategy

jjskuld edited this page Sep 22, 2016 · 7 revisions

Deploy Pokemon

From ver. 0.9.8.7 and up, the ability to deploy a Pokemon at an open gym was added.
Whenever there is a gym slot available, your Pokemon will be deployed automatically.

Remember!
If you run a brand new account, and never choose a team, choose your team in the gym config.
The default team color is Yellow.

"GymConfig": {
   "Enable": true,
   "MaxDistance": 1500.0,
   "DefaultTeam": "Yellow", <--- choose your team
   "MaxCPToDeploy": 1000,
   "MaxLevelToDeploy": 16,
   "VisitTimeout": 60,
   "UseRandomPokemon": false,
   "NumberOfTopPokemonToBeExcluded": 10
},

Configuration Details

  1. Enable option controls whether or not gyms are visited.

Gyms and pokestops are both visited

"GymConfig": {
    "Enable": true
}

Only pokestops are visited

"GymConfig": {
    "Enable": false
}
  1. PrioritizeGymOverPokestop controls whether or not gyms are prioritized over pokestops. The default value is true.

Visits all gyms first, then move on to pokestops

"GymConfig": {
    "Enable": true,
    "PrioritizeGymOverPokestop": true
}

Visits both pokestops and gyms, whichever one is closer

"GymConfig": {
    "Enable": true,
    "PrioritizeGymOverPokestop": false
}

Gym Battle

.... in progess (under construction)