summaryrefslogtreecommitdiff
path: root/text/oakspeech.asm
diff options
context:
space:
mode:
authoryenatch <yenatch@gmail.com>2014-01-21 21:08:30 -0500
committeryenatch <yenatch@gmail.com>2014-01-21 21:09:32 -0500
commit2ac15d2475b575207caf74494dd3b6896636a3c4 (patch)
treef77e6619e298be19c0ad84a566f36e1fb0506c64 /text/oakspeech.asm
parent1295e2a605b52dac93b2163601d5afb8548f8b1d (diff)
text macros in text/
Diffstat (limited to 'text/oakspeech.asm')
-rw-r--r--text/oakspeech.asm78
1 files changed, 45 insertions, 33 deletions
diff --git a/text/oakspeech.asm b/text/oakspeech.asm
index f6b8e530..8494e61a 100644
--- a/text/oakspeech.asm
+++ b/text/oakspeech.asm
@@ -1,44 +1,56 @@
_OakSpeechText1:
- db 0,"Hello there!",$4F
- db "Welcome to the",$55
- db "world of #MON!",$51
- db "My name is OAK!",$4F
- db "People call me",$55
- db "the #MON PROF!",$58
+ text "Hello there!"
+ line "Welcome to the"
+ next "world of #MON!"
+
+ page "My name is OAK!"
+ line "People call me"
+ next "the #MON PROF!"
+ prompt
_OakSpeechText2A:
- db 0,"This world is",$4F
- db "inhabited by",$55
- db "creatures called",$55
- db "#MON!@@"
+ text "This world is"
+ line "inhabited by"
+ next "creatures called"
+ next "#MON!@@"
_OakSpeechText2B:
- db 0,$51,"For some people,",$4F
- db "#MON are",$55
- db "pets. Others use",$55
- db "them for fights.",$51
- db "Myself...",$51
- db "I study #MON",$4F
- db "as a profession.",$58
+ text $51,"For some people,"
+ line "#MON are"
+ next "pets. Others use"
+ next "them for fights."
+
+ page "Myself..."
+
+ page "I study #MON"
+ line "as a profession."
+ prompt
_IntroducePlayerText:
- db 0,"First, what is",$4F
- db "your name?",$58
+ text "First, what is"
+ line "your name?"
+ prompt
_IntroduceRivalText:
- db 0,"This is my grand-",$4F
- db "son. He's been",$55
- db "your rival since",$55
- db "you were a baby.",$51
- db "...Erm, what is",$4F
- db "his name again?",$58
+ text "This is my grand-"
+ line "son. He's been"
+ next "your rival since"
+ next "you were a baby."
+
+ page "...Erm, what is"
+ line "his name again?"
+ prompt
_OakSpeechText3:
- db 0,$52,"!",$51
- db "Your very own",$4F
- db "#MON legend is",$55
- db "about to unfold!",$51
- db "A world of dreams",$4F
- db "and adventures",$55
- db "with #MON",$55
- db "awaits! Let's go!",$57
+ text $52,"!"
+
+ page "Your very own"
+ line "#MON legend is"
+ next "about to unfold!"
+
+ page "A world of dreams"
+ line "and adventures"
+ next "with #MON"
+ next "awaits! Let's go!"
+ done
+