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 /data | |
parent | f65448a4c0d6c1b3877ceb8ad138e40669f97c86 (diff) |
Consistent constants for radio data table sizes (could still be better)
Diffstat (limited to 'data')
-rw-r--r-- | data/items/buena_prizes.asm | 3 | ||||
-rw-r--r-- | data/radio/oaks_pkmn_talk_routes.asm | 2 |
2 files changed, 2 insertions, 3 deletions
diff --git a/data/items/buena_prizes.asm b/data/items/buena_prizes.asm index b0737aee2..673082a8d 100644 --- a/data/items/buena_prizes.asm +++ b/data/items/buena_prizes.asm @@ -1,5 +1,5 @@ BuenaPrizeItems: -; there are NUM_BUENA_PRIZES items (see engine/events/buena.asm) +; there are NUM_BUENA_PRIZES entries db ULTRA_BALL, 2 db FULL_RESTORE, 2 db NUGGET, 3 @@ -9,4 +9,3 @@ BuenaPrizeItems: db CARBOS, 5 db CALCIUM, 5 db HP_UP, 5 -.End diff --git a/data/radio/oaks_pkmn_talk_routes.asm b/data/radio/oaks_pkmn_talk_routes.asm index acef4bdd3..db2447401 100644 --- a/data/radio/oaks_pkmn_talk_routes.asm +++ b/data/radio/oaks_pkmn_talk_routes.asm @@ -1,6 +1,7 @@ ; Oak's Pokémon Talk will list wild Pokémon on these maps. OaksPKMNTalkRoutes: +; there are NUM_OAKS_POKEMON_TALK_ROUTES entries map_id ROUTE_29 map_id ROUTE_46 map_id ROUTE_30 @@ -16,4 +17,3 @@ OaksPKMNTalkRoutes: map_id ROUTE_45 map_id ROUTE_36 map_id ROUTE_31 -.End |