diff options
Diffstat (limited to 'scripts/ViridianForest_2.asm')
| -rw-r--r-- | scripts/ViridianForest_2.asm | 53 |
1 files changed, 53 insertions, 0 deletions
diff --git a/scripts/ViridianForest_2.asm b/scripts/ViridianForest_2.asm new file mode 100644 index 00000000..a9b157d5 --- /dev/null +++ b/scripts/ViridianForest_2.asm @@ -0,0 +1,53 @@ +ViridianForestPrintTrainerTips1Text:: + ld hl, .text + call PrintText + ret + +.text + text_far _ViridianForestTrainerTips1Text + text_end + +ViridianForestPrintUseAntidoteSignText:: + ld hl, .text + call PrintText + ret + +.text + text_far _ViridianForestUseAntidoteSignText + text_end + +ViridianForestPrintTrainerTips2Text:: + ld hl, .text + call PrintText + ret + +.text + text_far _ViridianForestTrainerTips2Text + text_end + +ViridianForestPrintTrainerTips3Text:: + ld hl, .text + call PrintText + ret + +.text + text_far _ViridianForestTrainerTips3Text + text_end + +ViridianForestPrintTrainerTips4Text:: + ld hl, .text + call PrintText + ret + +.text + text_far _ViridianForestTrainerTips4Text + text_end + +ViridianForestPrintLeavingSignText: + ld hl, .text + call PrintText + ret + +.text + text_far _ViridianForestLeavingSignText + text_end |
