• Do not use Discord to host any images you post, these links expire quickly! You can learn how to add images to your posts here.
  • The Eevee Expo Game Jam has concluded! 🎉 Head on over to the game jam forum to play through the games.
    Don't forget to come back September 21st to vote for your favorites!
  • Reminder: AI-generated content is not allowed on the forums per the Rules and Regulations. Please contact us if you have any questions!
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:
Expand Collapse Copy
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