- Pokémon Essentials Version
- v20.1 ➖
First things first, scroll till you find the Pokemon.rb file in the script editor / look for 014_Pokemon folder and click on 001_Pokemon file
then find:
and replace
with
and that's pretty much it, every pokemon the player receives will now always have 31 iv's
SIDENOTE: This also works for v19 and v20
then find:
Ruby:
GameData::Stat.each_main do |s|
@iv[s.id] = rand(IV_STAT_LIMIT + 1)
@ev[s.id] = 0
end
and replace
Ruby:
@iv[s.id] = rand(IV_STAT_LIMIT + 1)
with
Ruby:
@iv[s.id] = 31
and that's pretty much it, every pokemon the player receives will now always have 31 iv's
SIDENOTE: This also works for v19 and v20
- Credits
- None needed, but if one wants to then:
Asforcia
BIGFriv