Pokemon-go – Do Pokémon all have different max stats

pokemon-go

Ignoring the power of individual attacks, do Pokémon at their max CP level have different stats (HP, attack, speed, etc)?

In other words, would my adorable Butterfree (stat-wise) finally have a chance to take down a max level Dragonite?

Best Answer

Since the protobuf file has been accepted as valid source to prove STAB I'll use the same file to prove the existence of individual stats.

Butterfree:

Pokemon {
        UniqueId: V0012_POKEMON_BUTTERFREE
        ModelScale: 1.11
        Type1: POKEMON_TYPE_BUG
        Type2: POKEMON_TYPE_FLYING
        Camera {
          DiskRadiusM: 0.999
          CylRadiusM: 0.666
          CylHeightM: 1.11
          CylGroundM: 0.555
          ShoulderModeScale: 0.5
        }
(...)
        Stats {
          BaseStamina: 120
          BaseAttack: 144
          BaseDefense: 144
        }
(...)

Dragonite:

Pokemon {
    UniqueId: V0149_POKEMON_DRAGONITE
    ModelScale: 0.7
    Type1: POKEMON_TYPE_DRAGON
    Type2: POKEMON_TYPE_FLYING
    Camera {
      DiskRadiusM: 0.63
      CylRadiusM: 0.42
      CylHeightM: 1.47
      CylGroundM: 0.595
      ShoulderModeScale: 0.5
    }
(...)
    Stats {
      BaseStamina: 182
      BaseAttack: 250
      BaseDefense: 212
    }
(...)

According to this a Dragonite is indeed stronger than Butterfree.