mirror of
https://github.com/pret/pokered.git
synced 2026-04-26 09:20:31 -05:00
25 lines
468 B
NASM
25 lines
468 B
NASM
IndigoPlateauStatues::
|
|
text_asm
|
|
ld hl, IndigoPlateauStatuesText1
|
|
call PrintText
|
|
ld a, [wXCoord]
|
|
bit 0, a ; even or odd?
|
|
ld hl, IndigoPlateauStatuesText2
|
|
jr nz, .ok
|
|
ld hl, IndigoPlateauStatuesText3
|
|
.ok
|
|
call PrintText
|
|
jp TextScriptEnd
|
|
|
|
IndigoPlateauStatuesText1:
|
|
text_far _IndigoPlateauStatuesText1
|
|
text_end
|
|
|
|
IndigoPlateauStatuesText2:
|
|
text_far _IndigoPlateauStatuesText2
|
|
text_end
|
|
|
|
IndigoPlateauStatuesText3:
|
|
text_far _IndigoPlateauStatuesText3
|
|
text_end
|