Added 1.5x screen size option, fixed 2**32 being 0, tidied up some code

This commit is contained in:
Maruno17
2020-11-22 17:32:10 +00:00
parent f362b7f847
commit 4af57f6501
11 changed files with 36 additions and 35 deletions

View File

@@ -1047,7 +1047,7 @@ class Pokemon
end
@species = realSpecies
@name = PBSpecies.getName(@species)
@personalID = rand(2**32)
@personalID = rand(2**16) | rand(2**16) << 16
@hp = 1
@totalhp = 1
@iv = []