From 1891879b62bcc6fb08ecf11216672e02ca7b522f Mon Sep 17 00:00:00 2001 From: mid-kid Date: Mon, 26 Feb 2018 18:43:30 +0100 Subject: GENDERLESS -> GENDER_UNKNOWN This is how they're called in official sources, and it fits better with the other `GENDER_` constants. --- constants/pokemon_data_constants.asm | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'constants') diff --git a/constants/pokemon_data_constants.asm b/constants/pokemon_data_constants.asm index e82902da3..31d8a522b 100644 --- a/constants/pokemon_data_constants.asm +++ b/constants/pokemon_data_constants.asm @@ -26,13 +26,13 @@ BASE_TMHM EQUS "(wBaseTMHM - wCurBaseData)" BASE_DATA_SIZE EQUS "(wCurBaseDataEnd - wCurBaseData)" ; gender ratio constants -GENDER_F0 EQU 0 percent -GENDER_F12_5 EQU 12 percent + 1 -GENDER_F25 EQU 25 percent -GENDER_F50 EQU 50 percent -GENDER_F75 EQU 75 percent -GENDER_F100 EQU 100 percent - 1 -GENDERLESS EQU -1 +GENDER_F0 EQU 0 percent +GENDER_F12_5 EQU 12 percent + 1 +GENDER_F25 EQU 25 percent +GENDER_F50 EQU 50 percent +GENDER_F75 EQU 75 percent +GENDER_F100 EQU 100 percent - 1 +GENDER_UNKNOWN EQU -1 ; wBaseGrowthRate values ; GrowthRates indexes (see data/growth_rates.asm) -- cgit v1.2.3