• Hi, Guest!
    Some images might be missing as we move away from using embedded images, sorry for the mess!
    From now on, you'll be required to use a third party to host images. You can learn how to add images here, and if your thread is missing images you can request them here.
    Do not use Discord to host any images you post, these links expire quickly!
Resource icon

v21.1 Nature-Based EV Gain, Vitamin Overhaul, and Automatic IV Perfection 1.69

This resource pertains to version 21.1 of Pokémon Essentials.
Code:
def pbNowResetEVs(pkmn, scene)
pkmn.ev[:HP] = 0
    pkmn.ev[:ATTACK] = 0
    pkmn.ev[:DEFENSE] = 0
    pkmn.ev[:SPECIAL_ATTACK] = 0
    pkmn.ev[:SPECIAL_DEFENSE] = 0
    pkmn.ev[:SPEED] = 0
    pkmn.calc_stats
    scene.pbDisplay(_INTL("The Pokémon's EVs were reset."))
end
Back
Top