mirror of
https://github.com/pret/pokered.git
synced 2026-05-06 05:08:32 -05:00
10 lines
286 B
NASM
Executable File
10 lines
286 B
NASM
Executable File
; this function temporarily makes the starters (and Ivysaur) seen
|
|
; so that the full Pokedex information gets displayed in Oak's lab
|
|
StarterDex:
|
|
ld a, %01001011 ; set starter flags
|
|
ld [wPokedexOwned], a
|
|
predef ShowPokedexData
|
|
xor a ; unset starter flags
|
|
ld [wPokedexOwned], a
|
|
ret
|