2018-06-24 16:09:41 +02:00
|
|
|
SetSeenAndCaughtMon::
|
2013-09-18 21:54:31 -04:00
|
|
|
push af
|
|
|
|
ld c, a
|
2018-01-23 17:39:09 -05:00
|
|
|
ld hl, wPokedexCaught
|
2013-09-18 21:54:31 -04:00
|
|
|
ld b, SET_FLAG
|
|
|
|
call PokedexFlagAction
|
|
|
|
pop af
|
|
|
|
; fallthrough
|
|
|
|
|
2018-06-24 16:09:41 +02:00
|
|
|
SetSeenMon::
|
2013-09-18 21:54:31 -04:00
|
|
|
ld c, a
|
2018-01-23 17:39:09 -05:00
|
|
|
ld hl, wPokedexSeen
|
2013-09-18 21:54:31 -04:00
|
|
|
ld b, SET_FLAG
|
|
|
|
jr PokedexFlagAction
|
|
|
|
|
2018-06-24 16:09:41 +02:00
|
|
|
CheckCaughtMon::
|
2013-09-18 21:54:31 -04:00
|
|
|
ld c, a
|
2018-01-23 17:39:09 -05:00
|
|
|
ld hl, wPokedexCaught
|
2013-09-18 21:54:31 -04:00
|
|
|
ld b, CHECK_FLAG
|
|
|
|
jr PokedexFlagAction
|
|
|
|
|
2018-06-24 16:09:41 +02:00
|
|
|
CheckSeenMon::
|
2013-09-18 21:54:31 -04:00
|
|
|
ld c, a
|
2018-01-23 17:39:09 -05:00
|
|
|
ld hl, wPokedexSeen
|
2013-09-18 21:54:31 -04:00
|
|
|
ld b, CHECK_FLAG
|
|
|
|
; fallthrough
|
|
|
|
|
2018-06-24 16:09:41 +02:00
|
|
|
PokedexFlagAction::
|
2013-09-18 21:54:31 -04:00
|
|
|
ld d, 0
|
2018-01-16 14:30:10 -05:00
|
|
|
predef SmallFarFlagAction
|
2013-09-18 21:54:31 -04:00
|
|
|
ld a, c
|
|
|
|
and a
|
|
|
|
ret
|