diff options
author | Ryan Tandy <ryan@nardis.ca> | 2019-10-12 11:31:20 -0700 |
---|---|---|
committer | Ryan Tandy <ryan@nardis.ca> | 2019-10-12 12:04:46 -0700 |
commit | e5761f737bb1364dd00cf390c8684619940a72b2 (patch) | |
tree | 35d01345687cc545c82afba5fb3030a5209a8029 /constants | |
parent | ceb336852dbe63fa20865f75d19ad7884bf97adc (diff) |
Sync growth rate constants from pokecrystal
Copied from pret/pokecrystal@0eeb00d6ac67199b3343c5a6ddc739b251f7a68f
Diffstat (limited to 'constants')
-rw-r--r-- | constants/pokemon_data_constants.asm | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/constants/pokemon_data_constants.asm b/constants/pokemon_data_constants.asm index dc4d8f40..8712a962 100644 --- a/constants/pokemon_data_constants.asm +++ b/constants/pokemon_data_constants.asm @@ -34,14 +34,15 @@ GENDER_F75 EQU 75 percent GENDER_F100 EQU 100 percent - 1 GENDER_UNKNOWN EQU -1 -; growth rate +; wBaseGrowthRate values +; GrowthRates indexes (see data/growth_rates.asm) const_def - const MEDIUM_FAST - const SLIGHTLY_FAST - const SLIGHTLY_SLOW - const MEDIUM_SLOW - const FAST - const SLOW + const GROWTH_MEDIUM_FAST + const GROWTH_SLIGHTLY_FAST + const GROWTH_SLIGHTLY_SLOW + const GROWTH_MEDIUM_SLOW + const GROWTH_FAST + const GROWTH_SLOW ; egg group constants const_value SET 1 |