- Joined
- Feb 17, 2026
- Posts
- 10
Wes' Sandslash submitted a new resource:
Hidden Power Set Function - A function that sets the type of Hidden Power keeping IVs at 31 or 30
Read more about this resource...
Hidden Power Set Function - A function that sets the type of Hidden Power keeping IVs at 31 or 30
If you add this into a script above main you can set your Pokèmons Hidden Power type.
Ruby:############################################################################## # Hiddenpower set function ############################################################################## def setHiddenPowerTypePerfect(pkmn, desired_type) # Liste aller validen Typen (ohne NORMAL/SHADOW/Pseudo) types = [] GameData::Type.each do |t| next if t.pseudo_type next if [:NORMAL...
Read more about this resource...