blob: 23e94fcf2974a09c9fdaea26d0397a8fdf4929af (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
IndigoPlateauStatues::
text_asm
ld hl, IndigoPlateauStatuesText1
call PrintText
ld a, [wXCoord]
bit 0, a
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
|