pokered/engine/predefs17.asm

10 lines
286 B
NASM
Raw Normal View History

2014-05-22 22:13:20 +00:00
; this function temporarily makes the starters (and Ivysaur) seen
; so that the full Pokedex information gets displayed in Oak's lab
2016-06-12 00:24:04 +00:00
StarterDex:
2014-05-22 22:13:20 +00:00
ld a, %01001011 ; set starter flags
ld [wPokedexOwned], a
predef ShowPokedexData
2014-05-22 22:13:20 +00:00
xor a ; unset starter flags
ld [wPokedexOwned], a
2014-05-22 22:13:20 +00:00
ret