Use constants for gender ratios

This commit is contained in:
Remy Oukaour
2017-12-13 17:59:14 -05:00
parent 3e5b6322e1
commit 0e7a101e41
253 changed files with 263 additions and 254 deletions

View File

@@ -3640,13 +3640,13 @@ GetGender: ; 50bdd
; The higher the ratio, the more likely the monster is to be female.
cp $ff
cp GENDERLESS
jr z, .Genderless
and a
and a ; GENDER_F0?
jr z, .Male
cp $fe
cp GENDER_F100
jr z, .Female
; Values below the ratio are male, and vice versa.