predefs17.asm 286 B

12345678910
  1. ; this function temporarily makes the starters (and Ivysaur) seen
  2. ; so that the full Pokedex information gets displayed in Oak's lab
  3. StarterDex:
  4. ld a, %01001011 ; set starter flags
  5. ld [wPokedexOwned], a
  6. predef ShowPokedexData
  7. xor a ; unset starter flags
  8. ld [wPokedexOwned], a
  9. ret