Predicted Evolved CP:
0
This predictor estimates a Pokémon's post-evolution CP by applying the species-specific evolution multiplier to its current CP.
Key formula: predicted_cp = floor(current_cp × evolution_multiplier)
predicted_cp = floor(current_cp × evolution_multiplier)
Example values: current CP = 523 and evolution multiplier = 2.0.
No. The predictor uses only the current CP and the evolution multiplier. Individual values and trainer level can still affect final in-game performance.
Pokemon GO typically truncates fractional CP after applying multipliers, so using floor() matches the game's rounding behavior.
Check community-maintained databases and resources (for example GamePress or PokéBase) or official patch notes. Multipliers vary by species and evolution family.