Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
pret
GitHub Repository: pret/pokered
Path: blob/master/engine/events/starter_dex.asm
1271 views
1
; this function temporarily makes the starters (and Ivysaur) owned
2
; so that the full Pokedex information gets displayed in Oak's lab
3
StarterDex:
4
ld a, 1 << (DEX_BULBASAUR - 1) | 1 << (DEX_IVYSAUR - 1) | 1 << (DEX_CHARMANDER - 1) | 1 << (DEX_SQUIRTLE - 1)
5
ld [wPokedexOwned], a
6
predef ShowPokedexData
7
xor a
8
ld [wPokedexOwned], a
9
ret
10
11