Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
pret
GitHub Repository: pret/pokered
Path: blob/master/engine/events/hidden_objects/indigo_plateau_statues.asm
1271 views
1
IndigoPlateauStatues::
2
text_asm
3
ld hl, IndigoPlateauStatuesText1
4
call PrintText
5
ld a, [wXCoord]
6
bit 0, a ; even or odd?
7
ld hl, IndigoPlateauStatuesText2
8
jr nz, .ok
9
ld hl, IndigoPlateauStatuesText3
10
.ok
11
call PrintText
12
jp TextScriptEnd
13
14
IndigoPlateauStatuesText1:
15
text_far _IndigoPlateauStatuesText1
16
text_end
17
18
IndigoPlateauStatuesText2:
19
text_far _IndigoPlateauStatuesText2
20
text_end
21
22
IndigoPlateauStatuesText3:
23
text_far _IndigoPlateauStatuesText3
24
text_end
25
26