Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
pret
GitHub Repository: pret/pokered
Path: blob/master/scripts/CeruleanTrashedHouse.asm
1270 views
1
CeruleanTrashedHouse_Script:
2
call EnableAutoTextBoxDrawing
3
ret
4
5
CeruleanTrashedHouse_TextPointers:
6
def_text_pointers
7
dw_const CeruleanTrashedHouseFishingGuruText, TEXT_CERULEANTRASHEDHOUSE_FISHING_GURU
8
dw_const CeruleanTrashedHouseGirlText, TEXT_CERULEANTRASHEDHOUSE_GIRL
9
dw_const CeruleanTrashedHouseWallHoleText, TEXT_CERULEANTRASHEDHOUSE_WALL_HOLE
10
11
CeruleanTrashedHouseFishingGuruText:
12
text_asm
13
ld b, TM_DIG
14
predef GetQuantityOfItemInBag
15
and b
16
jr z, .no_dig_tm
17
ld hl, .WhatsLostIsLostText
18
call PrintText
19
jr .done
20
.no_dig_tm
21
ld hl, .TheyStoleATMText
22
call PrintText
23
.done
24
jp TextScriptEnd
25
26
.TheyStoleATMText:
27
text_far _CeruleanTrashedHouseFishingGuruTheyStoleATMText
28
text_end
29
30
.WhatsLostIsLostText:
31
text_far _CeruleanTrashedHouseFishingGuruWhatsLostIsLostText
32
text_end
33
34
CeruleanTrashedHouseGirlText:
35
text_far _CeruleanTrashedHouseGirlText
36
text_end
37
38
CeruleanTrashedHouseWallHoleText:
39
text_far _CeruleanTrashedHouseWallHoleText
40
text_end
41
42