• The Eevee Expo Game Jam #10 has concluded, congratulations to all participants! Now it's time for the judges to play through the games, and you can play along to vote who deserves the community choice spotlight.
    You can check out the submitted games here!
    Play through the games and provide some feedback to the devs while you're at it!
  • 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

Small Script For Perfect IV Shinies 1.0

Pokémon Essentials Version
v19.1 ➖
I wanted to add additional value to shinies, so I decided to give them perfect IVs upon capture.

1. Open Script Editor.
2. Find Overworld_EncounterModifiers
3. Paste this on the bottom.
# Make all wild Pokémon shiny pokemon have perfect IVs.
Events.onWildPokemonCreate += proc { |_sender, e|
pokemon = e[0]
if pokemon.shiny?
pokemon.iv[:HP] = 31
pokemon.iv[:ATTACK] = 31
pokemon.iv[:DEFENSE] = 31
pokemon.iv[:SPECIAL_ATTACK] = 31
pokemon.iv[:SPECIAL_DEFENSE] = 31
pokemon.iv[:SPEED] = 31
pokemon.calc_stats
end
}
4. Done.


Screenshot_25.png
Credits
No credit required.
Author
Flaw
Views
1,650
First release
Last update

Ratings

0.00 star(s) 0 ratings
Back
Top