You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jul 22, 2019. It is now read-only.
For that formula we know attack plays an important role in CP, and different pokemons have different base value, that's means 15/14/15 is better than 14/15/15 for lot of pokemons, and if one pokemon's base def is more than base sta, 15/15/14 is better than 15/14/15.
One result is we could calculate the worst CP, perfect CP, and we have current CP
worst CP = BaseAtk * BaseDef^0.5 * BaseSta^0.5 * (ECpM)^2 / 10
perfect CP = (BaseAtk + 15) * (BaseDef + 15)^0.5 * (BaseSta + 15)^0.5 * (ECpM)^2 / 10
current CP = (BaseAtk + IndAtk) * (BaseDef + IndDef)^0.5 * (BaseSta + IndSta)^0.5 * (ECpM)^2 / 10