diff options
author | Rangi <remy.oukaour+rangi42@gmail.com> | 2020-08-13 13:47:50 -0400 |
---|---|---|
committer | Rangi <remy.oukaour+rangi42@gmail.com> | 2020-08-13 13:47:50 -0400 |
commit | 7729dcd20420b6ec869bd82c954ced935186bfed (patch) | |
tree | 3ff69879079dc4adf6462098c86970f2f94dcc2b /constants/radio_constants.asm | |
parent | f65448a4c0d6c1b3877ceb8ad138e40669f97c86 (diff) |
Consistent constants for radio data table sizes (could still be better)
Diffstat (limited to 'constants/radio_constants.asm')
-rw-r--r-- | constants/radio_constants.asm | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/constants/radio_constants.asm b/constants/radio_constants.asm index 39eedbd84..11143f6ee 100644 --- a/constants/radio_constants.asm +++ b/constants/radio_constants.asm @@ -106,17 +106,23 @@ const MAPRADIO_LETS_ALL_SING const MAPRADIO_ROCKET +; OaksPKMNTalkRoutes size (see data/radio/oaks_pkmn_talk_routes.asm) +NUM_OAKS_POKEMON_TALK_ROUTES EQU 15 + ; These tables in engine/pokegear/radio.asm are all sized to a power of 2 ; so there's no need for a rejection sampling loop NUM_OAKS_POKEMON_TALK_ADVERBS EQU 16 ; OaksPKMNTalk8.Adverbs NUM_OAKS_POKEMON_TALK_ADJECTIVES EQU 16 ; OaksPKMNTalk9.Adjectives -NUM_PNP_PEOPLE_ADJECTIVES EQU 16 ; PeoplePlaces5.Adjectives -NUM_PNP_PLACES_ADJECTIVES EQU 16 ; PeoplePlaces7.Adjectives +NUM_PNP_PEOPLE_ADJECTIVES EQU 16 ; PeoplePlaces5.Adjectives +NUM_PNP_PLACES_ADJECTIVES EQU 16 ; PeoplePlaces7.Adjectives ; BuenasPasswordTable sizes (see data/radio/buenas_passwords.asm) NUM_PASSWORD_CATEGORIES EQU 11 NUM_PASSWORDS_PER_CATEGORY EQU 3 +; BuenaPrizeItems size (see data/items/buena_prizes.asm) +NUM_BUENA_PRIZES EQU 9 + ; GetBuenasPassword.StringFunctionJumpTable indexes (see engine/pokegear/radio.asm) const_def const BUENA_MON |