PokéBase - Pokémon Q&A
1 vote
2,347 views

If my Pokemon are lower or higher than Level 50 how are the stats calculated in Battle Frontier? If I EV train after level 50 will I still get the increase in base stats?

by

2 Answers

0 votes
 
Best answer

Look at this, and see if you understand it. :3

Hope I helped. :)

by
selected by
0 votes

NATURE = [ 0.9, 1.0, 1.1 ]

HP ================ (( 2( BASE + 50 ) + IV + EV/4 ) ( LEVEL / 100 ) + 10)
Attack ====== NATURE(( 2( BASE ) + IV + EV/4 )
( LEVEL / 100 ) + 5)
Defense ===== NATURE(( 2( BASE ) + IV + EV/4 ) ( LEVEL / 100 ) + 5)
Sp.Attack === NATURE(( 2( BASE ) + IV + EV/4 )
( LEVEL / 100 ) + 5)
Sp.Defense == NATURE(( 2( BASE ) + IV + EV/4 ) ( LEVEL / 100 ) + 5)
Speed ======= NATURE(( 2( BASE ) + IV + EV/4 )
( LEVEL / 100 ) + 5)

Infernape: Adamant, 6 IVs, EVs (6 HP, 252 Att., 252 Speed)
NATURE = [ 0.9, 1.0, 1.1 ] = [ Sp.Attack, others, Attack ]

HP ============= (( 2( 76 + 50 ) + 31 + 1.5 ) ( 1 / 100 ) + 10) == 12
Attack ====== 1.1(( 2( 104 ) + 31 + 63 )
( 1 / 100 ) + 5) == 8
Defense ======== (( 2( 71 ) + 31 + 0 ) ( 1 / 100 ) + 5) == 6
Sp.Attack === 0.9(( 2( 104 ) + 31 + 0 )
( 1 / 100 ) + 5) == 6
Sp.Defense ===== (( 2( 71 ) + 31 + 0 ) ( 1 / 100 ) + 5) == 6
Speed ========== (( 2( 108 ) + 31 + 63 )
( 1 / 100 ) + 5) == 8 Level 1

HP ============= (( 2( 76 + 50 ) + 31 + 1.5 ) ( 50 / 100 ) + 10) == 152
Attack ====== 1.1(( 2( 104 ) + 31 + 63 )
( 50 / 100 ) + 5) == 171
Defense ======== (( 2( 71 ) + 31 + 0 ) ( 50 / 100 ) + 5) == 91
Sp.Attack === 0.9(( 2( 104 ) + 31 + 0 )
( 50 / 100 ) + 5) == 111
Sp.Defense ===== (( 2( 71 ) + 31 + 0 ) ( 50 / 100 ) + 5) == 91
Speed ========== (( 2( 108 ) + 31 + 63 )
( 50 / 100 ) + 5) == 160 Level 50

HP ============= (( 2( 76 + 50 ) + 31 + 1.5 ) ( 100 / 100 ) + 10) == 294
Attack ====== 1.1(( 2( 104 ) + 31 + 63 )
( 100 / 100 ) + 5) == 337
Defense ======== (( 2( 71 ) + 31 + 0 ) ( 100 / 100 ) + 5) == 178
Sp.Attack === 0.9(( 2( 104 ) + 31 + 0 )
( 100 / 100 ) + 5) == 219
Sp.Defense ===== (( 2( 71 ) + 31 + 0 ) ( 100 / 100 ) + 5) == 178
Speed ========== (( 2( 108 ) + 31 + 63 )
( 100 / 100 ) + 5) == 315 Level 100

Note: All additions and multiplications start and end with whole numbers.
Note: All listed Base HP numbers are incorrect and should be listed as

  being 50 points higher than they are stated.

Reversing the process will give you your Pokemon's exact IVs.
I hope that helps clear things up.

---Geek

by
Why did you answer? The question has already been answered (long ago) with a valid and still correct answer.