Skip to content

Instantly share code, notes, and snippets.

@pingec
Last active August 6, 2016 18:13
Show Gist options
  • Save pingec/9aa0826583f23f97c658af93d05136f7 to your computer and use it in GitHub Desktop.
Save pingec/9aa0826583f23f97c658af93d05136f7 to your computer and use it in GitHub Desktop.
Pokemon CP, IV etc,

Let's say we have 2 pokemons of the same type. Their CP will depend on the following values:

  • IV (IndividualStamina, IndividualAttack, IndividualDefense)
  • CpMultiplier
  • AdditionalCpMultiplier

These values, together with move types, weight, height are what makes your pokemon unique.

Mechanisms that change these values:

A perfect pokemon at catch time would be one that has

  • 100% IV (all three values are 15)
  • CpModifier is 0.7903 (caught at player level 40)
  • Best move combo/type

My recommendation on pokemons to keep: Long-term (for powerups)

  • 90% or more IV
  • CpModifier higher than 0.7 (caught at level 28 or higher)-

Later you can additonally filter these based on move sets.

Short-term (just so your pokemon inventory is not empty, do not power-up, not for end-game)

  • CP > 1000 or some other value you like
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment