- 232
- Posts
- 8
- Years
- Seen May 13, 2025
def baseStats
ret = pbGetSpeciesData(@species,formSimple,SpeciesBaseStats)
if shiny?
ret[PBStats::ATTACK] *= 1.2
ret[PBStats::SPATK] *= 1.2
end
return ret.clone
end
You can change the 1.2 if you want.
This script should increase the stat base of the shinys by 10% and that's it. But every time they go up a level, the base stats increase and multiply infinitely ...
know how to fix?
ret = pbGetSpeciesData(@species,formSimple,SpeciesBaseStats)
if shiny?
ret[PBStats::ATTACK] *= 1.2
ret[PBStats::SPATK] *= 1.2
end
return ret.clone
end
You can change the 1.2 if you want.
This script should increase the stat base of the shinys by 10% and that's it. But every time they go up a level, the base stats increase and multiply infinitely ...
know how to fix?