Returns a completely unseeded random integer between min and min + range.
min
min + range
The amount of possible numbers to pick
The minimum number to pick; default 0
0
A psuedo-random, unseeded integer within the interval [min, min+range].
This should not be used for battles or other outwards-facing randomness; battles are intended to be seeded and deterministic.
Returns a completely unseeded random integer between
min
andmin + range
.