reconciling pokemon folder

This commit is contained in:
Brandon M. M. Green 2026-07-09 16:15:28 +00:00
parent dd2c5cb73f
commit ef5cda0bc3
7 changed files with 20 additions and 6 deletions

View File

@ -1,4 +1,5 @@
PokedexOrder::
PokedexOrder:
.DB DEX_RHYDON
.DB DEX_KANGASKHAN
.DB DEX_NIDORAN_M
@ -189,3 +190,5 @@ PokedexOrder::
.DB DEX_BELLSPROUT
.DB DEX_WEEPINBELL
.DB DEX_VICTREEBEL
assert_table_length NUM_POKEMON_INDEXES

View File

@ -1,5 +0,0 @@
MewPicFront:: INCBIN "gfx/pokemon/front/mew.pic"
MewPicBack:: INCBIN "gfx/pokemon/back/mewb.pic"
MewBaseStats::
.INCBIN "data/pokemon/base_stats/mew.asm"

View File

@ -0,0 +1,15 @@
; Mew's pics and base data are not grouped with the other Pokémon
; because it was a last-minute addition "as a kind of prank".
; Shigeki Morimoto explained in an Iwata Asks interview:
; "We put Mew in right at the very end. The cartridge was really full and
; there wasn't room for much more on there. Then the debug features which
; weren't going to be included in the final version of the game were removed,
; creating a miniscule 300 bytes of free space. So we thought that we could
; slot Mew in there. What we did would be unthinkable nowadays!"
; https://iwataasks.nintendo.com/interviews/ds/pokemon/0/0/
MewPicFront:: INCBIN "gfx/pokemon/front/mew.pic"
MewPicBack:: INCBIN "gfx/pokemon/back/mewb.pic"
MewBaseStats:: INCLUDE "data/pokemon/base_stats/mew.asm"

View File

@ -1,4 +1,5 @@
TitleMons::
; mons on the title screen are randomly chosen from here
.DB STARTER1
.DB STARTER2
.DB STARTER3