>>31729330It's completely random. Three random stats will be given perfect IVs, and the other three are random 0-31. Nature is determined based on the last two digits of your total experience % 25.
They should have just done
if {
0 ≤ stat exp ≤ 32767
IV = DV
or
32768 ≥ stat_exp < 65535;
IV = DV*2;
or
stat_exp = 65535;
IV = DV*2 + 1;
}
since stat experience would have to be reset no matter what due to the 510 overall EV limit.