aboutsummaryrefslogtreecommitdiffstats
path: root/scripts/Route1.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/Route1.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/Route1.asm')
-rw-r--r--scripts/Route1.asm19
1 files changed, 10 insertions, 9 deletions
diff --git a/scripts/Route1.asm b/scripts/Route1.asm
index d2f0b766..a784d0a8 100644
--- a/scripts/Route1.asm
+++ b/scripts/Route1.asm
@@ -3,21 +3,22 @@ Route1_Script:
ret
Route1_TextPointers:
- dw Route1Text1
- dw Route1Text2
- dw Route1Text3
+ def_text_pointers
+ dw_const Route1Youngster1Text, TEXT_ROUTE1_YOUNGSTER1
+ dw_const Route1Youngster2Text, TEXT_ROUTE1_YOUNGSTER2
+ dw_const Route1SignText, TEXT_ROUTE1_SIGN
-Route1Text1:
+Route1Youngster1Text:
text_asm
- farcall Func_f1ad2
+ farcall Route1PrintYoungster1Text
jp TextScriptEnd
-Route1Text2:
+Route1Youngster2Text:
text_asm
- farcall Func_f1b0f
+ farcall Route1PrintYoungster2Text
jp TextScriptEnd
-Route1Text3:
+Route1SignText:
text_asm
- farcall Func_f1b1b
+ farcall Route1PrintSignText
jp TextScriptEnd