blob: 030620078a52a214c5fae14d7610af0db419ab34 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
LavenderCuboneHouse_Script:
call EnableAutoTextBoxDrawing
ret
LavenderCuboneHouse_TextPointers:
def_text_pointers
dw_const LavenderCuboneHouseCuboneText, TEXT_LAVENDERCUBONEHOUSE_CUBONE
dw_const LavenderCuboneHouseBrunetteGirlText, TEXT_LAVENDERCUBONEHOUSE_BRUNETTE_GIRL
LavenderCuboneHouseCuboneText:
text_far _LavenderCuboneHouseCuboneText
text_asm
ld a, CUBONE
call PlayCry
jp TextScriptEnd
LavenderCuboneHouseBrunetteGirlText:
text_asm
CheckEvent EVENT_RESCUED_MR_FUJI
jr nz, .rescued_mr_fuji
ld hl, .PoorCubonesMotherText
call PrintText
jr .done
.rescued_mr_fuji
ld hl, .TheGhostIsGoneText
call PrintText
.done
jp TextScriptEnd
.PoorCubonesMotherText:
text_far _LavenderCuboneHouseBrunetteGirlPoorCubonesMotherText
text_end
.TheGhostIsGoneText:
text_far _LavenderCuboneHouseBrunetteGirlGhostIsGoneText
text_end
|