pokered/scripts/ceruleancity2.asm

17 lines
412 B
NASM
Raw Normal View History

2014-05-22 22:13:20 +00:00
Func_74872: ; 74872 (1d:4872)
; code similar to this appears in a lot of banks; this particular
; one is called after you beat the Rocket that gives you TM28 DIG.
; the screen then fades out, he disappears, and fades back in
2014-09-13 07:50:56 +00:00
call GBFadeOutToBlack
2014-05-22 22:13:20 +00:00
ld a, $07
ld [wcc4d], a
predef ShowObject
2014-05-22 22:13:20 +00:00
ld a, $09
ld [wcc4d], a
predef HideObject
2014-05-22 22:13:20 +00:00
ld a, $06
ld [wcc4d], a
predef HideObject
2014-09-13 07:50:56 +00:00
call GBFadeInFromBlack
2014-05-22 22:13:20 +00:00
ret