aboutsummaryrefslogtreecommitdiffstats
path: root/scripts/LavenderCuboneHouse.asm
diff options
context:
space:
mode:
authordannye <33dannye@gmail.com>2023-11-20 00:33:27 -0600
committerdannye <33dannye@gmail.com>2023-11-20 20:23:27 -0600
commit298e99d3776580585c3f434e5d93137ae431bdd3 (patch)
treea808c4ffd0fd0f9bd28972bae5236e0d3345c8e5 /scripts/LavenderCuboneHouse.asm
parentAdd sound bits documentation for wOptions (#110) (diff)
parentName 2 unnamed labels I missed in SeafoamIslandsB4F and PokemonMansion3F (#437) (diff)
downloadpokeyellow-298e99d3776580585c3f434e5d93137ae431bdd3.tar.gz
pokeyellow-298e99d3776580585c3f434e5d93137ae431bdd3.tar.xz
pokeyellow-298e99d3776580585c3f434e5d93137ae431bdd3.zip
Merge branch 'master' of https://github.com/pret/pokered
Diffstat (limited to 'scripts/LavenderCuboneHouse.asm')
-rw-r--r--scripts/LavenderCuboneHouse.asm23
1 files changed, 12 insertions, 11 deletions
diff --git a/scripts/LavenderCuboneHouse.asm b/scripts/LavenderCuboneHouse.asm
index 69d74ede..03062007 100644
--- a/scripts/LavenderCuboneHouse.asm
+++ b/scripts/LavenderCuboneHouse.asm
@@ -3,33 +3,34 @@ LavenderCuboneHouse_Script:
ret
LavenderCuboneHouse_TextPointers:
- dw LavenderHouse2Text1
- dw LavenderHouse2Text2
+ def_text_pointers
+ dw_const LavenderCuboneHouseCuboneText, TEXT_LAVENDERCUBONEHOUSE_CUBONE
+ dw_const LavenderCuboneHouseBrunetteGirlText, TEXT_LAVENDERCUBONEHOUSE_BRUNETTE_GIRL
-LavenderHouse2Text1:
- text_far _LavenderHouse2Text1
+LavenderCuboneHouseCuboneText:
+ text_far _LavenderCuboneHouseCuboneText
text_asm
ld a, CUBONE
call PlayCry
jp TextScriptEnd
-LavenderHouse2Text2:
+LavenderCuboneHouseBrunetteGirlText:
text_asm
CheckEvent EVENT_RESCUED_MR_FUJI
jr nz, .rescued_mr_fuji
- ld hl, LavenderHouse2Text_1d9dc
+ ld hl, .PoorCubonesMotherText
call PrintText
jr .done
.rescued_mr_fuji
- ld hl, LavenderHouse2Text_1d9e1
+ ld hl, .TheGhostIsGoneText
call PrintText
.done
jp TextScriptEnd
-LavenderHouse2Text_1d9dc:
- text_far _LavenderHouse2Text_1d9dc
+.PoorCubonesMotherText:
+ text_far _LavenderCuboneHouseBrunetteGirlPoorCubonesMotherText
text_end
-LavenderHouse2Text_1d9e1:
- text_far _LavenderHouse2Text_1d9e1
+.TheGhostIsGoneText:
+ text_far _LavenderCuboneHouseBrunetteGirlGhostIsGoneText
text_end