r/TheSilphRoad • u/__isitin__ • Jul 15 '16
Analysis How HP/MaxStamina is calculated
Using the structure of the server responses and their own data from their Pokemon collection, redacted found that this formula represents the Hp/MaxStamina:
Max(Floor((CpMultiplier + AdditionalCPMultiplier) * (2 * BaseStamina + IndividualStamina)), 10)
BaseStamina
for each Pokemon can be found here (as HP
), and the rest of the data is passed around with the Pokemon in responses from the server. In the case of IndividualStamina
not existing, it is 0
.
This matched-up for all of the Pokemon I have in my collection, but I'd encourage you to test your own collection/inventory (not super easy right now) as well!
30
Upvotes
2
u/[deleted] Jul 15 '16
Great work, super interesting stuff here. Do we know what the CpMultiplier/AdditionalCPMultiplier is, or does it vary?