blob: f15cddc863ef1ba866ee87c76cf682eabe8ba137 (
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
37
38
39
40
|
CeruleanTrashedHouse_Script:
call EnableAutoTextBoxDrawing
ret
CeruleanTrashedHouse_TextPointers:
def_text_pointers
dw_const CeruleanTrashedHouseFishingGuruText, TEXT_CERULEANTRASHEDHOUSE_FISHING_GURU
dw_const CeruleanTrashedHouseGirlText, TEXT_CERULEANTRASHEDHOUSE_GIRL
dw_const CeruleanTrashedHouseWallHoleText, TEXT_CERULEANTRASHEDHOUSE_WALL_HOLE
CeruleanTrashedHouseFishingGuruText:
text_asm
ld b, TM_DIG
predef GetQuantityOfItemInBag
and b
jr z, .no_dig_tm
ld hl, .WhatsLostIsLostText
call PrintText
jr .done
.no_dig_tm
ld hl, .TheyStoleATMText
call PrintText
.done
jp TextScriptEnd
.TheyStoleATMText:
text_far _CeruleanTrashedHouseFishingGuruTheyStoleATMText
text_end
.WhatsLostIsLostText:
text_far _CeruleanTrashedHouseFishingGuruWhatsLostIsLostText
text_end
CeruleanTrashedHouseGirlText:
text_far _CeruleanTrashedHouseGirlText
text_end
CeruleanTrashedHouseWallHoleText:
text_far _CeruleanTrashedHouseWallHoleText
text_end
|